robosystems-client 0.1.15__tar.gz → 0.1.16__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.1.15 → robosystems_client-0.1.16}/.github/workflows/create-pr.yml +32 -16
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/.github/workflows/create-release.yml +26 -26
- robosystems_client-0.1.16/.vscode/tasks.json +142 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/PKG-INFO +1 -1
- robosystems_client-0.1.16/bin/create-feature +104 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/justfile +23 -27
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/pyproject.toml +1 -1
- robosystems_client-0.1.16/robosystems_client/api/agent/auto_select_agent.py +264 -0
- robosystems_client-0.1.16/robosystems_client/api/agent/batch_process_queries.py +279 -0
- robosystems_client-0.1.16/robosystems_client/api/agent/execute_specific_agent.py +276 -0
- robosystems_client-0.1.16/robosystems_client/api/agent/get_agent_metadata.py +256 -0
- robosystems_client-0.1.16/robosystems_client/api/agent/list_agents.py +264 -0
- robosystems_client-0.1.16/robosystems_client/api/agent/recommend_agent.py +273 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/graph_credits/check_credit_balance.py +14 -10
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/__init__.py +35 -3
- robosystems_client-0.1.16/robosystems_client/models/agent_list_response.py +74 -0
- robosystems_client-0.1.16/robosystems_client/models/agent_list_response_agents.py +67 -0
- robosystems_client-0.1.15/robosystems_client/models/credits_summary_response_credits_by_addon_item.py → robosystems_client-0.1.16/robosystems_client/models/agent_list_response_agents_additional_property.py +5 -5
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/agent_message.py +35 -1
- robosystems_client-0.1.16/robosystems_client/models/agent_metadata_response.py +133 -0
- robosystems_client-0.1.16/robosystems_client/models/agent_mode.py +11 -0
- robosystems_client-0.1.16/robosystems_client/models/agent_recommendation.py +106 -0
- robosystems_client-0.1.16/robosystems_client/models/agent_recommendation_request.py +108 -0
- robosystems_client-0.1.16/robosystems_client/models/agent_recommendation_request_context_type_0.py +44 -0
- robosystems_client-0.1.16/robosystems_client/models/agent_recommendation_response.py +82 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/agent_request.py +110 -6
- robosystems_client-0.1.16/robosystems_client/models/agent_response.py +282 -0
- robosystems_client-0.1.16/robosystems_client/models/agent_response_error_details_type_0.py +44 -0
- robosystems_client-0.1.16/robosystems_client/models/agent_response_tokens_used_type_0.py +44 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/auth_response.py +20 -6
- robosystems_client-0.1.16/robosystems_client/models/batch_agent_request.py +85 -0
- robosystems_client-0.1.16/robosystems_client/models/batch_agent_response.py +90 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/credit_summary.py +35 -9
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/credits_summary_response.py +47 -21
- robosystems_client-0.1.16/robosystems_client/models/credits_summary_response_credits_by_addon_type_0_item.py +44 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/custom_schema_definition.py +7 -14
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/custom_schema_definition_metadata.py +1 -6
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/database_health_response.py +11 -11
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/database_info_response.py +13 -14
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/error_response.py +4 -8
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/graph_metadata.py +4 -5
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/health_status.py +2 -2
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/repository_credits_response.py +43 -16
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/schema_export_response.py +5 -8
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/schema_validation_request.py +3 -5
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/schema_validation_response.py +5 -5
- robosystems_client-0.1.16/robosystems_client/models/selection_criteria.py +122 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/success_response.py +1 -1
- robosystems_client-0.1.15/.github/workflows/create-feature.yml +0 -111
- robosystems_client-0.1.15/.vscode/tasks.json +0 -312
- robosystems_client-0.1.15/bin/create-feature +0 -110
- robosystems_client-0.1.15/robosystems_client/api/agent/query_financial_agent.py +0 -423
- robosystems_client-0.1.15/robosystems_client/models/agent_response.py +0 -132
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/.github/workflows/claude.yml +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/.github/workflows/publish.yml +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/.github/workflows/tag-release.yml +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/.github/workflows/test.yml +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/.gitignore +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/.python-version +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/.vscode/settings.json +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/README.md +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/bin/create-pr +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/bin/create-release +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/pytest.ini +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/__init__.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/__init__.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/agent/__init__.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/auth/__init__.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/auth/check_password_strength.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/auth/complete_sso_auth.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/auth/generate_sso_token.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/auth/get_captcha_config.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/auth/get_current_auth_user.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/auth/get_password_policy.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/auth/login_user.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/auth/logout_user.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/auth/refresh_session.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/auth/register_user.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/auth/sso_login.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/auth/sso_token_exchange.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/backup/__init__.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/backup/create_backup.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/backup/export_backup.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/backup/get_backup_download_url.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/backup/get_backup_stats.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/backup/list_backups.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/backup/restore_backup.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/connections/__init__.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/connections/create_connection.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/connections/create_link_token.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/connections/delete_connection.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/connections/exchange_link_token.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/connections/get_connection.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/connections/get_connection_options.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/connections/init_o_auth.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/connections/list_connections.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/connections/oauth_callback.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/connections/sync_connection.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/copy/__init__.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/copy/copy_data_to_graph.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/create/__init__.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/create/create_graph.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/create/get_available_extensions.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/graph_analytics/__init__.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/graph_analytics/get_graph_metrics.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/graph_analytics/get_graph_usage_stats.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/graph_billing/__init__.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/graph_billing/get_current_graph_bill.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/graph_billing/get_graph_billing_history.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/graph_billing/get_graph_monthly_bill.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/graph_billing/get_graph_usage_details.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/graph_credits/__init__.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/graph_credits/check_storage_limits.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/graph_credits/get_credit_summary.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/graph_credits/get_storage_usage.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/graph_credits/list_credit_transactions.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/graph_health/__init__.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/graph_health/get_database_health.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/graph_info/__init__.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/graph_info/get_database_info.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/graph_limits/__init__.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/graph_limits/get_graph_limits.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/mcp/__init__.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/mcp/call_mcp_tool.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/mcp/list_mcp_tools.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/operations/__init__.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/operations/cancel_operation.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/operations/get_operation_status.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/operations/stream_operation_events.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/query/__init__.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/query/execute_cypher_query.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/schema/__init__.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/schema/export_graph_schema.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/schema/get_graph_schema_info.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/schema/list_schema_extensions.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/schema/validate_schema.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/service_offerings/__init__.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/service_offerings/get_service_offerings.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/status/__init__.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/status/get_service_status.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/subgraphs/__init__.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/subgraphs/create_subgraph.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/subgraphs/delete_subgraph.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/subgraphs/get_subgraph_info.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/subgraphs/get_subgraph_quota.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/subgraphs/list_subgraphs.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/user/__init__.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/user/create_user_api_key.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/user/get_all_credit_summaries.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/user/get_current_user.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/user/get_user_graphs.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/user/list_user_api_keys.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/user/revoke_user_api_key.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/user/select_user_graph.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/user/update_user.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/user/update_user_api_key.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/user/update_user_password.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/user_analytics/__init__.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/user_analytics/get_detailed_user_analytics.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/user_analytics/get_user_usage_overview.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/user_limits/__init__.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/user_limits/get_all_shared_repository_limits.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/user_limits/get_shared_repository_limits.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/user_limits/get_user_limits.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/user_limits/get_user_usage.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/user_subscriptions/__init__.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/user_subscriptions/cancel_shared_repository_subscription.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/user_subscriptions/get_repository_credits.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/user_subscriptions/get_shared_repository_credits.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/user_subscriptions/get_user_shared_subscriptions.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/user_subscriptions/subscribe_to_shared_repository.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/api/user_subscriptions/upgrade_shared_repository_subscription.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/client.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/errors.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/extensions/README.md +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/extensions/__init__.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/extensions/auth_integration.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/extensions/copy_client.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/extensions/extensions.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/extensions/operation_client.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/extensions/query_client.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/extensions/sse_client.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/extensions/tests/__init__.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/extensions/tests/test_integration.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/extensions/tests/test_unit.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/extensions/utils.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/account_info.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/add_on_credit_info.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/agent_request_context_type_0.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/agent_response_metadata_type_0.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/api_key_info.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/api_keys_response.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/auth_response_user.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/available_extension.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/available_extensions_response.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/backup_create_request.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/backup_list_response.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/backup_response.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/backup_restore_request.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/backup_stats_response.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/backup_stats_response_backup_formats.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/cancel_operation_response_canceloperation.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/cancellation_response.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/check_credit_balance_response_checkcreditbalance.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/connection_options_response.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/connection_provider_info.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/connection_provider_info_auth_type.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/connection_provider_info_provider.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/connection_response.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/connection_response_metadata.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/connection_response_provider.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/copy_response.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/copy_response_error_details_type_0.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/copy_response_status.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/create_api_key_request.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/create_api_key_response.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/create_connection_request.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/create_connection_request_provider.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/create_graph_request.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/create_subgraph_request.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/create_subgraph_request_metadata_type_0.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/credit_summary_response.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/custom_schema_definition_nodes_item.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/custom_schema_definition_relationships_item.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/cypher_query_request.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/cypher_query_request_parameters_type_0.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/data_frame_copy_request.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/data_frame_copy_request_format.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/delete_subgraph_request.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/delete_subgraph_response.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/detailed_transactions_response.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/detailed_transactions_response_date_range.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/detailed_transactions_response_summary.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/enhanced_credit_transaction_response.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/enhanced_credit_transaction_response_metadata.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/exchange_token_request.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/exchange_token_request_metadata_type_0.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/get_all_credit_summaries_response_getallcreditsummaries.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/get_all_shared_repository_limits_response_getallsharedrepositorylimits.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/get_backup_download_url_response_getbackupdownloadurl.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/get_current_auth_user_response_getcurrentauthuser.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/get_current_graph_bill_response_getcurrentgraphbill.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/get_graph_billing_history_response_getgraphbillinghistory.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/get_graph_limits_response_getgraphlimits.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/get_graph_monthly_bill_response_getgraphmonthlybill.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/get_graph_schema_info_response_getgraphschemainfo.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/get_graph_usage_details_response_getgraphusagedetails.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/get_operation_status_response_getoperationstatus.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/get_shared_repository_limits_response_getsharedrepositorylimits.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/get_storage_usage_response_getstorageusage.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/graph_info.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/graph_metrics_response.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/graph_metrics_response_estimated_size.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/graph_metrics_response_health_status.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/graph_metrics_response_node_counts.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/graph_metrics_response_relationship_counts.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/graph_usage_response.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/graph_usage_response_query_statistics.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/graph_usage_response_recent_activity.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/graph_usage_response_storage_usage.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/health_status_details_type_0.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/http_validation_error.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/initial_entity_data.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/link_token_request.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/link_token_request_options_type_0.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/link_token_request_provider_type_0.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/list_connections_provider_type_0.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/list_schema_extensions_response_listschemaextensions.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/list_subgraphs_response.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/login_request.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/logout_user_response_logoutuser.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/mcp_tool_call.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/mcp_tool_call_arguments.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/mcp_tools_response.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/mcp_tools_response_tools_item.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/o_auth_callback_request.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/o_auth_init_request.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/o_auth_init_request_additional_params_type_0.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/o_auth_init_response.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/password_check_request.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/password_check_response.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/password_check_response_character_types.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/password_policy_response.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/password_policy_response_policy.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/plaid_connection_config.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/plaid_connection_config_accounts_type_0_item.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/plaid_connection_config_institution_type_0.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/quick_books_connection_config.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/register_request.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/repository_plan.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/repository_type.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/response_mode.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/s3_copy_request.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/s3_copy_request_file_format.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/s3_copy_request_s3_url_style_type_0.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/schema_export_response_data_stats_type_0.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/schema_export_response_schema_definition_type_0.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/schema_validation_request_schema_definition_type_0.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/schema_validation_response_compatibility_type_0.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/schema_validation_response_stats_type_0.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/sec_connection_config.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/sso_complete_request.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/sso_exchange_request.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/sso_exchange_response.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/sso_login_request.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/sso_token_response.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/storage_limit_response.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/subgraph_quota_response.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/subgraph_response.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/subgraph_response_metadata_type_0.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/subgraph_summary.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/subgraph_type.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/subscription_info.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/subscription_info_metadata.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/subscription_request.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/subscription_response.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/success_response_data_type_0.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/sync_connection_request.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/sync_connection_request_sync_options_type_0.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/sync_connection_response_syncconnection.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/tier_upgrade_request.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/transaction_summary_response.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/update_api_key_request.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/update_password_request.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/update_user_request.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/url_copy_request.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/url_copy_request_file_format.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/url_copy_request_headers_type_0.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/user_analytics_response.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/user_analytics_response_api_usage.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/user_analytics_response_graph_usage.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/user_analytics_response_limits.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/user_analytics_response_recent_activity_item.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/user_analytics_response_user_info.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/user_graph_summary.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/user_graphs_response.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/user_limits_response.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/user_response.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/user_subscriptions_response.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/user_usage_response.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/user_usage_response_graphs.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/user_usage_summary_response.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/user_usage_summary_response_usage_vs_limits.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/models/validation_error.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/py.typed +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/sdk-config.yaml +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/robosystems_client/types.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/ruff.toml +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/tests/__init__.py +0 -0
- {robosystems_client-0.1.15 → robosystems_client-0.1.16}/tests/test_client.py +0 -0
|
@@ -98,15 +98,15 @@ jobs:
|
|
|
98
98
|
COMMIT_RANGE="origin/$TARGET_BRANCH...$SOURCE_BRANCH"
|
|
99
99
|
|
|
100
100
|
# Get diff stats (limit output to prevent memory issues)
|
|
101
|
-
DIFF_STATS=$(git diff --stat --no-color $COMMIT_RANGE | head -50) # Limit to 50 lines
|
|
101
|
+
DIFF_STATS=$(git diff --stat --no-color $COMMIT_RANGE | head -50 | sed 's/`//g') # Limit to 50 lines
|
|
102
102
|
FILES_CHANGED=$(git diff --name-only $COMMIT_RANGE | wc -l)
|
|
103
103
|
COMMITS_COUNT=$(git rev-list --count $COMMIT_RANGE)
|
|
104
104
|
|
|
105
105
|
# Get commit messages (limit to recent commits)
|
|
106
|
-
COMMIT_MESSAGES=$(git log --oneline --no-color $COMMIT_RANGE | head -20) # Limit to 20 commits
|
|
106
|
+
COMMIT_MESSAGES=$(git log --oneline --no-color $COMMIT_RANGE | head -20 | sed 's/`//g') # Limit to 20 commits
|
|
107
107
|
|
|
108
108
|
# Get detailed changes (limit to prevent memory issues)
|
|
109
|
-
DETAILED_CHANGES=$(git diff $COMMIT_RANGE --name-status --no-color | head -100) # Limit to 100 files
|
|
109
|
+
DETAILED_CHANGES=$(git diff $COMMIT_RANGE --name-status --no-color | head -100 | sed 's/`//g') # Limit to 100 files
|
|
110
110
|
|
|
111
111
|
# Create analysis prompt for Claude
|
|
112
112
|
cat << 'EOF' > /tmp/pr_analysis_prompt.txt
|
|
@@ -297,14 +297,28 @@ jobs:
|
|
|
297
297
|
|
|
298
298
|
- name: Create Pull Request
|
|
299
299
|
id: create-pr
|
|
300
|
+
env:
|
|
301
|
+
CLAUDE_PR_TITLE: ${{ steps.claude.outputs.pr_title }}
|
|
302
|
+
CLAUDE_PR_DESCRIPTION: ${{ steps.claude.outputs.pr_description }}
|
|
300
303
|
run: |
|
|
301
304
|
SOURCE_BRANCH="${{ steps.source-branch.outputs.source_branch }}"
|
|
302
305
|
TARGET_BRANCH="${{ inputs.target_branch }}"
|
|
303
|
-
PR_TITLE="${{ steps.claude.outputs.pr_title }}"
|
|
304
306
|
|
|
305
|
-
#
|
|
306
|
-
|
|
307
|
-
$
|
|
307
|
+
# Use environment variables to safely handle Claude's output
|
|
308
|
+
PR_TITLE="$CLAUDE_PR_TITLE"
|
|
309
|
+
PR_DESCRIPTION="$CLAUDE_PR_DESCRIPTION"
|
|
310
|
+
|
|
311
|
+
# Check if PR already exists
|
|
312
|
+
EXISTING_PR=$(gh pr list --head "$SOURCE_BRANCH" --base "$TARGET_BRANCH" --json url --jq '.[0].url' 2>/dev/null || echo "")
|
|
313
|
+
|
|
314
|
+
if [ -n "$EXISTING_PR" ] && [ "$EXISTING_PR" != "null" ]; then
|
|
315
|
+
echo "✅ PR already exists: $EXISTING_PR"
|
|
316
|
+
echo "pr_url=$EXISTING_PR" >> $GITHUB_OUTPUT
|
|
317
|
+
PR_URL="$EXISTING_PR"
|
|
318
|
+
else
|
|
319
|
+
# Create PR description with Claude analysis + footer
|
|
320
|
+
cat > /tmp/pr_description.txt << EOF
|
|
321
|
+
$PR_DESCRIPTION
|
|
308
322
|
|
|
309
323
|
---
|
|
310
324
|
🤖 Generated with [Claude Code](https://claude.ai/code)
|
|
@@ -317,17 +331,19 @@ jobs:
|
|
|
317
331
|
Co-Authored-By: Claude <noreply@anthropic.com>
|
|
318
332
|
EOF
|
|
319
333
|
|
|
320
|
-
|
|
334
|
+
FINAL_PR_DESCRIPTION=$(cat /tmp/pr_description.txt)
|
|
321
335
|
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
336
|
+
# Create the PR
|
|
337
|
+
PR_URL=$(gh pr create \
|
|
338
|
+
--title "$PR_TITLE" \
|
|
339
|
+
--body "$FINAL_PR_DESCRIPTION" \
|
|
340
|
+
--base "$TARGET_BRANCH" \
|
|
341
|
+
--head "$SOURCE_BRANCH")
|
|
342
|
+
|
|
343
|
+
echo "pr_url=$PR_URL" >> $GITHUB_OUTPUT
|
|
344
|
+
echo "✅ Pull Request created: $PR_URL"
|
|
345
|
+
fi
|
|
328
346
|
|
|
329
|
-
echo "pr_url=$PR_URL" >> $GITHUB_OUTPUT
|
|
330
|
-
echo "✅ Pull Request created: $PR_URL"
|
|
331
347
|
|
|
332
348
|
- name: Request Claude review
|
|
333
349
|
if: ${{ inputs.claude_review }}
|
{robosystems_client-0.1.15 → robosystems_client-0.1.16}/.github/workflows/create-release.yml
RENAMED
|
@@ -4,9 +4,9 @@ on:
|
|
|
4
4
|
workflow_dispatch:
|
|
5
5
|
inputs:
|
|
6
6
|
version_type:
|
|
7
|
-
description:
|
|
7
|
+
description: "Version type"
|
|
8
8
|
required: true
|
|
9
|
-
default:
|
|
9
|
+
default: "patch"
|
|
10
10
|
type: choice
|
|
11
11
|
options:
|
|
12
12
|
- major
|
|
@@ -16,7 +16,7 @@ on:
|
|
|
16
16
|
jobs:
|
|
17
17
|
create-release:
|
|
18
18
|
runs-on: ubuntu-latest
|
|
19
|
-
|
|
19
|
+
|
|
20
20
|
steps:
|
|
21
21
|
- name: Checkout code
|
|
22
22
|
uses: actions/checkout@v4
|
|
@@ -24,29 +24,29 @@ jobs:
|
|
|
24
24
|
ref: main
|
|
25
25
|
fetch-depth: 0
|
|
26
26
|
token: ${{ secrets.ACTIONS_TOKEN }}
|
|
27
|
-
|
|
27
|
+
|
|
28
28
|
- name: Setup Python
|
|
29
29
|
uses: actions/setup-python@v5
|
|
30
30
|
with:
|
|
31
|
-
python-version:
|
|
32
|
-
|
|
31
|
+
python-version: "3.12"
|
|
32
|
+
|
|
33
33
|
- name: Install uv
|
|
34
34
|
uses: astral-sh/setup-uv@v6
|
|
35
|
-
|
|
35
|
+
|
|
36
36
|
- name: Get current version
|
|
37
37
|
id: current-version
|
|
38
38
|
run: |
|
|
39
39
|
CURRENT_VERSION=$(grep '^version = ' pyproject.toml | sed 's/version = "\(.*\)"/\1/')
|
|
40
40
|
echo "current_version=$CURRENT_VERSION" >> $GITHUB_OUTPUT
|
|
41
|
-
|
|
41
|
+
|
|
42
42
|
- name: Calculate new version
|
|
43
43
|
id: new-version
|
|
44
44
|
run: |
|
|
45
45
|
CURRENT_VERSION="${{ steps.current-version.outputs.current_version }}"
|
|
46
46
|
VERSION_TYPE="${{ inputs.version_type }}"
|
|
47
|
-
|
|
47
|
+
|
|
48
48
|
IFS='.' read -r major minor patch <<< "$CURRENT_VERSION"
|
|
49
|
-
|
|
49
|
+
|
|
50
50
|
case "$VERSION_TYPE" in
|
|
51
51
|
major)
|
|
52
52
|
major=$((major + 1))
|
|
@@ -61,50 +61,50 @@ jobs:
|
|
|
61
61
|
patch=$((patch + 1))
|
|
62
62
|
;;
|
|
63
63
|
esac
|
|
64
|
-
|
|
64
|
+
|
|
65
65
|
NEW_VERSION="${major}.${minor}.${patch}"
|
|
66
66
|
BRANCH_NAME="release/${NEW_VERSION}"
|
|
67
|
-
|
|
67
|
+
|
|
68
68
|
echo "new_version=$NEW_VERSION" >> $GITHUB_OUTPUT
|
|
69
69
|
echo "branch_name=$BRANCH_NAME" >> $GITHUB_OUTPUT
|
|
70
|
-
|
|
70
|
+
|
|
71
71
|
- name: Configure Git
|
|
72
72
|
run: |
|
|
73
73
|
git config user.name "github-actions[bot]"
|
|
74
74
|
git config user.email "github-actions[bot]@users.noreply.github.com"
|
|
75
|
-
|
|
75
|
+
|
|
76
76
|
- name: Update main branch version
|
|
77
77
|
run: |
|
|
78
78
|
CURRENT_VERSION="${{ steps.current-version.outputs.current_version }}"
|
|
79
79
|
NEW_VERSION="${{ steps.new-version.outputs.new_version }}"
|
|
80
|
-
|
|
80
|
+
|
|
81
81
|
echo "Updating main branch version from $CURRENT_VERSION to $NEW_VERSION"
|
|
82
|
-
|
|
82
|
+
|
|
83
83
|
# Update version in pyproject.toml
|
|
84
84
|
sed -i "s/^version = \"$CURRENT_VERSION\"/version = \"$NEW_VERSION\"/" pyproject.toml
|
|
85
|
-
|
|
85
|
+
|
|
86
86
|
# Update lock file
|
|
87
87
|
uv sync --all-extras
|
|
88
|
-
|
|
88
|
+
|
|
89
89
|
# Commit and push to main
|
|
90
90
|
git add pyproject.toml
|
|
91
|
-
git commit -m "
|
|
91
|
+
git commit -m "Release v$NEW_VERSION"
|
|
92
92
|
git push origin main
|
|
93
|
-
|
|
93
|
+
|
|
94
94
|
- name: Create release branch
|
|
95
95
|
run: |
|
|
96
96
|
BRANCH_NAME="${{ steps.new-version.outputs.branch_name }}"
|
|
97
|
-
|
|
97
|
+
|
|
98
98
|
echo "Creating release branch: $BRANCH_NAME"
|
|
99
|
-
|
|
99
|
+
|
|
100
100
|
# Create new branch from updated main
|
|
101
101
|
git checkout -b "$BRANCH_NAME"
|
|
102
|
-
|
|
102
|
+
|
|
103
103
|
# Push the release branch
|
|
104
104
|
git push origin "$BRANCH_NAME"
|
|
105
|
-
|
|
105
|
+
|
|
106
106
|
echo "✅ Release branch created: $BRANCH_NAME"
|
|
107
|
-
|
|
107
|
+
|
|
108
108
|
- name: Create summary
|
|
109
109
|
run: |
|
|
110
110
|
echo "## 🚀 Python SDK Release Created" >> $GITHUB_STEP_SUMMARY
|
|
@@ -116,4 +116,4 @@ jobs:
|
|
|
116
116
|
echo "### Next Steps" >> $GITHUB_STEP_SUMMARY
|
|
117
117
|
echo "The PyPI package will be automatically published when the release branch is pushed." >> $GITHUB_STEP_SUMMARY
|
|
118
118
|
echo "" >> $GITHUB_STEP_SUMMARY
|
|
119
|
-
echo "Monitor the publish workflow: [View Workflows](https://github.com/RoboFinSystems/robosystems-python-client/actions/workflows/publish.yml)" >> $GITHUB_STEP_SUMMARY
|
|
119
|
+
echo "Monitor the publish workflow: [View Workflows](https://github.com/RoboFinSystems/robosystems-python-client/actions/workflows/publish.yml)" >> $GITHUB_STEP_SUMMARY
|
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "2.0.0",
|
|
3
|
+
"tasks": [
|
|
4
|
+
{
|
|
5
|
+
"label": "Generate SDK",
|
|
6
|
+
"type": "shell",
|
|
7
|
+
"command": "just generate-sdk ${input:apiUrl}",
|
|
8
|
+
"problemMatcher": []
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"label": "Setup Environment",
|
|
12
|
+
"type": "shell",
|
|
13
|
+
"command": "just venv",
|
|
14
|
+
"problemMatcher": []
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"label": "Install Dependencies",
|
|
18
|
+
"type": "shell",
|
|
19
|
+
"command": "just install",
|
|
20
|
+
"problemMatcher": []
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"label": "Update Dependencies",
|
|
24
|
+
"type": "shell",
|
|
25
|
+
"command": "just update",
|
|
26
|
+
"problemMatcher": []
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"label": "Test",
|
|
30
|
+
"type": "shell",
|
|
31
|
+
"command": "just test",
|
|
32
|
+
"problemMatcher": []
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"label": "Test All",
|
|
36
|
+
"type": "shell",
|
|
37
|
+
"command": "just test-all",
|
|
38
|
+
"problemMatcher": []
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"label": "Test Coverage",
|
|
42
|
+
"type": "shell",
|
|
43
|
+
"command": "just test-cov",
|
|
44
|
+
"problemMatcher": []
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"label": "Lint",
|
|
48
|
+
"type": "shell",
|
|
49
|
+
"command": "just lint",
|
|
50
|
+
"problemMatcher": []
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"label": "Format",
|
|
54
|
+
"type": "shell",
|
|
55
|
+
"command": "just format",
|
|
56
|
+
"problemMatcher": []
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"label": "Type Check",
|
|
60
|
+
"type": "shell",
|
|
61
|
+
"command": "just typecheck",
|
|
62
|
+
"problemMatcher": []
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"label": "Clean",
|
|
66
|
+
"type": "shell",
|
|
67
|
+
"command": "just clean",
|
|
68
|
+
"problemMatcher": []
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"label": "Build Package",
|
|
72
|
+
"type": "shell",
|
|
73
|
+
"command": "just build-package",
|
|
74
|
+
"problemMatcher": []
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"label": "Create Feature",
|
|
78
|
+
"type": "shell",
|
|
79
|
+
"command": "just create-feature ${input:branchType} ${input:branchName} ${input:baseBranch}",
|
|
80
|
+
"problemMatcher": []
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"label": "Create PR",
|
|
84
|
+
"type": "shell",
|
|
85
|
+
"command": "just create-pr ${input:targetBranch} ${input:claudeReview}",
|
|
86
|
+
"problemMatcher": []
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"label": "Create Release",
|
|
90
|
+
"type": "shell",
|
|
91
|
+
"command": "just create-release ${input:versionType}",
|
|
92
|
+
"problemMatcher": []
|
|
93
|
+
},
|
|
94
|
+
],
|
|
95
|
+
"inputs": [
|
|
96
|
+
{
|
|
97
|
+
"id": "versionType",
|
|
98
|
+
"type": "pickString",
|
|
99
|
+
"description": "Choose version type:",
|
|
100
|
+
"default": "patch",
|
|
101
|
+
"options": ["major", "minor", "patch"]
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"id": "branchType",
|
|
105
|
+
"type": "pickString",
|
|
106
|
+
"description": "Choose branch type:",
|
|
107
|
+
"default": "feature",
|
|
108
|
+
"options": ["feature", "bugfix", "hotfix", "chore", "refactor"]
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"id": "branchName",
|
|
112
|
+
"type": "promptString",
|
|
113
|
+
"description": "Enter branch name (will be prefixed with type/):",
|
|
114
|
+
"default": ""
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"id": "baseBranch",
|
|
118
|
+
"type": "promptString",
|
|
119
|
+
"description": "Enter base branch (default: main):",
|
|
120
|
+
"default": "main"
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"id": "targetBranch",
|
|
124
|
+
"type": "promptString",
|
|
125
|
+
"description": "Choose target branch:",
|
|
126
|
+
"default": "main"
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"id": "claudeReview",
|
|
130
|
+
"type": "pickString",
|
|
131
|
+
"description": "Request Claude review automatically:",
|
|
132
|
+
"default": "true",
|
|
133
|
+
"options": ["true", "false"]
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"id": "apiUrl",
|
|
137
|
+
"type": "promptString",
|
|
138
|
+
"description": "Enter API URL for SDK generation:",
|
|
139
|
+
"default": "http://localhost:8000/openapi.json"
|
|
140
|
+
}
|
|
141
|
+
]
|
|
142
|
+
}
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
set -e
|
|
3
|
+
|
|
4
|
+
# Create feature branch script - local Git operations
|
|
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]
|
|
7
|
+
|
|
8
|
+
# Default values
|
|
9
|
+
BRANCH_TYPE=${1:-feature}
|
|
10
|
+
BRANCH_NAME=${2:-}
|
|
11
|
+
BASE_BRANCH=${3:-main}
|
|
12
|
+
|
|
13
|
+
# Validate branch type
|
|
14
|
+
if [[ "$BRANCH_TYPE" != "feature" && "$BRANCH_TYPE" != "bugfix" && "$BRANCH_TYPE" != "hotfix" && "$BRANCH_TYPE" != "chore" && "$BRANCH_TYPE" != "refactor" ]]; then
|
|
15
|
+
echo "❌ Invalid branch type: $BRANCH_TYPE"
|
|
16
|
+
echo "Valid types: feature, bugfix, hotfix, chore, refactor"
|
|
17
|
+
exit 1
|
|
18
|
+
fi
|
|
19
|
+
|
|
20
|
+
# Check if branch name was provided
|
|
21
|
+
if [ -z "$BRANCH_NAME" ]; then
|
|
22
|
+
echo "❌ Branch name is required"
|
|
23
|
+
echo "Usage: $0 [type] [name] [base_branch]"
|
|
24
|
+
echo "Example: $0 feature add-user-auth main"
|
|
25
|
+
exit 1
|
|
26
|
+
fi
|
|
27
|
+
|
|
28
|
+
# Sanitize branch name
|
|
29
|
+
SANITIZED_NAME=$(echo "$BRANCH_NAME" | sed 's/[^a-zA-Z0-9._-]/-/g' | sed 's/--*/-/g' | sed 's/^-//;s/-$//')
|
|
30
|
+
FULL_BRANCH="${BRANCH_TYPE}/${SANITIZED_NAME}"
|
|
31
|
+
|
|
32
|
+
echo "🚀 Creating feature branch locally..."
|
|
33
|
+
echo "📋 Details:"
|
|
34
|
+
echo " Type: $BRANCH_TYPE"
|
|
35
|
+
echo " Name: $SANITIZED_NAME"
|
|
36
|
+
echo " Full Branch: $FULL_BRANCH"
|
|
37
|
+
echo " Base Branch: $BASE_BRANCH"
|
|
38
|
+
echo ""
|
|
39
|
+
|
|
40
|
+
# Check for uncommitted changes
|
|
41
|
+
if ! git diff --quiet || ! git diff --cached --quiet; then
|
|
42
|
+
echo "⚠️ You have uncommitted changes."
|
|
43
|
+
read -p "Do you want to stash them? (y/N): " -n 1 -r
|
|
44
|
+
echo
|
|
45
|
+
if [[ $REPLY =~ ^[Yy]$ ]]; then
|
|
46
|
+
git stash push -m "Auto-stash before creating branch $FULL_BRANCH"
|
|
47
|
+
echo "✅ Changes stashed"
|
|
48
|
+
else
|
|
49
|
+
echo "❌ Please commit or stash your changes first"
|
|
50
|
+
exit 1
|
|
51
|
+
fi
|
|
52
|
+
fi
|
|
53
|
+
|
|
54
|
+
# Fetch latest changes from remote
|
|
55
|
+
echo "📥 Fetching latest changes from remote..."
|
|
56
|
+
git fetch origin
|
|
57
|
+
|
|
58
|
+
# Check if branch already exists (local or remote)
|
|
59
|
+
if git show-ref --verify --quiet refs/heads/$FULL_BRANCH; then
|
|
60
|
+
echo "❌ Branch $FULL_BRANCH already exists locally"
|
|
61
|
+
exit 1
|
|
62
|
+
fi
|
|
63
|
+
|
|
64
|
+
if git show-ref --verify --quiet refs/remotes/origin/$FULL_BRANCH; then
|
|
65
|
+
echo "❌ Branch $FULL_BRANCH already exists on remote"
|
|
66
|
+
echo "💡 To check it out: git checkout -b $FULL_BRANCH origin/$FULL_BRANCH"
|
|
67
|
+
exit 1
|
|
68
|
+
fi
|
|
69
|
+
|
|
70
|
+
# Check if base branch exists on remote
|
|
71
|
+
if ! git show-ref --verify --quiet refs/remotes/origin/$BASE_BRANCH; then
|
|
72
|
+
echo "❌ Base branch $BASE_BRANCH does not exist on remote"
|
|
73
|
+
echo "💡 Available branches:"
|
|
74
|
+
git branch -r | grep -v HEAD | sed 's/origin\///' | head -10
|
|
75
|
+
exit 1
|
|
76
|
+
fi
|
|
77
|
+
|
|
78
|
+
# Create and checkout the new branch from the base branch
|
|
79
|
+
echo "🔨 Creating branch $FULL_BRANCH from origin/$BASE_BRANCH..."
|
|
80
|
+
git checkout -b $FULL_BRANCH origin/$BASE_BRANCH
|
|
81
|
+
|
|
82
|
+
# Push the new branch to remote with upstream tracking
|
|
83
|
+
echo "📤 Pushing branch to remote..."
|
|
84
|
+
git push -u origin $FULL_BRANCH
|
|
85
|
+
|
|
86
|
+
echo ""
|
|
87
|
+
echo "🎉 Successfully created and checked out $FULL_BRANCH"
|
|
88
|
+
echo ""
|
|
89
|
+
echo "📝 Next steps:"
|
|
90
|
+
echo " 1. Make your changes and commit them"
|
|
91
|
+
echo " 2. Push your changes: git push"
|
|
92
|
+
echo " 3. Create a PR: gh pr create --base $BASE_BRANCH --title \"Your PR title\" --body \"Your PR description\""
|
|
93
|
+
echo " or use: just create-pr $BASE_BRANCH $BRANCH_TYPE"
|
|
94
|
+
|
|
95
|
+
# Check if we had stashed changes
|
|
96
|
+
if git stash list | grep -q "Auto-stash before creating branch $FULL_BRANCH"; then
|
|
97
|
+
echo ""
|
|
98
|
+
read -p "Do you want to apply your stashed changes? (y/N): " -n 1 -r
|
|
99
|
+
echo
|
|
100
|
+
if [[ $REPLY =~ ^[Yy]$ ]]; then
|
|
101
|
+
git stash pop
|
|
102
|
+
echo "✅ Stashed changes applied"
|
|
103
|
+
fi
|
|
104
|
+
fi
|
|
@@ -46,6 +46,29 @@ format:
|
|
|
46
46
|
typecheck:
|
|
47
47
|
uv run pyright
|
|
48
48
|
|
|
49
|
+
# Generate SDK from localhost API
|
|
50
|
+
generate-sdk url="http://localhost:8000/openapi.json":
|
|
51
|
+
@echo "🚀 Generating Client from {{url}}..."
|
|
52
|
+
rm -rf generated
|
|
53
|
+
openapi-python-client generate --url {{url}} --output-path generated --config robosystems_client/sdk-config.yaml
|
|
54
|
+
@echo "📦 Copying generated code to robosystems_client..."
|
|
55
|
+
rm -rf robosystems_client/api robosystems_client/models robosystems_client/client.py robosystems_client/errors.py robosystems_client/types.py robosystems_client/py.typed
|
|
56
|
+
cp -r generated/robo_systems_api_client/api robosystems_client/
|
|
57
|
+
cp -r generated/robo_systems_api_client/models robosystems_client/
|
|
58
|
+
cp generated/robo_systems_api_client/client.py robosystems_client/
|
|
59
|
+
cp generated/robo_systems_api_client/errors.py robosystems_client/
|
|
60
|
+
cp generated/robo_systems_api_client/types.py robosystems_client/
|
|
61
|
+
cp generated/robo_systems_api_client/py.typed robosystems_client/
|
|
62
|
+
rm -rf generated
|
|
63
|
+
@just format
|
|
64
|
+
uv run ruff check . --fix
|
|
65
|
+
@just lint
|
|
66
|
+
@echo "✅ Client generation complete!"
|
|
67
|
+
|
|
68
|
+
# Build python package locally (for testing)
|
|
69
|
+
build-package:
|
|
70
|
+
python -m build
|
|
71
|
+
|
|
49
72
|
# Create a feature branch
|
|
50
73
|
create-feature branch_type="feature" branch_name="" base_branch="main":
|
|
51
74
|
bin/create-feature {{branch_type}} {{branch_name}} {{base_branch}}
|
|
@@ -58,14 +81,6 @@ create-release type="patch":
|
|
|
58
81
|
create-pr target_branch="main" claude_review="true":
|
|
59
82
|
bin/create-pr {{target_branch}} {{claude_review}}
|
|
60
83
|
|
|
61
|
-
# Build python package locally (for testing)
|
|
62
|
-
build-package:
|
|
63
|
-
python -m build
|
|
64
|
-
|
|
65
|
-
# Publish to PyPI via GitHub Actions
|
|
66
|
-
publish-pypi type="patch":
|
|
67
|
-
./scripts/publish-pypi.sh {{type}}
|
|
68
|
-
|
|
69
84
|
# Clean up development artifacts
|
|
70
85
|
clean:
|
|
71
86
|
rm -rf .pytest_cache
|
|
@@ -75,25 +90,6 @@ clean:
|
|
|
75
90
|
find . -type d -name "__pycache__" -exec rm -rf {} +
|
|
76
91
|
find . -type f -name "*.pyc" -delete
|
|
77
92
|
|
|
78
|
-
# Generate SDK from localhost API
|
|
79
|
-
generate-sdk url="http://localhost:8000/openapi.json":
|
|
80
|
-
@echo "🚀 Generating Client from {{url}}..."
|
|
81
|
-
rm -rf generated
|
|
82
|
-
openapi-python-client generate --url {{url}} --output-path generated --config robosystems_client/sdk-config.yaml
|
|
83
|
-
@echo "📦 Copying generated code to robosystems_client..."
|
|
84
|
-
rm -rf robosystems_client/api robosystems_client/models robosystems_client/client.py robosystems_client/errors.py robosystems_client/types.py robosystems_client/py.typed
|
|
85
|
-
cp -r generated/robo_systems_api_client/api robosystems_client/
|
|
86
|
-
cp -r generated/robo_systems_api_client/models robosystems_client/
|
|
87
|
-
cp generated/robo_systems_api_client/client.py robosystems_client/
|
|
88
|
-
cp generated/robo_systems_api_client/errors.py robosystems_client/
|
|
89
|
-
cp generated/robo_systems_api_client/types.py robosystems_client/
|
|
90
|
-
cp generated/robo_systems_api_client/py.typed robosystems_client/
|
|
91
|
-
rm -rf generated
|
|
92
|
-
@just format
|
|
93
|
-
uv run ruff check . --fix
|
|
94
|
-
@just lint
|
|
95
|
-
@echo "✅ Client generation complete!"
|
|
96
|
-
|
|
97
93
|
# Show help
|
|
98
94
|
help:
|
|
99
95
|
@just --list
|