structifyai 1.180.0__tar.gz → 1.182.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- structifyai-1.182.0/.release-please-manifest.json +3 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/CHANGELOG.md +33 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/PKG-INFO +1 -1
- {structifyai-1.180.0 → structifyai-1.182.0}/api.md +9 -7
- {structifyai-1.180.0 → structifyai-1.182.0}/pyproject.toml +1 -1
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/_base_client.py +5 -2
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/_compat.py +3 -3
- structifyai-1.182.0/src/structify/_utils/_json.py +35 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/_version.py +1 -1
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/__init__.py +0 -2
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/connector_catalog/admin.py +76 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/polars.py +2 -7
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/sessions.py +83 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/teams.py +12 -76
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/wiki.py +9 -10
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/workflow.py +7 -1
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/__init__.py +5 -4
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/admin/admin_sandbox.py +0 -2
- structifyai-1.182.0/src/structify/types/cell_edit_param.py +15 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/chat_create_session_params.py +1 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/code_generate_code_params.py +1 -0
- structifyai-1.182.0/src/structify/types/dashboard_component.py +23 -0
- structifyai-1.182.0/src/structify/types/dashboard_component_param.py +24 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/dashboard_page.py +3 -3
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/dashboard_page_param.py +3 -3
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/job_event_body.py +4 -0
- structifyai-1.182.0/src/structify/types/parquet_edit_param.py +29 -0
- structifyai-1.182.0/src/structify/types/session_edit_node_output_params.py +14 -0
- structifyai-1.182.0/src/structify/types/session_edit_node_output_response.py +11 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/team_update_params.py +6 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/usage_group_key.py +1 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/user_info.py +4 -0
- structifyai-1.182.0/src/structify/types/wiki_list_response.py +10 -0
- structifyai-1.180.0/src/structify/types/wiki_create_response.py → structifyai-1.182.0/src/structify/types/wiki_page.py +2 -2
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/wiki_page_with_references.py +2 -18
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/workflow_run_params.py +3 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/workflow_session_node.py +2 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/api_resources/connector_catalog/test_admin.py +76 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/api_resources/test_sessions.py +153 -68
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/api_resources/test_teams.py +6 -63
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/api_resources/test_wiki.py +15 -20
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/api_resources/test_workflow.py +18 -0
- structifyai-1.182.0/tests/test_utils/test_json.py +126 -0
- structifyai-1.180.0/.release-please-manifest.json +0 -3
- structifyai-1.180.0/src/structify/resources/external.py +0 -99
- structifyai-1.180.0/src/structify/resources/external_dataframe_proxy.py +0 -290
- structifyai-1.180.0/src/structify/types/dashboard_component.py +0 -61
- structifyai-1.180.0/src/structify/types/dashboard_component_param.py +0 -68
- structifyai-1.180.0/src/structify/types/team_create_link_code_params.py +0 -11
- structifyai-1.180.0/src/structify/types/teams_link_code_response.py +0 -13
- structifyai-1.180.0/src/structify/types/wiki_list_response.py +0 -29
- structifyai-1.180.0/src/structify/types/wiki_update_response.py +0 -23
- {structifyai-1.180.0 → structifyai-1.182.0}/.gitignore +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/CONTRIBUTING.md +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/LICENSE +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/README.md +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/SECURITY.md +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/bin/check-release-environment +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/bin/publish-pypi +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/examples/.keep +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/noxfile.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/release-please-config.json +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/requirements-dev.lock +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/requirements.lock +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/__init__.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/_client.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/_constants.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/_exceptions.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/_files.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/_models.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/_qs.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/_resource.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/_streaming.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/_types.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/_utils/__init__.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/_utils/_compat.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/_utils/_datetime_parse.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/_utils/_logs.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/_utils/_proxy.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/_utils/_reflection.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/_utils/_resources_proxy.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/_utils/_streams.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/_utils/_sync.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/_utils/_transform.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/_utils/_typing.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/_utils/_utils.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/lib/.keep +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/lib/__init__.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/lib/cost_confirmation.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/pagination.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/py.typed +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/admin/__init__.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/admin/admin.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/admin/chat_templates.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/admin/connector.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/admin/dataset.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/admin/functional_tests.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/admin/jobs.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/admin/sandbox.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/admin/teams.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/admin/users.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/chat.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/code.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/connector_catalog/__init__.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/connector_catalog/connector_catalog.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/connectors/__init__.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/connectors/connectors.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/connectors/type_snippets.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/datasets/__init__.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/datasets/datasets.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/datasets/evaluate.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/documents.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/entities.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/jobs.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/match.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/nango.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/projects.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/public_sessions.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/sandbox.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/scrape.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/server.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/slack.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/sources.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/structure.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/user/__init__.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/user/api_keys.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/user/stripe.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/user/user.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/whitelabel.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/whitelabel_service.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/workflow_schedule.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/accept_invitation_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/add_member_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/admin/__init__.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/admin/admin_dataset_return.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/admin/admin_delete_jobs_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/admin/admin_list_jobs_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/admin/admin_teams_list_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/admin/cancel_subscription_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/admin/chat_template_create_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/admin/chat_template_list_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/admin/chat_template_list_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/admin/chat_template_update_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/admin/clone_connector_item_param.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/admin/clone_connectors_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/admin/connector_clone_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/admin/create_subscription_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/admin/dataset_get_by_id_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/admin/expire_grants_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/admin/extend_trial_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/admin/functional_test.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/admin/functional_test_create_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/admin/functional_test_get_results_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/admin/functional_test_link_chat_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/admin/functional_test_list_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/admin/functional_test_results_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/admin/functional_test_system_prompt_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/admin/functional_test_update_results_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/admin/grant_credits_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/admin/impersonate_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/admin/job_delete_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/admin/job_list_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/admin/sandbox_list_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/admin/sandbox_type.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/admin/team_cancel_subscription_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/admin/team_create_subscription_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/admin/team_expire_grants_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/admin/team_extend_trial_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/admin/team_grant_credits_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/admin/team_list_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/admin/user.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/admin/user_create_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/admin/user_get_stats_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/admin/user_get_stats_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/admin/user_impersonate_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/admin/user_list_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/admin_grant_access_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/admin_issue_found_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/autofix_context.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/chat_add_collaborator_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/chat_add_git_commit_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/chat_add_git_commit_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/chat_admin_issue_found_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/chat_copy_node_output_by_code_hash_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/chat_copy_node_output_by_code_hash_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/chat_copy_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/chat_delete_files_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/chat_delete_files_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/chat_dependency.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/chat_event.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/chat_get_git_commit_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/chat_get_partial_chats_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/chat_get_session_timeline_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/chat_grant_admin_override_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/chat_list_sessions_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/chat_list_templates_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/chat_load_files_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/chat_load_files_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/chat_prompt.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/chat_revert_to_commit_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/chat_revert_to_commit_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/chat_session.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/chat_session_role.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/chat_session_with_messages.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/chat_template.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/chat_update_session_favorite_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/chat_update_session_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/chat_update_visibility_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/chat_visibility.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/code_interrupt_generation_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_add_schema_object_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_add_schema_object_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_auth_method.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_auth_method_with_fields.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_catalog/__init__.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_catalog/admin_batch_create_credential_fields_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_catalog/admin_batch_create_credential_fields_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_catalog/admin_batch_create_scopes_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_catalog/admin_create_auth_method_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_catalog/admin_create_catalog_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_catalog/admin_create_credential_field_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_catalog/admin_create_scope_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_catalog/admin_list_nango_pending_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_catalog/admin_list_scopes_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_catalog/admin_update_auth_method_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_catalog/admin_update_catalog_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_catalog/admin_update_credential_field_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_catalog/admin_update_scope_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_catalog/admin_upload_logo_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_catalog/batch_create_scopes_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_catalog/connector_auth_method_scope.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_catalog/connector_catalog.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_catalog/create_credential_field_request_param.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_catalog/create_scope_request_param.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_catalog/list_scopes_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_catalog/pending_nango_integration.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_catalog/upload_logo_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_catalog_list_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_catalog_list_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_catalog_with_methods.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_category.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_create_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_create_secret_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_credential_field.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_delete_schema_object_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_explore_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_explorer_chat.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_get_clarification_requests_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_get_explorer_chat_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_get_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_list_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_list_with_snippets_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_list_with_snippets_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_search_tables_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_search_tables_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_store_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_summaries_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_summaries_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_summary.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_table_info.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_update_column_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_update_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_update_table_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_with_secrets.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connector_with_snippets.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connectors/__init__.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connectors/snippet.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/connectors/type_snippet_upsert_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/create_chat_session_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/create_match_jobs_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/create_team_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/credits_usage_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/credits_usage_timeseries_point.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/dashboard.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/dashboard_param.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/dataset_add_property_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/dataset_count_missing_embeddings_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/dataset_count_missing_embeddings_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/dataset_create_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/dataset_create_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/dataset_delete_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/dataset_descriptor.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/dataset_descriptor_param.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/dataset_enrichment_progress_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/dataset_enrichment_progress_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/dataset_export_to_csv_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/dataset_export_to_excel_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/dataset_get_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/dataset_get_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/dataset_list_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/dataset_match_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/dataset_match_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/dataset_remove_property_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/dataset_reorder_properties_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/dataset_set_primary_column_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/dataset_update_property_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/dataset_update_relationship_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/dataset_view_relationships_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/dataset_view_relationships_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/dataset_view_table_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/dataset_view_table_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/dataset_view_tables_with_relationships_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/dataset_view_tables_with_relationships_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/datasets/__init__.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/datasets/evaluate_delete_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/datasets/evaluate_get_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/datasets/evaluate_get_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/datasets/evaluate_list_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/datasets/evaluate_list_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/datasets/evaluate_run_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/datasets/evaluate_run_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/datasets/evaluate_status_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/datasets/evaluate_status_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/delete_chat_session_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/delete_project_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/delete_schema_object_request_param.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/delete_schema_object_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/delete_source_entity_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/delete_source_relationship_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/delete_team_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/document_delete_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/document_download_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/document_download_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/document_list_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/document_list_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/document_upload_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/edge_spec_param.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/entity.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/entity_add_batch_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/entity_add_batch_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/entity_add_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/entity_add_relationship_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/entity_add_relationship_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/entity_add_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/entity_agent_merge_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/entity_agent_merge_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/entity_delete_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/entity_delete_relationship_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/entity_delete_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/entity_derive_all_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/entity_derive_all_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/entity_derive_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/entity_derive_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/entity_get_local_subgraph_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/entity_get_local_subgraph_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/entity_get_merges_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/entity_get_merges_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/entity_get_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/entity_get_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/entity_get_source_entities_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/entity_get_source_entities_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/entity_list_jobs_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/entity_list_jobs_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/entity_match.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/entity_merge_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/entity_merge_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/entity_param.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/entity_search_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/entity_search_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/entity_summarize_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/entity_summarize_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/entity_trigger_merge_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/entity_trigger_merge_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/entity_update_property_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/entity_update_property_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/entity_upload_parquet_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/entity_verify_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/entity_view_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/entity_view_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/estimate_cost_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/exploration_phase_id.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/exploration_run.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/exploration_runs_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/exploration_status.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/explore_status_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/explorer_chat_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/finalize_dag_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/get_chat_session_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/get_dependencies_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/get_job_events_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/get_node_logs_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/get_node_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/get_team_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/get_workflow_schedule_sessions_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/granularity.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/image.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/invitation_details_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/job_cancel_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/job_get_scrapers_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/job_get_source_entities_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/job_list_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/job_list_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/job_status_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/job_status_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/knowledge_graph.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/knowledge_graph_param.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/list_chat_sessions_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/list_collaborators_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/list_members_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/list_projects_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/list_tables_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/list_teams_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/llm_information_store.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/match_create_jobs_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/match_list_results_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/match_result.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/merge_config.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/merge_config_param.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/message.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/nango_create_session_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/nango_create_session_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/nango_list_integrations_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/node_spec_param.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/project.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/project_collaborator_input_param.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/project_get_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/project_member.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/project_update_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/project_visibility.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/property_type.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/property_type_param.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/refresh_session_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/relationship.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/relationship_merge_strategy.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/relationship_merge_strategy_param.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/relationship_param.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/remove_member_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/sandbox.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/sandbox_get_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/sandbox_list_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/sandbox_update_status_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/save_requirement.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/save_requirement_param.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/scrape_list_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/scrape_list_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/scrape_scrape_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/scrape_scrape_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/select_team_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/server_information.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/session_confirm_node_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/session_create_session_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/session_finalize_dag_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/session_get_events_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/session_get_events_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/session_get_node_progress_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/session_kill_jobs_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/session_kill_jobs_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/session_mark_errored_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/session_request_confirmation_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/session_update_node_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/session_update_node_progress_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/session_upload_dashboard_layout_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/session_upload_node_output_data_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/session_upload_node_visualization_output_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/slack_api_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/slack_event_payload_param.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/slack_events_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/source.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/source_delete_entity_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/source_delete_relationship_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/source_list_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/source_list_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/strategy.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/strategy_param.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/structure_enhance_property_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/structure_enhance_property_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/structure_enhance_relationship_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/structure_enhance_relationship_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/structure_find_relationship_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/structure_find_relationship_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/structure_is_complete_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/structure_is_complete_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/structure_job_status_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/structure_job_status_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/structure_pdf_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/structure_pdf_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/structure_run_async_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/structure_run_async_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/survey_submission_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/table.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/table_param.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/team.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/team_accept_invitation_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/team_add_member_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/team_create_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/team_create_project_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/team_credits_usage_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/team_role.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/team_subscription_status.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/team_update_member_role_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/team_with_role.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/token_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/tool_invocation.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/tool_metadata.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/tool_result.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/update_member_role_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/update_table_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/update_team_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/update_visibility_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/user/__init__.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/user/api_key_create_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/user/api_key_info.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/user/create_api_key_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/user/create_session_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/user/list_api_keys_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/user/stripe_create_portal_session_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/user/stripe_create_session_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/user/stripe_create_subscription_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/user/subscription_plan.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/user_enrich_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/user_refresh_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/user_survey_submit_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/user_transactions_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/user_update_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/user_usage_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/user_usage_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/wiki_connector_reference.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/wiki_create_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/wiki_update_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/workflow_dag.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/workflow_node_execution_status.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/workflow_node_log.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/workflow_schedule_create_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/workflow_schedule_get_all_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/workflow_schedule_get_sessions_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/workflow_schedule_info.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/workflow_schedule_pause_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/workflow_schedule_update_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/workflow_session.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/workflow_session_edge.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structify/types/workflow_stop_params.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/src/structifyai/lib/.keep +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/__init__.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/api_resources/__init__.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/api_resources/admin/__init__.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/api_resources/admin/test_chat_templates.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/api_resources/admin/test_connector.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/api_resources/admin/test_dataset.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/api_resources/admin/test_functional_tests.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/api_resources/admin/test_jobs.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/api_resources/admin/test_sandbox.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/api_resources/admin/test_teams.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/api_resources/admin/test_users.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/api_resources/connector_catalog/__init__.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/api_resources/connectors/__init__.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/api_resources/connectors/test_type_snippets.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/api_resources/datasets/__init__.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/api_resources/datasets/test_evaluate.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/api_resources/test_chat.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/api_resources/test_code.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/api_resources/test_connector_catalog.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/api_resources/test_connectors.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/api_resources/test_dataframe.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/api_resources/test_datasets.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/api_resources/test_documents.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/api_resources/test_entities.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/api_resources/test_jobs.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/api_resources/test_match.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/api_resources/test_nango.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/api_resources/test_projects.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/api_resources/test_public_sessions.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/api_resources/test_sandbox.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/api_resources/test_scrape.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/api_resources/test_server.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/api_resources/test_slack.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/api_resources/test_sources.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/api_resources/test_structure.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/api_resources/test_user.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/api_resources/test_whitelabel.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/api_resources/test_workflow_schedule.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/api_resources/user/__init__.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/api_resources/user/test_api_keys.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/api_resources/user/test_stripe.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/conftest.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/sample_file.txt +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/test_client.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/test_deepcopy.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/test_extract_files.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/test_files.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/test_models.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/test_qs.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/test_required_args.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/test_response.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/test_streaming.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/test_transform.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/test_utils/test_datetime_parse.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/test_utils/test_proxy.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/test_utils/test_typing.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/tests/utils.py +0 -0
- {structifyai-1.180.0 → structifyai-1.182.0}/uv.lock +0 -0
|
@@ -1,5 +1,38 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.182.0 (2026-02-06)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.181.0...v1.182.0](https://github.com/StructifyAI/structify-python/compare/v1.181.0...v1.182.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* Update from Structify backend changes ([487f4d1](https://github.com/StructifyAI/structify-python/commit/487f4d125e3bd9cb091ca4eb85fb180ea6095bed))
|
|
10
|
+
* Update from Structify backend changes ([fb72c0c](https://github.com/StructifyAI/structify-python/commit/fb72c0c93fde7293278627703f5d191aa541c87b))
|
|
11
|
+
* Update from Structify backend changes ([395bfac](https://github.com/StructifyAI/structify-python/commit/395bfac86ce04152f3efee5f573c079287ae2814))
|
|
12
|
+
* Update from Structify backend changes ([0dce161](https://github.com/StructifyAI/structify-python/commit/0dce16153ee297464b24a61976acc968891e35fc))
|
|
13
|
+
* Update from Structify backend changes ([b7ff575](https://github.com/StructifyAI/structify-python/commit/b7ff575fb4de8ac6af59f27854d508fbbbb6ad11))
|
|
14
|
+
* Update from Structify backend changes ([1863e94](https://github.com/StructifyAI/structify-python/commit/1863e94930907f1915e929a73c54e4b33a8caf92))
|
|
15
|
+
* Update from Structify backend changes ([1e5a1a5](https://github.com/StructifyAI/structify-python/commit/1e5a1a5e1fe5a971c916d39a3fb24b218b81484e))
|
|
16
|
+
* Update from Structify backend changes ([4539bad](https://github.com/StructifyAI/structify-python/commit/4539bad4e9da321f8bbaecbfa9484909bf59fe52))
|
|
17
|
+
* Update from Structify backend changes ([305ddf7](https://github.com/StructifyAI/structify-python/commit/305ddf77893e5b5df1b756595501b746933a9c49))
|
|
18
|
+
* Update from Structify backend changes ([6fe38a5](https://github.com/StructifyAI/structify-python/commit/6fe38a5414abc1601c6dfa8d1956fc9043f20111))
|
|
19
|
+
* Update from Structify backend changes ([d25c643](https://github.com/StructifyAI/structify-python/commit/d25c6431bd7494dae7e87cd6782567251c1d2e0c))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Bug Fixes
|
|
23
|
+
|
|
24
|
+
* Fix cumsum tqdm bug ([cf19eaa](https://github.com/StructifyAI/structify-python/commit/cf19eaa9c9dda9c1db7c19785ae97e2dd03a6c39))
|
|
25
|
+
|
|
26
|
+
## 1.181.0 (2026-01-30)
|
|
27
|
+
|
|
28
|
+
Full Changelog: [v1.180.0...v1.181.0](https://github.com/StructifyAI/structify-python/compare/v1.180.0...v1.181.0)
|
|
29
|
+
|
|
30
|
+
### Features
|
|
31
|
+
|
|
32
|
+
* **api:** manual updates ([3c824f8](https://github.com/StructifyAI/structify-python/commit/3c824f880e168ee56e60ad638673c2734573761d))
|
|
33
|
+
* **client:** add custom JSON encoder for extended type support ([de4fa96](https://github.com/StructifyAI/structify-python/commit/de4fa96215310266b47f7c1f80b3b464d5b88a58))
|
|
34
|
+
* Update from Structify backend changes ([e690a3a](https://github.com/StructifyAI/structify-python/commit/e690a3a2d35a2e1e577124bbb233a358c7264ce0))
|
|
35
|
+
|
|
3
36
|
## 1.180.0 (2026-01-29)
|
|
4
37
|
|
|
5
38
|
Full Changelog: [v1.179.0...v1.180.0](https://github.com/StructifyAI/structify-python/compare/v1.179.0...v1.180.0)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: structifyai
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.182.0
|
|
4
4
|
Summary: The official Python library for the structify API
|
|
5
5
|
Project-URL: Homepage, https://github.com/StructifyAI/structify-python
|
|
6
6
|
Project-URL: Repository, https://github.com/StructifyAI/structify-python
|
|
@@ -186,8 +186,6 @@ from structify.types import (
|
|
|
186
186
|
TeamRole,
|
|
187
187
|
TeamSubscriptionStatus,
|
|
188
188
|
TeamWithRole,
|
|
189
|
-
TeamsLinkCodeRequest,
|
|
190
|
-
TeamsLinkCodeResponse,
|
|
191
189
|
UpdateMemberRoleRequest,
|
|
192
190
|
UpdateMemberRoleResponse,
|
|
193
191
|
UpdateTeamRequest,
|
|
@@ -204,7 +202,6 @@ Methods:
|
|
|
204
202
|
- <code title="delete /team/{team_id}">client.teams.<a href="./src/structify/resources/teams.py">delete</a>(team_id) -> <a href="./src/structify/types/delete_team_response.py">DeleteTeamResponse</a></code>
|
|
205
203
|
- <code title="post /team/invitations/accept">client.teams.<a href="./src/structify/resources/teams.py">accept_invitation</a>(\*\*<a href="src/structify/types/team_accept_invitation_params.py">params</a>) -> <a href="./src/structify/types/accept_invitation_response.py">AcceptInvitationResponse</a></code>
|
|
206
204
|
- <code title="post /team/{team_id}/members">client.teams.<a href="./src/structify/resources/teams.py">add_member</a>(team_id, \*\*<a href="src/structify/types/team_add_member_params.py">params</a>) -> <a href="./src/structify/types/add_member_response.py">AddMemberResponse</a></code>
|
|
207
|
-
- <code title="post /teams/link-code">client.teams.<a href="./src/structify/resources/teams.py">create_link_code</a>(\*\*<a href="src/structify/types/team_create_link_code_params.py">params</a>) -> <a href="./src/structify/types/teams_link_code_response.py">TeamsLinkCodeResponse</a></code>
|
|
208
205
|
- <code title="post /team/{team_id}/projects">client.teams.<a href="./src/structify/resources/teams.py">create_project</a>(team_id, \*\*<a href="src/structify/types/team_create_project_params.py">params</a>) -> <a href="./src/structify/types/project.py">Project</a></code>
|
|
209
206
|
- <code title="get /team/{team_id}/credits/usage">client.teams.<a href="./src/structify/resources/teams.py">credits_usage</a>(team_id, \*\*<a href="src/structify/types/team_credits_usage_params.py">params</a>) -> <a href="./src/structify/types/credits_usage_response.py">CreditsUsageResponse</a></code>
|
|
210
207
|
- <code title="get /team/{team_id}">client.teams.<a href="./src/structify/resources/teams.py">get</a>(team_id) -> <a href="./src/structify/types/get_team_response.py">GetTeamResponse</a></code>
|
|
@@ -224,17 +221,16 @@ from structify.types import (
|
|
|
224
221
|
CreateWikiPageRequest,
|
|
225
222
|
UpdateWikiPageRequest,
|
|
226
223
|
WikiConnectorReference,
|
|
224
|
+
WikiPage,
|
|
227
225
|
WikiPageWithReferences,
|
|
228
|
-
WikiCreateResponse,
|
|
229
|
-
WikiUpdateResponse,
|
|
230
226
|
WikiListResponse,
|
|
231
227
|
)
|
|
232
228
|
```
|
|
233
229
|
|
|
234
230
|
Methods:
|
|
235
231
|
|
|
236
|
-
- <code title="post /team/{team_id}/wiki">client.wiki.<a href="./src/structify/resources/wiki.py">create</a>(team_id, \*\*<a href="src/structify/types/wiki_create_params.py">params</a>) -> <a href="./src/structify/types/
|
|
237
|
-
- <code title="put /team/{team_id}/wiki/{slug}">client.wiki.<a href="./src/structify/resources/wiki.py">update</a>(slug, \*, team_id, \*\*<a href="src/structify/types/wiki_update_params.py">params</a>) -> <a href="./src/structify/types/
|
|
232
|
+
- <code title="post /team/{team_id}/wiki">client.wiki.<a href="./src/structify/resources/wiki.py">create</a>(team_id, \*\*<a href="src/structify/types/wiki_create_params.py">params</a>) -> <a href="./src/structify/types/wiki_page.py">WikiPage</a></code>
|
|
233
|
+
- <code title="put /team/{team_id}/wiki/{slug}">client.wiki.<a href="./src/structify/resources/wiki.py">update</a>(slug, \*, team_id, \*\*<a href="src/structify/types/wiki_update_params.py">params</a>) -> <a href="./src/structify/types/wiki_page.py">WikiPage</a></code>
|
|
238
234
|
- <code title="get /team/{team_id}/wiki">client.wiki.<a href="./src/structify/resources/wiki.py">list</a>(team_id) -> <a href="./src/structify/types/wiki_list_response.py">WikiListResponse</a></code>
|
|
239
235
|
- <code title="delete /team/{team_id}/wiki/{slug}">client.wiki.<a href="./src/structify/resources/wiki.py">delete</a>(slug, \*, team_id) -> None</code>
|
|
240
236
|
- <code title="get /team/{team_id}/wiki/{slug}">client.wiki.<a href="./src/structify/resources/wiki.py">get</a>(slug, \*, team_id) -> <a href="./src/structify/types/wiki_page_with_references.py">WikiPageWithReferences</a></code>
|
|
@@ -544,12 +540,14 @@ Types:
|
|
|
544
540
|
```python
|
|
545
541
|
from structify.types import (
|
|
546
542
|
AutofixContext,
|
|
543
|
+
CellEdit,
|
|
547
544
|
ConfirmNodeRequest,
|
|
548
545
|
CreateWorkflowSessionRequest,
|
|
549
546
|
Dashboard,
|
|
550
547
|
DashboardComponent,
|
|
551
548
|
DashboardPage,
|
|
552
549
|
EdgeSpec,
|
|
550
|
+
EditNodeOutputRequest,
|
|
553
551
|
FinalizeDagRequest,
|
|
554
552
|
FinalizeDagResponse,
|
|
555
553
|
GetNodeLogsResponse,
|
|
@@ -557,6 +555,7 @@ from structify.types import (
|
|
|
557
555
|
JobEventBody,
|
|
558
556
|
MarkWorkflowSessionErroredRequest,
|
|
559
557
|
NodeSpec,
|
|
558
|
+
ParquetEdit,
|
|
560
559
|
RequestConfirmationRequest,
|
|
561
560
|
UpdateWorkflowNodeProgressRequest,
|
|
562
561
|
UpdateWorkflowNodeRequest,
|
|
@@ -568,6 +567,7 @@ from structify.types import (
|
|
|
568
567
|
WorkflowSession,
|
|
569
568
|
WorkflowSessionEdge,
|
|
570
569
|
WorkflowSessionNode,
|
|
570
|
+
SessionEditNodeOutputResponse,
|
|
571
571
|
SessionGetEventsResponse,
|
|
572
572
|
SessionGetNodeProgressResponse,
|
|
573
573
|
SessionKillJobsResponse,
|
|
@@ -578,6 +578,7 @@ Methods:
|
|
|
578
578
|
|
|
579
579
|
- <code title="post /sessions/nodes/{node_id}/confirm">client.sessions.<a href="./src/structify/resources/sessions.py">confirm_node</a>(node_id, \*\*<a href="src/structify/types/session_confirm_node_params.py">params</a>) -> <a href="./src/structify/types/workflow_session_node.py">WorkflowSessionNode</a></code>
|
|
580
580
|
- <code title="post /sessions">client.sessions.<a href="./src/structify/resources/sessions.py">create_session</a>(\*\*<a href="src/structify/types/session_create_session_params.py">params</a>) -> <a href="./src/structify/types/workflow_session.py">WorkflowSession</a></code>
|
|
581
|
+
- <code title="post /sessions/nodes/{node_id}/edit_output">client.sessions.<a href="./src/structify/resources/sessions.py">edit_node_output</a>(node_id, \*\*<a href="src/structify/types/session_edit_node_output_params.py">params</a>) -> <a href="./src/structify/types/session_edit_node_output_response.py">SessionEditNodeOutputResponse</a></code>
|
|
581
582
|
- <code title="post /sessions/{session_id}/dag_ready">client.sessions.<a href="./src/structify/resources/sessions.py">finalize_dag</a>(session_id, \*\*<a href="src/structify/types/session_finalize_dag_params.py">params</a>) -> <a href="./src/structify/types/finalize_dag_response.py">FinalizeDagResponse</a></code>
|
|
582
583
|
- <code title="get /sessions/{session_id}/dag">client.sessions.<a href="./src/structify/resources/sessions.py">get_dag</a>(session_id) -> <a href="./src/structify/types/workflow_dag.py">WorkflowDag</a></code>
|
|
583
584
|
- <code title="get /sessions/nodes/{node_id}/events">client.sessions.<a href="./src/structify/resources/sessions.py">get_events</a>(node_id, \*\*<a href="src/structify/types/session_get_events_params.py">params</a>) -> <a href="./src/structify/types/session_get_events_response.py">SessionGetEventsResponse</a></code>
|
|
@@ -767,6 +768,7 @@ Methods:
|
|
|
767
768
|
- <code title="post /admin/connector-catalog">client.connector_catalog.admin.<a href="./src/structify/resources/connector_catalog/admin.py">create_catalog</a>(\*\*<a href="src/structify/types/connector_catalog/admin_create_catalog_params.py">params</a>) -> <a href="./src/structify/types/connector_catalog/connector_catalog.py">ConnectorCatalog</a></code>
|
|
768
769
|
- <code title="post /admin/connector-catalog/credential-fields">client.connector_catalog.admin.<a href="./src/structify/resources/connector_catalog/admin.py">create_credential_field</a>(\*\*<a href="src/structify/types/connector_catalog/admin_create_credential_field_params.py">params</a>) -> <a href="./src/structify/types/connector_credential_field.py">ConnectorCredentialField</a></code>
|
|
769
770
|
- <code title="post /admin/connector-catalog/scopes">client.connector_catalog.admin.<a href="./src/structify/resources/connector_catalog/admin.py">create_scope</a>(\*\*<a href="src/structify/types/connector_catalog/admin_create_scope_params.py">params</a>) -> <a href="./src/structify/types/connector_catalog/connector_auth_method_scope.py">ConnectorAuthMethodScope</a></code>
|
|
771
|
+
- <code title="delete /admin/connector-catalog/{id}">client.connector_catalog.admin.<a href="./src/structify/resources/connector_catalog/admin.py">delete_catalog</a>(id) -> None</code>
|
|
770
772
|
- <code title="delete /admin/connector-catalog/credential-fields/{id}">client.connector_catalog.admin.<a href="./src/structify/resources/connector_catalog/admin.py">delete_credential_field</a>(id) -> None</code>
|
|
771
773
|
- <code title="delete /admin/connector-catalog/scopes/{id}">client.connector_catalog.admin.<a href="./src/structify/resources/connector_catalog/admin.py">delete_scope</a>(id) -> None</code>
|
|
772
774
|
- <code title="get /admin/connector-catalog/nango-pending">client.connector_catalog.admin.<a href="./src/structify/resources/connector_catalog/admin.py">list_nango_pending</a>() -> <a href="./src/structify/types/connector_catalog/admin_list_nango_pending_response.py">AdminListNangoPendingResponse</a></code>
|
|
@@ -86,6 +86,7 @@ from ._exceptions import (
|
|
|
86
86
|
APIConnectionError,
|
|
87
87
|
APIResponseValidationError,
|
|
88
88
|
)
|
|
89
|
+
from ._utils._json import openapi_dumps
|
|
89
90
|
|
|
90
91
|
log: logging.Logger = logging.getLogger(__name__)
|
|
91
92
|
|
|
@@ -554,8 +555,10 @@ class BaseClient(Generic[_HttpxClientT, _DefaultStreamT]):
|
|
|
554
555
|
kwargs["content"] = options.content
|
|
555
556
|
elif isinstance(json_data, bytes):
|
|
556
557
|
kwargs["content"] = json_data
|
|
557
|
-
|
|
558
|
-
|
|
558
|
+
elif not files:
|
|
559
|
+
# Don't set content when JSON is sent as multipart/form-data,
|
|
560
|
+
# since httpx's content param overrides other body arguments
|
|
561
|
+
kwargs["content"] = openapi_dumps(json_data) if is_given(json_data) and json_data is not None else None
|
|
559
562
|
kwargs["files"] = files
|
|
560
563
|
else:
|
|
561
564
|
headers.pop("Content-Type", None)
|
|
@@ -139,6 +139,7 @@ def model_dump(
|
|
|
139
139
|
exclude_defaults: bool = False,
|
|
140
140
|
warnings: bool = True,
|
|
141
141
|
mode: Literal["json", "python"] = "python",
|
|
142
|
+
by_alias: bool | None = None,
|
|
142
143
|
) -> dict[str, Any]:
|
|
143
144
|
if (not PYDANTIC_V1) or hasattr(model, "model_dump"):
|
|
144
145
|
return model.model_dump(
|
|
@@ -148,13 +149,12 @@ def model_dump(
|
|
|
148
149
|
exclude_defaults=exclude_defaults,
|
|
149
150
|
# warnings are not supported in Pydantic v1
|
|
150
151
|
warnings=True if PYDANTIC_V1 else warnings,
|
|
152
|
+
by_alias=by_alias,
|
|
151
153
|
)
|
|
152
154
|
return cast(
|
|
153
155
|
"dict[str, Any]",
|
|
154
156
|
model.dict( # pyright: ignore[reportDeprecated, reportUnnecessaryCast]
|
|
155
|
-
exclude=exclude,
|
|
156
|
-
exclude_unset=exclude_unset,
|
|
157
|
-
exclude_defaults=exclude_defaults,
|
|
157
|
+
exclude=exclude, exclude_unset=exclude_unset, exclude_defaults=exclude_defaults, by_alias=bool(by_alias)
|
|
158
158
|
),
|
|
159
159
|
)
|
|
160
160
|
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import json
|
|
2
|
+
from typing import Any
|
|
3
|
+
from datetime import datetime
|
|
4
|
+
from typing_extensions import override
|
|
5
|
+
|
|
6
|
+
import pydantic
|
|
7
|
+
|
|
8
|
+
from .._compat import model_dump
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
def openapi_dumps(obj: Any) -> bytes:
|
|
12
|
+
"""
|
|
13
|
+
Serialize an object to UTF-8 encoded JSON bytes.
|
|
14
|
+
|
|
15
|
+
Extends the standard json.dumps with support for additional types
|
|
16
|
+
commonly used in the SDK, such as `datetime`, `pydantic.BaseModel`, etc.
|
|
17
|
+
"""
|
|
18
|
+
return json.dumps(
|
|
19
|
+
obj,
|
|
20
|
+
cls=_CustomEncoder,
|
|
21
|
+
# Uses the same defaults as httpx's JSON serialization
|
|
22
|
+
ensure_ascii=False,
|
|
23
|
+
separators=(",", ":"),
|
|
24
|
+
allow_nan=False,
|
|
25
|
+
).encode()
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
class _CustomEncoder(json.JSONEncoder):
|
|
29
|
+
@override
|
|
30
|
+
def default(self, o: Any) -> Any:
|
|
31
|
+
if isinstance(o, datetime):
|
|
32
|
+
return o.isoformat()
|
|
33
|
+
if isinstance(o, pydantic.BaseModel):
|
|
34
|
+
return model_dump(o, exclude_unset=True, mode="json", by_alias=True)
|
|
35
|
+
return super().default(o)
|
|
@@ -133,7 +133,6 @@ from .entities import (
|
|
|
133
133
|
EntitiesResourceWithStreamingResponse,
|
|
134
134
|
AsyncEntitiesResourceWithStreamingResponse,
|
|
135
135
|
)
|
|
136
|
-
from .external import ExternalResource
|
|
137
136
|
from .projects import (
|
|
138
137
|
ProjectsResource,
|
|
139
138
|
AsyncProjectsResource,
|
|
@@ -357,7 +356,6 @@ __all__ = [
|
|
|
357
356
|
"PolarsResource",
|
|
358
357
|
"PolarsResourceWithRawResponse",
|
|
359
358
|
"PolarsResourceWithStreamingResponse",
|
|
360
|
-
"ExternalResource",
|
|
361
359
|
"PublicSessionsResource",
|
|
362
360
|
"AsyncPublicSessionsResource",
|
|
363
361
|
"PublicSessionsResourceWithRawResponse",
|
{structifyai-1.180.0 → structifyai-1.182.0}/src/structify/resources/connector_catalog/admin.py
RENAMED
|
@@ -332,6 +332,38 @@ class AdminResource(SyncAPIResource):
|
|
|
332
332
|
cast_to=ConnectorAuthMethodScope,
|
|
333
333
|
)
|
|
334
334
|
|
|
335
|
+
def delete_catalog(
|
|
336
|
+
self,
|
|
337
|
+
id: str,
|
|
338
|
+
*,
|
|
339
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
340
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
341
|
+
extra_headers: Headers | None = None,
|
|
342
|
+
extra_query: Query | None = None,
|
|
343
|
+
extra_body: Body | None = None,
|
|
344
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
345
|
+
) -> None:
|
|
346
|
+
"""
|
|
347
|
+
Args:
|
|
348
|
+
extra_headers: Send extra headers
|
|
349
|
+
|
|
350
|
+
extra_query: Add additional query parameters to the request
|
|
351
|
+
|
|
352
|
+
extra_body: Add additional JSON properties to the request
|
|
353
|
+
|
|
354
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
355
|
+
"""
|
|
356
|
+
if not id:
|
|
357
|
+
raise ValueError(f"Expected a non-empty value for `id` but received {id!r}")
|
|
358
|
+
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
|
359
|
+
return self._delete(
|
|
360
|
+
f"/admin/connector-catalog/{id}",
|
|
361
|
+
options=make_request_options(
|
|
362
|
+
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
363
|
+
),
|
|
364
|
+
cast_to=NoneType,
|
|
365
|
+
)
|
|
366
|
+
|
|
335
367
|
def delete_credential_field(
|
|
336
368
|
self,
|
|
337
369
|
id: str,
|
|
@@ -956,6 +988,38 @@ class AsyncAdminResource(AsyncAPIResource):
|
|
|
956
988
|
cast_to=ConnectorAuthMethodScope,
|
|
957
989
|
)
|
|
958
990
|
|
|
991
|
+
async def delete_catalog(
|
|
992
|
+
self,
|
|
993
|
+
id: str,
|
|
994
|
+
*,
|
|
995
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
996
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
997
|
+
extra_headers: Headers | None = None,
|
|
998
|
+
extra_query: Query | None = None,
|
|
999
|
+
extra_body: Body | None = None,
|
|
1000
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
1001
|
+
) -> None:
|
|
1002
|
+
"""
|
|
1003
|
+
Args:
|
|
1004
|
+
extra_headers: Send extra headers
|
|
1005
|
+
|
|
1006
|
+
extra_query: Add additional query parameters to the request
|
|
1007
|
+
|
|
1008
|
+
extra_body: Add additional JSON properties to the request
|
|
1009
|
+
|
|
1010
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
1011
|
+
"""
|
|
1012
|
+
if not id:
|
|
1013
|
+
raise ValueError(f"Expected a non-empty value for `id` but received {id!r}")
|
|
1014
|
+
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
|
1015
|
+
return await self._delete(
|
|
1016
|
+
f"/admin/connector-catalog/{id}",
|
|
1017
|
+
options=make_request_options(
|
|
1018
|
+
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
1019
|
+
),
|
|
1020
|
+
cast_to=NoneType,
|
|
1021
|
+
)
|
|
1022
|
+
|
|
959
1023
|
async def delete_credential_field(
|
|
960
1024
|
self,
|
|
961
1025
|
id: str,
|
|
@@ -1328,6 +1392,9 @@ class AdminResourceWithRawResponse:
|
|
|
1328
1392
|
self.create_scope = to_raw_response_wrapper(
|
|
1329
1393
|
admin.create_scope,
|
|
1330
1394
|
)
|
|
1395
|
+
self.delete_catalog = to_raw_response_wrapper(
|
|
1396
|
+
admin.delete_catalog,
|
|
1397
|
+
)
|
|
1331
1398
|
self.delete_credential_field = to_raw_response_wrapper(
|
|
1332
1399
|
admin.delete_credential_field,
|
|
1333
1400
|
)
|
|
@@ -1379,6 +1446,9 @@ class AsyncAdminResourceWithRawResponse:
|
|
|
1379
1446
|
self.create_scope = async_to_raw_response_wrapper(
|
|
1380
1447
|
admin.create_scope,
|
|
1381
1448
|
)
|
|
1449
|
+
self.delete_catalog = async_to_raw_response_wrapper(
|
|
1450
|
+
admin.delete_catalog,
|
|
1451
|
+
)
|
|
1382
1452
|
self.delete_credential_field = async_to_raw_response_wrapper(
|
|
1383
1453
|
admin.delete_credential_field,
|
|
1384
1454
|
)
|
|
@@ -1430,6 +1500,9 @@ class AdminResourceWithStreamingResponse:
|
|
|
1430
1500
|
self.create_scope = to_streamed_response_wrapper(
|
|
1431
1501
|
admin.create_scope,
|
|
1432
1502
|
)
|
|
1503
|
+
self.delete_catalog = to_streamed_response_wrapper(
|
|
1504
|
+
admin.delete_catalog,
|
|
1505
|
+
)
|
|
1433
1506
|
self.delete_credential_field = to_streamed_response_wrapper(
|
|
1434
1507
|
admin.delete_credential_field,
|
|
1435
1508
|
)
|
|
@@ -1481,6 +1554,9 @@ class AsyncAdminResourceWithStreamingResponse:
|
|
|
1481
1554
|
self.create_scope = async_to_streamed_response_wrapper(
|
|
1482
1555
|
admin.create_scope,
|
|
1483
1556
|
)
|
|
1557
|
+
self.delete_catalog = async_to_streamed_response_wrapper(
|
|
1558
|
+
admin.delete_catalog,
|
|
1559
|
+
)
|
|
1484
1560
|
self.delete_credential_field = async_to_streamed_response_wrapper(
|
|
1485
1561
|
admin.delete_credential_field,
|
|
1486
1562
|
)
|
|
@@ -26,7 +26,6 @@ from .._response import (
|
|
|
26
26
|
)
|
|
27
27
|
from ..types.table_param import Property
|
|
28
28
|
from ..lib.cost_confirmation import request_cost_confirmation_if_needed
|
|
29
|
-
from .external_dataframe_proxy import ServicesProxy
|
|
30
29
|
from ..types.save_requirement_param import RequiredEntity, RequiredProperty
|
|
31
30
|
from ..types.dataset_descriptor_param import DatasetDescriptorParam
|
|
32
31
|
from ..types.structure_run_async_params import SourceWebWeb
|
|
@@ -48,11 +47,6 @@ def _collect_entities_with_job_ids(entities: Any) -> List[Dict[str, Any]]:
|
|
|
48
47
|
|
|
49
48
|
|
|
50
49
|
class PolarsResource(SyncAPIResource):
|
|
51
|
-
@cached_property
|
|
52
|
-
def external(self) -> ServicesProxy:
|
|
53
|
-
"""Access external whitelabel services with DataFrame batch processing."""
|
|
54
|
-
return ServicesProxy(self._client)
|
|
55
|
-
|
|
56
50
|
@cached_property
|
|
57
51
|
def with_raw_response(self) -> PolarsResourceWithRawResponse:
|
|
58
52
|
"""
|
|
@@ -1130,7 +1124,8 @@ class PolarsResource(SyncAPIResource):
|
|
|
1130
1124
|
while True:
|
|
1131
1125
|
remaining_embeddings = self._client.datasets.count_missing_embeddings(name=dataset_name).count
|
|
1132
1126
|
count_history.append(remaining_embeddings)
|
|
1133
|
-
tqdm_marker.
|
|
1127
|
+
tqdm_marker.n = total_embeddings - remaining_embeddings
|
|
1128
|
+
tqdm_marker.refresh()
|
|
1134
1129
|
if remaining_embeddings == 0:
|
|
1135
1130
|
break
|
|
1136
1131
|
# If we haven't updated any entities in a while, consider the embeddings as not updating and break
|
|
@@ -17,6 +17,7 @@ from ..types import (
|
|
|
17
17
|
session_finalize_dag_params,
|
|
18
18
|
session_mark_errored_params,
|
|
19
19
|
session_create_session_params,
|
|
20
|
+
session_edit_node_output_params,
|
|
20
21
|
session_request_confirmation_params,
|
|
21
22
|
session_update_node_progress_params,
|
|
22
23
|
session_upload_dashboard_layout_params,
|
|
@@ -49,12 +50,14 @@ from ..types.edge_spec_param import EdgeSpecParam
|
|
|
49
50
|
from ..types.node_spec_param import NodeSpecParam
|
|
50
51
|
from ..types.workflow_session import WorkflowSession
|
|
51
52
|
from ..types.get_node_response import GetNodeResponse
|
|
53
|
+
from ..types.parquet_edit_param import ParquetEditParam
|
|
52
54
|
from ..types.finalize_dag_response import FinalizeDagResponse
|
|
53
55
|
from ..types.workflow_session_node import WorkflowSessionNode
|
|
54
56
|
from ..types.get_node_logs_response import GetNodeLogsResponse
|
|
55
57
|
from ..types.session_kill_jobs_response import SessionKillJobsResponse
|
|
56
58
|
from ..types.session_get_events_response import SessionGetEventsResponse
|
|
57
59
|
from ..types.workflow_node_execution_status import WorkflowNodeExecutionStatus
|
|
60
|
+
from ..types.session_edit_node_output_response import SessionEditNodeOutputResponse
|
|
58
61
|
from ..types.session_get_node_progress_response import SessionGetNodeProgressResponse
|
|
59
62
|
|
|
60
63
|
__all__ = ["SessionsResource", "AsyncSessionsResource"]
|
|
@@ -150,6 +153,39 @@ class SessionsResource(SyncAPIResource):
|
|
|
150
153
|
cast_to=WorkflowSession,
|
|
151
154
|
)
|
|
152
155
|
|
|
156
|
+
def edit_node_output(
|
|
157
|
+
self,
|
|
158
|
+
node_id: str,
|
|
159
|
+
*,
|
|
160
|
+
edits: Iterable[ParquetEditParam],
|
|
161
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
162
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
163
|
+
extra_headers: Headers | None = None,
|
|
164
|
+
extra_query: Query | None = None,
|
|
165
|
+
extra_body: Body | None = None,
|
|
166
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
167
|
+
) -> SessionEditNodeOutputResponse:
|
|
168
|
+
"""
|
|
169
|
+
Args:
|
|
170
|
+
extra_headers: Send extra headers
|
|
171
|
+
|
|
172
|
+
extra_query: Add additional query parameters to the request
|
|
173
|
+
|
|
174
|
+
extra_body: Add additional JSON properties to the request
|
|
175
|
+
|
|
176
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
177
|
+
"""
|
|
178
|
+
if not node_id:
|
|
179
|
+
raise ValueError(f"Expected a non-empty value for `node_id` but received {node_id!r}")
|
|
180
|
+
return self._post(
|
|
181
|
+
f"/sessions/nodes/{node_id}/edit_output",
|
|
182
|
+
body=maybe_transform({"edits": edits}, session_edit_node_output_params.SessionEditNodeOutputParams),
|
|
183
|
+
options=make_request_options(
|
|
184
|
+
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
185
|
+
),
|
|
186
|
+
cast_to=SessionEditNodeOutputResponse,
|
|
187
|
+
)
|
|
188
|
+
|
|
153
189
|
def finalize_dag(
|
|
154
190
|
self,
|
|
155
191
|
session_id: str,
|
|
@@ -823,6 +859,41 @@ class AsyncSessionsResource(AsyncAPIResource):
|
|
|
823
859
|
cast_to=WorkflowSession,
|
|
824
860
|
)
|
|
825
861
|
|
|
862
|
+
async def edit_node_output(
|
|
863
|
+
self,
|
|
864
|
+
node_id: str,
|
|
865
|
+
*,
|
|
866
|
+
edits: Iterable[ParquetEditParam],
|
|
867
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
868
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
869
|
+
extra_headers: Headers | None = None,
|
|
870
|
+
extra_query: Query | None = None,
|
|
871
|
+
extra_body: Body | None = None,
|
|
872
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
873
|
+
) -> SessionEditNodeOutputResponse:
|
|
874
|
+
"""
|
|
875
|
+
Args:
|
|
876
|
+
extra_headers: Send extra headers
|
|
877
|
+
|
|
878
|
+
extra_query: Add additional query parameters to the request
|
|
879
|
+
|
|
880
|
+
extra_body: Add additional JSON properties to the request
|
|
881
|
+
|
|
882
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
883
|
+
"""
|
|
884
|
+
if not node_id:
|
|
885
|
+
raise ValueError(f"Expected a non-empty value for `node_id` but received {node_id!r}")
|
|
886
|
+
return await self._post(
|
|
887
|
+
f"/sessions/nodes/{node_id}/edit_output",
|
|
888
|
+
body=await async_maybe_transform(
|
|
889
|
+
{"edits": edits}, session_edit_node_output_params.SessionEditNodeOutputParams
|
|
890
|
+
),
|
|
891
|
+
options=make_request_options(
|
|
892
|
+
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
893
|
+
),
|
|
894
|
+
cast_to=SessionEditNodeOutputResponse,
|
|
895
|
+
)
|
|
896
|
+
|
|
826
897
|
async def finalize_dag(
|
|
827
898
|
self,
|
|
828
899
|
session_id: str,
|
|
@@ -1416,6 +1487,9 @@ class SessionsResourceWithRawResponse:
|
|
|
1416
1487
|
self.create_session = to_raw_response_wrapper(
|
|
1417
1488
|
sessions.create_session,
|
|
1418
1489
|
)
|
|
1490
|
+
self.edit_node_output = to_raw_response_wrapper(
|
|
1491
|
+
sessions.edit_node_output,
|
|
1492
|
+
)
|
|
1419
1493
|
self.finalize_dag = to_raw_response_wrapper(
|
|
1420
1494
|
sessions.finalize_dag,
|
|
1421
1495
|
)
|
|
@@ -1474,6 +1548,9 @@ class AsyncSessionsResourceWithRawResponse:
|
|
|
1474
1548
|
self.create_session = async_to_raw_response_wrapper(
|
|
1475
1549
|
sessions.create_session,
|
|
1476
1550
|
)
|
|
1551
|
+
self.edit_node_output = async_to_raw_response_wrapper(
|
|
1552
|
+
sessions.edit_node_output,
|
|
1553
|
+
)
|
|
1477
1554
|
self.finalize_dag = async_to_raw_response_wrapper(
|
|
1478
1555
|
sessions.finalize_dag,
|
|
1479
1556
|
)
|
|
@@ -1532,6 +1609,9 @@ class SessionsResourceWithStreamingResponse:
|
|
|
1532
1609
|
self.create_session = to_streamed_response_wrapper(
|
|
1533
1610
|
sessions.create_session,
|
|
1534
1611
|
)
|
|
1612
|
+
self.edit_node_output = to_streamed_response_wrapper(
|
|
1613
|
+
sessions.edit_node_output,
|
|
1614
|
+
)
|
|
1535
1615
|
self.finalize_dag = to_streamed_response_wrapper(
|
|
1536
1616
|
sessions.finalize_dag,
|
|
1537
1617
|
)
|
|
@@ -1590,6 +1670,9 @@ class AsyncSessionsResourceWithStreamingResponse:
|
|
|
1590
1670
|
self.create_session = async_to_streamed_response_wrapper(
|
|
1591
1671
|
sessions.create_session,
|
|
1592
1672
|
)
|
|
1673
|
+
self.edit_node_output = async_to_streamed_response_wrapper(
|
|
1674
|
+
sessions.edit_node_output,
|
|
1675
|
+
)
|
|
1593
1676
|
self.finalize_dag = async_to_streamed_response_wrapper(
|
|
1594
1677
|
sessions.finalize_dag,
|
|
1595
1678
|
)
|