structifyai 1.176.1__tar.gz → 1.178.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.178.0/.release-please-manifest.json +3 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/CHANGELOG.md +26 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/PKG-INFO +1 -1
- {structifyai-1.176.1 → structifyai-1.178.0}/api.md +18 -1
- {structifyai-1.176.1 → structifyai-1.178.0}/pyproject.toml +1 -1
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/_version.py +1 -1
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/admin/__init__.py +14 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/admin/admin.py +32 -0
- structifyai-1.178.0/src/structify/resources/admin/connector.py +176 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/code.py +9 -1
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/connector_catalog/connector_catalog.py +10 -2
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/sessions.py +17 -5
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/__init__.py +4 -2
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/admin/__init__.py +3 -0
- structifyai-1.178.0/src/structify/types/admin/clone_connector_item_param.py +15 -0
- structifyai-1.178.0/src/structify/types/admin/clone_connectors_response.py +12 -0
- structifyai-1.178.0/src/structify/types/admin/connector_clone_params.py +16 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/chat_create_session_params.py +2 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/chat_event.py +35 -1
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/code_generate_code_params.py +7 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_catalog_list_params.py +3 -0
- structifyai-1.178.0/src/structify/types/dashboard.py +24 -0
- structifyai-1.178.0/src/structify/types/dashboard_component.py +61 -0
- structifyai-1.178.0/src/structify/types/dashboard_component_param.py +68 -0
- structifyai-1.178.0/src/structify/types/dashboard_page.py +108 -0
- structifyai-1.178.0/src/structify/types/dashboard_page_param.py +106 -0
- structifyai-1.178.0/src/structify/types/dashboard_param.py +26 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/dataset_view_tables_with_relationships_response.py +4 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/job_get_scrapers_response.py +3 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/session_finalize_dag_params.py +6 -2
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/session_upload_dashboard_layout_params.py +6 -2
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/tool_result.py +21 -6
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/workflow_dag.py +6 -2
- structifyai-1.178.0/tests/api_resources/admin/test_connector.py +128 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/api_resources/test_chat.py +2 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/api_resources/test_code.py +6 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/api_resources/test_connector_catalog.py +2 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/api_resources/test_sessions.py +204 -28
- structifyai-1.176.1/.release-please-manifest.json +0 -3
- structifyai-1.176.1/src/structify/types/dashboard_component.py +0 -17
- structifyai-1.176.1/src/structify/types/dashboard_component_param.py +0 -18
- structifyai-1.176.1/src/structify/types/dashboard_layout.py +0 -16
- structifyai-1.176.1/src/structify/types/dashboard_layout_param.py +0 -18
- {structifyai-1.176.1 → structifyai-1.178.0}/.gitignore +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/CONTRIBUTING.md +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/LICENSE +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/README.md +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/SECURITY.md +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/bin/check-release-environment +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/bin/publish-pypi +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/examples/.keep +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/noxfile.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/release-please-config.json +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/requirements-dev.lock +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/requirements.lock +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/__init__.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/_base_client.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/_client.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/_compat.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/_constants.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/_exceptions.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/_files.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/_models.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/_qs.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/_resource.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/_streaming.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/_types.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/_utils/__init__.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/_utils/_compat.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/_utils/_datetime_parse.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/_utils/_logs.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/_utils/_proxy.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/_utils/_reflection.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/_utils/_resources_proxy.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/_utils/_streams.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/_utils/_sync.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/_utils/_transform.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/_utils/_typing.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/_utils/_utils.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/lib/.keep +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/lib/__init__.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/lib/cost_confirmation.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/pagination.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/py.typed +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/__init__.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/admin/chat_templates.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/admin/dataset.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/admin/functional_tests.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/admin/jobs.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/admin/sandbox.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/admin/teams.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/admin/users.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/chat.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/connector_catalog/__init__.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/connector_catalog/admin.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/connectors/__init__.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/connectors/connectors.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/connectors/type_snippets.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/datasets/__init__.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/datasets/datasets.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/datasets/evaluate.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/documents.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/entities.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/external.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/external_dataframe_proxy.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/jobs.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/match.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/nango.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/polars.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/projects.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/public_sessions.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/sandbox.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/scrape.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/server.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/slack.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/sources.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/structure.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/teams.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/user/__init__.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/user/api_keys.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/user/stripe.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/user/user.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/whitelabel.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/whitelabel_service.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/wiki.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/workflow.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/resources/workflow_schedule.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/accept_invitation_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/add_member_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/admin/admin_dataset_return.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/admin/admin_delete_jobs_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/admin/admin_list_jobs_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/admin/admin_sandbox.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/admin/admin_teams_list_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/admin/cancel_subscription_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/admin/chat_template_create_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/admin/chat_template_list_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/admin/chat_template_list_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/admin/chat_template_update_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/admin/create_subscription_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/admin/dataset_get_by_id_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/admin/expire_grants_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/admin/extend_trial_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/admin/functional_test.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/admin/functional_test_create_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/admin/functional_test_get_results_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/admin/functional_test_link_chat_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/admin/functional_test_list_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/admin/functional_test_results_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/admin/functional_test_system_prompt_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/admin/functional_test_update_results_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/admin/grant_credits_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/admin/impersonate_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/admin/job_delete_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/admin/job_list_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/admin/sandbox_list_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/admin/sandbox_type.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/admin/team_cancel_subscription_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/admin/team_create_subscription_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/admin/team_expire_grants_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/admin/team_extend_trial_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/admin/team_grant_credits_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/admin/team_list_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/admin/user.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/admin/user_create_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/admin/user_get_stats_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/admin/user_get_stats_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/admin/user_impersonate_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/admin/user_list_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/admin_grant_access_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/admin_issue_found_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/autofix_context.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/chat_add_collaborator_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/chat_add_git_commit_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/chat_add_git_commit_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/chat_admin_issue_found_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/chat_copy_node_output_by_code_hash_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/chat_copy_node_output_by_code_hash_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/chat_copy_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/chat_delete_files_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/chat_delete_files_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/chat_dependency.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/chat_get_git_commit_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/chat_get_partial_chats_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/chat_get_session_timeline_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/chat_grant_admin_override_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/chat_list_sessions_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/chat_list_templates_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/chat_load_files_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/chat_load_files_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/chat_prompt.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/chat_revert_to_commit_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/chat_revert_to_commit_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/chat_session.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/chat_session_role.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/chat_session_with_messages.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/chat_template.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/chat_update_session_favorite_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/chat_update_session_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/chat_update_visibility_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/chat_visibility.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/code_interrupt_generation_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_auth_method.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_auth_method_with_fields.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_catalog/__init__.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_catalog/admin_batch_create_credential_fields_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_catalog/admin_batch_create_credential_fields_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_catalog/admin_batch_create_scopes_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_catalog/admin_create_auth_method_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_catalog/admin_create_catalog_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_catalog/admin_create_credential_field_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_catalog/admin_create_scope_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_catalog/admin_list_nango_pending_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_catalog/admin_list_scopes_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_catalog/admin_update_auth_method_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_catalog/admin_update_catalog_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_catalog/admin_update_credential_field_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_catalog/admin_update_scope_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_catalog/admin_upload_logo_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_catalog/batch_create_scopes_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_catalog/connector_auth_method_scope.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_catalog/connector_catalog.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_catalog/create_credential_field_request_param.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_catalog/create_scope_request_param.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_catalog/list_scopes_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_catalog/pending_nango_integration.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_catalog/upload_logo_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_catalog_list_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_catalog_with_methods.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_category.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_create_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_create_secret_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_credential_field.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_delete_schema_object_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_explore_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_explorer_chat.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_get_clarification_requests_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_get_explorer_chat_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_get_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_list_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_list_with_snippets_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_list_with_snippets_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_search_tables_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_search_tables_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_store_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_summaries_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_summaries_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_summary.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_table_info.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_update_column_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_update_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_update_table_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_with_secrets.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connector_with_snippets.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connectors/__init__.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connectors/snippet.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/connectors/type_snippet_upsert_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/create_chat_session_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/create_match_jobs_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/create_team_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/credits_usage_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/credits_usage_timeseries_point.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/dataset_add_property_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/dataset_count_missing_embeddings_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/dataset_count_missing_embeddings_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/dataset_create_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/dataset_create_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/dataset_delete_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/dataset_descriptor.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/dataset_descriptor_param.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/dataset_enrichment_progress_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/dataset_enrichment_progress_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/dataset_export_to_csv_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/dataset_export_to_excel_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/dataset_get_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/dataset_get_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/dataset_list_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/dataset_match_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/dataset_match_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/dataset_remove_property_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/dataset_reorder_properties_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/dataset_set_primary_column_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/dataset_update_property_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/dataset_update_relationship_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/dataset_view_relationships_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/dataset_view_relationships_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/dataset_view_table_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/dataset_view_table_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/dataset_view_tables_with_relationships_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/datasets/__init__.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/datasets/evaluate_delete_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/datasets/evaluate_get_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/datasets/evaluate_get_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/datasets/evaluate_list_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/datasets/evaluate_list_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/datasets/evaluate_run_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/datasets/evaluate_run_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/datasets/evaluate_status_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/datasets/evaluate_status_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/delete_chat_session_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/delete_project_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/delete_schema_object_request_param.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/delete_schema_object_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/delete_source_entity_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/delete_source_relationship_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/delete_team_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/document_delete_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/document_download_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/document_download_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/document_list_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/document_list_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/document_upload_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/edge_spec_param.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/entity.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/entity_add_batch_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/entity_add_batch_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/entity_add_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/entity_add_relationship_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/entity_add_relationship_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/entity_add_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/entity_agent_merge_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/entity_agent_merge_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/entity_delete_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/entity_delete_relationship_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/entity_delete_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/entity_derive_all_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/entity_derive_all_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/entity_derive_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/entity_derive_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/entity_get_local_subgraph_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/entity_get_local_subgraph_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/entity_get_merges_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/entity_get_merges_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/entity_get_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/entity_get_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/entity_get_source_entities_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/entity_get_source_entities_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/entity_list_jobs_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/entity_list_jobs_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/entity_match.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/entity_merge_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/entity_merge_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/entity_param.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/entity_search_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/entity_search_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/entity_summarize_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/entity_summarize_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/entity_trigger_merge_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/entity_trigger_merge_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/entity_update_property_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/entity_update_property_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/entity_upload_parquet_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/entity_verify_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/entity_view_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/entity_view_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/estimate_cost_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/exploration_phase_id.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/exploration_run.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/exploration_runs_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/exploration_status.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/explore_status_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/explorer_chat_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/finalize_dag_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/get_chat_session_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/get_dependencies_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/get_job_events_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/get_node_logs_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/get_node_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/get_team_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/get_workflow_schedule_sessions_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/granularity.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/image.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/invitation_details_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/job_cancel_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/job_event_body.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/job_get_source_entities_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/job_list_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/job_list_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/job_status_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/job_status_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/knowledge_graph.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/knowledge_graph_param.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/list_chat_sessions_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/list_collaborators_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/list_members_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/list_projects_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/list_tables_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/list_teams_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/llm_information_store.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/match_create_jobs_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/match_list_results_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/match_result.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/merge_config.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/merge_config_param.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/message.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/nango_create_session_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/nango_create_session_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/nango_list_integrations_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/node_spec_param.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/project.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/project_collaborator_input_param.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/project_get_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/project_member.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/project_update_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/project_visibility.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/property_type.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/property_type_param.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/refresh_session_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/relationship.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/relationship_merge_strategy.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/relationship_merge_strategy_param.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/relationship_param.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/remove_member_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/sandbox.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/sandbox_get_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/sandbox_list_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/sandbox_update_status_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/save_requirement.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/save_requirement_param.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/scrape_list_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/scrape_list_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/scrape_scrape_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/scrape_scrape_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/select_team_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/server_information.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/session_confirm_node_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/session_create_session_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/session_get_events_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/session_get_events_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/session_get_node_progress_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/session_kill_jobs_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/session_kill_jobs_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/session_mark_errored_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/session_request_confirmation_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/session_update_node_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/session_update_node_progress_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/session_upload_node_output_data_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/session_upload_node_visualization_output_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/slack_api_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/slack_event_payload_param.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/slack_events_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/source.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/source_delete_entity_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/source_delete_relationship_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/source_list_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/source_list_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/strategy.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/strategy_param.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/structure_enhance_property_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/structure_enhance_property_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/structure_enhance_relationship_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/structure_enhance_relationship_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/structure_find_relationship_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/structure_find_relationship_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/structure_is_complete_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/structure_is_complete_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/structure_job_status_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/structure_job_status_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/structure_pdf_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/structure_pdf_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/structure_run_async_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/structure_run_async_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/survey_submission_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/table.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/table_param.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/team.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/team_accept_invitation_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/team_add_member_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/team_create_link_code_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/team_create_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/team_create_project_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/team_credits_usage_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/team_role.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/team_subscription_status.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/team_update_member_role_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/team_update_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/team_wiki_page.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/team_with_role.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/teams_link_code_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/token_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/tool_invocation.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/tool_metadata.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/update_member_role_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/update_table_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/update_team_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/update_visibility_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/usage_group_key.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/user/__init__.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/user/api_key_create_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/user/api_key_info.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/user/create_api_key_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/user/create_session_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/user/list_api_keys_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/user/stripe_create_portal_session_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/user/stripe_create_session_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/user/stripe_create_subscription_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/user/subscription_plan.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/user_enrich_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/user_info.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/user_refresh_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/user_survey_submit_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/user_transactions_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/user_update_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/user_usage_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/user_usage_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/wiki_connector_reference.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/wiki_create_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/wiki_list_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/wiki_page_with_references.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/wiki_update_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/workflow_node_execution_status.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/workflow_node_log.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/workflow_run_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/workflow_schedule_create_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/workflow_schedule_get_all_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/workflow_schedule_get_sessions_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/workflow_schedule_info.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/workflow_schedule_pause_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/workflow_schedule_update_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/workflow_session.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/workflow_session_edge.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/workflow_session_node.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structify/types/workflow_stop_params.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/src/structifyai/lib/.keep +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/__init__.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/api_resources/__init__.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/api_resources/admin/__init__.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/api_resources/admin/test_chat_templates.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/api_resources/admin/test_dataset.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/api_resources/admin/test_functional_tests.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/api_resources/admin/test_jobs.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/api_resources/admin/test_sandbox.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/api_resources/admin/test_teams.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/api_resources/admin/test_users.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/api_resources/connector_catalog/__init__.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/api_resources/connector_catalog/test_admin.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/api_resources/connectors/__init__.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/api_resources/connectors/test_type_snippets.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/api_resources/datasets/__init__.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/api_resources/datasets/test_evaluate.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/api_resources/test_connectors.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/api_resources/test_dataframe.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/api_resources/test_datasets.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/api_resources/test_documents.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/api_resources/test_entities.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/api_resources/test_jobs.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/api_resources/test_match.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/api_resources/test_nango.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/api_resources/test_projects.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/api_resources/test_public_sessions.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/api_resources/test_sandbox.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/api_resources/test_scrape.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/api_resources/test_server.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/api_resources/test_slack.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/api_resources/test_sources.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/api_resources/test_structure.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/api_resources/test_teams.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/api_resources/test_user.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/api_resources/test_whitelabel.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/api_resources/test_wiki.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/api_resources/test_workflow.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/api_resources/test_workflow_schedule.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/api_resources/user/__init__.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/api_resources/user/test_api_keys.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/api_resources/user/test_stripe.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/conftest.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/sample_file.txt +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/test_client.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/test_deepcopy.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/test_extract_files.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/test_files.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/test_models.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/test_qs.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/test_required_args.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/test_response.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/test_streaming.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/test_transform.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/test_utils/test_datetime_parse.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/test_utils/test_proxy.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/test_utils/test_typing.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/tests/utils.py +0 -0
- {structifyai-1.176.1 → structifyai-1.178.0}/uv.lock +0 -0
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.178.0 (2026-01-26)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.177.0...v1.178.0](https://github.com/StructifyAI/structify-python/compare/v1.177.0...v1.178.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* Update from Structify backend changes ([2d31df4](https://github.com/StructifyAI/structify-python/commit/2d31df48dd3cd3843c853a98ebc0a695b5cdbb68))
|
|
10
|
+
* Update from Structify backend changes ([4796618](https://github.com/StructifyAI/structify-python/commit/4796618596a7daa52cf35a9fc8e81cbb75eb8cfc))
|
|
11
|
+
* Update from Structify backend changes ([0234109](https://github.com/StructifyAI/structify-python/commit/0234109a3214829ed7060a6c3558d7a78c752fc8))
|
|
12
|
+
* Update from Structify backend changes ([bc9cacf](https://github.com/StructifyAI/structify-python/commit/bc9cacf4bfd0cb410170517a2d2e897402d790a3))
|
|
13
|
+
* Update from Structify backend changes ([62fee2a](https://github.com/StructifyAI/structify-python/commit/62fee2ae9a407318235620ad378b89ce41826475))
|
|
14
|
+
* Update from Structify backend changes ([6440ce7](https://github.com/StructifyAI/structify-python/commit/6440ce7177815277e7277e302d6f3b6aa8c25e21))
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Chores
|
|
18
|
+
|
|
19
|
+
* **ci:** upgrade `actions/github-script` ([f3c1660](https://github.com/StructifyAI/structify-python/commit/f3c16600539ceac7f13d5d6b67a2f4790473ca63))
|
|
20
|
+
|
|
21
|
+
## 1.177.0 (2026-01-21)
|
|
22
|
+
|
|
23
|
+
Full Changelog: [v1.176.1...v1.177.0](https://github.com/StructifyAI/structify-python/compare/v1.176.1...v1.177.0)
|
|
24
|
+
|
|
25
|
+
### Features
|
|
26
|
+
|
|
27
|
+
* Update from Structify backend changes ([8c3c30d](https://github.com/StructifyAI/structify-python/commit/8c3c30dee92130f413ccf51217cba47673c5964a))
|
|
28
|
+
|
|
3
29
|
## 1.176.1 (2026-01-21)
|
|
4
30
|
|
|
5
31
|
Full Changelog: [v1.176.0...v1.176.1](https://github.com/StructifyAI/structify-python/compare/v1.176.0...v1.176.1)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: structifyai
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.178.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
|
|
@@ -399,6 +399,22 @@ Methods:
|
|
|
399
399
|
- <code title="patch /admin/chat/templates/{template_id}">client.admin.chat_templates.<a href="./src/structify/resources/admin/chat_templates.py">update</a>(template_id, \*\*<a href="src/structify/types/admin/chat_template_update_params.py">params</a>) -> <a href="./src/structify/types/chat_template.py">ChatTemplate</a></code>
|
|
400
400
|
- <code title="get /admin/chat/templates">client.admin.chat_templates.<a href="./src/structify/resources/admin/chat_templates.py">list</a>(\*\*<a href="src/structify/types/admin/chat_template_list_params.py">params</a>) -> <a href="./src/structify/types/admin/chat_template_list_response.py">ChatTemplateListResponse</a></code>
|
|
401
401
|
|
|
402
|
+
## Connector
|
|
403
|
+
|
|
404
|
+
Types:
|
|
405
|
+
|
|
406
|
+
```python
|
|
407
|
+
from structify.types.admin import (
|
|
408
|
+
CloneConnectorItem,
|
|
409
|
+
CloneConnectorsRequest,
|
|
410
|
+
CloneConnectorsResponse,
|
|
411
|
+
)
|
|
412
|
+
```
|
|
413
|
+
|
|
414
|
+
Methods:
|
|
415
|
+
|
|
416
|
+
- <code title="post /admin/connector/clone">client.admin.connector.<a href="./src/structify/resources/admin/connector.py">clone</a>(\*\*<a href="src/structify/types/admin/connector_clone_params.py">params</a>) -> <a href="./src/structify/types/admin/clone_connectors_response.py">CloneConnectorsResponse</a></code>
|
|
417
|
+
|
|
402
418
|
# Datasets
|
|
403
419
|
|
|
404
420
|
Types:
|
|
@@ -529,8 +545,9 @@ from structify.types import (
|
|
|
529
545
|
AutofixContext,
|
|
530
546
|
ConfirmNodeRequest,
|
|
531
547
|
CreateWorkflowSessionRequest,
|
|
548
|
+
Dashboard,
|
|
532
549
|
DashboardComponent,
|
|
533
|
-
|
|
550
|
+
DashboardPage,
|
|
534
551
|
EdgeSpec,
|
|
535
552
|
FinalizeDagRequest,
|
|
536
553
|
FinalizeDagResponse,
|
|
@@ -48,6 +48,14 @@ from .sandbox import (
|
|
|
48
48
|
SandboxResourceWithStreamingResponse,
|
|
49
49
|
AsyncSandboxResourceWithStreamingResponse,
|
|
50
50
|
)
|
|
51
|
+
from .connector import (
|
|
52
|
+
ConnectorResource,
|
|
53
|
+
AsyncConnectorResource,
|
|
54
|
+
ConnectorResourceWithRawResponse,
|
|
55
|
+
AsyncConnectorResourceWithRawResponse,
|
|
56
|
+
ConnectorResourceWithStreamingResponse,
|
|
57
|
+
AsyncConnectorResourceWithStreamingResponse,
|
|
58
|
+
)
|
|
51
59
|
from .chat_templates import (
|
|
52
60
|
ChatTemplatesResource,
|
|
53
61
|
AsyncChatTemplatesResource,
|
|
@@ -108,6 +116,12 @@ __all__ = [
|
|
|
108
116
|
"AsyncChatTemplatesResourceWithRawResponse",
|
|
109
117
|
"ChatTemplatesResourceWithStreamingResponse",
|
|
110
118
|
"AsyncChatTemplatesResourceWithStreamingResponse",
|
|
119
|
+
"ConnectorResource",
|
|
120
|
+
"AsyncConnectorResource",
|
|
121
|
+
"ConnectorResourceWithRawResponse",
|
|
122
|
+
"AsyncConnectorResourceWithRawResponse",
|
|
123
|
+
"ConnectorResourceWithStreamingResponse",
|
|
124
|
+
"AsyncConnectorResourceWithStreamingResponse",
|
|
111
125
|
"AdminResource",
|
|
112
126
|
"AsyncAdminResource",
|
|
113
127
|
"AdminResourceWithRawResponse",
|
|
@@ -43,6 +43,14 @@ from .sandbox import (
|
|
|
43
43
|
AsyncSandboxResourceWithStreamingResponse,
|
|
44
44
|
)
|
|
45
45
|
from ..._compat import cached_property
|
|
46
|
+
from .connector import (
|
|
47
|
+
ConnectorResource,
|
|
48
|
+
AsyncConnectorResource,
|
|
49
|
+
ConnectorResourceWithRawResponse,
|
|
50
|
+
AsyncConnectorResourceWithRawResponse,
|
|
51
|
+
ConnectorResourceWithStreamingResponse,
|
|
52
|
+
AsyncConnectorResourceWithStreamingResponse,
|
|
53
|
+
)
|
|
46
54
|
from ..._resource import SyncAPIResource, AsyncAPIResource
|
|
47
55
|
from .chat_templates import (
|
|
48
56
|
ChatTemplatesResource,
|
|
@@ -93,6 +101,10 @@ class AdminResource(SyncAPIResource):
|
|
|
93
101
|
def chat_templates(self) -> ChatTemplatesResource:
|
|
94
102
|
return ChatTemplatesResource(self._client)
|
|
95
103
|
|
|
104
|
+
@cached_property
|
|
105
|
+
def connector(self) -> ConnectorResource:
|
|
106
|
+
return ConnectorResource(self._client)
|
|
107
|
+
|
|
96
108
|
@cached_property
|
|
97
109
|
def with_raw_response(self) -> AdminResourceWithRawResponse:
|
|
98
110
|
"""
|
|
@@ -142,6 +154,10 @@ class AsyncAdminResource(AsyncAPIResource):
|
|
|
142
154
|
def chat_templates(self) -> AsyncChatTemplatesResource:
|
|
143
155
|
return AsyncChatTemplatesResource(self._client)
|
|
144
156
|
|
|
157
|
+
@cached_property
|
|
158
|
+
def connector(self) -> AsyncConnectorResource:
|
|
159
|
+
return AsyncConnectorResource(self._client)
|
|
160
|
+
|
|
145
161
|
@cached_property
|
|
146
162
|
def with_raw_response(self) -> AsyncAdminResourceWithRawResponse:
|
|
147
163
|
"""
|
|
@@ -194,6 +210,10 @@ class AdminResourceWithRawResponse:
|
|
|
194
210
|
def chat_templates(self) -> ChatTemplatesResourceWithRawResponse:
|
|
195
211
|
return ChatTemplatesResourceWithRawResponse(self._admin.chat_templates)
|
|
196
212
|
|
|
213
|
+
@cached_property
|
|
214
|
+
def connector(self) -> ConnectorResourceWithRawResponse:
|
|
215
|
+
return ConnectorResourceWithRawResponse(self._admin.connector)
|
|
216
|
+
|
|
197
217
|
|
|
198
218
|
class AsyncAdminResourceWithRawResponse:
|
|
199
219
|
def __init__(self, admin: AsyncAdminResource) -> None:
|
|
@@ -227,6 +247,10 @@ class AsyncAdminResourceWithRawResponse:
|
|
|
227
247
|
def chat_templates(self) -> AsyncChatTemplatesResourceWithRawResponse:
|
|
228
248
|
return AsyncChatTemplatesResourceWithRawResponse(self._admin.chat_templates)
|
|
229
249
|
|
|
250
|
+
@cached_property
|
|
251
|
+
def connector(self) -> AsyncConnectorResourceWithRawResponse:
|
|
252
|
+
return AsyncConnectorResourceWithRawResponse(self._admin.connector)
|
|
253
|
+
|
|
230
254
|
|
|
231
255
|
class AdminResourceWithStreamingResponse:
|
|
232
256
|
def __init__(self, admin: AdminResource) -> None:
|
|
@@ -260,6 +284,10 @@ class AdminResourceWithStreamingResponse:
|
|
|
260
284
|
def chat_templates(self) -> ChatTemplatesResourceWithStreamingResponse:
|
|
261
285
|
return ChatTemplatesResourceWithStreamingResponse(self._admin.chat_templates)
|
|
262
286
|
|
|
287
|
+
@cached_property
|
|
288
|
+
def connector(self) -> ConnectorResourceWithStreamingResponse:
|
|
289
|
+
return ConnectorResourceWithStreamingResponse(self._admin.connector)
|
|
290
|
+
|
|
263
291
|
|
|
264
292
|
class AsyncAdminResourceWithStreamingResponse:
|
|
265
293
|
def __init__(self, admin: AsyncAdminResource) -> None:
|
|
@@ -292,3 +320,7 @@ class AsyncAdminResourceWithStreamingResponse:
|
|
|
292
320
|
@cached_property
|
|
293
321
|
def chat_templates(self) -> AsyncChatTemplatesResourceWithStreamingResponse:
|
|
294
322
|
return AsyncChatTemplatesResourceWithStreamingResponse(self._admin.chat_templates)
|
|
323
|
+
|
|
324
|
+
@cached_property
|
|
325
|
+
def connector(self) -> AsyncConnectorResourceWithStreamingResponse:
|
|
326
|
+
return AsyncConnectorResourceWithStreamingResponse(self._admin.connector)
|
|
@@ -0,0 +1,176 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from typing import Iterable
|
|
6
|
+
|
|
7
|
+
import httpx
|
|
8
|
+
|
|
9
|
+
from ..._types import Body, Query, Headers, NotGiven, not_given
|
|
10
|
+
from ..._utils import maybe_transform, async_maybe_transform
|
|
11
|
+
from ..._compat import cached_property
|
|
12
|
+
from ..._resource import SyncAPIResource, AsyncAPIResource
|
|
13
|
+
from ..._response import (
|
|
14
|
+
to_raw_response_wrapper,
|
|
15
|
+
to_streamed_response_wrapper,
|
|
16
|
+
async_to_raw_response_wrapper,
|
|
17
|
+
async_to_streamed_response_wrapper,
|
|
18
|
+
)
|
|
19
|
+
from ...types.admin import connector_clone_params
|
|
20
|
+
from ..._base_client import make_request_options
|
|
21
|
+
from ...types.admin.clone_connectors_response import CloneConnectorsResponse
|
|
22
|
+
from ...types.admin.clone_connector_item_param import CloneConnectorItemParam
|
|
23
|
+
|
|
24
|
+
__all__ = ["ConnectorResource", "AsyncConnectorResource"]
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
class ConnectorResource(SyncAPIResource):
|
|
28
|
+
@cached_property
|
|
29
|
+
def with_raw_response(self) -> ConnectorResourceWithRawResponse:
|
|
30
|
+
"""
|
|
31
|
+
This property can be used as a prefix for any HTTP method call to return
|
|
32
|
+
the raw response object instead of the parsed content.
|
|
33
|
+
|
|
34
|
+
For more information, see https://www.github.com/StructifyAI/structify-python#accessing-raw-response-data-eg-headers
|
|
35
|
+
"""
|
|
36
|
+
return ConnectorResourceWithRawResponse(self)
|
|
37
|
+
|
|
38
|
+
@cached_property
|
|
39
|
+
def with_streaming_response(self) -> ConnectorResourceWithStreamingResponse:
|
|
40
|
+
"""
|
|
41
|
+
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
|
|
42
|
+
|
|
43
|
+
For more information, see https://www.github.com/StructifyAI/structify-python#with_streaming_response
|
|
44
|
+
"""
|
|
45
|
+
return ConnectorResourceWithStreamingResponse(self)
|
|
46
|
+
|
|
47
|
+
def clone(
|
|
48
|
+
self,
|
|
49
|
+
*,
|
|
50
|
+
connectors: Iterable[CloneConnectorItemParam],
|
|
51
|
+
target_team_id: str,
|
|
52
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
53
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
54
|
+
extra_headers: Headers | None = None,
|
|
55
|
+
extra_query: Query | None = None,
|
|
56
|
+
extra_body: Body | None = None,
|
|
57
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
58
|
+
) -> CloneConnectorsResponse:
|
|
59
|
+
"""
|
|
60
|
+
Args:
|
|
61
|
+
extra_headers: Send extra headers
|
|
62
|
+
|
|
63
|
+
extra_query: Add additional query parameters to the request
|
|
64
|
+
|
|
65
|
+
extra_body: Add additional JSON properties to the request
|
|
66
|
+
|
|
67
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
68
|
+
"""
|
|
69
|
+
return self._post(
|
|
70
|
+
"/admin/connector/clone",
|
|
71
|
+
body=maybe_transform(
|
|
72
|
+
{
|
|
73
|
+
"connectors": connectors,
|
|
74
|
+
"target_team_id": target_team_id,
|
|
75
|
+
},
|
|
76
|
+
connector_clone_params.ConnectorCloneParams,
|
|
77
|
+
),
|
|
78
|
+
options=make_request_options(
|
|
79
|
+
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
80
|
+
),
|
|
81
|
+
cast_to=CloneConnectorsResponse,
|
|
82
|
+
)
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
class AsyncConnectorResource(AsyncAPIResource):
|
|
86
|
+
@cached_property
|
|
87
|
+
def with_raw_response(self) -> AsyncConnectorResourceWithRawResponse:
|
|
88
|
+
"""
|
|
89
|
+
This property can be used as a prefix for any HTTP method call to return
|
|
90
|
+
the raw response object instead of the parsed content.
|
|
91
|
+
|
|
92
|
+
For more information, see https://www.github.com/StructifyAI/structify-python#accessing-raw-response-data-eg-headers
|
|
93
|
+
"""
|
|
94
|
+
return AsyncConnectorResourceWithRawResponse(self)
|
|
95
|
+
|
|
96
|
+
@cached_property
|
|
97
|
+
def with_streaming_response(self) -> AsyncConnectorResourceWithStreamingResponse:
|
|
98
|
+
"""
|
|
99
|
+
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
|
|
100
|
+
|
|
101
|
+
For more information, see https://www.github.com/StructifyAI/structify-python#with_streaming_response
|
|
102
|
+
"""
|
|
103
|
+
return AsyncConnectorResourceWithStreamingResponse(self)
|
|
104
|
+
|
|
105
|
+
async def clone(
|
|
106
|
+
self,
|
|
107
|
+
*,
|
|
108
|
+
connectors: Iterable[CloneConnectorItemParam],
|
|
109
|
+
target_team_id: str,
|
|
110
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
111
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
112
|
+
extra_headers: Headers | None = None,
|
|
113
|
+
extra_query: Query | None = None,
|
|
114
|
+
extra_body: Body | None = None,
|
|
115
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
116
|
+
) -> CloneConnectorsResponse:
|
|
117
|
+
"""
|
|
118
|
+
Args:
|
|
119
|
+
extra_headers: Send extra headers
|
|
120
|
+
|
|
121
|
+
extra_query: Add additional query parameters to the request
|
|
122
|
+
|
|
123
|
+
extra_body: Add additional JSON properties to the request
|
|
124
|
+
|
|
125
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
126
|
+
"""
|
|
127
|
+
return await self._post(
|
|
128
|
+
"/admin/connector/clone",
|
|
129
|
+
body=await async_maybe_transform(
|
|
130
|
+
{
|
|
131
|
+
"connectors": connectors,
|
|
132
|
+
"target_team_id": target_team_id,
|
|
133
|
+
},
|
|
134
|
+
connector_clone_params.ConnectorCloneParams,
|
|
135
|
+
),
|
|
136
|
+
options=make_request_options(
|
|
137
|
+
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
138
|
+
),
|
|
139
|
+
cast_to=CloneConnectorsResponse,
|
|
140
|
+
)
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
class ConnectorResourceWithRawResponse:
|
|
144
|
+
def __init__(self, connector: ConnectorResource) -> None:
|
|
145
|
+
self._connector = connector
|
|
146
|
+
|
|
147
|
+
self.clone = to_raw_response_wrapper(
|
|
148
|
+
connector.clone,
|
|
149
|
+
)
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
class AsyncConnectorResourceWithRawResponse:
|
|
153
|
+
def __init__(self, connector: AsyncConnectorResource) -> None:
|
|
154
|
+
self._connector = connector
|
|
155
|
+
|
|
156
|
+
self.clone = async_to_raw_response_wrapper(
|
|
157
|
+
connector.clone,
|
|
158
|
+
)
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
class ConnectorResourceWithStreamingResponse:
|
|
162
|
+
def __init__(self, connector: ConnectorResource) -> None:
|
|
163
|
+
self._connector = connector
|
|
164
|
+
|
|
165
|
+
self.clone = to_streamed_response_wrapper(
|
|
166
|
+
connector.clone,
|
|
167
|
+
)
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
class AsyncConnectorResourceWithStreamingResponse:
|
|
171
|
+
def __init__(self, connector: AsyncConnectorResource) -> None:
|
|
172
|
+
self._connector = connector
|
|
173
|
+
|
|
174
|
+
self.clone = async_to_streamed_response_wrapper(
|
|
175
|
+
connector.clone,
|
|
176
|
+
)
|
|
@@ -7,7 +7,7 @@ from typing import Optional
|
|
|
7
7
|
import httpx
|
|
8
8
|
|
|
9
9
|
from ..types import code_generate_code_params, code_interrupt_generation_params
|
|
10
|
-
from .._types import Body, Omit, Query, Headers, NoneType, NotGiven, omit, not_given
|
|
10
|
+
from .._types import Body, Omit, Query, Headers, NoneType, NotGiven, SequenceNotStr, omit, not_given
|
|
11
11
|
from .._utils import maybe_transform, async_maybe_transform
|
|
12
12
|
from .._compat import cached_property
|
|
13
13
|
from .._resource import SyncAPIResource, AsyncAPIResource
|
|
@@ -49,6 +49,8 @@ class CodeResource(SyncAPIResource):
|
|
|
49
49
|
prompt: str,
|
|
50
50
|
assistant_message_id: Optional[str] | Omit = omit,
|
|
51
51
|
config: Optional[code_generate_code_params.Config] | Omit = omit,
|
|
52
|
+
connector_ids: SequenceNotStr[str] | Omit = omit,
|
|
53
|
+
file_paths: SequenceNotStr[str] | Omit = omit,
|
|
52
54
|
trigger_workflow_execution: bool | Omit = omit,
|
|
53
55
|
user_message_id: Optional[str] | Omit = omit,
|
|
54
56
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
@@ -83,6 +85,8 @@ class CodeResource(SyncAPIResource):
|
|
|
83
85
|
"prompt": prompt,
|
|
84
86
|
"assistant_message_id": assistant_message_id,
|
|
85
87
|
"config": config,
|
|
88
|
+
"connector_ids": connector_ids,
|
|
89
|
+
"file_paths": file_paths,
|
|
86
90
|
"trigger_workflow_execution": trigger_workflow_execution,
|
|
87
91
|
"user_message_id": user_message_id,
|
|
88
92
|
},
|
|
@@ -158,6 +162,8 @@ class AsyncCodeResource(AsyncAPIResource):
|
|
|
158
162
|
prompt: str,
|
|
159
163
|
assistant_message_id: Optional[str] | Omit = omit,
|
|
160
164
|
config: Optional[code_generate_code_params.Config] | Omit = omit,
|
|
165
|
+
connector_ids: SequenceNotStr[str] | Omit = omit,
|
|
166
|
+
file_paths: SequenceNotStr[str] | Omit = omit,
|
|
161
167
|
trigger_workflow_execution: bool | Omit = omit,
|
|
162
168
|
user_message_id: Optional[str] | Omit = omit,
|
|
163
169
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
@@ -192,6 +198,8 @@ class AsyncCodeResource(AsyncAPIResource):
|
|
|
192
198
|
"prompt": prompt,
|
|
193
199
|
"assistant_message_id": assistant_message_id,
|
|
194
200
|
"config": config,
|
|
201
|
+
"connector_ids": connector_ids,
|
|
202
|
+
"file_paths": file_paths,
|
|
195
203
|
"trigger_workflow_execution": trigger_workflow_execution,
|
|
196
204
|
"user_message_id": user_message_id,
|
|
197
205
|
},
|
|
@@ -67,6 +67,7 @@ class ConnectorCatalogResource(SyncAPIResource):
|
|
|
67
67
|
def list(
|
|
68
68
|
self,
|
|
69
69
|
*,
|
|
70
|
+
include_inactive: bool | Omit = omit,
|
|
70
71
|
limit: int | Omit = omit,
|
|
71
72
|
offset: int | Omit = omit,
|
|
72
73
|
search: Optional[str] | Omit = omit,
|
|
@@ -78,9 +79,11 @@ class ConnectorCatalogResource(SyncAPIResource):
|
|
|
78
79
|
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
79
80
|
) -> ConnectorCatalogListResponse:
|
|
80
81
|
"""
|
|
81
|
-
List all connector catalog entries with their
|
|
82
|
+
List all connector catalog entries with their auth methods and logos
|
|
82
83
|
|
|
83
84
|
Args:
|
|
85
|
+
include_inactive: Include inactive auth methods (admin only)
|
|
86
|
+
|
|
84
87
|
search: Optional search query to filter by name, slug, or category (case-insensitive
|
|
85
88
|
substring match)
|
|
86
89
|
|
|
@@ -101,6 +104,7 @@ class ConnectorCatalogResource(SyncAPIResource):
|
|
|
101
104
|
timeout=timeout,
|
|
102
105
|
query=maybe_transform(
|
|
103
106
|
{
|
|
107
|
+
"include_inactive": include_inactive,
|
|
104
108
|
"limit": limit,
|
|
105
109
|
"offset": offset,
|
|
106
110
|
"search": search,
|
|
@@ -204,6 +208,7 @@ class AsyncConnectorCatalogResource(AsyncAPIResource):
|
|
|
204
208
|
async def list(
|
|
205
209
|
self,
|
|
206
210
|
*,
|
|
211
|
+
include_inactive: bool | Omit = omit,
|
|
207
212
|
limit: int | Omit = omit,
|
|
208
213
|
offset: int | Omit = omit,
|
|
209
214
|
search: Optional[str] | Omit = omit,
|
|
@@ -215,9 +220,11 @@ class AsyncConnectorCatalogResource(AsyncAPIResource):
|
|
|
215
220
|
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
216
221
|
) -> ConnectorCatalogListResponse:
|
|
217
222
|
"""
|
|
218
|
-
List all connector catalog entries with their
|
|
223
|
+
List all connector catalog entries with their auth methods and logos
|
|
219
224
|
|
|
220
225
|
Args:
|
|
226
|
+
include_inactive: Include inactive auth methods (admin only)
|
|
227
|
+
|
|
221
228
|
search: Optional search query to filter by name, slug, or category (case-insensitive
|
|
222
229
|
substring match)
|
|
223
230
|
|
|
@@ -238,6 +245,7 @@ class AsyncConnectorCatalogResource(AsyncAPIResource):
|
|
|
238
245
|
timeout=timeout,
|
|
239
246
|
query=await async_maybe_transform(
|
|
240
247
|
{
|
|
248
|
+
"include_inactive": include_inactive,
|
|
241
249
|
"limit": limit,
|
|
242
250
|
"offset": offset,
|
|
243
251
|
"search": search,
|
|
@@ -44,13 +44,13 @@ from .._response import (
|
|
|
44
44
|
from .._base_client import make_request_options
|
|
45
45
|
from ..types.workflow_dag import WorkflowDag
|
|
46
46
|
from ..types.autofix_context import AutofixContext
|
|
47
|
+
from ..types.dashboard_param import DashboardParam
|
|
47
48
|
from ..types.edge_spec_param import EdgeSpecParam
|
|
48
49
|
from ..types.node_spec_param import NodeSpecParam
|
|
49
50
|
from ..types.workflow_session import WorkflowSession
|
|
50
51
|
from ..types.get_node_response import GetNodeResponse
|
|
51
52
|
from ..types.finalize_dag_response import FinalizeDagResponse
|
|
52
53
|
from ..types.workflow_session_node import WorkflowSessionNode
|
|
53
|
-
from ..types.dashboard_layout_param import DashboardLayoutParam
|
|
54
54
|
from ..types.get_node_logs_response import GetNodeLogsResponse
|
|
55
55
|
from ..types.session_kill_jobs_response import SessionKillJobsResponse
|
|
56
56
|
from ..types.session_get_events_response import SessionGetEventsResponse
|
|
@@ -156,7 +156,7 @@ class SessionsResource(SyncAPIResource):
|
|
|
156
156
|
*,
|
|
157
157
|
edges: Iterable[EdgeSpecParam],
|
|
158
158
|
nodes: Iterable[NodeSpecParam],
|
|
159
|
-
dashboard_layout: Optional[
|
|
159
|
+
dashboard_layout: Optional[DashboardParam] | Omit = omit,
|
|
160
160
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
161
161
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
162
162
|
extra_headers: Headers | None = None,
|
|
@@ -169,6 +169,9 @@ class SessionsResource(SyncAPIResource):
|
|
|
169
169
|
ready
|
|
170
170
|
|
|
171
171
|
Args:
|
|
172
|
+
dashboard_layout: A page is the top-level container with title/description Can contain multiple
|
|
173
|
+
dashboards with different datasets
|
|
174
|
+
|
|
172
175
|
extra_headers: Send extra headers
|
|
173
176
|
|
|
174
177
|
extra_query: Add additional query parameters to the request
|
|
@@ -611,7 +614,7 @@ class SessionsResource(SyncAPIResource):
|
|
|
611
614
|
self,
|
|
612
615
|
session_id: str,
|
|
613
616
|
*,
|
|
614
|
-
layout:
|
|
617
|
+
layout: DashboardParam,
|
|
615
618
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
616
619
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
617
620
|
extra_headers: Headers | None = None,
|
|
@@ -621,6 +624,9 @@ class SessionsResource(SyncAPIResource):
|
|
|
621
624
|
) -> WorkflowSession:
|
|
622
625
|
"""
|
|
623
626
|
Args:
|
|
627
|
+
layout: A page is the top-level container with title/description Can contain multiple
|
|
628
|
+
dashboards with different datasets
|
|
629
|
+
|
|
624
630
|
extra_headers: Send extra headers
|
|
625
631
|
|
|
626
632
|
extra_query: Add additional query parameters to the request
|
|
@@ -823,7 +829,7 @@ class AsyncSessionsResource(AsyncAPIResource):
|
|
|
823
829
|
*,
|
|
824
830
|
edges: Iterable[EdgeSpecParam],
|
|
825
831
|
nodes: Iterable[NodeSpecParam],
|
|
826
|
-
dashboard_layout: Optional[
|
|
832
|
+
dashboard_layout: Optional[DashboardParam] | Omit = omit,
|
|
827
833
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
828
834
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
829
835
|
extra_headers: Headers | None = None,
|
|
@@ -836,6 +842,9 @@ class AsyncSessionsResource(AsyncAPIResource):
|
|
|
836
842
|
ready
|
|
837
843
|
|
|
838
844
|
Args:
|
|
845
|
+
dashboard_layout: A page is the top-level container with title/description Can contain multiple
|
|
846
|
+
dashboards with different datasets
|
|
847
|
+
|
|
839
848
|
extra_headers: Send extra headers
|
|
840
849
|
|
|
841
850
|
extra_query: Add additional query parameters to the request
|
|
@@ -1278,7 +1287,7 @@ class AsyncSessionsResource(AsyncAPIResource):
|
|
|
1278
1287
|
self,
|
|
1279
1288
|
session_id: str,
|
|
1280
1289
|
*,
|
|
1281
|
-
layout:
|
|
1290
|
+
layout: DashboardParam,
|
|
1282
1291
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
1283
1292
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
1284
1293
|
extra_headers: Headers | None = None,
|
|
@@ -1288,6 +1297,9 @@ class AsyncSessionsResource(AsyncAPIResource):
|
|
|
1288
1297
|
) -> WorkflowSession:
|
|
1289
1298
|
"""
|
|
1290
1299
|
Args:
|
|
1300
|
+
layout: A page is the top-level container with title/description Can contain multiple
|
|
1301
|
+
dashboards with different datasets
|
|
1302
|
+
|
|
1291
1303
|
extra_headers: Send extra headers
|
|
1292
1304
|
|
|
1293
1305
|
extra_query: Add additional query parameters to the request
|
|
@@ -12,6 +12,7 @@ from .project import Project as Project
|
|
|
12
12
|
from .sandbox import Sandbox as Sandbox
|
|
13
13
|
from .strategy import Strategy as Strategy
|
|
14
14
|
from .connector import Connector as Connector
|
|
15
|
+
from .dashboard import Dashboard as Dashboard
|
|
15
16
|
from .team_role import TeamRole as TeamRole
|
|
16
17
|
from .user_info import UserInfo as UserInfo
|
|
17
18
|
from .chat_event import ChatEvent as ChatEvent
|
|
@@ -29,6 +30,7 @@ from .workflow_dag import WorkflowDag as WorkflowDag
|
|
|
29
30
|
from .chat_template import ChatTemplate as ChatTemplate
|
|
30
31
|
from .property_type import PropertyType as PropertyType
|
|
31
32
|
from .tool_metadata import ToolMetadata as ToolMetadata
|
|
33
|
+
from .dashboard_page import DashboardPage as DashboardPage
|
|
32
34
|
from .job_event_body import JobEventBody as JobEventBody
|
|
33
35
|
from .project_member import ProjectMember as ProjectMember
|
|
34
36
|
from .strategy_param import StrategyParam as StrategyParam
|
|
@@ -38,6 +40,7 @@ from .token_response import TokenResponse as TokenResponse
|
|
|
38
40
|
from .autofix_context import AutofixContext as AutofixContext
|
|
39
41
|
from .chat_dependency import ChatDependency as ChatDependency
|
|
40
42
|
from .chat_visibility import ChatVisibility as ChatVisibility
|
|
43
|
+
from .dashboard_param import DashboardParam as DashboardParam
|
|
41
44
|
from .edge_spec_param import EdgeSpecParam as EdgeSpecParam
|
|
42
45
|
from .exploration_run import ExplorationRun as ExplorationRun
|
|
43
46
|
from .job_list_params import JobListParams as JobListParams
|
|
@@ -46,7 +49,6 @@ from .node_spec_param import NodeSpecParam as NodeSpecParam
|
|
|
46
49
|
from .tool_invocation import ToolInvocation as ToolInvocation
|
|
47
50
|
from .usage_group_key import UsageGroupKey as UsageGroupKey
|
|
48
51
|
from .chat_copy_params import ChatCopyParams as ChatCopyParams
|
|
49
|
-
from .dashboard_layout import DashboardLayout as DashboardLayout
|
|
50
52
|
from .save_requirement import SaveRequirement as SaveRequirement
|
|
51
53
|
from .workflow_session import WorkflowSession as WorkflowSession
|
|
52
54
|
from .chat_session_role import ChatSessionRole as ChatSessionRole
|
|
@@ -95,6 +97,7 @@ from .user_usage_response import UserUsageResponse as UserUsageResponse
|
|
|
95
97
|
from .workflow_run_params import WorkflowRunParams as WorkflowRunParams
|
|
96
98
|
from .connector_table_info import ConnectorTableInfo as ConnectorTableInfo
|
|
97
99
|
from .create_team_response import CreateTeamResponse as CreateTeamResponse
|
|
100
|
+
from .dashboard_page_param import DashboardPageParam as DashboardPageParam
|
|
98
101
|
from .dataset_get_response import DatasetGetResponse as DatasetGetResponse
|
|
99
102
|
from .dataset_match_params import DatasetMatchParams as DatasetMatchParams
|
|
100
103
|
from .delete_team_response import DeleteTeamResponse as DeleteTeamResponse
|
|
@@ -133,7 +136,6 @@ from .chat_load_files_params import ChatLoadFilesParams as ChatLoadFilesParams
|
|
|
133
136
|
from .connector_get_response import ConnectorGetResponse as ConnectorGetResponse
|
|
134
137
|
from .connector_with_secrets import ConnectorWithSecrets as ConnectorWithSecrets
|
|
135
138
|
from .credits_usage_response import CreditsUsageResponse as CreditsUsageResponse
|
|
136
|
-
from .dashboard_layout_param import DashboardLayoutParam as DashboardLayoutParam
|
|
137
139
|
from .dataset_match_response import DatasetMatchResponse as DatasetMatchResponse
|
|
138
140
|
from .document_delete_params import DocumentDeleteParams as DocumentDeleteParams
|
|
139
141
|
from .document_list_response import DocumentListResponse as DocumentListResponse
|
|
@@ -16,6 +16,7 @@ from .admin_dataset_return import AdminDatasetReturn as AdminDatasetReturn
|
|
|
16
16
|
from .impersonate_response import ImpersonateResponse as ImpersonateResponse
|
|
17
17
|
from .extend_trial_response import ExtendTrialResponse as ExtendTrialResponse
|
|
18
18
|
from .user_get_stats_params import UserGetStatsParams as UserGetStatsParams
|
|
19
|
+
from .connector_clone_params import ConnectorCloneParams as ConnectorCloneParams
|
|
19
20
|
from .expire_grants_response import ExpireGrantsResponse as ExpireGrantsResponse
|
|
20
21
|
from .grant_credits_response import GrantCreditsResponse as GrantCreditsResponse
|
|
21
22
|
from .user_get_stats_response import UserGetStatsResponse as UserGetStatsResponse
|
|
@@ -25,9 +26,11 @@ from .dataset_get_by_id_params import DatasetGetByIDParams as DatasetGetByIDPara
|
|
|
25
26
|
from .team_extend_trial_params import TeamExtendTrialParams as TeamExtendTrialParams
|
|
26
27
|
from .admin_teams_list_response import AdminTeamsListResponse as AdminTeamsListResponse
|
|
27
28
|
from .chat_template_list_params import ChatTemplateListParams as ChatTemplateListParams
|
|
29
|
+
from .clone_connectors_response import CloneConnectorsResponse as CloneConnectorsResponse
|
|
28
30
|
from .team_expire_grants_params import TeamExpireGrantsParams as TeamExpireGrantsParams
|
|
29
31
|
from .team_grant_credits_params import TeamGrantCreditsParams as TeamGrantCreditsParams
|
|
30
32
|
from .admin_delete_jobs_response import AdminDeleteJobsResponse as AdminDeleteJobsResponse
|
|
33
|
+
from .clone_connector_item_param import CloneConnectorItemParam as CloneConnectorItemParam
|
|
31
34
|
from .chat_template_create_params import ChatTemplateCreateParams as ChatTemplateCreateParams
|
|
32
35
|
from .chat_template_list_response import ChatTemplateListResponse as ChatTemplateListResponse
|
|
33
36
|
from .chat_template_update_params import ChatTemplateUpdateParams as ChatTemplateUpdateParams
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from typing_extensions import Required, TypedDict
|
|
6
|
+
|
|
7
|
+
__all__ = ["CloneConnectorItemParam"]
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class CloneConnectorItemParam(TypedDict, total=False):
|
|
11
|
+
known_connector_type: Required[str]
|
|
12
|
+
|
|
13
|
+
name: Required[str]
|
|
14
|
+
|
|
15
|
+
source_connector_id: Required[str]
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from typing import List
|
|
4
|
+
|
|
5
|
+
from ..._models import BaseModel
|
|
6
|
+
from ..connector import Connector
|
|
7
|
+
|
|
8
|
+
__all__ = ["CloneConnectorsResponse"]
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class CloneConnectorsResponse(BaseModel):
|
|
12
|
+
connectors: List[Connector]
|