robosystems-client 0.2.24__tar.gz → 0.2.26__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.
Potentially problematic release.
This version of robosystems-client might be problematic. Click here for more details.
- robosystems_client-0.2.26/.github/branch-rules/main.json +61 -0
- robosystems_client-0.2.26/.github/branch-rules/release.json +38 -0
- robosystems_client-0.2.26/.github/workflows/claude.yml +50 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/.github/workflows/create-pr.yml +2 -2
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/.github/workflows/publish.yml +0 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/.github/workflows/tag-release.yml +5 -5
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/.github/workflows/test.yml +2 -2
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/.vscode/tasks.json +15 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/PKG-INFO +8 -7
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/README.md +7 -6
- robosystems_client-0.2.24/bin/create-feature → robosystems_client-0.2.26/bin/create-feature.sh +11 -1
- robosystems_client-0.2.24/bin/create-release → robosystems_client-0.2.26/bin/create-release.sh +1 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/justfile +5 -5
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/pyproject.toml +1 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/agent/auto_select_agent.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/agent/batch_process_queries.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/agent/execute_specific_agent.py +5 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/agent/get_agent_metadata.py +5 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/agent/list_agents.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/agent/recommend_agent.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/backup/create_backup.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/backup/get_backup_download_url.py +5 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/backup/get_backup_stats.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/backup/list_backups.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/backup/restore_backup.py +5 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/billing/cancel_org_subscription.py +5 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/billing/create_portal_session.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/billing/get_checkout_status.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/billing/get_org_billing_customer.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/billing/get_org_subscription.py +5 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/billing/get_org_upcoming_invoice.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/billing/list_org_invoices.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/billing/list_org_subscriptions.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/connections/create_connection.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/connections/create_link_token.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/connections/delete_connection.py +5 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/connections/exchange_link_token.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/connections/get_connection.py +5 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/connections/get_connection_options.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/connections/init_o_auth.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/connections/list_connections.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/connections/oauth_callback.py +5 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/connections/sync_connection.py +5 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/credits_/check_credit_balance.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/credits_/check_storage_limits.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/credits_/get_credit_summary.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/credits_/get_storage_usage.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/credits_/list_credit_transactions.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/files/create_file_upload.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/files/delete_file.py +5 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/files/get_file.py +5 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/files/list_files.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/files/update_file.py +5 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/graph_health/get_database_health.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/graph_info/get_database_info.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/graph_limits/get_graph_limits.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/graphs/select_graph.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/materialize/get_materialization_status.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/materialize/materialize_graph.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/mcp/call_mcp_tool.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/mcp/list_mcp_tools.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/operations/cancel_operation.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/operations/get_operation_status.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/operations/stream_operation_events.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/org/get_org.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/org/list_org_graphs.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/org/update_org.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/org_members/invite_org_member.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/org_members/list_org_members.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/org_members/remove_org_member.py +5 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/org_members/update_org_member_role.py +5 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/org_usage/get_org_limits.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/org_usage/get_org_usage.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/query/execute_cypher_query.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/schema/export_graph_schema.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/schema/get_graph_schema.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/schema/validate_schema.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/subgraphs/create_subgraph.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/subgraphs/delete_subgraph.py +5 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/subgraphs/get_subgraph_info.py +5 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/subgraphs/get_subgraph_quota.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/subgraphs/list_subgraphs.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/subscriptions/create_repository_subscription.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/subscriptions/get_graph_subscription.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/subscriptions/upgrade_subscription.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/tables/list_tables.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/tables/query_tables.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/usage/get_graph_metrics.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/usage/get_graph_usage_analytics.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/user/revoke_user_api_key.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/user/update_user_api_key.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/views/create_view.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/views/save_view.py +4 -1
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/extensions/query_client.py +17 -0
- robosystems_client-0.2.24/.github/workflows/claude.yml +0 -37
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/.claude/commands/create-issue.md +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/.claude/commands/staged-review.md +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/.claude/commands/test.md +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/.github/CONTRIBUTING.md +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/.github/ISSUE_TEMPLATE/bug.yml +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/.github/ISSUE_TEMPLATE/config.yml +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/.github/ISSUE_TEMPLATE/feature.yml +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/.github/ISSUE_TEMPLATE/rfc.yml +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/.github/ISSUE_TEMPLATE/spec.yml +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/.github/ISSUE_TEMPLATE/task.yml +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/.github/workflows/create-release.yml +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/.gitignore +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/.vscode/settings.json +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/LICENSE +0 -0
- /robosystems_client-0.2.24/bin/create-pr → /robosystems_client-0.2.26/bin/create-pr.sh +0 -0
- /robosystems_client-0.2.24/bin/generate-sdk → /robosystems_client-0.2.26/bin/generate-sdk.sh +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/pytest.ini +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/__init__.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/__init__.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/agent/__init__.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/auth/__init__.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/auth/check_password_strength.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/auth/complete_sso_auth.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/auth/forgot_password.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/auth/generate_sso_token.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/auth/get_captcha_config.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/auth/get_current_auth_user.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/auth/get_password_policy.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/auth/login_user.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/auth/logout_user.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/auth/refresh_auth_session.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/auth/register_user.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/auth/resend_verification_email.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/auth/reset_password.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/auth/sso_token_exchange.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/auth/validate_reset_token.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/auth/verify_email.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/backup/__init__.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/billing/__init__.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/billing/create_checkout_session.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/connections/__init__.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/credits_/__init__.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/files/__init__.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/graph_health/__init__.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/graph_info/__init__.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/graph_limits/__init__.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/graphs/__init__.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/graphs/create_graph.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/graphs/get_available_extensions.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/graphs/get_available_graph_tiers.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/graphs/get_graphs.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/materialize/__init__.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/mcp/__init__.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/operations/__init__.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/org/__init__.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/org/create_org.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/org/list_user_orgs.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/org_members/__init__.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/org_usage/__init__.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/query/__init__.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/schema/__init__.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/service_offerings/__init__.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/service_offerings/get_service_offerings.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/status/__init__.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/status/get_service_status.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/subgraphs/__init__.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/subscriptions/__init__.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/tables/__init__.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/usage/__init__.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/user/__init__.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/user/create_user_api_key.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/user/get_current_user.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/user/list_user_api_keys.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/user/update_user.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/user/update_user_password.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/views/__init__.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/client.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/errors.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/extensions/README.md +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/extensions/__init__.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/extensions/agent_client.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/extensions/auth_integration.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/extensions/dataframe_utils.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/extensions/element_mapping_client.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/extensions/extensions.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/extensions/file_client.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/extensions/graph_client.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/extensions/materialization_client.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/extensions/operation_client.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/extensions/sse_client.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/extensions/subgraph_workspace_client.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/extensions/table_client.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/extensions/tests/__init__.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/extensions/tests/test_dataframe_utils.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/extensions/tests/test_integration.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/extensions/tests/test_token_utils.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/extensions/tests/test_unit.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/extensions/token_utils.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/extensions/utils.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/extensions/view_builder_client.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/__init__.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/account_info.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/agent_list_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/agent_list_response_agents.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/agent_list_response_agents_additional_property.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/agent_message.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/agent_metadata_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/agent_mode.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/agent_recommendation.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/agent_recommendation_request.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/agent_recommendation_request_context_type_0.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/agent_recommendation_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/agent_request.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/agent_request_context_type_0.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/agent_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/agent_response_error_details_type_0.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/agent_response_metadata_type_0.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/agent_response_tokens_used_type_0.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/api_key_info.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/api_keys_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/auth_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/auth_response_org_type_0.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/auth_response_user.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/available_extension.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/available_extensions_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/available_graph_tiers_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/backup_create_request.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/backup_download_url_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/backup_limits.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/backup_list_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/backup_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/backup_restore_request.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/backup_stats_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/backup_stats_response_backup_formats.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/batch_agent_request.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/batch_agent_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/billing_customer.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/cancel_operation_response_canceloperation.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/check_credit_balance_response_checkcreditbalance.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/checkout_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/checkout_status_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/connection_options_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/connection_provider_info.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/connection_provider_info_auth_type.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/connection_provider_info_provider.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/connection_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/connection_response_metadata.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/connection_response_provider.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/copy_operation_limits.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/create_api_key_request.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/create_api_key_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/create_checkout_request.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/create_checkout_request_resource_config.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/create_connection_request.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/create_connection_request_provider.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/create_graph_request.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/create_org_request.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/create_repository_subscription_request.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/create_subgraph_request.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/create_subgraph_request_metadata_type_0.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/create_view_request.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/credit_limits.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/credit_summary.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/credit_summary_operation_breakdown.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/credit_summary_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/custom_schema_definition.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/custom_schema_definition_metadata.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/custom_schema_definition_nodes_item.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/custom_schema_definition_relationships_item.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/cypher_query_request.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/cypher_query_request_parameters_type_0.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/database_health_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/database_info_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/delete_file_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/delete_subgraph_request.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/delete_subgraph_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/detailed_transactions_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/detailed_transactions_response_date_range.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/detailed_transactions_response_summary.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/email_verification_request.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/enhanced_credit_transaction_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/enhanced_credit_transaction_response_metadata.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/enhanced_file_status_layers.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/error_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/exchange_token_request.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/exchange_token_request_metadata_type_0.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/execute_cypher_query_response_200.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/execute_cypher_query_response_200_data_item.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/fact_detail.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/file_info.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/file_layer_status.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/file_status_update.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/file_upload_request.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/file_upload_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/forgot_password_request.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/forgot_password_response_forgotpassword.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/get_current_auth_user_response_getcurrentauthuser.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/get_file_info_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/get_operation_status_response_getoperationstatus.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/get_storage_usage_response_getstorageusage.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/graph_info.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/graph_limits_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/graph_metadata.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/graph_metrics_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/graph_metrics_response_estimated_size.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/graph_metrics_response_health_status.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/graph_metrics_response_node_counts.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/graph_metrics_response_relationship_counts.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/graph_subscription_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/graph_subscription_tier.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/graph_subscriptions.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/graph_tier_backup.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/graph_tier_copy_operations.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/graph_tier_info.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/graph_tier_instance.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/graph_tier_limits.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/graph_usage_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/graph_usage_response_recent_events_item.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/health_status.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/health_status_details_type_0.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/http_validation_error.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/initial_entity_data.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/invite_member_request.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/invoice.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/invoice_line_item.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/invoices_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/link_token_request.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/link_token_request_options_type_0.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/link_token_request_provider_type_0.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/list_connections_provider_type_0.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/list_org_graphs_response_200_item.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/list_subgraphs_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/list_table_files_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/login_request.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/logout_user_response_logoutuser.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/materialize_request.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/materialize_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/materialize_status_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/mcp_tool_call.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/mcp_tool_call_arguments.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/mcp_tools_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/mcp_tools_response_tools_item.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/o_auth_callback_request.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/o_auth_init_request.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/o_auth_init_request_additional_params_type_0.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/o_auth_init_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/offering_repository_plan.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/offering_repository_plan_rate_limits_type_0.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/operation_costs.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/operation_costs_ai_operations.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/operation_costs_token_pricing.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/org_detail_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/org_detail_response_graphs_item.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/org_detail_response_limits_type_0.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/org_detail_response_members_item.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/org_limits_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/org_limits_response_current_usage.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/org_list_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/org_member_list_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/org_member_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/org_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/org_role.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/org_type.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/org_usage_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/org_usage_response_daily_trend_item.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/org_usage_response_graph_details_item.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/org_usage_summary.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/password_check_request.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/password_check_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/password_check_response_character_types.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/password_policy_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/password_policy_response_policy.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/payment_method.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/performance_insights.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/performance_insights_operation_stats.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/performance_insights_slow_queries_item.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/plaid_connection_config.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/plaid_connection_config_accounts_type_0_item.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/plaid_connection_config_institution_type_0.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/portal_session_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/query_limits.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/quick_books_connection_config.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/rate_limits.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/register_request.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/repository_info.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/repository_subscriptions.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/resend_verification_email_response_resendverificationemail.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/reset_password_request.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/reset_password_validate_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/response_mode.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/save_view_request.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/save_view_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/schema_export_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/schema_export_response_data_stats_type_0.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/schema_export_response_schema_definition_type_0.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/schema_info_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/schema_info_response_schema.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/schema_validation_request.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/schema_validation_request_schema_definition_type_0.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/schema_validation_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/schema_validation_response_compatibility_type_0.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/schema_validation_response_stats_type_0.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/sec_connection_config.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/selection_criteria.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/service_offering_summary.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/service_offerings_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/sso_complete_request.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/sso_exchange_request.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/sso_exchange_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/sso_token_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/storage_info.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/storage_info_included_per_tier.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/storage_info_overage_pricing.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/storage_limit_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/storage_limits.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/storage_summary.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/structure_detail.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/subgraph_quota_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/subgraph_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/subgraph_response_metadata_type_0.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/subgraph_summary.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/subgraph_type.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/success_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/success_response_data_type_0.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/sync_connection_request.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/sync_connection_request_sync_options_type_0.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/sync_connection_response_syncconnection.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/table_info.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/table_list_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/table_query_request.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/table_query_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/token_pricing.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/transaction_summary_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/upcoming_invoice.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/update_api_key_request.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/update_file_response_updatefile.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/update_member_role_request.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/update_org_request.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/update_password_request.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/update_user_request.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/upgrade_subscription_request.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/user_graphs_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/user_response.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/validation_error.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/view_axis_config.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/view_axis_config_element_labels_type_0.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/view_axis_config_member_labels_type_0.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/view_config.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/view_source.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/models/view_source_type.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/py.typed +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/sdk-config.yaml +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/types.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/ruff.toml +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/tests/__init__.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/tests/conftest.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/tests/test_client.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/tests/test_extensions.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/tests/test_graph_client.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/tests/test_operation_client.py +0 -0
- {robosystems_client-0.2.24 → robosystems_client-0.2.26}/tests/test_query_client.py +0 -0
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Main Branch",
|
|
3
|
+
"target": "branch",
|
|
4
|
+
"enforcement": "active",
|
|
5
|
+
"conditions": {
|
|
6
|
+
"ref_name": {
|
|
7
|
+
"exclude": [],
|
|
8
|
+
"include": ["refs/heads/main"]
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
"rules": [
|
|
12
|
+
{
|
|
13
|
+
"type": "deletion"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"type": "non_fast_forward"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"type": "pull_request",
|
|
20
|
+
"parameters": {
|
|
21
|
+
"required_approving_review_count": 0,
|
|
22
|
+
"dismiss_stale_reviews_on_push": false,
|
|
23
|
+
"require_code_owner_review": false,
|
|
24
|
+
"require_last_push_approval": false,
|
|
25
|
+
"required_review_thread_resolution": false,
|
|
26
|
+
"automatic_copilot_code_review_enabled": true,
|
|
27
|
+
"allowed_merge_methods": ["merge"]
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"type": "required_status_checks",
|
|
32
|
+
"parameters": {
|
|
33
|
+
"strict_required_status_checks_policy": false,
|
|
34
|
+
"do_not_enforce_on_create": false,
|
|
35
|
+
"required_status_checks": [
|
|
36
|
+
{
|
|
37
|
+
"context": "test"
|
|
38
|
+
}
|
|
39
|
+
]
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"type": "creation"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"type": "update"
|
|
47
|
+
}
|
|
48
|
+
],
|
|
49
|
+
"bypass_actors": [
|
|
50
|
+
{
|
|
51
|
+
"actor_id": null,
|
|
52
|
+
"actor_type": "OrganizationAdmin",
|
|
53
|
+
"bypass_mode": "always"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"actor_id": 5,
|
|
57
|
+
"actor_type": "RepositoryRole",
|
|
58
|
+
"bypass_mode": "always"
|
|
59
|
+
}
|
|
60
|
+
]
|
|
61
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Release Branches",
|
|
3
|
+
"target": "branch",
|
|
4
|
+
"source_type": "Repository",
|
|
5
|
+
"enforcement": "active",
|
|
6
|
+
"conditions": {
|
|
7
|
+
"ref_name": {
|
|
8
|
+
"exclude": [],
|
|
9
|
+
"include": ["refs/heads/release/*"]
|
|
10
|
+
}
|
|
11
|
+
},
|
|
12
|
+
"rules": [
|
|
13
|
+
{
|
|
14
|
+
"type": "deletion"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"type": "non_fast_forward"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"type": "creation"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"type": "update"
|
|
24
|
+
}
|
|
25
|
+
],
|
|
26
|
+
"bypass_actors": [
|
|
27
|
+
{
|
|
28
|
+
"actor_id": null,
|
|
29
|
+
"actor_type": "OrganizationAdmin",
|
|
30
|
+
"bypass_mode": "always"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"actor_id": 5,
|
|
34
|
+
"actor_type": "RepositoryRole",
|
|
35
|
+
"bypass_mode": "always"
|
|
36
|
+
}
|
|
37
|
+
]
|
|
38
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
name: Claude Code Review
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
issue_comment:
|
|
5
|
+
types: [created]
|
|
6
|
+
pull_request_review_comment:
|
|
7
|
+
types: [created]
|
|
8
|
+
issues:
|
|
9
|
+
types: [opened, assigned]
|
|
10
|
+
pull_request_review:
|
|
11
|
+
types: [submitted]
|
|
12
|
+
|
|
13
|
+
jobs:
|
|
14
|
+
claude:
|
|
15
|
+
if: |
|
|
16
|
+
(github.event_name == 'issue_comment' && contains(github.event.comment.body, '@claude')) ||
|
|
17
|
+
(github.event_name == 'pull_request_review_comment' && contains(github.event.comment.body, '@claude')) ||
|
|
18
|
+
(github.event_name == 'pull_request_review' && contains(github.event.review.body, '@claude')) ||
|
|
19
|
+
(github.event_name == 'issues' && (contains(github.event.issue.body, '@claude') || contains(github.event.issue.title, '@claude')))
|
|
20
|
+
runs-on: ubuntu-latest
|
|
21
|
+
timeout-minutes: 15
|
|
22
|
+
permissions:
|
|
23
|
+
contents: read
|
|
24
|
+
pull-requests: read
|
|
25
|
+
issues: read
|
|
26
|
+
id-token: write
|
|
27
|
+
actions: read # Required for Claude to read CI results on PRs
|
|
28
|
+
steps:
|
|
29
|
+
- name: Checkout repository
|
|
30
|
+
uses: actions/checkout@v4
|
|
31
|
+
with:
|
|
32
|
+
fetch-depth: 1
|
|
33
|
+
|
|
34
|
+
- name: Run Claude Code
|
|
35
|
+
id: claude
|
|
36
|
+
uses: anthropics/claude-code-action@v1
|
|
37
|
+
with:
|
|
38
|
+
claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
|
|
39
|
+
|
|
40
|
+
# This is an optional setting that allows Claude to read CI results on PRs
|
|
41
|
+
additional_permissions: |
|
|
42
|
+
actions: read
|
|
43
|
+
|
|
44
|
+
# Optional: Give a custom prompt to Claude. If this is not specified, Claude will perform the instructions specified in the comment that tagged it.
|
|
45
|
+
# prompt: 'Update the pull request description to include a summary of changes.'
|
|
46
|
+
|
|
47
|
+
# Optional: Add claude_args to customize behavior and configuration
|
|
48
|
+
# See https://github.com/anthropics/claude-code-action/blob/main/docs/usage.md
|
|
49
|
+
# or https://docs.claude.com/en/docs/claude-code/cli-reference for available options
|
|
50
|
+
# claude_args: '--allowed-tools Bash(gh pr:*)'
|
|
@@ -10,13 +10,13 @@ on:
|
|
|
10
10
|
outputs:
|
|
11
11
|
tag_name:
|
|
12
12
|
description: 'The created tag name'
|
|
13
|
-
value: ${{ jobs.
|
|
13
|
+
value: ${{ jobs.tag.outputs.tag_name }}
|
|
14
14
|
version:
|
|
15
15
|
description: 'The version number'
|
|
16
|
-
value: ${{ jobs.
|
|
16
|
+
value: ${{ jobs.tag.outputs.version }}
|
|
17
17
|
release_url:
|
|
18
18
|
description: 'The GitHub release URL'
|
|
19
|
-
value: ${{ jobs.
|
|
19
|
+
value: ${{ jobs.tag.outputs.release_url }}
|
|
20
20
|
secrets:
|
|
21
21
|
ACTIONS_TOKEN:
|
|
22
22
|
required: true
|
|
@@ -24,8 +24,8 @@ on:
|
|
|
24
24
|
required: true
|
|
25
25
|
|
|
26
26
|
jobs:
|
|
27
|
-
|
|
28
|
-
runs-on: ubuntu-latest
|
|
27
|
+
tag:
|
|
28
|
+
runs-on: ubuntu-latest
|
|
29
29
|
timeout-minutes: 15
|
|
30
30
|
permissions:
|
|
31
31
|
contents: write
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
{
|
|
71
71
|
"label": "Create Feature",
|
|
72
72
|
"type": "shell",
|
|
73
|
-
"command": "just create-feature ${input:branchType} ${input:branchName} ${input:baseBranch}",
|
|
73
|
+
"command": "just create-feature ${input:branchType} ${input:branchName} ${input:baseBranch} ${input:updateDependencies}",
|
|
74
74
|
"problemMatcher": []
|
|
75
75
|
},
|
|
76
76
|
{
|
|
@@ -85,6 +85,13 @@
|
|
|
85
85
|
"command": "just create-release ${input:versionType}",
|
|
86
86
|
"problemMatcher": []
|
|
87
87
|
},
|
|
88
|
+
{
|
|
89
|
+
"label": "Claude Code",
|
|
90
|
+
"type": "shell",
|
|
91
|
+
"command": "claude",
|
|
92
|
+
"args": [],
|
|
93
|
+
"problemMatcher": []
|
|
94
|
+
}
|
|
88
95
|
],
|
|
89
96
|
"inputs": [
|
|
90
97
|
{
|
|
@@ -113,6 +120,13 @@
|
|
|
113
120
|
"description": "Enter base branch (default: main):",
|
|
114
121
|
"default": "main"
|
|
115
122
|
},
|
|
123
|
+
{
|
|
124
|
+
"id": "updateDependencies",
|
|
125
|
+
"type": "pickString",
|
|
126
|
+
"description": "Update dependencies after creating branch:",
|
|
127
|
+
"default": "yes",
|
|
128
|
+
"options": ["yes", "no"]
|
|
129
|
+
},
|
|
116
130
|
{
|
|
117
131
|
"id": "targetBranch",
|
|
118
132
|
"type": "promptString",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: robosystems-client
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.26
|
|
4
4
|
Summary: Python Client for RoboSystems financial graph database API
|
|
5
5
|
Author: RFS LLC
|
|
6
6
|
License: MIT
|
|
@@ -81,18 +81,19 @@ pip install robosystems-client[tables]
|
|
|
81
81
|
pip install robosystems-client[all]
|
|
82
82
|
```
|
|
83
83
|
|
|
84
|
-
##
|
|
84
|
+
## Resources
|
|
85
85
|
|
|
86
|
-
- [
|
|
87
|
-
- [
|
|
88
|
-
- [
|
|
86
|
+
- [RoboSystems Platform](https://robosystems.ai)
|
|
87
|
+
- [GitHub Repository](https://github.com/RoboFinSystems/robosystems)
|
|
88
|
+
- [API Documentation](https://api.robosystems.ai/docs)
|
|
89
|
+
- [OpenAPI Specification](https://api.robosystems.ai/openapi.json)
|
|
89
90
|
|
|
90
91
|
## Support
|
|
91
92
|
|
|
92
93
|
- [Issues](https://github.com/RoboFinSystems/robosystems-python-client/issues)
|
|
93
|
-
- [Discussions](https://github.com/RoboFinSystems/robosystems/discussions)
|
|
94
|
-
- [Projects](https://github.com/RoboFinSystems/robosystems/projects)
|
|
95
94
|
- [Wiki](https://github.com/RoboFinSystems/robosystems/wiki)
|
|
95
|
+
- [Projects](https://github.com/orgs/RoboFinSystems/projects)
|
|
96
|
+
- [Discussions](https://github.com/orgs/RoboFinSystems/discussions)
|
|
96
97
|
|
|
97
98
|
## License
|
|
98
99
|
|
|
@@ -27,18 +27,19 @@ pip install robosystems-client[tables]
|
|
|
27
27
|
pip install robosystems-client[all]
|
|
28
28
|
```
|
|
29
29
|
|
|
30
|
-
##
|
|
30
|
+
## Resources
|
|
31
31
|
|
|
32
|
-
- [
|
|
33
|
-
- [
|
|
34
|
-
- [
|
|
32
|
+
- [RoboSystems Platform](https://robosystems.ai)
|
|
33
|
+
- [GitHub Repository](https://github.com/RoboFinSystems/robosystems)
|
|
34
|
+
- [API Documentation](https://api.robosystems.ai/docs)
|
|
35
|
+
- [OpenAPI Specification](https://api.robosystems.ai/openapi.json)
|
|
35
36
|
|
|
36
37
|
## Support
|
|
37
38
|
|
|
38
39
|
- [Issues](https://github.com/RoboFinSystems/robosystems-python-client/issues)
|
|
39
|
-
- [Discussions](https://github.com/RoboFinSystems/robosystems/discussions)
|
|
40
|
-
- [Projects](https://github.com/RoboFinSystems/robosystems/projects)
|
|
41
40
|
- [Wiki](https://github.com/RoboFinSystems/robosystems/wiki)
|
|
41
|
+
- [Projects](https://github.com/orgs/RoboFinSystems/projects)
|
|
42
|
+
- [Discussions](https://github.com/orgs/RoboFinSystems/discussions)
|
|
42
43
|
|
|
43
44
|
## License
|
|
44
45
|
|
robosystems_client-0.2.24/bin/create-feature → robosystems_client-0.2.26/bin/create-feature.sh
RENAMED
|
@@ -3,12 +3,13 @@ set -e
|
|
|
3
3
|
|
|
4
4
|
# Create feature branch script - local Git operations
|
|
5
5
|
# Creates a new feature/bugfix/hotfix branch locally and pushes to remote
|
|
6
|
-
# Usage: ./bin/create-feature [feature|bugfix|hotfix|chore|refactor] [branch-name] [base-branch]
|
|
6
|
+
# Usage: ./bin/create-feature.sh [feature|bugfix|hotfix|chore|refactor] [branch-name] [base-branch] [update-deps]
|
|
7
7
|
|
|
8
8
|
# Default values
|
|
9
9
|
BRANCH_TYPE=${1:-feature}
|
|
10
10
|
BRANCH_NAME=${2:-}
|
|
11
11
|
BASE_BRANCH=${3:-main}
|
|
12
|
+
UPDATE_DEPS=${4:-yes}
|
|
12
13
|
|
|
13
14
|
# Validate branch type
|
|
14
15
|
if [[ "$BRANCH_TYPE" != "feature" && "$BRANCH_TYPE" != "bugfix" && "$BRANCH_TYPE" != "hotfix" && "$BRANCH_TYPE" != "chore" && "$BRANCH_TYPE" != "refactor" ]]; then
|
|
@@ -78,6 +79,15 @@ git push -u origin $FULL_BRANCH
|
|
|
78
79
|
|
|
79
80
|
echo ""
|
|
80
81
|
echo "🎉 Successfully created and checked out $FULL_BRANCH"
|
|
82
|
+
|
|
83
|
+
# Update dependencies if requested (default: yes)
|
|
84
|
+
if [[ "$UPDATE_DEPS" == "yes" ]]; then
|
|
85
|
+
echo ""
|
|
86
|
+
echo "📦 Updating dependencies..."
|
|
87
|
+
just update
|
|
88
|
+
echo "✅ Dependencies updated"
|
|
89
|
+
fi
|
|
90
|
+
|
|
81
91
|
echo ""
|
|
82
92
|
echo "📝 Next steps:"
|
|
83
93
|
echo " 1. Make your changes and commit them"
|
robosystems_client-0.2.24/bin/create-release → robosystems_client-0.2.26/bin/create-release.sh
RENAMED
|
@@ -3,7 +3,7 @@ set -e
|
|
|
3
3
|
|
|
4
4
|
# Create release script using GitHub Actions
|
|
5
5
|
# Creates a new release branch via GHA workflow and checks it out locally
|
|
6
|
-
# Usage: ./bin/create-release [major|minor|patch]
|
|
6
|
+
# Usage: ./bin/create-release.sh [major|minor|patch]
|
|
7
7
|
|
|
8
8
|
# Default to patch if no argument provided
|
|
9
9
|
VERSION_TYPE=${1:-patch}
|
|
@@ -45,23 +45,23 @@ typecheck:
|
|
|
45
45
|
|
|
46
46
|
# Generate SDK from localhost API
|
|
47
47
|
generate-sdk url="http://localhost:8000/openapi.json":
|
|
48
|
-
bin/generate-sdk {{url}}
|
|
48
|
+
bin/generate-sdk.sh {{url}}
|
|
49
49
|
|
|
50
50
|
# Build python package locally (for testing)
|
|
51
51
|
build-package:
|
|
52
52
|
python -m build
|
|
53
53
|
|
|
54
54
|
# Create a feature branch
|
|
55
|
-
create-feature branch_type="feature" branch_name="" base_branch="main":
|
|
56
|
-
bin/create-feature {{branch_type}} {{branch_name}} {{base_branch}}
|
|
55
|
+
create-feature branch_type="feature" branch_name="" base_branch="main" update="yes":
|
|
56
|
+
bin/create-feature.sh {{branch_type}} {{branch_name}} {{base_branch}} {{update}}
|
|
57
57
|
|
|
58
58
|
# Version management
|
|
59
59
|
create-release type="patch":
|
|
60
|
-
bin/create-release {{type}}
|
|
60
|
+
bin/create-release.sh {{type}}
|
|
61
61
|
|
|
62
62
|
# Create PR
|
|
63
63
|
create-pr target_branch="main" claude_review="true":
|
|
64
|
-
bin/create-pr {{target_branch}} {{claude_review}}
|
|
64
|
+
bin/create-pr.sh {{target_branch}} {{claude_review}}
|
|
65
65
|
|
|
66
66
|
# Clean up development artifacts
|
|
67
67
|
clean:
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
from http import HTTPStatus
|
|
2
2
|
from typing import Any, cast
|
|
3
|
+
from urllib.parse import quote
|
|
3
4
|
|
|
4
5
|
import httpx
|
|
5
6
|
|
|
@@ -36,7 +37,9 @@ def _get_kwargs(
|
|
|
36
37
|
|
|
37
38
|
_kwargs: dict[str, Any] = {
|
|
38
39
|
"method": "post",
|
|
39
|
-
"url":
|
|
40
|
+
"url": "/v1/graphs/{graph_id}/agent".format(
|
|
41
|
+
graph_id=quote(str(graph_id), safe=""),
|
|
42
|
+
),
|
|
40
43
|
"params": params,
|
|
41
44
|
}
|
|
42
45
|
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
from http import HTTPStatus
|
|
2
2
|
from typing import Any, cast
|
|
3
|
+
from urllib.parse import quote
|
|
3
4
|
|
|
4
5
|
import httpx
|
|
5
6
|
|
|
@@ -20,7 +21,9 @@ def _get_kwargs(
|
|
|
20
21
|
|
|
21
22
|
_kwargs: dict[str, Any] = {
|
|
22
23
|
"method": "post",
|
|
23
|
-
"url":
|
|
24
|
+
"url": "/v1/graphs/{graph_id}/agent/batch".format(
|
|
25
|
+
graph_id=quote(str(graph_id), safe=""),
|
|
26
|
+
),
|
|
24
27
|
}
|
|
25
28
|
|
|
26
29
|
_kwargs["json"] = body.to_dict()
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
from http import HTTPStatus
|
|
2
2
|
from typing import Any, cast
|
|
3
|
+
from urllib.parse import quote
|
|
3
4
|
|
|
4
5
|
import httpx
|
|
5
6
|
|
|
@@ -37,7 +38,10 @@ def _get_kwargs(
|
|
|
37
38
|
|
|
38
39
|
_kwargs: dict[str, Any] = {
|
|
39
40
|
"method": "post",
|
|
40
|
-
"url":
|
|
41
|
+
"url": "/v1/graphs/{graph_id}/agent/{agent_type}".format(
|
|
42
|
+
graph_id=quote(str(graph_id), safe=""),
|
|
43
|
+
agent_type=quote(str(agent_type), safe=""),
|
|
44
|
+
),
|
|
41
45
|
"params": params,
|
|
42
46
|
}
|
|
43
47
|
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
from http import HTTPStatus
|
|
2
2
|
from typing import Any, cast
|
|
3
|
+
from urllib.parse import quote
|
|
3
4
|
|
|
4
5
|
import httpx
|
|
5
6
|
|
|
@@ -16,7 +17,10 @@ def _get_kwargs(
|
|
|
16
17
|
) -> dict[str, Any]:
|
|
17
18
|
_kwargs: dict[str, Any] = {
|
|
18
19
|
"method": "get",
|
|
19
|
-
"url":
|
|
20
|
+
"url": "/v1/graphs/{graph_id}/agent/{agent_type}".format(
|
|
21
|
+
graph_id=quote(str(graph_id), safe=""),
|
|
22
|
+
agent_type=quote(str(agent_type), safe=""),
|
|
23
|
+
),
|
|
20
24
|
}
|
|
21
25
|
|
|
22
26
|
return _kwargs
|
{robosystems_client-0.2.24 → robosystems_client-0.2.26}/robosystems_client/api/agent/list_agents.py
RENAMED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
from http import HTTPStatus
|
|
2
2
|
from typing import Any, cast
|
|
3
|
+
from urllib.parse import quote
|
|
3
4
|
|
|
4
5
|
import httpx
|
|
5
6
|
|
|
@@ -28,7 +29,9 @@ def _get_kwargs(
|
|
|
28
29
|
|
|
29
30
|
_kwargs: dict[str, Any] = {
|
|
30
31
|
"method": "get",
|
|
31
|
-
"url":
|
|
32
|
+
"url": "/v1/graphs/{graph_id}/agent".format(
|
|
33
|
+
graph_id=quote(str(graph_id), safe=""),
|
|
34
|
+
),
|
|
32
35
|
"params": params,
|
|
33
36
|
}
|
|
34
37
|
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
from http import HTTPStatus
|
|
2
2
|
from typing import Any, cast
|
|
3
|
+
from urllib.parse import quote
|
|
3
4
|
|
|
4
5
|
import httpx
|
|
5
6
|
|
|
@@ -20,7 +21,9 @@ def _get_kwargs(
|
|
|
20
21
|
|
|
21
22
|
_kwargs: dict[str, Any] = {
|
|
22
23
|
"method": "post",
|
|
23
|
-
"url":
|
|
24
|
+
"url": "/v1/graphs/{graph_id}/agent/recommend".format(
|
|
25
|
+
graph_id=quote(str(graph_id), safe=""),
|
|
26
|
+
),
|
|
24
27
|
}
|
|
25
28
|
|
|
26
29
|
_kwargs["json"] = body.to_dict()
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
from http import HTTPStatus
|
|
2
2
|
from typing import Any
|
|
3
|
+
from urllib.parse import quote
|
|
3
4
|
|
|
4
5
|
import httpx
|
|
5
6
|
|
|
@@ -20,7 +21,9 @@ def _get_kwargs(
|
|
|
20
21
|
|
|
21
22
|
_kwargs: dict[str, Any] = {
|
|
22
23
|
"method": "post",
|
|
23
|
-
"url":
|
|
24
|
+
"url": "/v1/graphs/{graph_id}/backups".format(
|
|
25
|
+
graph_id=quote(str(graph_id), safe=""),
|
|
26
|
+
),
|
|
24
27
|
}
|
|
25
28
|
|
|
26
29
|
_kwargs["json"] = body.to_dict()
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
from http import HTTPStatus
|
|
2
2
|
from typing import Any, cast
|
|
3
|
+
from urllib.parse import quote
|
|
3
4
|
|
|
4
5
|
import httpx
|
|
5
6
|
|
|
@@ -24,7 +25,10 @@ def _get_kwargs(
|
|
|
24
25
|
|
|
25
26
|
_kwargs: dict[str, Any] = {
|
|
26
27
|
"method": "get",
|
|
27
|
-
"url":
|
|
28
|
+
"url": "/v1/graphs/{graph_id}/backups/{backup_id}/download".format(
|
|
29
|
+
graph_id=quote(str(graph_id), safe=""),
|
|
30
|
+
backup_id=quote(str(backup_id), safe=""),
|
|
31
|
+
),
|
|
28
32
|
"params": params,
|
|
29
33
|
}
|
|
30
34
|
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
from http import HTTPStatus
|
|
2
2
|
from typing import Any
|
|
3
|
+
from urllib.parse import quote
|
|
3
4
|
|
|
4
5
|
import httpx
|
|
5
6
|
|
|
@@ -15,7 +16,9 @@ def _get_kwargs(
|
|
|
15
16
|
) -> dict[str, Any]:
|
|
16
17
|
_kwargs: dict[str, Any] = {
|
|
17
18
|
"method": "get",
|
|
18
|
-
"url":
|
|
19
|
+
"url": "/v1/graphs/{graph_id}/backups/stats".format(
|
|
20
|
+
graph_id=quote(str(graph_id), safe=""),
|
|
21
|
+
),
|
|
19
22
|
}
|
|
20
23
|
|
|
21
24
|
return _kwargs
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
from http import HTTPStatus
|
|
2
2
|
from typing import Any
|
|
3
|
+
from urllib.parse import quote
|
|
3
4
|
|
|
4
5
|
import httpx
|
|
5
6
|
|
|
@@ -26,7 +27,9 @@ def _get_kwargs(
|
|
|
26
27
|
|
|
27
28
|
_kwargs: dict[str, Any] = {
|
|
28
29
|
"method": "get",
|
|
29
|
-
"url":
|
|
30
|
+
"url": "/v1/graphs/{graph_id}/backups".format(
|
|
31
|
+
graph_id=quote(str(graph_id), safe=""),
|
|
32
|
+
),
|
|
30
33
|
"params": params,
|
|
31
34
|
}
|
|
32
35
|
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
from http import HTTPStatus
|
|
2
2
|
from typing import Any
|
|
3
|
+
from urllib.parse import quote
|
|
3
4
|
|
|
4
5
|
import httpx
|
|
5
6
|
|
|
@@ -21,7 +22,10 @@ def _get_kwargs(
|
|
|
21
22
|
|
|
22
23
|
_kwargs: dict[str, Any] = {
|
|
23
24
|
"method": "post",
|
|
24
|
-
"url":
|
|
25
|
+
"url": "/v1/graphs/{graph_id}/backups/{backup_id}/restore".format(
|
|
26
|
+
graph_id=quote(str(graph_id), safe=""),
|
|
27
|
+
backup_id=quote(str(backup_id), safe=""),
|
|
28
|
+
),
|
|
25
29
|
}
|
|
26
30
|
|
|
27
31
|
_kwargs["json"] = body.to_dict()
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
from http import HTTPStatus
|
|
2
2
|
from typing import Any
|
|
3
|
+
from urllib.parse import quote
|
|
3
4
|
|
|
4
5
|
import httpx
|
|
5
6
|
|
|
@@ -16,7 +17,10 @@ def _get_kwargs(
|
|
|
16
17
|
) -> dict[str, Any]:
|
|
17
18
|
_kwargs: dict[str, Any] = {
|
|
18
19
|
"method": "post",
|
|
19
|
-
"url":
|
|
20
|
+
"url": "/v1/billing/subscriptions/{org_id}/subscription/{subscription_id}/cancel".format(
|
|
21
|
+
org_id=quote(str(org_id), safe=""),
|
|
22
|
+
subscription_id=quote(str(subscription_id), safe=""),
|
|
23
|
+
),
|
|
20
24
|
}
|
|
21
25
|
|
|
22
26
|
return _kwargs
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
from http import HTTPStatus
|
|
2
2
|
from typing import Any
|
|
3
|
+
from urllib.parse import quote
|
|
3
4
|
|
|
4
5
|
import httpx
|
|
5
6
|
|
|
@@ -15,7 +16,9 @@ def _get_kwargs(
|
|
|
15
16
|
) -> dict[str, Any]:
|
|
16
17
|
_kwargs: dict[str, Any] = {
|
|
17
18
|
"method": "post",
|
|
18
|
-
"url":
|
|
19
|
+
"url": "/v1/billing/customer/{org_id}/portal".format(
|
|
20
|
+
org_id=quote(str(org_id), safe=""),
|
|
21
|
+
),
|
|
19
22
|
}
|
|
20
23
|
|
|
21
24
|
return _kwargs
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
from http import HTTPStatus
|
|
2
2
|
from typing import Any
|
|
3
|
+
from urllib.parse import quote
|
|
3
4
|
|
|
4
5
|
import httpx
|
|
5
6
|
|
|
@@ -15,7 +16,9 @@ def _get_kwargs(
|
|
|
15
16
|
) -> dict[str, Any]:
|
|
16
17
|
_kwargs: dict[str, Any] = {
|
|
17
18
|
"method": "get",
|
|
18
|
-
"url":
|
|
19
|
+
"url": "/v1/billing/checkout/{session_id}/status".format(
|
|
20
|
+
session_id=quote(str(session_id), safe=""),
|
|
21
|
+
),
|
|
19
22
|
}
|
|
20
23
|
|
|
21
24
|
return _kwargs
|