testit-api-client 7.5.2__tar.gz → 7.5.3__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.
- {testit_api_client-7.5.2/src/testit_api_client.egg-info → testit_api_client-7.5.3}/PKG-INFO +6 -1
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/README.md +5 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/setup.py +1 -1
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/__init__.py +1 -1
- testit_api_client-7.5.3/src/testit_api_client/api/open_id_connections_api.py +161 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/api_client.py +1 -1
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/apis/__init__.py +1 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/configuration.py +1 -1
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_projects_project_id_test_plans_test_plan_id_test_points_autotests_run_post_request.py +4 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_test_plans_id_test_runs_search_post_request.py +12 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_test_runs_search_post_request.py +8 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_test_runs_update_multiple_post_request.py +6 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/create_and_fill_by_auto_tests_request.py +4 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/create_and_fill_by_configurations_request.py +4 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/create_and_fill_by_work_items_request.py +4 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/create_empty_request.py +4 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/create_empty_test_run_api_model.py +4 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/create_test_run_and_fill_by_auto_tests_api_model.py +4 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/create_test_run_and_fill_by_configurations_api_model.py +4 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/create_test_run_and_fill_by_work_items_api_model.py +4 -0
- testit_api_client-7.5.3/src/testit_api_client/model/open_id_connection_client_short_model.py +282 -0
- testit_api_client-7.5.3/src/testit_api_client/model/open_id_connection_settings_short_client_model.py +261 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/search_test_runs_api_model.py +12 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/tag_api_model.py +2 -2
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_test_points_auto_tests_run_api_model.py +4 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_run_api_result.py +8 -2
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_run_filter_api_model.py +8 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_run_short_api_result.py +8 -2
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_run_v2_api_result.py +8 -2
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/update_empty_request.py +4 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/update_empty_test_run_api_model.py +4 -0
- testit_api_client-7.5.3/src/testit_api_client/model/update_multiple_tags_api_model.py +274 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/update_multiple_test_runs_api_model.py +6 -0
- testit_api_client-7.5.3/src/testit_api_client/model/update_multiple_test_runs_api_model_tag_update_scheme.py +327 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/models/__init__.py +4 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3/src/testit_api_client.egg-info}/PKG-INFO +6 -1
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client.egg-info/SOURCES.txt +5 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/LICENSE.md +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/setup.cfg +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/api/__init__.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/api/attachments_api.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/api/auto_tests_api.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/api/background_jobs_api.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/api/configurations_api.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/api/custom_attribute_templates_api.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/api/custom_attributes_api.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/api/external_issues_api.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/api/notifications_api.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/api/parameters_api.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/api/project_attribute_templates_api.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/api/project_attributes_api.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/api/project_configurations_api.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/api/project_sections_api.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/api/project_settings_api.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/api/project_test_plan_attributes_api.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/api/project_test_plan_test_points_api.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/api/project_test_plans_api.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/api/project_work_items_api.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/api/projects_api.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/api/search_api.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/api/sections_api.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/api/tags_api.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/api/test_plans_api.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/api/test_points_api.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/api/test_results_api.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/api/test_runs_api.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/api/test_statuses_api.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/api/test_suites_api.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/api/users_api.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/api/webhooks_api.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/api/webhooks_logs_api.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/api/work_items_api.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/api/work_items_comments_api.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/api/workflows_api.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/exceptions.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/__init__.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/action_update.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/ai_service_model_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/ai_service_model_api_result_reply.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_external_service_category.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_auto_tests_delete_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_auto_tests_flaky_bulk_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_auto_tests_id_test_results_search_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_auto_tests_search_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_background_jobs_search_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_configurations_create_by_parameters_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_configurations_delete_bulk_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_configurations_purge_bulk_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_configurations_put_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_configurations_search_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_custom_attributes_global_id_put_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_custom_attributes_global_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_custom_attributes_search_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_custom_attributes_templates_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_custom_attributes_templates_put_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_custom_attributes_templates_search_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_external_issues_suggestions_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_notifications_search_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_parameters_search_groups_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_parameters_search_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_projects_project_id_attributes_templates_search_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_projects_project_id_settings_autotests_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_projects_project_id_test_plans_delete_bulk_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_projects_project_id_test_plans_search_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_projects_project_id_test_plans_test_plan_id_test_points_autotests_rerun_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_projects_project_id_work_items_search_grouped_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_projects_project_id_work_items_search_id_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_projects_project_id_work_items_search_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_projects_restore_bulk_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_projects_search_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_projects_shorts_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_search_global_search_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_tags_delete_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_tags_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_tags_put_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_test_plans_id_export_test_points_xlsx_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_test_plans_id_test_points_tester_user_id_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_test_points_search_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_test_results_external_projects_external_project_id_defects_external_forms_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_test_results_external_projects_external_project_id_defects_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_test_results_id_put_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_test_results_search_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_test_runs_delete_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_test_runs_id_reruns_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_test_runs_id_statistics_filter_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_test_runs_id_test_results_bulk_put_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_test_statuses_id_put_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_test_statuses_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_test_statuses_search_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_test_suites_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_test_suites_put_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_webhooks_delete_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_webhooks_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_webhooks_put_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_webhooks_search_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_webhooks_test_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_work_items_comments_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_work_items_comments_put_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_work_items_links_urls_search_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_work_items_move_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_work_items_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_work_items_shared_step_id_references_sections_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_work_items_shared_step_id_references_work_items_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_workflows_id_projects_search_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_workflows_id_put_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_workflows_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/api_v2_workflows_search_post_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/assign_attachment_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/assign_iteration_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/attachment_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/attachment_change_view_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/attachment_change_view_model_array_changed_field_view_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/attachment_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/attachment_put_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/attachment_put_model_auto_test_step_results_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/attachment_update_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/audit_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_average_duration_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_bulk_delete_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_bulk_delete_api_model_auto_test_select.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_bulk_delete_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_change_view_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_change_view_model_array_changed_field_view_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_class_count_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_create_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_extraction_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_extraction_api_model_ids.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_filter_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_filter_api_model_created_date.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_filter_api_model_modified_date.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_filter_api_model_stability_percentage.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_filter_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_flaky_bulk_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_flaky_bulk_api_model_auto_test_select.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_id_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_last_test_result_configuration.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_model_last_test_result_configuration.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_model_last_test_result_status.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_model_v2_get_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_namespace_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_namespace_count_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_namespaces_count_response.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_outcome.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_project_settings_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_project_settings_api_model_work_item_updating_fields.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_project_settings_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_project_settings_api_result_work_item_updating_fields.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_related_to_test_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_result_history_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_result_history_api_result_status.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_result_history_select_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_result_reason_short.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_result_reasons_count_item_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_result_reasons_count_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_results_for_test_run_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_search_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_search_api_model_filter.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_search_api_model_includes.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_search_include_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_select_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_select_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_select_model_filter.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_short_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_step.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_step_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_step_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_step_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_step_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_step_result_update_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_step_results_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_update_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_test_work_item_identifier_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/auto_tests_extraction_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/autotest_result_outcome.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/autotest_result_reason_filter_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/autotest_result_reason_short_get_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/available_failure_category.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/available_test_result_outcome.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/background_job_attachment_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/background_job_filter_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/background_job_get_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/background_job_state.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/background_job_type.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/boolean_changed_field_view_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/boolean_nullable_changed_field_view_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/collection_filter.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/collection_filter_filter.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/collection_operator.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/composite_filter.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/configuration_by_parameters_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/configuration_extraction_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/configuration_extraction_api_model_ids.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/configuration_extraction_api_model_project_ids.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/configuration_extraction_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/configuration_filter_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/configuration_filter_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/configuration_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/configuration_post_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/configuration_put_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/configuration_select_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/configuration_select_api_model_extraction_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/configuration_select_api_model_filter.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/configuration_select_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/configuration_select_model_extraction_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/configuration_select_model_filter.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/configuration_short.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/configuration_short_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/configuration_short_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/create_auto_test_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/create_configuration_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/create_defect_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/create_defect_api_model_form.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/create_failure_category_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/create_failure_class_regex_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/create_link_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/create_parameter_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/create_parameter_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/create_project_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/create_project_failure_category_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/create_project_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/create_projects_attribute_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/create_section_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/create_step_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/create_tag_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/create_test_plan_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/create_test_plan_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/create_test_status_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/create_work_item_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/create_work_item_comment_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/create_work_item_previews_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/create_workflow_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/custom_attribute_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/custom_attribute_change_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/custom_attribute_get_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/custom_attribute_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/custom_attribute_option_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/custom_attribute_option_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/custom_attribute_option_post_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/custom_attribute_post_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/custom_attribute_put_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/custom_attribute_search_query_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/custom_attribute_search_response_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/custom_attribute_template_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/custom_attribute_template_post_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/custom_attribute_template_put_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/custom_attribute_template_search_query_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/custom_attribute_template_validation_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/custom_attribute_test_plan_project_relation_put_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/custom_attribute_type.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/custom_attribute_types_enum.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/custom_attribute_validation_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/date_time_range_selector_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/defect_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/deletion_state.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/demo_project_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/enable_project_external_service_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/external_form_allowed_value_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/external_form_create_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/external_form_field_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/external_form_link_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/external_form_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/external_issue_api_field.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/external_issue_api_field_suggestion.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/external_issue_api_field_suggestion_external_service.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/external_issue_api_field_suggestion_reply.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/external_issue_api_metadata.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/external_issue_api_metadata_priority.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/external_issue_api_metadata_type.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/external_issue_api_priority.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/external_issue_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/external_issue_api_result_metadata.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/external_issue_api_type.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/external_issue_external_service_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/external_issue_metadata_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/external_issue_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/external_issue_model_metadata.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/external_issue_priority_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/external_issue_type_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/external_link_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/external_service_metadata_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/external_services_metadata_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/failure_category.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/failure_category_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/failure_category_group_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/failure_category_group_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/failure_category_group_item_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/failure_category_group_item_api_result_group.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/failure_category_group_item_api_result_reply.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/failure_category_group_search_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/failure_category_group_search_api_model_group.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/failure_category_group_search_api_model_inquiry.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/failure_category_item_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/failure_category_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/failure_class_regex_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/filter.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/filter_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/filter_operator.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/generate_work_item_previews_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/generate_work_item_previews_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/get_ai_service_models_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/get_external_form_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/get_external_form_api_result_form.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/get_external_issue_suggestions_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/get_external_issue_suggestions_api_model_inquiry.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/get_short_projects_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/get_xlsx_test_points_by_test_plan_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/global_custom_attribute_post_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/global_custom_attribute_update_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/global_search_item_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/global_search_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/global_search_response.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/guid_changed_field_view_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/guid_extraction_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/i_filter.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/image_resize_type.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/inquiry.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/int32_changed_field_view_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/int32_range_selector_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/int64_changed_field_view_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/int64_range_selector_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/iteration_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/iteration_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/label.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/label_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/label_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/label_short_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/last_test_result_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/last_test_result_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/link.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/link_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/link_auto_test_to_work_item_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/link_create_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/link_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/link_post_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/link_put_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/link_short.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/link_short_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/link_short_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/link_type.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/link_update_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/list_sort_direction.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/logical_operator.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/manual_rerun_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/manual_rerun_select_test_results_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/manual_rerun_select_test_results_api_model_extraction_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/manual_rerun_select_test_results_api_model_filter.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/manual_rerun_test_result_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/manual_rerun_test_result_api_model_test_result_ids.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/move_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/named_entity_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/notification_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/notification_query_filter_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/notification_type_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/operation.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/order.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/page.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/parameter_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/parameter_group_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/parameter_groups_filter_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/parameter_iteration_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/parameter_short_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/parameter_short_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/parameters_filter_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/period_view_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/period_view_model_changed_field_view_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/previews_issue_link_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/previews_issue_link_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/problem_details.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/project_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/project_attributes_filter_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/project_custom_attribute_template_get_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/project_custom_attributes_templates_filter_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/project_detailed_failure_category_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/project_external_service_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/project_external_service_api_result_metadata.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/project_external_service_settings_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/project_external_services_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/project_extraction_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/project_failure_category_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/project_failure_category_group_item_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/project_failure_category_group_item_api_result_reply.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/project_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/project_name_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/project_select_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/project_short_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/project_short_api_result_reply.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/project_short_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/project_shortest_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/project_test_plans_filter_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/project_type.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/project_type_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/projects_filter_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/projects_filter_model_autotests_count.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/projects_filter_model_checklists_count.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/projects_filter_model_created_date.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/projects_filter_model_shared_steps_count.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/projects_filter_model_test_cases_count.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/rename_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/replace_project_external_service_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/request_type.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/request_type_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/request_type_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/rerun_test_result_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/reruns_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/search_attributes_in_project_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/search_custom_attribute_template_get_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/search_external_issues_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/search_test_statuses_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/search_webhooks_query_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/search_work_item_link_urls_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/search_work_items_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/search_workflow_projects_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/search_workflows_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/section_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/section_move_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/section_post_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/section_put_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/section_rename_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/section_shared_step.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/section_with_steps_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/select_tags_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/select_tags_api_model_extraction_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/select_tags_api_model_filter.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/shared_step_change_view_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/shared_step_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/shared_step_reference_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/shared_step_reference_section_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/shared_step_reference_sections_query_filter_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/shared_step_reference_sections_query_filter_model_created_date.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/shared_step_reference_sections_query_filter_model_modified_date.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/shared_step_references_query_filter_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/shared_step_result_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/short_configuration.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/step_comment_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/step_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/step_post_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/step_put_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/step_result_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/string_array_changed_field_view_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/string_changed_field_view_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/string_changed_field_with_diffs_view_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/string_extraction_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/tag_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/tag_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/tag_short_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/tags_extraction_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/tags_extraction_api_model_ids.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/tags_filter_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/tags_filter_api_model_created_date.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_change_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_change_model_test_plan_changed_fields.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_changed_fields_view_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_extraction_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_group_by_status.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_group_by_status_code.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_group_by_status_type.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_group_by_tester.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_group_by_tester_and_status.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_group_by_tester_and_status_code.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_link.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_select_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_short_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_status.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_status_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_summary_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_tag_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_test_points_analytics_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_test_points_analytics_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_test_points_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_test_points_auto_tests_rerun_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_test_points_auto_tests_rerun_api_model_extraction_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_test_points_auto_tests_rerun_api_model_filter.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_test_points_extraction_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_test_points_extraction_api_model_ids.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_test_points_group_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_test_points_group_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_test_points_group_search_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_test_points_group_search_api_result_status_counters.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_test_points_group_search_item_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_test_points_inquiry_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_test_points_search_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_test_points_search_api_model_created_date.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_test_points_search_api_model_duration.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_test_points_search_api_model_modified_date.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_test_points_search_api_model_work_item_created_date.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_test_points_search_api_model_work_item_median_duration.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_test_points_search_api_model_work_item_modified_date.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_test_points_search_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_test_points_search_api_result_configuration.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_test_points_search_api_result_created.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_test_points_search_api_result_status_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_test_points_search_api_result_test_suite.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_test_points_search_api_result_work_item.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_test_points_search_status_counters_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_test_points_section_search_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_test_points_set_testers_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_test_points_status_code_group_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_test_points_status_group_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_test_points_status_type_group_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_test_points_test_suite_search_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_test_points_tester_and_status_group_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_test_points_tester_and_status_type_group_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_test_points_tester_group_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_test_points_work_item_search_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_test_points_work_item_search_api_result_section.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_with_analytic_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_with_analytic_model_analytic.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_plan_with_test_suite_tree_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_point.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_point_analytic_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_point_by_test_suite_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_point_change_view_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_point_change_view_model_changed_field_view_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_point_filter_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_point_filter_request_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_point_related_to_test_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_point_result_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_point_select_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_point_selector.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_point_short_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_point_short_api_result_status_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_point_short_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_point_short_response_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_point_short_response_model_last_test_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_point_short_response_model_status_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_point_status.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_point_with_last_result_response_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_points_extraction_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_result_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_result_change_view_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_result_change_view_model_changed_field_view_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_result_chronology_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_result_configuration.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_result_failure_class_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_result_history_report_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_result_history_report_api_result_status.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_result_outcome.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_result_response.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_result_short_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_result_short_response.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_result_step_comment_update_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_result_update_v2_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_result_v2_get_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_result_v2_short_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_results_extraction_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_results_filter_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_results_filter_api_model_completed_on.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_results_filter_api_model_created_date.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_results_filter_api_model_duration.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_results_filter_api_model_modified_date.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_results_filter_api_model_started_on.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_results_local_filter_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_results_select_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_results_select_api_model_extraction_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_results_select_api_model_filter.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_results_statistics_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_results_statistics_api_result_failure_categories.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_results_statistics_api_result_statuses.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_results_statistics_failure_categories_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_results_statistics_statuses_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_run_analytic_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_run_api_result_analytic.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_run_by_auto_test_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_run_by_auto_test_api_result_status.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_run_extraction_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_run_extraction_api_model_ids.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_run_filter_api_model_auto_tests_count.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_run_filter_api_model_completed_date.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_run_filter_api_model_created_date.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_run_filter_api_model_started_date.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_run_group_by_failure_class_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_run_group_by_status_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_run_group_by_status_type_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_run_name_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_run_select_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_run_select_api_model_extraction_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_run_short_api_result_statistics.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_run_short_api_result_status.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_run_state.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_run_statistics_filter_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_run_test_results_partial_bulk_set_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_run_test_results_partial_bulk_set_model_selector.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_run_test_results_select_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_run_test_results_select_model_filter.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_run_test_results_select_model_test_result_ids_extraction_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_status_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_status_api_result_reply.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_status_api_type.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_status_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_status_short_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_status_type.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_suite_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_suite_change_view_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_suite_change_view_model_changed_field_view_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_suite_hierarchy_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_suite_test_plan_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_suite_type.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_suite_type_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_suite_v2_get_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_suite_v2_post_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_suite_v2_put_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_suite_with_children_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_suite_work_items_search_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_suite_work_items_search_model_duration.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_suite_work_items_search_model_external_metadata.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_suite_work_items_search_model_links.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/test_suite_work_items_search_model_median_duration.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/update_auto_test_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/update_custom_attribute_test_plan_project_relations_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/update_failure_category_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/update_failure_category_project_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/update_failure_class_regex_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/update_link_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/update_multiple_attachments_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/update_multiple_links_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/update_multiple_test_runs_api_model_attachment_update_scheme.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/update_multiple_test_runs_api_model_link_update_scheme.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/update_multiple_test_runs_api_model_select_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/update_parameter_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/update_parameter_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/update_project_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/update_project_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/update_projects_attribute_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/update_section_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/update_step_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/update_tag_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/update_test_plan_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/update_test_plan_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/update_test_status_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/update_work_item_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/update_work_item_comment_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/update_work_item_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/update_workflow_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/user_custom_name_validation_response.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/user_name_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/validation_problem_details.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/web_hook_event_type.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/web_hook_event_type_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/web_hook_event_type_request.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/web_hook_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/web_hook_post_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/web_hook_test_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/webhook_bulk_update_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/webhook_log_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/webhook_response.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/webhook_variables_type.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/webhooks_delete_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/webhooks_delete_api_model_extractor.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/webhooks_delete_api_model_filter.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/webhooks_delete_filter_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/webhooks_extraction_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/webhooks_filter_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/webhooks_update_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/webhooks_update_api_model_filter.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/webhooks_update_api_model_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/webhooks_update_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_change_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_change_model_work_item_changed_fields.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_changed_attribute_view_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_changed_fields_view_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_changed_fields_view_model_attachments.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_changed_fields_view_model_auto_tests.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_changed_fields_view_model_duration.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_changed_fields_view_model_global_id.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_changed_fields_view_model_is_deleted.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_changed_fields_view_model_links.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_changed_fields_view_model_project_id.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_changed_fields_view_model_state.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_changed_fields_view_model_steps.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_changed_fields_view_model_tags.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_comment_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_entity_type_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_entity_types.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_external_metadata_field_filter_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_external_metadata_field_filter_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_external_metadata_filter_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_external_metadata_filter_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_extraction_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_extraction_api_model_ids.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_extraction_api_model_section_ids.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_extraction_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_filter_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_filter_api_model_external_metadata.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_filter_api_model_links.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_filter_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_group_get_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_group_get_model_select_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_group_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_group_type.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_id_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_index_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_like_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_link_change_view_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_link_change_view_model_array_changed_field_view_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_link_extraction_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_link_filter_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_link_filter_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_link_url_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_link_url_api_model_extraction_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_link_url_api_model_filter.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_link_url_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_link_url_filter_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_local_filter_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_local_select_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_local_select_model_extraction_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_local_select_model_filter.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_move_post_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_preview_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_preview_step_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_priority.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_priority_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_priority_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_search_query_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_select_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_select_api_model_filter.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_select_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_select_model_filter.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_short_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_short_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_source_type_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_source_type_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_state.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_state_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_states.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_step_change_view_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_step_change_view_model_array_changed_field_with_diffs_view_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_step_change_view_model_work_item.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_updating_fields_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_updating_fields_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/work_item_version_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/workflow_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/workflow_exists_by_name_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/workflow_project_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/workflow_project_api_result_api_collection_preview.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/workflow_project_api_result_reply.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/workflow_short_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/workflow_short_api_result_projects.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/workflow_short_api_result_reply.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/workflow_status_api_model.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model/workflow_status_api_result.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/model_utils.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client/rest.py +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client.egg-info/dependency_links.txt +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client.egg-info/requires.txt +0 -0
- {testit_api_client-7.5.2 → testit_api_client-7.5.3}/src/testit_api_client.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: testit-api-client
|
|
3
|
-
Version: 7.5.
|
|
3
|
+
Version: 7.5.3
|
|
4
4
|
Summary: API-client for Test IT
|
|
5
5
|
Home-page: https://pypi.org/project/testit-api-client/
|
|
6
6
|
Author: Integration team
|
|
@@ -168,6 +168,7 @@ Class | Method | HTTP request | Description
|
|
|
168
168
|
*NotificationsApi* | [**api_v2_notifications_id_read_post**](docs/NotificationsApi.md#api_v2_notifications_id_read_post) | **POST** /api/v2/notifications/{id}/read | Set Notification as read
|
|
169
169
|
*NotificationsApi* | [**api_v2_notifications_read_post**](docs/NotificationsApi.md#api_v2_notifications_read_post) | **POST** /api/v2/notifications/read | Set all Notifications as read
|
|
170
170
|
*NotificationsApi* | [**api_v2_notifications_search_post**](docs/NotificationsApi.md#api_v2_notifications_search_post) | **POST** /api/v2/notifications/search | Search Notifications for current User
|
|
171
|
+
*OpenIdConnectionsApi* | [**api_v2_openid_connections_get**](docs/OpenIdConnectionsApi.md#api_v2_openid_connections_get) | **GET** /api/v2/openid-connections |
|
|
171
172
|
*ParametersApi* | [**api_v2_parameters_bulk_post**](docs/ParametersApi.md#api_v2_parameters_bulk_post) | **POST** /api/v2/parameters/bulk | Create multiple parameters
|
|
172
173
|
*ParametersApi* | [**api_v2_parameters_bulk_put**](docs/ParametersApi.md#api_v2_parameters_bulk_put) | **PUT** /api/v2/parameters/bulk | Update multiple parameters
|
|
173
174
|
*ParametersApi* | [**api_v2_parameters_groups_get**](docs/ParametersApi.md#api_v2_parameters_groups_get) | **GET** /api/v2/parameters/groups | Get parameters as group
|
|
@@ -738,6 +739,8 @@ Class | Method | HTTP request | Description
|
|
|
738
739
|
- [NotificationModel](docs/NotificationModel.md)
|
|
739
740
|
- [NotificationQueryFilterModel](docs/NotificationQueryFilterModel.md)
|
|
740
741
|
- [NotificationTypeModel](docs/NotificationTypeModel.md)
|
|
742
|
+
- [OpenIdConnectionClientShortModel](docs/OpenIdConnectionClientShortModel.md)
|
|
743
|
+
- [OpenIdConnectionSettingsShortClientModel](docs/OpenIdConnectionSettingsShortClientModel.md)
|
|
741
744
|
- [Operation](docs/Operation.md)
|
|
742
745
|
- [Order](docs/Order.md)
|
|
743
746
|
- [Page](docs/Page.md)
|
|
@@ -1011,10 +1014,12 @@ Class | Method | HTTP request | Description
|
|
|
1011
1014
|
- [UpdateLinkApiModel](docs/UpdateLinkApiModel.md)
|
|
1012
1015
|
- [UpdateMultipleAttachmentsApiModel](docs/UpdateMultipleAttachmentsApiModel.md)
|
|
1013
1016
|
- [UpdateMultipleLinksApiModel](docs/UpdateMultipleLinksApiModel.md)
|
|
1017
|
+
- [UpdateMultipleTagsApiModel](docs/UpdateMultipleTagsApiModel.md)
|
|
1014
1018
|
- [UpdateMultipleTestRunsApiModel](docs/UpdateMultipleTestRunsApiModel.md)
|
|
1015
1019
|
- [UpdateMultipleTestRunsApiModelAttachmentUpdateScheme](docs/UpdateMultipleTestRunsApiModelAttachmentUpdateScheme.md)
|
|
1016
1020
|
- [UpdateMultipleTestRunsApiModelLinkUpdateScheme](docs/UpdateMultipleTestRunsApiModelLinkUpdateScheme.md)
|
|
1017
1021
|
- [UpdateMultipleTestRunsApiModelSelectModel](docs/UpdateMultipleTestRunsApiModelSelectModel.md)
|
|
1022
|
+
- [UpdateMultipleTestRunsApiModelTagUpdateScheme](docs/UpdateMultipleTestRunsApiModelTagUpdateScheme.md)
|
|
1018
1023
|
- [UpdateParameterApiModel](docs/UpdateParameterApiModel.md)
|
|
1019
1024
|
- [UpdateParameterRequest](docs/UpdateParameterRequest.md)
|
|
1020
1025
|
- [UpdateProjectApiModel](docs/UpdateProjectApiModel.md)
|
|
@@ -146,6 +146,7 @@ Class | Method | HTTP request | Description
|
|
|
146
146
|
*NotificationsApi* | [**api_v2_notifications_id_read_post**](docs/NotificationsApi.md#api_v2_notifications_id_read_post) | **POST** /api/v2/notifications/{id}/read | Set Notification as read
|
|
147
147
|
*NotificationsApi* | [**api_v2_notifications_read_post**](docs/NotificationsApi.md#api_v2_notifications_read_post) | **POST** /api/v2/notifications/read | Set all Notifications as read
|
|
148
148
|
*NotificationsApi* | [**api_v2_notifications_search_post**](docs/NotificationsApi.md#api_v2_notifications_search_post) | **POST** /api/v2/notifications/search | Search Notifications for current User
|
|
149
|
+
*OpenIdConnectionsApi* | [**api_v2_openid_connections_get**](docs/OpenIdConnectionsApi.md#api_v2_openid_connections_get) | **GET** /api/v2/openid-connections |
|
|
149
150
|
*ParametersApi* | [**api_v2_parameters_bulk_post**](docs/ParametersApi.md#api_v2_parameters_bulk_post) | **POST** /api/v2/parameters/bulk | Create multiple parameters
|
|
150
151
|
*ParametersApi* | [**api_v2_parameters_bulk_put**](docs/ParametersApi.md#api_v2_parameters_bulk_put) | **PUT** /api/v2/parameters/bulk | Update multiple parameters
|
|
151
152
|
*ParametersApi* | [**api_v2_parameters_groups_get**](docs/ParametersApi.md#api_v2_parameters_groups_get) | **GET** /api/v2/parameters/groups | Get parameters as group
|
|
@@ -716,6 +717,8 @@ Class | Method | HTTP request | Description
|
|
|
716
717
|
- [NotificationModel](docs/NotificationModel.md)
|
|
717
718
|
- [NotificationQueryFilterModel](docs/NotificationQueryFilterModel.md)
|
|
718
719
|
- [NotificationTypeModel](docs/NotificationTypeModel.md)
|
|
720
|
+
- [OpenIdConnectionClientShortModel](docs/OpenIdConnectionClientShortModel.md)
|
|
721
|
+
- [OpenIdConnectionSettingsShortClientModel](docs/OpenIdConnectionSettingsShortClientModel.md)
|
|
719
722
|
- [Operation](docs/Operation.md)
|
|
720
723
|
- [Order](docs/Order.md)
|
|
721
724
|
- [Page](docs/Page.md)
|
|
@@ -989,10 +992,12 @@ Class | Method | HTTP request | Description
|
|
|
989
992
|
- [UpdateLinkApiModel](docs/UpdateLinkApiModel.md)
|
|
990
993
|
- [UpdateMultipleAttachmentsApiModel](docs/UpdateMultipleAttachmentsApiModel.md)
|
|
991
994
|
- [UpdateMultipleLinksApiModel](docs/UpdateMultipleLinksApiModel.md)
|
|
995
|
+
- [UpdateMultipleTagsApiModel](docs/UpdateMultipleTagsApiModel.md)
|
|
992
996
|
- [UpdateMultipleTestRunsApiModel](docs/UpdateMultipleTestRunsApiModel.md)
|
|
993
997
|
- [UpdateMultipleTestRunsApiModelAttachmentUpdateScheme](docs/UpdateMultipleTestRunsApiModelAttachmentUpdateScheme.md)
|
|
994
998
|
- [UpdateMultipleTestRunsApiModelLinkUpdateScheme](docs/UpdateMultipleTestRunsApiModelLinkUpdateScheme.md)
|
|
995
999
|
- [UpdateMultipleTestRunsApiModelSelectModel](docs/UpdateMultipleTestRunsApiModelSelectModel.md)
|
|
1000
|
+
- [UpdateMultipleTestRunsApiModelTagUpdateScheme](docs/UpdateMultipleTestRunsApiModelTagUpdateScheme.md)
|
|
996
1001
|
- [UpdateParameterApiModel](docs/UpdateParameterApiModel.md)
|
|
997
1002
|
- [UpdateParameterRequest](docs/UpdateParameterRequest.md)
|
|
998
1003
|
- [UpdateProjectApiModel](docs/UpdateProjectApiModel.md)
|
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
"""
|
|
2
|
+
API
|
|
3
|
+
|
|
4
|
+
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: v2.0
|
|
7
|
+
Generated by: https://openapi-generator.tech
|
|
8
|
+
"""
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
import re # noqa: F401
|
|
12
|
+
import sys # noqa: F401
|
|
13
|
+
|
|
14
|
+
from testit_api_client.api_client import ApiClient, Endpoint as _Endpoint
|
|
15
|
+
from testit_api_client.model_utils import ( # noqa: F401
|
|
16
|
+
check_allowed_values,
|
|
17
|
+
check_validations,
|
|
18
|
+
date,
|
|
19
|
+
datetime,
|
|
20
|
+
file_type,
|
|
21
|
+
none_type,
|
|
22
|
+
validate_and_convert_types
|
|
23
|
+
)
|
|
24
|
+
from testit_api_client.model.open_id_connection_client_short_model import OpenIdConnectionClientShortModel
|
|
25
|
+
from testit_api_client.model.problem_details import ProblemDetails
|
|
26
|
+
from testit_api_client.model.validation_problem_details import ValidationProblemDetails
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
class OpenIdConnectionsApi(object):
|
|
30
|
+
"""NOTE: This class is auto generated by OpenAPI Generator
|
|
31
|
+
Ref: https://openapi-generator.tech
|
|
32
|
+
|
|
33
|
+
Do not edit the class manually.
|
|
34
|
+
"""
|
|
35
|
+
|
|
36
|
+
def __init__(self, api_client=None):
|
|
37
|
+
if api_client is None:
|
|
38
|
+
api_client = ApiClient()
|
|
39
|
+
self.api_client = api_client
|
|
40
|
+
self.api_v2_openid_connections_get_endpoint = _Endpoint(
|
|
41
|
+
settings={
|
|
42
|
+
'response_type': ([OpenIdConnectionClientShortModel],),
|
|
43
|
+
'auth': [
|
|
44
|
+
'Bearer or PrivateToken'
|
|
45
|
+
],
|
|
46
|
+
'endpoint_path': '/api/v2/openid-connections',
|
|
47
|
+
'operation_id': 'api_v2_openid_connections_get',
|
|
48
|
+
'http_method': 'GET',
|
|
49
|
+
'servers': None,
|
|
50
|
+
},
|
|
51
|
+
params_map={
|
|
52
|
+
'all': [
|
|
53
|
+
],
|
|
54
|
+
'required': [],
|
|
55
|
+
'nullable': [
|
|
56
|
+
],
|
|
57
|
+
'enum': [
|
|
58
|
+
],
|
|
59
|
+
'validation': [
|
|
60
|
+
]
|
|
61
|
+
},
|
|
62
|
+
root_map={
|
|
63
|
+
'validations': {
|
|
64
|
+
},
|
|
65
|
+
'allowed_values': {
|
|
66
|
+
},
|
|
67
|
+
'openapi_types': {
|
|
68
|
+
},
|
|
69
|
+
'attribute_map': {
|
|
70
|
+
},
|
|
71
|
+
'location_map': {
|
|
72
|
+
},
|
|
73
|
+
'collection_format_map': {
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
headers_map={
|
|
77
|
+
'accept': [
|
|
78
|
+
'application/json'
|
|
79
|
+
],
|
|
80
|
+
'content_type': [],
|
|
81
|
+
},
|
|
82
|
+
api_client=api_client
|
|
83
|
+
)
|
|
84
|
+
|
|
85
|
+
def api_v2_openid_connections_get(
|
|
86
|
+
self,
|
|
87
|
+
**kwargs
|
|
88
|
+
):
|
|
89
|
+
"""api_v2_openid_connections_get # noqa: E501
|
|
90
|
+
|
|
91
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
92
|
+
asynchronous HTTP request, please pass async_req=True
|
|
93
|
+
|
|
94
|
+
>>> thread = api.api_v2_openid_connections_get(async_req=True)
|
|
95
|
+
>>> result = thread.get()
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
Keyword Args:
|
|
99
|
+
_return_http_data_only (bool): response data without head status
|
|
100
|
+
code and headers. Default is True.
|
|
101
|
+
_preload_content (bool): if False, the urllib3.HTTPResponse object
|
|
102
|
+
will be returned without reading/decoding response data.
|
|
103
|
+
Default is True.
|
|
104
|
+
_request_timeout (int/float/tuple): timeout setting for this request. If
|
|
105
|
+
one number provided, it will be total request timeout. It can also
|
|
106
|
+
be a pair (tuple) of (connection, read) timeouts.
|
|
107
|
+
Default is None.
|
|
108
|
+
_check_input_type (bool): specifies if type checking
|
|
109
|
+
should be done one the data sent to the server.
|
|
110
|
+
Default is True.
|
|
111
|
+
_check_return_type (bool): specifies if type checking
|
|
112
|
+
should be done one the data received from the server.
|
|
113
|
+
Default is True.
|
|
114
|
+
_spec_property_naming (bool): True if the variable names in the input data
|
|
115
|
+
are serialized names, as specified in the OpenAPI document.
|
|
116
|
+
False if the variable names in the input data
|
|
117
|
+
are pythonic names, e.g. snake case (default)
|
|
118
|
+
_content_type (str/None): force body content-type.
|
|
119
|
+
Default is None and content-type will be predicted by allowed
|
|
120
|
+
content-types and body.
|
|
121
|
+
_host_index (int/None): specifies the index of the server
|
|
122
|
+
that we want to use.
|
|
123
|
+
Default is read from the configuration.
|
|
124
|
+
_request_auths (list): set to override the auth_settings for an a single
|
|
125
|
+
request; this effectively ignores the authentication
|
|
126
|
+
in the spec for a single request.
|
|
127
|
+
Default is None
|
|
128
|
+
async_req (bool): execute request asynchronously
|
|
129
|
+
|
|
130
|
+
Returns:
|
|
131
|
+
[OpenIdConnectionClientShortModel]
|
|
132
|
+
If the method is called asynchronously, returns the request
|
|
133
|
+
thread.
|
|
134
|
+
"""
|
|
135
|
+
kwargs['async_req'] = kwargs.get(
|
|
136
|
+
'async_req', False
|
|
137
|
+
)
|
|
138
|
+
kwargs['_return_http_data_only'] = kwargs.get(
|
|
139
|
+
'_return_http_data_only', True
|
|
140
|
+
)
|
|
141
|
+
kwargs['_preload_content'] = kwargs.get(
|
|
142
|
+
'_preload_content', True
|
|
143
|
+
)
|
|
144
|
+
kwargs['_request_timeout'] = kwargs.get(
|
|
145
|
+
'_request_timeout', None
|
|
146
|
+
)
|
|
147
|
+
kwargs['_check_input_type'] = kwargs.get(
|
|
148
|
+
'_check_input_type', True
|
|
149
|
+
)
|
|
150
|
+
kwargs['_check_return_type'] = kwargs.get(
|
|
151
|
+
'_check_return_type', True
|
|
152
|
+
)
|
|
153
|
+
kwargs['_spec_property_naming'] = kwargs.get(
|
|
154
|
+
'_spec_property_naming', False
|
|
155
|
+
)
|
|
156
|
+
kwargs['_content_type'] = kwargs.get(
|
|
157
|
+
'_content_type')
|
|
158
|
+
kwargs['_host_index'] = kwargs.get('_host_index')
|
|
159
|
+
kwargs['_request_auths'] = kwargs.get('_request_auths', None)
|
|
160
|
+
return self.api_v2_openid_connections_get_endpoint.call_with_http_info(**kwargs)
|
|
161
|
+
|
|
@@ -76,7 +76,7 @@ class ApiClient(object):
|
|
|
76
76
|
self.default_headers[header_name] = header_value
|
|
77
77
|
self.cookie = cookie
|
|
78
78
|
# Set default User-Agent.
|
|
79
|
-
self.user_agent = 'OpenAPI-Generator/7.5.
|
|
79
|
+
self.user_agent = 'OpenAPI-Generator/7.5.3/python'
|
|
80
80
|
|
|
81
81
|
def __enter__(self):
|
|
82
82
|
return self
|
|
@@ -22,6 +22,7 @@ from testit_api_client.api.custom_attribute_templates_api import CustomAttribute
|
|
|
22
22
|
from testit_api_client.api.custom_attributes_api import CustomAttributesApi
|
|
23
23
|
from testit_api_client.api.external_issues_api import ExternalIssuesApi
|
|
24
24
|
from testit_api_client.api.notifications_api import NotificationsApi
|
|
25
|
+
from testit_api_client.api.open_id_connections_api import OpenIdConnectionsApi
|
|
25
26
|
from testit_api_client.api.parameters_api import ParametersApi
|
|
26
27
|
from testit_api_client.api.project_attribute_templates_api import ProjectAttributeTemplatesApi
|
|
27
28
|
from testit_api_client.api.project_attributes_api import ProjectAttributesApi
|
|
@@ -413,7 +413,7 @@ conf = testit_api_client.Configuration(
|
|
|
413
413
|
"OS: {env}\n"\
|
|
414
414
|
"Python Version: {pyversion}\n"\
|
|
415
415
|
"Version of the API: v2.0\n"\
|
|
416
|
-
"SDK Package Version: 7.5.
|
|
416
|
+
"SDK Package Version: 7.5.3".\
|
|
417
417
|
format(env=sys.platform, pyversion=sys.version)
|
|
418
418
|
|
|
419
419
|
def get_host_settings(self):
|
|
@@ -96,6 +96,7 @@ class ApiV2ProjectsProjectIdTestPlansTestPlanIdTestPointsAutotestsRunPostRequest
|
|
|
96
96
|
'filter': (TestPlanTestPointsAutoTestsRerunApiModelFilter,), # noqa: E501
|
|
97
97
|
'extraction_model': (TestPlanTestPointsAutoTestsRerunApiModelExtractionModel,), # noqa: E501
|
|
98
98
|
'build': (str, none_type,), # noqa: E501
|
|
99
|
+
'tags': ([str], none_type,), # noqa: E501
|
|
99
100
|
}
|
|
100
101
|
|
|
101
102
|
@cached_property
|
|
@@ -109,6 +110,7 @@ class ApiV2ProjectsProjectIdTestPlansTestPlanIdTestPointsAutotestsRunPostRequest
|
|
|
109
110
|
'filter': 'filter', # noqa: E501
|
|
110
111
|
'extraction_model': 'extractionModel', # noqa: E501
|
|
111
112
|
'build': 'build', # noqa: E501
|
|
113
|
+
'tags': 'tags', # noqa: E501
|
|
112
114
|
}
|
|
113
115
|
|
|
114
116
|
read_only_vars = {
|
|
@@ -155,6 +157,7 @@ class ApiV2ProjectsProjectIdTestPlansTestPlanIdTestPointsAutotestsRunPostRequest
|
|
|
155
157
|
filter (TestPlanTestPointsAutoTestsRerunApiModelFilter): [optional] # noqa: E501
|
|
156
158
|
extraction_model (TestPlanTestPointsAutoTestsRerunApiModelExtractionModel): [optional] # noqa: E501
|
|
157
159
|
build (str, none_type): Specifies the test run build.. [optional] # noqa: E501
|
|
160
|
+
tags ([str], none_type): Tags of the test run.. [optional] # noqa: E501
|
|
158
161
|
"""
|
|
159
162
|
|
|
160
163
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -263,6 +266,7 @@ class ApiV2ProjectsProjectIdTestPlansTestPlanIdTestPointsAutotestsRunPostRequest
|
|
|
263
266
|
filter (TestPlanTestPointsAutoTestsRerunApiModelFilter): [optional] # noqa: E501
|
|
264
267
|
extraction_model (TestPlanTestPointsAutoTestsRerunApiModelExtractionModel): [optional] # noqa: E501
|
|
265
268
|
build (str, none_type): Specifies the test run build.. [optional] # noqa: E501
|
|
269
|
+
tags ([str], none_type): Tags of the test run.. [optional] # noqa: E501
|
|
266
270
|
"""
|
|
267
271
|
|
|
268
272
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -78,6 +78,10 @@ class ApiV2TestPlansIdTestRunsSearchPostRequest(ModelComposed):
|
|
|
78
78
|
},
|
|
79
79
|
('modified_by_ids',): {
|
|
80
80
|
},
|
|
81
|
+
('tags',): {
|
|
82
|
+
},
|
|
83
|
+
('exclude_tags',): {
|
|
84
|
+
},
|
|
81
85
|
}
|
|
82
86
|
|
|
83
87
|
@cached_property
|
|
@@ -110,6 +114,8 @@ class ApiV2TestPlansIdTestRunsSearchPostRequest(ModelComposed):
|
|
|
110
114
|
'completed_date': (DateTimeRangeSelectorModel,), # noqa: E501
|
|
111
115
|
'created_by_ids': ([str], none_type,), # noqa: E501
|
|
112
116
|
'modified_by_ids': ([str], none_type,), # noqa: E501
|
|
117
|
+
'tags': ([str], none_type,), # noqa: E501
|
|
118
|
+
'exclude_tags': ([str], none_type,), # noqa: E501
|
|
113
119
|
}
|
|
114
120
|
|
|
115
121
|
@cached_property
|
|
@@ -125,6 +131,8 @@ class ApiV2TestPlansIdTestRunsSearchPostRequest(ModelComposed):
|
|
|
125
131
|
'completed_date': 'completedDate', # noqa: E501
|
|
126
132
|
'created_by_ids': 'createdByIds', # noqa: E501
|
|
127
133
|
'modified_by_ids': 'modifiedByIds', # noqa: E501
|
|
134
|
+
'tags': 'tags', # noqa: E501
|
|
135
|
+
'exclude_tags': 'excludeTags', # noqa: E501
|
|
128
136
|
}
|
|
129
137
|
|
|
130
138
|
read_only_vars = {
|
|
@@ -173,6 +181,8 @@ class ApiV2TestPlansIdTestRunsSearchPostRequest(ModelComposed):
|
|
|
173
181
|
completed_date (DateTimeRangeSelectorModel): [optional] # noqa: E501
|
|
174
182
|
created_by_ids ([str], none_type): [optional] # noqa: E501
|
|
175
183
|
modified_by_ids ([str], none_type): [optional] # noqa: E501
|
|
184
|
+
tags ([str], none_type): [optional] # noqa: E501
|
|
185
|
+
exclude_tags ([str], none_type): [optional] # noqa: E501
|
|
176
186
|
"""
|
|
177
187
|
|
|
178
188
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -283,6 +293,8 @@ class ApiV2TestPlansIdTestRunsSearchPostRequest(ModelComposed):
|
|
|
283
293
|
completed_date (DateTimeRangeSelectorModel): [optional] # noqa: E501
|
|
284
294
|
created_by_ids ([str], none_type): [optional] # noqa: E501
|
|
285
295
|
modified_by_ids ([str], none_type): [optional] # noqa: E501
|
|
296
|
+
tags ([str], none_type): [optional] # noqa: E501
|
|
297
|
+
exclude_tags ([str], none_type): [optional] # noqa: E501
|
|
286
298
|
"""
|
|
287
299
|
|
|
288
300
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -116,6 +116,8 @@ class ApiV2TestRunsSearchPostRequest(ModelComposed):
|
|
|
116
116
|
'failure_category': ([FailureCategory], none_type,), # noqa: E501
|
|
117
117
|
'completed_date': (TestRunFilterApiModelCompletedDate,), # noqa: E501
|
|
118
118
|
'test_results_configuration_ids': ([str], none_type,), # noqa: E501
|
|
119
|
+
'tags': ([str], none_type,), # noqa: E501
|
|
120
|
+
'exclude_tags': ([str], none_type,), # noqa: E501
|
|
119
121
|
}
|
|
120
122
|
|
|
121
123
|
@cached_property
|
|
@@ -139,6 +141,8 @@ class ApiV2TestRunsSearchPostRequest(ModelComposed):
|
|
|
139
141
|
'failure_category': 'failureCategory', # noqa: E501
|
|
140
142
|
'completed_date': 'completedDate', # noqa: E501
|
|
141
143
|
'test_results_configuration_ids': 'testResultsConfigurationIds', # noqa: E501
|
|
144
|
+
'tags': 'tags', # noqa: E501
|
|
145
|
+
'exclude_tags': 'excludeTags', # noqa: E501
|
|
142
146
|
}
|
|
143
147
|
|
|
144
148
|
read_only_vars = {
|
|
@@ -195,6 +199,8 @@ class ApiV2TestRunsSearchPostRequest(ModelComposed):
|
|
|
195
199
|
failure_category ([FailureCategory], none_type): Specifies failure categories. [optional] # noqa: E501
|
|
196
200
|
completed_date (TestRunFilterApiModelCompletedDate): [optional] # noqa: E501
|
|
197
201
|
test_results_configuration_ids ([str], none_type): Specifies a test result configuration IDs to search for. [optional] # noqa: E501
|
|
202
|
+
tags ([str], none_type): Specifies a test run tags to search for. [optional] # noqa: E501
|
|
203
|
+
exclude_tags ([str], none_type): Specifies a test run excluded tags to search for. [optional] # noqa: E501
|
|
198
204
|
"""
|
|
199
205
|
|
|
200
206
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -313,6 +319,8 @@ class ApiV2TestRunsSearchPostRequest(ModelComposed):
|
|
|
313
319
|
failure_category ([FailureCategory], none_type): Specifies failure categories. [optional] # noqa: E501
|
|
314
320
|
completed_date (TestRunFilterApiModelCompletedDate): [optional] # noqa: E501
|
|
315
321
|
test_results_configuration_ids ([str], none_type): Specifies a test result configuration IDs to search for. [optional] # noqa: E501
|
|
322
|
+
tags ([str], none_type): Specifies a test run tags to search for. [optional] # noqa: E501
|
|
323
|
+
exclude_tags ([str], none_type): Specifies a test run excluded tags to search for. [optional] # noqa: E501
|
|
316
324
|
"""
|
|
317
325
|
|
|
318
326
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -34,10 +34,12 @@ def lazy_import():
|
|
|
34
34
|
from testit_api_client.model.update_multiple_test_runs_api_model_attachment_update_scheme import UpdateMultipleTestRunsApiModelAttachmentUpdateScheme
|
|
35
35
|
from testit_api_client.model.update_multiple_test_runs_api_model_link_update_scheme import UpdateMultipleTestRunsApiModelLinkUpdateScheme
|
|
36
36
|
from testit_api_client.model.update_multiple_test_runs_api_model_select_model import UpdateMultipleTestRunsApiModelSelectModel
|
|
37
|
+
from testit_api_client.model.update_multiple_test_runs_api_model_tag_update_scheme import UpdateMultipleTestRunsApiModelTagUpdateScheme
|
|
37
38
|
globals()['UpdateMultipleTestRunsApiModel'] = UpdateMultipleTestRunsApiModel
|
|
38
39
|
globals()['UpdateMultipleTestRunsApiModelAttachmentUpdateScheme'] = UpdateMultipleTestRunsApiModelAttachmentUpdateScheme
|
|
39
40
|
globals()['UpdateMultipleTestRunsApiModelLinkUpdateScheme'] = UpdateMultipleTestRunsApiModelLinkUpdateScheme
|
|
40
41
|
globals()['UpdateMultipleTestRunsApiModelSelectModel'] = UpdateMultipleTestRunsApiModelSelectModel
|
|
42
|
+
globals()['UpdateMultipleTestRunsApiModelTagUpdateScheme'] = UpdateMultipleTestRunsApiModelTagUpdateScheme
|
|
41
43
|
|
|
42
44
|
|
|
43
45
|
class ApiV2TestRunsUpdateMultiplePostRequest(ModelComposed):
|
|
@@ -97,6 +99,7 @@ class ApiV2TestRunsUpdateMultiplePostRequest(ModelComposed):
|
|
|
97
99
|
'description': (str, none_type,), # noqa: E501
|
|
98
100
|
'attachment_update_scheme': (UpdateMultipleTestRunsApiModelAttachmentUpdateScheme,), # noqa: E501
|
|
99
101
|
'link_update_scheme': (UpdateMultipleTestRunsApiModelLinkUpdateScheme,), # noqa: E501
|
|
102
|
+
'tag_update_scheme': (UpdateMultipleTestRunsApiModelTagUpdateScheme,), # noqa: E501
|
|
100
103
|
}
|
|
101
104
|
|
|
102
105
|
@cached_property
|
|
@@ -109,6 +112,7 @@ class ApiV2TestRunsUpdateMultiplePostRequest(ModelComposed):
|
|
|
109
112
|
'description': 'description', # noqa: E501
|
|
110
113
|
'attachment_update_scheme': 'attachmentUpdateScheme', # noqa: E501
|
|
111
114
|
'link_update_scheme': 'linkUpdateScheme', # noqa: E501
|
|
115
|
+
'tag_update_scheme': 'tagUpdateScheme', # noqa: E501
|
|
112
116
|
}
|
|
113
117
|
|
|
114
118
|
read_only_vars = {
|
|
@@ -154,6 +158,7 @@ class ApiV2TestRunsUpdateMultiplePostRequest(ModelComposed):
|
|
|
154
158
|
description (str, none_type): Test run description. [optional] # noqa: E501
|
|
155
159
|
attachment_update_scheme (UpdateMultipleTestRunsApiModelAttachmentUpdateScheme): [optional] # noqa: E501
|
|
156
160
|
link_update_scheme (UpdateMultipleTestRunsApiModelLinkUpdateScheme): [optional] # noqa: E501
|
|
161
|
+
tag_update_scheme (UpdateMultipleTestRunsApiModelTagUpdateScheme): [optional] # noqa: E501
|
|
157
162
|
"""
|
|
158
163
|
|
|
159
164
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -261,6 +266,7 @@ class ApiV2TestRunsUpdateMultiplePostRequest(ModelComposed):
|
|
|
261
266
|
description (str, none_type): Test run description. [optional] # noqa: E501
|
|
262
267
|
attachment_update_scheme (UpdateMultipleTestRunsApiModelAttachmentUpdateScheme): [optional] # noqa: E501
|
|
263
268
|
link_update_scheme (UpdateMultipleTestRunsApiModelLinkUpdateScheme): [optional] # noqa: E501
|
|
269
|
+
tag_update_scheme (UpdateMultipleTestRunsApiModelTagUpdateScheme): [optional] # noqa: E501
|
|
264
270
|
"""
|
|
265
271
|
|
|
266
272
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -105,6 +105,7 @@ class CreateAndFillByAutoTestsRequest(ModelComposed):
|
|
|
105
105
|
'launch_source': (str, none_type,), # noqa: E501
|
|
106
106
|
'attachments': ([AssignAttachmentApiModel], none_type,), # noqa: E501
|
|
107
107
|
'links': ([CreateLinkApiModel], none_type,), # noqa: E501
|
|
108
|
+
'tags': ([str], none_type,), # noqa: E501
|
|
108
109
|
}
|
|
109
110
|
|
|
110
111
|
@cached_property
|
|
@@ -121,6 +122,7 @@ class CreateAndFillByAutoTestsRequest(ModelComposed):
|
|
|
121
122
|
'launch_source': 'launchSource', # noqa: E501
|
|
122
123
|
'attachments': 'attachments', # noqa: E501
|
|
123
124
|
'links': 'links', # noqa: E501
|
|
125
|
+
'tags': 'tags', # noqa: E501
|
|
124
126
|
}
|
|
125
127
|
|
|
126
128
|
read_only_vars = {
|
|
@@ -170,6 +172,7 @@ class CreateAndFillByAutoTestsRequest(ModelComposed):
|
|
|
170
172
|
launch_source (str, none_type): Specifies the test run launch source.. [optional] # noqa: E501
|
|
171
173
|
attachments ([AssignAttachmentApiModel], none_type): Collection of attachment ids to relate to the test run. [optional] # noqa: E501
|
|
172
174
|
links ([CreateLinkApiModel], none_type): Collection of links to relate to the test run. [optional] # noqa: E501
|
|
175
|
+
tags ([str], none_type): Collection of tags to assign to the test run. [optional] # noqa: E501
|
|
173
176
|
"""
|
|
174
177
|
|
|
175
178
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -281,6 +284,7 @@ class CreateAndFillByAutoTestsRequest(ModelComposed):
|
|
|
281
284
|
launch_source (str, none_type): Specifies the test run launch source.. [optional] # noqa: E501
|
|
282
285
|
attachments ([AssignAttachmentApiModel], none_type): Collection of attachment ids to relate to the test run. [optional] # noqa: E501
|
|
283
286
|
links ([CreateLinkApiModel], none_type): Collection of links to relate to the test run. [optional] # noqa: E501
|
|
287
|
+
tags ([str], none_type): Collection of tags to assign to the test run. [optional] # noqa: E501
|
|
284
288
|
"""
|
|
285
289
|
|
|
286
290
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -101,6 +101,7 @@ class CreateAndFillByConfigurationsRequest(ModelComposed):
|
|
|
101
101
|
'launch_source': (str, none_type,), # noqa: E501
|
|
102
102
|
'attachments': ([AssignAttachmentApiModel], none_type,), # noqa: E501
|
|
103
103
|
'links': ([CreateLinkApiModel], none_type,), # noqa: E501
|
|
104
|
+
'tags': ([str], none_type,), # noqa: E501
|
|
104
105
|
}
|
|
105
106
|
|
|
106
107
|
@cached_property
|
|
@@ -117,6 +118,7 @@ class CreateAndFillByConfigurationsRequest(ModelComposed):
|
|
|
117
118
|
'launch_source': 'launchSource', # noqa: E501
|
|
118
119
|
'attachments': 'attachments', # noqa: E501
|
|
119
120
|
'links': 'links', # noqa: E501
|
|
121
|
+
'tags': 'tags', # noqa: E501
|
|
120
122
|
}
|
|
121
123
|
|
|
122
124
|
read_only_vars = {
|
|
@@ -166,6 +168,7 @@ class CreateAndFillByConfigurationsRequest(ModelComposed):
|
|
|
166
168
|
launch_source (str, none_type): Specifies the test run launch source.. [optional] # noqa: E501
|
|
167
169
|
attachments ([AssignAttachmentApiModel], none_type): Collection of attachment ids to relate to the test run. [optional] # noqa: E501
|
|
168
170
|
links ([CreateLinkApiModel], none_type): Collection of links to relate to the test run. [optional] # noqa: E501
|
|
171
|
+
tags ([str], none_type): Collection of tags to assign to the test run. [optional] # noqa: E501
|
|
169
172
|
"""
|
|
170
173
|
|
|
171
174
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -277,6 +280,7 @@ class CreateAndFillByConfigurationsRequest(ModelComposed):
|
|
|
277
280
|
launch_source (str, none_type): Specifies the test run launch source.. [optional] # noqa: E501
|
|
278
281
|
attachments ([AssignAttachmentApiModel], none_type): Collection of attachment ids to relate to the test run. [optional] # noqa: E501
|
|
279
282
|
links ([CreateLinkApiModel], none_type): Collection of links to relate to the test run. [optional] # noqa: E501
|
|
283
|
+
tags ([str], none_type): Collection of tags to assign to the test run. [optional] # noqa: E501
|
|
280
284
|
"""
|
|
281
285
|
|
|
282
286
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -106,6 +106,7 @@ class CreateAndFillByWorkItemsRequest(ModelComposed):
|
|
|
106
106
|
'launch_source': (str, none_type,), # noqa: E501
|
|
107
107
|
'attachments': ([AssignAttachmentApiModel], none_type,), # noqa: E501
|
|
108
108
|
'links': ([CreateLinkApiModel], none_type,), # noqa: E501
|
|
109
|
+
'tags': ([str], none_type,), # noqa: E501
|
|
109
110
|
}
|
|
110
111
|
|
|
111
112
|
@cached_property
|
|
@@ -123,6 +124,7 @@ class CreateAndFillByWorkItemsRequest(ModelComposed):
|
|
|
123
124
|
'launch_source': 'launchSource', # noqa: E501
|
|
124
125
|
'attachments': 'attachments', # noqa: E501
|
|
125
126
|
'links': 'links', # noqa: E501
|
|
127
|
+
'tags': 'tags', # noqa: E501
|
|
126
128
|
}
|
|
127
129
|
|
|
128
130
|
read_only_vars = {
|
|
@@ -173,6 +175,7 @@ class CreateAndFillByWorkItemsRequest(ModelComposed):
|
|
|
173
175
|
launch_source (str, none_type): Specifies the test run launch source.. [optional] # noqa: E501
|
|
174
176
|
attachments ([AssignAttachmentApiModel], none_type): Collection of attachment ids to relate to the test run. [optional] # noqa: E501
|
|
175
177
|
links ([CreateLinkApiModel], none_type): Collection of links to relate to the test run. [optional] # noqa: E501
|
|
178
|
+
tags ([str], none_type): Collection of tags to assign to the test run. [optional] # noqa: E501
|
|
176
179
|
"""
|
|
177
180
|
|
|
178
181
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -285,6 +288,7 @@ class CreateAndFillByWorkItemsRequest(ModelComposed):
|
|
|
285
288
|
launch_source (str, none_type): Specifies the test run launch source.. [optional] # noqa: E501
|
|
286
289
|
attachments ([AssignAttachmentApiModel], none_type): Collection of attachment ids to relate to the test run. [optional] # noqa: E501
|
|
287
290
|
links ([CreateLinkApiModel], none_type): Collection of links to relate to the test run. [optional] # noqa: E501
|
|
291
|
+
tags ([str], none_type): Collection of tags to assign to the test run. [optional] # noqa: E501
|
|
288
292
|
"""
|
|
289
293
|
|
|
290
294
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -97,6 +97,7 @@ class CreateEmptyRequest(ModelComposed):
|
|
|
97
97
|
'launch_source': (str, none_type,), # noqa: E501
|
|
98
98
|
'attachments': ([AssignAttachmentApiModel], none_type,), # noqa: E501
|
|
99
99
|
'links': ([CreateLinkApiModel], none_type,), # noqa: E501
|
|
100
|
+
'tags': ([str], none_type,), # noqa: E501
|
|
100
101
|
}
|
|
101
102
|
|
|
102
103
|
@cached_property
|
|
@@ -111,6 +112,7 @@ class CreateEmptyRequest(ModelComposed):
|
|
|
111
112
|
'launch_source': 'launchSource', # noqa: E501
|
|
112
113
|
'attachments': 'attachments', # noqa: E501
|
|
113
114
|
'links': 'links', # noqa: E501
|
|
115
|
+
'tags': 'tags', # noqa: E501
|
|
114
116
|
}
|
|
115
117
|
|
|
116
118
|
read_only_vars = {
|
|
@@ -158,6 +160,7 @@ class CreateEmptyRequest(ModelComposed):
|
|
|
158
160
|
launch_source (str, none_type): Test run launch source. [optional] # noqa: E501
|
|
159
161
|
attachments ([AssignAttachmentApiModel], none_type): Collection of attachments to relate to the test run. [optional] # noqa: E501
|
|
160
162
|
links ([CreateLinkApiModel], none_type): Collection of links to relate to the test run. [optional] # noqa: E501
|
|
163
|
+
tags ([str], none_type): Collection of tags to assign to the test run. [optional] # noqa: E501
|
|
161
164
|
"""
|
|
162
165
|
|
|
163
166
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -267,6 +270,7 @@ class CreateEmptyRequest(ModelComposed):
|
|
|
267
270
|
launch_source (str, none_type): Test run launch source. [optional] # noqa: E501
|
|
268
271
|
attachments ([AssignAttachmentApiModel], none_type): Collection of attachments to relate to the test run. [optional] # noqa: E501
|
|
269
272
|
links ([CreateLinkApiModel], none_type): Collection of links to relate to the test run. [optional] # noqa: E501
|
|
273
|
+
tags ([str], none_type): Collection of tags to assign to the test run. [optional] # noqa: E501
|
|
270
274
|
"""
|
|
271
275
|
|
|
272
276
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -88,6 +88,7 @@ class CreateEmptyTestRunApiModel(ModelNormal):
|
|
|
88
88
|
'launch_source': (str, none_type,), # noqa: E501
|
|
89
89
|
'attachments': ([AssignAttachmentApiModel], none_type,), # noqa: E501
|
|
90
90
|
'links': ([CreateLinkApiModel], none_type,), # noqa: E501
|
|
91
|
+
'tags': ([str], none_type,), # noqa: E501
|
|
91
92
|
}
|
|
92
93
|
|
|
93
94
|
@cached_property
|
|
@@ -102,6 +103,7 @@ class CreateEmptyTestRunApiModel(ModelNormal):
|
|
|
102
103
|
'launch_source': 'launchSource', # noqa: E501
|
|
103
104
|
'attachments': 'attachments', # noqa: E501
|
|
104
105
|
'links': 'links', # noqa: E501
|
|
106
|
+
'tags': 'tags', # noqa: E501
|
|
105
107
|
}
|
|
106
108
|
|
|
107
109
|
read_only_vars = {
|
|
@@ -153,6 +155,7 @@ class CreateEmptyTestRunApiModel(ModelNormal):
|
|
|
153
155
|
launch_source (str, none_type): Test run launch source. [optional] # noqa: E501
|
|
154
156
|
attachments ([AssignAttachmentApiModel], none_type): Collection of attachments to relate to the test run. [optional] # noqa: E501
|
|
155
157
|
links ([CreateLinkApiModel], none_type): Collection of links to relate to the test run. [optional] # noqa: E501
|
|
158
|
+
tags ([str], none_type): Collection of tags to assign to the test run. [optional] # noqa: E501
|
|
156
159
|
"""
|
|
157
160
|
|
|
158
161
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -247,6 +250,7 @@ class CreateEmptyTestRunApiModel(ModelNormal):
|
|
|
247
250
|
launch_source (str, none_type): Test run launch source. [optional] # noqa: E501
|
|
248
251
|
attachments ([AssignAttachmentApiModel], none_type): Collection of attachments to relate to the test run. [optional] # noqa: E501
|
|
249
252
|
links ([CreateLinkApiModel], none_type): Collection of links to relate to the test run. [optional] # noqa: E501
|
|
253
|
+
tags ([str], none_type): Collection of tags to assign to the test run. [optional] # noqa: E501
|
|
250
254
|
"""
|
|
251
255
|
|
|
252
256
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -96,6 +96,7 @@ class CreateTestRunAndFillByAutoTestsApiModel(ModelNormal):
|
|
|
96
96
|
'launch_source': (str, none_type,), # noqa: E501
|
|
97
97
|
'attachments': ([AssignAttachmentApiModel], none_type,), # noqa: E501
|
|
98
98
|
'links': ([CreateLinkApiModel], none_type,), # noqa: E501
|
|
99
|
+
'tags': ([str], none_type,), # noqa: E501
|
|
99
100
|
}
|
|
100
101
|
|
|
101
102
|
@cached_property
|
|
@@ -112,6 +113,7 @@ class CreateTestRunAndFillByAutoTestsApiModel(ModelNormal):
|
|
|
112
113
|
'launch_source': 'launchSource', # noqa: E501
|
|
113
114
|
'attachments': 'attachments', # noqa: E501
|
|
114
115
|
'links': 'links', # noqa: E501
|
|
116
|
+
'tags': 'tags', # noqa: E501
|
|
115
117
|
}
|
|
116
118
|
|
|
117
119
|
read_only_vars = {
|
|
@@ -165,6 +167,7 @@ class CreateTestRunAndFillByAutoTestsApiModel(ModelNormal):
|
|
|
165
167
|
launch_source (str, none_type): Specifies the test run launch source.. [optional] # noqa: E501
|
|
166
168
|
attachments ([AssignAttachmentApiModel], none_type): Collection of attachment ids to relate to the test run. [optional] # noqa: E501
|
|
167
169
|
links ([CreateLinkApiModel], none_type): Collection of links to relate to the test run. [optional] # noqa: E501
|
|
170
|
+
tags ([str], none_type): Collection of tags to assign to the test run. [optional] # noqa: E501
|
|
168
171
|
"""
|
|
169
172
|
|
|
170
173
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -263,6 +266,7 @@ class CreateTestRunAndFillByAutoTestsApiModel(ModelNormal):
|
|
|
263
266
|
launch_source (str, none_type): Specifies the test run launch source.. [optional] # noqa: E501
|
|
264
267
|
attachments ([AssignAttachmentApiModel], none_type): Collection of attachment ids to relate to the test run. [optional] # noqa: E501
|
|
265
268
|
links ([CreateLinkApiModel], none_type): Collection of links to relate to the test run. [optional] # noqa: E501
|
|
269
|
+
tags ([str], none_type): Collection of tags to assign to the test run. [optional] # noqa: E501
|
|
266
270
|
"""
|
|
267
271
|
|
|
268
272
|
_check_type = kwargs.pop('_check_type', True)
|