robosystems-client 0.2.23__tar.gz → 0.2.25__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.
- robosystems_client-0.2.25/.claude/commands/create-issue.md +94 -0
- robosystems_client-0.2.25/.claude/commands/staged-review.md +42 -0
- robosystems_client-0.2.25/.claude/commands/test.md +20 -0
- robosystems_client-0.2.25/.github/CONTRIBUTING.md +286 -0
- robosystems_client-0.2.25/.github/ISSUE_TEMPLATE/bug.yml +81 -0
- robosystems_client-0.2.25/.github/ISSUE_TEMPLATE/config.yml +5 -0
- robosystems_client-0.2.25/.github/ISSUE_TEMPLATE/feature.yml +34 -0
- robosystems_client-0.2.25/.github/ISSUE_TEMPLATE/rfc.yml +103 -0
- robosystems_client-0.2.25/.github/ISSUE_TEMPLATE/spec.yml +143 -0
- robosystems_client-0.2.25/.github/ISSUE_TEMPLATE/task.yml +65 -0
- robosystems_client-0.2.25/.github/branch-rules/main.json +61 -0
- robosystems_client-0.2.25/.github/branch-rules/release.json +38 -0
- robosystems_client-0.2.25/.github/workflows/claude.yml +50 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/.github/workflows/create-pr.yml +2 -2
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/.github/workflows/tag-release.yml +5 -5
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/.github/workflows/test.yml +2 -2
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/.gitignore +5 -2
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/.vscode/tasks.json +15 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/PKG-INFO +14 -13
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/README.md +7 -6
- robosystems_client-0.2.23/bin/create-feature → robosystems_client-0.2.25/bin/create-feature.sh +11 -1
- robosystems_client-0.2.23/bin/create-release → robosystems_client-0.2.25/bin/create-release.sh +1 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/justfile +6 -6
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/pyproject.toml +7 -7
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/agent/auto_select_agent.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/agent/batch_process_queries.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/agent/execute_specific_agent.py +5 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/agent/get_agent_metadata.py +5 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/agent/list_agents.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/agent/recommend_agent.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/backup/create_backup.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/backup/get_backup_download_url.py +5 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/backup/get_backup_stats.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/backup/list_backups.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/backup/restore_backup.py +5 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/billing/cancel_org_subscription.py +5 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/billing/create_portal_session.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/billing/get_checkout_status.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/billing/get_org_billing_customer.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/billing/get_org_subscription.py +5 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/billing/get_org_upcoming_invoice.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/billing/list_org_invoices.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/billing/list_org_subscriptions.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/connections/create_connection.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/connections/create_link_token.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/connections/delete_connection.py +5 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/connections/exchange_link_token.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/connections/get_connection.py +5 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/connections/get_connection_options.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/connections/init_o_auth.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/connections/list_connections.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/connections/oauth_callback.py +5 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/connections/sync_connection.py +5 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/credits_/check_credit_balance.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/credits_/check_storage_limits.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/credits_/get_credit_summary.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/credits_/get_storage_usage.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/credits_/list_credit_transactions.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/files/create_file_upload.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/files/delete_file.py +5 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/files/get_file.py +5 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/files/list_files.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/files/update_file.py +5 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/graph_health/get_database_health.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/graph_info/get_database_info.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/graph_limits/get_graph_limits.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/graphs/select_graph.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/materialize/get_materialization_status.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/materialize/materialize_graph.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/mcp/call_mcp_tool.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/mcp/list_mcp_tools.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/operations/cancel_operation.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/operations/get_operation_status.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/operations/stream_operation_events.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/org/get_org.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/org/list_org_graphs.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/org/update_org.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/org_members/invite_org_member.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/org_members/list_org_members.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/org_members/remove_org_member.py +5 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/org_members/update_org_member_role.py +5 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/org_usage/get_org_limits.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/org_usage/get_org_usage.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/query/execute_cypher_query.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/schema/export_graph_schema.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/schema/get_graph_schema.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/schema/validate_schema.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/subgraphs/create_subgraph.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/subgraphs/delete_subgraph.py +5 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/subgraphs/get_subgraph_info.py +5 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/subgraphs/get_subgraph_quota.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/subgraphs/list_subgraphs.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/subscriptions/create_repository_subscription.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/subscriptions/get_graph_subscription.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/subscriptions/upgrade_subscription.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/tables/list_tables.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/tables/query_tables.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/usage/get_graph_metrics.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/usage/get_graph_usage_analytics.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/user/revoke_user_api_key.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/user/update_user_api_key.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/views/create_view.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/views/save_view.py +4 -1
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/extensions/graph_client.py +163 -3
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/extensions/query_client.py +17 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/token_pricing.py +4 -4
- robosystems_client-0.2.25/tests/test_graph_client.py +731 -0
- robosystems_client-0.2.23/.github/ISSUE_TEMPLATE/bug_report.md +0 -27
- robosystems_client-0.2.23/.github/ISSUE_TEMPLATE/feature_request.md +0 -20
- robosystems_client-0.2.23/.github/workflows/claude.yml +0 -37
- robosystems_client-0.2.23/tests/test_graph_client.py +0 -110
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/.github/workflows/create-release.yml +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/.github/workflows/publish.yml +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/.vscode/settings.json +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/LICENSE +0 -0
- /robosystems_client-0.2.23/bin/create-pr → /robosystems_client-0.2.25/bin/create-pr.sh +0 -0
- /robosystems_client-0.2.23/bin/generate-sdk → /robosystems_client-0.2.25/bin/generate-sdk.sh +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/pytest.ini +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/__init__.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/__init__.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/agent/__init__.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/auth/__init__.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/auth/check_password_strength.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/auth/complete_sso_auth.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/auth/forgot_password.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/auth/generate_sso_token.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/auth/get_captcha_config.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/auth/get_current_auth_user.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/auth/get_password_policy.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/auth/login_user.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/auth/logout_user.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/auth/refresh_auth_session.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/auth/register_user.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/auth/resend_verification_email.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/auth/reset_password.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/auth/sso_token_exchange.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/auth/validate_reset_token.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/auth/verify_email.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/backup/__init__.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/billing/__init__.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/billing/create_checkout_session.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/connections/__init__.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/credits_/__init__.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/files/__init__.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/graph_health/__init__.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/graph_info/__init__.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/graph_limits/__init__.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/graphs/__init__.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/graphs/create_graph.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/graphs/get_available_extensions.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/graphs/get_available_graph_tiers.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/graphs/get_graphs.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/materialize/__init__.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/mcp/__init__.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/operations/__init__.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/org/__init__.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/org/create_org.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/org/list_user_orgs.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/org_members/__init__.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/org_usage/__init__.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/query/__init__.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/schema/__init__.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/service_offerings/__init__.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/service_offerings/get_service_offerings.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/status/__init__.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/status/get_service_status.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/subgraphs/__init__.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/subscriptions/__init__.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/tables/__init__.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/usage/__init__.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/user/__init__.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/user/create_user_api_key.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/user/get_current_user.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/user/list_user_api_keys.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/user/update_user.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/user/update_user_password.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/api/views/__init__.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/client.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/errors.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/extensions/README.md +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/extensions/__init__.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/extensions/agent_client.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/extensions/auth_integration.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/extensions/dataframe_utils.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/extensions/element_mapping_client.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/extensions/extensions.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/extensions/file_client.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/extensions/materialization_client.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/extensions/operation_client.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/extensions/sse_client.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/extensions/subgraph_workspace_client.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/extensions/table_client.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/extensions/tests/__init__.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/extensions/tests/test_dataframe_utils.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/extensions/tests/test_integration.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/extensions/tests/test_token_utils.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/extensions/tests/test_unit.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/extensions/token_utils.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/extensions/utils.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/extensions/view_builder_client.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/__init__.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/account_info.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/agent_list_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/agent_list_response_agents.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/agent_list_response_agents_additional_property.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/agent_message.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/agent_metadata_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/agent_mode.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/agent_recommendation.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/agent_recommendation_request.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/agent_recommendation_request_context_type_0.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/agent_recommendation_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/agent_request.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/agent_request_context_type_0.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/agent_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/agent_response_error_details_type_0.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/agent_response_metadata_type_0.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/agent_response_tokens_used_type_0.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/api_key_info.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/api_keys_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/auth_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/auth_response_org_type_0.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/auth_response_user.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/available_extension.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/available_extensions_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/available_graph_tiers_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/backup_create_request.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/backup_download_url_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/backup_limits.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/backup_list_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/backup_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/backup_restore_request.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/backup_stats_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/backup_stats_response_backup_formats.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/batch_agent_request.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/batch_agent_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/billing_customer.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/cancel_operation_response_canceloperation.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/check_credit_balance_response_checkcreditbalance.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/checkout_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/checkout_status_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/connection_options_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/connection_provider_info.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/connection_provider_info_auth_type.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/connection_provider_info_provider.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/connection_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/connection_response_metadata.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/connection_response_provider.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/copy_operation_limits.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/create_api_key_request.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/create_api_key_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/create_checkout_request.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/create_checkout_request_resource_config.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/create_connection_request.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/create_connection_request_provider.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/create_graph_request.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/create_org_request.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/create_repository_subscription_request.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/create_subgraph_request.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/create_subgraph_request_metadata_type_0.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/create_view_request.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/credit_limits.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/credit_summary.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/credit_summary_operation_breakdown.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/credit_summary_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/custom_schema_definition.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/custom_schema_definition_metadata.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/custom_schema_definition_nodes_item.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/custom_schema_definition_relationships_item.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/cypher_query_request.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/cypher_query_request_parameters_type_0.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/database_health_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/database_info_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/delete_file_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/delete_subgraph_request.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/delete_subgraph_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/detailed_transactions_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/detailed_transactions_response_date_range.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/detailed_transactions_response_summary.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/email_verification_request.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/enhanced_credit_transaction_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/enhanced_credit_transaction_response_metadata.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/enhanced_file_status_layers.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/error_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/exchange_token_request.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/exchange_token_request_metadata_type_0.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/execute_cypher_query_response_200.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/execute_cypher_query_response_200_data_item.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/fact_detail.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/file_info.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/file_layer_status.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/file_status_update.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/file_upload_request.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/file_upload_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/forgot_password_request.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/forgot_password_response_forgotpassword.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/get_current_auth_user_response_getcurrentauthuser.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/get_file_info_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/get_operation_status_response_getoperationstatus.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/get_storage_usage_response_getstorageusage.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/graph_info.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/graph_limits_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/graph_metadata.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/graph_metrics_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/graph_metrics_response_estimated_size.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/graph_metrics_response_health_status.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/graph_metrics_response_node_counts.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/graph_metrics_response_relationship_counts.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/graph_subscription_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/graph_subscription_tier.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/graph_subscriptions.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/graph_tier_backup.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/graph_tier_copy_operations.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/graph_tier_info.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/graph_tier_instance.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/graph_tier_limits.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/graph_usage_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/graph_usage_response_recent_events_item.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/health_status.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/health_status_details_type_0.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/http_validation_error.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/initial_entity_data.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/invite_member_request.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/invoice.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/invoice_line_item.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/invoices_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/link_token_request.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/link_token_request_options_type_0.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/link_token_request_provider_type_0.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/list_connections_provider_type_0.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/list_org_graphs_response_200_item.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/list_subgraphs_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/list_table_files_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/login_request.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/logout_user_response_logoutuser.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/materialize_request.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/materialize_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/materialize_status_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/mcp_tool_call.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/mcp_tool_call_arguments.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/mcp_tools_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/mcp_tools_response_tools_item.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/o_auth_callback_request.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/o_auth_init_request.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/o_auth_init_request_additional_params_type_0.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/o_auth_init_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/offering_repository_plan.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/offering_repository_plan_rate_limits_type_0.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/operation_costs.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/operation_costs_ai_operations.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/operation_costs_token_pricing.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/org_detail_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/org_detail_response_graphs_item.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/org_detail_response_limits_type_0.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/org_detail_response_members_item.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/org_limits_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/org_limits_response_current_usage.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/org_list_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/org_member_list_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/org_member_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/org_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/org_role.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/org_type.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/org_usage_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/org_usage_response_daily_trend_item.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/org_usage_response_graph_details_item.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/org_usage_summary.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/password_check_request.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/password_check_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/password_check_response_character_types.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/password_policy_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/password_policy_response_policy.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/payment_method.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/performance_insights.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/performance_insights_operation_stats.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/performance_insights_slow_queries_item.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/plaid_connection_config.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/plaid_connection_config_accounts_type_0_item.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/plaid_connection_config_institution_type_0.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/portal_session_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/query_limits.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/quick_books_connection_config.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/rate_limits.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/register_request.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/repository_info.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/repository_subscriptions.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/resend_verification_email_response_resendverificationemail.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/reset_password_request.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/reset_password_validate_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/response_mode.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/save_view_request.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/save_view_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/schema_export_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/schema_export_response_data_stats_type_0.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/schema_export_response_schema_definition_type_0.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/schema_info_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/schema_info_response_schema.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/schema_validation_request.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/schema_validation_request_schema_definition_type_0.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/schema_validation_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/schema_validation_response_compatibility_type_0.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/schema_validation_response_stats_type_0.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/sec_connection_config.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/selection_criteria.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/service_offering_summary.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/service_offerings_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/sso_complete_request.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/sso_exchange_request.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/sso_exchange_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/sso_token_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/storage_info.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/storage_info_included_per_tier.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/storage_info_overage_pricing.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/storage_limit_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/storage_limits.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/storage_summary.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/structure_detail.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/subgraph_quota_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/subgraph_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/subgraph_response_metadata_type_0.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/subgraph_summary.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/subgraph_type.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/success_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/success_response_data_type_0.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/sync_connection_request.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/sync_connection_request_sync_options_type_0.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/sync_connection_response_syncconnection.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/table_info.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/table_list_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/table_query_request.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/table_query_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/transaction_summary_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/upcoming_invoice.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/update_api_key_request.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/update_file_response_updatefile.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/update_member_role_request.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/update_org_request.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/update_password_request.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/update_user_request.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/upgrade_subscription_request.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/user_graphs_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/user_response.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/validation_error.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/view_axis_config.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/view_axis_config_element_labels_type_0.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/view_axis_config_member_labels_type_0.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/view_config.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/view_source.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/models/view_source_type.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/py.typed +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/sdk-config.yaml +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/robosystems_client/types.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/ruff.toml +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/tests/__init__.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/tests/conftest.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/tests/test_client.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/tests/test_extensions.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/tests/test_operation_client.py +0 -0
- {robosystems_client-0.2.23 → robosystems_client-0.2.25}/tests/test_query_client.py +0 -0
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
Create a GitHub issue for the current repository based on the user's input.
|
|
2
|
+
|
|
3
|
+
## Instructions
|
|
4
|
+
|
|
5
|
+
1. **Determine Issue Type** - Based on the user's description, determine which type to use:
|
|
6
|
+
- **Bug**: Defects or unexpected behavior
|
|
7
|
+
- **Task**: Specific, bounded work items that can be completed in one PR
|
|
8
|
+
- **Feature**: Request a new capability (no design required)
|
|
9
|
+
- **RFC**: Propose a design for discussion before implementation (if available)
|
|
10
|
+
- **Spec**: Approved implementation plan ready for execution (if available)
|
|
11
|
+
|
|
12
|
+
Note: Not all repos have RFC/Spec templates. Check `.github/ISSUE_TEMPLATE/` first.
|
|
13
|
+
|
|
14
|
+
2. **Gather Context** - If the user provides a file path or references existing code:
|
|
15
|
+
- Read the relevant files to understand the current implementation
|
|
16
|
+
- Check related configuration files
|
|
17
|
+
- Review any referenced documentation
|
|
18
|
+
|
|
19
|
+
3. **Draft the Issue** - Use the YAML templates in `.github/ISSUE_TEMPLATE/`:
|
|
20
|
+
- `bug.yml` - Include reproduction steps, impact, environment
|
|
21
|
+
- `task.yml` - Be specific about scope and acceptance criteria
|
|
22
|
+
- `feature.yml` - Capture the need and why it matters
|
|
23
|
+
- `spec.yml` - Fill in all sections with technical detail (if available)
|
|
24
|
+
- `rfc.yml` - Comprehensive design with alternatives considered (if available)
|
|
25
|
+
|
|
26
|
+
4. **Sanitize for Public Visibility** - Before creating:
|
|
27
|
+
- Remove any internal pricing, margins, or cost details
|
|
28
|
+
- Remove specific customer names or data
|
|
29
|
+
- Generalize any sensitive business metrics
|
|
30
|
+
- Keep technical implementation details (these are fine to share)
|
|
31
|
+
|
|
32
|
+
5. **Create the Issue** - Use `gh issue create` with:
|
|
33
|
+
- Clear, concise title (no prefixes like [SPEC] - types handle categorization)
|
|
34
|
+
- Well-formatted markdown body matching the template structure
|
|
35
|
+
- Appropriate metadata labels (see below)
|
|
36
|
+
|
|
37
|
+
6. **Set Issue Type** - After creation, set the issue type via GraphQL:
|
|
38
|
+
```bash
|
|
39
|
+
# Get repo info from current directory
|
|
40
|
+
REPO=$(gh repo view --json nameWithOwner -q .nameWithOwner)
|
|
41
|
+
OWNER=$(echo $REPO | cut -d'/' -f1)
|
|
42
|
+
NAME=$(echo $REPO | cut -d'/' -f2)
|
|
43
|
+
|
|
44
|
+
# Get issue ID
|
|
45
|
+
gh api graphql -f query="{ repository(owner: \"$OWNER\", name: \"$NAME\") { issue(number: NUMBER) { id } } }"
|
|
46
|
+
|
|
47
|
+
# Get available issue types for this repo
|
|
48
|
+
gh api graphql -f query="{ repository(owner: \"$OWNER\", name: \"$NAME\") { issueTypes(first: 10) { nodes { id name } } } }"
|
|
49
|
+
|
|
50
|
+
# Set type (use correct type ID from above)
|
|
51
|
+
gh api graphql -f query='mutation { updateIssue(input: { id: "ISSUE_ID", issueTypeId: "TYPE_ID" }) { issue { number } } }'
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
## Labels
|
|
55
|
+
|
|
56
|
+
Issue types handle primary categorization. Use labels for metadata (varies by repo):
|
|
57
|
+
|
|
58
|
+
**Priority** (when to do it):
|
|
59
|
+
- `priority:critical` - Drop everything
|
|
60
|
+
- `priority:high` - Next up
|
|
61
|
+
- `priority:low` - Backlog
|
|
62
|
+
|
|
63
|
+
**Size** (how long):
|
|
64
|
+
- `size:small` - < 1 day
|
|
65
|
+
- `size:medium` - 1-3 days
|
|
66
|
+
- `size:large` - > 3 days
|
|
67
|
+
|
|
68
|
+
**Status**:
|
|
69
|
+
- `blocked` - Waiting on something
|
|
70
|
+
- `needs-review` - Ready for review
|
|
71
|
+
|
|
72
|
+
Check `gh label list` for available labels in the current repo.
|
|
73
|
+
|
|
74
|
+
## Example Usage
|
|
75
|
+
|
|
76
|
+
User: "We need to add export functionality"
|
|
77
|
+
|
|
78
|
+
Response: I'll create a feature issue for export functionality. Let me first understand the current state...
|
|
79
|
+
|
|
80
|
+
[Read relevant files to understand current implementation]
|
|
81
|
+
[Draft issue matching the template structure]
|
|
82
|
+
[Create issue with gh issue create]
|
|
83
|
+
[Set issue type via GraphQL]
|
|
84
|
+
[Add appropriate labels]
|
|
85
|
+
|
|
86
|
+
## Output Format
|
|
87
|
+
|
|
88
|
+
After creating the issue, provide:
|
|
89
|
+
1. The issue URL
|
|
90
|
+
2. Brief summary of what was created
|
|
91
|
+
3. Issue type and labels applied
|
|
92
|
+
4. Any suggested follow-up tasks or related issues to create
|
|
93
|
+
|
|
94
|
+
$ARGUMENTS
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
Review all staged changes (`git diff --cached`) with focus on these contexts:
|
|
2
|
+
|
|
3
|
+
## Client Implementation Context
|
|
4
|
+
|
|
5
|
+
**API Methods:**
|
|
6
|
+
- Are new methods properly typed with Pydantic models?
|
|
7
|
+
- Is error handling consistent?
|
|
8
|
+
- Are async/sync variants implemented correctly?
|
|
9
|
+
|
|
10
|
+
**Type Definitions:**
|
|
11
|
+
- Are Pydantic models properly defined?
|
|
12
|
+
- Are types properly exported in `__init__.py`?
|
|
13
|
+
- Is backwards compatibility maintained?
|
|
14
|
+
|
|
15
|
+
**Code Quality:**
|
|
16
|
+
- Does the code follow existing patterns?
|
|
17
|
+
- Is the code properly formatted (ruff)?
|
|
18
|
+
- Are type hints complete (basedpyright)?
|
|
19
|
+
|
|
20
|
+
## Testing Context
|
|
21
|
+
|
|
22
|
+
- Do new methods have corresponding tests?
|
|
23
|
+
- Are edge cases covered?
|
|
24
|
+
- Is test coverage maintained?
|
|
25
|
+
|
|
26
|
+
## Documentation Context
|
|
27
|
+
|
|
28
|
+
- Is README updated for new features?
|
|
29
|
+
- Are docstrings complete?
|
|
30
|
+
- Are examples provided for new methods?
|
|
31
|
+
|
|
32
|
+
## Packaging Context
|
|
33
|
+
|
|
34
|
+
- Is `pyproject.toml` updated if needed?
|
|
35
|
+
- Are dependencies properly specified?
|
|
36
|
+
|
|
37
|
+
## Output
|
|
38
|
+
|
|
39
|
+
Provide a summary with:
|
|
40
|
+
1. **Issues**: Problems that should be fixed before commit
|
|
41
|
+
2. **Suggestions**: Improvements that aren't blocking
|
|
42
|
+
3. **Questions**: Anything unclear that needs clarification
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Run `just test-all` and systematically fix all failures to achieve 100% completion.
|
|
2
|
+
|
|
3
|
+
## Strategy
|
|
4
|
+
|
|
5
|
+
1. **Run full suite first**: `just test-all` to see the full picture
|
|
6
|
+
2. **Fix by module**: When errors exist, use `just test` to iterate faster
|
|
7
|
+
3. **Fix in order**: Linting/formatting → Type errors → Test failures
|
|
8
|
+
4. **Stop when done**: Once `just test-all` passes completely, stop immediately
|
|
9
|
+
|
|
10
|
+
## Key Commands
|
|
11
|
+
|
|
12
|
+
- `just test-all` - Full suite (tests + lint + format + typecheck)
|
|
13
|
+
- `just test` - Run pytest
|
|
14
|
+
- `just lint fix` - Auto-fix linting issues
|
|
15
|
+
- `just format` - Auto-fix formatting
|
|
16
|
+
- `just typecheck` - Run basedpyright
|
|
17
|
+
|
|
18
|
+
## Goal
|
|
19
|
+
|
|
20
|
+
100% pass rate on `just test-all` with no errors of any kind.
|
|
@@ -0,0 +1,286 @@
|
|
|
1
|
+
# Contributing to RoboSystems Python Client
|
|
2
|
+
|
|
3
|
+
Thank you for your interest in contributing to the RoboSystems Python Client! This is the official Python SDK for interacting with the RoboSystems API.
|
|
4
|
+
|
|
5
|
+
## Community
|
|
6
|
+
|
|
7
|
+
- **[Discussions](https://github.com/orgs/RoboFinSystems/discussions)** - Questions, ideas, and general conversation
|
|
8
|
+
- **[Project Board](https://github.com/orgs/RoboFinSystems/projects/3)** - Track work across all RoboSystems repositories
|
|
9
|
+
- **[Wiki](https://github.com/RoboFinSystems/robosystems/wiki)** - Architecture docs and guides
|
|
10
|
+
|
|
11
|
+
## Table of Contents
|
|
12
|
+
|
|
13
|
+
- [Getting Started](#getting-started)
|
|
14
|
+
- [Development Process](#development-process)
|
|
15
|
+
- [How to Contribute](#how-to-contribute)
|
|
16
|
+
- [Development Setup](#development-setup)
|
|
17
|
+
- [Coding Standards](#coding-standards)
|
|
18
|
+
- [Testing](#testing)
|
|
19
|
+
- [Pull Request Process](#pull-request-process)
|
|
20
|
+
- [Publishing](#publishing)
|
|
21
|
+
- [Security](#security)
|
|
22
|
+
|
|
23
|
+
## Getting Started
|
|
24
|
+
|
|
25
|
+
1. **Fork the repository** on GitHub
|
|
26
|
+
2. **Clone your fork** locally:
|
|
27
|
+
```bash
|
|
28
|
+
git clone https://github.com/YOUR-USERNAME/robosystems-python-client.git
|
|
29
|
+
cd robosystems-python-client
|
|
30
|
+
```
|
|
31
|
+
3. **Add the upstream remote**:
|
|
32
|
+
```bash
|
|
33
|
+
git remote add upstream https://github.com/RoboFinSystems/robosystems-python-client.git
|
|
34
|
+
```
|
|
35
|
+
4. **Set up your development environment** (see [Development Setup](#development-setup))
|
|
36
|
+
|
|
37
|
+
## Development Process
|
|
38
|
+
|
|
39
|
+
We use GitHub flow for our development process:
|
|
40
|
+
|
|
41
|
+
1. Create a feature branch from `main`
|
|
42
|
+
2. Make your changes in small, atomic commits
|
|
43
|
+
3. Write or update tests for your changes
|
|
44
|
+
4. Update documentation as needed
|
|
45
|
+
5. Create a PR to the `main` branch
|
|
46
|
+
|
|
47
|
+
### Branch Naming
|
|
48
|
+
|
|
49
|
+
Use descriptive branch names:
|
|
50
|
+
|
|
51
|
+
- `feature/add-new-method` - New features
|
|
52
|
+
- `bugfix/fix-auth-error` - Bug fixes
|
|
53
|
+
- `chore/update-deps` - Maintenance tasks
|
|
54
|
+
|
|
55
|
+
**Note:** All PRs must target the `main` branch only.
|
|
56
|
+
|
|
57
|
+
## How to Contribute
|
|
58
|
+
|
|
59
|
+
### Issue Types
|
|
60
|
+
|
|
61
|
+
We use issue templates to organize work:
|
|
62
|
+
|
|
63
|
+
| Type | When to Use |
|
|
64
|
+
|------|-------------|
|
|
65
|
+
| **Bug** | Defects or unexpected behavior |
|
|
66
|
+
| **Task** | Specific, bounded work that fits in one PR |
|
|
67
|
+
| **Feature** | Request a new capability (no design required) |
|
|
68
|
+
| **RFC** | Propose a design for discussion before implementation |
|
|
69
|
+
| **Spec** | Approved implementation plan ready for execution |
|
|
70
|
+
|
|
71
|
+
### Reporting Bugs
|
|
72
|
+
|
|
73
|
+
Before creating a bug report, check existing issues to avoid duplicates. Include:
|
|
74
|
+
|
|
75
|
+
- Steps to reproduce the issue
|
|
76
|
+
- Expected vs actual behavior
|
|
77
|
+
- SDK version (`pip show robosystems-client`)
|
|
78
|
+
- Python version
|
|
79
|
+
- Relevant error messages and tracebacks
|
|
80
|
+
|
|
81
|
+
### First-Time Contributors
|
|
82
|
+
|
|
83
|
+
Look for issues labeled `good first issue` or `help wanted`. These are great starting points for new contributors.
|
|
84
|
+
|
|
85
|
+
## Development Setup
|
|
86
|
+
|
|
87
|
+
### Prerequisites
|
|
88
|
+
|
|
89
|
+
- Python 3.11+ (check `.python-version`)
|
|
90
|
+
- `uv` for package management
|
|
91
|
+
- Git configured with your GitHub account
|
|
92
|
+
|
|
93
|
+
### Local Development Environment
|
|
94
|
+
|
|
95
|
+
1. **Install uv** (if not already installed):
|
|
96
|
+
|
|
97
|
+
```bash
|
|
98
|
+
curl -LsSf https://astral.sh/uv/install.sh | sh
|
|
99
|
+
# Or on macOS: brew install uv
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
2. **Install dependencies**:
|
|
103
|
+
|
|
104
|
+
```bash
|
|
105
|
+
uv sync
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
3. **Run tests**:
|
|
109
|
+
|
|
110
|
+
```bash
|
|
111
|
+
uv run pytest
|
|
112
|
+
```
|
|
113
|
+
|
|
114
|
+
### Environment Configuration
|
|
115
|
+
|
|
116
|
+
For integration tests, create a `.env` file:
|
|
117
|
+
|
|
118
|
+
```env
|
|
119
|
+
ROBOSYSTEMS_API_KEY=your-api-key
|
|
120
|
+
ROBOSYSTEMS_API_URL=https://api.robosystems.ai # or http://localhost:8000 for local
|
|
121
|
+
```
|
|
122
|
+
|
|
123
|
+
## Coding Standards
|
|
124
|
+
|
|
125
|
+
### Python Code Style
|
|
126
|
+
|
|
127
|
+
- **Formatter**: Ruff (88 character line length)
|
|
128
|
+
- **Linter**: Ruff
|
|
129
|
+
- **Type checking**: Pyright/Basedpyright
|
|
130
|
+
- **Docstrings**: Google style
|
|
131
|
+
|
|
132
|
+
Run code quality checks:
|
|
133
|
+
|
|
134
|
+
```bash
|
|
135
|
+
uv run ruff check . # Run linting
|
|
136
|
+
uv run ruff check --fix # Auto-fix linting issues
|
|
137
|
+
uv run ruff format . # Format code
|
|
138
|
+
uv run pyright # Type checking
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
### Commit Messages
|
|
142
|
+
|
|
143
|
+
Follow the Conventional Commits specification:
|
|
144
|
+
|
|
145
|
+
```
|
|
146
|
+
type(scope): subject
|
|
147
|
+
```
|
|
148
|
+
|
|
149
|
+
Types:
|
|
150
|
+
|
|
151
|
+
- `feat`: New feature (new method, type, etc.)
|
|
152
|
+
- `fix`: Bug fix
|
|
153
|
+
- `docs`: Documentation changes
|
|
154
|
+
- `refactor`: Code refactoring
|
|
155
|
+
- `test`: Test changes
|
|
156
|
+
- `chore`: Maintenance tasks
|
|
157
|
+
|
|
158
|
+
Examples:
|
|
159
|
+
|
|
160
|
+
```
|
|
161
|
+
feat(graphs): add create_graph method
|
|
162
|
+
fix(auth): resolve token refresh issue
|
|
163
|
+
docs(readme): update usage examples
|
|
164
|
+
```
|
|
165
|
+
|
|
166
|
+
### SDK Design Guidelines
|
|
167
|
+
|
|
168
|
+
When adding new methods:
|
|
169
|
+
|
|
170
|
+
- Follow existing naming conventions (snake_case)
|
|
171
|
+
- Use Pydantic models for request/response types
|
|
172
|
+
- Include comprehensive docstrings with examples
|
|
173
|
+
- Add type hints to all functions
|
|
174
|
+
- Handle errors with appropriate exception types
|
|
175
|
+
|
|
176
|
+
## Testing
|
|
177
|
+
|
|
178
|
+
### Test Requirements
|
|
179
|
+
|
|
180
|
+
- All new methods must include tests
|
|
181
|
+
- Bug fixes should include regression tests
|
|
182
|
+
- Tests must pass locally before submitting PR
|
|
183
|
+
|
|
184
|
+
### Running Tests
|
|
185
|
+
|
|
186
|
+
```bash
|
|
187
|
+
# Run all tests
|
|
188
|
+
uv run pytest
|
|
189
|
+
|
|
190
|
+
# Run with coverage
|
|
191
|
+
uv run pytest --cov
|
|
192
|
+
|
|
193
|
+
# Run specific test file
|
|
194
|
+
uv run pytest tests/test_graphs.py
|
|
195
|
+
|
|
196
|
+
# Run with verbose output
|
|
197
|
+
uv run pytest -v
|
|
198
|
+
```
|
|
199
|
+
|
|
200
|
+
## Pull Request Process
|
|
201
|
+
|
|
202
|
+
### Before Creating a PR
|
|
203
|
+
|
|
204
|
+
1. **Commit all changes**:
|
|
205
|
+
|
|
206
|
+
```bash
|
|
207
|
+
git add .
|
|
208
|
+
git commit -m "feat: your descriptive commit message"
|
|
209
|
+
```
|
|
210
|
+
|
|
211
|
+
2. **Update from upstream**:
|
|
212
|
+
|
|
213
|
+
```bash
|
|
214
|
+
git fetch origin
|
|
215
|
+
git rebase origin/main
|
|
216
|
+
```
|
|
217
|
+
|
|
218
|
+
3. **Run all checks locally**:
|
|
219
|
+
|
|
220
|
+
```bash
|
|
221
|
+
uv run ruff check .
|
|
222
|
+
uv run ruff format --check .
|
|
223
|
+
uv run pytest
|
|
224
|
+
```
|
|
225
|
+
|
|
226
|
+
4. **Push your branch**:
|
|
227
|
+
```bash
|
|
228
|
+
git push origin your-branch-name
|
|
229
|
+
```
|
|
230
|
+
|
|
231
|
+
### PR Requirements
|
|
232
|
+
|
|
233
|
+
- All tests must pass
|
|
234
|
+
- Code must pass linting and formatting checks
|
|
235
|
+
- Must include appropriate documentation updates
|
|
236
|
+
- Must be reviewed by at least one maintainer
|
|
237
|
+
|
|
238
|
+
### Manual PR Creation
|
|
239
|
+
|
|
240
|
+
```bash
|
|
241
|
+
gh pr create --base main --title "Your PR title" --body "Your PR description"
|
|
242
|
+
```
|
|
243
|
+
|
|
244
|
+
## Publishing
|
|
245
|
+
|
|
246
|
+
This package is published to PyPI as `robosystems-client`. Releases are managed by maintainers:
|
|
247
|
+
|
|
248
|
+
```bash
|
|
249
|
+
# Build the package
|
|
250
|
+
uv build
|
|
251
|
+
|
|
252
|
+
# Publish to PyPI
|
|
253
|
+
uv publish
|
|
254
|
+
```
|
|
255
|
+
|
|
256
|
+
**Note:** Only maintainers can publish new versions.
|
|
257
|
+
|
|
258
|
+
## Security
|
|
259
|
+
|
|
260
|
+
### Security Vulnerabilities
|
|
261
|
+
|
|
262
|
+
**DO NOT** create public issues for security vulnerabilities. Instead:
|
|
263
|
+
|
|
264
|
+
1. Email security@robosystems.ai with details
|
|
265
|
+
2. Include steps to reproduce if possible
|
|
266
|
+
3. Allow time for the issue to be addressed before public disclosure
|
|
267
|
+
|
|
268
|
+
### Security Best Practices
|
|
269
|
+
|
|
270
|
+
- Never commit API keys or secrets
|
|
271
|
+
- Never log sensitive data
|
|
272
|
+
- Validate inputs before sending to API
|
|
273
|
+
- Keep dependencies up to date
|
|
274
|
+
|
|
275
|
+
## Questions and Support
|
|
276
|
+
|
|
277
|
+
- **[GitHub Discussions](https://github.com/orgs/RoboFinSystems/discussions)** - Best place for questions and community conversation
|
|
278
|
+
- **[GitHub Issues](https://github.com/RoboFinSystems/robosystems-python-client/issues)** - Bug reports and feature requests for this repo
|
|
279
|
+
- **[API Reference](https://api.robosystems.ai/docs)** - Backend API documentation
|
|
280
|
+
- **Email**: security@robosystems.ai for security issues only
|
|
281
|
+
|
|
282
|
+
## Recognition
|
|
283
|
+
|
|
284
|
+
Contributors will be recognized in our [Contributors](https://github.com/RoboFinSystems/robosystems-python-client/graphs/contributors) page.
|
|
285
|
+
|
|
286
|
+
Thank you for contributing to RoboSystems Python Client!
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
name: Bug
|
|
2
|
+
description: Something isn't working
|
|
3
|
+
type: Bug
|
|
4
|
+
body:
|
|
5
|
+
- type: markdown
|
|
6
|
+
attributes:
|
|
7
|
+
value: |
|
|
8
|
+
Thanks for reporting a bug! Please fill out the details below.
|
|
9
|
+
|
|
10
|
+
- type: textarea
|
|
11
|
+
id: summary
|
|
12
|
+
attributes:
|
|
13
|
+
label: Summary
|
|
14
|
+
description: What's broken?
|
|
15
|
+
placeholder: Describe the issue...
|
|
16
|
+
validations:
|
|
17
|
+
required: true
|
|
18
|
+
|
|
19
|
+
- type: dropdown
|
|
20
|
+
id: impact
|
|
21
|
+
attributes:
|
|
22
|
+
label: Impact
|
|
23
|
+
options:
|
|
24
|
+
- Critical
|
|
25
|
+
- High
|
|
26
|
+
- Medium
|
|
27
|
+
- Low
|
|
28
|
+
validations:
|
|
29
|
+
required: true
|
|
30
|
+
|
|
31
|
+
- type: textarea
|
|
32
|
+
id: version
|
|
33
|
+
attributes:
|
|
34
|
+
label: Version
|
|
35
|
+
description: What version are you using?
|
|
36
|
+
placeholder: |
|
|
37
|
+
robosystems-client version: x.x.x
|
|
38
|
+
Python version: x.x.x
|
|
39
|
+
validations:
|
|
40
|
+
required: true
|
|
41
|
+
|
|
42
|
+
- type: textarea
|
|
43
|
+
id: steps
|
|
44
|
+
attributes:
|
|
45
|
+
label: Steps to Reproduce
|
|
46
|
+
description: How can we reproduce this?
|
|
47
|
+
placeholder: |
|
|
48
|
+
1.
|
|
49
|
+
2.
|
|
50
|
+
3.
|
|
51
|
+
validations:
|
|
52
|
+
required: true
|
|
53
|
+
|
|
54
|
+
- type: textarea
|
|
55
|
+
id: expected
|
|
56
|
+
attributes:
|
|
57
|
+
label: Expected Behavior
|
|
58
|
+
placeholder: What should happen?
|
|
59
|
+
validations:
|
|
60
|
+
required: true
|
|
61
|
+
|
|
62
|
+
- type: textarea
|
|
63
|
+
id: actual
|
|
64
|
+
attributes:
|
|
65
|
+
label: Actual Behavior
|
|
66
|
+
placeholder: What actually happens?
|
|
67
|
+
validations:
|
|
68
|
+
required: true
|
|
69
|
+
|
|
70
|
+
- type: textarea
|
|
71
|
+
id: logs
|
|
72
|
+
attributes:
|
|
73
|
+
label: Error Messages / Logs
|
|
74
|
+
render: shell
|
|
75
|
+
placeholder: Paste any relevant error messages or stack traces here
|
|
76
|
+
|
|
77
|
+
- type: textarea
|
|
78
|
+
id: context
|
|
79
|
+
attributes:
|
|
80
|
+
label: Additional Context
|
|
81
|
+
placeholder: Client configuration, environment, workarounds tried...
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
name: Feature
|
|
2
|
+
description: Request a new capability (no design required)
|
|
3
|
+
type: Feature
|
|
4
|
+
body:
|
|
5
|
+
- type: textarea
|
|
6
|
+
id: request
|
|
7
|
+
attributes:
|
|
8
|
+
label: What would you like?
|
|
9
|
+
description: A clear description of what you wish you could do.
|
|
10
|
+
placeholder: I wish I could...
|
|
11
|
+
validations:
|
|
12
|
+
required: true
|
|
13
|
+
|
|
14
|
+
- type: textarea
|
|
15
|
+
id: why
|
|
16
|
+
attributes:
|
|
17
|
+
label: Why?
|
|
18
|
+
description: What problem would this solve for you?
|
|
19
|
+
placeholder: This would help because...
|
|
20
|
+
validations:
|
|
21
|
+
required: true
|
|
22
|
+
|
|
23
|
+
- type: textarea
|
|
24
|
+
id: ideas
|
|
25
|
+
attributes:
|
|
26
|
+
label: Any ideas on how?
|
|
27
|
+
description: Optional - if you have thoughts on implementation, share them here.
|
|
28
|
+
placeholder: One way to do this might be...
|
|
29
|
+
|
|
30
|
+
- type: textarea
|
|
31
|
+
id: context
|
|
32
|
+
attributes:
|
|
33
|
+
label: Additional Context
|
|
34
|
+
placeholder: Examples, links, or references that help explain the request.
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
name: RFC
|
|
2
|
+
description: Propose a design for discussion before implementation
|
|
3
|
+
type: RFC
|
|
4
|
+
body:
|
|
5
|
+
- type: textarea
|
|
6
|
+
id: summary
|
|
7
|
+
attributes:
|
|
8
|
+
label: Summary
|
|
9
|
+
description: One paragraph explaining the proposal
|
|
10
|
+
placeholder: This RFC proposes...
|
|
11
|
+
validations:
|
|
12
|
+
required: true
|
|
13
|
+
|
|
14
|
+
- type: textarea
|
|
15
|
+
id: problem
|
|
16
|
+
attributes:
|
|
17
|
+
label: "Motivation: Problem"
|
|
18
|
+
description: What problem does this solve?
|
|
19
|
+
placeholder: Currently, we have...
|
|
20
|
+
validations:
|
|
21
|
+
required: true
|
|
22
|
+
|
|
23
|
+
- type: textarea
|
|
24
|
+
id: why-now
|
|
25
|
+
attributes:
|
|
26
|
+
label: "Motivation: Why Now?"
|
|
27
|
+
description: Why is this the right time?
|
|
28
|
+
placeholder: This is urgent because...
|
|
29
|
+
|
|
30
|
+
- type: textarea
|
|
31
|
+
id: overview
|
|
32
|
+
attributes:
|
|
33
|
+
label: "Proposed Design: Overview"
|
|
34
|
+
description: High-level approach
|
|
35
|
+
placeholder: The proposed solution is to...
|
|
36
|
+
validations:
|
|
37
|
+
required: true
|
|
38
|
+
|
|
39
|
+
- type: textarea
|
|
40
|
+
id: detailed-design
|
|
41
|
+
attributes:
|
|
42
|
+
label: "Proposed Design: Detailed Design"
|
|
43
|
+
description: Technical details, architecture, API design
|
|
44
|
+
placeholder: |
|
|
45
|
+
## Architecture
|
|
46
|
+
|
|
47
|
+
## API Design
|
|
48
|
+
|
|
49
|
+
## MCP Protocol Considerations
|
|
50
|
+
validations:
|
|
51
|
+
required: true
|
|
52
|
+
|
|
53
|
+
- type: textarea
|
|
54
|
+
id: alternatives
|
|
55
|
+
attributes:
|
|
56
|
+
label: Alternatives Considered
|
|
57
|
+
placeholder: |
|
|
58
|
+
| Alternative | Pros | Cons |
|
|
59
|
+
|-------------|------|------|
|
|
60
|
+
| Option A | | |
|
|
61
|
+
| Option B | | |
|
|
62
|
+
|
|
63
|
+
**Why this approach:**
|
|
64
|
+
|
|
65
|
+
- type: textarea
|
|
66
|
+
id: phases
|
|
67
|
+
attributes:
|
|
68
|
+
label: "Implementation: Phases"
|
|
69
|
+
placeholder: |
|
|
70
|
+
1. **Phase 1:**
|
|
71
|
+
2. **Phase 2:**
|
|
72
|
+
|
|
73
|
+
- type: textarea
|
|
74
|
+
id: dependencies
|
|
75
|
+
attributes:
|
|
76
|
+
label: "Implementation: Dependencies"
|
|
77
|
+
placeholder: List any dependencies or blockers
|
|
78
|
+
|
|
79
|
+
- type: textarea
|
|
80
|
+
id: risks
|
|
81
|
+
attributes:
|
|
82
|
+
label: Risks & Mitigations
|
|
83
|
+
placeholder: |
|
|
84
|
+
| Risk | Mitigation |
|
|
85
|
+
|------|------------|
|
|
86
|
+
| | |
|
|
87
|
+
|
|
88
|
+
- type: textarea
|
|
89
|
+
id: questions
|
|
90
|
+
attributes:
|
|
91
|
+
label: Open Questions
|
|
92
|
+
description: Questions for discussion
|
|
93
|
+
placeholder: |
|
|
94
|
+
- [ ]
|
|
95
|
+
- [ ]
|
|
96
|
+
|
|
97
|
+
- type: textarea
|
|
98
|
+
id: references
|
|
99
|
+
attributes:
|
|
100
|
+
label: References
|
|
101
|
+
placeholder: |
|
|
102
|
+
- Related: #
|
|
103
|
+
- External:
|