structifyai 1.178.0__tar.gz → 1.180.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.180.0/.release-please-manifest.json +3 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/CHANGELOG.md +33 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/PKG-INFO +1 -1
- {structifyai-1.178.0 → structifyai-1.180.0}/api.md +6 -3
- {structifyai-1.178.0 → structifyai-1.180.0}/pyproject.toml +1 -1
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/_version.py +1 -1
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/connectors/connectors.py +357 -1
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/polars.py +55 -42
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/slack.py +8 -8
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/wiki.py +23 -18
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/__init__.py +4 -1
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/chat_create_session_params.py +1 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/code_generate_code_params.py +1 -0
- structifyai-1.180.0/src/structify/types/connector_add_schema_object_params.py +59 -0
- structifyai-1.180.0/src/structify/types/connector_add_schema_object_response.py +35 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/llm_information_store.py +4 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/slack_event_payload_param.py +2 -2
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/slack_events_params.py +2 -2
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/wiki_create_params.py +1 -2
- structifyai-1.180.0/src/structify/types/wiki_create_response.py +23 -0
- structifyai-1.180.0/src/structify/types/wiki_list_response.py +29 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/wiki_page_with_references.py +18 -2
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/wiki_update_params.py +4 -2
- structifyai-1.180.0/src/structify/types/wiki_update_response.py +23 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/api_resources/test_connectors.py +497 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/api_resources/test_dataframe.py +4 -3
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/api_resources/test_slack.py +8 -2
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/api_resources/test_wiki.py +38 -35
- structifyai-1.178.0/.release-please-manifest.json +0 -3
- structifyai-1.178.0/src/structify/types/team_wiki_page.py +0 -28
- structifyai-1.178.0/src/structify/types/wiki_list_response.py +0 -10
- {structifyai-1.178.0 → structifyai-1.180.0}/.gitignore +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/CONTRIBUTING.md +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/LICENSE +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/README.md +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/SECURITY.md +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/bin/check-release-environment +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/bin/publish-pypi +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/examples/.keep +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/noxfile.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/release-please-config.json +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/requirements-dev.lock +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/requirements.lock +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/__init__.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/_base_client.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/_client.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/_compat.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/_constants.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/_exceptions.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/_files.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/_models.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/_qs.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/_resource.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/_streaming.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/_types.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/_utils/__init__.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/_utils/_compat.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/_utils/_datetime_parse.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/_utils/_logs.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/_utils/_proxy.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/_utils/_reflection.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/_utils/_resources_proxy.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/_utils/_streams.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/_utils/_sync.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/_utils/_transform.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/_utils/_typing.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/_utils/_utils.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/lib/.keep +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/lib/__init__.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/lib/cost_confirmation.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/pagination.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/py.typed +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/__init__.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/admin/__init__.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/admin/admin.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/admin/chat_templates.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/admin/connector.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/admin/dataset.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/admin/functional_tests.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/admin/jobs.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/admin/sandbox.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/admin/teams.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/admin/users.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/chat.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/code.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/connector_catalog/__init__.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/connector_catalog/admin.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/connector_catalog/connector_catalog.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/connectors/__init__.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/connectors/type_snippets.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/datasets/__init__.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/datasets/datasets.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/datasets/evaluate.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/documents.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/entities.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/external.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/external_dataframe_proxy.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/jobs.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/match.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/nango.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/projects.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/public_sessions.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/sandbox.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/scrape.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/server.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/sessions.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/sources.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/structure.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/teams.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/user/__init__.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/user/api_keys.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/user/stripe.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/user/user.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/whitelabel.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/whitelabel_service.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/workflow.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/workflow_schedule.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/accept_invitation_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/add_member_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/admin/__init__.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/admin/admin_dataset_return.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/admin/admin_delete_jobs_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/admin/admin_list_jobs_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/admin/admin_sandbox.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/admin/admin_teams_list_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/admin/cancel_subscription_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/admin/chat_template_create_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/admin/chat_template_list_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/admin/chat_template_list_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/admin/chat_template_update_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/admin/clone_connector_item_param.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/admin/clone_connectors_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/admin/connector_clone_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/admin/create_subscription_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/admin/dataset_get_by_id_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/admin/expire_grants_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/admin/extend_trial_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/admin/functional_test.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/admin/functional_test_create_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/admin/functional_test_get_results_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/admin/functional_test_link_chat_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/admin/functional_test_list_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/admin/functional_test_results_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/admin/functional_test_system_prompt_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/admin/functional_test_update_results_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/admin/grant_credits_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/admin/impersonate_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/admin/job_delete_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/admin/job_list_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/admin/sandbox_list_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/admin/sandbox_type.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/admin/team_cancel_subscription_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/admin/team_create_subscription_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/admin/team_expire_grants_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/admin/team_extend_trial_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/admin/team_grant_credits_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/admin/team_list_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/admin/user.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/admin/user_create_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/admin/user_get_stats_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/admin/user_get_stats_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/admin/user_impersonate_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/admin/user_list_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/admin_grant_access_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/admin_issue_found_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/autofix_context.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/chat_add_collaborator_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/chat_add_git_commit_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/chat_add_git_commit_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/chat_admin_issue_found_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/chat_copy_node_output_by_code_hash_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/chat_copy_node_output_by_code_hash_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/chat_copy_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/chat_delete_files_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/chat_delete_files_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/chat_dependency.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/chat_event.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/chat_get_git_commit_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/chat_get_partial_chats_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/chat_get_session_timeline_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/chat_grant_admin_override_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/chat_list_sessions_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/chat_list_templates_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/chat_load_files_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/chat_load_files_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/chat_prompt.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/chat_revert_to_commit_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/chat_revert_to_commit_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/chat_session.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/chat_session_role.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/chat_session_with_messages.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/chat_template.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/chat_update_session_favorite_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/chat_update_session_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/chat_update_visibility_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/chat_visibility.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/code_interrupt_generation_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_auth_method.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_auth_method_with_fields.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_catalog/__init__.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_catalog/admin_batch_create_credential_fields_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_catalog/admin_batch_create_credential_fields_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_catalog/admin_batch_create_scopes_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_catalog/admin_create_auth_method_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_catalog/admin_create_catalog_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_catalog/admin_create_credential_field_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_catalog/admin_create_scope_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_catalog/admin_list_nango_pending_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_catalog/admin_list_scopes_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_catalog/admin_update_auth_method_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_catalog/admin_update_catalog_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_catalog/admin_update_credential_field_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_catalog/admin_update_scope_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_catalog/admin_upload_logo_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_catalog/batch_create_scopes_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_catalog/connector_auth_method_scope.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_catalog/connector_catalog.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_catalog/create_credential_field_request_param.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_catalog/create_scope_request_param.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_catalog/list_scopes_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_catalog/pending_nango_integration.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_catalog/upload_logo_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_catalog_list_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_catalog_list_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_catalog_with_methods.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_category.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_create_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_create_secret_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_credential_field.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_delete_schema_object_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_explore_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_explorer_chat.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_get_clarification_requests_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_get_explorer_chat_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_get_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_list_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_list_with_snippets_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_list_with_snippets_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_search_tables_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_search_tables_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_store_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_summaries_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_summaries_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_summary.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_table_info.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_update_column_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_update_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_update_table_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_with_secrets.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connector_with_snippets.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connectors/__init__.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connectors/snippet.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/connectors/type_snippet_upsert_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/create_chat_session_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/create_match_jobs_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/create_team_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/credits_usage_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/credits_usage_timeseries_point.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/dashboard.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/dashboard_component.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/dashboard_component_param.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/dashboard_page.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/dashboard_page_param.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/dashboard_param.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/dataset_add_property_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/dataset_count_missing_embeddings_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/dataset_count_missing_embeddings_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/dataset_create_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/dataset_create_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/dataset_delete_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/dataset_descriptor.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/dataset_descriptor_param.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/dataset_enrichment_progress_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/dataset_enrichment_progress_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/dataset_export_to_csv_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/dataset_export_to_excel_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/dataset_get_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/dataset_get_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/dataset_list_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/dataset_match_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/dataset_match_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/dataset_remove_property_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/dataset_reorder_properties_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/dataset_set_primary_column_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/dataset_update_property_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/dataset_update_relationship_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/dataset_view_relationships_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/dataset_view_relationships_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/dataset_view_table_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/dataset_view_table_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/dataset_view_tables_with_relationships_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/dataset_view_tables_with_relationships_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/datasets/__init__.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/datasets/evaluate_delete_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/datasets/evaluate_get_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/datasets/evaluate_get_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/datasets/evaluate_list_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/datasets/evaluate_list_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/datasets/evaluate_run_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/datasets/evaluate_run_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/datasets/evaluate_status_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/datasets/evaluate_status_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/delete_chat_session_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/delete_project_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/delete_schema_object_request_param.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/delete_schema_object_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/delete_source_entity_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/delete_source_relationship_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/delete_team_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/document_delete_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/document_download_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/document_download_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/document_list_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/document_list_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/document_upload_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/edge_spec_param.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/entity.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/entity_add_batch_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/entity_add_batch_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/entity_add_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/entity_add_relationship_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/entity_add_relationship_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/entity_add_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/entity_agent_merge_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/entity_agent_merge_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/entity_delete_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/entity_delete_relationship_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/entity_delete_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/entity_derive_all_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/entity_derive_all_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/entity_derive_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/entity_derive_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/entity_get_local_subgraph_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/entity_get_local_subgraph_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/entity_get_merges_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/entity_get_merges_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/entity_get_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/entity_get_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/entity_get_source_entities_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/entity_get_source_entities_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/entity_list_jobs_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/entity_list_jobs_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/entity_match.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/entity_merge_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/entity_merge_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/entity_param.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/entity_search_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/entity_search_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/entity_summarize_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/entity_summarize_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/entity_trigger_merge_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/entity_trigger_merge_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/entity_update_property_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/entity_update_property_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/entity_upload_parquet_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/entity_verify_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/entity_view_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/entity_view_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/estimate_cost_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/exploration_phase_id.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/exploration_run.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/exploration_runs_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/exploration_status.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/explore_status_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/explorer_chat_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/finalize_dag_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/get_chat_session_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/get_dependencies_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/get_job_events_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/get_node_logs_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/get_node_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/get_team_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/get_workflow_schedule_sessions_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/granularity.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/image.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/invitation_details_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/job_cancel_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/job_event_body.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/job_get_scrapers_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/job_get_source_entities_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/job_list_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/job_list_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/job_status_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/job_status_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/knowledge_graph.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/knowledge_graph_param.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/list_chat_sessions_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/list_collaborators_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/list_members_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/list_projects_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/list_tables_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/list_teams_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/match_create_jobs_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/match_list_results_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/match_result.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/merge_config.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/merge_config_param.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/message.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/nango_create_session_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/nango_create_session_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/nango_list_integrations_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/node_spec_param.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/project.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/project_collaborator_input_param.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/project_get_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/project_member.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/project_update_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/project_visibility.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/property_type.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/property_type_param.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/refresh_session_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/relationship.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/relationship_merge_strategy.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/relationship_merge_strategy_param.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/relationship_param.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/remove_member_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/sandbox.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/sandbox_get_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/sandbox_list_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/sandbox_update_status_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/save_requirement.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/save_requirement_param.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/scrape_list_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/scrape_list_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/scrape_scrape_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/scrape_scrape_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/select_team_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/server_information.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/session_confirm_node_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/session_create_session_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/session_finalize_dag_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/session_get_events_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/session_get_events_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/session_get_node_progress_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/session_kill_jobs_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/session_kill_jobs_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/session_mark_errored_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/session_request_confirmation_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/session_update_node_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/session_update_node_progress_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/session_upload_dashboard_layout_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/session_upload_node_output_data_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/session_upload_node_visualization_output_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/slack_api_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/source.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/source_delete_entity_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/source_delete_relationship_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/source_list_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/source_list_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/strategy.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/strategy_param.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/structure_enhance_property_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/structure_enhance_property_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/structure_enhance_relationship_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/structure_enhance_relationship_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/structure_find_relationship_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/structure_find_relationship_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/structure_is_complete_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/structure_is_complete_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/structure_job_status_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/structure_job_status_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/structure_pdf_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/structure_pdf_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/structure_run_async_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/structure_run_async_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/survey_submission_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/table.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/table_param.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/team.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/team_accept_invitation_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/team_add_member_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/team_create_link_code_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/team_create_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/team_create_project_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/team_credits_usage_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/team_role.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/team_subscription_status.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/team_update_member_role_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/team_update_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/team_with_role.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/teams_link_code_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/token_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/tool_invocation.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/tool_metadata.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/tool_result.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/update_member_role_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/update_table_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/update_team_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/update_visibility_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/usage_group_key.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/user/__init__.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/user/api_key_create_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/user/api_key_info.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/user/create_api_key_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/user/create_session_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/user/list_api_keys_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/user/stripe_create_portal_session_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/user/stripe_create_session_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/user/stripe_create_subscription_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/user/subscription_plan.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/user_enrich_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/user_info.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/user_refresh_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/user_survey_submit_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/user_transactions_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/user_update_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/user_usage_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/user_usage_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/wiki_connector_reference.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/workflow_dag.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/workflow_node_execution_status.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/workflow_node_log.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/workflow_run_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/workflow_schedule_create_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/workflow_schedule_get_all_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/workflow_schedule_get_sessions_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/workflow_schedule_info.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/workflow_schedule_pause_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/workflow_schedule_update_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/workflow_session.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/workflow_session_edge.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/workflow_session_node.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structify/types/workflow_stop_params.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/src/structifyai/lib/.keep +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/__init__.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/api_resources/__init__.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/api_resources/admin/__init__.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/api_resources/admin/test_chat_templates.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/api_resources/admin/test_connector.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/api_resources/admin/test_dataset.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/api_resources/admin/test_functional_tests.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/api_resources/admin/test_jobs.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/api_resources/admin/test_sandbox.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/api_resources/admin/test_teams.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/api_resources/admin/test_users.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/api_resources/connector_catalog/__init__.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/api_resources/connector_catalog/test_admin.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/api_resources/connectors/__init__.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/api_resources/connectors/test_type_snippets.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/api_resources/datasets/__init__.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/api_resources/datasets/test_evaluate.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/api_resources/test_chat.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/api_resources/test_code.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/api_resources/test_connector_catalog.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/api_resources/test_datasets.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/api_resources/test_documents.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/api_resources/test_entities.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/api_resources/test_jobs.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/api_resources/test_match.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/api_resources/test_nango.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/api_resources/test_projects.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/api_resources/test_public_sessions.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/api_resources/test_sandbox.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/api_resources/test_scrape.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/api_resources/test_server.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/api_resources/test_sessions.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/api_resources/test_sources.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/api_resources/test_structure.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/api_resources/test_teams.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/api_resources/test_user.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/api_resources/test_whitelabel.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/api_resources/test_workflow.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/api_resources/test_workflow_schedule.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/api_resources/user/__init__.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/api_resources/user/test_api_keys.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/api_resources/user/test_stripe.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/conftest.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/sample_file.txt +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/test_client.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/test_deepcopy.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/test_extract_files.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/test_files.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/test_models.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/test_qs.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/test_required_args.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/test_response.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/test_streaming.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/test_transform.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/test_utils/test_datetime_parse.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/test_utils/test_proxy.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/test_utils/test_typing.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/tests/utils.py +0 -0
- {structifyai-1.178.0 → structifyai-1.180.0}/uv.lock +0 -0
|
@@ -1,5 +1,38 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.180.0 (2026-01-29)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.179.0...v1.180.0](https://github.com/StructifyAI/structify-python/compare/v1.179.0...v1.180.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* Update from Structify backend changes ([d74a4d4](https://github.com/StructifyAI/structify-python/commit/d74a4d49be96c8c170b6d7ada1550a6b6fa5340b))
|
|
10
|
+
* Update from Structify backend changes ([3745466](https://github.com/StructifyAI/structify-python/commit/3745466a39d2830d72e21eefa3047ecbf7fd739f))
|
|
11
|
+
* Update from Structify backend changes ([74d338b](https://github.com/StructifyAI/structify-python/commit/74d338beee91c5387250435101500f4c1802960b))
|
|
12
|
+
* Update from Structify backend changes ([365c776](https://github.com/StructifyAI/structify-python/commit/365c7767db894a3e774801ccb9667147ebce3859))
|
|
13
|
+
* Update from Structify backend changes ([c70b50e](https://github.com/StructifyAI/structify-python/commit/c70b50ec1f3440d9dbf1f45fcde3f98214728d95))
|
|
14
|
+
* Update from Structify backend changes ([1352d70](https://github.com/StructifyAI/structify-python/commit/1352d70df7f241d803af382dd82621406e101195))
|
|
15
|
+
|
|
16
|
+
## 1.179.0 (2026-01-27)
|
|
17
|
+
|
|
18
|
+
Full Changelog: [v1.178.0...v1.179.0](https://github.com/StructifyAI/structify-python/compare/v1.178.0...v1.179.0)
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* Add structify_job_id column to all polars functions ([8c6569a](https://github.com/StructifyAI/structify-python/commit/8c6569ae9f6194c4efa299eaf7056534e559a009))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Bug Fixes
|
|
26
|
+
|
|
27
|
+
* Add job_ids to mock target entities in test ([7f246dd](https://github.com/StructifyAI/structify-python/commit/7f246dd4f3e5e1a8caa068153521ab0b948c8d3c))
|
|
28
|
+
* Add type annotation to fix pyright error ([4b4697f](https://github.com/StructifyAI/structify-python/commit/4b4697f01b09b9ad2c88acac1ea0dfda9bb652b7))
|
|
29
|
+
* Add type annotation to helper function parameter ([3316e08](https://github.com/StructifyAI/structify-python/commit/3316e083d43e4c5c9eaa087130971d0929bc511a))
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
### Refactors
|
|
33
|
+
|
|
34
|
+
* Extract STRUCTIFY_JOB_ID_COLUMN constant and helper function ([6d223ae](https://github.com/StructifyAI/structify-python/commit/6d223ae5897417d60d7908cb06c456643bae76bd))
|
|
35
|
+
|
|
3
36
|
## 1.178.0 (2026-01-26)
|
|
4
37
|
|
|
5
38
|
Full Changelog: [v1.177.0...v1.178.0](https://github.com/StructifyAI/structify-python/compare/v1.177.0...v1.178.0)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: structifyai
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.180.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
|
|
@@ -222,18 +222,19 @@ Types:
|
|
|
222
222
|
```python
|
|
223
223
|
from structify.types import (
|
|
224
224
|
CreateWikiPageRequest,
|
|
225
|
-
TeamWikiPage,
|
|
226
225
|
UpdateWikiPageRequest,
|
|
227
226
|
WikiConnectorReference,
|
|
228
227
|
WikiPageWithReferences,
|
|
228
|
+
WikiCreateResponse,
|
|
229
|
+
WikiUpdateResponse,
|
|
229
230
|
WikiListResponse,
|
|
230
231
|
)
|
|
231
232
|
```
|
|
232
233
|
|
|
233
234
|
Methods:
|
|
234
235
|
|
|
235
|
-
- <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/
|
|
236
|
-
- <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/
|
|
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/wiki_create_response.py">WikiCreateResponse</a></code>
|
|
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/wiki_update_response.py">WikiUpdateResponse</a></code>
|
|
237
238
|
- <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>
|
|
238
239
|
- <code title="delete /team/{team_id}/wiki/{slug}">client.wiki.<a href="./src/structify/resources/wiki.py">delete</a>(slug, \*, team_id) -> None</code>
|
|
239
240
|
- <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>
|
|
@@ -665,6 +666,7 @@ from structify.types import (
|
|
|
665
666
|
UpdateConnectorRequest,
|
|
666
667
|
UpdateTableRequest,
|
|
667
668
|
UpdateTableResponse,
|
|
669
|
+
ConnectorAddSchemaObjectResponse,
|
|
668
670
|
ConnectorGetResponse,
|
|
669
671
|
ConnectorGetClarificationRequestsResponse,
|
|
670
672
|
ConnectorListWithSnippetsResponse,
|
|
@@ -679,6 +681,7 @@ Methods:
|
|
|
679
681
|
- <code title="patch /connectors/{connector_id}">client.connectors.<a href="./src/structify/resources/connectors/connectors.py">update</a>(connector_id, \*\*<a href="src/structify/types/connector_update_params.py">params</a>) -> None</code>
|
|
680
682
|
- <code title="get /connectors">client.connectors.<a href="./src/structify/resources/connectors/connectors.py">list</a>(\*\*<a href="src/structify/types/connector_list_params.py">params</a>) -> <a href="./src/structify/types/connector_with_secrets.py">SyncJobsList[ConnectorWithSecrets]</a></code>
|
|
681
683
|
- <code title="delete /connectors/{connector_id}">client.connectors.<a href="./src/structify/resources/connectors/connectors.py">delete</a>(connector_id) -> None</code>
|
|
684
|
+
- <code title="post /connectors/{connector_id}/schema_object">client.connectors.<a href="./src/structify/resources/connectors/connectors.py">add_schema_object</a>(connector_id, \*\*<a href="src/structify/types/connector_add_schema_object_params.py">params</a>) -> <a href="./src/structify/types/connector_add_schema_object_response.py">ConnectorAddSchemaObjectResponse</a></code>
|
|
682
685
|
- <code title="post /connectors/{connector_id}/secrets">client.connectors.<a href="./src/structify/resources/connectors/connectors.py">create_secret</a>(connector_id, \*\*<a href="src/structify/types/connector_create_secret_params.py">params</a>) -> None</code>
|
|
683
686
|
- <code title="delete /connectors/{connector_id}/schema_object">client.connectors.<a href="./src/structify/resources/connectors/connectors.py">delete_schema_object</a>(connector_id, \*\*<a href="src/structify/types/connector_delete_schema_object_params.py">params</a>) -> <a href="./src/structify/types/delete_schema_object_response.py">DeleteSchemaObjectResponse</a></code>
|
|
684
687
|
- <code title="delete /connectors/{connector_id}/secrets/{secret_name}">client.connectors.<a href="./src/structify/resources/connectors/connectors.py">delete_secret</a>(secret_name, \*, connector_id) -> None</code>
|
{structifyai-1.178.0 → structifyai-1.180.0}/src/structify/resources/connectors/connectors.py
RENAMED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing import Dict, Optional
|
|
5
|
+
from typing import Any, Dict, Optional, cast
|
|
6
6
|
from typing_extensions import Literal, overload
|
|
7
7
|
|
|
8
8
|
import httpx
|
|
@@ -17,6 +17,7 @@ from ...types import (
|
|
|
17
17
|
connector_create_secret_params,
|
|
18
18
|
connector_search_tables_params,
|
|
19
19
|
connector_update_column_params,
|
|
20
|
+
connector_add_schema_object_params,
|
|
20
21
|
connector_get_explorer_chat_params,
|
|
21
22
|
connector_list_with_snippets_params,
|
|
22
23
|
connector_delete_schema_object_params,
|
|
@@ -53,6 +54,7 @@ from ...types.exploration_runs_response import ExplorationRunsResponse
|
|
|
53
54
|
from ...types.connector_summaries_response import ConnectorSummariesResponse
|
|
54
55
|
from ...types.delete_schema_object_response import DeleteSchemaObjectResponse
|
|
55
56
|
from ...types.connector_search_tables_response import ConnectorSearchTablesResponse
|
|
57
|
+
from ...types.connector_add_schema_object_response import ConnectorAddSchemaObjectResponse
|
|
56
58
|
from ...types.connector_list_with_snippets_response import ConnectorListWithSnippetsResponse
|
|
57
59
|
from ...types.connector_get_clarification_requests_response import ConnectorGetClarificationRequestsResponse
|
|
58
60
|
|
|
@@ -270,6 +272,177 @@ class ConnectorsResource(SyncAPIResource):
|
|
|
270
272
|
cast_to=NoneType,
|
|
271
273
|
)
|
|
272
274
|
|
|
275
|
+
@overload
|
|
276
|
+
def add_schema_object(
|
|
277
|
+
self,
|
|
278
|
+
connector_id: str,
|
|
279
|
+
*,
|
|
280
|
+
name: str,
|
|
281
|
+
type: Literal["database"],
|
|
282
|
+
description: Optional[str] | Omit = omit,
|
|
283
|
+
notes: Optional[str] | Omit = omit,
|
|
284
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
285
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
286
|
+
extra_headers: Headers | None = None,
|
|
287
|
+
extra_query: Query | None = None,
|
|
288
|
+
extra_body: Body | None = None,
|
|
289
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
290
|
+
) -> ConnectorAddSchemaObjectResponse:
|
|
291
|
+
"""
|
|
292
|
+
Args:
|
|
293
|
+
extra_headers: Send extra headers
|
|
294
|
+
|
|
295
|
+
extra_query: Add additional query parameters to the request
|
|
296
|
+
|
|
297
|
+
extra_body: Add additional JSON properties to the request
|
|
298
|
+
|
|
299
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
300
|
+
"""
|
|
301
|
+
...
|
|
302
|
+
|
|
303
|
+
@overload
|
|
304
|
+
def add_schema_object(
|
|
305
|
+
self,
|
|
306
|
+
connector_id: str,
|
|
307
|
+
*,
|
|
308
|
+
database_id: str,
|
|
309
|
+
name: str,
|
|
310
|
+
type: Literal["schema"],
|
|
311
|
+
description: Optional[str] | Omit = omit,
|
|
312
|
+
notes: Optional[str] | Omit = omit,
|
|
313
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
314
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
315
|
+
extra_headers: Headers | None = None,
|
|
316
|
+
extra_query: Query | None = None,
|
|
317
|
+
extra_body: Body | None = None,
|
|
318
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
319
|
+
) -> ConnectorAddSchemaObjectResponse:
|
|
320
|
+
"""
|
|
321
|
+
Args:
|
|
322
|
+
extra_headers: Send extra headers
|
|
323
|
+
|
|
324
|
+
extra_query: Add additional query parameters to the request
|
|
325
|
+
|
|
326
|
+
extra_body: Add additional JSON properties to the request
|
|
327
|
+
|
|
328
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
329
|
+
"""
|
|
330
|
+
...
|
|
331
|
+
|
|
332
|
+
@overload
|
|
333
|
+
def add_schema_object(
|
|
334
|
+
self,
|
|
335
|
+
connector_id: str,
|
|
336
|
+
*,
|
|
337
|
+
name: str,
|
|
338
|
+
schema_id: str,
|
|
339
|
+
type: Literal["table"],
|
|
340
|
+
description: Optional[str] | Omit = omit,
|
|
341
|
+
endpoint: Optional[str] | Omit = omit,
|
|
342
|
+
notes: Optional[str] | Omit = omit,
|
|
343
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
344
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
345
|
+
extra_headers: Headers | None = None,
|
|
346
|
+
extra_query: Query | None = None,
|
|
347
|
+
extra_body: Body | None = None,
|
|
348
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
349
|
+
) -> ConnectorAddSchemaObjectResponse:
|
|
350
|
+
"""
|
|
351
|
+
Args:
|
|
352
|
+
extra_headers: Send extra headers
|
|
353
|
+
|
|
354
|
+
extra_query: Add additional query parameters to the request
|
|
355
|
+
|
|
356
|
+
extra_body: Add additional JSON properties to the request
|
|
357
|
+
|
|
358
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
359
|
+
"""
|
|
360
|
+
...
|
|
361
|
+
|
|
362
|
+
@overload
|
|
363
|
+
def add_schema_object(
|
|
364
|
+
self,
|
|
365
|
+
connector_id: str,
|
|
366
|
+
*,
|
|
367
|
+
column_type: str,
|
|
368
|
+
name: str,
|
|
369
|
+
table_id: str,
|
|
370
|
+
type: Literal["column"],
|
|
371
|
+
notes: Optional[str] | Omit = omit,
|
|
372
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
373
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
374
|
+
extra_headers: Headers | None = None,
|
|
375
|
+
extra_query: Query | None = None,
|
|
376
|
+
extra_body: Body | None = None,
|
|
377
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
378
|
+
) -> ConnectorAddSchemaObjectResponse:
|
|
379
|
+
"""
|
|
380
|
+
Args:
|
|
381
|
+
extra_headers: Send extra headers
|
|
382
|
+
|
|
383
|
+
extra_query: Add additional query parameters to the request
|
|
384
|
+
|
|
385
|
+
extra_body: Add additional JSON properties to the request
|
|
386
|
+
|
|
387
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
388
|
+
"""
|
|
389
|
+
...
|
|
390
|
+
|
|
391
|
+
@required_args(
|
|
392
|
+
["name", "type"],
|
|
393
|
+
["database_id", "name", "type"],
|
|
394
|
+
["name", "schema_id", "type"],
|
|
395
|
+
["column_type", "name", "table_id", "type"],
|
|
396
|
+
)
|
|
397
|
+
def add_schema_object(
|
|
398
|
+
self,
|
|
399
|
+
connector_id: str,
|
|
400
|
+
*,
|
|
401
|
+
name: str,
|
|
402
|
+
type: Literal["database"] | Literal["schema"] | Literal["table"] | Literal["column"],
|
|
403
|
+
description: Optional[str] | Omit = omit,
|
|
404
|
+
notes: Optional[str] | Omit = omit,
|
|
405
|
+
database_id: str | Omit = omit,
|
|
406
|
+
schema_id: str | Omit = omit,
|
|
407
|
+
endpoint: Optional[str] | Omit = omit,
|
|
408
|
+
column_type: str | Omit = omit,
|
|
409
|
+
table_id: str | Omit = omit,
|
|
410
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
411
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
412
|
+
extra_headers: Headers | None = None,
|
|
413
|
+
extra_query: Query | None = None,
|
|
414
|
+
extra_body: Body | None = None,
|
|
415
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
416
|
+
) -> ConnectorAddSchemaObjectResponse:
|
|
417
|
+
if not connector_id:
|
|
418
|
+
raise ValueError(f"Expected a non-empty value for `connector_id` but received {connector_id!r}")
|
|
419
|
+
return cast(
|
|
420
|
+
ConnectorAddSchemaObjectResponse,
|
|
421
|
+
self._post(
|
|
422
|
+
f"/connectors/{connector_id}/schema_object",
|
|
423
|
+
body=maybe_transform(
|
|
424
|
+
{
|
|
425
|
+
"name": name,
|
|
426
|
+
"type": type,
|
|
427
|
+
"description": description,
|
|
428
|
+
"notes": notes,
|
|
429
|
+
"database_id": database_id,
|
|
430
|
+
"schema_id": schema_id,
|
|
431
|
+
"endpoint": endpoint,
|
|
432
|
+
"column_type": column_type,
|
|
433
|
+
"table_id": table_id,
|
|
434
|
+
},
|
|
435
|
+
connector_add_schema_object_params.ConnectorAddSchemaObjectParams,
|
|
436
|
+
),
|
|
437
|
+
options=make_request_options(
|
|
438
|
+
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
439
|
+
),
|
|
440
|
+
cast_to=cast(
|
|
441
|
+
Any, ConnectorAddSchemaObjectResponse
|
|
442
|
+
), # Union types cannot be passed in as arguments in the type system
|
|
443
|
+
),
|
|
444
|
+
)
|
|
445
|
+
|
|
273
446
|
def create_secret(
|
|
274
447
|
self,
|
|
275
448
|
connector_id: str,
|
|
@@ -1207,6 +1380,177 @@ class AsyncConnectorsResource(AsyncAPIResource):
|
|
|
1207
1380
|
cast_to=NoneType,
|
|
1208
1381
|
)
|
|
1209
1382
|
|
|
1383
|
+
@overload
|
|
1384
|
+
async def add_schema_object(
|
|
1385
|
+
self,
|
|
1386
|
+
connector_id: str,
|
|
1387
|
+
*,
|
|
1388
|
+
name: str,
|
|
1389
|
+
type: Literal["database"],
|
|
1390
|
+
description: Optional[str] | Omit = omit,
|
|
1391
|
+
notes: Optional[str] | Omit = omit,
|
|
1392
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
1393
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
1394
|
+
extra_headers: Headers | None = None,
|
|
1395
|
+
extra_query: Query | None = None,
|
|
1396
|
+
extra_body: Body | None = None,
|
|
1397
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
1398
|
+
) -> ConnectorAddSchemaObjectResponse:
|
|
1399
|
+
"""
|
|
1400
|
+
Args:
|
|
1401
|
+
extra_headers: Send extra headers
|
|
1402
|
+
|
|
1403
|
+
extra_query: Add additional query parameters to the request
|
|
1404
|
+
|
|
1405
|
+
extra_body: Add additional JSON properties to the request
|
|
1406
|
+
|
|
1407
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
1408
|
+
"""
|
|
1409
|
+
...
|
|
1410
|
+
|
|
1411
|
+
@overload
|
|
1412
|
+
async def add_schema_object(
|
|
1413
|
+
self,
|
|
1414
|
+
connector_id: str,
|
|
1415
|
+
*,
|
|
1416
|
+
database_id: str,
|
|
1417
|
+
name: str,
|
|
1418
|
+
type: Literal["schema"],
|
|
1419
|
+
description: Optional[str] | Omit = omit,
|
|
1420
|
+
notes: Optional[str] | Omit = omit,
|
|
1421
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
1422
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
1423
|
+
extra_headers: Headers | None = None,
|
|
1424
|
+
extra_query: Query | None = None,
|
|
1425
|
+
extra_body: Body | None = None,
|
|
1426
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
1427
|
+
) -> ConnectorAddSchemaObjectResponse:
|
|
1428
|
+
"""
|
|
1429
|
+
Args:
|
|
1430
|
+
extra_headers: Send extra headers
|
|
1431
|
+
|
|
1432
|
+
extra_query: Add additional query parameters to the request
|
|
1433
|
+
|
|
1434
|
+
extra_body: Add additional JSON properties to the request
|
|
1435
|
+
|
|
1436
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
1437
|
+
"""
|
|
1438
|
+
...
|
|
1439
|
+
|
|
1440
|
+
@overload
|
|
1441
|
+
async def add_schema_object(
|
|
1442
|
+
self,
|
|
1443
|
+
connector_id: str,
|
|
1444
|
+
*,
|
|
1445
|
+
name: str,
|
|
1446
|
+
schema_id: str,
|
|
1447
|
+
type: Literal["table"],
|
|
1448
|
+
description: Optional[str] | Omit = omit,
|
|
1449
|
+
endpoint: Optional[str] | Omit = omit,
|
|
1450
|
+
notes: Optional[str] | Omit = omit,
|
|
1451
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
1452
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
1453
|
+
extra_headers: Headers | None = None,
|
|
1454
|
+
extra_query: Query | None = None,
|
|
1455
|
+
extra_body: Body | None = None,
|
|
1456
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
1457
|
+
) -> ConnectorAddSchemaObjectResponse:
|
|
1458
|
+
"""
|
|
1459
|
+
Args:
|
|
1460
|
+
extra_headers: Send extra headers
|
|
1461
|
+
|
|
1462
|
+
extra_query: Add additional query parameters to the request
|
|
1463
|
+
|
|
1464
|
+
extra_body: Add additional JSON properties to the request
|
|
1465
|
+
|
|
1466
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
1467
|
+
"""
|
|
1468
|
+
...
|
|
1469
|
+
|
|
1470
|
+
@overload
|
|
1471
|
+
async def add_schema_object(
|
|
1472
|
+
self,
|
|
1473
|
+
connector_id: str,
|
|
1474
|
+
*,
|
|
1475
|
+
column_type: str,
|
|
1476
|
+
name: str,
|
|
1477
|
+
table_id: str,
|
|
1478
|
+
type: Literal["column"],
|
|
1479
|
+
notes: Optional[str] | Omit = omit,
|
|
1480
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
1481
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
1482
|
+
extra_headers: Headers | None = None,
|
|
1483
|
+
extra_query: Query | None = None,
|
|
1484
|
+
extra_body: Body | None = None,
|
|
1485
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
1486
|
+
) -> ConnectorAddSchemaObjectResponse:
|
|
1487
|
+
"""
|
|
1488
|
+
Args:
|
|
1489
|
+
extra_headers: Send extra headers
|
|
1490
|
+
|
|
1491
|
+
extra_query: Add additional query parameters to the request
|
|
1492
|
+
|
|
1493
|
+
extra_body: Add additional JSON properties to the request
|
|
1494
|
+
|
|
1495
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
1496
|
+
"""
|
|
1497
|
+
...
|
|
1498
|
+
|
|
1499
|
+
@required_args(
|
|
1500
|
+
["name", "type"],
|
|
1501
|
+
["database_id", "name", "type"],
|
|
1502
|
+
["name", "schema_id", "type"],
|
|
1503
|
+
["column_type", "name", "table_id", "type"],
|
|
1504
|
+
)
|
|
1505
|
+
async def add_schema_object(
|
|
1506
|
+
self,
|
|
1507
|
+
connector_id: str,
|
|
1508
|
+
*,
|
|
1509
|
+
name: str,
|
|
1510
|
+
type: Literal["database"] | Literal["schema"] | Literal["table"] | Literal["column"],
|
|
1511
|
+
description: Optional[str] | Omit = omit,
|
|
1512
|
+
notes: Optional[str] | Omit = omit,
|
|
1513
|
+
database_id: str | Omit = omit,
|
|
1514
|
+
schema_id: str | Omit = omit,
|
|
1515
|
+
endpoint: Optional[str] | Omit = omit,
|
|
1516
|
+
column_type: str | Omit = omit,
|
|
1517
|
+
table_id: str | Omit = omit,
|
|
1518
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
1519
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
1520
|
+
extra_headers: Headers | None = None,
|
|
1521
|
+
extra_query: Query | None = None,
|
|
1522
|
+
extra_body: Body | None = None,
|
|
1523
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
1524
|
+
) -> ConnectorAddSchemaObjectResponse:
|
|
1525
|
+
if not connector_id:
|
|
1526
|
+
raise ValueError(f"Expected a non-empty value for `connector_id` but received {connector_id!r}")
|
|
1527
|
+
return cast(
|
|
1528
|
+
ConnectorAddSchemaObjectResponse,
|
|
1529
|
+
await self._post(
|
|
1530
|
+
f"/connectors/{connector_id}/schema_object",
|
|
1531
|
+
body=await async_maybe_transform(
|
|
1532
|
+
{
|
|
1533
|
+
"name": name,
|
|
1534
|
+
"type": type,
|
|
1535
|
+
"description": description,
|
|
1536
|
+
"notes": notes,
|
|
1537
|
+
"database_id": database_id,
|
|
1538
|
+
"schema_id": schema_id,
|
|
1539
|
+
"endpoint": endpoint,
|
|
1540
|
+
"column_type": column_type,
|
|
1541
|
+
"table_id": table_id,
|
|
1542
|
+
},
|
|
1543
|
+
connector_add_schema_object_params.ConnectorAddSchemaObjectParams,
|
|
1544
|
+
),
|
|
1545
|
+
options=make_request_options(
|
|
1546
|
+
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
1547
|
+
),
|
|
1548
|
+
cast_to=cast(
|
|
1549
|
+
Any, ConnectorAddSchemaObjectResponse
|
|
1550
|
+
), # Union types cannot be passed in as arguments in the type system
|
|
1551
|
+
),
|
|
1552
|
+
)
|
|
1553
|
+
|
|
1210
1554
|
async def create_secret(
|
|
1211
1555
|
self,
|
|
1212
1556
|
connector_id: str,
|
|
@@ -1951,6 +2295,9 @@ class ConnectorsResourceWithRawResponse:
|
|
|
1951
2295
|
self.delete = to_raw_response_wrapper(
|
|
1952
2296
|
connectors.delete,
|
|
1953
2297
|
)
|
|
2298
|
+
self.add_schema_object = to_raw_response_wrapper(
|
|
2299
|
+
connectors.add_schema_object,
|
|
2300
|
+
)
|
|
1954
2301
|
self.create_secret = to_raw_response_wrapper(
|
|
1955
2302
|
connectors.create_secret,
|
|
1956
2303
|
)
|
|
@@ -2024,6 +2371,9 @@ class AsyncConnectorsResourceWithRawResponse:
|
|
|
2024
2371
|
self.delete = async_to_raw_response_wrapper(
|
|
2025
2372
|
connectors.delete,
|
|
2026
2373
|
)
|
|
2374
|
+
self.add_schema_object = async_to_raw_response_wrapper(
|
|
2375
|
+
connectors.add_schema_object,
|
|
2376
|
+
)
|
|
2027
2377
|
self.create_secret = async_to_raw_response_wrapper(
|
|
2028
2378
|
connectors.create_secret,
|
|
2029
2379
|
)
|
|
@@ -2097,6 +2447,9 @@ class ConnectorsResourceWithStreamingResponse:
|
|
|
2097
2447
|
self.delete = to_streamed_response_wrapper(
|
|
2098
2448
|
connectors.delete,
|
|
2099
2449
|
)
|
|
2450
|
+
self.add_schema_object = to_streamed_response_wrapper(
|
|
2451
|
+
connectors.add_schema_object,
|
|
2452
|
+
)
|
|
2100
2453
|
self.create_secret = to_streamed_response_wrapper(
|
|
2101
2454
|
connectors.create_secret,
|
|
2102
2455
|
)
|
|
@@ -2170,6 +2523,9 @@ class AsyncConnectorsResourceWithStreamingResponse:
|
|
|
2170
2523
|
self.delete = async_to_streamed_response_wrapper(
|
|
2171
2524
|
connectors.delete,
|
|
2172
2525
|
)
|
|
2526
|
+
self.add_schema_object = async_to_streamed_response_wrapper(
|
|
2527
|
+
connectors.add_schema_object,
|
|
2528
|
+
)
|
|
2173
2529
|
self.create_secret = async_to_streamed_response_wrapper(
|
|
2174
2530
|
connectors.create_secret,
|
|
2175
2531
|
)
|