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
@@ -1,35 +0,0 @@
1
- # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
-
3
- from typing import Optional
4
- from datetime import datetime
5
-
6
- from .._models import BaseModel
7
- from .team_role import TeamRole
8
-
9
- __all__ = ["UserTeam"]
10
-
11
-
12
- class UserTeam(BaseModel):
13
- id: str
14
-
15
- created_at: datetime
16
-
17
- pending: bool
18
-
19
- role: TeamRole
20
-
21
- team_id: str
22
-
23
- value: object
24
-
25
- invitation_expires_at: Optional[datetime] = None
26
-
27
- invitation_token: Optional[str] = None
28
-
29
- invited_at: Optional[datetime] = None
30
-
31
- invited_by_user_id: Optional[str] = None
32
-
33
- invitee_email: Optional[str] = None
34
-
35
- user_id: Optional[str] = None
@@ -1,10 +0,0 @@
1
- # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
-
3
- from typing import List
4
- from typing_extensions import TypeAlias
5
-
6
- from .workflow_schedule_info import WorkflowScheduleInfo
7
-
8
- __all__ = ["WorkflowScheduleGetResponse"]
9
-
10
- WorkflowScheduleGetResponse: TypeAlias = List[WorkflowScheduleInfo]
@@ -1,530 +0,0 @@
1
- structify/__init__.py,sha256=iTxRcLR7HWp1YeRMIYsfnXOaE6rQpTsJ0FXNHDHndu0,2730
2
- structify/_base_client.py,sha256=D7wznGXMOK7UDpkPokZPoQHGoB1AVAL9_UfHsQTYeSI,67050
3
- structify/_client.py,sha256=u7QZT7T0EJDlmB-NuO6hZLeWy9_cUpBt0z-2bLg8bEY,30776
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=3D65psj_C02Mw0K2zpBWrn1khmrvtEXgTTQ6P4r3tUY,31837
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=jiXZc016y2CH9qATyVOLNRCD37w32yXNkqb_LrcePrk,10161
13
- structify/_types.py,sha256=GQys7XeyCdY6X7zxkt9NqhNEiut5AGeZM2LLslg47sQ,7239
14
- structify/_version.py,sha256=vns31uxS8g5FkuMk_xSaH3pywa6YQuHXK8oNIzHJm0Y,163
15
- structify/pagination.py,sha256=RHGgJvgjF8Ye_N2HTVhog94u_IWwT7jw4M8fx2qlsKs,2377
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/resources/__init__.py,sha256=zwpnc93_FGTbRPWBg85HKdp3f_2Jk-xqM4mAzwDW3bk,11516
31
- structify/resources/chat.py,sha256=g7VB4hZHOVCB47VKLjCt3SNJeSjmDvHhDNLYQ0MSa28,81724
32
- structify/resources/code.py,sha256=6DrVsa3SHWz2b9BFJ5lOssni2u-fz4GLBz68-fj9ALE,11196
33
- structify/resources/connectors.py,sha256=0GZZNDwhHtLe5-Q8_68idaypYiRvu5tT2uwcvH3BqkE,54512
34
- structify/resources/documents.py,sha256=SthuZZhRDFPwSHRY0DwgFJylAYYVwSt0E1vY-JiCnH0,23250
35
- structify/resources/entities.py,sha256=Fz4yCEdsxs-62bjmkYZY9Ku_tzDe73Q4xfqv_XHGe_M,81990
36
- structify/resources/external.py,sha256=Gzj9THOzREhVC6oqyxpEuB7E3fLkVqa9qLzLXkklSaA,2506
37
- structify/resources/external_dataframe_proxy.py,sha256=DSn0YwWIembR__ZtDxVCJtyY3v4bXX6S5OTTw0mMGd0,11819
38
- structify/resources/jobs.py,sha256=iYjRg8ylf6JiS7VqUTmCKR03CEHX5tlsGlfgXSeCDdU,42131
39
- structify/resources/match.py,sha256=gDWEWnKwEoLbheQAMFltJCk2ysa_L9AuJMOaauM7c4Y,12248
40
- structify/resources/polars.py,sha256=WWGndJNSRjA0qM0sL5Kvu0jKe9giPEXtdd2USi6OoHM,54122
41
- structify/resources/projects.py,sha256=YDikBDB9D1EXyZ2GyRx4GlpQ83snw51YlNuU1sLHqho,14117
42
- structify/resources/public_sessions.py,sha256=_JmssE0MMjeGdxT0FWtrkcceSV4skeEkVGYeO2FkJes,9976
43
- structify/resources/report.py,sha256=COfwCGsg5_iDNMutpV9d0iD6JTKJuluG59lwmhFp0XU,17983
44
- structify/resources/sandbox.py,sha256=HY3MsrL9naAx04NhEaI8zkIxK16dJNUX4JfnVIkbUB0,16414
45
- structify/resources/scrape.py,sha256=N6sTooom7OBYeVRmapEsf80aE2hb2hHMZeyN1WzqmcI,12895
46
- structify/resources/server.py,sha256=39G3yhj3NYWgnLq0PdS86lwDvXK6MIWAIl7G0ZLMJro,4934
47
- structify/resources/sessions.py,sha256=0b3jUoR95M_RZiYmIqAqY6FGeztQr9eloi01GMeSLA0,62650
48
- structify/resources/slack.py,sha256=h4oKRynqzJEVI7nfSOPaNOWrF39d1eUBRPRIXVxC2H4,19088
49
- structify/resources/sources.py,sha256=K5jLPKu3LNH5vKL9V1NQlHaG8UI982H74enN_cjdf-0,13181
50
- structify/resources/structure.py,sha256=E6ngtFDChKDjubLaw8bgrv655fiTSjfAakJsVL26b-M,31342
51
- structify/resources/teams.py,sha256=zmuEmyXJkdzCB4_ulbOt4Hfi7PHBon0JRgg9y0qeD6U,51378
52
- structify/resources/whitelabel.py,sha256=Fu4iX_ztX72i7JUMWWTi-Pw-sEDk5L1aY6o1bhrEZ_4,9362
53
- structify/resources/workflow.py,sha256=D8gnt22usKoY9iA3HTNlbQyWTykNUXl2m3rFsPAKZZc,9273
54
- structify/resources/workflow_schedule.py,sha256=sDtm2Gc9mUPuM8BSFf5TqZPuZYBlT5_JgoJ9QH3Zd_k,29894
55
- structify/resources/admin/__init__.py,sha256=GXZW0lzCYKXv08suJN-SuUJY7ysMFrDHtxZK98CJn8E,4429
56
- structify/resources/admin/admin.py,sha256=kzqiCWflA3jf2CHMA_SNvJhnGWNTgTIAJRA1mrXvQBs,11716
57
- structify/resources/admin/dataset.py,sha256=1AEVHzMvgr96bbJjY3fcWRTDwq1zJAmMzYQB9kjSnL8,6096
58
- structify/resources/admin/functional_tests.py,sha256=ZdGnpHBSz1qEYf5oE5W8SjhvPQUtlP5plh6IvceYjbI,23977
59
- structify/resources/admin/human_llm.py,sha256=BDQ6yycvRF-qcQpDwqrUvyyW-rbnb1plg2NQKqcsQog,31364
60
- structify/resources/admin/jobs.py,sha256=XxVRChFB2IXebLBQwSdGHCKcp-IzMOF-B41bVoZuRSg,8934
61
- structify/resources/admin/next_action.py,sha256=ppHtlpbrDarMItwTj_Mhk2EH4IfzhJJbqbYeGyJ3xww,26053
62
- structify/resources/admin/teams.py,sha256=G422H7tu5RUoZ93ZybZvv-Rgn1Z7OaZ7Gua6GaBWIcc,22577
63
- structify/resources/admin/training_datasets.py,sha256=mKyptTGxaNFPjNIkermneglsCplUo2I_wAgOsE8XkIg,80969
64
- structify/resources/admin/users.py,sha256=8w5icqitpwXgH8ldeamOj5kPmv_6htqb4K5Gf9l83R0,25359
65
- structify/resources/datasets/__init__.py,sha256=bzXAcLzZcFHJgRUmvkRsO-koBIahXNo1DCKTBvOiS1Q,1054
66
- structify/resources/datasets/datasets.py,sha256=we2tQGkIJsp3W-nLwbQHw1VyNfPyVpGh4DywGIvr1tg,73616
67
- structify/resources/datasets/evaluate.py,sha256=P85O9kQ9o_PiQBPV9TMIXtOr2UlUDtVKUMOotJdGsrk,19934
68
- structify/resources/external/__init__.py,sha256=B2a3dHgYo2hCpooI2_AvuFFebuyrjMBHKD1SsoULoiY,1942
69
- structify/resources/external/external.py,sha256=X03MzB7TV5ED5T4DACYFYk95FJ9yAnM0UrXIojCo1ic,5881
70
- structify/resources/external/news.py,sha256=4oSjiRzXRy0yiqvZeyZxi-GrZ17r8q_fCVDx2pty61U,18085
71
- structify/resources/external/people.py,sha256=ujurAHWKtVWyd6JgnIWyAN_9h82CKaZh06TaV5PFOzc,40682
72
- structify/resources/external/search_api.py,sha256=OVjVU1VRjULkVj5QZ3z0t9LvVyfrO8YNFtlNEhSLBvE,58451
73
- structify/resources/user/__init__.py,sha256=SbSHteQFEHh_a3HIIgrlQJGSQUHvJ1HG8UstYN8-de0,976
74
- structify/resources/user/stripe.py,sha256=MazkGQ5VuNY7TxMPXxJULBVerMGmOXaEcXpfQsUYoNs,13574
75
- structify/resources/user/user.py,sha256=zq0yA_4B80UJzyobvb4CJHOVxWPanyjFOIlpCghrJkk,17659
76
- structify/types/__init__.py,sha256=5YcMcVC66SqnN3hpnnuB4eiLJnGhWf9X499pYFcf3No,25636
77
- structify/types/accept_invitation_response.py,sha256=hWIn0Sscg7U0uOqoZA5SG8ENZQuM0tsbgOlrJbcW37s,260
78
- structify/types/active_version_data.py,sha256=4R2RrmhAUyL-4SsVv-PzlM7ZSd6PvwmlMFHh5AA0szM,699
79
- structify/types/active_version_response.py,sha256=_AL-47UKdzS0fsk9_SVZDd1yPkUmaLW8vcL93EXwOPE,363
80
- structify/types/add_member_response.py,sha256=PgqcW641bOCGjPrcfVSLMyunnCyKF7mUjHbo1ODO_Fo,330
81
- structify/types/admin_grant_access_response.py,sha256=zhYSvar0coa9GGQ9LnwDALuKYbeP96L84W3LfiFNcLA,334
82
- structify/types/autofix_context.py,sha256=E4Dc7VjDiblbW8UBXBOz-iNjznAQiZ7tMs3J7sHGSI8,245
83
- structify/types/chat_add_collaborator_params.py,sha256=FyKIC2eOgSx0e-jeomFovoJs_eJStulK3zCZQtxl2M8,383
84
- structify/types/chat_add_git_commit_params.py,sha256=y4HmhC4jLX7GFatchxl__4ztkuQwhxc6NU0-j_YGZQo,352
85
- structify/types/chat_add_git_commit_response.py,sha256=Qt9D6UYHhUE5eswoFw2Xkw1ucRkVHhkfgr8PF5YWlc4,377
86
- structify/types/chat_copy_node_output_by_code_hash_params.py,sha256=gP4V2Y0_Rb4-kwoEceClJLgjVdWv7bgcI4qqQIvdNv8,356
87
- structify/types/chat_copy_node_output_by_code_hash_response.py,sha256=Cst1RK9jDrMAKEyzLIk5_-D6YUbO-AIVllYui2sy2aQ,272
88
- structify/types/chat_copy_params.py,sha256=tfA3jdduKDJeHiYjWWKdHifRMp1sCGyGQcYHFuMFdnE,425
89
- structify/types/chat_create_session_params.py,sha256=tlNjiJRQ3MK1wlLWCkJ8z318fnZ9ULuPJtbHAUv_w4g,1556
90
- structify/types/chat_delete_files_params.py,sha256=Rv24bWe1CK524xobl9-_APx5GG8KTqIwEtUgYIUlMXc,343
91
- structify/types/chat_delete_files_response.py,sha256=ZoFJjfZqn_rVuwiFhsuFigN_AQHh_DRkb5KRj7J_49g,225
92
- structify/types/chat_event.py,sha256=hbgFoeJzKYHXo8BoHwmF1X3kSBREGWSLjdWg6t0e-4I,7462
93
- structify/types/chat_get_git_commit_response.py,sha256=r_dmxVvv_NzfY7wk95TPwTDFPxJYK8ENT4TIuziXD1E,377
94
- structify/types/chat_get_partial_chats_response.py,sha256=LS4eF1-GW2N5mZSJVZUoMu9Q77Y7Fo6bIIUS3P7zwh4,290
95
- structify/types/chat_get_session_timeline_response.py,sha256=2B3TVRsP-3hxKEwckvmMpy0bi-ppMl_bLrXD-5bNngE,1067
96
- structify/types/chat_grant_admin_override_params.py,sha256=d2DdaEs_3r3oeqJ1od-9T3cUFOUz1xac7bTuA7OOg1M,451
97
- structify/types/chat_list_sessions_params.py,sha256=Ljqlsf0Er4W9I1REdJRCdh7-uqG5qdR3PO4P2tJXca0,527
98
- structify/types/chat_load_files_params.py,sha256=UQY8HgO1d6muve1cfQg59uru1OBDHLQWaxGUZ_nXLb4,348
99
- structify/types/chat_load_files_response.py,sha256=IlqugC7-cJAMg7SOMVBUuIyKqnEB_ZEoku0ZrmhYmaE,271
100
- structify/types/chat_prompt.py,sha256=JSQfoK8havCwnNUuGtfChshU55cmC7b8LiC8WbmudEw,7369
101
- structify/types/chat_prompt_param.py,sha256=495lT-UU6fR1XUyDbCDNGFpKWzG1br0UAvGSJD7iDFE,8556
102
- structify/types/chat_revert_to_commit_params.py,sha256=IsMgEQMolu3_zP3c0pKFob0rktE_wT6Mux4ce15QP2k,369
103
- structify/types/chat_revert_to_commit_response.py,sha256=77x6wwxucaFFE4VUB8I_0AD1yRYbngx6t8VvGmJZntM,379
104
- structify/types/chat_session.py,sha256=GIA0j2Y1-puVvGP9rsL6O8r61ArTc3S179QtlS0LG9Q,726
105
- structify/types/chat_session_role.py,sha256=_c5euQM-zQxtsO5iM1aBskoqObTXOtxbaIc9CcaBCU8,234
106
- structify/types/chat_session_with_messages.py,sha256=oHEPFOCIOib8Hdx-DcuoKu2oZS4F1eSHvRw71HgXs0o,1108
107
- structify/types/chat_update_session_favorite_params.py,sha256=UNi0YujSs1gCSry2jK6gNyvjtSBS04XbAYZrkCZo9_k,317
108
- structify/types/chat_update_session_params.py,sha256=a_SZ0GJ-i9pvmxtf1XpkbsjjuHOslc0Kok97ANTouAs,342
109
- structify/types/chat_update_visibility_params.py,sha256=uWtgq4zb_TSO4hIsY0FmdWaljB_20wpjl6IQhRMibTg,361
110
- structify/types/chat_visibility.py,sha256=GpTgjpcupE1z9Iul8fxOrlMoP_2wjQ_7Z0rJ2y9qO5Q,244
111
- structify/types/code_generate_code_params.py,sha256=jyQv4B6aVqxdwSGHY-cGO5kYTxmIJ41yAMS_B6uPxEQ,1860
112
- structify/types/code_interrupt_generation_params.py,sha256=1Y9VOgObIJFyYgAEkUuWZRKKV5-4HcoRA6p5iSEnF3s,410
113
- structify/types/connector.py,sha256=qcqJiNnkWbJ1HKbUIVWc3cAKLCU6yWG3HdNRt_zNFWg,1185
114
- structify/types/connector_approve_version_params.py,sha256=tTEDxPACGU9pXlUrAIaZTCUQtIiAyDnkFnTgPlf9nC8,311
115
- structify/types/connector_column_descriptor.py,sha256=cuOHNX_pwOO6kAm1S6z2hwMBqtpKAKDkPAGUMMDjIJY,521
116
- structify/types/connector_create_params.py,sha256=XFIDjjnb6jMjI2EBlmHc1xFR7AEEYrGWso60zp4l6SE,1140
117
- structify/types/connector_create_secret_params.py,sha256=RFcpj-8nYr1JQxnRWyNBjcuvsziSXRR-Qacwd_h-M_Y,341
118
- structify/types/connector_explorer_chat.py,sha256=KrFhsDFlZY3tdpcQhoj624668e0468KmJsVJ5EAGiTs,2332
119
- structify/types/connector_get_explorer_chat_params.py,sha256=SgpSeRtQdByx_ouu5yjXrRGbptnrO8zlS6FDFohec6I,349
120
- structify/types/connector_get_response.py,sha256=0VVKjzEfiOeJiQjLLsC95bYcjd8UQ8OxzkGxZFGVIBI,503
121
- structify/types/connector_list_params.py,sha256=pKfgRrVwLMm40oYNZR2tvFP6ypDfqbiC6HyccbbGnIY,362
122
- structify/types/connector_relational_database_descriptor.py,sha256=MXY528LetxKvDp2_sGe95jlBAfCduV8ZeV6jUn5LJTI,404
123
- structify/types/connector_table_descriptor.py,sha256=JcHKk_-feNJBf19n6eXcMKxOjGmKai-Nqm6c9hZm1jo,650
124
- structify/types/connector_update_params.py,sha256=hk9gqHZ41wjmdy-RM577EQGAUqziVQWUZrM-h4fY5iA,918
125
- structify/types/connector_with_secrets.py,sha256=kHkrTfa1y7Wntw7omOODu-NdwT-NHIwERFF4iNiqIPg,493
126
- structify/types/create_chat_session_response.py,sha256=E8YXSiTOBnldMVauqK56zRpdgW56q9T3fHBk3HDt5o4,307
127
- structify/types/create_match_jobs_response.py,sha256=2p2eTdkfSakQuqa3mVwUKd-VLBenTSf2a8dMbIHzQIo,339
128
- structify/types/create_team_response.py,sha256=mx1zK2SVOkJhbMGn84U-ZLopAOJc5s7cEQIDD4Sxd_g,230
129
- structify/types/credits_usage_response.py,sha256=O9ts7pDvcLYq8ROfrjdoNoKjITGdpYECNTOGIMxXgsQ,395
130
- structify/types/credits_usage_timeseries_point.py,sha256=YYlcuWQtsuYspxEy3Upxa4p81ERaP0KRWpVpIJxdsQ8,320
131
- structify/types/dashboard_component.py,sha256=ZNSvKp3TD8syR-VlumQbJseqVWIxrYD1tM-WEwxwbts,327
132
- structify/types/dashboard_component_param.py,sha256=-L38A7W88C35urYE7pzNh3xbKzDi5MlqekhaAI6b310,409
133
- structify/types/dashboard_layout.py,sha256=YLgwm4Knbeux1rUuuXv0habRnFN11zkD_IpQiLbM59I,369
134
- structify/types/dashboard_layout_param.py,sha256=waC-lwjTlJnjJdyNc2spToUv69zg0cYmoTZriP7m7ek,483
135
- structify/types/dataset_add_property_params.py,sha256=jKruESCLtFzH0uer5jh-uCqv1FFov6MOaa5u-W1rQYc,641
136
- structify/types/dataset_count_missing_embeddings_params.py,sha256=w3ZUrh8B9QKEKC87ZKIH6L01SjtMHZ-BIFh6JvI8EcQ,317
137
- structify/types/dataset_count_missing_embeddings_response.py,sha256=AHTgmBzk99XUHOMcxCoOjVgYvNexy5uLTDraWZnTPBY,245
138
- structify/types/dataset_create_params.py,sha256=qWQGtd_s6ZUKTPrqTCYG0UAJ6TIRtHsolmYLMJqEv9s,1252
139
- structify/types/dataset_create_response.py,sha256=Y3rUTY8eT2orYT3lazuKH2Vvbnda3JbUlFNoieHX_LE,204
140
- structify/types/dataset_delete_params.py,sha256=6xt6fsq67CgNr0wqACC1Q06jO54TVqcZ34Bbc-uxjbA,319
141
- structify/types/dataset_descriptor.py,sha256=k29lMOZQ2UBcHzGLzBzHzW2rDFpNbrorDQSXnliuqfQ,984
142
- structify/types/dataset_descriptor_param.py,sha256=37QWxcx4znMjka5DAvGugiycC9fWwGf-pKEoLFx0VqU,1202
143
- structify/types/dataset_enrichment_progress_params.py,sha256=W_bsPJlRSwJef2QMEdqHAxwMa2sSpMIBcIaEpVALPww,355
144
- structify/types/dataset_enrichment_progress_response.py,sha256=9ry4cjxXE5rQOxe36Fec6rdD0Eh8jtAdbhgmYHyyRQ4,309
145
- structify/types/dataset_export_to_csv_params.py,sha256=USAT_824nYmBsIRhbh1TlfykY-poxwCUhVY48RpLs14,323
146
- structify/types/dataset_export_to_excel_params.py,sha256=xdrrYxv18vP8-hM9lk0BHCL0bSFxqKlVJ2slTV2Knck,302
147
- structify/types/dataset_get_params.py,sha256=TleWPRADZ9iZe4CASIikXayEZdbSePZdX3-7LGXmAzU,319
148
- structify/types/dataset_get_response.py,sha256=sfPfiKw-D_1_FM3ZV__LOU_0p_Pkl8Zb5FRZfc36vjg,294
149
- structify/types/dataset_list_response.py,sha256=iEjq5HvXNUKRkrDtemQEOESs4Wa-xf_yN3IZNG-gRJk,456
150
- structify/types/dataset_match_params.py,sha256=mTJj44G3likTrZeqTmweS4AXfyHKcOONPPL9x8uQg68,692
151
- structify/types/dataset_match_response.py,sha256=O7S_p9AEiQ1LVIlSZD_CQXnAwy5u5pxyns3YKBsZ7Is,399
152
- structify/types/dataset_remove_property_params.py,sha256=-3hnkEQVsr7o8N1ohI-u7uS230zXTO7ZLWPshhAjFiM,374
153
- structify/types/dataset_reorder_properties_params.py,sha256=6z4w5hnZO47KqSFvVhZOGZh8NUxebVTXvyhHFC17xzE,434
154
- structify/types/dataset_set_primary_column_params.py,sha256=NH32yxc01WQBNb4-n_h2cjYkbBfK9prUa_nw7v_g02g,378
155
- structify/types/dataset_update_property_params.py,sha256=3YOQAApUvH8SpKzOQ9Qp_JSweXyg2I_cokdTdc8-ujw,651
156
- structify/types/dataset_update_relationship_params.py,sha256=vSCxeVJM03JM4DlXmKpnImtE58_nUI6eyKXVZetn8CQ,564
157
- structify/types/dataset_view_relationships_params.py,sha256=Pptxz8SRA6-qFriarOLylrvIdbQyV7rqO_MVGvP4FjA,1001
158
- structify/types/dataset_view_relationships_response.py,sha256=IC5Ot90K_F7wSPBSz7rfIkw6nF8paVz1tIL-C37IiUw,1866
159
- structify/types/dataset_view_table_params.py,sha256=vD_qKTv13_mbBP4zIorOSO--RL2qp5pQRxXPdwPBuio,985
160
- structify/types/dataset_view_table_response.py,sha256=DsEctnRL0w2pzzDFHU18bIeBhD5bIalXVoLRe3M9Hro,1816
161
- structify/types/dataset_view_tables_with_relationships_params.py,sha256=0qCpvobbsnHIij0Z4nAJfDPl_bf8zGoER-3Cmve7Yxw,1021
162
- structify/types/dataset_view_tables_with_relationships_response.py,sha256=4ICbKqXwWfYrq7N-ZvlFY4kZCwVdo9k65NMaIL4KWZA,5670
163
- structify/types/delete_chat_session_response.py,sha256=JbG9cSxfmpsWxF2Zh81BbHO0nRDo47DrlXaRUU0i6Go,242
164
- structify/types/delete_project_response.py,sha256=58f-dGQrLRJROkKAafEjy8FHOt7sMef0rc23-H5h8G0,216
165
- structify/types/delete_source_entity_response.py,sha256=edPJhRTp-UKXO_bMcamzIKeB8UZE9X3K7xUyVfGYnH8,336
166
- structify/types/delete_source_relationship_response.py,sha256=ic2_yxlW5wMnXwYlvSm2Y5_I-LlpyMoIRKxgjdtLPxM,348
167
- structify/types/delete_team_response.py,sha256=hablMsxcOvYdsSPiFOyZE1QozsCsHTd2QR5fwT8cXxc,210
168
- structify/types/document_delete_params.py,sha256=sBG_6MCTh352qlCIgjxfjGKYtmhY5vxo7GuSdXVyoqk,333
169
- structify/types/document_download_params.py,sha256=Dvazsql4b7fllAHYRdqJh4YutkXcUNDR7IdtIFoz7gs,337
170
- structify/types/document_download_response.py,sha256=SRovc4ZE5jlQHw9VbNQvs6wMhlGH7n4ZTSu1LaQdsRQ,224
171
- structify/types/document_list_params.py,sha256=yWjrKgvagwfbaKrIBMiPS1iVEi5W_sHyxALVQ2n_zwQ,335
172
- structify/types/document_list_response.py,sha256=7CLvOFhhcwTSWZpR_SrG7LjHYkwIWY8VK_QDXCncgVg,670
173
- structify/types/document_structure_params.py,sha256=dYoQfA3PKzGIXaDvl2tyP-zO-YPOVX52_fHchY1E_mM,634
174
- structify/types/document_structure_response.py,sha256=vkY1CPmXX9GAQ0PJ0oM4H7L_3x0Tr-pV468wADerhyY,250
175
- structify/types/document_upload_params.py,sha256=ZjxnbCS5G4YPntWS_2dAX1sV0o8r0RFJpS8CvzdM7uA,511
176
- structify/types/entity.py,sha256=gKUPLJgVNS5Xse4scEstUhMj8lgaeCEaBCitZkWIjJc,279
177
- structify/types/entity_add_batch_params.py,sha256=aKSxkxwuLWEO6eea44uOuCSGwnm53nqmVWUb_1LPjTQ,1202
178
- structify/types/entity_add_batch_response.py,sha256=IlmHotk4v6KXNlLVoQiqb0bQ2ywvRtrQg2V1RflVFTM,236
179
- structify/types/entity_add_params.py,sha256=c_uY5xvBfBWAsl0n_AQ5J_s7v6cBHwwvxaRUvt1NYhs,1384
180
- structify/types/entity_add_relationship_params.py,sha256=nsCwYIrq50nnpsFXSISHn5gNHD2g3JURFlknC-UBvZU,479
181
- structify/types/entity_add_relationship_response.py,sha256=gRwWEIWZ4eVexi0qp7k74JL-bnP2jRVLuhoat9tNoM4,1860
182
- structify/types/entity_add_response.py,sha256=iFMF6EJkaiVjl_TJZT8IZJ-L8NL8DSvqjNseCU05-MU,226
183
- structify/types/entity_agent_merge_params.py,sha256=xMZf3JfEYFOOBOkUaj4YsTuPfiDwg6dNPN8BKxdeDeA,427
184
- structify/types/entity_agent_merge_response.py,sha256=Gaf9cf-knBpOAwxiQN5xKB84fbJJhJHLgn67rL2-pZ0,333
185
- structify/types/entity_delete_params.py,sha256=RJjQdwELdGA3qYDDw_khu44xHQkSt5pXej0AF5K_HLM,316
186
- structify/types/entity_delete_relationship_params.py,sha256=ZVikfE-5bBMWhyJm7F9bbbHBaLZYLU-1S6Deway9Fd4,346
187
- structify/types/entity_delete_response.py,sha256=uhf2oPAiGrY8z0VU-DeebiNtXg_HnCvWXg-lPGv9A9E,232
188
- structify/types/entity_derive_all_params.py,sha256=PQvHIsNQQasoyFFXZCKXrX5B9MppdzIizxGWtZp4VUM,449
189
- structify/types/entity_derive_all_response.py,sha256=7UPQyPRFWYzW2qQA9Td5SPL8almbOPz2dguHugoVsCA,238
190
- structify/types/entity_derive_params.py,sha256=F0O8JrsPotxGAiPkRiC2nGQ-S7nJzyMqHp5IjaN9Oeo,442
191
- structify/types/entity_derive_response.py,sha256=h_ggtjm5nnn9iuKyWj_hEcyE4HFaNnGU-dSNdDdUeDc,202
192
- structify/types/entity_get_local_subgraph_params.py,sha256=-QASlWtkAazTFYFPaAfpNqoVCpdRm4J4twRu8C_ubB4,318
193
- structify/types/entity_get_local_subgraph_response.py,sha256=H1-XcuesfWxLB5zewk68opJjvryhXqWRKObpG33KybM,3854
194
- structify/types/entity_get_merges_params.py,sha256=3WYbty-SCO3Edbcp7YEeg3t78NHc_g-bA92OUlMESvk,294
195
- structify/types/entity_get_merges_response.py,sha256=n8RsFBF9YBapsc4gsAXFDJGeqcvIvhvln1Nvk2tUjKA,285
196
- structify/types/entity_get_params.py,sha256=FObPTp0-gFUr0J9nc4RiFLJmAyHvFroP_kUZUmWgvgg,297
197
- structify/types/entity_get_response.py,sha256=JbXw8y2T51V08VuQh_TkA64FDIGliRxr5RjJP8d1XR8,1802
198
- structify/types/entity_get_source_entities_params.py,sha256=H60GR9GMhnhzAuZyVn8RTgPxbsCUAsWDgsKG_4eC7jQ,303
199
- structify/types/entity_get_source_entities_response.py,sha256=jZlFEo9T9K_n7Bt1J_gdbP7zBkD_EkO9VGnzK5zJa9U,3420
200
- structify/types/entity_list_jobs_params.py,sha256=XTZBm0iGRKzlfhGd2En3q-EpYnUSR-tbVrnHE4nORqg,285
201
- structify/types/entity_list_jobs_response.py,sha256=uofppk4UpXvat0WtvPlm8j8wH-jHYIROYU2y48_qR58,1331
202
- structify/types/entity_match.py,sha256=l-sEoEj_M0GBGb69LbpXQ98aKQSPO-d8z9DRrwq_Pr0,4143
203
- structify/types/entity_merge_params.py,sha256=4mONiINgUs7ahebVBJeI_mkwblERB5ZJyZ5uz7kk6Hs,337
204
- structify/types/entity_merge_response.py,sha256=g8J8953rARoa1TRsIKI_4rdGPtVylAme5XSBS-YTvTI,352
205
- structify/types/entity_param.py,sha256=gwvzlRKQ5eSFRBhhgbNzaLYIx96g1nCYTkG4z1cFFVU,385
206
- structify/types/entity_search_params.py,sha256=mFU9PpyD3eBz36541rccFusf1Q95TEIMFL9pc2oBmeg,343
207
- structify/types/entity_search_response.py,sha256=cJDHjslC-bW1-VZIOX3sHldoBBaxGm-9E7VRimnzCco,2349
208
- structify/types/entity_summarize_params.py,sha256=WcsZaPnLwLX2CnZ59pAs4GEwZmrRk3UIf28wTrKwTZo,575
209
- structify/types/entity_summarize_response.py,sha256=ahOQHRhABNCzCiBC_yCgNtWKblRf-DnE49BOEDpqdtM,2418
210
- structify/types/entity_trigger_merge_params.py,sha256=xzcBJfuJv6npixZGMlJq7zQ2eQGf6NfHyTyEV4VRXTY,300
211
- structify/types/entity_trigger_merge_response.py,sha256=6tiMOH6JOcA9NGPR7SPyJ-WR7GTMCphNVzEYTzdCdVY,1820
212
- structify/types/entity_update_property_params.py,sha256=-XGlfn-BCj9ttICQmrqtlNR_EpRnnAZdpik2jze3rF0,1063
213
- structify/types/entity_update_property_response.py,sha256=ldZxZrEBvQaK8cFE2LJtzok-E4sbVrNcGzuaCMsU-ac,1824
214
- structify/types/entity_upload_parquet_params.py,sha256=j_BiCN8ZgsS1uxxwHVdsAUIF0wh6W1cZrnKdjJvw6Dg,397
215
- structify/types/entity_verify_params.py,sha256=WyY3Kkbg0gddgd88fZfHC4qs1NaeiigjNmTk_9ehIxw,692
216
- structify/types/entity_view_params.py,sha256=INc0VjI5aqqjllRRKMIh7e6NIvkZi_SbdQQ8CEN-jD8,299
217
- structify/types/entity_view_response.py,sha256=b6-MGtWB0FtddDa-VZvJDJruQ49I6azhBr-vAHquHik,8608
218
- structify/types/execution_step.py,sha256=WItcRm7ov-MMYn5Wm9M8ymOKtmNKhlTAVPBiBUEpaJE,5145
219
- structify/types/exploration_run.py,sha256=yMa1Jao85T9PtDxDnpm2916FUZRgsq3fN_17Kv_wJD0,257
220
- structify/types/exploration_runs_response.py,sha256=USpUAKqym_rTv-cJLz8VGt2A26TtVYMp1kvVMh-RunQ,302
221
- structify/types/exploration_status.py,sha256=Qg0VwnuNyUtQ6_BeLXZZirMksFY1tJUmMtzX0GKohuE,257
222
- structify/types/explore_status_response.py,sha256=Y4-H9AKZdIWJr_DLougcWoXwl2QbN2rTpSyQu6nlrPs,413
223
- structify/types/explorer_chat_response.py,sha256=Y9E66-p8Aii0fjsdgYabhS_8Bt83Lde9Q_Zv84XSKgY,319
224
- structify/types/get_chat_session_response.py,sha256=0jBwQvTgs44K-In-P7nhghuUZ4WrlQ3NKPPpYm-unAY,1400
225
- structify/types/get_node_logs_response.py,sha256=ko5VlWAaOsogUmu2RXJ6Swc9UdwaxutpHh-jzvyEAdw,298
226
- structify/types/get_team_response.py,sha256=A4-0C6LtHlOO_lztnvYaD9v_Xdn6lT8Wrd3iX3_T2VU,334
227
- structify/types/get_workflow_schedule_sessions_response.py,sha256=nsnLzkLJP_WJ2yO_GCmbrZs9Cqc7HEa2YfmsqodoviQ,355
228
- structify/types/granularity.py,sha256=At6biWApGE7uE8jr5KnHP9Jr1yPFkuqLwXjExaswtBo,229
229
- structify/types/image.py,sha256=FpYU3gDZnet0wO17e2uHzcyRUD6E1ssSgv63Ew0DzjU,269
230
- structify/types/invitation_details_response.py,sha256=TmyeM4mW4Kb6L0d7Ook9cH3g8vzfQYPnvZDIBdgVAO4,272
231
- structify/types/job_cancel_response.py,sha256=0PLembK39VEttbE2hTaXaQqa0vEAXywP7mdsGJtIcRI,1199
232
- structify/types/job_delete_response.py,sha256=8SBOa7Z-EsCFIxlxDBQNibejwAqBFfw2fUXDl3aWBZc,196
233
- structify/types/job_event_body.py,sha256=_80eDY-Xw6Idt2HTTPWjA6_riPBGg0DHiTWL7R72lr4,2048
234
- structify/types/job_get_response.py,sha256=KnpZqIsNhNZ66xMadeZsiNeDX4KtBfZf2HoG3uv7u_4,1317
235
- structify/types/job_get_scrapers_response.py,sha256=-E9DaG9YCkrJeuffZ3RiI6MW7ZsbPjmlVU3jUQdggSY,694
236
- structify/types/job_get_source_entities_response.py,sha256=tDXdpk2gu8w8qZwH3O8lWKWUE5JxTKeMIh_dRwl_T_U,3414
237
- structify/types/job_get_step_graph_response.py,sha256=QsWagtM1y1LnC2I9mhugqVfkyMkmOS-LGc8debt7ZtA,9274
238
- structify/types/job_get_step_response.py,sha256=LKc2s_KmZqmUW5jqx-kuTkJt7cwymrwdvCrSLKlzlwY,5142
239
- structify/types/job_get_steps_response.py,sha256=oFr761Hep8OhE763UnYuap4N5fMV4h93XmUUvHv0rmI,283
240
- structify/types/job_list_params.py,sha256=YamuTfTmtwbptGIdFDGbLTfJgDpIUbujauaCPlTCplw,992
241
- structify/types/job_list_response.py,sha256=1MvK08IrNQ7KOVY-VHh1EqDZP6NjNzR-Z2AZXBIrRt4,3978
242
- structify/types/job_status_params.py,sha256=wx7NFv1gJaIsy_fmCdPeEsVblIFRN5P1cUP1q8210HA,412
243
- structify/types/job_status_response.py,sha256=xcfeCXfxVOFQStG5W0Xm6Cszv2k6u-VKjb2UDfz_McE,277
244
- structify/types/knowledge_graph.py,sha256=RXcvT-nYvIbO9fhSDrwR6SExA7lhFMaV8SEemtYR9b4,368
245
- structify/types/knowledge_graph_param.py,sha256=iHLP1zkRNQFMhK_n65vO-GmLxM9lPNOaYTWEm76Pm0s,472
246
- structify/types/list_chat_sessions_response.py,sha256=pI5qiXKSeiL-E7X2Z-SWd-8H8qcg3w8ewZJaoNXbycw,721
247
- structify/types/list_collaborators_response.py,sha256=5Llu-Mo03_FvOS4qWJig7E8pIHGP2KwiR4DVasiBySs,475
248
- structify/types/list_members_response.py,sha256=r2FsGyRNLd62HRVdMEgzquEIIevjcLkFPGJUfJt6anw,441
249
- structify/types/list_projects_response.py,sha256=wbEpzmj8T6Zcbmka1kQfAvUKYU25jhD93Nn8xxIIXWk,278
250
- structify/types/list_teams_response.py,sha256=x29nOJYk-J8B_U9K-M_QALpsUZmMpDXwC74b0mI0Uls,286
251
- structify/types/llm_information_store.py,sha256=Iuj9VuTvJtHQ5lds2xNLw2Robtd-hW3uHgX3ZR0Y8RA,1521
252
- structify/types/match_create_jobs_params.py,sha256=5wil8clE2f1o4biqh73ldf4x_aIgqOVtvnJZe_vCibU,633
253
- structify/types/match_list_results_params.py,sha256=TH2MarUXxaWpxFibx8tLYzKw4jUXGNvfzv40EZ0Kyhw,540
254
- structify/types/match_result.py,sha256=j7AcS26BRJXRz9NKpMgPG3iFn5eofmqPopt7ZWbwbZ8,509
255
- structify/types/merge_config.py,sha256=eOQAmI6j2XIJR97Y5V440D8MZmSTu5JgKKav7l7tAdI,979
256
- structify/types/merge_config_param.py,sha256=21R_8Ck1SIKjR24xy73yVq_C0S5jXprw2GrQT5KYueE,1001
257
- structify/types/message.py,sha256=2MpnEI5LICtK0QJDo0pZQptKrPAP-cJf8A2WdvkQ428,852
258
- structify/types/message_param.py,sha256=m3bRLkrpGslIkQqFa_cherb7_vzdYOXpfqfzKU1avPQ,1038
259
- structify/types/pending_version_response.py,sha256=Z7RW49pZRVxGO1f05gmBwo3rAG3BcmEm43FhDSdh4KI,709
260
- structify/types/project.py,sha256=FGidpktcJ1b902oyYYgcWifAzBhDzzDFUC1mJ_acJ2U,450
261
- structify/types/project_collaborator_input_param.py,sha256=im-J3ioTcmR-R3pJxQ6wSIdJC70ILGmDF59zpBVuJes,391
262
- structify/types/project_get_response.py,sha256=CkZRyaA4xlJfqsJGrwM5vzQNqUEfRzqfpgWvpBbv_Z4,287
263
- structify/types/project_member.py,sha256=K1d1cysL5pvEnYiJSkgui11hHk_EFC4Flgyg1QqKBt0,372
264
- structify/types/project_update_params.py,sha256=SFbv8kF0VZdUSz86FjYEMU1-pUSHEpVIarWaU83j2Cw,625
265
- structify/types/project_visibility.py,sha256=O-aEcfs0Ptd6vcev74vfMusPKwsAUA-LYPMc74KCV18,240
266
- structify/types/property_type.py,sha256=CRxKdp8CpWCF65ZCBuqW3Z8flm-EfIE6kBrEuzrl1vY,502
267
- structify/types/property_type_param.py,sha256=ilUvThZQHU6--2BAgqAKpGGaOQO_E4-Q70GzWqPyKug,617
268
- structify/types/relationship.py,sha256=jaF2W0ypqGkMavU-I9aYqyCENIz6VgUtC6VPqKsZFaI,339
269
- structify/types/relationship_merge_strategy.py,sha256=NuGqglfBplohE6SInMgDcv3VeH4FdczJ9XeTwsJLI6U,1239
270
- structify/types/relationship_merge_strategy_param.py,sha256=MGuGW7nOUtOGhSTKKFPCOf_RYaTOCOlYqxj7cF3BenE,1291
271
- structify/types/relationship_param.py,sha256=IdyrBxiNpg-6iUMmPdB0SMs3d8ZQzJHzGQCtEZN5RAk,418
272
- structify/types/remove_member_response.py,sha256=G4_HFunfGePaEAl7WXpKXMFz9_09LK2wOQjZ_IY2OlM,214
273
- structify/types/report_missing_params.py,sha256=xSHLjMsUjAoQX8qMkwLG21hF2cTyV-vF9-JEPod-RQw,468
274
- structify/types/report_missing_response.py,sha256=DfQZ6vLl8LSyVrdrSjwYdP_dfbrdOWhFCirmp1MoFiE,204
275
- structify/types/report_relationship_params.py,sha256=cVFjRxe9i38CJV4FBpfiqQGo4lPmYvt9fcZYhhCdC6Y,409
276
- structify/types/report_relationship_response.py,sha256=350RnlPTs8liAXt1o70xfua5iM_80hEW0R3wdrkFowk,214
277
- structify/types/report_step_params.py,sha256=y7A6GNpKvyyOzCQz0pDaUx9IadCQysqV-79fm34MdqI,401
278
- structify/types/report_step_response.py,sha256=oMvbdAMqhw7cBQNLLuCtuv65yB5LDrBBjYIqEy0GNxc,198
279
- structify/types/report_wrong_params.py,sha256=8fk1ISYXCMdacm__B3S735SSirZjs7Vnt-tpcasTdBo,464
280
- structify/types/report_wrong_response.py,sha256=YEyR-MiSLDEAl7letid9y7FTYHSRQl55VMI6nCNq5tg,200
281
- structify/types/sandbox.py,sha256=syLdydyQW8XHUJrrjA92Yd5Pa7cz_xezLrEYPd-NVGM,479
282
- structify/types/sandbox_create_params.py,sha256=k0QPXiWhYcA54J0MYfVWOc1BCNautauyvCJTLljR2Ic,478
283
- structify/types/sandbox_get_params.py,sha256=0aummK3OXNmNpf2jo2JmpcEzfZy-_ygJ5WkMg7JSrK0,313
284
- structify/types/sandbox_list_response.py,sha256=e75FANom1TQzkEEr_bJpccrPwzqX-L9p9qbGrHnl-mY,264
285
- structify/types/sandbox_update_status_params.py,sha256=tKbys3xeWDNbbjUyAUEdeCmcdZHDIgyYZScl-QvHgow,299
286
- structify/types/save_requirement.py,sha256=K4Safc53B7mfVcmp9XwVljbYU5z8JnVS_ngVKSCh3JA,903
287
- structify/types/save_requirement_param.py,sha256=kF-3gd0PcGJJHhlP5W1OV40Yrty7QZxog5QciMJSWvk,1050
288
- structify/types/scrape_list_params.py,sha256=J8qcUXmTT3dq7bB0V7oFgEZEHiRh691iNke-MDaqTrs,1810
289
- structify/types/scrape_list_response.py,sha256=NFhbq1CC0PeYm5nRah7MCKuaQrliDcnxvuhLzceslQI,231
290
- structify/types/scrape_scrape_params.py,sha256=--U4bzo9x-3bppmWyF6vnZBgWO88VmrDoJ76MC8aAh8,1181
291
- structify/types/scrape_scrape_response.py,sha256=GdHl-y4bcZSnanMQ5OSz6HQWRb_euPL7J7tED2Xf1JA,212
292
- structify/types/select_team_response.py,sha256=A6dWpyBcCzILe1OtgmIIpjPGXjEX9XY32zTj6DU2cnU,230
293
- structify/types/server_information.py,sha256=JLj58jDeeXB4QlYxDNpNUivEHTGQlohOKf9RRbJIJmc,207
294
- structify/types/session_create_edge_params.py,sha256=lvne3fRWl-pNGKfDA-vXAxc7_oOGJ89ILaz0_b7HKVM,338
295
- structify/types/session_create_node_params.py,sha256=yST3OzBLR3VIzMGkDPRnXBVpf4NlFFdJSQMmdWFctcw,454
296
- structify/types/session_create_session_params.py,sha256=f1p_2GNHMLX_JJE81qx2oi-uUpWHLFhvf4GauU68KbY,379
297
- structify/types/session_get_events_params.py,sha256=cwtwE54FsCPi09H27SbPTq4XEL8fQ611INVEjHLPvUE,433
298
- structify/types/session_get_events_response.py,sha256=z4F1ot5zMszF_kdAbyiWP9vhWuWR3mCGpSFEQLxU9OY,1028
299
- structify/types/session_get_node_progress_response.py,sha256=cmQMtCmPoZWcls5qAc9azYhIcgHp5D5x8gfn5W2yTZ4,559
300
- structify/types/session_kill_jobs_params.py,sha256=AUtrh9WAJVEDWzq4eJpoDl9D5V3OJ2wgc10xGV14H1E,310
301
- structify/types/session_kill_jobs_response.py,sha256=nv-X10icEzOsfQWGlNbmEG4ZcTi0v9phBXPlqGLMOUg,272
302
- structify/types/session_mark_errored_params.py,sha256=h9AKahlA9zPuAintBt46CtFmYOwC0FHBKo2S095XkNA,479
303
- structify/types/session_update_node_params.py,sha256=kuPrrAdMs2H6ikDKsUkIWKsPcvNnkBAj2bTeXNNF9B4,538
304
- structify/types/session_update_node_progress_params.py,sha256=Ow_oam4MR73s_Cvon0RNM5dk66NTq9IVODKItUuVDMw,430
305
- structify/types/session_upload_dashboard_layout_params.py,sha256=JKO4UHdIvnpco0zCDvXiBsoCpsFNgt_8uOCk0mREiZs,392
306
- structify/types/session_upload_node_output_data_params.py,sha256=0rB65-Y4cLZq-pzZELXc59mXtuiwM7V_M1isy8vg3OA,354
307
- structify/types/session_upload_node_visualization_output_params.py,sha256=yMIKhede3dc7-Nng9VqM09TSauulIGMKkzUgU9yvG0I,385
308
- structify/types/slack_api_response.py,sha256=V2gZUhcFGy4UFdgu1WF3fHS25Jyly3mgfCx_rYf4AeI,506
309
- structify/types/slack_connection_status.py,sha256=8mUn_1S2PH-3v8dycUoqrDSdFNac7cd-g7treU8mMyU,330
310
- structify/types/slack_event_payload_param.py,sha256=Q1TYhW8kSWaUjwI0TnXuYkQTjS2_fIGXU906EDXI5_E,1273
311
- structify/types/slack_events_params.py,sha256=RatTleC0eWC6QRssy-cdm9M7nE4JsFJQNaruLg6qzqE,1212
312
- structify/types/slack_user_mapping_params.py,sha256=R_NvdUXiG7QxPNKnHjNLbyHf6Hp0eXhIj6gTC0hRFRs,433
313
- structify/types/slack_user_mapping_response.py,sha256=Axl_eZawQWNws7dnR4sDBt7WWP3YbUXsDG5kM4PCjyY,240
314
- structify/types/source.py,sha256=CGPjLL1R41gJGoJbSSqFJeCtQUir7lJkptC8eI4ERqw,814
315
- structify/types/source_delete_entity_params.py,sha256=lQHCpKkAggme2ZBRfCOA3GbIDpHbr3I8HCHLsGqfaFk,307
316
- structify/types/source_delete_relationship_params.py,sha256=r-yVxl4vXogXxwuZko-rXFdL5X0B0K7XhHePTlCGeZU,325
317
- structify/types/source_list_params.py,sha256=hdrYZwIO7gigV_AgURsc9ugdA8I4i9psMEWynyPM3Dw,427
318
- structify/types/source_list_response.py,sha256=p8ayhL0m5A74bhm8ccyC3K9zsc2NwdWZ8WvU4MFaG_o,1861
319
- structify/types/strategy.py,sha256=ci5qnwB6uA-TIQ6wOoRhPcZlFVesvzU9grwuatLZyjk,553
320
- structify/types/strategy_param.py,sha256=R-TSheIjdJ7g1mDEZFiXu8Gjw3yEa6c5UeRyPPZvCCM,644
321
- structify/types/structure_enhance_property_params.py,sha256=67olEvR2SzWYE4fal-I6m3dRp2UxmdK4eGX4AEizOnw,963
322
- structify/types/structure_enhance_property_response.py,sha256=h3VjVVlD1ahE59Ydi9wqifFzIZ_mrbejiz5J6pavKow,226
323
- structify/types/structure_enhance_relationship_params.py,sha256=LmcIbfeJPnAUTNy57Lf96RcYVe-nFi-AkT7vs98T7z8,975
324
- structify/types/structure_enhance_relationship_response.py,sha256=s90CTvSwmZlp8h0UziUNIuAv1HjPXDZvWTQa1L10ZjM,234
325
- structify/types/structure_find_relationship_params.py,sha256=PFV-6mQblKGejYPUNjjpBuY7MATLl5XtUOcm5CXmgeU,965
326
- structify/types/structure_find_relationship_response.py,sha256=AjojE7iEewqDLHqMFL96y9zJgSR8qTI0EGHzuVMQYb0,228
327
- structify/types/structure_is_complete_params.py,sha256=foIrU7dW5seHipqVl2f-Leb7n4kAJXh04qIb66JYJps,349
328
- structify/types/structure_is_complete_response.py,sha256=YWZrs4YK7EyjdZk1GAfb9cFwJS9HCJ0mW52uxesGqu8,216
329
- structify/types/structure_job_status_params.py,sha256=uQmvkdZQ8c3XSAZSmshm0X7iDfyAKztzofziXSveWIE,479
330
- structify/types/structure_job_status_response.py,sha256=jZVwojhMJB7w7BwaMQH5W_lqlzb-fKd2SKo6v1xrW-A,806
331
- structify/types/structure_run_async_params.py,sha256=H0X8fZ3mi4Ppib9wqCH9Xx6qfC32gUyKDE_gh7U55j4,2033
332
- structify/types/structure_run_async_response.py,sha256=RTK4Vh2A-51560FjLrRJiqKNgBjnuq3hd671_hi5lHU,212
333
- structify/types/survey_submission_response.py,sha256=OTjhVLOGQWATs7VEsn1_OVNxu5oKOS_WwSu82UhmtbE,240
334
- structify/types/table.py,sha256=S-VfnXcTeWPq41JCK9l-I3XUIzTh0w7hGd_fkHbaQuc,831
335
- structify/types/table_param.py,sha256=q11aGeQDgLVMZZLo6d6lnVjrTOc_YEY9SlSrC9as5UQ,963
336
- structify/types/team.py,sha256=5JqSOdqV1RhH-YjJTNXfOqvyJyTXBmyuMIUCUpeDy64,389
337
- structify/types/team_accept_invitation_params.py,sha256=szwKVdKklkjcFIjTwFJFnpojwI1S9gykppaHMGMa45k,300
338
- structify/types/team_add_member_params.py,sha256=Tam3Nsx-ZyAANjGVOkrGpdmakiNd-q8WopnZk6pPVJY,349
339
- structify/types/team_create_params.py,sha256=vjpDIzXKCstCDIsRh_kdYoe-tAvICG49rchcNshuye8,339
340
- structify/types/team_create_project_params.py,sha256=zTy_1_g1BYw6xVIt4HkkWg2iw5uJ5KJ1wU8Vi0nfy7s,353
341
- structify/types/team_credits_usage_params.py,sha256=or8q9PVvAB7fgRfqDuQjZ6xoyUEapZ8q8cZcpMrO-Bc,799
342
- structify/types/team_role.py,sha256=xlMM8_rJ_7N77mkUaH709rcCLKN6IvjfqUdxHRguMxs,232
343
- structify/types/team_subscription_status.py,sha256=6ZPOvV0DSr0G0INYit4MZIz414r4AW5LPGdT4rvj_x0,619
344
- structify/types/team_update_member_role_params.py,sha256=K7_ylgRKDTOT3yqqyhpUCV9AQllv3VII0OiVS8CxehI,365
345
- structify/types/team_update_params.py,sha256=ug5zIEg41LLLkQTrjYQj_H2kBtlI6CJbwu4UkUSq5v8,329
346
- structify/types/team_with_role.py,sha256=t-UgnD90UmxlMpLHdxN8L7kK7VxMVLj-PM26NvkV_2U,327
347
- structify/types/token_response.py,sha256=shC3GeJsyRsbhAstBRV1WkHjcbMFtiXEo4Tf7aNNDYM,347
348
- structify/types/tool_metadata.py,sha256=drtuS9ZQm4cB2KScB1pycX1ifjhGwSUMJm9TFv1SHuI,382
349
- structify/types/tool_metadata_param.py,sha256=Xh6a42XrrrcKvZB1pR7fSdfoklr9o7PZF5-NKRw9RKY,473
350
- structify/types/update_member_role_response.py,sha256=q1jTM0lFmzvH8ki7GcSQAh-5cN7VnLF6Jg_IRdA4AqE,222
351
- structify/types/update_team_response.py,sha256=AOm2-jzpjF3UVRh3msyc8W00l-hNpk_SqmMI3oK_YBE,230
352
- structify/types/update_visibility_response.py,sha256=veHlq90QKDCiY__DLHGQQloyZhxy6wSJ_6bPn18bisY,279
353
- structify/types/usage_group_key.py,sha256=8D1nlhIeOPPviQOlczF_xqaOGILgeaRriAlY-fWEikk,287
354
- structify/types/user_info.py,sha256=KNtjAwYbS3IeXhtdr9hzOKyKuq5vfsUIGnVeg2g41c8,1023
355
- structify/types/user_survey_submit_params.py,sha256=YLrpWzTb-RHA_uHM02O36ZPnXbtakoLrqQIoMcxBjWo,340
356
- structify/types/user_team.py,sha256=6xjKhp7ja_9ptHYfZjhIgNqleAX2f5_bpmCyP5v5JKg,640
357
- structify/types/user_transactions_response.py,sha256=eN6Z1VkS42l494XZFe7RFa6mCjcDHDaauoOMhtkaOas,655
358
- structify/types/user_update_params.py,sha256=ZJXyrn1JP4hXHzfktEufy33d65oM88aatVPILQEDm5g,1377
359
- structify/types/user_usage_params.py,sha256=9pIC03UG1gStMjuSTIp2FFgFqmBWTFvIgYcwEcef7P0,298
360
- structify/types/user_usage_response.py,sha256=4GraDnukeRckMdnJw1NiCIEIi2zEdFUu1pu4-M_inYo,282
361
- structify/types/workflow_dag.py,sha256=-meBbsx2qdVfXLko6OVFKtG4UrlSVN7gWQo39RebpuU,692
362
- structify/types/workflow_node_execution_status.py,sha256=Y1UW3x9I7rE3ZGjEVzyi63xqTzg35QqS5f_pHjqzISc,287
363
- structify/types/workflow_node_log.py,sha256=I3VRmr9hE3yYLbBZ9zJ1JnF_JPi153gzuZeDhDwkvRI,311
364
- structify/types/workflow_run_params.py,sha256=eYW64PomqPjLbAAuE7NpChEAFZBAh6rAClpSCYS9NGs,328
365
- structify/types/workflow_schedule_create_params.py,sha256=2OZKy4ByS6LvsI99JiqqDMvlwlRI5pYoavevIzaEsgE,401
366
- structify/types/workflow_schedule_get_all_response.py,sha256=uUrte1Rh2l7-zuv2zaqatQ9YePB-bBBGqAJgM_wn2PQ,327
367
- structify/types/workflow_schedule_get_response.py,sha256=v_90Sk2dYJ2WsvM_0RA0wO1kZfVatPvKldMs9o-jPcw,321
368
- structify/types/workflow_schedule_get_sessions_params.py,sha256=ukfQvSOzQyCQXvMu4Lwpy_MzpZ33V-6BsO9Z6z0KEzM,311
369
- structify/types/workflow_schedule_info.py,sha256=uKAFbg-27VrE3f_KiMwcrUpiMvXnFrts-BqUmJKAeSc,404
370
- structify/types/workflow_schedule_pause_params.py,sha256=BvVMvxYjjIAsMDWWPnO2Ea0WyeSuhgU7pMMjVTq5Nzc,304
371
- structify/types/workflow_schedule_update_params.py,sha256=Yuv_g631os89OlBPRyNvdh10iX8qfmEiSyqtzjo_vpA,419
372
- structify/types/workflow_session.py,sha256=TowRK1sUm0sFlN2DTV6wAnFkFFl3U70svD8V2JnCdHA,622
373
- structify/types/workflow_session_edge.py,sha256=GDlkWnOwnArC80Q1e04FfBkREOvh5HSs7Ij4K2rNR1Q,334
374
- structify/types/workflow_session_node.py,sha256=cLUfhFhC9IAW_hrFdyCGd3j-WBANxK_A7gz5qDArfkE,975
375
- structify/types/workflow_stop_params.py,sha256=DLTGDSENmcdNQoV_LnsL0lvf3i3NtupkpiBGBpZakUs,298
376
- structify/types/admin/__init__.py,sha256=H_YKtYGFERM4a46uAc69pTZY3famJ750rX6ydTc2LJY,8461
377
- structify/types/admin/action_training_data_entry.py,sha256=d7VUiqW8vaBkEt2ltLA2w1JllZYKcdrMN5ErZ8eqAd4,5183
378
- structify/types/admin/action_training_data_response.py,sha256=tuZAOvr5OCLQ_6aLYyH9PMDXOWMAo0ifqqk1UGKOTHk,338
379
- structify/types/admin/admin_dataset_return.py,sha256=ffstRmhttO1COWuxKnKkmnrnoOg-isd1UfRpaPWD4YM,313
380
- structify/types/admin/admin_list_jobs_response.py,sha256=Dz3VQ-te4OsYj354OkMwEEW5Z0IWrDR5swwlbPSAwGg,3710
381
- structify/types/admin/admin_teams_list_response.py,sha256=FDrXxx3dQKuHuLfByYzaS5EzZYkZAtyJH7E7t6UoUX4,1167
382
- structify/types/admin/cancel_subscription_response.py,sha256=ph43hCKHtpjp2eSV9X9eitJA-mpnrRdjwe8KxPLJdKY,246
383
- structify/types/admin/create_subscription_response.py,sha256=JFm1lbs87TDnqLoI-7wNd058BJt6GYTUV5UXojldM_w,275
384
- structify/types/admin/dataset_get_by_id_params.py,sha256=upS3EraM1yOXntE91YlE0H5NMfMRT-Ne9QBTZNORYJs,325
385
- structify/types/admin/datum_status.py,sha256=EHpKIOkbmuqAzV77QU-oqhMVadBMlb5-DxCzubwsb1k,437
386
- structify/types/admin/delete_action_training_data_response.py,sha256=EXWaaTO387Bc3JMAgRUrBXl0fXKCHUw6ZveB-RlBDRQ,244
387
- structify/types/admin/extend_trial_response.py,sha256=LPbnuf_N2qVZqivP0_Kmyiw0UfafOZhfhzfGp_gg88s,292
388
- structify/types/admin/functional_test.py,sha256=J2QObf3kqpLrbP7ReVs7gpO59bW9E_dJD_EqKzyspYQ,476
389
- structify/types/admin/functional_test_create_params.py,sha256=ELnVWaey20qHyY_DcidryZoZ4GkT3K3YsxeDvifUXpM,401
390
- structify/types/admin/functional_test_get_results_params.py,sha256=R8iea2nP64Q9fY5XkHWAtd0-4TAvgU0wy6GDtu6B1Ec,371
391
- structify/types/admin/functional_test_link_chat_params.py,sha256=bmN9m6sRvyACGWSQqA7w5mRIWNUCUVevYb4NQxDP-SM,451
392
- structify/types/admin/functional_test_list_response.py,sha256=6qipTXk-vsxk0F_CM7WGteoyy1kOXrBAV5O7Tad5fNc,690
393
- structify/types/admin/functional_test_results_response.py,sha256=-_TgvKVtXc-kWm0GQmVqhfI3T4Lr-f6Cbz6owUj55ik,483
394
- structify/types/admin/functional_test_system_prompt_response.py,sha256=QS0m9TELNTFsGQ5yK7GUEtod6iSVSJE3V79zXmjbBaQ,230
395
- structify/types/admin/functional_test_update_results_params.py,sha256=zsFkQ7RFEeBenhWEM9QbD_uyWNnLkBg8ev6Q4nI4W4s,461
396
- structify/types/admin/grant_credits_response.py,sha256=kgtnr3Y2mdz9O1Tmt7i4P6C2ot-RKlv6KF5OkSV6y6I,250
397
- structify/types/admin/human_llm_add_search_for_job_params.py,sha256=UI-cGbRWc_CizfRkElbjKxfsLt15wSa090UJyy48xwE,340
398
- structify/types/admin/human_llm_add_to_dataset_params.py,sha256=Hk6buB5RgWqcR0-W_PRdR8t6W7ASDcDouUE1RUk6xJU,5207
399
- structify/types/admin/human_llm_finish_job_params.py,sha256=bukrFdFW1FE0kPIovlObLeW2yj6EczJL-PSsccdg95U,375
400
- structify/types/admin/human_llm_get_jobs_params.py,sha256=pGjAVp2LwLphz3oeQE7LbXdVm0XH_UUhOPMl8gBYqDk,366
401
- structify/types/admin/human_llm_get_jobs_response.py,sha256=f03P7_TlYZivCU5IcWz0-3SFYWO69HbjnH_Wu6gWkMU,286
402
- structify/types/admin/human_llm_get_next_step_params.py,sha256=nZCuj1lGxVE7iKFIQ-39vMWeV1poDV9MrUbM9tZe5wI,327
403
- structify/types/admin/human_llm_get_next_step_response.py,sha256=3ozjTPRDhH9zUu0ug8J-LUN_n5TEcAof2rbT7OCW7jE,5163
404
- structify/types/admin/human_llm_job.py,sha256=BlYlfHxYVpcGOGMNAwn_0Dd3vyo5e4OrUt6RlGsXbWc,1426
405
- structify/types/admin/human_llm_prelabel_step_response.py,sha256=U3-t3nK0H3-FfeYMwgS_9jWJnhTpi2cRAMgArmJVG_0,4395
406
- structify/types/admin/human_llm_start_next_job_params.py,sha256=ZWUhVtO4q87ikGo6SRZDnsPQQ1tZ32bfdDp-KWqM2Lg,319
407
- structify/types/admin/human_llm_update_step_params.py,sha256=pc6_BWFh2NKx3GnPo7JqpjrF6LVeaN31diibSwkL6D0,5203
408
- structify/types/admin/job_list_params.py,sha256=Da686Fogop9_c4trN4Mw2QcO2i4YZCRvVtWBZmnaRM4,1045
409
- structify/types/admin/labeling_stats.py,sha256=0ZlHrtqkdbPQRY5c7Cuj90TJWf17Ak321hRROmQOPLo,404
410
- structify/types/admin/next_action_add_training_datum_params.py,sha256=pWLjvYboa0HK3kTl7Fx5v6QQLMhN5dBchpjhIpl8WT4,5602
411
- structify/types/admin/next_action_delete_training_data_params.py,sha256=xRaRgUXlBL9Sr7tw-FHi2pQ6ZvYsouI21B2IJx6eRzA,358
412
- structify/types/admin/next_action_get_batched_training_data_params.py,sha256=vRSr3FDFfguyMAnETicgyd0Y4MsiEkKka0ulv9YN3kU,380
413
- structify/types/admin/next_action_get_training_data_params.py,sha256=S27ILlbnNWkFTFhPlbrTvI36FBqJ6x9y5O76nabPaS4,731
414
- structify/types/admin/next_action_get_training_datum_params.py,sha256=prcqV6KotIndCkp9eav8GVqSNl0Q_swZqh8r1qhcNFE,351
415
- structify/types/admin/next_action_label_training_datum_params.py,sha256=NP0-ghY0btyi6KLsQbunYBfvplzTW08XVfZ32i56DCU,2298
416
- structify/types/admin/step_choices.py,sha256=ckutQHQ4eNnHMxLDv7_2yMttTKMPnM26bf51NR_jxSo,824
417
- structify/types/admin/team_cancel_subscription_params.py,sha256=WzuEjAfJrk8yAzudK-CpV1ibi6iHo3OKjmV4I2Y-UC0,306
418
- structify/types/admin/team_create_subscription_params.py,sha256=Ye6y5d_NaaQer0w_jjnWCXGHBH23j3Z_UhPXdB7czwA,692
419
- structify/types/admin/team_extend_trial_params.py,sha256=5L9yWN1Flv1Lj3ca2FdM7GUsScOCfxqeQxT885mdLWo,489
420
- structify/types/admin/team_grant_credits_params.py,sha256=vB0Dg0uyQzOBqxhyfZomES5Tg6VhwubDQzzpS_q7KlU,669
421
- structify/types/admin/team_list_params.py,sha256=DBxnLA0uqk8yMDWoOG5r4KvNt_WFaUn3uquHWWanNd8,321
422
- structify/types/admin/training_dataset_add_datum_params.py,sha256=_mWQ7uWega8O2M2FT60W7eXxKKifmEU5JBe3LObQyuw,341
423
- structify/types/admin/training_dataset_add_params.py,sha256=jACL05ilEhCtkK2c2-rcRn7KikfHwtxunz3bQCf6XrM,354
424
- structify/types/admin/training_dataset_delete_params.py,sha256=IeE8yGky29PfHNymtXz1L5u9T6IGt02Gc8C8olq4U2I,309
425
- structify/types/admin/training_dataset_download_datum_params.py,sha256=8pUire6DwC_8kfmCc2z6UNN77oph5oZ03Zg8pvmG3cc,345
426
- structify/types/admin/training_dataset_get_datum_info_params.py,sha256=5Y-hj2aM0HvqFL0DFmzgXEuQKFa0iez1IQmHSMPpCP4,311
427
- structify/types/admin/training_dataset_get_labeller_stats_params.py,sha256=et_JSm3_xqlZi34N4v120YUMwY5OwvVzLlTNoxIOE-I,792
428
- structify/types/admin/training_dataset_get_labeller_stats_response.py,sha256=OQx3jCEwXh_yDqoZQgk8uH9gi95k8NP3O7dpzPoszoA,323
429
- structify/types/admin/training_dataset_get_next_for_labeling_params.py,sha256=mRCF9TgcY_3V2tIx3eYLNATVJOewu6XUrgrAL-qZkeA,407
430
- structify/types/admin/training_dataset_get_next_for_qa_params.py,sha256=2RavEyf66J6uyvOUlHI-sHLG0TQrWr-6q6Mkmk0Rx14,456
431
- structify/types/admin/training_dataset_get_next_suspicious_params.py,sha256=vcDHXvAzWDPbt_gDHm_gdqbyd5baDEvhG4YA4uWoLtY,691
432
- structify/types/admin/training_dataset_label_datum_params.py,sha256=VUl_ir_eW6lStayEnI92OB9ZOoVD8oGKMdEVKhxa7CA,5780
433
- structify/types/admin/training_dataset_list_datums_params.py,sha256=lC1JrYJrxZVdnYhF4t4vOY8sVlsAWMC8RQVNaROckSk,508
434
- structify/types/admin/training_dataset_list_datums_response.py,sha256=ux0TGzxeqnCMsSRXuEXVqPaVcLJdUw8rkzwiWxNgzkg,838
435
- structify/types/admin/training_dataset_list_response.py,sha256=C9BO18YCgDlKJntJ90dO5Ps3iLpqQFP2KwZQof3Ffs8,246
436
- structify/types/admin/training_dataset_mark_datum_suspicious_params.py,sha256=dEVljlgqhtGvlfcB6xdwQsiaQqecYOXbAug6sV52JVs,461
437
- structify/types/admin/training_dataset_remove_datum_params.py,sha256=yw-lfWYQ6S22fMC_T652OrhBEPg-u-CZRBA-ZYQjWHo,315
438
- structify/types/admin/training_dataset_size_params.py,sha256=nLmxWXMkbOtZGG_aRvwo9IFuk0PgJvsG0rCQ_Zyft_I,579
439
- structify/types/admin/training_dataset_size_response.py,sha256=rGNW2dovtR9TWG56-8pkBnoUOsfB5zQOL5E1jUYPHU4,698
440
- structify/types/admin/training_dataset_suspicious_count_params.py,sha256=XTyttfjvEEBTNMQCbSeGPLCTPswXZrjxFiiS9i_1wDg,687
441
- structify/types/admin/training_dataset_suspicious_count_response.py,sha256=yHpka-EVKDmsV4OY529AgEo0syMd2pPap6fMvheL70g,248
442
- structify/types/admin/training_dataset_switch_dataset_params.py,sha256=1Hkr8taTauVSePyvYuYelrSl7YIYLis9ErKRHYo5d5w,352
443
- structify/types/admin/training_dataset_update_datum_status_params.py,sha256=1Bp5XTms-FXI5BXV2NCvdFNHxUCHfVSrKv0WVepGNiM,458
444
- structify/types/admin/training_dataset_upload_labeled_step_params.py,sha256=_y5iIVnEO_zl8nsUVjEvyDrzyYS7BwOhXZdCeaKincI,407
445
- structify/types/admin/training_dataset_verify_datum_params.py,sha256=xuBg2kf4dpAcrlJaf0LLBcnLjjcXbX02BumhH2NuU0I,415
446
- structify/types/admin/training_datum_response.py,sha256=BaF6XroqCGmMy9uq8nrkou7xeNTaMcGWWE-7glXxm0Y,11162
447
- structify/types/admin/user.py,sha256=82uQXGJ70jL6LgLj123XdjGanYSgOHS1X-d_c3JzkUI,1485
448
- structify/types/admin/user_add_credits_params.py,sha256=I2ow8jnZsbTn76bQ1V0BQEpcvJCPm-yfz2I4h3u-GEw,422
449
- structify/types/admin/user_add_credits_response.py,sha256=33vCm2L85CZRKBN5MCPm37aW_lum84GVb2MFaL-nFt0,223
450
- structify/types/admin/user_create_params.py,sha256=obKzi74tPQFpYs9K6rjk_BXPfKNc7vcVpkldnnpJJso,873
451
- structify/types/admin/user_get_credits_params.py,sha256=9zUCA0Gpkxt6logRXBn-r0xsJKD1YGXyI_GS5L1qp7U,342
452
- structify/types/admin/user_get_credits_response.py,sha256=GVk47fBxuMISK10oja0hmPGvqbpv05jlwHyfaIfM7AY,223
453
- structify/types/admin/user_get_stats_params.py,sha256=kufnCCfCpZyQ3WJOSXpxUQiNcBH1Vec2vbA5NscDNyY,693
454
- structify/types/admin/user_get_stats_response.py,sha256=ZhBaBULe4rZXhV_YbVO8Gb_TBIuVVUhtgm-yB4Xi0kQ,432
455
- structify/types/admin/user_list_response.py,sha256=1W5jswQ22FMbCl7VCCzCfL0ed1PKrkm7fFtL3htNDyo,366
456
- structify/types/admin/user_set_credits_params.py,sha256=5iQZtULRW9o0tuDKySHazsBEfLxp3bwPuNJNiYXrJ9Q,326
457
- structify/types/admin/user_set_credits_response.py,sha256=cpwcOkvRExphZBcOkQv2hbQ3g1hdbX6KmF92MQ9wjeg,223
458
- structify/types/datasets/__init__.py,sha256=MsnbIOPCLOgf96k-sg0-gDr2h4MHxjZUkJriKmJyjBE,828
459
- structify/types/datasets/evaluate_delete_params.py,sha256=mzh6PlMEI5oLNve5pznoPaPsrXbIKrNZMsRaTVBzd-Q,285
460
- structify/types/datasets/evaluate_get_params.py,sha256=HlApbCAgbByagt2eD7Kc6oNLYdccwTogs3NvVD_3lO0,279
461
- structify/types/datasets/evaluate_get_response.py,sha256=PHVL8cfg39jGSurJQkfGPSwtFFtMd1kaqj_BJf2lSkE,18189
462
- structify/types/datasets/evaluate_list_params.py,sha256=W-0v-GjSF06FnXKEvUEg3B0FWps_GkWZwcgNogLnQBA,311
463
- structify/types/datasets/evaluate_list_response.py,sha256=WAlZ1SzdpDdCcn65Ui6utGJeK3VegfTKpDmGxulLrQs,520
464
- structify/types/datasets/evaluate_run_params.py,sha256=TaRZshYXSwDOW9-5CiVDOvIfW56RL03qe6jcJkLPyEU,438
465
- structify/types/datasets/evaluate_run_response.py,sha256=yKbOw5eR10RmYmo3nttEHIZf3WYuT0nbuyukqpcEHCY,200
466
- structify/types/datasets/evaluate_status_params.py,sha256=YsJ52UIyG648DSlNZKIlONYdhu1RjMtRNt2rDZPUUqI,285
467
- structify/types/datasets/evaluate_status_response.py,sha256=oPoTnZZ_itkkgBJdcc852WlfqXZGF-d6d3lNUWdcLCY,294
468
- structify/types/external/__init__.py,sha256=agrX2kVuecxSh7g7Kvyea7Vb2EJ85F7--TbhtlG36Yk,5584
469
- structify/types/external/companies_search_response.py,sha256=uIlAeVmi_KcFC8xNks86-uQZNpdGfy4aZ9Att6utEaE,767
470
- structify/types/external/company_search_result.py,sha256=NMPEJEtnTaXGI4-ZqZlcFMB09gADkPraQSZzaPIyl9c,1507
471
- structify/types/external/enriched_organization.py,sha256=B8RYcA0X_NNc5uAY8apfjsCEW0IAKXWu6ewWJKG0VlU,1502
472
- structify/types/external/everything_response.py,sha256=Fz_a2P84qYsBQkERNYf-hLLz-954GdwUvD3ZsaYM1uE,467
473
- structify/types/external/google_maps_result.py,sha256=s5_BBYImbKsUI1RsHFHuT6PDnPdThid2ux-O_SkExqA,827
474
- structify/types/external/google_search_response.py,sha256=vxDTQyubEZFw1pnQ4S1gz04CN73oThagYwfgWpgGN2s,551
475
- structify/types/external/google_search_result.py,sha256=MU4a2L6CNvmkc2-aqFnrgBXLHCnLquxM4gCUGdyqUzc,434
476
- structify/types/external/job_posting.py,sha256=x3tedR7sQVH5NjofxFYZ9rhN_0Jg47IrOsLGYZ0VHCo,1173
477
- structify/types/external/job_postings_response.py,sha256=eXZD2IpYBm_s74zt7sfFenRXWHWyekpIE0t_bsQA1x4,468
478
- structify/types/external/location_coordinates.py,sha256=z2mo6dGvJccTLAx5gJjG2l8Xx_f2SwhZJTRNQM7y-LI,265
479
- structify/types/external/location_response.py,sha256=4r7Yv1KtcJofNnx6t0H5ph8Lypdvr_vjFLyVhcEsMW8,418
480
- structify/types/external/location_result.py,sha256=lU0T9QjFmBlo3Qs3jPhFCtdaZwmtFMhvY0J0ZMW1ToI,576
481
- structify/types/external/news_article.py,sha256=b5Bw56RIbu4yfoM8pU86JWlThm3tTcr_2fRaQGdT7aE,805
482
- structify/types/external/news_everything_params.py,sha256=IUA0knDqmkVHo0Ilwp6DcqqKNa3DTupSFGycYIB-LqM,1019
483
- structify/types/external/news_source.py,sha256=hWa98lJ4JqLAOwmiDgvpIUj2jIOpIap-_2CGXjMAwvk,335
484
- structify/types/external/news_source_detail.py,sha256=7xmTFcSJq15QSUC2-j3lW7VzN0CXXcJ0-OFfWgeWnVI,671
485
- structify/types/external/news_sources_params.py,sha256=cW0I-mZ0AN_3UvgfJmev-RA4dd1DPN9nUJuCZyevjxU,431
486
- structify/types/external/news_top_headlines_params.py,sha256=-Icy29sxJ6NCfOfjQ9lkIpmPKhgaXOQciEZG-w15i3I,613
487
- structify/types/external/organization_detail.py,sha256=M6lHeAUVp2TbQy_5rRF5l5LckCgzLjhjkx9ehxeleFQ,1966
488
- structify/types/external/people_match_response.py,sha256=Dd2auGhYnsheAExiRJpoZB_80yzECJoIXd1EdFFrMJg,465
489
- structify/types/external/people_search_response.py,sha256=SGJnYT6mr-NjrL0ZAuvYeSwayJbE-Fj0nBHwzR7jppM,745
490
- structify/types/external/person_companies_search_params.py,sha256=9JC1PW8aXs5gBlAhDX1LTltyVtv9LY1JieHInGMVIFc,1858
491
- structify/types/external/person_match.py,sha256=aaQApQogl9bI-u-YCNTGX1qy_H-AFqhNBxHPXB3XbKo,1290
492
- structify/types/external/person_organization_job_postings_params.py,sha256=Ec_55f0P4nCRYUnMB0uY307VNpy80Ij5TDsA0cFWhg8,413
493
- structify/types/external/person_organizations_enrich_params.py,sha256=I9YI3FQLd9f8N4QJTzOzRxPi4N36e7NokOrnUxh3xkg,425
494
- structify/types/external/person_people_match_params.py,sha256=htrEGrOBsxqbzMYmY0n_38YmCkxjjAlkVQ5GgJ1ogcg,1106
495
- structify/types/external/person_people_search_params.py,sha256=-57fd3byaeN-LEikwJHj3-AkdISaBgoNxEHHLc3-Ze4,1547
496
- structify/types/external/person_search_result.py,sha256=7SDTzWcYs-u2xoRlQnS9bn1o4xmNM7Bq8lrD5e_370o,1002
497
- structify/types/external/search_api_google_flights_calendar_params.py,sha256=_oY0deofJJU4mQIVhd-SfHofUpy4jtaSzLvyux4Jgos,747
498
- structify/types/external/search_api_google_flights_calendar_response.py,sha256=PjzvO4PRqWrT1nESYemZteK8wuLc8AkYxxxC44YTOoU,276
499
- structify/types/external/search_api_google_flights_location_search_params.py,sha256=_yn7ojFoLbrvKWCs9CKvteqLwUwrNJzioaVQ8qZCGxw,464
500
- structify/types/external/search_api_google_flights_location_search_response.py,sha256=xt29W_jfDLDHwy9K3fzTBIoHgY1HVNiymxY03f70iik,288
501
- structify/types/external/search_api_google_flights_search_params.py,sha256=2Q5JkHwP2EZKYxmAmBjM57_17k3TO1Nk-0h-pTuYk_Y,1257
502
- structify/types/external/search_api_google_flights_search_response.py,sha256=-qmUiQ6HS3StA9tPK6g6VP_n8OoZoT7zYKcK2M-ZjP0,272
503
- structify/types/external/search_api_google_maps_place_details_params.py,sha256=ardu7zJgb-ErwZ-34Gh0YX9IQFsygxhAQjb9TbHbgUM,459
504
- structify/types/external/search_api_google_maps_place_details_response.py,sha256=Y-xlV2_BCRxirMh_BUzV3a3hoJSn860rjhpXXu6aE70,278
505
- structify/types/external/search_api_google_maps_place_photos_params.py,sha256=ywByrfOctWAQqhoYlKvm9Oatqoe6s3osp9nHATCYfsQ,459
506
- structify/types/external/search_api_google_maps_place_photos_response.py,sha256=kThF0ww03HrVfgXcYoB46HJYXg5GL7o75_kIyUs0xxI,276
507
- structify/types/external/search_api_google_maps_place_reviews_params.py,sha256=tyan-SVR_nwUbBiX3F2MW6XJdvtNR0dV6yCJLlfLUbI,532
508
- structify/types/external/search_api_google_maps_place_reviews_response.py,sha256=vZ6MgfJbl2vMoQn7vi8NbeLVtpywp0y2rjU7Excdam0,278
509
- structify/types/external/search_api_google_maps_search_params.py,sha256=gXEO_DqclEP5BQl4bCZuK76oOBY815x36KiAFgD9eO8,615
510
- structify/types/external/search_api_google_maps_search_response.py,sha256=G52FRdg5pcaMaRCF5O7klw6O3CngkT91flwaLqeZ47s,321
511
- structify/types/external/search_api_google_scholar_author_search_params.py,sha256=ZfirYloI_vJkrPEDVrhDzFBcdRhXhmNnft3zJW4HmTQ,599
512
- structify/types/external/search_api_google_scholar_author_search_response.py,sha256=mXlOgWSYNlpuEwLrsz_dCVfLslYNwgFl6-P34M_Rd0I,284
513
- structify/types/external/search_api_google_scholar_citations_params.py,sha256=RmoCUBc6dV5hy9VuzIIOXzo3JTfPeusqJsDnW7hc9I4,604
514
- structify/types/external/search_api_google_scholar_citations_response.py,sha256=F-Dzcj34OnIw0Ek70v4k4m-U8UM7og0CagEvmBNIq0I,278
515
- structify/types/external/search_api_google_scholar_search_params.py,sha256=OPVwBQt-2pT3ViJJ01dsdzJj-doEAs8EDBA5koX0-qM,723
516
- structify/types/external/search_api_google_scholar_search_response.py,sha256=y5ogX22rmURU-2lQb7XmRBVFhTMTpQrx7bQonU0-tmI,272
517
- structify/types/external/search_api_google_search_params.py,sha256=bBa6ryOJ68w-MnKLB3_UWzUp4zHzRdQDuuFSa-1W99M,655
518
- structify/types/external/search_api_location_search_params.py,sha256=f8fnii2tjhy_HclHKvBj7d5ohzn16FJxF848NhbPnpc,596
519
- structify/types/external/sources_response.py,sha256=VYJRDmBRp9FhSHr3nsA_N43-USyOi4DMdxUjej4AWE0,386
520
- structify/types/external/top_headlines_response.py,sha256=H61QV3irHMxajtHq3HQEJP7pSUFfI4lDvHubilqBQYc,471
521
- structify/types/user/__init__.py,sha256=VEsn44gxg3y3gFVxJfSuqll94C-bEi1MVKjh70EmLnA,600
522
- structify/types/user/create_session_response.py,sha256=lhMUu4DOQ9KDrd-T5OG0sTkpAMGCGRmPzewXMoB0c4M,212
523
- structify/types/user/stripe_create_portal_session_params.py,sha256=5AYRC8z_SlKmdYHCMtmwVYQKoD6cmjSEOG2MJp7PvdA,343
524
- structify/types/user/stripe_create_session_params.py,sha256=DFcNLNzEWeupkGQ9J5PafsuL_bIU9cLEIhAmFPsRlfo,387
525
- structify/types/user/stripe_create_subscription_params.py,sha256=d8HfiC94gJbG-cC_WvBz6xYCvxKJO_EP2yyVmVvufrU,424
526
- structify/types/user/subscription_plan.py,sha256=qKJMM-zPpYolYC1DlypOwPpxlyJBLkQqFK_0VpwktJs,222
527
- structifyai-1.158.0.dist-info/METADATA,sha256=QvQkkvxfJ9b2dkTn74vNWwy4bJ6I37CR5tbrPvXA15o,14885
528
- structifyai-1.158.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
529
- structifyai-1.158.0.dist-info/licenses/LICENSE,sha256=5KI4uUbVoLkadJRFHeUTzNSMKtdVcSbOkAUBHtJ_w9g,11339
530
- structifyai-1.158.0.dist-info/RECORD,,