robosystems-client 0.2.14__py3-none-any.whl → 0.2.16__py3-none-any.whl

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.

Files changed (371) hide show
  1. robosystems_client/api/agent/auto_select_agent.py +51 -27
  2. robosystems_client/api/agent/batch_process_queries.py +13 -13
  3. robosystems_client/api/agent/execute_specific_agent.py +23 -27
  4. robosystems_client/api/agent/get_agent_metadata.py +13 -13
  5. robosystems_client/api/agent/list_agents.py +23 -23
  6. robosystems_client/api/agent/recommend_agent.py +13 -13
  7. robosystems_client/api/auth/check_password_strength.py +17 -17
  8. robosystems_client/api/auth/complete_sso_auth.py +17 -17
  9. robosystems_client/api/auth/forgot_password.py +17 -23
  10. robosystems_client/api/auth/generate_sso_token.py +26 -26
  11. robosystems_client/api/auth/get_captcha_config.py +6 -6
  12. robosystems_client/api/auth/get_current_auth_user.py +17 -17
  13. robosystems_client/api/auth/get_password_policy.py +10 -10
  14. robosystems_client/api/auth/login_user.py +17 -17
  15. robosystems_client/api/auth/logout_user.py +10 -10
  16. robosystems_client/api/auth/refresh_auth_session.py +17 -17
  17. robosystems_client/api/auth/register_user.py +17 -17
  18. robosystems_client/api/auth/resend_verification_email.py +17 -29
  19. robosystems_client/api/auth/reset_password.py +17 -17
  20. robosystems_client/api/auth/sso_token_exchange.py +17 -17
  21. robosystems_client/api/auth/validate_reset_token.py +17 -17
  22. robosystems_client/api/auth/verify_email.py +17 -17
  23. robosystems_client/api/backup/create_backup.py +13 -13
  24. robosystems_client/api/backup/get_backup_download_url.py +22 -22
  25. robosystems_client/api/backup/get_backup_stats.py +13 -13
  26. robosystems_client/api/backup/list_backups.py +31 -31
  27. robosystems_client/api/backup/restore_backup.py +13 -13
  28. robosystems_client/api/billing/cancel_org_subscription.py +13 -13
  29. robosystems_client/api/billing/create_checkout_session.py +13 -13
  30. robosystems_client/api/billing/create_portal_session.py +13 -13
  31. robosystems_client/api/billing/get_checkout_status.py +13 -13
  32. robosystems_client/api/billing/get_org_billing_customer.py +13 -13
  33. robosystems_client/api/billing/get_org_subscription.py +13 -13
  34. robosystems_client/api/billing/get_org_upcoming_invoice.py +16 -16
  35. robosystems_client/api/billing/list_org_invoices.py +22 -22
  36. robosystems_client/api/billing/list_org_subscriptions.py +13 -13
  37. robosystems_client/api/connections/create_connection.py +13 -13
  38. robosystems_client/api/connections/create_link_token.py +13 -13
  39. robosystems_client/api/connections/delete_connection.py +13 -13
  40. robosystems_client/api/connections/exchange_link_token.py +13 -13
  41. robosystems_client/api/connections/get_connection.py +13 -13
  42. robosystems_client/api/connections/get_connection_options.py +13 -13
  43. robosystems_client/api/connections/init_o_auth.py +13 -13
  44. robosystems_client/api/connections/list_connections.py +33 -33
  45. robosystems_client/api/connections/oauth_callback.py +13 -13
  46. robosystems_client/api/connections/sync_connection.py +13 -19
  47. robosystems_client/api/credits_/check_credit_balance.py +38 -45
  48. robosystems_client/api/credits_/check_storage_limits.py +13 -13
  49. robosystems_client/api/credits_/get_credit_summary.py +13 -13
  50. robosystems_client/api/credits_/get_storage_usage.py +28 -28
  51. robosystems_client/api/credits_/list_credit_transactions.py +71 -71
  52. robosystems_client/api/files/__init__.py +1 -0
  53. robosystems_client/api/files/create_file_upload.py +311 -0
  54. robosystems_client/api/files/delete_file.py +354 -0
  55. robosystems_client/api/files/get_file.py +329 -0
  56. robosystems_client/api/files/list_files.py +346 -0
  57. robosystems_client/api/files/update_file.py +320 -0
  58. robosystems_client/api/graph_health/get_database_health.py +41 -13
  59. robosystems_client/api/graph_info/get_database_info.py +41 -13
  60. robosystems_client/api/graph_limits/get_graph_limits.py +17 -17
  61. robosystems_client/api/graphs/create_graph.py +13 -13
  62. robosystems_client/api/graphs/get_available_extensions.py +13 -13
  63. robosystems_client/api/graphs/get_available_graph_tiers.py +22 -22
  64. robosystems_client/api/graphs/get_graphs.py +13 -13
  65. robosystems_client/api/graphs/select_graph.py +13 -13
  66. robosystems_client/api/materialization/__init__.py +1 -0
  67. robosystems_client/api/materialization/get_materialization_status.py +272 -0
  68. robosystems_client/api/materialization/materialize_graph.py +416 -0
  69. robosystems_client/api/mcp/call_mcp_tool.py +60 -32
  70. robosystems_client/api/mcp/list_mcp_tools.py +41 -13
  71. robosystems_client/api/operations/cancel_operation.py +13 -13
  72. robosystems_client/api/operations/get_operation_status.py +13 -25
  73. robosystems_client/api/operations/stream_operation_events.py +41 -41
  74. robosystems_client/api/org/create_org.py +13 -13
  75. robosystems_client/api/org/get_org.py +13 -13
  76. robosystems_client/api/org/list_org_graphs.py +13 -13
  77. robosystems_client/api/org/list_user_orgs.py +6 -6
  78. robosystems_client/api/org/update_org.py +13 -13
  79. robosystems_client/api/org_members/invite_org_member.py +13 -13
  80. robosystems_client/api/org_members/list_org_members.py +13 -13
  81. robosystems_client/api/org_members/remove_org_member.py +13 -13
  82. robosystems_client/api/org_members/update_org_member_role.py +13 -13
  83. robosystems_client/api/org_usage/get_org_limits.py +13 -13
  84. robosystems_client/api/org_usage/get_org_usage.py +22 -22
  85. robosystems_client/api/query/execute_cypher_query.py +98 -62
  86. robosystems_client/api/schema/export_graph_schema.py +35 -35
  87. robosystems_client/api/schema/get_graph_schema.py +45 -13
  88. robosystems_client/api/schema/validate_schema.py +41 -13
  89. robosystems_client/api/service_offerings/get_service_offerings.py +17 -17
  90. robosystems_client/api/status/get_service_status.py +10 -10
  91. robosystems_client/api/subgraphs/create_subgraph.py +84 -24
  92. robosystems_client/api/subgraphs/delete_subgraph.py +51 -27
  93. robosystems_client/api/subgraphs/get_subgraph_info.py +47 -27
  94. robosystems_client/api/subgraphs/get_subgraph_quota.py +13 -13
  95. robosystems_client/api/subgraphs/list_subgraphs.py +13 -13
  96. robosystems_client/api/subscriptions/create_repository_subscription.py +13 -13
  97. robosystems_client/api/subscriptions/get_graph_subscription.py +13 -13
  98. robosystems_client/api/subscriptions/upgrade_subscription.py +13 -13
  99. robosystems_client/api/tables/list_tables.py +13 -13
  100. robosystems_client/api/tables/query_tables.py +37 -13
  101. robosystems_client/api/usage/get_graph_metrics.py +13 -13
  102. robosystems_client/api/usage/get_graph_usage_analytics.py +66 -66
  103. robosystems_client/api/user/create_user_api_key.py +13 -13
  104. robosystems_client/api/user/get_current_user.py +6 -6
  105. robosystems_client/api/user/list_user_api_keys.py +6 -6
  106. robosystems_client/api/user/revoke_user_api_key.py +13 -13
  107. robosystems_client/api/user/update_user.py +13 -13
  108. robosystems_client/api/user/update_user_api_key.py +13 -13
  109. robosystems_client/api/user/update_user_password.py +13 -13
  110. robosystems_client/api/views/__init__.py +1 -0
  111. robosystems_client/api/views/create_view.py +245 -0
  112. robosystems_client/api/views/save_view.py +299 -0
  113. robosystems_client/client.py +13 -13
  114. robosystems_client/extensions/__init__.py +39 -0
  115. robosystems_client/extensions/element_mapping_client.py +585 -0
  116. robosystems_client/extensions/subgraph_workspace_client.py +744 -0
  117. robosystems_client/extensions/table_ingest_client.py +24 -23
  118. robosystems_client/extensions/view_builder_client.py +617 -0
  119. robosystems_client/models/__init__.py +34 -10
  120. robosystems_client/models/account_info.py +2 -0
  121. robosystems_client/models/agent_list_response.py +3 -1
  122. robosystems_client/models/agent_list_response_agents.py +5 -3
  123. robosystems_client/models/agent_list_response_agents_additional_property.py +2 -0
  124. robosystems_client/models/agent_message.py +9 -7
  125. robosystems_client/models/agent_metadata_response.py +11 -9
  126. robosystems_client/models/agent_recommendation.py +8 -6
  127. robosystems_client/models/agent_recommendation_request.py +9 -7
  128. robosystems_client/models/agent_recommendation_request_context_type_0.py +2 -0
  129. robosystems_client/models/agent_recommendation_response.py +4 -2
  130. robosystems_client/models/agent_request.py +41 -40
  131. robosystems_client/models/agent_request_context_type_0.py +2 -0
  132. robosystems_client/models/agent_response.py +42 -44
  133. robosystems_client/models/agent_response_error_details_type_0.py +2 -0
  134. robosystems_client/models/agent_response_metadata_type_0.py +2 -0
  135. robosystems_client/models/agent_response_tokens_used_type_0.py +2 -0
  136. robosystems_client/models/api_key_info.py +18 -16
  137. robosystems_client/models/api_keys_response.py +4 -2
  138. robosystems_client/models/auth_response.py +26 -24
  139. robosystems_client/models/auth_response_org_type_0.py +2 -0
  140. robosystems_client/models/auth_response_user.py +2 -0
  141. robosystems_client/models/available_extension.py +5 -3
  142. robosystems_client/models/available_extensions_response.py +4 -2
  143. robosystems_client/models/available_graph_tiers_response.py +4 -2
  144. robosystems_client/models/backup_create_request.py +18 -16
  145. robosystems_client/models/backup_download_url_response.py +2 -0
  146. robosystems_client/models/backup_limits.py +2 -0
  147. robosystems_client/models/backup_list_response.py +4 -2
  148. robosystems_client/models/backup_response.py +13 -11
  149. robosystems_client/models/backup_restore_request.py +7 -6
  150. robosystems_client/models/backup_stats_response.py +9 -7
  151. robosystems_client/models/backup_stats_response_backup_formats.py +2 -0
  152. robosystems_client/models/batch_agent_request.py +7 -5
  153. robosystems_client/models/batch_agent_response.py +4 -2
  154. robosystems_client/models/billing_customer.py +10 -8
  155. robosystems_client/models/cancel_operation_response_canceloperation.py +2 -0
  156. robosystems_client/models/check_credit_balance_response_checkcreditbalance.py +2 -0
  157. robosystems_client/models/checkout_response.py +22 -20
  158. robosystems_client/models/checkout_status_response.py +19 -17
  159. robosystems_client/models/connection_options_response.py +4 -2
  160. robosystems_client/models/connection_provider_info.py +26 -24
  161. robosystems_client/models/connection_response.py +14 -12
  162. robosystems_client/models/connection_response_metadata.py +2 -0
  163. robosystems_client/models/copy_operation_limits.py +2 -0
  164. robosystems_client/models/create_api_key_request.py +13 -11
  165. robosystems_client/models/create_api_key_response.py +3 -1
  166. robosystems_client/models/create_checkout_request.py +3 -1
  167. robosystems_client/models/create_checkout_request_resource_config.py +2 -0
  168. robosystems_client/models/create_connection_request.py +21 -21
  169. robosystems_client/models/create_graph_request.py +25 -25
  170. robosystems_client/models/create_org_request.py +7 -5
  171. robosystems_client/models/create_repository_subscription_request.py +2 -0
  172. robosystems_client/models/create_subgraph_request.py +30 -19
  173. robosystems_client/models/create_subgraph_request_metadata_type_0.py +2 -0
  174. robosystems_client/models/create_view_request.py +141 -0
  175. robosystems_client/models/credit_limits.py +2 -0
  176. robosystems_client/models/credit_summary.py +3 -1
  177. robosystems_client/models/credit_summary_operation_breakdown.py +2 -0
  178. robosystems_client/models/credit_summary_response.py +8 -6
  179. robosystems_client/models/custom_schema_definition.py +39 -33
  180. robosystems_client/models/custom_schema_definition_metadata.py +2 -0
  181. robosystems_client/models/custom_schema_definition_nodes_item.py +2 -0
  182. robosystems_client/models/custom_schema_definition_relationships_item.py +2 -0
  183. robosystems_client/models/cypher_query_request.py +15 -13
  184. robosystems_client/models/cypher_query_request_parameters_type_0.py +2 -0
  185. robosystems_client/models/database_health_response.py +21 -19
  186. robosystems_client/models/database_info_response.py +13 -11
  187. robosystems_client/models/delete_file_response.py +54 -1
  188. robosystems_client/models/delete_subgraph_request.py +12 -10
  189. robosystems_client/models/delete_subgraph_response.py +13 -11
  190. robosystems_client/models/detailed_transactions_response.py +6 -4
  191. robosystems_client/models/detailed_transactions_response_date_range.py +2 -0
  192. robosystems_client/models/detailed_transactions_response_summary.py +5 -3
  193. robosystems_client/models/email_verification_request.py +2 -0
  194. robosystems_client/models/enhanced_credit_transaction_response.py +24 -22
  195. robosystems_client/models/enhanced_credit_transaction_response_metadata.py +2 -0
  196. robosystems_client/models/enhanced_file_status_layers.py +83 -0
  197. robosystems_client/models/error_response.py +19 -17
  198. robosystems_client/models/exchange_token_request.py +9 -7
  199. robosystems_client/models/exchange_token_request_metadata_type_0.py +2 -0
  200. robosystems_client/models/execute_cypher_query_response_200.py +25 -21
  201. robosystems_client/models/execute_cypher_query_response_200_data_item.py +2 -0
  202. robosystems_client/models/fact_detail.py +109 -0
  203. robosystems_client/models/file_info.py +18 -16
  204. robosystems_client/models/file_layer_status.py +123 -0
  205. robosystems_client/models/file_status_update.py +14 -0
  206. robosystems_client/models/file_upload_request.py +25 -3
  207. robosystems_client/models/file_upload_response.py +2 -0
  208. robosystems_client/models/forgot_password_request.py +2 -0
  209. robosystems_client/models/forgot_password_response_forgotpassword.py +2 -0
  210. robosystems_client/models/get_current_auth_user_response_getcurrentauthuser.py +2 -0
  211. robosystems_client/models/get_file_info_response.py +62 -21
  212. robosystems_client/models/get_operation_status_response_getoperationstatus.py +2 -0
  213. robosystems_client/models/get_storage_usage_response_getstorageusage.py +2 -0
  214. robosystems_client/models/graph_info.py +10 -8
  215. robosystems_client/models/graph_limits_response.py +14 -12
  216. robosystems_client/models/graph_metadata.py +14 -12
  217. robosystems_client/models/graph_metrics_response.py +17 -15
  218. robosystems_client/models/graph_metrics_response_estimated_size.py +2 -0
  219. robosystems_client/models/graph_metrics_response_health_status.py +2 -0
  220. robosystems_client/models/graph_metrics_response_node_counts.py +2 -0
  221. robosystems_client/models/graph_metrics_response_relationship_counts.py +2 -0
  222. robosystems_client/models/graph_subscription_response.py +28 -26
  223. robosystems_client/models/graph_subscription_tier.py +15 -13
  224. robosystems_client/models/graph_subscriptions.py +5 -3
  225. robosystems_client/models/graph_tier_backup.py +2 -0
  226. robosystems_client/models/graph_tier_copy_operations.py +2 -0
  227. robosystems_client/models/graph_tier_info.py +15 -13
  228. robosystems_client/models/graph_tier_instance.py +2 -0
  229. robosystems_client/models/graph_tier_limits.py +10 -8
  230. robosystems_client/models/graph_usage_response.py +32 -30
  231. robosystems_client/models/graph_usage_response_recent_events_item.py +2 -0
  232. robosystems_client/models/health_status.py +9 -7
  233. robosystems_client/models/health_status_details_type_0.py +2 -0
  234. robosystems_client/models/http_validation_error.py +12 -8
  235. robosystems_client/models/initial_entity_data.py +38 -36
  236. robosystems_client/models/invite_member_request.py +9 -7
  237. robosystems_client/models/invoice.py +35 -33
  238. robosystems_client/models/invoice_line_item.py +13 -11
  239. robosystems_client/models/invoices_response.py +4 -2
  240. robosystems_client/models/link_token_request.py +21 -23
  241. robosystems_client/models/link_token_request_options_type_0.py +2 -0
  242. robosystems_client/models/list_org_graphs_response_200_item.py +2 -0
  243. robosystems_client/models/list_subgraphs_response.py +15 -13
  244. robosystems_client/models/list_table_files_response.py +27 -11
  245. robosystems_client/models/login_request.py +2 -0
  246. robosystems_client/models/logout_user_response_logoutuser.py +2 -0
  247. robosystems_client/models/{bulk_ingest_request.py → materialize_request.py} +25 -15
  248. robosystems_client/models/materialize_response.py +131 -0
  249. robosystems_client/models/materialize_status_response.py +172 -0
  250. robosystems_client/models/mcp_tool_call.py +7 -5
  251. robosystems_client/models/mcp_tool_call_arguments.py +2 -0
  252. robosystems_client/models/mcp_tools_response.py +4 -2
  253. robosystems_client/models/mcp_tools_response_tools_item.py +2 -0
  254. robosystems_client/models/o_auth_callback_request.py +18 -16
  255. robosystems_client/models/o_auth_init_request.py +14 -12
  256. robosystems_client/models/o_auth_init_request_additional_params_type_0.py +2 -0
  257. robosystems_client/models/o_auth_init_response.py +2 -0
  258. robosystems_client/models/offering_repository_plan.py +9 -7
  259. robosystems_client/models/offering_repository_plan_rate_limits_type_0.py +8 -8
  260. robosystems_client/models/operation_costs.py +4 -2
  261. robosystems_client/models/operation_costs_ai_operations.py +2 -0
  262. robosystems_client/models/operation_costs_token_pricing.py +5 -3
  263. robosystems_client/models/org_detail_response.py +13 -11
  264. robosystems_client/models/org_detail_response_graphs_item.py +2 -0
  265. robosystems_client/models/org_detail_response_limits_type_0.py +2 -0
  266. robosystems_client/models/org_detail_response_members_item.py +2 -0
  267. robosystems_client/models/org_limits_response.py +3 -1
  268. robosystems_client/models/org_limits_response_current_usage.py +2 -0
  269. robosystems_client/models/org_list_response.py +4 -2
  270. robosystems_client/models/org_member_list_response.py +4 -2
  271. robosystems_client/models/org_member_response.py +2 -0
  272. robosystems_client/models/org_response.py +2 -0
  273. robosystems_client/models/org_usage_response.py +7 -5
  274. robosystems_client/models/org_usage_response_daily_trend_item.py +2 -0
  275. robosystems_client/models/org_usage_response_graph_details_item.py +2 -0
  276. robosystems_client/models/org_usage_summary.py +18 -16
  277. robosystems_client/models/password_check_request.py +8 -6
  278. robosystems_client/models/password_check_response.py +3 -1
  279. robosystems_client/models/password_check_response_character_types.py +2 -0
  280. robosystems_client/models/password_policy_response.py +3 -1
  281. robosystems_client/models/password_policy_response_policy.py +2 -0
  282. robosystems_client/models/payment_method.py +23 -21
  283. robosystems_client/models/performance_insights.py +5 -3
  284. robosystems_client/models/performance_insights_operation_stats.py +2 -0
  285. robosystems_client/models/performance_insights_slow_queries_item.py +2 -0
  286. robosystems_client/models/plaid_connection_config.py +30 -30
  287. robosystems_client/models/plaid_connection_config_accounts_type_0_item.py +2 -0
  288. robosystems_client/models/plaid_connection_config_institution_type_0.py +2 -0
  289. robosystems_client/models/portal_session_response.py +2 -0
  290. robosystems_client/models/query_limits.py +2 -0
  291. robosystems_client/models/quick_books_connection_config.py +13 -11
  292. robosystems_client/models/rate_limits.py +2 -0
  293. robosystems_client/models/register_request.py +8 -6
  294. robosystems_client/models/repository_info.py +4 -2
  295. robosystems_client/models/repository_subscriptions.py +4 -2
  296. robosystems_client/models/resend_verification_email_response_resendverificationemail.py +2 -0
  297. robosystems_client/models/reset_password_request.py +2 -0
  298. robosystems_client/models/reset_password_validate_response.py +8 -6
  299. robosystems_client/models/save_view_request.py +138 -0
  300. robosystems_client/models/save_view_response.py +181 -0
  301. robosystems_client/models/schema_export_response.py +16 -14
  302. robosystems_client/models/schema_export_response_data_stats_type_0.py +2 -0
  303. robosystems_client/models/schema_export_response_schema_definition_type_0.py +2 -0
  304. robosystems_client/models/schema_info_response.py +3 -1
  305. robosystems_client/models/schema_info_response_schema.py +2 -0
  306. robosystems_client/models/schema_validation_request.py +18 -17
  307. robosystems_client/models/schema_validation_request_schema_definition_type_0.py +2 -0
  308. robosystems_client/models/schema_validation_response.py +28 -33
  309. robosystems_client/models/schema_validation_response_compatibility_type_0.py +2 -0
  310. robosystems_client/models/schema_validation_response_stats_type_0.py +2 -0
  311. robosystems_client/models/sec_connection_config.py +8 -6
  312. robosystems_client/models/selection_criteria.py +19 -17
  313. robosystems_client/models/service_offering_summary.py +2 -0
  314. robosystems_client/models/service_offerings_response.py +6 -4
  315. robosystems_client/models/sso_complete_request.py +2 -0
  316. robosystems_client/models/sso_exchange_request.py +8 -6
  317. robosystems_client/models/sso_exchange_response.py +2 -0
  318. robosystems_client/models/sso_token_response.py +2 -0
  319. robosystems_client/models/storage_info.py +4 -2
  320. robosystems_client/models/storage_info_included_per_tier.py +2 -0
  321. robosystems_client/models/storage_info_overage_pricing.py +2 -0
  322. robosystems_client/models/storage_limit_response.py +9 -7
  323. robosystems_client/models/storage_limits.py +8 -6
  324. robosystems_client/models/storage_summary.py +2 -0
  325. robosystems_client/models/structure_detail.py +85 -0
  326. robosystems_client/models/subgraph_quota_response.py +23 -21
  327. robosystems_client/models/subgraph_response.py +35 -35
  328. robosystems_client/models/subgraph_response_metadata_type_0.py +2 -0
  329. robosystems_client/models/subgraph_summary.py +14 -12
  330. robosystems_client/models/success_response.py +11 -9
  331. robosystems_client/models/success_response_data_type_0.py +2 -0
  332. robosystems_client/models/sync_connection_request.py +11 -9
  333. robosystems_client/models/sync_connection_request_sync_options_type_0.py +2 -0
  334. robosystems_client/models/sync_connection_response_syncconnection.py +2 -0
  335. robosystems_client/models/table_info.py +12 -10
  336. robosystems_client/models/table_list_response.py +4 -2
  337. robosystems_client/models/table_query_request.py +9 -7
  338. robosystems_client/models/table_query_response.py +2 -0
  339. robosystems_client/models/token_pricing.py +2 -0
  340. robosystems_client/models/transaction_summary_response.py +13 -11
  341. robosystems_client/models/upcoming_invoice.py +10 -8
  342. robosystems_client/models/update_api_key_request.py +13 -11
  343. robosystems_client/models/{update_file_status_response_updatefilestatus.py → update_file_response_updatefile.py} +7 -5
  344. robosystems_client/models/update_member_role_request.py +2 -0
  345. robosystems_client/models/update_org_request.py +14 -12
  346. robosystems_client/models/update_password_request.py +2 -0
  347. robosystems_client/models/update_user_request.py +13 -11
  348. robosystems_client/models/upgrade_subscription_request.py +2 -0
  349. robosystems_client/models/user_graphs_response.py +10 -8
  350. robosystems_client/models/user_response.py +22 -18
  351. robosystems_client/models/validation_error.py +8 -6
  352. robosystems_client/models/view_axis_config.py +276 -0
  353. robosystems_client/models/view_axis_config_element_labels_type_0.py +46 -0
  354. robosystems_client/models/view_axis_config_member_labels_type_0.py +46 -0
  355. robosystems_client/models/view_config.py +127 -0
  356. robosystems_client/models/view_source.py +144 -0
  357. robosystems_client/models/view_source_type.py +9 -0
  358. robosystems_client/types.py +9 -9
  359. {robosystems_client-0.2.14.dist-info → robosystems_client-0.2.16.dist-info}/METADATA +1 -1
  360. robosystems_client-0.2.16.dist-info/RECORD +418 -0
  361. robosystems_client/api/tables/delete_file.py +0 -317
  362. robosystems_client/api/tables/get_file_info.py +0 -249
  363. robosystems_client/api/tables/get_upload_url.py +0 -352
  364. robosystems_client/api/tables/ingest_tables.py +0 -428
  365. robosystems_client/api/tables/list_table_files.py +0 -329
  366. robosystems_client/api/tables/update_file_status.py +0 -395
  367. robosystems_client/models/bulk_ingest_response.py +0 -137
  368. robosystems_client/models/table_ingest_result.py +0 -107
  369. robosystems_client-0.2.14.dist-info/RECORD +0 -396
  370. {robosystems_client-0.2.14.dist-info → robosystems_client-0.2.16.dist-info}/WHEEL +0 -0
  371. {robosystems_client-0.2.14.dist-info → robosystems_client-0.2.16.dist-info}/licenses/LICENSE +0 -0
@@ -1,5 +1,5 @@
1
1
  from http import HTTPStatus
2
- from typing import Any, Optional, Union
2
+ from typing import Any
3
3
 
4
4
  import httpx
5
5
 
@@ -33,8 +33,8 @@ def _get_kwargs(
33
33
 
34
34
 
35
35
  def _parse_response(
36
- *, client: Union[AuthenticatedClient, Client], response: httpx.Response
37
- ) -> Optional[Union[HTTPValidationError, OrgMemberResponse]]:
36
+ *, client: AuthenticatedClient | Client, response: httpx.Response
37
+ ) -> HTTPValidationError | OrgMemberResponse | None:
38
38
  if response.status_code == 200:
39
39
  response_200 = OrgMemberResponse.from_dict(response.json())
40
40
 
@@ -52,8 +52,8 @@ def _parse_response(
52
52
 
53
53
 
54
54
  def _build_response(
55
- *, client: Union[AuthenticatedClient, Client], response: httpx.Response
56
- ) -> Response[Union[HTTPValidationError, OrgMemberResponse]]:
55
+ *, client: AuthenticatedClient | Client, response: httpx.Response
56
+ ) -> Response[HTTPValidationError | OrgMemberResponse]:
57
57
  return Response(
58
58
  status_code=HTTPStatus(response.status_code),
59
59
  content=response.content,
@@ -68,7 +68,7 @@ def sync_detailed(
68
68
  *,
69
69
  client: AuthenticatedClient,
70
70
  body: UpdateMemberRoleRequest,
71
- ) -> Response[Union[HTTPValidationError, OrgMemberResponse]]:
71
+ ) -> Response[HTTPValidationError | OrgMemberResponse]:
72
72
  """Update Member Role
73
73
 
74
74
  Update a member's role in the organization. Requires admin or owner role.
@@ -83,7 +83,7 @@ def sync_detailed(
83
83
  httpx.TimeoutException: If the request takes longer than Client.timeout.
84
84
 
85
85
  Returns:
86
- Response[Union[HTTPValidationError, OrgMemberResponse]]
86
+ Response[HTTPValidationError | OrgMemberResponse]
87
87
  """
88
88
 
89
89
  kwargs = _get_kwargs(
@@ -105,7 +105,7 @@ def sync(
105
105
  *,
106
106
  client: AuthenticatedClient,
107
107
  body: UpdateMemberRoleRequest,
108
- ) -> Optional[Union[HTTPValidationError, OrgMemberResponse]]:
108
+ ) -> HTTPValidationError | OrgMemberResponse | None:
109
109
  """Update Member Role
110
110
 
111
111
  Update a member's role in the organization. Requires admin or owner role.
@@ -120,7 +120,7 @@ def sync(
120
120
  httpx.TimeoutException: If the request takes longer than Client.timeout.
121
121
 
122
122
  Returns:
123
- Union[HTTPValidationError, OrgMemberResponse]
123
+ HTTPValidationError | OrgMemberResponse
124
124
  """
125
125
 
126
126
  return sync_detailed(
@@ -137,7 +137,7 @@ async def asyncio_detailed(
137
137
  *,
138
138
  client: AuthenticatedClient,
139
139
  body: UpdateMemberRoleRequest,
140
- ) -> Response[Union[HTTPValidationError, OrgMemberResponse]]:
140
+ ) -> Response[HTTPValidationError | OrgMemberResponse]:
141
141
  """Update Member Role
142
142
 
143
143
  Update a member's role in the organization. Requires admin or owner role.
@@ -152,7 +152,7 @@ async def asyncio_detailed(
152
152
  httpx.TimeoutException: If the request takes longer than Client.timeout.
153
153
 
154
154
  Returns:
155
- Response[Union[HTTPValidationError, OrgMemberResponse]]
155
+ Response[HTTPValidationError | OrgMemberResponse]
156
156
  """
157
157
 
158
158
  kwargs = _get_kwargs(
@@ -172,7 +172,7 @@ async def asyncio(
172
172
  *,
173
173
  client: AuthenticatedClient,
174
174
  body: UpdateMemberRoleRequest,
175
- ) -> Optional[Union[HTTPValidationError, OrgMemberResponse]]:
175
+ ) -> HTTPValidationError | OrgMemberResponse | None:
176
176
  """Update Member Role
177
177
 
178
178
  Update a member's role in the organization. Requires admin or owner role.
@@ -187,7 +187,7 @@ async def asyncio(
187
187
  httpx.TimeoutException: If the request takes longer than Client.timeout.
188
188
 
189
189
  Returns:
190
- Union[HTTPValidationError, OrgMemberResponse]
190
+ HTTPValidationError | OrgMemberResponse
191
191
  """
192
192
 
193
193
  return (
@@ -1,5 +1,5 @@
1
1
  from http import HTTPStatus
2
- from typing import Any, Optional, Union
2
+ from typing import Any
3
3
 
4
4
  import httpx
5
5
 
@@ -22,8 +22,8 @@ def _get_kwargs(
22
22
 
23
23
 
24
24
  def _parse_response(
25
- *, client: Union[AuthenticatedClient, Client], response: httpx.Response
26
- ) -> Optional[Union[HTTPValidationError, OrgLimitsResponse]]:
25
+ *, client: AuthenticatedClient | Client, response: httpx.Response
26
+ ) -> HTTPValidationError | OrgLimitsResponse | None:
27
27
  if response.status_code == 200:
28
28
  response_200 = OrgLimitsResponse.from_dict(response.json())
29
29
 
@@ -41,8 +41,8 @@ def _parse_response(
41
41
 
42
42
 
43
43
  def _build_response(
44
- *, client: Union[AuthenticatedClient, Client], response: httpx.Response
45
- ) -> Response[Union[HTTPValidationError, OrgLimitsResponse]]:
44
+ *, client: AuthenticatedClient | Client, response: httpx.Response
45
+ ) -> Response[HTTPValidationError | OrgLimitsResponse]:
46
46
  return Response(
47
47
  status_code=HTTPStatus(response.status_code),
48
48
  content=response.content,
@@ -55,7 +55,7 @@ def sync_detailed(
55
55
  org_id: str,
56
56
  *,
57
57
  client: AuthenticatedClient,
58
- ) -> Response[Union[HTTPValidationError, OrgLimitsResponse]]:
58
+ ) -> Response[HTTPValidationError | OrgLimitsResponse]:
59
59
  """Get Organization Limits
60
60
 
61
61
  Get the current limits and quotas for an organization.
@@ -68,7 +68,7 @@ def sync_detailed(
68
68
  httpx.TimeoutException: If the request takes longer than Client.timeout.
69
69
 
70
70
  Returns:
71
- Response[Union[HTTPValidationError, OrgLimitsResponse]]
71
+ Response[HTTPValidationError | OrgLimitsResponse]
72
72
  """
73
73
 
74
74
  kwargs = _get_kwargs(
@@ -86,7 +86,7 @@ def sync(
86
86
  org_id: str,
87
87
  *,
88
88
  client: AuthenticatedClient,
89
- ) -> Optional[Union[HTTPValidationError, OrgLimitsResponse]]:
89
+ ) -> HTTPValidationError | OrgLimitsResponse | None:
90
90
  """Get Organization Limits
91
91
 
92
92
  Get the current limits and quotas for an organization.
@@ -99,7 +99,7 @@ def sync(
99
99
  httpx.TimeoutException: If the request takes longer than Client.timeout.
100
100
 
101
101
  Returns:
102
- Union[HTTPValidationError, OrgLimitsResponse]
102
+ HTTPValidationError | OrgLimitsResponse
103
103
  """
104
104
 
105
105
  return sync_detailed(
@@ -112,7 +112,7 @@ async def asyncio_detailed(
112
112
  org_id: str,
113
113
  *,
114
114
  client: AuthenticatedClient,
115
- ) -> Response[Union[HTTPValidationError, OrgLimitsResponse]]:
115
+ ) -> Response[HTTPValidationError | OrgLimitsResponse]:
116
116
  """Get Organization Limits
117
117
 
118
118
  Get the current limits and quotas for an organization.
@@ -125,7 +125,7 @@ async def asyncio_detailed(
125
125
  httpx.TimeoutException: If the request takes longer than Client.timeout.
126
126
 
127
127
  Returns:
128
- Response[Union[HTTPValidationError, OrgLimitsResponse]]
128
+ Response[HTTPValidationError | OrgLimitsResponse]
129
129
  """
130
130
 
131
131
  kwargs = _get_kwargs(
@@ -141,7 +141,7 @@ async def asyncio(
141
141
  org_id: str,
142
142
  *,
143
143
  client: AuthenticatedClient,
144
- ) -> Optional[Union[HTTPValidationError, OrgLimitsResponse]]:
144
+ ) -> HTTPValidationError | OrgLimitsResponse | None:
145
145
  """Get Organization Limits
146
146
 
147
147
  Get the current limits and quotas for an organization.
@@ -154,7 +154,7 @@ async def asyncio(
154
154
  httpx.TimeoutException: If the request takes longer than Client.timeout.
155
155
 
156
156
  Returns:
157
- Union[HTTPValidationError, OrgLimitsResponse]
157
+ HTTPValidationError | OrgLimitsResponse
158
158
  """
159
159
 
160
160
  return (
@@ -1,5 +1,5 @@
1
1
  from http import HTTPStatus
2
- from typing import Any, Optional, Union
2
+ from typing import Any
3
3
 
4
4
  import httpx
5
5
 
@@ -13,7 +13,7 @@ from ...types import UNSET, Response, Unset
13
13
  def _get_kwargs(
14
14
  org_id: str,
15
15
  *,
16
- days: Union[Unset, int] = 30,
16
+ days: int | Unset = 30,
17
17
  ) -> dict[str, Any]:
18
18
  params: dict[str, Any] = {}
19
19
 
@@ -31,8 +31,8 @@ def _get_kwargs(
31
31
 
32
32
 
33
33
  def _parse_response(
34
- *, client: Union[AuthenticatedClient, Client], response: httpx.Response
35
- ) -> Optional[Union[HTTPValidationError, OrgUsageResponse]]:
34
+ *, client: AuthenticatedClient | Client, response: httpx.Response
35
+ ) -> HTTPValidationError | OrgUsageResponse | None:
36
36
  if response.status_code == 200:
37
37
  response_200 = OrgUsageResponse.from_dict(response.json())
38
38
 
@@ -50,8 +50,8 @@ def _parse_response(
50
50
 
51
51
 
52
52
  def _build_response(
53
- *, client: Union[AuthenticatedClient, Client], response: httpx.Response
54
- ) -> Response[Union[HTTPValidationError, OrgUsageResponse]]:
53
+ *, client: AuthenticatedClient | Client, response: httpx.Response
54
+ ) -> Response[HTTPValidationError | OrgUsageResponse]:
55
55
  return Response(
56
56
  status_code=HTTPStatus(response.status_code),
57
57
  content=response.content,
@@ -64,22 +64,22 @@ def sync_detailed(
64
64
  org_id: str,
65
65
  *,
66
66
  client: AuthenticatedClient,
67
- days: Union[Unset, int] = 30,
68
- ) -> Response[Union[HTTPValidationError, OrgUsageResponse]]:
67
+ days: int | Unset = 30,
68
+ ) -> Response[HTTPValidationError | OrgUsageResponse]:
69
69
  """Get Organization Usage
70
70
 
71
71
  Get detailed usage statistics for an organization aggregated across all graphs.
72
72
 
73
73
  Args:
74
74
  org_id (str):
75
- days (Union[Unset, int]): Default: 30.
75
+ days (int | Unset): Default: 30.
76
76
 
77
77
  Raises:
78
78
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
79
79
  httpx.TimeoutException: If the request takes longer than Client.timeout.
80
80
 
81
81
  Returns:
82
- Response[Union[HTTPValidationError, OrgUsageResponse]]
82
+ Response[HTTPValidationError | OrgUsageResponse]
83
83
  """
84
84
 
85
85
  kwargs = _get_kwargs(
@@ -98,22 +98,22 @@ def sync(
98
98
  org_id: str,
99
99
  *,
100
100
  client: AuthenticatedClient,
101
- days: Union[Unset, int] = 30,
102
- ) -> Optional[Union[HTTPValidationError, OrgUsageResponse]]:
101
+ days: int | Unset = 30,
102
+ ) -> HTTPValidationError | OrgUsageResponse | None:
103
103
  """Get Organization Usage
104
104
 
105
105
  Get detailed usage statistics for an organization aggregated across all graphs.
106
106
 
107
107
  Args:
108
108
  org_id (str):
109
- days (Union[Unset, int]): Default: 30.
109
+ days (int | Unset): Default: 30.
110
110
 
111
111
  Raises:
112
112
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
113
113
  httpx.TimeoutException: If the request takes longer than Client.timeout.
114
114
 
115
115
  Returns:
116
- Union[HTTPValidationError, OrgUsageResponse]
116
+ HTTPValidationError | OrgUsageResponse
117
117
  """
118
118
 
119
119
  return sync_detailed(
@@ -127,22 +127,22 @@ async def asyncio_detailed(
127
127
  org_id: str,
128
128
  *,
129
129
  client: AuthenticatedClient,
130
- days: Union[Unset, int] = 30,
131
- ) -> Response[Union[HTTPValidationError, OrgUsageResponse]]:
130
+ days: int | Unset = 30,
131
+ ) -> Response[HTTPValidationError | OrgUsageResponse]:
132
132
  """Get Organization Usage
133
133
 
134
134
  Get detailed usage statistics for an organization aggregated across all graphs.
135
135
 
136
136
  Args:
137
137
  org_id (str):
138
- days (Union[Unset, int]): Default: 30.
138
+ days (int | Unset): Default: 30.
139
139
 
140
140
  Raises:
141
141
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
142
142
  httpx.TimeoutException: If the request takes longer than Client.timeout.
143
143
 
144
144
  Returns:
145
- Response[Union[HTTPValidationError, OrgUsageResponse]]
145
+ Response[HTTPValidationError | OrgUsageResponse]
146
146
  """
147
147
 
148
148
  kwargs = _get_kwargs(
@@ -159,22 +159,22 @@ async def asyncio(
159
159
  org_id: str,
160
160
  *,
161
161
  client: AuthenticatedClient,
162
- days: Union[Unset, int] = 30,
163
- ) -> Optional[Union[HTTPValidationError, OrgUsageResponse]]:
162
+ days: int | Unset = 30,
163
+ ) -> HTTPValidationError | OrgUsageResponse | None:
164
164
  """Get Organization Usage
165
165
 
166
166
  Get detailed usage statistics for an organization aggregated across all graphs.
167
167
 
168
168
  Args:
169
169
  org_id (str):
170
- days (Union[Unset, int]): Default: 30.
170
+ days (int | Unset): Default: 30.
171
171
 
172
172
  Raises:
173
173
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
174
174
  httpx.TimeoutException: If the request takes longer than Client.timeout.
175
175
 
176
176
  Returns:
177
- Union[HTTPValidationError, OrgUsageResponse]
177
+ HTTPValidationError | OrgUsageResponse
178
178
  """
179
179
 
180
180
  return (
@@ -1,5 +1,5 @@
1
1
  from http import HTTPStatus
2
- from typing import Any, Optional, Union, cast
2
+ from typing import Any, cast
3
3
 
4
4
  import httpx
5
5
 
@@ -16,15 +16,15 @@ def _get_kwargs(
16
16
  graph_id: str,
17
17
  *,
18
18
  body: CypherQueryRequest,
19
- mode: Union[None, ResponseMode, Unset] = UNSET,
20
- chunk_size: Union[None, Unset, int] = UNSET,
21
- test_mode: Union[Unset, bool] = False,
19
+ mode: None | ResponseMode | Unset = UNSET,
20
+ chunk_size: int | None | Unset = UNSET,
21
+ test_mode: bool | Unset = False,
22
22
  ) -> dict[str, Any]:
23
23
  headers: dict[str, Any] = {}
24
24
 
25
25
  params: dict[str, Any] = {}
26
26
 
27
- json_mode: Union[None, Unset, str]
27
+ json_mode: None | str | Unset
28
28
  if isinstance(mode, Unset):
29
29
  json_mode = UNSET
30
30
  elif isinstance(mode, ResponseMode):
@@ -33,7 +33,7 @@ def _get_kwargs(
33
33
  json_mode = mode
34
34
  params["mode"] = json_mode
35
35
 
36
- json_chunk_size: Union[None, Unset, int]
36
+ json_chunk_size: int | None | Unset
37
37
  if isinstance(chunk_size, Unset):
38
38
  json_chunk_size = UNSET
39
39
  else:
@@ -59,8 +59,8 @@ def _get_kwargs(
59
59
 
60
60
 
61
61
  def _parse_response(
62
- *, client: Union[AuthenticatedClient, Client], response: httpx.Response
63
- ) -> Optional[Union[Any, ExecuteCypherQueryResponse200, HTTPValidationError]]:
62
+ *, client: AuthenticatedClient | Client, response: httpx.Response
63
+ ) -> Any | ExecuteCypherQueryResponse200 | HTTPValidationError | None:
64
64
  if response.status_code == 200:
65
65
  content_type = response.headers.get("content-type", "")
66
66
  if (
@@ -112,8 +112,8 @@ def _parse_response(
112
112
 
113
113
 
114
114
  def _build_response(
115
- *, client: Union[AuthenticatedClient, Client], response: httpx.Response
116
- ) -> Response[Union[Any, ExecuteCypherQueryResponse200, HTTPValidationError]]:
115
+ *, client: AuthenticatedClient | Client, response: httpx.Response
116
+ ) -> Response[Any | ExecuteCypherQueryResponse200 | HTTPValidationError]:
117
117
  return Response(
118
118
  status_code=HTTPStatus(response.status_code),
119
119
  content=response.content,
@@ -127,17 +127,20 @@ def sync_detailed(
127
127
  *,
128
128
  client: AuthenticatedClient,
129
129
  body: CypherQueryRequest,
130
- mode: Union[None, ResponseMode, Unset] = UNSET,
131
- chunk_size: Union[None, Unset, int] = UNSET,
132
- test_mode: Union[Unset, bool] = False,
133
- ) -> Response[Union[Any, ExecuteCypherQueryResponse200, HTTPValidationError]]:
134
- r"""Execute Cypher Query (Read-Only)
130
+ mode: None | ResponseMode | Unset = UNSET,
131
+ chunk_size: int | None | Unset = UNSET,
132
+ test_mode: bool | Unset = False,
133
+ ) -> Response[Any | ExecuteCypherQueryResponse200 | HTTPValidationError]:
134
+ r"""Execute Cypher Query
135
135
 
136
- Execute a read-only Cypher query with intelligent response optimization.
136
+ Execute a Cypher query with intelligent response optimization.
137
137
 
138
- **IMPORTANT: This endpoint is READ-ONLY.** Write operations (CREATE, MERGE, SET, DELETE) are not
139
- allowed.
140
- To load data into your graph, use the staging pipeline:
138
+ **IMPORTANT: Write operations depend on graph type:**
139
+ - **Main Graphs**: READ-ONLY. Write operations (CREATE, MERGE, SET, DELETE) are not allowed.
140
+ - **Subgraphs**: WRITE-ENABLED. Full Cypher write operations are supported for development and
141
+ report creation.
142
+
143
+ To load data into main graphs, use the staging pipeline:
141
144
  1. Create file upload: `POST /v1/graphs/{graph_id}/tables/{table_name}/files`
142
145
  2. Ingest to graph: `POST /v1/graphs/{graph_id}/tables/ingest`
143
146
 
@@ -193,15 +196,21 @@ def sync_detailed(
193
196
  - `503 Service Unavailable`: Circuit breaker open or SSE disabled
194
197
  - Clients should implement exponential backoff
195
198
 
199
+ **Subgraph Support:**
200
+ This endpoint accepts both parent graph IDs and subgraph IDs.
201
+ - Parent graph: Use `graph_id` like `kg0123456789abcdef`
202
+ - Subgraph: Use full subgraph ID like `kg0123456789abcdef_dev`
203
+ Subgraphs share the same instance as their parent graph and have independent data.
204
+
196
205
  **Note:**
197
206
  Query operations are included - no credit consumption required.
198
207
  Queue position is based on subscription tier for priority.
199
208
 
200
209
  Args:
201
210
  graph_id (str):
202
- mode (Union[None, ResponseMode, Unset]): Response mode override
203
- chunk_size (Union[None, Unset, int]): Rows per chunk for streaming
204
- test_mode (Union[Unset, bool]): Enable test mode for better debugging Default: False.
211
+ mode (None | ResponseMode | Unset): Response mode override
212
+ chunk_size (int | None | Unset): Rows per chunk for streaming
213
+ test_mode (bool | Unset): Enable test mode for better debugging Default: False.
205
214
  body (CypherQueryRequest): Request model for Cypher query execution.
206
215
 
207
216
  Raises:
@@ -209,7 +218,7 @@ def sync_detailed(
209
218
  httpx.TimeoutException: If the request takes longer than Client.timeout.
210
219
 
211
220
  Returns:
212
- Response[Union[Any, ExecuteCypherQueryResponse200, HTTPValidationError]]
221
+ Response[Any | ExecuteCypherQueryResponse200 | HTTPValidationError]
213
222
  """
214
223
 
215
224
  kwargs = _get_kwargs(
@@ -232,17 +241,20 @@ def sync(
232
241
  *,
233
242
  client: AuthenticatedClient,
234
243
  body: CypherQueryRequest,
235
- mode: Union[None, ResponseMode, Unset] = UNSET,
236
- chunk_size: Union[None, Unset, int] = UNSET,
237
- test_mode: Union[Unset, bool] = False,
238
- ) -> Optional[Union[Any, ExecuteCypherQueryResponse200, HTTPValidationError]]:
239
- r"""Execute Cypher Query (Read-Only)
244
+ mode: None | ResponseMode | Unset = UNSET,
245
+ chunk_size: int | None | Unset = UNSET,
246
+ test_mode: bool | Unset = False,
247
+ ) -> Any | ExecuteCypherQueryResponse200 | HTTPValidationError | None:
248
+ r"""Execute Cypher Query
240
249
 
241
- Execute a read-only Cypher query with intelligent response optimization.
250
+ Execute a Cypher query with intelligent response optimization.
242
251
 
243
- **IMPORTANT: This endpoint is READ-ONLY.** Write operations (CREATE, MERGE, SET, DELETE) are not
244
- allowed.
245
- To load data into your graph, use the staging pipeline:
252
+ **IMPORTANT: Write operations depend on graph type:**
253
+ - **Main Graphs**: READ-ONLY. Write operations (CREATE, MERGE, SET, DELETE) are not allowed.
254
+ - **Subgraphs**: WRITE-ENABLED. Full Cypher write operations are supported for development and
255
+ report creation.
256
+
257
+ To load data into main graphs, use the staging pipeline:
246
258
  1. Create file upload: `POST /v1/graphs/{graph_id}/tables/{table_name}/files`
247
259
  2. Ingest to graph: `POST /v1/graphs/{graph_id}/tables/ingest`
248
260
 
@@ -298,15 +310,21 @@ def sync(
298
310
  - `503 Service Unavailable`: Circuit breaker open or SSE disabled
299
311
  - Clients should implement exponential backoff
300
312
 
313
+ **Subgraph Support:**
314
+ This endpoint accepts both parent graph IDs and subgraph IDs.
315
+ - Parent graph: Use `graph_id` like `kg0123456789abcdef`
316
+ - Subgraph: Use full subgraph ID like `kg0123456789abcdef_dev`
317
+ Subgraphs share the same instance as their parent graph and have independent data.
318
+
301
319
  **Note:**
302
320
  Query operations are included - no credit consumption required.
303
321
  Queue position is based on subscription tier for priority.
304
322
 
305
323
  Args:
306
324
  graph_id (str):
307
- mode (Union[None, ResponseMode, Unset]): Response mode override
308
- chunk_size (Union[None, Unset, int]): Rows per chunk for streaming
309
- test_mode (Union[Unset, bool]): Enable test mode for better debugging Default: False.
325
+ mode (None | ResponseMode | Unset): Response mode override
326
+ chunk_size (int | None | Unset): Rows per chunk for streaming
327
+ test_mode (bool | Unset): Enable test mode for better debugging Default: False.
310
328
  body (CypherQueryRequest): Request model for Cypher query execution.
311
329
 
312
330
  Raises:
@@ -314,7 +332,7 @@ def sync(
314
332
  httpx.TimeoutException: If the request takes longer than Client.timeout.
315
333
 
316
334
  Returns:
317
- Union[Any, ExecuteCypherQueryResponse200, HTTPValidationError]
335
+ Any | ExecuteCypherQueryResponse200 | HTTPValidationError
318
336
  """
319
337
 
320
338
  return sync_detailed(
@@ -332,17 +350,20 @@ async def asyncio_detailed(
332
350
  *,
333
351
  client: AuthenticatedClient,
334
352
  body: CypherQueryRequest,
335
- mode: Union[None, ResponseMode, Unset] = UNSET,
336
- chunk_size: Union[None, Unset, int] = UNSET,
337
- test_mode: Union[Unset, bool] = False,
338
- ) -> Response[Union[Any, ExecuteCypherQueryResponse200, HTTPValidationError]]:
339
- r"""Execute Cypher Query (Read-Only)
353
+ mode: None | ResponseMode | Unset = UNSET,
354
+ chunk_size: int | None | Unset = UNSET,
355
+ test_mode: bool | Unset = False,
356
+ ) -> Response[Any | ExecuteCypherQueryResponse200 | HTTPValidationError]:
357
+ r"""Execute Cypher Query
340
358
 
341
- Execute a read-only Cypher query with intelligent response optimization.
359
+ Execute a Cypher query with intelligent response optimization.
342
360
 
343
- **IMPORTANT: This endpoint is READ-ONLY.** Write operations (CREATE, MERGE, SET, DELETE) are not
344
- allowed.
345
- To load data into your graph, use the staging pipeline:
361
+ **IMPORTANT: Write operations depend on graph type:**
362
+ - **Main Graphs**: READ-ONLY. Write operations (CREATE, MERGE, SET, DELETE) are not allowed.
363
+ - **Subgraphs**: WRITE-ENABLED. Full Cypher write operations are supported for development and
364
+ report creation.
365
+
366
+ To load data into main graphs, use the staging pipeline:
346
367
  1. Create file upload: `POST /v1/graphs/{graph_id}/tables/{table_name}/files`
347
368
  2. Ingest to graph: `POST /v1/graphs/{graph_id}/tables/ingest`
348
369
 
@@ -398,15 +419,21 @@ async def asyncio_detailed(
398
419
  - `503 Service Unavailable`: Circuit breaker open or SSE disabled
399
420
  - Clients should implement exponential backoff
400
421
 
422
+ **Subgraph Support:**
423
+ This endpoint accepts both parent graph IDs and subgraph IDs.
424
+ - Parent graph: Use `graph_id` like `kg0123456789abcdef`
425
+ - Subgraph: Use full subgraph ID like `kg0123456789abcdef_dev`
426
+ Subgraphs share the same instance as their parent graph and have independent data.
427
+
401
428
  **Note:**
402
429
  Query operations are included - no credit consumption required.
403
430
  Queue position is based on subscription tier for priority.
404
431
 
405
432
  Args:
406
433
  graph_id (str):
407
- mode (Union[None, ResponseMode, Unset]): Response mode override
408
- chunk_size (Union[None, Unset, int]): Rows per chunk for streaming
409
- test_mode (Union[Unset, bool]): Enable test mode for better debugging Default: False.
434
+ mode (None | ResponseMode | Unset): Response mode override
435
+ chunk_size (int | None | Unset): Rows per chunk for streaming
436
+ test_mode (bool | Unset): Enable test mode for better debugging Default: False.
410
437
  body (CypherQueryRequest): Request model for Cypher query execution.
411
438
 
412
439
  Raises:
@@ -414,7 +441,7 @@ async def asyncio_detailed(
414
441
  httpx.TimeoutException: If the request takes longer than Client.timeout.
415
442
 
416
443
  Returns:
417
- Response[Union[Any, ExecuteCypherQueryResponse200, HTTPValidationError]]
444
+ Response[Any | ExecuteCypherQueryResponse200 | HTTPValidationError]
418
445
  """
419
446
 
420
447
  kwargs = _get_kwargs(
@@ -435,17 +462,20 @@ async def asyncio(
435
462
  *,
436
463
  client: AuthenticatedClient,
437
464
  body: CypherQueryRequest,
438
- mode: Union[None, ResponseMode, Unset] = UNSET,
439
- chunk_size: Union[None, Unset, int] = UNSET,
440
- test_mode: Union[Unset, bool] = False,
441
- ) -> Optional[Union[Any, ExecuteCypherQueryResponse200, HTTPValidationError]]:
442
- r"""Execute Cypher Query (Read-Only)
465
+ mode: None | ResponseMode | Unset = UNSET,
466
+ chunk_size: int | None | Unset = UNSET,
467
+ test_mode: bool | Unset = False,
468
+ ) -> Any | ExecuteCypherQueryResponse200 | HTTPValidationError | None:
469
+ r"""Execute Cypher Query
443
470
 
444
- Execute a read-only Cypher query with intelligent response optimization.
471
+ Execute a Cypher query with intelligent response optimization.
445
472
 
446
- **IMPORTANT: This endpoint is READ-ONLY.** Write operations (CREATE, MERGE, SET, DELETE) are not
447
- allowed.
448
- To load data into your graph, use the staging pipeline:
473
+ **IMPORTANT: Write operations depend on graph type:**
474
+ - **Main Graphs**: READ-ONLY. Write operations (CREATE, MERGE, SET, DELETE) are not allowed.
475
+ - **Subgraphs**: WRITE-ENABLED. Full Cypher write operations are supported for development and
476
+ report creation.
477
+
478
+ To load data into main graphs, use the staging pipeline:
449
479
  1. Create file upload: `POST /v1/graphs/{graph_id}/tables/{table_name}/files`
450
480
  2. Ingest to graph: `POST /v1/graphs/{graph_id}/tables/ingest`
451
481
 
@@ -501,15 +531,21 @@ async def asyncio(
501
531
  - `503 Service Unavailable`: Circuit breaker open or SSE disabled
502
532
  - Clients should implement exponential backoff
503
533
 
534
+ **Subgraph Support:**
535
+ This endpoint accepts both parent graph IDs and subgraph IDs.
536
+ - Parent graph: Use `graph_id` like `kg0123456789abcdef`
537
+ - Subgraph: Use full subgraph ID like `kg0123456789abcdef_dev`
538
+ Subgraphs share the same instance as their parent graph and have independent data.
539
+
504
540
  **Note:**
505
541
  Query operations are included - no credit consumption required.
506
542
  Queue position is based on subscription tier for priority.
507
543
 
508
544
  Args:
509
545
  graph_id (str):
510
- mode (Union[None, ResponseMode, Unset]): Response mode override
511
- chunk_size (Union[None, Unset, int]): Rows per chunk for streaming
512
- test_mode (Union[Unset, bool]): Enable test mode for better debugging Default: False.
546
+ mode (None | ResponseMode | Unset): Response mode override
547
+ chunk_size (int | None | Unset): Rows per chunk for streaming
548
+ test_mode (bool | Unset): Enable test mode for better debugging Default: False.
513
549
  body (CypherQueryRequest): Request model for Cypher query execution.
514
550
 
515
551
  Raises:
@@ -517,7 +553,7 @@ async def asyncio(
517
553
  httpx.TimeoutException: If the request takes longer than Client.timeout.
518
554
 
519
555
  Returns:
520
- Union[Any, ExecuteCypherQueryResponse200, HTTPValidationError]
556
+ Any | ExecuteCypherQueryResponse200 | HTTPValidationError
521
557
  """
522
558
 
523
559
  return (