structifyai 1.158.0__py3-none-any.whl → 1.176.1__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.
Files changed (364) hide show
  1. structify/_base_client.py +140 -11
  2. structify/_client.py +1116 -253
  3. structify/_models.py +16 -1
  4. structify/_streaming.py +12 -10
  5. structify/_types.py +12 -2
  6. structify/_version.py +1 -1
  7. structify/lib/__init__.py +5 -0
  8. structify/lib/cost_confirmation.py +63 -0
  9. structify/pagination.py +63 -1
  10. structify/resources/__init__.py +57 -27
  11. structify/resources/admin/__init__.py +26 -40
  12. structify/resources/admin/admin.py +39 -71
  13. structify/resources/admin/chat_templates.py +382 -0
  14. structify/resources/admin/jobs.py +76 -3
  15. structify/resources/admin/sandbox.py +184 -0
  16. structify/resources/admin/teams.py +88 -0
  17. structify/resources/admin/users.py +28 -238
  18. structify/resources/chat.py +232 -0
  19. structify/resources/connector_catalog/__init__.py +33 -0
  20. structify/resources/connector_catalog/admin.py +1510 -0
  21. structify/resources/connector_catalog/connector_catalog.py +394 -0
  22. structify/resources/connectors/__init__.py +33 -0
  23. structify/resources/{connectors.py → connectors/connectors.py} +1155 -325
  24. structify/resources/connectors/type_snippets.py +169 -0
  25. structify/resources/datasets/datasets.py +0 -4
  26. structify/resources/documents.py +1 -123
  27. structify/resources/external.py +35 -2
  28. structify/resources/jobs.py +19 -336
  29. structify/resources/nango.py +234 -0
  30. structify/resources/polars.py +225 -103
  31. structify/resources/sandbox.py +13 -110
  32. structify/resources/scrape.py +0 -16
  33. structify/resources/sessions.py +241 -153
  34. structify/resources/slack.py +1 -151
  35. structify/resources/structure.py +120 -48
  36. structify/resources/teams.py +96 -0
  37. structify/resources/user/__init__.py +14 -0
  38. structify/resources/user/api_keys.py +380 -0
  39. structify/resources/user/user.py +209 -2
  40. structify/resources/whitelabel.py +294 -187
  41. structify/resources/whitelabel_service.py +222 -0
  42. structify/resources/{report.py → wiki.py} +237 -210
  43. structify/resources/workflow_schedule.py +4 -5
  44. structify/types/__init__.py +67 -36
  45. structify/types/add_member_response.py +35 -4
  46. structify/types/admin/__init__.py +13 -88
  47. structify/types/admin/admin_dataset_return.py +6 -0
  48. structify/types/admin/{user_get_credits_response.py → admin_delete_jobs_response.py} +3 -3
  49. structify/types/admin/admin_list_jobs_response.py +35 -1
  50. structify/types/admin/admin_sandbox.py +38 -0
  51. structify/types/admin/chat_template_create_params.py +21 -0
  52. structify/types/admin/{human_llm_start_next_job_params.py → chat_template_list_params.py} +3 -3
  53. structify/types/admin/{human_llm_get_jobs_response.py → chat_template_list_response.py} +3 -3
  54. structify/types/admin/chat_template_update_params.py +22 -0
  55. structify/types/admin/{user_add_credits_response.py → expire_grants_response.py} +5 -3
  56. structify/types/admin/impersonate_response.py +17 -0
  57. structify/types/admin/{next_action_get_batched_training_data_params.py → job_delete_params.py} +2 -2
  58. structify/types/admin/{user_get_credits_params.py → sandbox_list_params.py} +4 -4
  59. structify/types/admin/sandbox_type.py +7 -0
  60. structify/types/admin/{user_set_credits_params.py → team_expire_grants_params.py} +4 -4
  61. structify/types/admin/user.py +16 -0
  62. structify/types/admin/user_create_params.py +1 -0
  63. structify/types/admin/{training_dataset_delete_params.py → user_impersonate_params.py} +3 -3
  64. structify/types/admin/user_list_response.py +14 -4
  65. structify/types/admin_grant_access_response.py +2 -0
  66. structify/types/{slack_user_mapping_response.py → admin_issue_found_response.py} +3 -5
  67. structify/types/chat_add_git_commit_response.py +2 -0
  68. structify/types/{admin/human_llm_get_next_step_params.py → chat_admin_issue_found_params.py} +4 -4
  69. structify/types/chat_create_session_params.py +7 -0
  70. structify/types/chat_dependency.py +17 -0
  71. structify/types/chat_event.py +51 -239
  72. structify/types/chat_get_git_commit_response.py +2 -0
  73. structify/types/chat_get_session_timeline_response.py +31 -1
  74. structify/types/{job_get_steps_response.py → chat_list_templates_response.py} +3 -3
  75. structify/types/chat_prompt.py +2 -0
  76. structify/types/chat_revert_to_commit_response.py +2 -0
  77. structify/types/chat_session.py +14 -0
  78. structify/types/chat_session_with_messages.py +33 -1
  79. structify/types/chat_template.py +31 -0
  80. structify/types/chat_update_session_params.py +2 -0
  81. structify/types/code_generate_code_params.py +7 -0
  82. structify/types/connector.py +16 -25
  83. structify/types/connector_auth_method.py +29 -0
  84. structify/types/connector_auth_method_with_fields.py +15 -0
  85. structify/types/connector_catalog/__init__.py +32 -0
  86. structify/types/connector_catalog/admin_batch_create_credential_fields_params.py +14 -0
  87. structify/types/connector_catalog/admin_batch_create_credential_fields_response.py +10 -0
  88. structify/types/connector_catalog/admin_batch_create_scopes_params.py +14 -0
  89. structify/types/connector_catalog/admin_create_auth_method_params.py +22 -0
  90. structify/types/connector_catalog/admin_create_catalog_params.py +22 -0
  91. structify/types/connector_catalog/admin_create_credential_field_params.py +28 -0
  92. structify/types/connector_catalog/admin_create_scope_params.py +19 -0
  93. structify/types/connector_catalog/admin_list_nango_pending_response.py +10 -0
  94. structify/types/{admin/training_dataset_get_datum_info_params.py → connector_catalog/admin_list_scopes_params.py} +3 -3
  95. structify/types/connector_catalog/admin_update_auth_method_params.py +16 -0
  96. structify/types/connector_catalog/admin_update_catalog_params.py +20 -0
  97. structify/types/connector_catalog/admin_update_credential_field_params.py +26 -0
  98. structify/types/connector_catalog/admin_update_scope_params.py +18 -0
  99. structify/types/connector_catalog/admin_upload_logo_params.py +13 -0
  100. structify/types/connector_catalog/batch_create_scopes_response.py +12 -0
  101. structify/types/connector_catalog/connector_auth_method_scope.py +25 -0
  102. structify/types/connector_catalog/connector_catalog.py +26 -0
  103. structify/types/connector_catalog/create_credential_field_request_param.py +28 -0
  104. structify/types/connector_catalog/create_scope_request_param.py +19 -0
  105. structify/types/connector_catalog/list_scopes_response.py +12 -0
  106. structify/types/connector_catalog/pending_nango_integration.py +17 -0
  107. structify/types/{admin/user_set_credits_response.py → connector_catalog/upload_logo_response.py} +3 -3
  108. structify/types/connector_catalog_list_params.py +20 -0
  109. structify/types/connector_catalog_list_response.py +22 -0
  110. structify/types/connector_catalog_with_methods.py +15 -0
  111. structify/types/connector_category.py +7 -0
  112. structify/types/connector_create_params.py +11 -25
  113. structify/types/connector_credential_field.py +34 -0
  114. structify/types/connector_delete_schema_object_params.py +35 -0
  115. structify/types/connector_explore_params.py +19 -0
  116. structify/types/connector_explorer_chat.py +9 -84
  117. structify/types/connector_get_clarification_requests_response.py +36 -0
  118. structify/types/connector_get_response.py +2 -0
  119. structify/types/connector_list_with_snippets_params.py +12 -0
  120. structify/types/connector_list_with_snippets_response.py +10 -0
  121. structify/types/connector_search_tables_params.py +15 -0
  122. structify/types/connector_search_tables_response.py +160 -0
  123. structify/types/connector_store_response.py +21 -0
  124. structify/types/connector_summaries_params.py +15 -0
  125. structify/types/connector_summaries_response.py +10 -0
  126. structify/types/connector_summary.py +16 -0
  127. structify/types/connector_table_info.py +15 -0
  128. structify/types/connector_update_column_params.py +12 -0
  129. structify/types/connector_update_params.py +4 -25
  130. structify/types/connector_update_table_params.py +14 -0
  131. structify/types/connector_with_secrets.py +2 -0
  132. structify/types/connector_with_snippets.py +11 -0
  133. structify/types/connectors/__init__.py +6 -0
  134. structify/types/connectors/snippet.py +20 -0
  135. structify/types/connectors/type_snippet_upsert_params.py +12 -0
  136. structify/types/create_chat_session_response.py +2 -0
  137. structify/types/dataset_create_params.py +0 -2
  138. structify/types/dataset_descriptor.py +6 -0
  139. structify/types/dataset_descriptor_param.py +6 -0
  140. structify/types/dataset_get_response.py +6 -0
  141. structify/types/dataset_list_response.py +6 -0
  142. structify/types/dataset_view_table_response.py +3 -1
  143. structify/types/delete_chat_session_response.py +2 -0
  144. structify/types/delete_schema_object_request_param.py +35 -0
  145. structify/types/delete_schema_object_response.py +13 -0
  146. structify/types/edge_spec_param.py +13 -0
  147. structify/types/entity_get_source_entities_response.py +0 -2
  148. structify/types/entity_list_jobs_response.py +3 -3
  149. structify/types/entity_view_response.py +0 -2
  150. structify/types/estimate_cost_response.py +9 -0
  151. structify/types/exploration_phase_id.py +79 -0
  152. structify/types/finalize_dag_response.py +11 -0
  153. structify/types/get_chat_session_response.py +14 -6
  154. structify/types/get_dependencies_response.py +15 -0
  155. structify/types/get_job_events_response.py +20 -0
  156. structify/types/get_node_response.py +10 -0
  157. structify/types/job_cancel_response.py +3 -3
  158. structify/types/job_event_body.py +108 -1
  159. structify/types/job_get_source_entities_response.py +0 -2
  160. structify/types/job_list_params.py +1 -1
  161. structify/types/job_list_response.py +35 -1
  162. structify/types/knowledge_graph.py +6 -0
  163. structify/types/knowledge_graph_param.py +6 -0
  164. structify/types/list_chat_sessions_response.py +2 -0
  165. structify/types/list_collaborators_response.py +4 -0
  166. structify/types/list_tables_response.py +12 -0
  167. structify/types/llm_information_store.py +62 -28
  168. structify/types/merge_config.py +2 -0
  169. structify/types/merge_config_param.py +2 -0
  170. structify/types/message.py +2 -0
  171. structify/types/nango_create_session_params.py +21 -0
  172. structify/types/nango_create_session_response.py +15 -0
  173. structify/types/nango_list_integrations_response.py +28 -0
  174. structify/types/{session_create_node_params.py → node_spec_param.py} +4 -4
  175. structify/types/refresh_session_response.py +15 -0
  176. structify/types/sandbox.py +8 -2
  177. structify/types/sandbox_get_params.py +2 -1
  178. structify/types/scrape_list_params.py +1 -22
  179. structify/types/scrape_list_response.py +2 -0
  180. structify/types/scrape_scrape_params.py +1 -14
  181. structify/types/scrape_scrape_response.py +2 -0
  182. structify/types/select_team_response.py +3 -1
  183. structify/types/{connector_approve_version_params.py → session_confirm_node_params.py} +3 -3
  184. structify/types/session_finalize_dag_params.py +20 -0
  185. structify/types/session_get_events_response.py +2 -0
  186. structify/types/session_request_confirmation_params.py +13 -0
  187. structify/types/session_upload_node_output_data_params.py +3 -0
  188. structify/types/slack_event_payload_param.py +18 -2
  189. structify/types/slack_events_params.py +18 -2
  190. structify/types/source_list_response.py +0 -2
  191. structify/types/structure_enhance_property_params.py +2 -17
  192. structify/types/structure_enhance_relationship_params.py +2 -17
  193. structify/types/structure_find_relationship_params.py +2 -18
  194. structify/types/structure_pdf_params.py +22 -0
  195. structify/types/structure_pdf_response.py +11 -0
  196. structify/types/structure_run_async_params.py +10 -17
  197. structify/types/table.py +2 -0
  198. structify/types/table_param.py +2 -0
  199. structify/types/team.py +14 -0
  200. structify/types/{admin/training_dataset_remove_datum_params.py → team_create_link_code_params.py} +3 -3
  201. structify/types/team_update_params.py +10 -0
  202. structify/types/team_wiki_page.py +28 -0
  203. structify/types/teams_link_code_response.py +13 -0
  204. structify/types/token_response.py +6 -2
  205. structify/types/tool_invocation.py +468 -0
  206. structify/types/tool_result.py +99 -0
  207. structify/types/update_table_response.py +46 -0
  208. structify/types/usage_group_key.py +14 -1
  209. structify/types/user/__init__.py +4 -0
  210. structify/types/{admin/training_dataset_size_params.py → user/api_key_create_params.py} +5 -5
  211. structify/types/user/api_key_info.py +24 -0
  212. structify/types/user/create_api_key_response.py +12 -0
  213. structify/types/user/list_api_keys_response.py +12 -0
  214. structify/types/user_enrich_params.py +11 -0
  215. structify/types/user_info.py +22 -0
  216. structify/types/user_refresh_params.py +13 -0
  217. structify/types/user_transactions_response.py +5 -5
  218. structify/types/user_update_params.py +32 -12
  219. structify/types/user_usage_response.py +0 -2
  220. structify/types/wiki_connector_reference.py +63 -0
  221. structify/types/wiki_create_params.py +16 -0
  222. structify/types/{admin/training_dataset_list_response.py → wiki_list_response.py} +4 -2
  223. structify/types/wiki_page_with_references.py +12 -0
  224. structify/types/wiki_update_params.py +16 -0
  225. structify/types/workflow_dag.py +2 -0
  226. structify/types/workflow_node_execution_status.py +3 -1
  227. structify/types/workflow_schedule_info.py +2 -2
  228. structify/types/workflow_session_node.py +10 -0
  229. {structifyai-1.158.0.dist-info → structifyai-1.176.1.dist-info}/METADATA +67 -4
  230. structifyai-1.176.1.dist-info/RECORD +496 -0
  231. {structifyai-1.158.0.dist-info → structifyai-1.176.1.dist-info}/licenses/LICENSE +1 -1
  232. structify/resources/admin/human_llm.py +0 -819
  233. structify/resources/admin/next_action.py +0 -656
  234. structify/resources/admin/training_datasets.py +0 -2028
  235. structify/resources/external/__init__.py +0 -61
  236. structify/resources/external/external.py +0 -166
  237. structify/resources/external/news.py +0 -519
  238. structify/resources/external/people.py +0 -998
  239. structify/resources/external/search_api.py +0 -1525
  240. structify/types/active_version_data.py +0 -21
  241. structify/types/active_version_response.py +0 -13
  242. structify/types/admin/action_training_data_entry.py +0 -219
  243. structify/types/admin/action_training_data_response.py +0 -12
  244. structify/types/admin/datum_status.py +0 -19
  245. structify/types/admin/delete_action_training_data_response.py +0 -9
  246. structify/types/admin/human_llm_add_search_for_job_params.py +0 -13
  247. structify/types/admin/human_llm_add_to_dataset_params.py +0 -186
  248. structify/types/admin/human_llm_finish_job_params.py +0 -13
  249. structify/types/admin/human_llm_get_jobs_params.py +0 -12
  250. structify/types/admin/human_llm_get_next_step_response.py +0 -196
  251. structify/types/admin/human_llm_job.py +0 -73
  252. structify/types/admin/human_llm_prelabel_step_response.py +0 -184
  253. structify/types/admin/human_llm_update_step_params.py +0 -186
  254. structify/types/admin/labeling_stats.py +0 -24
  255. structify/types/admin/next_action_add_training_datum_params.py +0 -203
  256. structify/types/admin/next_action_delete_training_data_params.py +0 -12
  257. structify/types/admin/next_action_get_training_data_params.py +0 -25
  258. structify/types/admin/next_action_get_training_datum_params.py +0 -12
  259. structify/types/admin/next_action_label_training_datum_params.py +0 -90
  260. structify/types/admin/step_choices.py +0 -32
  261. structify/types/admin/training_dataset_add_datum_params.py +0 -13
  262. structify/types/admin/training_dataset_add_params.py +0 -12
  263. structify/types/admin/training_dataset_download_datum_params.py +0 -13
  264. structify/types/admin/training_dataset_get_labeller_stats_params.py +0 -23
  265. structify/types/admin/training_dataset_get_labeller_stats_response.py +0 -10
  266. structify/types/admin/training_dataset_get_next_for_labeling_params.py +0 -15
  267. structify/types/admin/training_dataset_get_next_for_qa_params.py +0 -18
  268. structify/types/admin/training_dataset_get_next_suspicious_params.py +0 -23
  269. structify/types/admin/training_dataset_label_datum_params.py +0 -188
  270. structify/types/admin/training_dataset_list_datums_params.py +0 -17
  271. structify/types/admin/training_dataset_list_datums_response.py +0 -33
  272. structify/types/admin/training_dataset_mark_datum_suspicious_params.py +0 -19
  273. structify/types/admin/training_dataset_size_response.py +0 -37
  274. structify/types/admin/training_dataset_suspicious_count_params.py +0 -23
  275. structify/types/admin/training_dataset_suspicious_count_response.py +0 -9
  276. structify/types/admin/training_dataset_switch_dataset_params.py +0 -13
  277. structify/types/admin/training_dataset_update_datum_status_params.py +0 -18
  278. structify/types/admin/training_dataset_upload_labeled_step_params.py +0 -15
  279. structify/types/admin/training_dataset_verify_datum_params.py +0 -17
  280. structify/types/admin/training_datum_response.py +0 -405
  281. structify/types/admin/user_add_credits_params.py +0 -18
  282. structify/types/chat_prompt_param.py +0 -255
  283. structify/types/connector_column_descriptor.py +0 -21
  284. structify/types/connector_relational_database_descriptor.py +0 -13
  285. structify/types/connector_table_descriptor.py +0 -22
  286. structify/types/document_structure_params.py +0 -21
  287. structify/types/document_structure_response.py +0 -8
  288. structify/types/execution_step.py +0 -198
  289. structify/types/external/__init__.py +0 -96
  290. structify/types/external/companies_search_response.py +0 -28
  291. structify/types/external/company_search_result.py +0 -69
  292. structify/types/external/enriched_organization.py +0 -69
  293. structify/types/external/everything_response.py +0 -19
  294. structify/types/external/google_maps_result.py +0 -38
  295. structify/types/external/google_search_response.py +0 -19
  296. structify/types/external/google_search_result.py +0 -21
  297. structify/types/external/job_posting.py +0 -54
  298. structify/types/external/job_postings_response.py +0 -19
  299. structify/types/external/location_coordinates.py +0 -13
  300. structify/types/external/location_response.py +0 -16
  301. structify/types/external/location_result.py +0 -24
  302. structify/types/external/news_article.py +0 -33
  303. structify/types/external/news_everything_params.py +0 -45
  304. structify/types/external/news_source.py +0 -15
  305. structify/types/external/news_source_detail.py +0 -28
  306. structify/types/external/news_sources_params.py +0 -19
  307. structify/types/external/news_top_headlines_params.py +0 -28
  308. structify/types/external/organization_detail.py +0 -87
  309. structify/types/external/people_match_response.py +0 -18
  310. structify/types/external/people_search_response.py +0 -28
  311. structify/types/external/person_companies_search_params.py +0 -63
  312. structify/types/external/person_match.py +0 -60
  313. structify/types/external/person_organization_job_postings_params.py +0 -16
  314. structify/types/external/person_organizations_enrich_params.py +0 -16
  315. structify/types/external/person_people_match_params.py +0 -49
  316. structify/types/external/person_people_search_params.py +0 -57
  317. structify/types/external/person_search_result.py +0 -48
  318. structify/types/external/search_api_google_flights_calendar_params.py +0 -28
  319. structify/types/external/search_api_google_flights_calendar_response.py +0 -8
  320. structify/types/external/search_api_google_flights_location_search_params.py +0 -16
  321. structify/types/external/search_api_google_flights_location_search_response.py +0 -8
  322. structify/types/external/search_api_google_flights_search_params.py +0 -43
  323. structify/types/external/search_api_google_flights_search_response.py +0 -8
  324. structify/types/external/search_api_google_maps_place_details_params.py +0 -16
  325. structify/types/external/search_api_google_maps_place_details_response.py +0 -8
  326. structify/types/external/search_api_google_maps_place_photos_params.py +0 -16
  327. structify/types/external/search_api_google_maps_place_photos_response.py +0 -8
  328. structify/types/external/search_api_google_maps_place_reviews_params.py +0 -19
  329. structify/types/external/search_api_google_maps_place_reviews_response.py +0 -8
  330. structify/types/external/search_api_google_maps_search_params.py +0 -22
  331. structify/types/external/search_api_google_maps_search_response.py +0 -10
  332. structify/types/external/search_api_google_scholar_author_search_params.py +0 -22
  333. structify/types/external/search_api_google_scholar_author_search_response.py +0 -8
  334. structify/types/external/search_api_google_scholar_citations_params.py +0 -22
  335. structify/types/external/search_api_google_scholar_citations_response.py +0 -8
  336. structify/types/external/search_api_google_scholar_search_params.py +0 -28
  337. structify/types/external/search_api_google_scholar_search_response.py +0 -8
  338. structify/types/external/search_api_google_search_params.py +0 -25
  339. structify/types/external/search_api_location_search_params.py +0 -22
  340. structify/types/external/sources_response.py +0 -16
  341. structify/types/external/top_headlines_response.py +0 -19
  342. structify/types/job_delete_response.py +0 -7
  343. structify/types/job_get_response.py +0 -62
  344. structify/types/job_get_step_graph_response.py +0 -233
  345. structify/types/job_get_step_response.py +0 -196
  346. structify/types/message_param.py +0 -35
  347. structify/types/pending_version_response.py +0 -21
  348. structify/types/report_missing_params.py +0 -18
  349. structify/types/report_missing_response.py +0 -7
  350. structify/types/report_relationship_params.py +0 -18
  351. structify/types/report_relationship_response.py +0 -7
  352. structify/types/report_step_params.py +0 -15
  353. structify/types/report_step_response.py +0 -7
  354. structify/types/report_wrong_params.py +0 -18
  355. structify/types/report_wrong_response.py +0 -7
  356. structify/types/sandbox_create_params.py +0 -20
  357. structify/types/session_create_edge_params.py +0 -13
  358. structify/types/slack_connection_status.py +0 -15
  359. structify/types/slack_user_mapping_params.py +0 -18
  360. structify/types/tool_metadata_param.py +0 -17
  361. structify/types/user_team.py +0 -35
  362. structify/types/workflow_schedule_get_response.py +0 -10
  363. structifyai-1.158.0.dist-info/RECORD +0 -530
  364. {structifyai-1.158.0.dist-info → structifyai-1.176.1.dist-info}/WHEEL +0 -0
@@ -0,0 +1,496 @@
1
+ structify/__init__.py,sha256=iTxRcLR7HWp1YeRMIYsfnXOaE6rQpTsJ0FXNHDHndu0,2730
2
+ structify/_base_client.py,sha256=SJoa_GzUHzS9A-EM09RC4sfh191TJYQ_H2s_dte3NmE,73412
3
+ structify/_client.py,sha256=grGQVWPspa6PqFIcGB4wsQy2O43wCV1wNDN627Db7Ac,57347
4
+ structify/_compat.py,sha256=DQBVORjFb33zch24jzkhM14msvnzY7mmSmgDLaVFUM8,6562
5
+ structify/_constants.py,sha256=S14PFzyN9-I31wiV7SmIlL5Ga0MLHxdvegInGdXH7tM,462
6
+ structify/_exceptions.py,sha256=azVty2y26_7gMMJfJIn5F7FEDvdfHwPrrRUuQ8gdrns,3226
7
+ structify/_files.py,sha256=I95i1rbKWr7Aay6h6lDfmDI8XtSGUVB_9DC5opBzYnU,3620
8
+ structify/_models.py,sha256=R3MpO2z4XhTAnD3ObEks32suRXleF1g7BEgQTOLIxTs,32112
9
+ structify/_qs.py,sha256=craIKyvPktJ94cvf9zn8j8ekG9dWJzhWv0ob34lIOv4,4828
10
+ structify/_resource.py,sha256=tJi4pDQooQZ_zJwEwrLj-U-ye2hC-cbmr1GzIwCT10Y,1118
11
+ structify/_response.py,sha256=RuNhMDiZUdPqEbmFJHDVI4FMPDszk8QjK9LVWm1Fagk,28806
12
+ structify/_streaming.py,sha256=n4C9M7ITmANYn9LaWHNoqJdIIyF7svLco2qst7u3M7U,10233
13
+ structify/_types.py,sha256=jj4p-m3vpUma0AdhPWIaljHZXeb4RKnrAusjVdpDy5Y,7597
14
+ structify/_version.py,sha256=muAQHElBudUzLDa4haEdKoXXGJrRhqWRFTFcNJPqGRY,163
15
+ structify/pagination.py,sha256=ycybhWcpKk4ztsMcCA6C0WZiJejGrSx6bSr8LLskJUY,4346
16
+ structify/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
+ structify/_utils/__init__.py,sha256=7fch0GT9zpNnErbciSpUNa-SjTxxjY6kxHxKMOM4AGs,2305
18
+ structify/_utils/_compat.py,sha256=D8gtAvjJQrDWt9upS0XaG9Rr5l1QhiAx_I_1utT_tt0,1195
19
+ structify/_utils/_datetime_parse.py,sha256=bABTs0Bc6rabdFvnIwXjEhWL15TcRgWZ_6XGTqN8xUk,4204
20
+ structify/_utils/_logs.py,sha256=1bVeMaco4ZZE0QXtuCgDMrrFtpCiumVQHm18T1Yhi9c,783
21
+ structify/_utils/_proxy.py,sha256=aglnj2yBTDyGX9Akk2crZHrl10oqRmceUy2Zp008XEs,1975
22
+ structify/_utils/_reflection.py,sha256=ZmGkIgT_PuwedyNBrrKGbxoWtkpytJNU1uU4QHnmEMU,1364
23
+ structify/_utils/_resources_proxy.py,sha256=l_WkObtqoHZiqvAkCaDXR9pSjT3qYLc2K206onTRYbI,604
24
+ structify/_utils/_streams.py,sha256=SMC90diFFecpEg_zgDRVbdR3hSEIgVVij4taD-noMLM,289
25
+ structify/_utils/_sync.py,sha256=HBnZkkBnzxtwOZe0212C4EyoRvxhTVtTrLFDz2_xVCg,1589
26
+ structify/_utils/_transform.py,sha256=NjCzmnfqYrsAikUHQig6N9QfuTVbKipuP3ur9mcNF-E,15951
27
+ structify/_utils/_typing.py,sha256=N_5PPuFNsaygbtA_npZd98SVN1LQQvFTKL6bkWPBZGU,4786
28
+ structify/_utils/_utils.py,sha256=ugfUaneOK7I8h9b3656flwf5u_kthY0gvNuqvgOLoSU,12252
29
+ structify/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
30
+ structify/lib/__init__.py,sha256=Ueo7RB2lM1a3wkuifgjgBpqwQxhQUHJzvGorfJAfuUc,187
31
+ structify/lib/cost_confirmation.py,sha256=LvE76RQ0zVU17-qcYvQiH6NBtORIA7m4b72f1_YLMUg,2069
32
+ structify/resources/__init__.py,sha256=uEPBix75KmHK4iO50jocLO_psMYaebe-jkemfOjlz_U,12597
33
+ structify/resources/chat.py,sha256=RIYa-2vgc1I2G52cp5Ak6sIBJf04TWbH5IoGd-r38Co,91243
34
+ structify/resources/code.py,sha256=6DrVsa3SHWz2b9BFJ5lOssni2u-fz4GLBz68-fj9ALE,11196
35
+ structify/resources/documents.py,sha256=QBuL5NQyW1XrncP4tjyb9yLFgqPgWCXa8Zj1uESy5j8,18180
36
+ structify/resources/entities.py,sha256=Fz4yCEdsxs-62bjmkYZY9Ku_tzDe73Q4xfqv_XHGe_M,81990
37
+ structify/resources/external.py,sha256=lVZCAEwNKTSGSZasGFibDmIC9N6MseJRkgBFCNvgcQU,3556
38
+ structify/resources/external_dataframe_proxy.py,sha256=DSn0YwWIembR__ZtDxVCJtyY3v4bXX6S5OTTw0mMGd0,11819
39
+ structify/resources/jobs.py,sha256=gO1aSByi1dMvW90UDsMmNhLHFCOY4ENLkZcAx4gbLHY,30108
40
+ structify/resources/match.py,sha256=gDWEWnKwEoLbheQAMFltJCk2ysa_L9AuJMOaauM7c4Y,12248
41
+ structify/resources/nango.py,sha256=Zl0M1XhlVe61jHVd-SdYI9uEbEhIRmskvlk7Xp0Lh8g,9166
42
+ structify/resources/polars.py,sha256=W7m8A-q8mdz5-hb3pqcO9q93j5ttMFCGJlEfGWDBFH0,60046
43
+ structify/resources/projects.py,sha256=YDikBDB9D1EXyZ2GyRx4GlpQ83snw51YlNuU1sLHqho,14117
44
+ structify/resources/public_sessions.py,sha256=_JmssE0MMjeGdxT0FWtrkcceSV4skeEkVGYeO2FkJes,9976
45
+ structify/resources/sandbox.py,sha256=KgpZ623G6T_3_oovCgjlxO81M63NanMBAezVDdesOCc,12807
46
+ structify/resources/scrape.py,sha256=vAEjjOqH0gVOlEs_JvHLMQ-W9zfF28vwdm45CCO2bSs,12119
47
+ structify/resources/server.py,sha256=39G3yhj3NYWgnLq0PdS86lwDvXK6MIWAIl7G0ZLMJro,4934
48
+ structify/resources/sessions.py,sha256=N_ilELx5tjeng3Lw6Laa-y548QegkEN7tZFuhopoWiE,66179
49
+ structify/resources/slack.py,sha256=CSMW3Eo-XRjISvNOgAcGyBdnmI9SdkQplE0P0lqTnjM,13082
50
+ structify/resources/sources.py,sha256=K5jLPKu3LNH5vKL9V1NQlHaG8UI982H74enN_cjdf-0,13181
51
+ structify/resources/structure.py,sha256=jXcVdUuNc6Q-HwUhSDcsJONbBqRf_FcPAjNtjXYxrdo,33124
52
+ structify/resources/teams.py,sha256=W1Isf2lXDLB-xdzgR8qJwCrziElOY25OcsQfIBKQ1Sc,55575
53
+ structify/resources/whitelabel.py,sha256=0TQ3HJccdflpAVcHqydizT4RznkRvZBRP0--0szjDps,12865
54
+ structify/resources/whitelabel_service.py,sha256=cqGBpRegtJRjt5WFNPCXTwyGKHTAbBUrhJP1UroEhVQ,9439
55
+ structify/resources/wiki.py,sha256=0j5qrgQ72LE7GsuLyy4nylnEuU0VDSjTMRejaHlqa-8,19490
56
+ structify/resources/workflow.py,sha256=D8gnt22usKoY9iA3HTNlbQyWTykNUXl2m3rFsPAKZZc,9273
57
+ structify/resources/workflow_schedule.py,sha256=bP7rxm0OsW27zt2Y5EF7EILfFzP3lKFIaRRr_8MbZvA,29807
58
+ structify/resources/admin/__init__.py,sha256=PJr020x__bUptQWFYBt2yIUFScH7IHZ0jB4wFscLERM,3873
59
+ structify/resources/admin/admin.py,sha256=oUo4LKqjnN5E2Kir-1bz2h8W_mLhms5q-ZbkkSPOWC8,10397
60
+ structify/resources/admin/chat_templates.py,sha256=tsWs-2tI-8nybzQn-lNERBAA81LebwR0giW7ZrPgnG8,14727
61
+ structify/resources/admin/dataset.py,sha256=1AEVHzMvgr96bbJjY3fcWRTDwq1zJAmMzYQB9kjSnL8,6096
62
+ structify/resources/admin/functional_tests.py,sha256=ZdGnpHBSz1qEYf5oE5W8SjhvPQUtlP5plh6IvceYjbI,23977
63
+ structify/resources/admin/jobs.py,sha256=dVTzYPFyx4RdoC52gnacZ9cC4gPVuvCQejqp0HWQ4bA,11918
64
+ structify/resources/admin/sandbox.py,sha256=BHk78aJIExnz_dNxmD0ZQ9VERQj7IYE0i3mpNS1x-BA,6568
65
+ structify/resources/admin/teams.py,sha256=-xR3N8tGF2uI4SMHwsLnAf6q36z42hLHAWDPA8vXASo,25921
66
+ structify/resources/admin/users.py,sha256=F0xis-9-Wo5qQHLGvAnJ9Ekao4Ssew043z9sCbOeEH8,17496
67
+ structify/resources/connector_catalog/__init__.py,sha256=uwvbyu4gu4pZ_px3-Nhhh2lxiosNwQGlqW-IIbbWgx8,1120
68
+ structify/resources/connector_catalog/admin.py,sha256=2ob0yPRr_zyoHGs-XTIupwCCnO9LgddXP-ToAJtTxmw,60801
69
+ structify/resources/connector_catalog/connector_catalog.py,sha256=eek2Q0bB6BEhlrtW0HwbGOXLKAgn5iZk_Oa2pChLzPU,15187
70
+ structify/resources/connectors/__init__.py,sha256=XshER9L_6E2kY_zKa1VTkY_UmEIAoi3MkeFYJdGGH0U,1133
71
+ structify/resources/connectors/connectors.py,sha256=AanoFJqH01EN6Hfsll9JOMnHIGgxA5Co8gewnASHtas,89020
72
+ structify/resources/connectors/type_snippets.py,sha256=dawxpQbDQhqKPHpRQApti0OhgMI-rQUHeRuaDKgU-wM,6585
73
+ structify/resources/datasets/__init__.py,sha256=bzXAcLzZcFHJgRUmvkRsO-koBIahXNo1DCKTBvOiS1Q,1054
74
+ structify/resources/datasets/datasets.py,sha256=CBalzZ6o55Z-6olRChbkO-wRnx8k-qtxFxHumfv5igY,73366
75
+ structify/resources/datasets/evaluate.py,sha256=P85O9kQ9o_PiQBPV9TMIXtOr2UlUDtVKUMOotJdGsrk,19934
76
+ structify/resources/user/__init__.py,sha256=vkGsM7uGlBXVVwuEZlICVLlIY3F75n_MIMpm0rOZn_0,1440
77
+ structify/resources/user/api_keys.py,sha256=LgKvDGkHPGIumWmEsPCA1XYAKNuRN48nqG6anv8AVHE,14331
78
+ structify/resources/user/stripe.py,sha256=MazkGQ5VuNY7TxMPXxJULBVerMGmOXaEcXpfQsUYoNs,13574
79
+ structify/resources/user/user.py,sha256=Hk8D5KB8in-A9eJSYFIosILz4HgSWDwDDAVIQeQ8Sew,25411
80
+ structify/types/__init__.py,sha256=iysU4RCVpcamOqJTXjmk3wd4nFykazAxUpueJF3ONCw,28167
81
+ structify/types/accept_invitation_response.py,sha256=hWIn0Sscg7U0uOqoZA5SG8ENZQuM0tsbgOlrJbcW37s,260
82
+ structify/types/add_member_response.py,sha256=_YjqwGpsfdR9Dw6SAQ99TveFSD8Hov1IjVPMH2KC3CM,882
83
+ structify/types/admin_grant_access_response.py,sha256=xCPdmejgZs1oXOsfgbW-cYKZa8getHRotRnsCav5QPU,390
84
+ structify/types/admin_issue_found_response.py,sha256=b8O7QVfXlRflcx3Rb6Cwf35LBxv_5bTXhCRkPfnHXbk,222
85
+ structify/types/autofix_context.py,sha256=E4Dc7VjDiblbW8UBXBOz-iNjznAQiZ7tMs3J7sHGSI8,245
86
+ structify/types/chat_add_collaborator_params.py,sha256=FyKIC2eOgSx0e-jeomFovoJs_eJStulK3zCZQtxl2M8,383
87
+ structify/types/chat_add_git_commit_params.py,sha256=y4HmhC4jLX7GFatchxl__4ztkuQwhxc6NU0-j_YGZQo,352
88
+ structify/types/chat_add_git_commit_response.py,sha256=T2hCiHvxd3LvIIYqsDyIZommTtyygveda-3AIEZy2mQ,431
89
+ structify/types/chat_admin_issue_found_params.py,sha256=N5YMgm6O-Yr3sXZb2sWDHdyNXHk358jjjgG8Dk0wacE,326
90
+ structify/types/chat_copy_node_output_by_code_hash_params.py,sha256=gP4V2Y0_Rb4-kwoEceClJLgjVdWv7bgcI4qqQIvdNv8,356
91
+ structify/types/chat_copy_node_output_by_code_hash_response.py,sha256=Cst1RK9jDrMAKEyzLIk5_-D6YUbO-AIVllYui2sy2aQ,272
92
+ structify/types/chat_copy_params.py,sha256=tfA3jdduKDJeHiYjWWKdHifRMp1sCGyGQcYHFuMFdnE,425
93
+ structify/types/chat_create_session_params.py,sha256=QSkL1Z0Vj0sT8AJ8mcDZQIqAwUkbhiQHuF6811veMmc,1810
94
+ structify/types/chat_delete_files_params.py,sha256=Rv24bWe1CK524xobl9-_APx5GG8KTqIwEtUgYIUlMXc,343
95
+ structify/types/chat_delete_files_response.py,sha256=ZoFJjfZqn_rVuwiFhsuFigN_AQHh_DRkb5KRj7J_49g,225
96
+ structify/types/chat_dependency.py,sha256=J8JLY6kBjFt4dgf-_Vk_HEjxS5R6_6VnTQue2JzZRug,415
97
+ structify/types/chat_event.py,sha256=P75JvtSDWSFPkhnkQ0QhOb8hgtkLwEeuyZLDn3k1zEw,3334
98
+ structify/types/chat_get_git_commit_response.py,sha256=6_Bpdh6HU5zwGi219Q14a0c0tN-qtJN9RPrDudeZu3U,440
99
+ structify/types/chat_get_partial_chats_response.py,sha256=LS4eF1-GW2N5mZSJVZUoMu9Q77Y7Fo6bIIUS3P7zwh4,290
100
+ structify/types/chat_get_session_timeline_response.py,sha256=6SM_FoDMxNn75rpqPKJj1C1_YXjONvncMnYkf8V8knA,1684
101
+ structify/types/chat_grant_admin_override_params.py,sha256=d2DdaEs_3r3oeqJ1od-9T3cUFOUz1xac7bTuA7OOg1M,451
102
+ structify/types/chat_list_sessions_params.py,sha256=Ljqlsf0Er4W9I1REdJRCdh7-uqG5qdR3PO4P2tJXca0,527
103
+ structify/types/chat_list_templates_response.py,sha256=SRpjXB4wZ-Z6qFLuysx3yjEGb1jPQJhb0oGhb4jNoWc,292
104
+ structify/types/chat_load_files_params.py,sha256=UQY8HgO1d6muve1cfQg59uru1OBDHLQWaxGUZ_nXLb4,348
105
+ structify/types/chat_load_files_response.py,sha256=IlqugC7-cJAMg7SOMVBUuIyKqnEB_ZEoku0ZrmhYmaE,271
106
+ structify/types/chat_prompt.py,sha256=8PGaxBYETAmUqrzfVzAsXTuPGSJniTkkmtJr5w9aZyw,7435
107
+ structify/types/chat_revert_to_commit_params.py,sha256=IsMgEQMolu3_zP3c0pKFob0rktE_wT6Mux4ce15QP2k,369
108
+ structify/types/chat_revert_to_commit_response.py,sha256=7Jf19pkc0viF4m3zZYfBgMelFeG0zKe6fHlyLpXb9UI,439
109
+ structify/types/chat_session.py,sha256=42sPbKfAgQ_hq56AYJh8eZhnJwjHYg1Gf0a4fZdYm3s,987
110
+ structify/types/chat_session_role.py,sha256=_c5euQM-zQxtsO5iM1aBskoqObTXOtxbaIc9CcaBCU8,234
111
+ structify/types/chat_session_with_messages.py,sha256=-ottcdFjcL3cojhsFZylTV0-ToNQwX1c4_hJwGYPtsQ,1808
112
+ structify/types/chat_template.py,sha256=v9vIM5kG5Ya18I5-c8FA5SToZVMAzMl7DgsUJafnHX0,446
113
+ structify/types/chat_update_session_favorite_params.py,sha256=UNi0YujSs1gCSry2jK6gNyvjtSBS04XbAYZrkCZo9_k,317
114
+ structify/types/chat_update_session_params.py,sha256=5NQZx-j-W2xQGlX0GU-9vwyQt0QunlifWY2MpRtrEv8,382
115
+ structify/types/chat_update_visibility_params.py,sha256=uWtgq4zb_TSO4hIsY0FmdWaljB_20wpjl6IQhRMibTg,361
116
+ structify/types/chat_visibility.py,sha256=GpTgjpcupE1z9Iul8fxOrlMoP_2wjQ_7Z0rJ2y9qO5Q,244
117
+ structify/types/code_generate_code_params.py,sha256=cX5HYhmrv-9gBZcYMy9jJ8h4vMewt-Zy5jVfAYJsirA,2114
118
+ structify/types/code_interrupt_generation_params.py,sha256=1Y9VOgObIJFyYgAEkUuWZRKKV5-4HcoRA6p5iSEnF3s,410
119
+ structify/types/connector.py,sha256=hqfk8x1ZM39idvAd4wXLm1QNrnT3kRgxEuhk8O28-B0,1069
120
+ structify/types/connector_auth_method.py,sha256=iHBmcNbi74mDjFd_m4-HrGrZoV9_WRSFtrOY0fz9NhQ,562
121
+ structify/types/connector_auth_method_with_fields.py,sha256=EABCugmJ8ahZNhSqvNQAESjHpD3kozh4GPop2OZpSMw,519
122
+ structify/types/connector_catalog_list_params.py,sha256=vqyYfA7M3STeDKKshpD9FthkmoSh4LJecrBFhVGbBJs,470
123
+ structify/types/connector_catalog_list_response.py,sha256=0e1AQU59zTfN-bvx1GCUElnaEiyW104XHUIYvZ4Gkmg,503
124
+ structify/types/connector_catalog_with_methods.py,sha256=EZdXqN6oZggX-SYXUrn_hDgCRHeMY1zNo7pY1q0vX4E,532
125
+ structify/types/connector_category.py,sha256=2YnDoj4lXtyfRTVhSi-7a5InFuOUn26SqeVeaCSS4lE,245
126
+ structify/types/connector_create_params.py,sha256=Xj2MWkiWlMhgCc-Oo3udVGlXwSjU7jy8f0WpKgRFbj8,961
127
+ structify/types/connector_create_secret_params.py,sha256=RFcpj-8nYr1JQxnRWyNBjcuvsziSXRR-Qacwd_h-M_Y,341
128
+ structify/types/connector_credential_field.py,sha256=usPMuE56NVA_Y_zWrfmc5ySIJcC2sfWdo7XCiuzeUlk,586
129
+ structify/types/connector_delete_schema_object_params.py,sha256=lstZhPabY3GNvXEx1QQAmJH0VEqoUAW3qLtF7zP9mK8,823
130
+ structify/types/connector_explore_params.py,sha256=df3NfkPcJ0j0pg8Ol55-6jdKj1yMOsfwoDapqFAZ8V8,490
131
+ structify/types/connector_explorer_chat.py,sha256=xi0ay3ZnnIGvG_TFW69fAM68alEPghMHGow2UEJdLcY,877
132
+ structify/types/connector_get_clarification_requests_response.py,sha256=St1QiNal66IsyzTcpldOSj_Gc_FcTdy5ugcXwXyBc80,686
133
+ structify/types/connector_get_explorer_chat_params.py,sha256=SgpSeRtQdByx_ouu5yjXrRGbptnrO8zlS6FDFohec6I,349
134
+ structify/types/connector_get_response.py,sha256=3QJeed2ho_JRX7Z64qeWxhnTTnrLoGKBOcn1mVhWgpY,541
135
+ structify/types/connector_list_params.py,sha256=pKfgRrVwLMm40oYNZR2tvFP6ypDfqbiC6HyccbbGnIY,362
136
+ structify/types/connector_list_with_snippets_params.py,sha256=Yh66cdY_IjNRzOlOaW0Mdw38HZP_z6vibipc7SqXPwc,353
137
+ structify/types/connector_list_with_snippets_response.py,sha256=LebdvFVlfqW9X6XsYB7GEcf3U27OoNdsXwFd83i4K0I,336
138
+ structify/types/connector_search_tables_params.py,sha256=5sPTU9EuTwUqjifbHH2SL_1sENOB3nKmcNJumo8H8EU,399
139
+ structify/types/connector_search_tables_response.py,sha256=2Fx2p9y9yXoS5Okg_8DzwaYp6qY4GhHdI3cNoSbc4bw,3726
140
+ structify/types/connector_store_response.py,sha256=w15FWdaIo1U9K2rWX1mALvOwRPm84gLvTvkKaG6VM4s,705
141
+ structify/types/connector_summaries_params.py,sha256=jn1hELOA2mPA7RTJsE7ZFvQ50yze40KGG76jJ16Kou8,385
142
+ structify/types/connector_summaries_response.py,sha256=fUs0jffk5axultrwbzWjvLxCVfx8YWYgAsJzwPfPsww,306
143
+ structify/types/connector_summary.py,sha256=IBLto29hAFrogSc3v3jXa3HtkjUZlmBeCQSldvMBhqU,359
144
+ structify/types/connector_table_info.py,sha256=SdhKo7EbkqLy-olM1NbcaX2RI0c0fS_BC5XK5jk0nlI,287
145
+ structify/types/connector_update_column_params.py,sha256=RtvkFwV51P3635S2AAaLEq2rDt0jEbODi_uPY7svHl4,320
146
+ structify/types/connector_update_params.py,sha256=kMuR6_KQD38SeLkm36AjomAECS3CWKrgHdwJd0uFMkc,458
147
+ structify/types/connector_update_table_params.py,sha256=XL4XWCuc8en8l_gqu0Xu4SYS2_aIMOY2ueRpDWe2IsY,350
148
+ structify/types/connector_with_secrets.py,sha256=pyFMs0IUWjr4q_vPifuS2w9lcHset4Yum_cD8D6YuoE,564
149
+ structify/types/connector_with_snippets.py,sha256=4r42MeNRPms7qngLdIsQAfb6YVI72s-XQVyXx0hys28,275
150
+ structify/types/create_chat_session_response.py,sha256=SZUZgmZSULR12X4WqmuYQe03tHLWaZ3VXgD-pGNUF-E,355
151
+ structify/types/create_match_jobs_response.py,sha256=2p2eTdkfSakQuqa3mVwUKd-VLBenTSf2a8dMbIHzQIo,339
152
+ structify/types/create_team_response.py,sha256=mx1zK2SVOkJhbMGn84U-ZLopAOJc5s7cEQIDD4Sxd_g,230
153
+ structify/types/credits_usage_response.py,sha256=O9ts7pDvcLYq8ROfrjdoNoKjITGdpYECNTOGIMxXgsQ,395
154
+ structify/types/credits_usage_timeseries_point.py,sha256=YYlcuWQtsuYspxEy3Upxa4p81ERaP0KRWpVpIJxdsQ8,320
155
+ structify/types/dashboard_component.py,sha256=ZNSvKp3TD8syR-VlumQbJseqVWIxrYD1tM-WEwxwbts,327
156
+ structify/types/dashboard_component_param.py,sha256=-L38A7W88C35urYE7pzNh3xbKzDi5MlqekhaAI6b310,409
157
+ structify/types/dashboard_layout.py,sha256=YLgwm4Knbeux1rUuuXv0habRnFN11zkD_IpQiLbM59I,369
158
+ structify/types/dashboard_layout_param.py,sha256=waC-lwjTlJnjJdyNc2spToUv69zg0cYmoTZriP7m7ek,483
159
+ structify/types/dataset_add_property_params.py,sha256=jKruESCLtFzH0uer5jh-uCqv1FFov6MOaa5u-W1rQYc,641
160
+ structify/types/dataset_count_missing_embeddings_params.py,sha256=w3ZUrh8B9QKEKC87ZKIH6L01SjtMHZ-BIFh6JvI8EcQ,317
161
+ structify/types/dataset_count_missing_embeddings_response.py,sha256=AHTgmBzk99XUHOMcxCoOjVgYvNexy5uLTDraWZnTPBY,245
162
+ structify/types/dataset_create_params.py,sha256=X0-tZ6A-d7jS3kntGfH_Yirw15WrfEOt1rCK4wOUO-E,1217
163
+ structify/types/dataset_create_response.py,sha256=Y3rUTY8eT2orYT3lazuKH2Vvbnda3JbUlFNoieHX_LE,204
164
+ structify/types/dataset_delete_params.py,sha256=6xt6fsq67CgNr0wqACC1Q06jO54TVqcZ34Bbc-uxjbA,319
165
+ structify/types/dataset_descriptor.py,sha256=SeGDVIjy3KHGGG1JBiLRWHfuU7sPZhfxDP0pQqUjXR4,1166
166
+ structify/types/dataset_descriptor_param.py,sha256=jtRkJyk4E9YVUPDzXjqm5mBgSzg6BDxqypcMtDTshzE,1384
167
+ structify/types/dataset_enrichment_progress_params.py,sha256=W_bsPJlRSwJef2QMEdqHAxwMa2sSpMIBcIaEpVALPww,355
168
+ structify/types/dataset_enrichment_progress_response.py,sha256=9ry4cjxXE5rQOxe36Fec6rdD0Eh8jtAdbhgmYHyyRQ4,309
169
+ structify/types/dataset_export_to_csv_params.py,sha256=USAT_824nYmBsIRhbh1TlfykY-poxwCUhVY48RpLs14,323
170
+ structify/types/dataset_export_to_excel_params.py,sha256=xdrrYxv18vP8-hM9lk0BHCL0bSFxqKlVJ2slTV2Knck,302
171
+ structify/types/dataset_get_params.py,sha256=TleWPRADZ9iZe4CASIikXayEZdbSePZdX3-7LGXmAzU,319
172
+ structify/types/dataset_get_response.py,sha256=uITR5slnJXfCK7wZR7D3U4wa0YaJviymNp5HifocUWs,476
173
+ structify/types/dataset_list_response.py,sha256=AO9oT7vGxGfh-s1sH5kzFYM5b2esdBxygSKGkVmV5ZU,638
174
+ structify/types/dataset_match_params.py,sha256=mTJj44G3likTrZeqTmweS4AXfyHKcOONPPL9x8uQg68,692
175
+ structify/types/dataset_match_response.py,sha256=O7S_p9AEiQ1LVIlSZD_CQXnAwy5u5pxyns3YKBsZ7Is,399
176
+ structify/types/dataset_remove_property_params.py,sha256=-3hnkEQVsr7o8N1ohI-u7uS230zXTO7ZLWPshhAjFiM,374
177
+ structify/types/dataset_reorder_properties_params.py,sha256=6z4w5hnZO47KqSFvVhZOGZh8NUxebVTXvyhHFC17xzE,434
178
+ structify/types/dataset_set_primary_column_params.py,sha256=NH32yxc01WQBNb4-n_h2cjYkbBfK9prUa_nw7v_g02g,378
179
+ structify/types/dataset_update_property_params.py,sha256=3YOQAApUvH8SpKzOQ9Qp_JSweXyg2I_cokdTdc8-ujw,651
180
+ structify/types/dataset_update_relationship_params.py,sha256=vSCxeVJM03JM4DlXmKpnImtE58_nUI6eyKXVZetn8CQ,564
181
+ structify/types/dataset_view_relationships_params.py,sha256=Pptxz8SRA6-qFriarOLylrvIdbQyV7rqO_MVGvP4FjA,1001
182
+ structify/types/dataset_view_relationships_response.py,sha256=IC5Ot90K_F7wSPBSz7rfIkw6nF8paVz1tIL-C37IiUw,1866
183
+ structify/types/dataset_view_table_params.py,sha256=vD_qKTv13_mbBP4zIorOSO--RL2qp5pQRxXPdwPBuio,985
184
+ structify/types/dataset_view_table_response.py,sha256=Ultse5-ichgV1vnD0UJmfslMpEqQlnqPmRmQYId0gkA,1846
185
+ structify/types/dataset_view_tables_with_relationships_params.py,sha256=0qCpvobbsnHIij0Z4nAJfDPl_bf8zGoER-3Cmve7Yxw,1021
186
+ structify/types/dataset_view_tables_with_relationships_response.py,sha256=4ICbKqXwWfYrq7N-ZvlFY4kZCwVdo9k65NMaIL4KWZA,5670
187
+ structify/types/delete_chat_session_response.py,sha256=HuoT7Z2lgj4Elha7SBWf7dBamo-vjoGY5kedaoAYgUw,292
188
+ structify/types/delete_project_response.py,sha256=58f-dGQrLRJROkKAafEjy8FHOt7sMef0rc23-H5h8G0,216
189
+ structify/types/delete_schema_object_request_param.py,sha256=5Yg2DZddB0NfZJWwB-da7bKP0434CknxWeFl_-ohF2c,865
190
+ structify/types/delete_schema_object_response.py,sha256=Z_rm0pWxSdl4x-dKAmoPxl9O-PiPbA8FiiF9iik96uI,357
191
+ structify/types/delete_source_entity_response.py,sha256=edPJhRTp-UKXO_bMcamzIKeB8UZE9X3K7xUyVfGYnH8,336
192
+ structify/types/delete_source_relationship_response.py,sha256=ic2_yxlW5wMnXwYlvSm2Y5_I-LlpyMoIRKxgjdtLPxM,348
193
+ structify/types/delete_team_response.py,sha256=hablMsxcOvYdsSPiFOyZE1QozsCsHTd2QR5fwT8cXxc,210
194
+ structify/types/document_delete_params.py,sha256=sBG_6MCTh352qlCIgjxfjGKYtmhY5vxo7GuSdXVyoqk,333
195
+ structify/types/document_download_params.py,sha256=Dvazsql4b7fllAHYRdqJh4YutkXcUNDR7IdtIFoz7gs,337
196
+ structify/types/document_download_response.py,sha256=SRovc4ZE5jlQHw9VbNQvs6wMhlGH7n4ZTSu1LaQdsRQ,224
197
+ structify/types/document_list_params.py,sha256=yWjrKgvagwfbaKrIBMiPS1iVEi5W_sHyxALVQ2n_zwQ,335
198
+ structify/types/document_list_response.py,sha256=7CLvOFhhcwTSWZpR_SrG7LjHYkwIWY8VK_QDXCncgVg,670
199
+ structify/types/document_upload_params.py,sha256=ZjxnbCS5G4YPntWS_2dAX1sV0o8r0RFJpS8CvzdM7uA,511
200
+ structify/types/edge_spec_param.py,sha256=dOjN9BaqDLZQEiBJzHzB1gYt2RZSHqPdH0yfw8Q30tg,324
201
+ structify/types/entity.py,sha256=gKUPLJgVNS5Xse4scEstUhMj8lgaeCEaBCitZkWIjJc,279
202
+ structify/types/entity_add_batch_params.py,sha256=aKSxkxwuLWEO6eea44uOuCSGwnm53nqmVWUb_1LPjTQ,1202
203
+ structify/types/entity_add_batch_response.py,sha256=IlmHotk4v6KXNlLVoQiqb0bQ2ywvRtrQg2V1RflVFTM,236
204
+ structify/types/entity_add_params.py,sha256=c_uY5xvBfBWAsl0n_AQ5J_s7v6cBHwwvxaRUvt1NYhs,1384
205
+ structify/types/entity_add_relationship_params.py,sha256=nsCwYIrq50nnpsFXSISHn5gNHD2g3JURFlknC-UBvZU,479
206
+ structify/types/entity_add_relationship_response.py,sha256=gRwWEIWZ4eVexi0qp7k74JL-bnP2jRVLuhoat9tNoM4,1860
207
+ structify/types/entity_add_response.py,sha256=iFMF6EJkaiVjl_TJZT8IZJ-L8NL8DSvqjNseCU05-MU,226
208
+ structify/types/entity_agent_merge_params.py,sha256=xMZf3JfEYFOOBOkUaj4YsTuPfiDwg6dNPN8BKxdeDeA,427
209
+ structify/types/entity_agent_merge_response.py,sha256=Gaf9cf-knBpOAwxiQN5xKB84fbJJhJHLgn67rL2-pZ0,333
210
+ structify/types/entity_delete_params.py,sha256=RJjQdwELdGA3qYDDw_khu44xHQkSt5pXej0AF5K_HLM,316
211
+ structify/types/entity_delete_relationship_params.py,sha256=ZVikfE-5bBMWhyJm7F9bbbHBaLZYLU-1S6Deway9Fd4,346
212
+ structify/types/entity_delete_response.py,sha256=uhf2oPAiGrY8z0VU-DeebiNtXg_HnCvWXg-lPGv9A9E,232
213
+ structify/types/entity_derive_all_params.py,sha256=PQvHIsNQQasoyFFXZCKXrX5B9MppdzIizxGWtZp4VUM,449
214
+ structify/types/entity_derive_all_response.py,sha256=7UPQyPRFWYzW2qQA9Td5SPL8almbOPz2dguHugoVsCA,238
215
+ structify/types/entity_derive_params.py,sha256=F0O8JrsPotxGAiPkRiC2nGQ-S7nJzyMqHp5IjaN9Oeo,442
216
+ structify/types/entity_derive_response.py,sha256=h_ggtjm5nnn9iuKyWj_hEcyE4HFaNnGU-dSNdDdUeDc,202
217
+ structify/types/entity_get_local_subgraph_params.py,sha256=-QASlWtkAazTFYFPaAfpNqoVCpdRm4J4twRu8C_ubB4,318
218
+ structify/types/entity_get_local_subgraph_response.py,sha256=H1-XcuesfWxLB5zewk68opJjvryhXqWRKObpG33KybM,3854
219
+ structify/types/entity_get_merges_params.py,sha256=3WYbty-SCO3Edbcp7YEeg3t78NHc_g-bA92OUlMESvk,294
220
+ structify/types/entity_get_merges_response.py,sha256=n8RsFBF9YBapsc4gsAXFDJGeqcvIvhvln1Nvk2tUjKA,285
221
+ structify/types/entity_get_params.py,sha256=FObPTp0-gFUr0J9nc4RiFLJmAyHvFroP_kUZUmWgvgg,297
222
+ structify/types/entity_get_response.py,sha256=JbXw8y2T51V08VuQh_TkA64FDIGliRxr5RjJP8d1XR8,1802
223
+ structify/types/entity_get_source_entities_params.py,sha256=H60GR9GMhnhzAuZyVn8RTgPxbsCUAsWDgsKG_4eC7jQ,303
224
+ structify/types/entity_get_source_entities_response.py,sha256=OwS5-imGnKJIALPEulW1ZqIsw4P6lKAHxjFAXXfcZgE,3385
225
+ structify/types/entity_list_jobs_params.py,sha256=XTZBm0iGRKzlfhGd2En3q-EpYnUSR-tbVrnHE4nORqg,285
226
+ structify/types/entity_list_jobs_response.py,sha256=NvYcd93v2PH2cqFMv0TjiPMb_3MtkiwHwMMlP_zsg4M,1356
227
+ structify/types/entity_match.py,sha256=l-sEoEj_M0GBGb69LbpXQ98aKQSPO-d8z9DRrwq_Pr0,4143
228
+ structify/types/entity_merge_params.py,sha256=4mONiINgUs7ahebVBJeI_mkwblERB5ZJyZ5uz7kk6Hs,337
229
+ structify/types/entity_merge_response.py,sha256=g8J8953rARoa1TRsIKI_4rdGPtVylAme5XSBS-YTvTI,352
230
+ structify/types/entity_param.py,sha256=gwvzlRKQ5eSFRBhhgbNzaLYIx96g1nCYTkG4z1cFFVU,385
231
+ structify/types/entity_search_params.py,sha256=mFU9PpyD3eBz36541rccFusf1Q95TEIMFL9pc2oBmeg,343
232
+ structify/types/entity_search_response.py,sha256=cJDHjslC-bW1-VZIOX3sHldoBBaxGm-9E7VRimnzCco,2349
233
+ structify/types/entity_summarize_params.py,sha256=WcsZaPnLwLX2CnZ59pAs4GEwZmrRk3UIf28wTrKwTZo,575
234
+ structify/types/entity_summarize_response.py,sha256=ahOQHRhABNCzCiBC_yCgNtWKblRf-DnE49BOEDpqdtM,2418
235
+ structify/types/entity_trigger_merge_params.py,sha256=xzcBJfuJv6npixZGMlJq7zQ2eQGf6NfHyTyEV4VRXTY,300
236
+ structify/types/entity_trigger_merge_response.py,sha256=6tiMOH6JOcA9NGPR7SPyJ-WR7GTMCphNVzEYTzdCdVY,1820
237
+ structify/types/entity_update_property_params.py,sha256=-XGlfn-BCj9ttICQmrqtlNR_EpRnnAZdpik2jze3rF0,1063
238
+ structify/types/entity_update_property_response.py,sha256=ldZxZrEBvQaK8cFE2LJtzok-E4sbVrNcGzuaCMsU-ac,1824
239
+ structify/types/entity_upload_parquet_params.py,sha256=j_BiCN8ZgsS1uxxwHVdsAUIF0wh6W1cZrnKdjJvw6Dg,397
240
+ structify/types/entity_verify_params.py,sha256=WyY3Kkbg0gddgd88fZfHC4qs1NaeiigjNmTk_9ehIxw,692
241
+ structify/types/entity_view_params.py,sha256=INc0VjI5aqqjllRRKMIh7e6NIvkZi_SbdQQ8CEN-jD8,299
242
+ structify/types/entity_view_response.py,sha256=XAMjFcfx_dbjNIGA2mgtihhf_mrcMkStacEVFN_4vas,8573
243
+ structify/types/estimate_cost_response.py,sha256=fwg7ePl4FDdi-PlpLWb5pKkBFX55h9jTuTtYFsVadmk,223
244
+ structify/types/exploration_phase_id.py,sha256=V0xSupI7RTjxKUzMVKZk7fw2zW79UHgeVSLzHnvqFVk,1696
245
+ structify/types/exploration_run.py,sha256=yMa1Jao85T9PtDxDnpm2916FUZRgsq3fN_17Kv_wJD0,257
246
+ structify/types/exploration_runs_response.py,sha256=USpUAKqym_rTv-cJLz8VGt2A26TtVYMp1kvVMh-RunQ,302
247
+ structify/types/exploration_status.py,sha256=Qg0VwnuNyUtQ6_BeLXZZirMksFY1tJUmMtzX0GKohuE,257
248
+ structify/types/explore_status_response.py,sha256=Y4-H9AKZdIWJr_DLougcWoXwl2QbN2rTpSyQu6nlrPs,413
249
+ structify/types/explorer_chat_response.py,sha256=Y9E66-p8Aii0fjsdgYabhS_8Bt83Lde9Q_Zv84XSKgY,319
250
+ structify/types/finalize_dag_response.py,sha256=3qvFH9mmkLcL868dndLauR1gN65cPA8tJ-d5t2bNxMs,243
251
+ structify/types/get_chat_session_response.py,sha256=WuqLKNZEKK3u_h0tXxXe1beYR606Vz5fcdziaymwx9Q,1652
252
+ structify/types/get_dependencies_response.py,sha256=y48OtvjqEO-R_gVz-fcU3s2KrGeOn6oj1VzIjKoW2Oc,422
253
+ structify/types/get_job_events_response.py,sha256=tfY3G2pWzS5m_QXdy39J8zwavRsQKqJ8IdjrlMIU4tA,442
254
+ structify/types/get_node_logs_response.py,sha256=ko5VlWAaOsogUmu2RXJ6Swc9UdwaxutpHh-jzvyEAdw,298
255
+ structify/types/get_node_response.py,sha256=DkcTwvGBn8RMu-sO-Q2DExhfoaSHnOwMe_nPLDwAfPw,271
256
+ structify/types/get_team_response.py,sha256=A4-0C6LtHlOO_lztnvYaD9v_Xdn6lT8Wrd3iX3_T2VU,334
257
+ structify/types/get_workflow_schedule_sessions_response.py,sha256=nsnLzkLJP_WJ2yO_GCmbrZs9Cqc7HEa2YfmsqodoviQ,355
258
+ structify/types/granularity.py,sha256=At6biWApGE7uE8jr5KnHP9Jr1yPFkuqLwXjExaswtBo,229
259
+ structify/types/image.py,sha256=FpYU3gDZnet0wO17e2uHzcyRUD6E1ssSgv63Ew0DzjU,269
260
+ structify/types/invitation_details_response.py,sha256=TmyeM4mW4Kb6L0d7Ook9cH3g8vzfQYPnvZDIBdgVAO4,272
261
+ structify/types/job_cancel_response.py,sha256=y8M8qPkcXT-pTi4IwQ0JBJQzXeAQIs3u2OsaVeGBTtc,1224
262
+ structify/types/job_event_body.py,sha256=pO11fTm5sGvQ6cx7NvWTitUaunSqdRo-d5tkyh4KPsk,3906
263
+ structify/types/job_get_scrapers_response.py,sha256=-E9DaG9YCkrJeuffZ3RiI6MW7ZsbPjmlVU3jUQdggSY,694
264
+ structify/types/job_get_source_entities_response.py,sha256=vlGKFkMKjII48EexIEBbls6-PAVYDDkmR1__aKjuiUo,3379
265
+ structify/types/job_list_params.py,sha256=i_MYi4vIFC6Dq5I4E4htYwZejqRE5qAf2lgg_SRBuKg,1012
266
+ structify/types/job_list_response.py,sha256=mKWo7HlbMFtsGMjQHLwT8SCuV_Ktmf6pIAqoPx9a5HU,5134
267
+ structify/types/job_status_params.py,sha256=wx7NFv1gJaIsy_fmCdPeEsVblIFRN5P1cUP1q8210HA,412
268
+ structify/types/job_status_response.py,sha256=xcfeCXfxVOFQStG5W0Xm6Cszv2k6u-VKjb2UDfz_McE,277
269
+ structify/types/knowledge_graph.py,sha256=HskWSN4Kw6nhwmIN6vZTNihKuYgztuDuAs2sZMhih90,607
270
+ structify/types/knowledge_graph_param.py,sha256=0erN5rd1W9mvr8T_t6cNhuCnkgpGQe3m0TQDRZp6cac,711
271
+ structify/types/list_chat_sessions_response.py,sha256=m3ulQ7BleGDs4TDspakiJndUc1JY-cVf7PguVPk_9YA,767
272
+ structify/types/list_collaborators_response.py,sha256=IyIJtPILqtcnCnz8B0jLOEg9bhbg8DP4BfNiNsBzxyQ,586
273
+ structify/types/list_members_response.py,sha256=r2FsGyRNLd62HRVdMEgzquEIIevjcLkFPGJUfJt6anw,441
274
+ structify/types/list_projects_response.py,sha256=wbEpzmj8T6Zcbmka1kQfAvUKYU25jhD93Nn8xxIIXWk,278
275
+ structify/types/list_tables_response.py,sha256=1XIMp2upviEO0H2H4Jijpkg-eJwYU3F76k8FLkUmODs,307
276
+ structify/types/list_teams_response.py,sha256=x29nOJYk-J8B_U9K-M_QALpsUZmMpDXwC74b0mI0Uls,286
277
+ structify/types/llm_information_store.py,sha256=c4W_n2X2jSdjDLHyhP7Tr92-ixqXwBlHRwolkY3ZMsM,2325
278
+ structify/types/match_create_jobs_params.py,sha256=5wil8clE2f1o4biqh73ldf4x_aIgqOVtvnJZe_vCibU,633
279
+ structify/types/match_list_results_params.py,sha256=TH2MarUXxaWpxFibx8tLYzKw4jUXGNvfzv40EZ0Kyhw,540
280
+ structify/types/match_result.py,sha256=j7AcS26BRJXRz9NKpMgPG3iFn5eofmqPopt7ZWbwbZ8,509
281
+ structify/types/merge_config.py,sha256=1y5-ocjLszujnAotoEEdTPvrFwsbtXfiuLB9MQPnHxg,1043
282
+ structify/types/merge_config_param.py,sha256=3L80Kl5rdNg8clyW5IwCe17FrkGDQUj_0PBk9zCdDEU,1065
283
+ structify/types/message.py,sha256=g5abko8sgyrLg8WD4aifmjE5FrL-WngVnxElT6sMqN0,916
284
+ structify/types/nango_create_session_params.py,sha256=S-cFduHSo4Xo_9H8OMobe4w3fNZyz_2jjjrnSgmJgAY,629
285
+ structify/types/nango_create_session_response.py,sha256=vR-6ZliJVNcWDVEulY0FrfjWHvjLUgheylbmv49WU-E,336
286
+ structify/types/nango_list_integrations_response.py,sha256=vOkt-fFfoB5c1Lq8eU8O47uYL8yaoS7ts4exhVtjJww,670
287
+ structify/types/node_spec_param.py,sha256=5IBn7iljb1KP3J-JOjWqC8RZyJpJtFDivpQ5Mbfbyiw,432
288
+ structify/types/project.py,sha256=FGidpktcJ1b902oyYYgcWifAzBhDzzDFUC1mJ_acJ2U,450
289
+ structify/types/project_collaborator_input_param.py,sha256=im-J3ioTcmR-R3pJxQ6wSIdJC70ILGmDF59zpBVuJes,391
290
+ structify/types/project_get_response.py,sha256=CkZRyaA4xlJfqsJGrwM5vzQNqUEfRzqfpgWvpBbv_Z4,287
291
+ structify/types/project_member.py,sha256=K1d1cysL5pvEnYiJSkgui11hHk_EFC4Flgyg1QqKBt0,372
292
+ structify/types/project_update_params.py,sha256=SFbv8kF0VZdUSz86FjYEMU1-pUSHEpVIarWaU83j2Cw,625
293
+ structify/types/project_visibility.py,sha256=O-aEcfs0Ptd6vcev74vfMusPKwsAUA-LYPMc74KCV18,240
294
+ structify/types/property_type.py,sha256=CRxKdp8CpWCF65ZCBuqW3Z8flm-EfIE6kBrEuzrl1vY,502
295
+ structify/types/property_type_param.py,sha256=ilUvThZQHU6--2BAgqAKpGGaOQO_E4-Q70GzWqPyKug,617
296
+ structify/types/refresh_session_response.py,sha256=XX63DAyhgiJ76vx17WAzMkGgNezILgWSSnBckBSxfGI,303
297
+ structify/types/relationship.py,sha256=jaF2W0ypqGkMavU-I9aYqyCENIz6VgUtC6VPqKsZFaI,339
298
+ structify/types/relationship_merge_strategy.py,sha256=NuGqglfBplohE6SInMgDcv3VeH4FdczJ9XeTwsJLI6U,1239
299
+ structify/types/relationship_merge_strategy_param.py,sha256=MGuGW7nOUtOGhSTKKFPCOf_RYaTOCOlYqxj7cF3BenE,1291
300
+ structify/types/relationship_param.py,sha256=IdyrBxiNpg-6iUMmPdB0SMs3d8ZQzJHzGQCtEZN5RAk,418
301
+ structify/types/remove_member_response.py,sha256=G4_HFunfGePaEAl7WXpKXMFz9_09LK2wOQjZ_IY2OlM,214
302
+ structify/types/sandbox.py,sha256=AjZzTcArrDHSqTpO4SzVlJA1y5VOxbLX9T9caZJXDl8,599
303
+ structify/types/sandbox_get_params.py,sha256=VWKzOTnMERaTlR4d3pnUgvOmz7xd9XuUZT3-nkjgdYI,406
304
+ structify/types/sandbox_list_response.py,sha256=e75FANom1TQzkEEr_bJpccrPwzqX-L9p9qbGrHnl-mY,264
305
+ structify/types/sandbox_update_status_params.py,sha256=tKbys3xeWDNbbjUyAUEdeCmcdZHDIgyYZScl-QvHgow,299
306
+ structify/types/save_requirement.py,sha256=K4Safc53B7mfVcmp9XwVljbYU5z8JnVS_ngVKSCh3JA,903
307
+ structify/types/save_requirement_param.py,sha256=kF-3gd0PcGJJHhlP5W1OV40Yrty7QZxog5QciMJSWvk,1050
308
+ structify/types/scrape_list_params.py,sha256=g0FI-8tyRHOfaPaDMZ90zCoRHSsurPFd5jLEz1q6F0Q,1474
309
+ structify/types/scrape_list_response.py,sha256=Wt6DwHEN12WzOoT5qVoKQg1ifqTU9C1p9Gh6pyjdJwM,256
310
+ structify/types/scrape_scrape_params.py,sha256=9JJPEvop6tvqX5eI3ThpySG8e5HgU0nXHLBX-XNWujw,876
311
+ structify/types/scrape_scrape_response.py,sha256=pVdbs3ElgDTyaKIKZnQydeguyvIacvles8DJyN2uZxQ,237
312
+ structify/types/select_team_response.py,sha256=oeaOS6JMvl60Ub3ERg9qHDgGHjgWiMVFJWKza-UIoh0,258
313
+ structify/types/server_information.py,sha256=JLj58jDeeXB4QlYxDNpNUivEHTGQlohOKf9RRbJIJmc,207
314
+ structify/types/session_confirm_node_params.py,sha256=rLI5622Gm7BG6TZsWR29bqafVOwOs-TdS0jLOMxoEQI,301
315
+ structify/types/session_create_session_params.py,sha256=f1p_2GNHMLX_JJE81qx2oi-uUpWHLFhvf4GauU68KbY,379
316
+ structify/types/session_finalize_dag_params.py,sha256=fTSx4jqb6qvgs0aO09QeBLXOvu3SCfMH3oCGg9mWLDg,598
317
+ structify/types/session_get_events_params.py,sha256=cwtwE54FsCPi09H27SbPTq4XEL8fQ611INVEjHLPvUE,433
318
+ structify/types/session_get_events_response.py,sha256=77FUiIRnZFnLu8oXIUoRuzlPrSKo4U5fhw6lSb9zb0U,1083
319
+ structify/types/session_get_node_progress_response.py,sha256=cmQMtCmPoZWcls5qAc9azYhIcgHp5D5x8gfn5W2yTZ4,559
320
+ structify/types/session_kill_jobs_params.py,sha256=AUtrh9WAJVEDWzq4eJpoDl9D5V3OJ2wgc10xGV14H1E,310
321
+ structify/types/session_kill_jobs_response.py,sha256=nv-X10icEzOsfQWGlNbmEG4ZcTi0v9phBXPlqGLMOUg,272
322
+ structify/types/session_mark_errored_params.py,sha256=h9AKahlA9zPuAintBt46CtFmYOwC0FHBKo2S095XkNA,479
323
+ structify/types/session_request_confirmation_params.py,sha256=M_SxEfbod-EdeAE5CQ1h82NSvhiCZbBAyNiHrtscazs,389
324
+ structify/types/session_update_node_params.py,sha256=kuPrrAdMs2H6ikDKsUkIWKsPcvNnkBAj2bTeXNNF9B4,538
325
+ structify/types/session_update_node_progress_params.py,sha256=Ow_oam4MR73s_Cvon0RNM5dk66NTq9IVODKItUuVDMw,430
326
+ structify/types/session_upload_dashboard_layout_params.py,sha256=JKO4UHdIvnpco0zCDvXiBsoCpsFNgt_8uOCk0mREiZs,392
327
+ structify/types/session_upload_node_output_data_params.py,sha256=9Jr6QHTjJ22XZsTvZtHxtgpr6xoqiKwhj7jT6EAmDMM,416
328
+ structify/types/session_upload_node_visualization_output_params.py,sha256=yMIKhede3dc7-Nng9VqM09TSauulIGMKkzUgU9yvG0I,385
329
+ structify/types/slack_api_response.py,sha256=V2gZUhcFGy4UFdgu1WF3fHS25Jyly3mgfCx_rYf4AeI,506
330
+ structify/types/slack_event_payload_param.py,sha256=irC5N9PSsBECsAh3DzJ8WVXx387QHoGyR7MG_PgMhRk,1598
331
+ structify/types/slack_events_params.py,sha256=ArvIiMCHmjapmudyYosGffyyYdYvZ1wWEvB-lM6ZeJ8,1522
332
+ structify/types/source.py,sha256=CGPjLL1R41gJGoJbSSqFJeCtQUir7lJkptC8eI4ERqw,814
333
+ structify/types/source_delete_entity_params.py,sha256=lQHCpKkAggme2ZBRfCOA3GbIDpHbr3I8HCHLsGqfaFk,307
334
+ structify/types/source_delete_relationship_params.py,sha256=r-yVxl4vXogXxwuZko-rXFdL5X0B0K7XhHePTlCGeZU,325
335
+ structify/types/source_list_params.py,sha256=hdrYZwIO7gigV_AgURsc9ugdA8I4i9psMEWynyPM3Dw,427
336
+ structify/types/source_list_response.py,sha256=o9M25bmHyhr2bGvu3dNzMH6Wcdejz9oAVnkzFdCwsig,1826
337
+ structify/types/strategy.py,sha256=ci5qnwB6uA-TIQ6wOoRhPcZlFVesvzU9grwuatLZyjk,553
338
+ structify/types/strategy_param.py,sha256=R-TSheIjdJ7g1mDEZFiXu8Gjw3yEa6c5UeRyPPZvCCM,644
339
+ structify/types/structure_enhance_property_params.py,sha256=XYJWG0Xxm5E3gqsLdRoddTMopXdh7hH9vdFG5sfEnXk,596
340
+ structify/types/structure_enhance_property_response.py,sha256=h3VjVVlD1ahE59Ydi9wqifFzIZ_mrbejiz5J6pavKow,226
341
+ structify/types/structure_enhance_relationship_params.py,sha256=0WKCBx_hiGzcP0k2mloTAkxtcghQQdxHpYLcN9bTSCQ,608
342
+ structify/types/structure_enhance_relationship_response.py,sha256=s90CTvSwmZlp8h0UziUNIuAv1HjPXDZvWTQa1L10ZjM,234
343
+ structify/types/structure_find_relationship_params.py,sha256=2Jd6Kgccamt1P1q1jkEw1XLO70sbknkER-UKzjhuH74,570
344
+ structify/types/structure_find_relationship_response.py,sha256=AjojE7iEewqDLHqMFL96y9zJgSR8qTI0EGHzuVMQYb0,228
345
+ structify/types/structure_is_complete_params.py,sha256=foIrU7dW5seHipqVl2f-Leb7n4kAJXh04qIb66JYJps,349
346
+ structify/types/structure_is_complete_response.py,sha256=YWZrs4YK7EyjdZk1GAfb9cFwJS9HCJ0mW52uxesGqu8,216
347
+ structify/types/structure_job_status_params.py,sha256=uQmvkdZQ8c3XSAZSmshm0X7iDfyAKztzofziXSveWIE,479
348
+ structify/types/structure_job_status_response.py,sha256=jZVwojhMJB7w7BwaMQH5W_lqlzb-fKd2SKo6v1xrW-A,806
349
+ structify/types/structure_pdf_params.py,sha256=wzVxFvV0g-CZYtAjtqN5TIqLq6cUMf0B5sAzEENRvkg,473
350
+ structify/types/structure_pdf_response.py,sha256=WZMCq0HhYSbxkB8yLbfMJ0urYuWTPyTAiQdUNcLbLck,244
351
+ structify/types/structure_run_async_params.py,sha256=w7BwDOjGMkSRZTf5f84nQNFQ5kKM_RZjXomS1wvfjXI,1819
352
+ structify/types/structure_run_async_response.py,sha256=RTK4Vh2A-51560FjLrRJiqKNgBjnuq3hd671_hi5lHU,212
353
+ structify/types/survey_submission_response.py,sha256=OTjhVLOGQWATs7VEsn1_OVNxu5oKOS_WwSu82UhmtbE,240
354
+ structify/types/table.py,sha256=Zx9V6jSUeCYAOn3ghA5xejTXVaplVm6Mew_qOVHxkIY,915
355
+ structify/types/table_param.py,sha256=l3Xfw-bNgtgDwAtHw7pQLUReAmVz2SdHXedCGhvD-kA,1047
356
+ structify/types/team.py,sha256=A8IKadmDAYUEbv0TZacN7PXx_dw_AmyN_ThjGuIoDuc,688
357
+ structify/types/team_accept_invitation_params.py,sha256=szwKVdKklkjcFIjTwFJFnpojwI1S9gykppaHMGMa45k,300
358
+ structify/types/team_add_member_params.py,sha256=Tam3Nsx-ZyAANjGVOkrGpdmakiNd-q8WopnZk6pPVJY,349
359
+ structify/types/team_create_link_code_params.py,sha256=IXOQuTc04EFq549vNBwg2IxFzk_x10H3kCnXDBGcMbY,298
360
+ structify/types/team_create_params.py,sha256=vjpDIzXKCstCDIsRh_kdYoe-tAvICG49rchcNshuye8,339
361
+ structify/types/team_create_project_params.py,sha256=zTy_1_g1BYw6xVIt4HkkWg2iw5uJ5KJ1wU8Vi0nfy7s,353
362
+ structify/types/team_credits_usage_params.py,sha256=or8q9PVvAB7fgRfqDuQjZ6xoyUEapZ8q8cZcpMrO-Bc,799
363
+ structify/types/team_role.py,sha256=xlMM8_rJ_7N77mkUaH709rcCLKN6IvjfqUdxHRguMxs,232
364
+ structify/types/team_subscription_status.py,sha256=6ZPOvV0DSr0G0INYit4MZIz414r4AW5LPGdT4rvj_x0,619
365
+ structify/types/team_update_member_role_params.py,sha256=K7_ylgRKDTOT3yqqyhpUCV9AQllv3VII0OiVS8CxehI,365
366
+ structify/types/team_update_params.py,sha256=02KyDHm0xqZgdy6HgHNLCBcOSyMSrYh3dt8o-eVjrzQ,512
367
+ structify/types/team_wiki_page.py,sha256=PDcFqG8mc10Ejnh6YeoSdalNorn40axi7K3ppmhRQ9I,454
368
+ structify/types/team_with_role.py,sha256=t-UgnD90UmxlMpLHdxN8L7kK7VxMVLj-PM26NvkV_2U,327
369
+ structify/types/teams_link_code_response.py,sha256=p81nvCP4KeGVUgQiiaFwAlLMRaGnG4Iv7rp03WFG0uA,269
370
+ structify/types/token_response.py,sha256=N75RMh9ZF05z5Ubc_Pu2pePe3MN7Yqn2GB1FJ8FQJZ0,408
371
+ structify/types/tool_invocation.py,sha256=HCc_nFmfjm5MnoDKDbtnh7TIvLEH7gvsBI4IIU0AxO4,7995
372
+ structify/types/tool_metadata.py,sha256=drtuS9ZQm4cB2KScB1pycX1ifjhGwSUMJm9TFv1SHuI,382
373
+ structify/types/tool_result.py,sha256=C7CSxU0PfW4WMiWlwDckEmsjTbZmWzEoSt2LbcYdAtc,2013
374
+ structify/types/update_member_role_response.py,sha256=q1jTM0lFmzvH8ki7GcSQAh-5cN7VnLF6Jg_IRdA4AqE,222
375
+ structify/types/update_table_response.py,sha256=ypJEzW8JcLOmLpoZq46i7ADFUkHqBGeo0AhtiSq8HAk,1156
376
+ structify/types/update_team_response.py,sha256=AOm2-jzpjF3UVRh3msyc8W00l-hNpk_SqmMI3oK_YBE,230
377
+ structify/types/update_visibility_response.py,sha256=veHlq90QKDCiY__DLHGQQloyZhxy6wSJ_6bPn18bisY,279
378
+ structify/types/usage_group_key.py,sha256=vOoCW73KNK4BG6KXLPCF9D7J6JjJBssFvhDdDPlkHpo,380
379
+ structify/types/user_enrich_params.py,sha256=bXOLnyPxG-iqFk1KZCjRGpcy8osRs6QYEVLtN_7HXf8,280
380
+ structify/types/user_info.py,sha256=L2FckSvAPuRpgwNgwOoYF2WYwHrHmuDDAehq3-EeUWQ,1562
381
+ structify/types/user_refresh_params.py,sha256=_YdNJ1SZg78JkhfLGiuMq-NsN7zAlF0DG3GvDaaMOpY,324
382
+ structify/types/user_survey_submit_params.py,sha256=YLrpWzTb-RHA_uHM02O36ZPnXbtakoLrqQIoMcxBjWo,340
383
+ structify/types/user_transactions_response.py,sha256=2Us052s3oqN0dF0h8oBKJlSebaxBd-arIY-6499lkcc,628
384
+ structify/types/user_update_params.py,sha256=Z6bSEcvG5mv38rhVv2Omjtk5HgLuRcfPvi0YDS4UqaI,1886
385
+ structify/types/user_usage_params.py,sha256=9pIC03UG1gStMjuSTIp2FFgFqmBWTFvIgYcwEcef7P0,298
386
+ structify/types/user_usage_response.py,sha256=EDuJrPsWkTQOMImx7EARAzL_lO23AeW_-rRWXGAArJ0,263
387
+ structify/types/wiki_connector_reference.py,sha256=jktQImwtOU3P7f3zEhy0PnVFeU6lWwrBdnmr7nPSSDo,1222
388
+ structify/types/wiki_create_params.py,sha256=hXUfnnBb2cVnTOQ_KnplqwYq9cHx-u-oSSSpewnQyEQ,371
389
+ structify/types/wiki_list_response.py,sha256=IbrCZ_-Ma41RXoXe7e1I_JcKLBJGPzDs7CBTAZ3yBpg,275
390
+ structify/types/wiki_page_with_references.py,sha256=xTHqixI1_kVnXPZ1i5QFoqS_8e7glSsDi4uBsILrHRc,343
391
+ structify/types/wiki_update_params.py,sha256=S7dLzmJ1rVk0OSl1T7_zFE-y_OmqtDQNR2KPeBu9r5o,384
392
+ structify/types/workflow_dag.py,sha256=sOFbdU7DoFFcCbttwSbkoGZO17PhZsE_k_E70HFMmRE,711
393
+ structify/types/workflow_node_execution_status.py,sha256=YXJLd-P4SGdu_IsJjyO44IRYoO4Bm0zEIjUhCSy_HFY,316
394
+ structify/types/workflow_node_log.py,sha256=I3VRmr9hE3yYLbBZ9zJ1JnF_JPi153gzuZeDhDwkvRI,311
395
+ structify/types/workflow_run_params.py,sha256=eYW64PomqPjLbAAuE7NpChEAFZBAh6rAClpSCYS9NGs,328
396
+ structify/types/workflow_schedule_create_params.py,sha256=2OZKy4ByS6LvsI99JiqqDMvlwlRI5pYoavevIzaEsgE,401
397
+ structify/types/workflow_schedule_get_all_response.py,sha256=uUrte1Rh2l7-zuv2zaqatQ9YePB-bBBGqAJgM_wn2PQ,327
398
+ structify/types/workflow_schedule_get_sessions_params.py,sha256=ukfQvSOzQyCQXvMu4Lwpy_MzpZ33V-6BsO9Z6z0KEzM,311
399
+ structify/types/workflow_schedule_info.py,sha256=UW3ft6gAIwu_Off36-8TBABpltmCD-VjFnvQJRcQ7Gk,421
400
+ structify/types/workflow_schedule_pause_params.py,sha256=BvVMvxYjjIAsMDWWPnO2Ea0WyeSuhgU7pMMjVTq5Nzc,304
401
+ structify/types/workflow_schedule_update_params.py,sha256=Yuv_g631os89OlBPRyNvdh10iX8qfmEiSyqtzjo_vpA,419
402
+ structify/types/workflow_session.py,sha256=TowRK1sUm0sFlN2DTV6wAnFkFFl3U70svD8V2JnCdHA,622
403
+ structify/types/workflow_session_edge.py,sha256=GDlkWnOwnArC80Q1e04FfBkREOvh5HSs7Ij4K2rNR1Q,334
404
+ structify/types/workflow_session_node.py,sha256=dSC6uG4Rhf7vo5hXVsuOfPBAjPj26bQNEy_FGUKAqkE,1159
405
+ structify/types/workflow_stop_params.py,sha256=DLTGDSENmcdNQoV_LnsL0lvf3i3NtupkpiBGBpZakUs,298
406
+ structify/types/admin/__init__.py,sha256=sI2YUoXg3jsKmOp7cu3j_z2PoGhwQ5x7aTf822d192k,3540
407
+ structify/types/admin/admin_dataset_return.py,sha256=hRSCIBTiaCb1O1lcxsKyxnzGiYuIUEvnMxXkNbyj4_U,495
408
+ structify/types/admin/admin_delete_jobs_response.py,sha256=c3IO7bCqAoEN9PHYM88gO0JT0e6hCaHyIBtxC84Tw38,225
409
+ structify/types/admin/admin_list_jobs_response.py,sha256=27IoyuBSaBJPnSSyiZt3q5dHfeyBzrGtnq7nGvJcapM,4867
410
+ structify/types/admin/admin_sandbox.py,sha256=Wn1TwugdP-eF2usCaTivYxwSB5OXI6gfXGg8XKROstk,761
411
+ structify/types/admin/admin_teams_list_response.py,sha256=FDrXxx3dQKuHuLfByYzaS5EzZYkZAtyJH7E7t6UoUX4,1167
412
+ structify/types/admin/cancel_subscription_response.py,sha256=ph43hCKHtpjp2eSV9X9eitJA-mpnrRdjwe8KxPLJdKY,246
413
+ structify/types/admin/chat_template_create_params.py,sha256=GCP3Uhb1_wPfaC4iFkQF2oTualQhEUAajblKymgsQuc,459
414
+ structify/types/admin/chat_template_list_params.py,sha256=reCVbp32J8xxQodoRZOUYdgMJAb7JV90gjQ-q6-bv80,320
415
+ structify/types/admin/chat_template_list_response.py,sha256=PWierLwWeuthLC8cKaffmJAt7gCTNedvtjfwqF5wLt8,291
416
+ structify/types/admin/chat_template_update_params.py,sha256=1MnZNe4q6a_dtodbR9d8G86xKZQzew-xFxDkW2by5Rs,472
417
+ structify/types/admin/create_subscription_response.py,sha256=JFm1lbs87TDnqLoI-7wNd058BJt6GYTUV5UXojldM_w,275
418
+ structify/types/admin/dataset_get_by_id_params.py,sha256=upS3EraM1yOXntE91YlE0H5NMfMRT-Ne9QBTZNORYJs,325
419
+ structify/types/admin/expire_grants_response.py,sha256=qdsKTN4Lbg805rSy4QUEYUGjMfV8ptjO-97IfHliYLU,238
420
+ structify/types/admin/extend_trial_response.py,sha256=LPbnuf_N2qVZqivP0_Kmyiw0UfafOZhfhzfGp_gg88s,292
421
+ structify/types/admin/functional_test.py,sha256=J2QObf3kqpLrbP7ReVs7gpO59bW9E_dJD_EqKzyspYQ,476
422
+ structify/types/admin/functional_test_create_params.py,sha256=ELnVWaey20qHyY_DcidryZoZ4GkT3K3YsxeDvifUXpM,401
423
+ structify/types/admin/functional_test_get_results_params.py,sha256=R8iea2nP64Q9fY5XkHWAtd0-4TAvgU0wy6GDtu6B1Ec,371
424
+ structify/types/admin/functional_test_link_chat_params.py,sha256=bmN9m6sRvyACGWSQqA7w5mRIWNUCUVevYb4NQxDP-SM,451
425
+ structify/types/admin/functional_test_list_response.py,sha256=6qipTXk-vsxk0F_CM7WGteoyy1kOXrBAV5O7Tad5fNc,690
426
+ structify/types/admin/functional_test_results_response.py,sha256=-_TgvKVtXc-kWm0GQmVqhfI3T4Lr-f6Cbz6owUj55ik,483
427
+ structify/types/admin/functional_test_system_prompt_response.py,sha256=QS0m9TELNTFsGQ5yK7GUEtod6iSVSJE3V79zXmjbBaQ,230
428
+ structify/types/admin/functional_test_update_results_params.py,sha256=zsFkQ7RFEeBenhWEM9QbD_uyWNnLkBg8ev6Q4nI4W4s,461
429
+ structify/types/admin/grant_credits_response.py,sha256=kgtnr3Y2mdz9O1Tmt7i4P6C2ot-RKlv6KF5OkSV6y6I,250
430
+ structify/types/admin/impersonate_response.py,sha256=uzibn7LuA8rg_s7A0XGDEugUoAyZOrgUcrkfhr1-4wM,339
431
+ structify/types/admin/job_delete_params.py,sha256=0H1qiG3BErDiKaB8bY07Ww592hmMuhfaFCYzkOuOeH8,334
432
+ structify/types/admin/job_list_params.py,sha256=Da686Fogop9_c4trN4Mw2QcO2i4YZCRvVtWBZmnaRM4,1045
433
+ structify/types/admin/sandbox_list_params.py,sha256=NBkXSAi2R7T23yFrb59NsaW1erJsXN0E5kQt1UnjnpU,327
434
+ structify/types/admin/sandbox_type.py,sha256=Z2Jar8cpCboEVMwa4cQ-nUYMSWeSS2qTIRLcmchvAwY,214
435
+ structify/types/admin/team_cancel_subscription_params.py,sha256=WzuEjAfJrk8yAzudK-CpV1ibi6iHo3OKjmV4I2Y-UC0,306
436
+ structify/types/admin/team_create_subscription_params.py,sha256=Ye6y5d_NaaQer0w_jjnWCXGHBH23j3Z_UhPXdB7czwA,692
437
+ structify/types/admin/team_expire_grants_params.py,sha256=eMwJofkQOXYFI0JVB3e5BucO9WzVvJ34aZSg8qo6yQA,326
438
+ structify/types/admin/team_extend_trial_params.py,sha256=5L9yWN1Flv1Lj3ca2FdM7GUsScOCfxqeQxT885mdLWo,489
439
+ structify/types/admin/team_grant_credits_params.py,sha256=vB0Dg0uyQzOBqxhyfZomES5Tg6VhwubDQzzpS_q7KlU,669
440
+ structify/types/admin/team_list_params.py,sha256=DBxnLA0uqk8yMDWoOG5r4KvNt_WFaUn3uquHWWanNd8,321
441
+ structify/types/admin/user.py,sha256=gkLzB-SM28EqnxEnZu5_ZT2m6OAEGKTDWUnY78nQvgI,1899
442
+ structify/types/admin/user_create_params.py,sha256=DccxdhcwUYE8PWucCV_MVXbgde_xt6hqMYLDtotYV4k,907
443
+ structify/types/admin/user_get_stats_params.py,sha256=kufnCCfCpZyQ3WJOSXpxUQiNcBH1Vec2vbA5NscDNyY,693
444
+ structify/types/admin/user_get_stats_response.py,sha256=ZhBaBULe4rZXhV_YbVO8Gb_TBIuVVUhtgm-yB4Xi0kQ,432
445
+ structify/types/admin/user_impersonate_params.py,sha256=Imu62pAeXBh0oR4gHXO8qtyWWKfftDhjEOoFdKGPVF8,298
446
+ structify/types/admin/user_list_response.py,sha256=8JyRDagOio5wGNIBzDlbjI6dTUIgZ-jsdOH0QrPeSoI,612
447
+ structify/types/connector_catalog/__init__.py,sha256=vqrZpYxuoNlVb5A3s8NdFuhOSIQPGhefEk_DSys3-ao,2341
448
+ structify/types/connector_catalog/admin_batch_create_credential_fields_params.py,sha256=EKz5Cxz2MSyvXGEZ9LUIZcX_SjxPND-2a2in3pMxJx8,479
449
+ structify/types/connector_catalog/admin_batch_create_credential_fields_response.py,sha256=Cd4rUQnVS_B5MdeblUh7VFD2eTSVhZkiDdSxaUwk3no,360
450
+ structify/types/connector_catalog/admin_batch_create_scopes_params.py,sha256=Vr2xXj23HwsRYJigXW8eCWmyyGgvOoC4lH9VmAxUkKo,428
451
+ structify/types/connector_catalog/admin_create_auth_method_params.py,sha256=acVLYKqUMrFq92J3xyjH3H1C3OeKVDhHKfmYtwoHqYQ,546
452
+ structify/types/connector_catalog/admin_create_catalog_params.py,sha256=4eL2PXsBgcWo-uIHUbvpebvCvcda_2G27LKCnG-LFm0,484
453
+ structify/types/connector_catalog/admin_create_credential_field_params.py,sha256=0jA0RJDf0QhUJIXjHbDSBBUf4p7zUaSPbPJutdVOCr8,585
454
+ structify/types/connector_catalog/admin_create_scope_params.py,sha256=vxCqrUYiLTECV4FQi7NSwL6B_YqeRZV2USafYq-4Xys,418
455
+ structify/types/connector_catalog/admin_list_nango_pending_response.py,sha256=YUdYqSMbb6uAJYOU8bytN18PplFF9Heq6rQdiiXijn4,334
456
+ structify/types/connector_catalog/admin_list_scopes_params.py,sha256=xAYi7fI4jHb_5F5YzCgPajncXi2DFRTaRd9797jDa5k,309
457
+ structify/types/connector_catalog/admin_update_auth_method_params.py,sha256=zD4iWi4no5FeWQXZhtKWO8SwQDha6m5pR5qdTJIvIVA,380
458
+ structify/types/connector_catalog/admin_update_catalog_params.py,sha256=BNrsrsDaAaAzo7bfDAAXEr0RxtNE-oWjEsYhLP06dac,459
459
+ structify/types/connector_catalog/admin_update_credential_field_params.py,sha256=fHW3wH7zAIMtgWGyIZ3q3iY-2wRNcM_1QvpkL7UgicA,540
460
+ structify/types/connector_catalog/admin_update_scope_params.py,sha256=5K8th2_E9OV51YPWNbeE7kDx8fOMjCTe9PyoGrDNcGY,421
461
+ structify/types/connector_catalog/admin_upload_logo_params.py,sha256=noJ8eEjkqhaOeBfXFFV4cAk3AeRo6hhAWuMEnOLIVOw,328
462
+ structify/types/connector_catalog/batch_create_scopes_response.py,sha256=56e_Rf12IPn8xBdj6NDWfNK35AWobiOIa4HIR6NQf74,341
463
+ structify/types/connector_catalog/connector_auth_method_scope.py,sha256=nLzMTIB0HtSTz3tGf9yKLsQo8Oefzc7wWWDgeI8uan4,432
464
+ structify/types/connector_catalog/connector_catalog.py,sha256=dvTaGD6_erznXmPh_aU_AnHIyypIJtZyiebIY4cMfOc,460
465
+ structify/types/connector_catalog/create_credential_field_request_param.py,sha256=N2lje9NEXshbYWGokr8tQwA1VlFGAVlnRLRLK4YTj5w,587
466
+ structify/types/connector_catalog/create_scope_request_param.py,sha256=3IzrsQIauPpf8ly9YoED2Yr3GT7fFiQ7NuNUtMCDik8,420
467
+ structify/types/connector_catalog/list_scopes_response.py,sha256=Z_hk83S5mRooMOG4q_NYeRv7aiDRPm4BbjQ3WosBzoQ,327
468
+ structify/types/connector_catalog/pending_nango_integration.py,sha256=Wk1xWjBcgY5OI7drEFjwQKTI24C9heDiAr-4X_aC8cA,347
469
+ structify/types/connector_catalog/upload_logo_response.py,sha256=h4cxtInQIybs2tJ40s2rnFfqgFFwIHfmK3IKCXt8LMM,207
470
+ structify/types/connectors/__init__.py,sha256=6IhJjfyNSzS2llIQ3NpE1s-H0fsvn_MFNNzKFExpN0c,254
471
+ structify/types/connectors/snippet.py,sha256=98tYz2qIe7SjZaqF6NIwDx9TUhrzoHXSu3yLzFM4SsE,360
472
+ structify/types/connectors/type_snippet_upsert_params.py,sha256=bT3M3H5HQkby3AbYjsdf7S0gjFurR2FAturAvLoQL6o,320
473
+ structify/types/datasets/__init__.py,sha256=MsnbIOPCLOgf96k-sg0-gDr2h4MHxjZUkJriKmJyjBE,828
474
+ structify/types/datasets/evaluate_delete_params.py,sha256=mzh6PlMEI5oLNve5pznoPaPsrXbIKrNZMsRaTVBzd-Q,285
475
+ structify/types/datasets/evaluate_get_params.py,sha256=HlApbCAgbByagt2eD7Kc6oNLYdccwTogs3NvVD_3lO0,279
476
+ structify/types/datasets/evaluate_get_response.py,sha256=PHVL8cfg39jGSurJQkfGPSwtFFtMd1kaqj_BJf2lSkE,18189
477
+ structify/types/datasets/evaluate_list_params.py,sha256=W-0v-GjSF06FnXKEvUEg3B0FWps_GkWZwcgNogLnQBA,311
478
+ structify/types/datasets/evaluate_list_response.py,sha256=WAlZ1SzdpDdCcn65Ui6utGJeK3VegfTKpDmGxulLrQs,520
479
+ structify/types/datasets/evaluate_run_params.py,sha256=TaRZshYXSwDOW9-5CiVDOvIfW56RL03qe6jcJkLPyEU,438
480
+ structify/types/datasets/evaluate_run_response.py,sha256=yKbOw5eR10RmYmo3nttEHIZf3WYuT0nbuyukqpcEHCY,200
481
+ structify/types/datasets/evaluate_status_params.py,sha256=YsJ52UIyG648DSlNZKIlONYdhu1RjMtRNt2rDZPUUqI,285
482
+ structify/types/datasets/evaluate_status_response.py,sha256=oPoTnZZ_itkkgBJdcc852WlfqXZGF-d6d3lNUWdcLCY,294
483
+ structify/types/user/__init__.py,sha256=Wm0iaQEm2UunoemFckys6sMMngehIfKrAKvhGR4iGfg,888
484
+ structify/types/user/api_key_create_params.py,sha256=eRtqGHI1Y9YTjn4RBFbExc_Zm-g95PO56xZPloz4iw0,506
485
+ structify/types/user/api_key_info.py,sha256=v04Okz1i0wVWgJgBoJs7nUb3ZqmrgkKkDSYYeAEHeAk,461
486
+ structify/types/user/create_api_key_response.py,sha256=_VL4Bsg67aSd1Bq6rDMDdFTm_FSbOEseDUKmfDQc1e4,276
487
+ structify/types/user/create_session_response.py,sha256=lhMUu4DOQ9KDrd-T5OG0sTkpAMGCGRmPzewXMoB0c4M,212
488
+ structify/types/user/list_api_keys_response.py,sha256=JT1b0Uv9NCBIb45XLXUNCWjLJfQi69qRq7sDwfFgeMM,288
489
+ structify/types/user/stripe_create_portal_session_params.py,sha256=5AYRC8z_SlKmdYHCMtmwVYQKoD6cmjSEOG2MJp7PvdA,343
490
+ structify/types/user/stripe_create_session_params.py,sha256=DFcNLNzEWeupkGQ9J5PafsuL_bIU9cLEIhAmFPsRlfo,387
491
+ structify/types/user/stripe_create_subscription_params.py,sha256=d8HfiC94gJbG-cC_WvBz6xYCvxKJO_EP2yyVmVvufrU,424
492
+ structify/types/user/subscription_plan.py,sha256=qKJMM-zPpYolYC1DlypOwPpxlyJBLkQqFK_0VpwktJs,222
493
+ structifyai-1.176.1.dist-info/METADATA,sha256=L1Yf5pVmxQu1EZ61CWbBE7IIQGc7IPgbFfu9mJyHtBc,16399
494
+ structifyai-1.176.1.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
495
+ structifyai-1.176.1.dist-info/licenses/LICENSE,sha256=9CwgrmGz3rZSTT-KqGc1gua-7g8B4ThTgMtUgPALh5c,11339
496
+ structifyai-1.176.1.dist-info/RECORD,,
@@ -186,7 +186,7 @@
186
186
  same "printed page" as the copyright notice for easier
187
187
  identification within third-party archives.
188
188
 
189
- Copyright 2025 Structify
189
+ Copyright 2026 Structify
190
190
 
191
191
  Licensed under the Apache License, Version 2.0 (the "License");
192
192
  you may not use this file except in compliance with the License.