ksapi 2.4.3__tar.gz → 2.6.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.
- {ksapi-2.4.3 → ksapi-2.6.0}/PKG-INFO +1 -1
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/__init__.py +11 -1
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/api/__init__.py +1 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/api/documents_api.py +49 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/api/system_jobs_api.py +3 -3
- ksapi-2.6.0/ksapi/api/tenant_invitations_api.py +329 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/api/tenants_api.py +3 -3
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/api_client.py +1 -1
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/configuration.py +1 -1
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/__init__.py +4 -0
- ksapi-2.6.0/ksapi/models/accept_tenant_invitation_request.py +101 -0
- ksapi-2.6.0/ksapi/models/accept_tenant_invitation_response.py +93 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/chunk_metadata.py +15 -1
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/create_upload_request.py +23 -2
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/document_version_metadata.py +12 -1
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/document_version_metadata_update.py +12 -1
- ksapi-2.6.0/ksapi/models/email_metadata.py +153 -0
- ksapi-2.6.0/ksapi/models/email_party.py +103 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/event_response.py +8 -1
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/image_taxonomy.py +1 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/ingest_document_response.py +25 -4
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/segment_span.py +11 -4
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi.egg-info/PKG-INFO +1 -1
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi.egg-info/SOURCES.txt +10 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/pyproject.toml +1 -1
- {ksapi-2.4.3 → ksapi-2.6.0}/setup.py +1 -1
- ksapi-2.6.0/test/test_accept_tenant_invitation_request.py +52 -0
- ksapi-2.6.0/test/test_accept_tenant_invitation_response.py +56 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_chunk_bulk_response.py +16 -2
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_chunk_content_item.py +8 -1
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_chunk_metadata.py +8 -1
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_chunk_response.py +16 -2
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_create_chunk_request.py +16 -2
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_create_upload_request.py +4 -1
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_document_response.py +2 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_document_version_metadata.py +25 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_document_version_metadata_update.py +25 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_document_version_response.py +1 -0
- ksapi-2.6.0/test/test_email_metadata.py +78 -0
- ksapi-2.6.0/test/test_email_party.py +53 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_event_response.py +1 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_folder_response_or_document_response_or_workflow_definition_response_or_workflow_run_response_or_data_source_response_or_data_source_schema_r.py +2 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_ingest_document_response.py +4 -1
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_lineage_graph_response.py +16 -2
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_lineage_node_response.py +16 -2
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_paginated_response_document_response.py +2 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_paginated_response_document_version_response.py +2 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_paginated_response_event_response.py +2 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_scored_chunk_response.py +16 -2
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_section_content_item_or_chunk_content_item.py +8 -1
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_segment_span.py +2 -1
- ksapi-2.6.0/test/test_tenant_invitations_api.py +38 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_update_chunk_metadata_request.py +8 -1
- {ksapi-2.4.3 → ksapi-2.6.0}/README.md +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/api/admin_kb_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/api/admin_workflows_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/api/agent_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/api/api_connections_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/api/api_keys_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/api/audit_events_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/api/auth_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/api/billing_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/api/bulk_delete_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/api/bulk_download_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/api/bulk_move_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/api/chunk_lineages_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/api/chunks_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/api/data_sources_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/api/default_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/api/document_checkout_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/api/document_versions_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/api/features_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/api/feedback_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/api/folders_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/api/invites_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/api/memory_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/api/path_part_approvals_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/api/path_parts_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/api/public_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/api/sections_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/api/skills_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/api/subscriptions_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/api/tags_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/api/tenant_groups_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/api/thread_messages_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/api/threads_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/api/trash_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/api/user_permissions_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/api/users_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/api/workflow_definitions_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/api/workflow_memory_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/api/workflow_runs_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/api_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/exceptions.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/accept_disclaimer_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/accept_invite_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/access_check_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/activate_skill_version_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/add_member_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/ancestry_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/api_auth_config.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/api_connection_request_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/api_connection_request_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/api_connection_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/api_key_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/append_event_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/append_memory_chunk_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/args.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/ask_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/ask_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/billing_interval.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/billing_payment_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/billing_system.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/block_change_type.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/block_kind.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/branding_logo_type.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/bulk_delete_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/bulk_download_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/bulk_failure_reason.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/bulk_grant_item.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/bulk_grant_item_failure.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/bulk_grant_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/bulk_grant_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/bulk_grant_success.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/bulk_item_failure.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/bulk_model_tables_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/bulk_model_tables_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/bulk_move_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/bulk_operation_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/bulk_revoke_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/bulk_tag_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/bulk_trash_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/catalog_column_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/catalog_table_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/cell_change.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/cell_change_type.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/cell_diff.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/change_class.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/change_phone_number_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/change_subscription_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/checkout_action.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/checkout_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/checkpoint_details.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/chunk_bulk_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/chunk_content_item.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/chunk_document_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/chunk_document_version_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/chunk_lineage_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/chunk_neighbors_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/chunk_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/chunk_search_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/chunk_type.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/citation.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/cited_chunk.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/clear_version_contents_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/clone_workflow_run_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/column_config.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/column_reference.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/common_file_exclusion_reason.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/complete_upload_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/connection_config.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/contents_sort_order.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/create_api_connection_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/create_api_key_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/create_api_key_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/create_chunk_lineage_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/create_chunk_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/create_data_source_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/create_document_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/create_folder_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/create_group_permission_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/create_group_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/create_password_user_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/create_permission_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/create_phone_password_user_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/create_section_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/create_skill_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/create_tag_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/create_thread_message_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/create_thread_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/create_upload_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/create_workflow_definition_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/data_source_catalog_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/data_source_describe_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/data_source_detail_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/data_source_engine.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/data_source_query_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/data_source_query_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/data_source_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/data_source_schema_list_item.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/data_source_schema_list_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/data_source_schema_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/data_source_sync_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/data_source_table_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/definition_output_stat.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/diff_format.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/diff_row.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/diff_row_type.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/diff_span.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/directory_sync_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/display_name_format.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/dissolve_section_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/doc_edit_part.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/document_block_change.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/document_checkout_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/document_diff.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/document_download_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/document_origin.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/document_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/document_type.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/document_version_action.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/document_version_action_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/document_version_content_type_filter.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/document_version_order.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/document_version_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/docx_paragraph_anchor_input.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/docx_paragraph_anchor_output.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/download_artifact.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/edit_memory_chunk_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/email_sent_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/email_verification_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/enriched_citation.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/enriched_thread_message_content.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/error_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/excluded_common_file.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/extract_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/extract_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/features_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/feedback_event_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/feedback_order.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/feedback_rating.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/feedback_reason.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/feedback_target_type.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/folder_action.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/folder_action_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/folder_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/folder_response_or_document_response_or_workflow_definition_response_or_workflow_run_response_or_data_source_response_or_data_source_schema_r.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/group_member_order.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/group_permission_order.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/group_permission_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/group_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/health_check_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/hour_histogram_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/http_validation_error.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/hybrid_search_profile.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/idp_config.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/idp_type.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/information_statistics.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/ingest_zip_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/ingestion_mode.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/input.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/input_origin.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/input_snapshot.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/instantiate_workflow_template_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/instruction_snapshot.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/invite_link_settings_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/invite_link_settings_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/invite_order.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/invite_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/invite_status.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/invite_user_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/item_permissions.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/kb_metric.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/kb_summary_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/kb_timeseries_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/labeled_series.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/last_run_summary.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/leaderboard_entry.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/lineage_edge_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/lineage_graph_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/lineage_node_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/location_inner.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/membership_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/memory_body_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/memory_chunk_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/memory_kind.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/memory_scope.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/message_role.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/message_usage.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/metered_quota_status.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/model_table_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/model_table_result.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/network_class.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/non_filesystem_reference_type.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/onboarding_company_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/onboarding_profile_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/paginated_response_annotated_union_folder_response_document_response_workflow_definition_response_workflow_run_response_dat.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/paginated_response_annotated_union_section_content_item_chunk_content_item_discriminator.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/paginated_response_billing_payment_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/paginated_response_document_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/paginated_response_document_version_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/paginated_response_event_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/paginated_response_feedback_event_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/paginated_response_folder_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/paginated_response_group_permission_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/paginated_response_group_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/paginated_response_invite_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/paginated_response_membership_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/paginated_response_memory_chunk_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/paginated_response_path_part_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/paginated_response_pending_memory_chunk_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/paginated_response_permission_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/paginated_response_skill_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/paginated_response_tag_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/paginated_response_tenant_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/paginated_response_tenant_user_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/paginated_response_thread_message_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/paginated_response_thread_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/paginated_response_trash_item_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/paginated_response_workflow_definition_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/paginated_response_workflow_run_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/paginated_response_workflow_summary_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/part_type.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/password_reset_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/password_reset_token_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/password_reset_with_token_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/path_order.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/path_part_ancestor_item.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/path_part_approval_decision.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/path_part_approval_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/path_part_approval_state.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/path_part_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/path_part_tags_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/pending_memory_chunk_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/permission_capability.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/permission_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/phone_validation_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/phone_verification_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/pipeline_state.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/pipeline_status.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/pixel_region.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/polygon.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/polygon_reference.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/propose_memory_chunk_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/reasoning_part.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/reference_type.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/reorder_path_part_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/request_phone_change_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/resolved_ref.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/resolved_reference_input.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/resolved_reference_output.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/response_send_pw_reset_email.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/revision_edit.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/root_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/run_folder.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/run_folder_ref.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/run_timeseries_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/schedule_cadence.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/scored_chunk_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/search_skills_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/search_skills_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/search_sort_order.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/search_tables_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/search_tables_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/search_type.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/searchable_part_type.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/seat_quota_status.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/section_content_item.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/section_content_item_or_chunk_content_item.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/section_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/section_system_metadata.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/send_password_reset_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/set_approval_state_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/set_workflow_run_approval_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/sheet_visibility_change.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/sign_in_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/skill_file.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/skill_order.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/skill_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/skill_search_result.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/skill_version_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/sort_direction.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/sso_initiate_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/start_workflow_run_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/step.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/step_kind.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/structured_change.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/structured_change_type.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/structured_diff.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/submit_feedback_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/subscription_plan_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/subtree_chunk_group.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/subtree_chunks_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/supported_id_p.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/supported_language.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/table_cell_change.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/table_search_result.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/tag_order.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/tag_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/temporal_workflow_status_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/tenant_branding_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/tenant_group_order.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/tenant_quota_state_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/tenant_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/tenant_settings_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/tenant_settings_update.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/tenant_subscription_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/tenant_user_edit_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/tenant_user_order.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/tenant_user_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/tenant_user_role.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/test_connection_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/test_connection_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/text_diff.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/text_part.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/text_part_or_reasoning_part_or_tool_part_or_doc_edit_part.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/thread_message_content.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/thread_message_details.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/thread_message_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/thread_order.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/thread_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/time_bucket.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/timeseries_point.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/tool_display_type.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/tool_part.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/tool_status.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/transfer_owner_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/transfer_owner_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/trash_item_detail_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/trash_item_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/update_api_connection_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/update_chunk_content_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/update_chunk_metadata_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/update_data_source_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/update_document_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/update_folder_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/update_group_permission_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/update_group_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/update_invite_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/update_permission_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/update_section_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/update_skill_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/update_table_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/update_tag_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/update_tenant_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/update_thread_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/update_user_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/update_workflow_definition_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/update_workflow_run_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/upload_constraints.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/upload_format.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/upload_part_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/upload_status_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/usage_metric.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/user_info.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/user_message_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/user_message_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/user_permission_order.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/user_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/validate_reset_code_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/validation_error.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/version_chunk_ids_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/version_diff_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/workflow_action_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/workflow_adoption_stats.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/workflow_callback_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/workflow_cancel_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/workflow_definition_order.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/workflow_definition_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/workflow_detail_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/workflow_execution_state.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/workflow_leaderboard_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/workflow_output_stats_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/workflow_run_asset.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/workflow_run_callback_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/workflow_run_order.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/workflow_run_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/workflow_run_snapshot.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/workflow_run_summary_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/workflow_summary_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/xlsx_cell_anchor_input.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/xlsx_cell_anchor_input_or_docx_paragraph_anchor_input.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/xlsx_cell_anchor_output.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/xlsx_cell_anchor_output_or_docx_paragraph_anchor_output.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/zip_file_result.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/zip_ingestion_status_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/models/zip_member_status_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/py.typed +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi/rest.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi.egg-info/dependency_links.txt +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi.egg-info/requires.txt +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/ksapi.egg-info/top_level.txt +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/setup.cfg +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_accept_disclaimer_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_accept_invite_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_access_check_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_activate_skill_version_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_add_member_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_admin_kb_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_admin_workflows_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_agent_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_ancestry_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_api_auth_config.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_api_connection_request_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_api_connection_request_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_api_connection_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_api_connections_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_api_key_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_api_keys_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_append_event_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_append_memory_chunk_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_args.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_ask_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_ask_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_audit_events_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_auth_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_billing_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_billing_interval.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_billing_payment_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_billing_system.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_block_change_type.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_block_kind.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_branding_logo_type.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_bulk_delete_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_bulk_delete_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_bulk_download_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_bulk_download_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_bulk_failure_reason.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_bulk_grant_item.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_bulk_grant_item_failure.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_bulk_grant_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_bulk_grant_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_bulk_grant_success.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_bulk_item_failure.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_bulk_model_tables_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_bulk_model_tables_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_bulk_move_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_bulk_move_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_bulk_operation_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_bulk_revoke_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_bulk_tag_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_bulk_trash_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_catalog_column_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_catalog_table_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_cell_change.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_cell_change_type.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_cell_diff.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_change_class.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_change_phone_number_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_change_subscription_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_checkout_action.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_checkout_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_checkpoint_details.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_chunk_document_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_chunk_document_version_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_chunk_lineage_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_chunk_lineages_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_chunk_neighbors_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_chunk_search_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_chunk_type.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_chunks_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_citation.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_cited_chunk.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_clear_version_contents_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_clone_workflow_run_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_column_config.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_column_reference.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_common_file_exclusion_reason.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_complete_upload_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_connection_config.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_contents_sort_order.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_create_api_connection_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_create_api_key_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_create_api_key_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_create_chunk_lineage_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_create_data_source_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_create_document_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_create_folder_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_create_group_permission_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_create_group_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_create_password_user_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_create_permission_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_create_phone_password_user_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_create_section_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_create_skill_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_create_tag_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_create_thread_message_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_create_thread_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_create_upload_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_create_workflow_definition_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_data_source_catalog_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_data_source_describe_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_data_source_detail_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_data_source_engine.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_data_source_query_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_data_source_query_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_data_source_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_data_source_schema_list_item.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_data_source_schema_list_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_data_source_schema_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_data_source_sync_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_data_source_table_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_data_sources_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_default_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_definition_output_stat.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_diff_format.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_diff_row.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_diff_row_type.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_diff_span.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_directory_sync_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_display_name_format.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_dissolve_section_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_doc_edit_part.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_document_block_change.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_document_checkout_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_document_checkout_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_document_diff.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_document_download_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_document_origin.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_document_type.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_document_version_action.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_document_version_action_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_document_version_content_type_filter.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_document_version_order.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_document_versions_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_documents_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_docx_paragraph_anchor_input.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_docx_paragraph_anchor_output.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_download_artifact.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_edit_memory_chunk_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_email_sent_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_email_verification_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_enriched_citation.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_enriched_thread_message_content.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_error_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_excluded_common_file.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_extract_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_extract_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_features_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_features_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_feedback_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_feedback_event_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_feedback_order.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_feedback_rating.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_feedback_reason.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_feedback_target_type.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_folder_action.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_folder_action_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_folder_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_folders_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_group_member_order.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_group_permission_order.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_group_permission_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_group_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_health_check_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_hour_histogram_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_http_validation_error.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_hybrid_search_profile.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_idp_config.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_idp_type.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_image_taxonomy.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_information_statistics.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_ingest_zip_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_ingestion_mode.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_input.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_input_origin.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_input_snapshot.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_instantiate_workflow_template_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_instruction_snapshot.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_invite_link_settings_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_invite_link_settings_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_invite_order.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_invite_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_invite_status.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_invite_user_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_invites_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_item_permissions.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_kb_metric.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_kb_summary_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_kb_timeseries_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_labeled_series.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_last_run_summary.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_leaderboard_entry.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_lineage_edge_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_location_inner.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_membership_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_memory_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_memory_body_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_memory_chunk_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_memory_kind.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_memory_scope.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_message_role.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_message_usage.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_metered_quota_status.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_model_table_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_model_table_result.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_network_class.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_non_filesystem_reference_type.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_onboarding_company_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_onboarding_profile_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_paginated_response_annotated_union_folder_response_document_response_workflow_definition_response_workflow_run_response_dat.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_paginated_response_annotated_union_section_content_item_chunk_content_item_discriminator.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_paginated_response_billing_payment_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_paginated_response_feedback_event_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_paginated_response_folder_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_paginated_response_group_permission_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_paginated_response_group_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_paginated_response_invite_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_paginated_response_membership_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_paginated_response_memory_chunk_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_paginated_response_path_part_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_paginated_response_pending_memory_chunk_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_paginated_response_permission_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_paginated_response_skill_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_paginated_response_tag_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_paginated_response_tenant_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_paginated_response_tenant_user_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_paginated_response_thread_message_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_paginated_response_thread_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_paginated_response_trash_item_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_paginated_response_workflow_definition_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_paginated_response_workflow_run_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_paginated_response_workflow_summary_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_part_type.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_password_reset_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_password_reset_token_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_password_reset_with_token_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_path_order.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_path_part_ancestor_item.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_path_part_approval_decision.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_path_part_approval_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_path_part_approval_state.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_path_part_approvals_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_path_part_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_path_part_tags_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_path_parts_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_pending_memory_chunk_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_permission_capability.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_permission_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_phone_validation_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_phone_verification_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_pipeline_state.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_pipeline_status.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_pixel_region.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_polygon.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_polygon_reference.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_propose_memory_chunk_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_public_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_reasoning_part.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_reference_type.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_reorder_path_part_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_request_phone_change_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_resolved_ref.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_resolved_reference_input.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_resolved_reference_output.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_response_send_pw_reset_email.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_revision_edit.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_root_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_run_folder.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_run_folder_ref.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_run_timeseries_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_schedule_cadence.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_search_skills_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_search_skills_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_search_sort_order.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_search_tables_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_search_tables_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_search_type.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_searchable_part_type.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_seat_quota_status.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_section_content_item.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_section_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_section_system_metadata.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_sections_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_send_password_reset_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_set_approval_state_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_set_workflow_run_approval_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_sheet_visibility_change.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_sign_in_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_skill_file.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_skill_order.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_skill_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_skill_search_result.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_skill_version_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_skills_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_sort_direction.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_sso_initiate_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_start_workflow_run_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_step.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_step_kind.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_structured_change.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_structured_change_type.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_structured_diff.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_submit_feedback_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_subscription_plan_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_subscriptions_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_subtree_chunk_group.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_subtree_chunks_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_supported_id_p.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_supported_language.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_system_jobs_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_table_cell_change.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_table_search_result.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_tag_order.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_tag_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_tags_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_temporal_workflow_status_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_tenant_branding_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_tenant_group_order.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_tenant_groups_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_tenant_quota_state_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_tenant_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_tenant_settings_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_tenant_settings_update.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_tenant_subscription_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_tenant_user_edit_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_tenant_user_order.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_tenant_user_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_tenant_user_role.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_tenants_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_test_connection_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_test_connection_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_text_diff.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_text_part.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_text_part_or_reasoning_part_or_tool_part_or_doc_edit_part.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_thread_message_content.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_thread_message_details.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_thread_message_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_thread_messages_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_thread_order.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_thread_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_threads_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_time_bucket.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_timeseries_point.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_tool_display_type.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_tool_part.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_tool_status.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_transfer_owner_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_transfer_owner_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_trash_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_trash_item_detail_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_trash_item_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_update_api_connection_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_update_chunk_content_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_update_data_source_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_update_document_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_update_folder_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_update_group_permission_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_update_group_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_update_invite_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_update_permission_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_update_section_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_update_skill_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_update_table_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_update_tag_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_update_tenant_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_update_thread_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_update_user_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_update_workflow_definition_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_update_workflow_run_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_upload_constraints.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_upload_format.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_upload_part_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_upload_status_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_usage_metric.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_user_info.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_user_message_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_user_message_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_user_permission_order.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_user_permissions_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_user_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_users_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_validate_reset_code_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_validation_error.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_version_chunk_ids_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_version_diff_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_workflow_action_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_workflow_adoption_stats.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_workflow_callback_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_workflow_cancel_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_workflow_definition_order.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_workflow_definition_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_workflow_definitions_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_workflow_detail_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_workflow_execution_state.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_workflow_leaderboard_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_workflow_memory_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_workflow_output_stats_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_workflow_run_asset.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_workflow_run_callback_request.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_workflow_run_order.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_workflow_run_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_workflow_run_snapshot.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_workflow_run_summary_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_workflow_runs_api.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_workflow_summary_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_xlsx_cell_anchor_input.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_xlsx_cell_anchor_input_or_docx_paragraph_anchor_input.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_xlsx_cell_anchor_output.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_xlsx_cell_anchor_output_or_docx_paragraph_anchor_output.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_zip_file_result.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_zip_ingestion_status_response.py +0 -0
- {ksapi-2.4.3 → ksapi-2.6.0}/test/test_zip_member_status_response.py +0 -0
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
""" # noqa: E501
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
__version__ = "2.
|
|
17
|
+
__version__ = "2.6.0"
|
|
18
18
|
|
|
19
19
|
# Define package exports
|
|
20
20
|
__all__ = [
|
|
@@ -55,6 +55,7 @@ __all__ = [
|
|
|
55
55
|
"SystemJobsApi",
|
|
56
56
|
"TagsApi",
|
|
57
57
|
"TenantGroupsApi",
|
|
58
|
+
"TenantInvitationsApi",
|
|
58
59
|
"TenantsApi",
|
|
59
60
|
"TrashApi",
|
|
60
61
|
"UserPermissionsApi",
|
|
@@ -70,6 +71,8 @@ __all__ = [
|
|
|
70
71
|
"ApiException",
|
|
71
72
|
"AcceptDisclaimerRequest",
|
|
72
73
|
"AcceptInviteResponse",
|
|
74
|
+
"AcceptTenantInvitationRequest",
|
|
75
|
+
"AcceptTenantInvitationResponse",
|
|
73
76
|
"AccessCheckResponse",
|
|
74
77
|
"ActivateSkillVersionRequest",
|
|
75
78
|
"AddMemberRequest",
|
|
@@ -197,6 +200,8 @@ __all__ = [
|
|
|
197
200
|
"DocxParagraphAnchorOutput",
|
|
198
201
|
"DownloadArtifact",
|
|
199
202
|
"EditMemoryChunkRequest",
|
|
203
|
+
"EmailMetadata",
|
|
204
|
+
"EmailParty",
|
|
200
205
|
"EmailSentResponse",
|
|
201
206
|
"EmailVerificationRequest",
|
|
202
207
|
"EnrichedCitation",
|
|
@@ -499,6 +504,7 @@ from ksapi.api.subscriptions_api import SubscriptionsApi as SubscriptionsApi
|
|
|
499
504
|
from ksapi.api.system_jobs_api import SystemJobsApi as SystemJobsApi
|
|
500
505
|
from ksapi.api.tags_api import TagsApi as TagsApi
|
|
501
506
|
from ksapi.api.tenant_groups_api import TenantGroupsApi as TenantGroupsApi
|
|
507
|
+
from ksapi.api.tenant_invitations_api import TenantInvitationsApi as TenantInvitationsApi
|
|
502
508
|
from ksapi.api.tenants_api import TenantsApi as TenantsApi
|
|
503
509
|
from ksapi.api.trash_api import TrashApi as TrashApi
|
|
504
510
|
from ksapi.api.user_permissions_api import UserPermissionsApi as UserPermissionsApi
|
|
@@ -518,6 +524,8 @@ from ksapi.exceptions import ApiException as ApiException
|
|
|
518
524
|
# import models into sdk package
|
|
519
525
|
from ksapi.models.accept_disclaimer_request import AcceptDisclaimerRequest as AcceptDisclaimerRequest
|
|
520
526
|
from ksapi.models.accept_invite_response import AcceptInviteResponse as AcceptInviteResponse
|
|
527
|
+
from ksapi.models.accept_tenant_invitation_request import AcceptTenantInvitationRequest as AcceptTenantInvitationRequest
|
|
528
|
+
from ksapi.models.accept_tenant_invitation_response import AcceptTenantInvitationResponse as AcceptTenantInvitationResponse
|
|
521
529
|
from ksapi.models.access_check_response import AccessCheckResponse as AccessCheckResponse
|
|
522
530
|
from ksapi.models.activate_skill_version_request import ActivateSkillVersionRequest as ActivateSkillVersionRequest
|
|
523
531
|
from ksapi.models.add_member_request import AddMemberRequest as AddMemberRequest
|
|
@@ -645,6 +653,8 @@ from ksapi.models.docx_paragraph_anchor_input import DocxParagraphAnchorInput as
|
|
|
645
653
|
from ksapi.models.docx_paragraph_anchor_output import DocxParagraphAnchorOutput as DocxParagraphAnchorOutput
|
|
646
654
|
from ksapi.models.download_artifact import DownloadArtifact as DownloadArtifact
|
|
647
655
|
from ksapi.models.edit_memory_chunk_request import EditMemoryChunkRequest as EditMemoryChunkRequest
|
|
656
|
+
from ksapi.models.email_metadata import EmailMetadata as EmailMetadata
|
|
657
|
+
from ksapi.models.email_party import EmailParty as EmailParty
|
|
648
658
|
from ksapi.models.email_sent_response import EmailSentResponse as EmailSentResponse
|
|
649
659
|
from ksapi.models.email_verification_request import EmailVerificationRequest as EmailVerificationRequest
|
|
650
660
|
from ksapi.models.enriched_citation import EnrichedCitation as EnrichedCitation
|
|
@@ -38,6 +38,7 @@ from ksapi.api.subscriptions_api import SubscriptionsApi
|
|
|
38
38
|
from ksapi.api.system_jobs_api import SystemJobsApi
|
|
39
39
|
from ksapi.api.tags_api import TagsApi
|
|
40
40
|
from ksapi.api.tenant_groups_api import TenantGroupsApi
|
|
41
|
+
from ksapi.api.tenant_invitations_api import TenantInvitationsApi
|
|
41
42
|
from ksapi.api.tenants_api import TenantsApi
|
|
42
43
|
from ksapi.api.trash_api import TrashApi
|
|
43
44
|
from ksapi.api.user_permissions_api import UserPermissionsApi
|
|
@@ -2256,6 +2256,7 @@ class DocumentsApi:
|
|
|
2256
2256
|
name: Annotated[Optional[StrictStr], Field(description="Document name (defaults to filename)")] = None,
|
|
2257
2257
|
tag_ids: Annotated[Optional[List[UUID]], Field(description="Tag IDs applied to the created document.")] = None,
|
|
2258
2258
|
idempotency_key: Annotated[Optional[StrictStr], Field(description="Opt-in key: a repeat with the same key at the same (parent, name) replays the existing document instead of a 409.")] = None,
|
|
2259
|
+
email_nesting_depth: Annotated[Optional[Annotated[int, Field(le=10, strict=True, ge=0)]], Field(description="Internal: set by the email member fan-out when a nested email re-enters this endpoint. Leave at 0 for direct uploads.")] = None,
|
|
2259
2260
|
ingestion_mode: Optional[IngestionMode] = None,
|
|
2260
2261
|
chunk_type: Optional[ChunkType] = None,
|
|
2261
2262
|
secondary_taxonomy: Optional[ImageTaxonomy] = None,
|
|
@@ -2289,6 +2290,8 @@ class DocumentsApi:
|
|
|
2289
2290
|
:type tag_ids: List[UUID]
|
|
2290
2291
|
:param idempotency_key: Opt-in key: a repeat with the same key at the same (parent, name) replays the existing document instead of a 409.
|
|
2291
2292
|
:type idempotency_key: str
|
|
2293
|
+
:param email_nesting_depth: Internal: set by the email member fan-out when a nested email re-enters this endpoint. Leave at 0 for direct uploads.
|
|
2294
|
+
:type email_nesting_depth: int
|
|
2292
2295
|
:param ingestion_mode:
|
|
2293
2296
|
:type ingestion_mode: IngestionMode
|
|
2294
2297
|
:param chunk_type:
|
|
@@ -2329,6 +2332,7 @@ class DocumentsApi:
|
|
|
2329
2332
|
name=name,
|
|
2330
2333
|
tag_ids=tag_ids,
|
|
2331
2334
|
idempotency_key=idempotency_key,
|
|
2335
|
+
email_nesting_depth=email_nesting_depth,
|
|
2332
2336
|
ingestion_mode=ingestion_mode,
|
|
2333
2337
|
chunk_type=chunk_type,
|
|
2334
2338
|
secondary_taxonomy=secondary_taxonomy,
|
|
@@ -2364,6 +2368,7 @@ class DocumentsApi:
|
|
|
2364
2368
|
name: Annotated[Optional[StrictStr], Field(description="Document name (defaults to filename)")] = None,
|
|
2365
2369
|
tag_ids: Annotated[Optional[List[UUID]], Field(description="Tag IDs applied to the created document.")] = None,
|
|
2366
2370
|
idempotency_key: Annotated[Optional[StrictStr], Field(description="Opt-in key: a repeat with the same key at the same (parent, name) replays the existing document instead of a 409.")] = None,
|
|
2371
|
+
email_nesting_depth: Annotated[Optional[Annotated[int, Field(le=10, strict=True, ge=0)]], Field(description="Internal: set by the email member fan-out when a nested email re-enters this endpoint. Leave at 0 for direct uploads.")] = None,
|
|
2367
2372
|
ingestion_mode: Optional[IngestionMode] = None,
|
|
2368
2373
|
chunk_type: Optional[ChunkType] = None,
|
|
2369
2374
|
secondary_taxonomy: Optional[ImageTaxonomy] = None,
|
|
@@ -2397,6 +2402,8 @@ class DocumentsApi:
|
|
|
2397
2402
|
:type tag_ids: List[UUID]
|
|
2398
2403
|
:param idempotency_key: Opt-in key: a repeat with the same key at the same (parent, name) replays the existing document instead of a 409.
|
|
2399
2404
|
:type idempotency_key: str
|
|
2405
|
+
:param email_nesting_depth: Internal: set by the email member fan-out when a nested email re-enters this endpoint. Leave at 0 for direct uploads.
|
|
2406
|
+
:type email_nesting_depth: int
|
|
2400
2407
|
:param ingestion_mode:
|
|
2401
2408
|
:type ingestion_mode: IngestionMode
|
|
2402
2409
|
:param chunk_type:
|
|
@@ -2437,6 +2444,7 @@ class DocumentsApi:
|
|
|
2437
2444
|
name=name,
|
|
2438
2445
|
tag_ids=tag_ids,
|
|
2439
2446
|
idempotency_key=idempotency_key,
|
|
2447
|
+
email_nesting_depth=email_nesting_depth,
|
|
2440
2448
|
ingestion_mode=ingestion_mode,
|
|
2441
2449
|
chunk_type=chunk_type,
|
|
2442
2450
|
secondary_taxonomy=secondary_taxonomy,
|
|
@@ -2472,6 +2480,7 @@ class DocumentsApi:
|
|
|
2472
2480
|
name: Annotated[Optional[StrictStr], Field(description="Document name (defaults to filename)")] = None,
|
|
2473
2481
|
tag_ids: Annotated[Optional[List[UUID]], Field(description="Tag IDs applied to the created document.")] = None,
|
|
2474
2482
|
idempotency_key: Annotated[Optional[StrictStr], Field(description="Opt-in key: a repeat with the same key at the same (parent, name) replays the existing document instead of a 409.")] = None,
|
|
2483
|
+
email_nesting_depth: Annotated[Optional[Annotated[int, Field(le=10, strict=True, ge=0)]], Field(description="Internal: set by the email member fan-out when a nested email re-enters this endpoint. Leave at 0 for direct uploads.")] = None,
|
|
2475
2484
|
ingestion_mode: Optional[IngestionMode] = None,
|
|
2476
2485
|
chunk_type: Optional[ChunkType] = None,
|
|
2477
2486
|
secondary_taxonomy: Optional[ImageTaxonomy] = None,
|
|
@@ -2505,6 +2514,8 @@ class DocumentsApi:
|
|
|
2505
2514
|
:type tag_ids: List[UUID]
|
|
2506
2515
|
:param idempotency_key: Opt-in key: a repeat with the same key at the same (parent, name) replays the existing document instead of a 409.
|
|
2507
2516
|
:type idempotency_key: str
|
|
2517
|
+
:param email_nesting_depth: Internal: set by the email member fan-out when a nested email re-enters this endpoint. Leave at 0 for direct uploads.
|
|
2518
|
+
:type email_nesting_depth: int
|
|
2508
2519
|
:param ingestion_mode:
|
|
2509
2520
|
:type ingestion_mode: IngestionMode
|
|
2510
2521
|
:param chunk_type:
|
|
@@ -2545,6 +2556,7 @@ class DocumentsApi:
|
|
|
2545
2556
|
name=name,
|
|
2546
2557
|
tag_ids=tag_ids,
|
|
2547
2558
|
idempotency_key=idempotency_key,
|
|
2559
|
+
email_nesting_depth=email_nesting_depth,
|
|
2548
2560
|
ingestion_mode=ingestion_mode,
|
|
2549
2561
|
chunk_type=chunk_type,
|
|
2550
2562
|
secondary_taxonomy=secondary_taxonomy,
|
|
@@ -2575,6 +2587,7 @@ class DocumentsApi:
|
|
|
2575
2587
|
name,
|
|
2576
2588
|
tag_ids,
|
|
2577
2589
|
idempotency_key,
|
|
2590
|
+
email_nesting_depth,
|
|
2578
2591
|
ingestion_mode,
|
|
2579
2592
|
chunk_type,
|
|
2580
2593
|
secondary_taxonomy,
|
|
@@ -2616,6 +2629,8 @@ class DocumentsApi:
|
|
|
2616
2629
|
_form_params.append(('tag_ids', tag_ids))
|
|
2617
2630
|
if idempotency_key is not None:
|
|
2618
2631
|
_form_params.append(('idempotency_key', idempotency_key))
|
|
2632
|
+
if email_nesting_depth is not None:
|
|
2633
|
+
_form_params.append(('email_nesting_depth', email_nesting_depth))
|
|
2619
2634
|
if ingestion_mode is not None:
|
|
2620
2635
|
_form_params.append(('ingestion_mode', ingestion_mode))
|
|
2621
2636
|
if chunk_type is not None:
|
|
@@ -3392,6 +3407,8 @@ class DocumentsApi:
|
|
|
3392
3407
|
sort_dir: Annotated[Optional[SortDirection], Field(description="Sort direction; overrides the column's natural default")] = None,
|
|
3393
3408
|
owner_id: Annotated[Optional[UUID], Field(description="Filter to documents owned by this user")] = None,
|
|
3394
3409
|
document_type: Annotated[Optional[DocumentType], Field(description="Filter to documents of this type")] = None,
|
|
3410
|
+
duration_min_ms: Annotated[Optional[Annotated[int, Field(strict=True, ge=0)]], Field(description="Only media whose active version is at least this long (milliseconds). Non-media documents have no duration and are excluded.")] = None,
|
|
3411
|
+
duration_max_ms: Annotated[Optional[Annotated[int, Field(strict=True, ge=0)]], Field(description="Only media whose active version is at most this long.")] = None,
|
|
3395
3412
|
with_tags: Annotated[Optional[StrictBool], Field(description="Include tags in the response (default: false)")] = None,
|
|
3396
3413
|
limit: Annotated[Optional[Annotated[int, Field(le=100, strict=True, ge=1)]], Field(description="Number of items per page")] = None,
|
|
3397
3414
|
offset: Annotated[Optional[Annotated[int, Field(strict=True, ge=0)]], Field(description="Number of items to skip")] = None,
|
|
@@ -3426,6 +3443,10 @@ class DocumentsApi:
|
|
|
3426
3443
|
:type owner_id: UUID
|
|
3427
3444
|
:param document_type: Filter to documents of this type
|
|
3428
3445
|
:type document_type: DocumentType
|
|
3446
|
+
:param duration_min_ms: Only media whose active version is at least this long (milliseconds). Non-media documents have no duration and are excluded.
|
|
3447
|
+
:type duration_min_ms: int
|
|
3448
|
+
:param duration_max_ms: Only media whose active version is at most this long.
|
|
3449
|
+
:type duration_max_ms: int
|
|
3429
3450
|
:param with_tags: Include tags in the response (default: false)
|
|
3430
3451
|
:type with_tags: bool
|
|
3431
3452
|
:param limit: Number of items per page
|
|
@@ -3468,6 +3489,8 @@ class DocumentsApi:
|
|
|
3468
3489
|
sort_dir=sort_dir,
|
|
3469
3490
|
owner_id=owner_id,
|
|
3470
3491
|
document_type=document_type,
|
|
3492
|
+
duration_min_ms=duration_min_ms,
|
|
3493
|
+
duration_max_ms=duration_max_ms,
|
|
3471
3494
|
with_tags=with_tags,
|
|
3472
3495
|
limit=limit,
|
|
3473
3496
|
offset=offset,
|
|
@@ -3504,6 +3527,8 @@ class DocumentsApi:
|
|
|
3504
3527
|
sort_dir: Annotated[Optional[SortDirection], Field(description="Sort direction; overrides the column's natural default")] = None,
|
|
3505
3528
|
owner_id: Annotated[Optional[UUID], Field(description="Filter to documents owned by this user")] = None,
|
|
3506
3529
|
document_type: Annotated[Optional[DocumentType], Field(description="Filter to documents of this type")] = None,
|
|
3530
|
+
duration_min_ms: Annotated[Optional[Annotated[int, Field(strict=True, ge=0)]], Field(description="Only media whose active version is at least this long (milliseconds). Non-media documents have no duration and are excluded.")] = None,
|
|
3531
|
+
duration_max_ms: Annotated[Optional[Annotated[int, Field(strict=True, ge=0)]], Field(description="Only media whose active version is at most this long.")] = None,
|
|
3507
3532
|
with_tags: Annotated[Optional[StrictBool], Field(description="Include tags in the response (default: false)")] = None,
|
|
3508
3533
|
limit: Annotated[Optional[Annotated[int, Field(le=100, strict=True, ge=1)]], Field(description="Number of items per page")] = None,
|
|
3509
3534
|
offset: Annotated[Optional[Annotated[int, Field(strict=True, ge=0)]], Field(description="Number of items to skip")] = None,
|
|
@@ -3538,6 +3563,10 @@ class DocumentsApi:
|
|
|
3538
3563
|
:type owner_id: UUID
|
|
3539
3564
|
:param document_type: Filter to documents of this type
|
|
3540
3565
|
:type document_type: DocumentType
|
|
3566
|
+
:param duration_min_ms: Only media whose active version is at least this long (milliseconds). Non-media documents have no duration and are excluded.
|
|
3567
|
+
:type duration_min_ms: int
|
|
3568
|
+
:param duration_max_ms: Only media whose active version is at most this long.
|
|
3569
|
+
:type duration_max_ms: int
|
|
3541
3570
|
:param with_tags: Include tags in the response (default: false)
|
|
3542
3571
|
:type with_tags: bool
|
|
3543
3572
|
:param limit: Number of items per page
|
|
@@ -3580,6 +3609,8 @@ class DocumentsApi:
|
|
|
3580
3609
|
sort_dir=sort_dir,
|
|
3581
3610
|
owner_id=owner_id,
|
|
3582
3611
|
document_type=document_type,
|
|
3612
|
+
duration_min_ms=duration_min_ms,
|
|
3613
|
+
duration_max_ms=duration_max_ms,
|
|
3583
3614
|
with_tags=with_tags,
|
|
3584
3615
|
limit=limit,
|
|
3585
3616
|
offset=offset,
|
|
@@ -3616,6 +3647,8 @@ class DocumentsApi:
|
|
|
3616
3647
|
sort_dir: Annotated[Optional[SortDirection], Field(description="Sort direction; overrides the column's natural default")] = None,
|
|
3617
3648
|
owner_id: Annotated[Optional[UUID], Field(description="Filter to documents owned by this user")] = None,
|
|
3618
3649
|
document_type: Annotated[Optional[DocumentType], Field(description="Filter to documents of this type")] = None,
|
|
3650
|
+
duration_min_ms: Annotated[Optional[Annotated[int, Field(strict=True, ge=0)]], Field(description="Only media whose active version is at least this long (milliseconds). Non-media documents have no duration and are excluded.")] = None,
|
|
3651
|
+
duration_max_ms: Annotated[Optional[Annotated[int, Field(strict=True, ge=0)]], Field(description="Only media whose active version is at most this long.")] = None,
|
|
3619
3652
|
with_tags: Annotated[Optional[StrictBool], Field(description="Include tags in the response (default: false)")] = None,
|
|
3620
3653
|
limit: Annotated[Optional[Annotated[int, Field(le=100, strict=True, ge=1)]], Field(description="Number of items per page")] = None,
|
|
3621
3654
|
offset: Annotated[Optional[Annotated[int, Field(strict=True, ge=0)]], Field(description="Number of items to skip")] = None,
|
|
@@ -3650,6 +3683,10 @@ class DocumentsApi:
|
|
|
3650
3683
|
:type owner_id: UUID
|
|
3651
3684
|
:param document_type: Filter to documents of this type
|
|
3652
3685
|
:type document_type: DocumentType
|
|
3686
|
+
:param duration_min_ms: Only media whose active version is at least this long (milliseconds). Non-media documents have no duration and are excluded.
|
|
3687
|
+
:type duration_min_ms: int
|
|
3688
|
+
:param duration_max_ms: Only media whose active version is at most this long.
|
|
3689
|
+
:type duration_max_ms: int
|
|
3653
3690
|
:param with_tags: Include tags in the response (default: false)
|
|
3654
3691
|
:type with_tags: bool
|
|
3655
3692
|
:param limit: Number of items per page
|
|
@@ -3692,6 +3729,8 @@ class DocumentsApi:
|
|
|
3692
3729
|
sort_dir=sort_dir,
|
|
3693
3730
|
owner_id=owner_id,
|
|
3694
3731
|
document_type=document_type,
|
|
3732
|
+
duration_min_ms=duration_min_ms,
|
|
3733
|
+
duration_max_ms=duration_max_ms,
|
|
3695
3734
|
with_tags=with_tags,
|
|
3696
3735
|
limit=limit,
|
|
3697
3736
|
offset=offset,
|
|
@@ -3723,6 +3762,8 @@ class DocumentsApi:
|
|
|
3723
3762
|
sort_dir,
|
|
3724
3763
|
owner_id,
|
|
3725
3764
|
document_type,
|
|
3765
|
+
duration_min_ms,
|
|
3766
|
+
duration_max_ms,
|
|
3726
3767
|
with_tags,
|
|
3727
3768
|
limit,
|
|
3728
3769
|
offset,
|
|
@@ -3772,6 +3813,14 @@ class DocumentsApi:
|
|
|
3772
3813
|
|
|
3773
3814
|
_query_params.append(('document_type', document_type.value))
|
|
3774
3815
|
|
|
3816
|
+
if duration_min_ms is not None:
|
|
3817
|
+
|
|
3818
|
+
_query_params.append(('duration_min_ms', duration_min_ms))
|
|
3819
|
+
|
|
3820
|
+
if duration_max_ms is not None:
|
|
3821
|
+
|
|
3822
|
+
_query_params.append(('duration_max_ms', duration_max_ms))
|
|
3823
|
+
|
|
3775
3824
|
if with_tags is not None:
|
|
3776
3825
|
|
|
3777
3826
|
_query_params.append(('with_tags', with_tags))
|
|
@@ -1122,7 +1122,7 @@ class SystemJobsApi:
|
|
|
1122
1122
|
) -> ZipIngestionStatusResponse:
|
|
1123
1123
|
"""Get Zip Ingestion Status Handler
|
|
1124
1124
|
|
|
1125
|
-
Get a
|
|
1125
|
+
Get a fan-out's live status + per-member outcomes. Serves both container fan-outs: a ZIP archive's members and an email's attachments. Both expose the same ``results`` query, so one endpoint covers them rather than duplicating the tenant check and hydration. Tenant-scoped via the TenantId search attribute (no per-path can_read check — intentionally consistent with the sibling generic Temporal endpoints below; the opaque workflow_id is only handed to the uploader, who had can_write on the target). The per-member results come from the workflow's ``results`` query (served from retained history), so once Temporal retention expires this 404s.
|
|
1126
1126
|
|
|
1127
1127
|
:param workflow_id: (required)
|
|
1128
1128
|
:type workflow_id: str
|
|
@@ -1190,7 +1190,7 @@ class SystemJobsApi:
|
|
|
1190
1190
|
) -> ApiResponse[ZipIngestionStatusResponse]:
|
|
1191
1191
|
"""Get Zip Ingestion Status Handler
|
|
1192
1192
|
|
|
1193
|
-
Get a
|
|
1193
|
+
Get a fan-out's live status + per-member outcomes. Serves both container fan-outs: a ZIP archive's members and an email's attachments. Both expose the same ``results`` query, so one endpoint covers them rather than duplicating the tenant check and hydration. Tenant-scoped via the TenantId search attribute (no per-path can_read check — intentionally consistent with the sibling generic Temporal endpoints below; the opaque workflow_id is only handed to the uploader, who had can_write on the target). The per-member results come from the workflow's ``results`` query (served from retained history), so once Temporal retention expires this 404s.
|
|
1194
1194
|
|
|
1195
1195
|
:param workflow_id: (required)
|
|
1196
1196
|
:type workflow_id: str
|
|
@@ -1258,7 +1258,7 @@ class SystemJobsApi:
|
|
|
1258
1258
|
) -> RESTResponseType:
|
|
1259
1259
|
"""Get Zip Ingestion Status Handler
|
|
1260
1260
|
|
|
1261
|
-
Get a
|
|
1261
|
+
Get a fan-out's live status + per-member outcomes. Serves both container fan-outs: a ZIP archive's members and an email's attachments. Both expose the same ``results`` query, so one endpoint covers them rather than duplicating the tenant check and hydration. Tenant-scoped via the TenantId search attribute (no per-path can_read check — intentionally consistent with the sibling generic Temporal endpoints below; the opaque workflow_id is only handed to the uploader, who had can_write on the target). The per-member results come from the workflow's ``results`` query (served from retained history), so once Temporal retention expires this 404s.
|
|
1262
1262
|
|
|
1263
1263
|
:param workflow_id: (required)
|
|
1264
1264
|
:type workflow_id: str
|
|
@@ -0,0 +1,329 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Knowledge Stack API
|
|
3
|
+
|
|
4
|
+
Knowledge Stack backend API for authentication and knowledge management. ## Integrating (RPA / machine clients) **Base URL.** Knowledge Stack is self-hosted — point at your own deployment host (see `servers`). The `localhost` entry is for local development only. **Authentication.** Send `Authorization: Bearer <api-key>` on every request. Mint an API key once via `POST /v1/api-keys` from a signed-in browser session; the raw `sk-user-...` secret is returned **only** at creation, so store it then. A key inherits its owning user's live tenant role and path permissions — create RPA keys from a least-privilege user, and set `expires_at` for rotation. The `ks_uat` cookie scheme is browser-only and cannot be used by headless clients. **Async work is polled, not pushed.** There are no outbound webhooks. - `POST /v1/documents/ingest` returns `201` immediately with a `workflow_id`; poll `GET /v1/system-jobs/document_versions/{workflow_id}` until `status` is terminal (anything other than `pending`/`processing`). The `Location` response header points at this poll resource. - `POST /v1/workflow-runs/{run_id}/start` returns `202`; poll `GET /v1/workflow-runs/{run_id}` until `execution_state` is `COMPLETED` or `FAILED`. The `Location` header points at the run resource. - `POST /v1/agent/ask` is **synchronous** — it blocks until the agent finishes and returns the answer inline. Use a generous HTTP timeout. **Pagination.** List endpoints accept `limit`/`offset` and return `{items, total, limit, offset}`. **Errors.** Every non-2xx body is `{detail, code, request_id}`. `code` is a stable value from a closed set (see the `ErrorResponse` schema's `code` enum) — branch on it rather than parsing `detail`. Quota rejections return `429` with a `Retry-After` header; transient lock contention returns a retryable `503`. Quote `request_id` (also the `x-request-id` response header) to support. **Idempotency.** `POST /v1/workflow-runs` accepts an `idempotency_key` to dedupe retried run creation. `agent/ask` charges one message *before* running and does not refund a client-cancelled call.
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 0.1.0
|
|
7
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
8
|
+
|
|
9
|
+
Do not edit the class manually.
|
|
10
|
+
""" # noqa: E501
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
import warnings
|
|
14
|
+
from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
|
15
|
+
from typing import Any, Dict, List, Optional, Tuple, Union
|
|
16
|
+
from typing_extensions import Annotated
|
|
17
|
+
|
|
18
|
+
from uuid import UUID
|
|
19
|
+
from ksapi.models.accept_tenant_invitation_request import AcceptTenantInvitationRequest
|
|
20
|
+
from ksapi.models.accept_tenant_invitation_response import AcceptTenantInvitationResponse
|
|
21
|
+
|
|
22
|
+
from ksapi.api_client import ApiClient, RequestSerialized
|
|
23
|
+
from ksapi.api_response import ApiResponse
|
|
24
|
+
from ksapi.rest import RESTResponseType
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
class TenantInvitationsApi:
|
|
28
|
+
"""NOTE: This class is auto generated by OpenAPI Generator
|
|
29
|
+
Ref: https://openapi-generator.tech
|
|
30
|
+
|
|
31
|
+
Do not edit the class manually.
|
|
32
|
+
"""
|
|
33
|
+
|
|
34
|
+
def __init__(self, api_client=None) -> None:
|
|
35
|
+
if api_client is None:
|
|
36
|
+
api_client = ApiClient.get_default()
|
|
37
|
+
self.api_client = api_client
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
@validate_call
|
|
41
|
+
def accept_tenant_invitation(
|
|
42
|
+
self,
|
|
43
|
+
invitation_id: UUID,
|
|
44
|
+
accept_tenant_invitation_request: AcceptTenantInvitationRequest,
|
|
45
|
+
_request_timeout: Union[
|
|
46
|
+
None,
|
|
47
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
48
|
+
Tuple[
|
|
49
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
50
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
51
|
+
]
|
|
52
|
+
] = None,
|
|
53
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
54
|
+
_content_type: Optional[StrictStr] = None,
|
|
55
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
56
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
57
|
+
) -> AcceptTenantInvitationResponse:
|
|
58
|
+
"""Accept Tenant Invitation Handler
|
|
59
|
+
|
|
60
|
+
Accept an invitation, creating the customer tenant and its OWNER. New owner: supply ``password`` — the account is created and signed in. Existing owner: accept while signed in as ``owner_email`` (no password).
|
|
61
|
+
|
|
62
|
+
:param invitation_id: (required)
|
|
63
|
+
:type invitation_id: UUID
|
|
64
|
+
:param accept_tenant_invitation_request: (required)
|
|
65
|
+
:type accept_tenant_invitation_request: AcceptTenantInvitationRequest
|
|
66
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
67
|
+
number provided, it will be total request
|
|
68
|
+
timeout. It can also be a pair (tuple) of
|
|
69
|
+
(connection, read) timeouts.
|
|
70
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
71
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
72
|
+
request; this effectively ignores the
|
|
73
|
+
authentication in the spec for a single request.
|
|
74
|
+
:type _request_auth: dict, optional
|
|
75
|
+
:param _content_type: force content-type for the request.
|
|
76
|
+
:type _content_type: str, Optional
|
|
77
|
+
:param _headers: set to override the headers for a single
|
|
78
|
+
request; this effectively ignores the headers
|
|
79
|
+
in the spec for a single request.
|
|
80
|
+
:type _headers: dict, optional
|
|
81
|
+
:param _host_index: set to override the host_index for a single
|
|
82
|
+
request; this effectively ignores the host_index
|
|
83
|
+
in the spec for a single request.
|
|
84
|
+
:type _host_index: int, optional
|
|
85
|
+
:return: Returns the result object.
|
|
86
|
+
""" # noqa: E501
|
|
87
|
+
|
|
88
|
+
_param = self._accept_tenant_invitation_serialize(
|
|
89
|
+
invitation_id=invitation_id,
|
|
90
|
+
accept_tenant_invitation_request=accept_tenant_invitation_request,
|
|
91
|
+
_request_auth=_request_auth,
|
|
92
|
+
_content_type=_content_type,
|
|
93
|
+
_headers=_headers,
|
|
94
|
+
_host_index=_host_index
|
|
95
|
+
)
|
|
96
|
+
|
|
97
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
98
|
+
'200': "AcceptTenantInvitationResponse",
|
|
99
|
+
'422': "HTTPValidationError",
|
|
100
|
+
}
|
|
101
|
+
response_data = self.api_client.call_api(
|
|
102
|
+
*_param,
|
|
103
|
+
_request_timeout=_request_timeout
|
|
104
|
+
)
|
|
105
|
+
response_data.read()
|
|
106
|
+
return self.api_client.response_deserialize(
|
|
107
|
+
response_data=response_data,
|
|
108
|
+
response_types_map=_response_types_map,
|
|
109
|
+
).data
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
@validate_call
|
|
113
|
+
def accept_tenant_invitation_with_http_info(
|
|
114
|
+
self,
|
|
115
|
+
invitation_id: UUID,
|
|
116
|
+
accept_tenant_invitation_request: AcceptTenantInvitationRequest,
|
|
117
|
+
_request_timeout: Union[
|
|
118
|
+
None,
|
|
119
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
120
|
+
Tuple[
|
|
121
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
122
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
123
|
+
]
|
|
124
|
+
] = None,
|
|
125
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
126
|
+
_content_type: Optional[StrictStr] = None,
|
|
127
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
128
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
129
|
+
) -> ApiResponse[AcceptTenantInvitationResponse]:
|
|
130
|
+
"""Accept Tenant Invitation Handler
|
|
131
|
+
|
|
132
|
+
Accept an invitation, creating the customer tenant and its OWNER. New owner: supply ``password`` — the account is created and signed in. Existing owner: accept while signed in as ``owner_email`` (no password).
|
|
133
|
+
|
|
134
|
+
:param invitation_id: (required)
|
|
135
|
+
:type invitation_id: UUID
|
|
136
|
+
:param accept_tenant_invitation_request: (required)
|
|
137
|
+
:type accept_tenant_invitation_request: AcceptTenantInvitationRequest
|
|
138
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
139
|
+
number provided, it will be total request
|
|
140
|
+
timeout. It can also be a pair (tuple) of
|
|
141
|
+
(connection, read) timeouts.
|
|
142
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
143
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
144
|
+
request; this effectively ignores the
|
|
145
|
+
authentication in the spec for a single request.
|
|
146
|
+
:type _request_auth: dict, optional
|
|
147
|
+
:param _content_type: force content-type for the request.
|
|
148
|
+
:type _content_type: str, Optional
|
|
149
|
+
:param _headers: set to override the headers for a single
|
|
150
|
+
request; this effectively ignores the headers
|
|
151
|
+
in the spec for a single request.
|
|
152
|
+
:type _headers: dict, optional
|
|
153
|
+
:param _host_index: set to override the host_index for a single
|
|
154
|
+
request; this effectively ignores the host_index
|
|
155
|
+
in the spec for a single request.
|
|
156
|
+
:type _host_index: int, optional
|
|
157
|
+
:return: Returns the result object.
|
|
158
|
+
""" # noqa: E501
|
|
159
|
+
|
|
160
|
+
_param = self._accept_tenant_invitation_serialize(
|
|
161
|
+
invitation_id=invitation_id,
|
|
162
|
+
accept_tenant_invitation_request=accept_tenant_invitation_request,
|
|
163
|
+
_request_auth=_request_auth,
|
|
164
|
+
_content_type=_content_type,
|
|
165
|
+
_headers=_headers,
|
|
166
|
+
_host_index=_host_index
|
|
167
|
+
)
|
|
168
|
+
|
|
169
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
170
|
+
'200': "AcceptTenantInvitationResponse",
|
|
171
|
+
'422': "HTTPValidationError",
|
|
172
|
+
}
|
|
173
|
+
response_data = self.api_client.call_api(
|
|
174
|
+
*_param,
|
|
175
|
+
_request_timeout=_request_timeout
|
|
176
|
+
)
|
|
177
|
+
response_data.read()
|
|
178
|
+
return self.api_client.response_deserialize(
|
|
179
|
+
response_data=response_data,
|
|
180
|
+
response_types_map=_response_types_map,
|
|
181
|
+
)
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
@validate_call
|
|
185
|
+
def accept_tenant_invitation_without_preload_content(
|
|
186
|
+
self,
|
|
187
|
+
invitation_id: UUID,
|
|
188
|
+
accept_tenant_invitation_request: AcceptTenantInvitationRequest,
|
|
189
|
+
_request_timeout: Union[
|
|
190
|
+
None,
|
|
191
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
192
|
+
Tuple[
|
|
193
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
194
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
195
|
+
]
|
|
196
|
+
] = None,
|
|
197
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
198
|
+
_content_type: Optional[StrictStr] = None,
|
|
199
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
200
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
201
|
+
) -> RESTResponseType:
|
|
202
|
+
"""Accept Tenant Invitation Handler
|
|
203
|
+
|
|
204
|
+
Accept an invitation, creating the customer tenant and its OWNER. New owner: supply ``password`` — the account is created and signed in. Existing owner: accept while signed in as ``owner_email`` (no password).
|
|
205
|
+
|
|
206
|
+
:param invitation_id: (required)
|
|
207
|
+
:type invitation_id: UUID
|
|
208
|
+
:param accept_tenant_invitation_request: (required)
|
|
209
|
+
:type accept_tenant_invitation_request: AcceptTenantInvitationRequest
|
|
210
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
211
|
+
number provided, it will be total request
|
|
212
|
+
timeout. It can also be a pair (tuple) of
|
|
213
|
+
(connection, read) timeouts.
|
|
214
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
215
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
216
|
+
request; this effectively ignores the
|
|
217
|
+
authentication in the spec for a single request.
|
|
218
|
+
:type _request_auth: dict, optional
|
|
219
|
+
:param _content_type: force content-type for the request.
|
|
220
|
+
:type _content_type: str, Optional
|
|
221
|
+
:param _headers: set to override the headers for a single
|
|
222
|
+
request; this effectively ignores the headers
|
|
223
|
+
in the spec for a single request.
|
|
224
|
+
:type _headers: dict, optional
|
|
225
|
+
:param _host_index: set to override the host_index for a single
|
|
226
|
+
request; this effectively ignores the host_index
|
|
227
|
+
in the spec for a single request.
|
|
228
|
+
:type _host_index: int, optional
|
|
229
|
+
:return: Returns the result object.
|
|
230
|
+
""" # noqa: E501
|
|
231
|
+
|
|
232
|
+
_param = self._accept_tenant_invitation_serialize(
|
|
233
|
+
invitation_id=invitation_id,
|
|
234
|
+
accept_tenant_invitation_request=accept_tenant_invitation_request,
|
|
235
|
+
_request_auth=_request_auth,
|
|
236
|
+
_content_type=_content_type,
|
|
237
|
+
_headers=_headers,
|
|
238
|
+
_host_index=_host_index
|
|
239
|
+
)
|
|
240
|
+
|
|
241
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
242
|
+
'200': "AcceptTenantInvitationResponse",
|
|
243
|
+
'422': "HTTPValidationError",
|
|
244
|
+
}
|
|
245
|
+
response_data = self.api_client.call_api(
|
|
246
|
+
*_param,
|
|
247
|
+
_request_timeout=_request_timeout
|
|
248
|
+
)
|
|
249
|
+
return response_data.response
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
def _accept_tenant_invitation_serialize(
|
|
253
|
+
self,
|
|
254
|
+
invitation_id,
|
|
255
|
+
accept_tenant_invitation_request,
|
|
256
|
+
_request_auth,
|
|
257
|
+
_content_type,
|
|
258
|
+
_headers,
|
|
259
|
+
_host_index,
|
|
260
|
+
) -> RequestSerialized:
|
|
261
|
+
|
|
262
|
+
_host = None
|
|
263
|
+
|
|
264
|
+
_collection_formats: Dict[str, str] = {
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
_path_params: Dict[str, str] = {}
|
|
268
|
+
_query_params: List[Tuple[str, str]] = []
|
|
269
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
270
|
+
_form_params: List[Tuple[str, str]] = []
|
|
271
|
+
_files: Dict[
|
|
272
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
273
|
+
] = {}
|
|
274
|
+
_body_params: Optional[bytes] = None
|
|
275
|
+
|
|
276
|
+
# process the path parameters
|
|
277
|
+
if invitation_id is not None:
|
|
278
|
+
_path_params['invitation_id'] = invitation_id
|
|
279
|
+
# process the query parameters
|
|
280
|
+
# process the header parameters
|
|
281
|
+
# process the form parameters
|
|
282
|
+
# process the body parameter
|
|
283
|
+
if accept_tenant_invitation_request is not None:
|
|
284
|
+
_body_params = accept_tenant_invitation_request
|
|
285
|
+
|
|
286
|
+
|
|
287
|
+
# set the HTTP header `Accept`
|
|
288
|
+
if 'Accept' not in _header_params:
|
|
289
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
290
|
+
[
|
|
291
|
+
'application/json'
|
|
292
|
+
]
|
|
293
|
+
)
|
|
294
|
+
|
|
295
|
+
# set the HTTP header `Content-Type`
|
|
296
|
+
if _content_type:
|
|
297
|
+
_header_params['Content-Type'] = _content_type
|
|
298
|
+
else:
|
|
299
|
+
_default_content_type = (
|
|
300
|
+
self.api_client.select_header_content_type(
|
|
301
|
+
[
|
|
302
|
+
'application/json'
|
|
303
|
+
]
|
|
304
|
+
)
|
|
305
|
+
)
|
|
306
|
+
if _default_content_type is not None:
|
|
307
|
+
_header_params['Content-Type'] = _default_content_type
|
|
308
|
+
|
|
309
|
+
# authentication setting
|
|
310
|
+
_auth_settings: List[str] = [
|
|
311
|
+
'cookieAuth'
|
|
312
|
+
]
|
|
313
|
+
|
|
314
|
+
return self.api_client.param_serialize(
|
|
315
|
+
method='POST',
|
|
316
|
+
resource_path='/v1/tenant-invitations/{invitation_id}/accept',
|
|
317
|
+
path_params=_path_params,
|
|
318
|
+
query_params=_query_params,
|
|
319
|
+
header_params=_header_params,
|
|
320
|
+
body=_body_params,
|
|
321
|
+
post_params=_form_params,
|
|
322
|
+
files=_files,
|
|
323
|
+
auth_settings=_auth_settings,
|
|
324
|
+
collection_formats=_collection_formats,
|
|
325
|
+
_host=_host,
|
|
326
|
+
_request_auth=_request_auth
|
|
327
|
+
)
|
|
328
|
+
|
|
329
|
+
|
|
@@ -628,7 +628,7 @@ class TenantsApi:
|
|
|
628
628
|
) -> None:
|
|
629
629
|
"""Delete Tenant
|
|
630
630
|
|
|
631
|
-
Delete a tenant. Requires OWNER role in the tenant. Refused (409) while a provider-billed subscription is live — deleting the tenant would not stop Stripe/Ping++ from charging for it; the OWNER must downgrade to free (or let the prepay period expire) first. Deletes the tenant's LiteLLM team/keys
|
|
631
|
+
Delete a tenant. Requires OWNER role in the tenant. Refused (409) while a provider-billed subscription is live — deleting the tenant would not stop Stripe/Ping++ from charging for it; the OWNER must downgrade to free (or let the prepay period expire) first. Deletes the tenant's LiteLLM team/keys, S3 bucket, and Qdrant vectors after the DB transaction commits.
|
|
632
632
|
|
|
633
633
|
:param tenant_id: (required)
|
|
634
634
|
:type tenant_id: UUID
|
|
@@ -696,7 +696,7 @@ class TenantsApi:
|
|
|
696
696
|
) -> ApiResponse[None]:
|
|
697
697
|
"""Delete Tenant
|
|
698
698
|
|
|
699
|
-
Delete a tenant. Requires OWNER role in the tenant. Refused (409) while a provider-billed subscription is live — deleting the tenant would not stop Stripe/Ping++ from charging for it; the OWNER must downgrade to free (or let the prepay period expire) first. Deletes the tenant's LiteLLM team/keys
|
|
699
|
+
Delete a tenant. Requires OWNER role in the tenant. Refused (409) while a provider-billed subscription is live — deleting the tenant would not stop Stripe/Ping++ from charging for it; the OWNER must downgrade to free (or let the prepay period expire) first. Deletes the tenant's LiteLLM team/keys, S3 bucket, and Qdrant vectors after the DB transaction commits.
|
|
700
700
|
|
|
701
701
|
:param tenant_id: (required)
|
|
702
702
|
:type tenant_id: UUID
|
|
@@ -764,7 +764,7 @@ class TenantsApi:
|
|
|
764
764
|
) -> RESTResponseType:
|
|
765
765
|
"""Delete Tenant
|
|
766
766
|
|
|
767
|
-
Delete a tenant. Requires OWNER role in the tenant. Refused (409) while a provider-billed subscription is live — deleting the tenant would not stop Stripe/Ping++ from charging for it; the OWNER must downgrade to free (or let the prepay period expire) first. Deletes the tenant's LiteLLM team/keys
|
|
767
|
+
Delete a tenant. Requires OWNER role in the tenant. Refused (409) while a provider-billed subscription is live — deleting the tenant would not stop Stripe/Ping++ from charging for it; the OWNER must downgrade to free (or let the prepay period expire) first. Deletes the tenant's LiteLLM team/keys, S3 bucket, and Qdrant vectors after the DB transaction commits.
|
|
768
768
|
|
|
769
769
|
:param tenant_id: (required)
|
|
770
770
|
:type tenant_id: UUID
|