testit-api-client 3.4.1__tar.gz → 4.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {testit-api-client-3.4.1/src/testit_api_client.egg-info → testit_api_client-4.0.0}/PKG-INFO +14 -1
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/README.md +13 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/setup.py +1 -1
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/__init__.py +1 -1
- testit_api_client-4.0.0/src/testit_api_client/api/tags_api.py +1005 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/test_results_api.py +3 -2
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/test_runs_api.py +1043 -253
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/webhooks_api.py +3 -3
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api_client.py +1 -1
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/configuration.py +1 -5
- testit_api_client-4.0.0/src/testit_api_client/model/api_v2_tags_delete_request.py +327 -0
- testit_api_client-4.0.0/src/testit_api_client/model/api_v2_tags_post_request.py +323 -0
- testit_api_client-4.0.0/src/testit_api_client/model/api_v2_tags_put_request.py +323 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_test_points_search_post_request.py +4 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_test_results_search_post_request.py +42 -0
- testit_api_client-4.0.0/src/testit_api_client/model/api_v2_test_runs_delete_request.py +327 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_test_runs_search_post_request.py +6 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/attachment_model.py +2 -8
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/auto_test_model_v2_get_model.py +4 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/auto_test_post_model.py +4 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/auto_test_related_to_test_result.py +4 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/create_and_fill_by_auto_tests_request.py +3 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/create_auto_test_request.py +4 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/create_section_request.py +14 -8
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/create_test_plan_request.py +5 -5
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/create_work_item_request.py +16 -16
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/custom_attribute_model.py +8 -6
- testit_api_client-4.0.0/src/testit_api_client/model/named_entity_model.py +265 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/public_test_point_model.py +8 -2
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/public_test_run_model.py +8 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/section_post_model.py +18 -10
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/section_put_model.py +10 -2
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/section_with_steps_model.py +6 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/shared_step_reference_model.py +5 -5
- testit_api_client-4.0.0/src/testit_api_client/model/step_post_model.py +273 -0
- testit_api_client-4.0.0/src/testit_api_client/model/tag_extraction_model.py +262 -0
- testit_api_client-4.0.0/src/testit_api_client/model/tag_model.py +292 -0
- testit_api_client-4.0.0/src/testit_api_client/model/tag_post_model.py +267 -0
- testit_api_client-4.0.0/src/testit_api_client/model/tag_put_model.py +267 -0
- testit_api_client-4.0.0/src/testit_api_client/model/tag_select_model.py +268 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/tag_short_model.py +1 -2
- testit_api_client-4.0.0/src/testit_api_client/model/tags_filter_model.py +276 -0
- testit_api_client-4.0.0/src/testit_api_client/model/tags_filter_model_created_date.py +323 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_plan_model.py +5 -5
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_plan_post_model.py +5 -5
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_plan_put_model.py +5 -5
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_plan_with_analytic_model.py +5 -5
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_plan_with_test_suite_tree_model.py +5 -5
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_point_filter_model.py +4 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_point_short_get_model.py +14 -2
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_result_short_get_model.py +22 -4
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_result_v2_get_model.py +1 -1
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_result_v2_short_model.py +1 -1
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_results_filter_model.py +42 -0
- testit_api_client-4.0.0/src/testit_api_client/model/test_results_filter_model_completed_on.py +323 -0
- testit_api_client-4.0.0/src/testit_api_client/model/test_results_filter_model_created_date.py +323 -0
- testit_api_client-4.0.0/src/testit_api_client/model/test_results_filter_model_duration.py +323 -0
- testit_api_client-4.0.0/src/testit_api_client/model/test_results_filter_model_modified_date.py +323 -0
- testit_api_client-4.0.0/src/testit_api_client/model/test_results_filter_model_started_on.py +323 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_fill_by_auto_tests_post_model.py +3 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_filter_model.py +6 -0
- testit_api_client-4.0.0/src/testit_api_client/model/test_run_filter_model_created_date.py +323 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_v2_get_model.py +14 -2
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/update_section_request.py +6 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/update_test_plan_request.py +5 -5
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/update_work_item_request.py +5 -5
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/user_rank_model.py +8 -2
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/user_with_rank_model_user_rank.py +4 -0
- testit-api-client-3.4.1/src/testit_api_client/model/request_data.py → testit_api_client-4.0.0/src/testit_api_client/model/webhook_response.py +3 -3
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_model.py +5 -5
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_post_model.py +16 -16
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_put_model.py +5 -5
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_short_model.py +8 -2
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/models/__init__.py +20 -1
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/rest.py +0 -4
- {testit-api-client-3.4.1 → testit_api_client-4.0.0/src/testit_api_client.egg-info}/PKG-INFO +14 -1
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client.egg-info/SOURCES.txt +20 -1
- testit-api-client-3.4.1/src/testit_api_client/api/tags_api.py +0 -314
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/LICENSE.md +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/setup.cfg +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/__init__.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/attachments_api.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/auto_tests_api.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/background_jobs_api.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/configurations_api.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/custom_attribute_templates_api.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/custom_attributes_api.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/notifications_api.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/parameters_api.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/project_attribute_templates_api.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/project_attributes_api.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/project_configurations_api.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/project_export_api.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/project_import_api.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/project_sections_api.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/project_test_plan_attributes_api.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/project_test_plans_api.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/project_work_items_api.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/projects_api.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/search_api.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/sections_api.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/test_plans_api.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/test_points_api.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/test_suites_api.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/webhooks_logs_api.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/work_items_api.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/work_items_comments_api.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/apis/__init__.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/exceptions.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/__init__.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/action_update.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_attachments_post_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_auto_tests_flaky_bulk_post_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_auto_tests_id_test_results_search_post_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_auto_tests_search_post_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_background_jobs_search_post_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_configurations_create_by_parameters_post_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_configurations_purge_bulk_post_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_configurations_put_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_configurations_search_post_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_custom_attributes_global_id_put_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_custom_attributes_global_post_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_custom_attributes_search_post_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_custom_attributes_templates_post_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_custom_attributes_templates_put_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_custom_attributes_templates_search_post_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_notifications_search_post_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_parameters_search_post_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_projects_project_id_attributes_templates_search_post_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_projects_project_id_test_plans_delete_bulk_post_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_projects_project_id_test_plans_search_post_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_projects_project_id_work_items_search_grouped_post_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_projects_project_id_work_items_search_post_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_projects_restore_bulk_post_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_projects_search_post_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_search_global_search_post_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_test_plans_id_export_test_points_xlsx_post_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_test_plans_id_test_points_tester_user_id_post_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_test_plans_id_test_runs_search_post_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_test_results_id_put_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_test_runs_id_statistics_filter_post_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_test_runs_id_test_results_bulk_put_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_test_runs_update_multiple_post_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_test_suites_post_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_test_suites_put_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_webhooks_post_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_webhooks_search_post_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_webhooks_test_post_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_work_items_comments_post_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_work_items_comments_put_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_work_items_move_post_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_work_items_shared_step_id_references_sections_post_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_work_items_shared_step_id_references_work_items_post_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/attachment_change_view_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/attachment_change_view_model_array_changed_field_view_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/attachment_model_auto_test_step_results_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/attachment_put_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/attachment_put_model_auto_test_step_results_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/auto_test_average_duration_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/auto_test_change_view_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/auto_test_change_view_model_array_changed_field_view_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/auto_test_id_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/auto_test_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/auto_test_namespace_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/auto_test_put_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/auto_test_results_for_test_run_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/auto_test_short_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/auto_test_step_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/autotest_filter_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/autotest_filter_model_created_date.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/autotest_filter_model_modified_date.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/autotest_filter_model_stability_percentage.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/autotest_historical_result_select_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/autotest_result_historical_get_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/autotest_result_outcome.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/autotest_result_reason_sub_get_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/autotest_select_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/autotest_select_model_extraction_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/autotest_select_model_filter.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/autotests_extraction_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/autotests_extraction_model_ids.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/autotests_select_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/autotests_select_model_filter.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/autotests_select_model_includes.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/available_test_result_outcome.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/background_job_attachment_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/background_job_filter_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/background_job_get_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/background_job_state.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/background_job_type.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/boolean_changed_field_view_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/boolean_nullable_changed_field_view_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/configuration_by_parameters_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/configuration_extraction_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/configuration_extraction_model_ids.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/configuration_extraction_model_project_ids.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/configuration_filter_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/configuration_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/configuration_post_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/configuration_put_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/configuration_select_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/configuration_select_model_extraction_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/configuration_select_model_filter.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/create_and_fill_by_configurations_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/create_and_fill_by_work_items_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/create_configuration_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/create_empty_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/create_parameter_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/create_project_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/create_projects_attribute_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/custom_attribute_change_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/custom_attribute_get_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/custom_attribute_option_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/custom_attribute_option_post_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/custom_attribute_post_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/custom_attribute_put_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/custom_attribute_search_query_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/custom_attribute_template_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/custom_attribute_template_post_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/custom_attribute_template_put_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/custom_attribute_template_search_query_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/custom_attribute_test_plan_project_relation_put_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/custom_attribute_types_enum.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/date_time_range_selector_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/deletion_state.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/export_project_json_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/export_project_with_test_plans_json_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/external_link_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/failure_category_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/failure_class_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/failure_class_regex_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/filter_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/filter_model_data.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/flaky_bulk_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/flaky_bulk_model_autotest_select.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/get_xlsx_test_points_by_test_plan_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/global_custom_attribute_post_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/global_custom_attribute_update_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/global_search_item_result.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/global_search_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/global_search_response.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/guid_changed_field_view_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/guid_extraction_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/image_resize_type.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/int32_changed_field_view_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/int32_range_selector_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/int64_changed_field_view_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/int64_range_selector_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/iteration_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/iteration_put_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/label_post_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/label_short_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/last_test_result_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/link_auto_test_to_work_item_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/link_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/link_post_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/link_put_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/link_short_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/link_sub_get_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/link_type.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/move_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/no_content_result.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/notification_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/notification_query_filter_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/notification_type_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/operation.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/parameter_filter_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/parameter_group_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/parameter_iteration_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/parameter_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/parameter_post_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/parameter_put_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/parameter_short_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/period_view_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/period_view_model_changed_field_view_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/problem_details.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/project_attributes_filter_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/project_custom_attribute_template_get_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/project_custom_attributes_templates_filter_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/project_export_query_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/project_export_with_test_plans_post_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/project_extraction_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/project_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/project_post_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/project_put_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/project_select_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/project_shortest_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/project_test_plans_filter_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/projects_filter_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/projects_filter_model_autotests_count.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/projects_filter_model_checklists_count.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/projects_filter_model_created_date.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/projects_filter_model_shared_steps_count.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/projects_filter_model_test_cases_count.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/rename_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/request_type_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/search_attributes_in_project_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/search_auto_tests_query_includes_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/search_custom_attribute_template_get_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/search_webhooks_query_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/search_work_items_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/section_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/section_move_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/section_rename_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/section_shared_step.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/set_of_attachment_ids.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/set_of_links.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/shared_step_change_view_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/shared_step_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/shared_step_reference_section_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/shared_step_reference_sections_query_filter_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/shared_step_reference_sections_query_filter_model_created_date.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/shared_step_reference_sections_query_filter_model_modified_date.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/shared_step_references_query_filter_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/shared_step_result_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/short_configuration.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/step_comment_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/step_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/step_put_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/step_result_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/string_array_changed_field_view_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/string_changed_field_view_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/string_changed_field_with_diffs_view_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_plan_change_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_plan_change_model_test_plan_changed_fields.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_plan_changed_fields_view_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_plan_extraction_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_plan_group_by_status.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_plan_group_by_test_suite.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_plan_group_by_tester.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_plan_group_by_tester_and_status.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_plan_link.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_plan_select_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_plan_short_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_plan_status_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_plan_with_analytic_model_analytic.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_point_analytic_result.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_point_by_test_suite_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_point_change_view_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_point_change_view_model_changed_field_view_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_point_filter_model_created_date.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_point_filter_model_duration.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_point_filter_model_modified_date.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_point_filter_model_work_item_created_date.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_point_filter_model_work_item_median_duration.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_point_filter_model_work_item_modified_date.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_point_put_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_point_related_to_test_result.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_point_result_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_point_select_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_point_selector.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_point_short_get_model_last_test_result.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_point_short_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_point_status.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_point_with_last_result_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_points_extraction_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_points_extraction_model_ids.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_result_change_view_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_result_change_view_model_changed_field_view_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_result_chronology_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_result_configuration.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_result_history_report_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_result_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_result_outcome.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_result_short_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_result_step_comment_put_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_result_update_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_results_local_filter_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_results_statistics_get_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_results_statistics_get_model_failure_categories.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_results_statistics_get_model_statuses.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_analytic_result_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_extraction_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_extraction_model_ids.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_fill_by_configurations_post_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_fill_by_work_items_post_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_filter_model_auto_tests_count.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_filter_model_completed_date.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_filter_model_started_date.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_group_by_failure_class_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_group_by_status_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_model_analytic.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_search_query_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_select_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_select_model_extraction_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_selection_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_short_get_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_short_get_model_statistics.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_short_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_state.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_statistics_error_categories_get_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_statistics_statuses_get_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_test_results_partial_bulk_set_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_test_results_partial_bulk_set_model_selector.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_test_results_select_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_test_results_select_model_filter.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_test_results_select_model_test_result_ids_extraction_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_update_multiple_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_v2_post_short_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_v2_put_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_suite_change_view_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_suite_change_view_model_changed_field_view_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_suite_type.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_suite_v2_get_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_suite_v2_post_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_suite_v2_put_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_suite_v2_tree_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_suite_with_children_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_suite_work_items_search_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_suite_work_items_search_model_duration.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_suite_work_items_search_model_median_duration.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/update_attachment_short_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/update_auto_test_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/update_custom_attribute_test_plan_project_relations_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/update_empty_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/update_link_short_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/update_parameter_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/update_project_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/update_projects_attribute_request.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/user_with_rank_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/validate_anti_forgery_token_attribute.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/validation_problem_details.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/web_hook_event_type.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/web_hook_event_type_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/web_hook_log_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/web_hook_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/web_hook_post_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/web_hook_test_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/webhook_variables_type.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_change_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_change_model_work_item_changed_fields.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_changed_attribute_view_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_changed_fields_view_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_changed_fields_view_model_attachments.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_changed_fields_view_model_auto_tests.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_changed_fields_view_model_duration.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_changed_fields_view_model_global_id.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_changed_fields_view_model_is_deleted.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_changed_fields_view_model_links.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_changed_fields_view_model_project_id.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_changed_fields_view_model_state.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_changed_fields_view_model_steps.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_changed_fields_view_model_tags.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_comment_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_comment_model_user.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_comment_post_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_comment_put_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_entity_types.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_extraction_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_extraction_model_ids.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_extraction_model_section_ids.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_filter_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_group_get_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_group_get_model_select_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_group_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_group_type.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_id_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_identifier_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_like_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_link_change_view_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_link_change_view_model_array_changed_field_view_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_local_filter_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_local_select_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_local_select_model_extraction_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_local_select_model_filter.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_move_post_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_priority_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_search_query_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_select_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_select_model_filter.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_state.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_states.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_step_change_view_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_step_change_view_model_array_changed_field_with_diffs_view_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_step_change_view_model_work_item.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_version_model.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model_utils.py +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client.egg-info/dependency_links.txt +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client.egg-info/requires.txt +0 -0
- {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: testit-api-client
|
|
3
|
-
Version:
|
|
3
|
+
Version: 4.0.0
|
|
4
4
|
Summary: API-client for Test IT
|
|
5
5
|
Home-page: https://pypi.org/project/testit-api-client/
|
|
6
6
|
Author: Integration team
|
|
@@ -31,6 +31,8 @@ Status](https://img.shields.io/pypi/v/testit-api-client?style=plastic)](https://
|
|
|
31
31
|
| 4.3 | 3.2.0 |
|
|
32
32
|
| 4.4 | 3.3.0 |
|
|
33
33
|
| 4.5 | 3.4.0 |
|
|
34
|
+
| 4.6 | 3.5.0 |
|
|
35
|
+
| 5.0 | 4.0.0 |
|
|
34
36
|
|
|
35
37
|
## Installation & Usage
|
|
36
38
|
### pip install
|
|
@@ -228,7 +230,12 @@ Class | Method | HTTP request | Description
|
|
|
228
230
|
*SectionsApi* | [**move**](docs/SectionsApi.md#move) | **POST** /api/v2/sections/move | Move section with all work items into another section
|
|
229
231
|
*SectionsApi* | [**rename**](docs/SectionsApi.md#rename) | **POST** /api/v2/sections/rename | Rename section
|
|
230
232
|
*SectionsApi* | [**update_section**](docs/SectionsApi.md#update_section) | **PUT** /api/v2/sections | Update section
|
|
233
|
+
*TagsApi* | [**api_v2_tags_delete**](docs/TagsApi.md#api_v2_tags_delete) | **DELETE** /api/v2/tags | Delete tags
|
|
231
234
|
*TagsApi* | [**api_v2_tags_get**](docs/TagsApi.md#api_v2_tags_get) | **GET** /api/v2/tags | Get all Tags
|
|
235
|
+
*TagsApi* | [**api_v2_tags_id_delete**](docs/TagsApi.md#api_v2_tags_id_delete) | **DELETE** /api/v2/tags/{id} | Delete tag
|
|
236
|
+
*TagsApi* | [**api_v2_tags_post**](docs/TagsApi.md#api_v2_tags_post) | **POST** /api/v2/tags | Create tag
|
|
237
|
+
*TagsApi* | [**api_v2_tags_put**](docs/TagsApi.md#api_v2_tags_put) | **PUT** /api/v2/tags | Update tag
|
|
238
|
+
*TagsApi* | [**api_v2_tags_search_get**](docs/TagsApi.md#api_v2_tags_search_get) | **GET** /api/v2/tags/search | Search tags
|
|
232
239
|
*TagsApi* | [**api_v2_tags_test_plans_tags_get**](docs/TagsApi.md#api_v2_tags_test_plans_tags_get) | **GET** /api/v2/tags/testPlansTags | Get all Tags that are used in TestPlans
|
|
233
240
|
*TestPlansApi* | [**add_test_points_with_sections**](docs/TestPlansApi.md#add_test_points_with_sections) | **POST** /api/v2/testPlans/{id}/test-points/withSections | Add test-points to TestPlan with sections
|
|
234
241
|
*TestPlansApi* | [**add_work_items_with_sections**](docs/TestPlansApi.md#add_work_items_with_sections) | **POST** /api/v2/testPlans/{id}/workItems/withSections | Add WorkItems to TestPlan with Sections as TestSuites
|
|
@@ -276,10 +283,16 @@ Class | Method | HTTP request | Description
|
|
|
276
283
|
*TestResultsApi* | [**download_attachment**](docs/TestResultsApi.md#download_attachment) | **GET** /api/v2/testResults/{id}/attachments/{attachmentId} | Get attachment of TestResult
|
|
277
284
|
*TestResultsApi* | [**get_attachment**](docs/TestResultsApi.md#get_attachment) | **GET** /api/v2/testResults/{id}/attachments/{attachmentId}/info | Get Metadata of TestResult's attachment
|
|
278
285
|
*TestResultsApi* | [**get_attachments**](docs/TestResultsApi.md#get_attachments) | **GET** /api/v2/testResults/{id}/attachments | Get all attachments of TestResult
|
|
286
|
+
*TestRunsApi* | [**api_v2_test_runs_delete**](docs/TestRunsApi.md#api_v2_test_runs_delete) | **DELETE** /api/v2/testRuns | Delete multiple test runs
|
|
287
|
+
*TestRunsApi* | [**api_v2_test_runs_id_delete**](docs/TestRunsApi.md#api_v2_test_runs_id_delete) | **DELETE** /api/v2/testRuns/{id} | Delete test run
|
|
288
|
+
*TestRunsApi* | [**api_v2_test_runs_id_purge_post**](docs/TestRunsApi.md#api_v2_test_runs_id_purge_post) | **POST** /api/v2/testRuns/{id}/purge | Permanently delete test run from archive
|
|
289
|
+
*TestRunsApi* | [**api_v2_test_runs_id_restore_post**](docs/TestRunsApi.md#api_v2_test_runs_id_restore_post) | **POST** /api/v2/testRuns/{id}/restore | Restore test run from the archive
|
|
279
290
|
*TestRunsApi* | [**api_v2_test_runs_id_statistics_filter_post**](docs/TestRunsApi.md#api_v2_test_runs_id_statistics_filter_post) | **POST** /api/v2/testRuns/{id}/statistics/filter | Search for the test run test results and build statistics
|
|
280
291
|
*TestRunsApi* | [**api_v2_test_runs_id_test_points_results_get**](docs/TestRunsApi.md#api_v2_test_runs_id_test_points_results_get) | **GET** /api/v2/testRuns/{id}/testPoints/results | Get test results from the test run grouped by test points
|
|
281
292
|
*TestRunsApi* | [**api_v2_test_runs_id_test_results_bulk_put**](docs/TestRunsApi.md#api_v2_test_runs_id_test_results_bulk_put) | **PUT** /api/v2/testRuns/{id}/testResults/bulk | Partial edit of multiple test results in the test run
|
|
282
293
|
*TestRunsApi* | [**api_v2_test_runs_id_test_results_last_modified_modification_date_get**](docs/TestRunsApi.md#api_v2_test_runs_id_test_results_last_modified_modification_date_get) | **GET** /api/v2/testRuns/{id}/testResults/lastModified/modificationDate | Get modification date of last test result of the test run
|
|
294
|
+
*TestRunsApi* | [**api_v2_test_runs_purge_bulk_post**](docs/TestRunsApi.md#api_v2_test_runs_purge_bulk_post) | **POST** /api/v2/testRuns/purge/bulk | Permanently delete multiple test runs from archive
|
|
295
|
+
*TestRunsApi* | [**api_v2_test_runs_restore_bulk_post**](docs/TestRunsApi.md#api_v2_test_runs_restore_bulk_post) | **POST** /api/v2/testRuns/restore/bulk | Restore multiple test runs from the archive
|
|
283
296
|
*TestRunsApi* | [**api_v2_test_runs_search_post**](docs/TestRunsApi.md#api_v2_test_runs_search_post) | **POST** /api/v2/testRuns/search | Search for test runs
|
|
284
297
|
*TestRunsApi* | [**api_v2_test_runs_update_multiple_post**](docs/TestRunsApi.md#api_v2_test_runs_update_multiple_post) | **POST** /api/v2/testRuns/updateMultiple | Update multiple test runs
|
|
285
298
|
*TestRunsApi* | [**complete_test_run**](docs/TestRunsApi.md#complete_test_run) | **POST** /api/v2/testRuns/{id}/complete | Complete TestRun
|
|
@@ -18,6 +18,8 @@ Status](https://img.shields.io/pypi/v/testit-api-client?style=plastic)](https://
|
|
|
18
18
|
| 4.3 | 3.2.0 |
|
|
19
19
|
| 4.4 | 3.3.0 |
|
|
20
20
|
| 4.5 | 3.4.0 |
|
|
21
|
+
| 4.6 | 3.5.0 |
|
|
22
|
+
| 5.0 | 4.0.0 |
|
|
21
23
|
|
|
22
24
|
## Installation & Usage
|
|
23
25
|
### pip install
|
|
@@ -215,7 +217,12 @@ Class | Method | HTTP request | Description
|
|
|
215
217
|
*SectionsApi* | [**move**](docs/SectionsApi.md#move) | **POST** /api/v2/sections/move | Move section with all work items into another section
|
|
216
218
|
*SectionsApi* | [**rename**](docs/SectionsApi.md#rename) | **POST** /api/v2/sections/rename | Rename section
|
|
217
219
|
*SectionsApi* | [**update_section**](docs/SectionsApi.md#update_section) | **PUT** /api/v2/sections | Update section
|
|
220
|
+
*TagsApi* | [**api_v2_tags_delete**](docs/TagsApi.md#api_v2_tags_delete) | **DELETE** /api/v2/tags | Delete tags
|
|
218
221
|
*TagsApi* | [**api_v2_tags_get**](docs/TagsApi.md#api_v2_tags_get) | **GET** /api/v2/tags | Get all Tags
|
|
222
|
+
*TagsApi* | [**api_v2_tags_id_delete**](docs/TagsApi.md#api_v2_tags_id_delete) | **DELETE** /api/v2/tags/{id} | Delete tag
|
|
223
|
+
*TagsApi* | [**api_v2_tags_post**](docs/TagsApi.md#api_v2_tags_post) | **POST** /api/v2/tags | Create tag
|
|
224
|
+
*TagsApi* | [**api_v2_tags_put**](docs/TagsApi.md#api_v2_tags_put) | **PUT** /api/v2/tags | Update tag
|
|
225
|
+
*TagsApi* | [**api_v2_tags_search_get**](docs/TagsApi.md#api_v2_tags_search_get) | **GET** /api/v2/tags/search | Search tags
|
|
219
226
|
*TagsApi* | [**api_v2_tags_test_plans_tags_get**](docs/TagsApi.md#api_v2_tags_test_plans_tags_get) | **GET** /api/v2/tags/testPlansTags | Get all Tags that are used in TestPlans
|
|
220
227
|
*TestPlansApi* | [**add_test_points_with_sections**](docs/TestPlansApi.md#add_test_points_with_sections) | **POST** /api/v2/testPlans/{id}/test-points/withSections | Add test-points to TestPlan with sections
|
|
221
228
|
*TestPlansApi* | [**add_work_items_with_sections**](docs/TestPlansApi.md#add_work_items_with_sections) | **POST** /api/v2/testPlans/{id}/workItems/withSections | Add WorkItems to TestPlan with Sections as TestSuites
|
|
@@ -263,10 +270,16 @@ Class | Method | HTTP request | Description
|
|
|
263
270
|
*TestResultsApi* | [**download_attachment**](docs/TestResultsApi.md#download_attachment) | **GET** /api/v2/testResults/{id}/attachments/{attachmentId} | Get attachment of TestResult
|
|
264
271
|
*TestResultsApi* | [**get_attachment**](docs/TestResultsApi.md#get_attachment) | **GET** /api/v2/testResults/{id}/attachments/{attachmentId}/info | Get Metadata of TestResult's attachment
|
|
265
272
|
*TestResultsApi* | [**get_attachments**](docs/TestResultsApi.md#get_attachments) | **GET** /api/v2/testResults/{id}/attachments | Get all attachments of TestResult
|
|
273
|
+
*TestRunsApi* | [**api_v2_test_runs_delete**](docs/TestRunsApi.md#api_v2_test_runs_delete) | **DELETE** /api/v2/testRuns | Delete multiple test runs
|
|
274
|
+
*TestRunsApi* | [**api_v2_test_runs_id_delete**](docs/TestRunsApi.md#api_v2_test_runs_id_delete) | **DELETE** /api/v2/testRuns/{id} | Delete test run
|
|
275
|
+
*TestRunsApi* | [**api_v2_test_runs_id_purge_post**](docs/TestRunsApi.md#api_v2_test_runs_id_purge_post) | **POST** /api/v2/testRuns/{id}/purge | Permanently delete test run from archive
|
|
276
|
+
*TestRunsApi* | [**api_v2_test_runs_id_restore_post**](docs/TestRunsApi.md#api_v2_test_runs_id_restore_post) | **POST** /api/v2/testRuns/{id}/restore | Restore test run from the archive
|
|
266
277
|
*TestRunsApi* | [**api_v2_test_runs_id_statistics_filter_post**](docs/TestRunsApi.md#api_v2_test_runs_id_statistics_filter_post) | **POST** /api/v2/testRuns/{id}/statistics/filter | Search for the test run test results and build statistics
|
|
267
278
|
*TestRunsApi* | [**api_v2_test_runs_id_test_points_results_get**](docs/TestRunsApi.md#api_v2_test_runs_id_test_points_results_get) | **GET** /api/v2/testRuns/{id}/testPoints/results | Get test results from the test run grouped by test points
|
|
268
279
|
*TestRunsApi* | [**api_v2_test_runs_id_test_results_bulk_put**](docs/TestRunsApi.md#api_v2_test_runs_id_test_results_bulk_put) | **PUT** /api/v2/testRuns/{id}/testResults/bulk | Partial edit of multiple test results in the test run
|
|
269
280
|
*TestRunsApi* | [**api_v2_test_runs_id_test_results_last_modified_modification_date_get**](docs/TestRunsApi.md#api_v2_test_runs_id_test_results_last_modified_modification_date_get) | **GET** /api/v2/testRuns/{id}/testResults/lastModified/modificationDate | Get modification date of last test result of the test run
|
|
281
|
+
*TestRunsApi* | [**api_v2_test_runs_purge_bulk_post**](docs/TestRunsApi.md#api_v2_test_runs_purge_bulk_post) | **POST** /api/v2/testRuns/purge/bulk | Permanently delete multiple test runs from archive
|
|
282
|
+
*TestRunsApi* | [**api_v2_test_runs_restore_bulk_post**](docs/TestRunsApi.md#api_v2_test_runs_restore_bulk_post) | **POST** /api/v2/testRuns/restore/bulk | Restore multiple test runs from the archive
|
|
270
283
|
*TestRunsApi* | [**api_v2_test_runs_search_post**](docs/TestRunsApi.md#api_v2_test_runs_search_post) | **POST** /api/v2/testRuns/search | Search for test runs
|
|
271
284
|
*TestRunsApi* | [**api_v2_test_runs_update_multiple_post**](docs/TestRunsApi.md#api_v2_test_runs_update_multiple_post) | **POST** /api/v2/testRuns/updateMultiple | Update multiple test runs
|
|
272
285
|
*TestRunsApi* | [**complete_test_run**](docs/TestRunsApi.md#complete_test_run) | **POST** /api/v2/testRuns/{id}/complete | Complete TestRun
|