testit-api-client 7.1.2__tar.gz → 7.2.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-7.1.2/src/testit_api_client.egg-info → testit_api_client-7.2.0}/PKG-INFO +21 -5
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/README.md +20 -4
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/setup.py +1 -1
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/__init__.py +1 -1
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/api/attachments_api.py +1 -1
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/api/auto_tests_api.py +17 -17
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/api/configurations_api.py +4 -4
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/api/custom_attribute_templates_api.py +7 -7
- testit_api_client-7.2.0/src/testit_api_client/api/external_issues_api.py +169 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/api/notifications_api.py +5 -5
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/api/parameters_api.py +11 -11
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/api/project_attribute_templates_api.py +3 -3
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/api/project_attributes_api.py +4 -4
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/api/project_configurations_api.py +1 -1
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/api/project_sections_api.py +1 -1
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/api/project_settings_api.py +5 -5
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/api/project_test_plan_attributes_api.py +4 -4
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/api/project_test_plan_test_points_api.py +2 -2
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/api/project_test_plans_api.py +3 -3
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/api/project_work_items_api.py +183 -2
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/api/projects_api.py +22 -144
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/api/sections_api.py +6 -6
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/api/tags_api.py +6 -6
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/api/test_plans_api.py +47 -47
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/api/test_results_api.py +5 -5
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/api/test_runs_api.py +15 -15
- testit_api_client-7.2.0/src/testit_api_client/api/test_statuses_api.py +991 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/api/test_suites_api.py +7 -7
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/api/webhooks_logs_api.py +6 -6
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/api/work_items_api.py +29 -29
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/api/work_items_comments_api.py +2 -2
- testit_api_client-7.2.0/src/testit_api_client/api/workflows_api.py +1149 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/api_client.py +1 -1
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/apis/__init__.py +3 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/configuration.py +1 -1
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_custom_attributes_global_id_put_request.py +2 -2
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_custom_attributes_global_post_request.py +2 -2
- testit_api_client-7.2.0/src/testit_api_client/model/api_v2_external_issues_suggestions_post_request.py +331 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_projects_project_id_settings_autotests_post_request.py +3 -3
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_projects_project_id_test_plans_test_plan_id_test_points_autotests_rerun_post_request.py +14 -10
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_projects_project_id_test_plans_test_plan_id_test_points_autotests_run_post_request.py +10 -10
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_test_results_id_put_request.py +2 -2
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_test_runs_id_reruns_post_request.py +14 -10
- testit_api_client-7.2.0/src/testit_api_client/model/api_v2_test_statuses_id_put_request.py +331 -0
- testit_api_client-7.2.0/src/testit_api_client/model/api_v2_test_statuses_post_request.py +345 -0
- testit_api_client-7.2.0/src/testit_api_client/model/api_v2_test_statuses_search_post_request.py +321 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_work_items_shared_step_id_references_work_items_post_request.py +2 -2
- testit_api_client-7.2.0/src/testit_api_client/model/api_v2_workflows_id_projects_search_post_request.py +321 -0
- testit_api_client-7.2.0/src/testit_api_client/model/api_v2_workflows_id_put_request.py +336 -0
- testit_api_client-7.2.0/src/testit_api_client/model/api_v2_workflows_post_request.py +336 -0
- testit_api_client-7.2.0/src/testit_api_client/model/api_v2_workflows_search_post_request.py +321 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/attachment_put_model_auto_test_step_results_model.py +2 -2
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_filter_api_model.py +6 -4
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_filter_model.py +4 -4
- testit_api_client-7.1.2/src/testit_api_client/model/auto_test_project_settings_post_model.py → testit_api_client-7.2.0/src/testit_api_client/model/auto_test_project_settings_api_model.py +3 -3
- testit_api_client-7.1.2/src/testit_api_client/model/auto_test_project_settings_get_model.py → testit_api_client-7.2.0/src/testit_api_client/model/auto_test_project_settings_api_result.py +21 -27
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_search_api_model_filter.py +6 -4
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_select_model_filter.py +4 -4
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_step_result.py +2 -2
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_step_result_update_request.py +2 -2
- testit_api_client-7.2.0/src/testit_api_client/model/collection_filter.py +280 -0
- testit_api_client-7.2.0/src/testit_api_client/model/collection_filter_filter.py +337 -0
- testit_api_client-7.2.0/src/testit_api_client/model/collection_operator.py +290 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/composite_filter.py +5 -3
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/create_empty_request.py +2 -2
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/create_empty_test_run_api_model.py +2 -2
- testit_api_client-7.1.2/src/testit_api_client/model/create_auto_test_result_reason_project_api_model.py → testit_api_client-7.2.0/src/testit_api_client/model/create_failure_category_api_model.py +3 -3
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/create_projects_attribute_request.py +2 -2
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/custom_attribute_model.py +2 -2
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/custom_attribute_post_model.py +2 -2
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/custom_attribute_put_model.py +2 -2
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/custom_attribute_search_response_model.py +2 -2
- testit_api_client-7.2.0/src/testit_api_client/model/external_issue_api_field_suggestion.py +274 -0
- testit_api_client-7.2.0/src/testit_api_client/model/external_issue_api_field_suggestion_external_service.py +323 -0
- testit_api_client-7.2.0/src/testit_api_client/model/external_issue_api_metadata.py +300 -0
- testit_api_client-7.2.0/src/testit_api_client/model/external_issue_api_metadata_priority.py +323 -0
- testit_api_client-7.2.0/src/testit_api_client/model/external_issue_api_metadata_type.py +323 -0
- testit_api_client-7.2.0/src/testit_api_client/model/external_issue_api_priority.py +267 -0
- testit_api_client-7.2.0/src/testit_api_client/model/external_issue_api_result.py +286 -0
- testit_api_client-7.2.0/src/testit_api_client/model/external_issue_api_result_metadata.py +351 -0
- testit_api_client-7.2.0/src/testit_api_client/model/external_issue_api_type.py +267 -0
- testit_api_client-7.2.0/src/testit_api_client/model/external_issue_external_service_api_result.py +269 -0
- testit_api_client-7.2.0/src/testit_api_client/model/external_issue_metadata_model.py +300 -0
- testit_api_client-7.2.0/src/testit_api_client/model/external_issue_model.py +286 -0
- testit_api_client-7.2.0/src/testit_api_client/model/external_issue_model_metadata.py +351 -0
- testit_api_client-7.2.0/src/testit_api_client/model/external_issue_priority_model.py +267 -0
- testit_api_client-7.2.0/src/testit_api_client/model/external_issue_type_model.py +267 -0
- testit_api_client-7.1.2/src/testit_api_client/model/auto_test_result_reason_project_api_result.py → testit_api_client-7.2.0/src/testit_api_client/model/failure_category_api_result.py +3 -3
- testit_api_client-7.1.2/src/testit_api_client/model/auto_test_result_reason_group_api_model.py → testit_api_client-7.2.0/src/testit_api_client/model/failure_category_group_api_model.py +3 -3
- testit_api_client-7.1.2/src/testit_api_client/model/auto_test_result_reason_group_api_result.py → testit_api_client-7.2.0/src/testit_api_client/model/failure_category_group_api_result.py +3 -3
- testit_api_client-7.1.2/src/testit_api_client/model/auto_test_result_reason_group_item_api_result.py → testit_api_client-7.2.0/src/testit_api_client/model/failure_category_group_item_api_result.py +13 -13
- testit_api_client-7.1.2/src/testit_api_client/model/auto_test_result_reason_group_item_api_result_group.py → testit_api_client-7.2.0/src/testit_api_client/model/failure_category_group_item_api_result_group.py +6 -6
- testit_api_client-7.2.0/src/testit_api_client/model/failure_category_group_item_api_result_reply.py +274 -0
- testit_api_client-7.1.2/src/testit_api_client/model/auto_test_result_reason_group_search_api_model.py → testit_api_client-7.2.0/src/testit_api_client/model/failure_category_group_search_api_model.py +13 -13
- testit_api_client-7.1.2/src/testit_api_client/model/auto_test_result_reason_group_search_api_model_group.py → testit_api_client-7.2.0/src/testit_api_client/model/failure_category_group_search_api_model_group.py +6 -6
- testit_api_client-7.1.2/src/testit_api_client/model/auto_test_result_reason_group_search_api_model_inquiry.py → testit_api_client-7.2.0/src/testit_api_client/model/failure_category_group_search_api_model_inquiry.py +3 -3
- testit_api_client-7.1.2/src/testit_api_client/model/auto_test_result_reasons_project_api_result.py → testit_api_client-7.2.0/src/testit_api_client/model/failure_category_item_api_result.py +3 -3
- testit_api_client-7.2.0/src/testit_api_client/model/filter.py +276 -0
- testit_api_client-7.2.0/src/testit_api_client/model/filter_operator.py +298 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/get_external_issue_suggestions_api_model.py +11 -9
- testit_api_client-7.2.0/src/testit_api_client/model/get_external_issue_suggestions_api_model_inquiry.py +333 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/global_custom_attribute_post_model.py +2 -2
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/global_custom_attribute_update_model.py +2 -2
- testit_api_client-7.2.0/src/testit_api_client/model/i_filter.py +339 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/link_auto_test_to_work_item_request.py +5 -8
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/link_short_model.py +4 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/manual_rerun_select_test_results_api_model.py +14 -10
- testit_api_client-7.2.0/src/testit_api_client/model/manual_rerun_select_test_results_api_model_extraction_model.py +321 -0
- testit_api_client-7.2.0/src/testit_api_client/model/manual_rerun_select_test_results_api_model_filter.py +397 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/project_failure_category_group_item_api_result.py +5 -5
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/project_model.py +6 -8
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/project_short_model.py +6 -8
- testit_api_client-7.2.0/src/testit_api_client/model/request_type.py +291 -0
- testit_api_client-7.2.0/src/testit_api_client/model/search_external_issues_api_model.py +266 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/search_work_items_request.py +14 -2
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/shared_step_references_query_filter_model.py +2 -2
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_test_points_auto_tests_rerun_api_model.py +14 -10
- testit_api_client-7.1.2/src/testit_api_client/model/test_plan_test_points_auto_tests_run_api_model_extraction_model.py → testit_api_client-7.2.0/src/testit_api_client/model/test_plan_test_points_auto_tests_rerun_api_model_extraction_model.py +3 -3
- testit_api_client-7.1.2/src/testit_api_client/model/test_plan_test_points_auto_tests_run_api_model_filter.py → testit_api_client-7.2.0/src/testit_api_client/model/test_plan_test_points_auto_tests_rerun_api_model_filter.py +7 -3
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_test_points_auto_tests_run_api_model.py +10 -10
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_test_points_search_api_model.py +4 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_point_by_test_suite_model.py +2 -2
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_point_related_to_test_result.py +2 -2
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_point_short_api_result.py +2 -2
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_point_short_model.py +2 -2
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_result_history_report_api_result.py +12 -12
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_result_update_v2_request.py +2 -2
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_results_statistics_api_result_statuses.py +4 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_results_statistics_statuses_api_result.py +8 -2
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_run_v2_api_result.py +6 -6
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_suite_work_items_search_model.py +14 -2
- testit_api_client-7.2.0/src/testit_api_client/model/test_suite_work_items_search_model_external_metadata.py +337 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/update_empty_request.py +2 -2
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/update_empty_test_run_api_model.py +2 -2
- testit_api_client-7.1.2/src/testit_api_client/model/update_auto_test_result_reason_project_api_model.py → testit_api_client-7.2.0/src/testit_api_client/model/update_failure_category_api_model.py +3 -3
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/update_projects_attribute_request.py +2 -2
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/user_rank_model.py +14 -2
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/user_with_rank_model_user_rank.py +8 -0
- testit_api_client-7.1.2/src/testit_api_client/model/web_hook_log_model.py → testit_api_client-7.2.0/src/testit_api_client/model/webhook_log_api_result.py +27 -27
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_api_result.py +10 -2
- testit_api_client-7.2.0/src/testit_api_client/model/work_item_external_metadata_field_filter_api_model.py +269 -0
- testit_api_client-7.1.2/src/testit_api_client/model/external_issue_api_field_suggestion.py → testit_api_client-7.2.0/src/testit_api_client/model/work_item_external_metadata_field_filter_model.py +13 -7
- testit_api_client-7.2.0/src/testit_api_client/model/work_item_external_metadata_filter_api_model.py +278 -0
- testit_api_client-7.2.0/src/testit_api_client/model/work_item_external_metadata_filter_model.py +278 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_filter_api_model.py +12 -0
- testit_api_client-7.2.0/src/testit_api_client/model/work_item_filter_api_model_external_metadata.py +337 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_filter_model.py +12 -0
- testit_api_client-7.2.0/src/testit_api_client/model/work_item_id_api_model.py +263 -0
- testit_api_client-7.2.0/src/testit_api_client/model/work_item_index_api_result.py +269 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_local_filter_model.py +6 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_local_select_model_filter.py +6 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_model.py +10 -2
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_preview_api_model.py +2 -14
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_search_query_model.py +6 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_select_api_model_filter.py +12 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_select_model_filter.py +12 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/workflow_api_result.py +34 -2
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/workflow_project_api_result_api_collection_preview.py +4 -4
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/workflow_short_api_result.py +26 -2
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/workflow_short_api_result_projects.py +4 -4
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/models/__init__.py +58 -18
- {testit_api_client-7.1.2 → testit_api_client-7.2.0/src/testit_api_client.egg-info}/PKG-INFO +21 -5
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client.egg-info/SOURCES.txt +61 -18
- testit_api_client-7.1.2/src/testit_api_client/model/auto_test_result_reason_group_item_api_result_reply.py +0 -274
- testit_api_client-7.1.2/src/testit_api_client/model/work_item_id_model.py +0 -266
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/LICENSE.md +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/setup.cfg +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/api/__init__.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/api/background_jobs_api.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/api/custom_attributes_api.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/api/search_api.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/api/test_points_api.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/api/users_api.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/api/webhooks_api.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/exceptions.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/__init__.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/action_update.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/ai_service_model_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/ai_service_model_api_result_reply.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_auto_tests_delete_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_auto_tests_flaky_bulk_post_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_auto_tests_id_test_results_search_post_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_auto_tests_search_post_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_background_jobs_search_post_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_configurations_create_by_parameters_post_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_configurations_purge_bulk_post_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_configurations_put_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_configurations_search_post_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_custom_attributes_search_post_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_custom_attributes_templates_post_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_custom_attributes_templates_put_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_custom_attributes_templates_search_post_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_notifications_search_post_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_parameters_search_groups_post_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_parameters_search_post_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_projects_project_id_attributes_templates_search_post_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_projects_project_id_test_plans_delete_bulk_post_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_projects_project_id_test_plans_search_post_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_projects_project_id_work_items_search_grouped_post_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_projects_project_id_work_items_search_id_post_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_projects_project_id_work_items_search_post_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_projects_restore_bulk_post_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_projects_search_post_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_projects_shorts_post_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_search_global_search_post_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_tags_delete_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_tags_post_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_tags_put_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_test_plans_id_export_test_points_xlsx_post_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_test_plans_id_test_points_tester_user_id_post_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_test_plans_id_test_runs_search_post_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_test_points_search_post_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/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.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_test_results_external_projects_external_project_id_defects_post_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_test_results_search_post_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_test_runs_delete_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_test_runs_id_statistics_filter_post_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_test_runs_id_test_results_bulk_put_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_test_runs_search_post_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_test_runs_update_multiple_post_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_test_suites_post_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_test_suites_put_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_webhooks_delete_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_webhooks_post_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_webhooks_put_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_webhooks_search_post_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_webhooks_test_post_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_work_items_comments_post_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_work_items_comments_put_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_work_items_links_urls_search_post_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_work_items_move_post_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_work_items_post_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/api_v2_work_items_shared_step_id_references_sections_post_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/assign_attachment_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/assign_iteration_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/attachment_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/attachment_change_view_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/attachment_change_view_model_array_changed_field_view_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/attachment_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/attachment_put_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/attachment_update_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/audit_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_average_duration_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_bulk_delete_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_bulk_delete_api_model_auto_test_select.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_bulk_delete_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_change_view_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_change_view_model_array_changed_field_view_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_class_count_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_extraction_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_extraction_api_model_ids.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_filter_api_model_created_date.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_filter_api_model_modified_date.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_filter_api_model_stability_percentage.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_flaky_bulk_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_flaky_bulk_api_model_auto_test_select.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_id_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_last_test_result_configuration.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_model_last_test_result_configuration.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_model_last_test_result_status.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_model_v2_get_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_namespace_count_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_namespace_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_namespaces_count_response.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_outcome.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_post_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_put_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_related_to_test_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_result_history_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_result_history_api_result_status.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_result_history_select_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_result_reason_short.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_result_reasons_count_item_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_result_reasons_count_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_results_for_test_run_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_search_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_search_api_model_includes.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_search_include_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_select_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_select_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_short_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_step.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_step_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_step_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_test_step_results_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/auto_tests_extraction_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/autotest_result_outcome.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/autotest_result_reason_filter_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/autotest_result_reason_short_get_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/available_failure_category.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/available_test_result_outcome.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/background_job_attachment_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/background_job_filter_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/background_job_get_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/background_job_state.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/background_job_type.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/boolean_changed_field_view_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/boolean_nullable_changed_field_view_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/configuration_by_parameters_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/configuration_extraction_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/configuration_extraction_model_ids.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/configuration_extraction_model_project_ids.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/configuration_filter_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/configuration_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/configuration_post_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/configuration_put_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/configuration_select_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/configuration_select_model_extraction_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/configuration_select_model_filter.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/configuration_short.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/configuration_short_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/configuration_short_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/create_and_fill_by_auto_tests_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/create_and_fill_by_configurations_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/create_and_fill_by_work_items_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/create_auto_test_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/create_configuration_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/create_defect_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/create_defect_api_model_form.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/create_failure_class_regex_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/create_link_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/create_parameter_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/create_parameter_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/create_project_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/create_project_failure_category_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/create_project_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/create_section_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/create_step_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/create_tag_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/create_test_plan_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/create_test_plan_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/create_test_run_and_fill_by_auto_tests_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/create_test_run_and_fill_by_configurations_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/create_test_run_and_fill_by_work_items_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/create_test_status_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/create_work_item_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/create_work_item_previews_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/create_workflow_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/custom_attribute_change_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/custom_attribute_get_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/custom_attribute_option_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/custom_attribute_option_post_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/custom_attribute_search_query_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/custom_attribute_template_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/custom_attribute_template_post_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/custom_attribute_template_put_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/custom_attribute_template_search_query_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/custom_attribute_template_validation_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/custom_attribute_test_plan_project_relation_put_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/custom_attribute_types_enum.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/custom_attribute_validation_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/date_time_range_selector_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/defect_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/deletion_state.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/demo_project_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/enable_project_external_service_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/external_form_allowed_value_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/external_form_create_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/external_form_field_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/external_form_link_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/external_form_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/external_issue_api_field.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/external_issue_api_field_suggestion_reply.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/external_link_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/external_service_category_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/external_service_metadata_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/external_services_metadata_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/failure_category.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/failure_category_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/failure_class_regex_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/filter_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/generate_work_item_previews_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/generate_work_item_previews_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/get_ai_service_models_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/get_external_form_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/get_external_form_api_result_form.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/get_short_projects_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/get_xlsx_test_points_by_test_plan_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/global_search_item_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/global_search_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/global_search_response.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/guid_changed_field_view_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/guid_extraction_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/image_resize_type.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/inquiry.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/int32_changed_field_view_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/int32_range_selector_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/int64_changed_field_view_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/int64_range_selector_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/iteration_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/iteration_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/label.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/label_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/label_post_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/label_short_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/last_test_result_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/last_test_result_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/link.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/link_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/link_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/link_post_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/link_put_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/link_short.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/link_short_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/link_type.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/list_sort_direction.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/logical_operator.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/manual_rerun_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/manual_rerun_test_result_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/manual_rerun_test_result_api_model_test_result_ids.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/move_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/named_entity_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/notification_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/notification_query_filter_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/notification_type_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/operation.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/order.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/page.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/parameter_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/parameter_group_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/parameter_groups_filter_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/parameter_iteration_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/parameter_short_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/parameter_short_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/parameters_filter_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/period_view_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/period_view_model_changed_field_view_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/previews_issue_link_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/previews_issue_link_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/problem_details.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/project_attributes_filter_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/project_custom_attribute_template_get_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/project_custom_attributes_templates_filter_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/project_detailed_failure_category_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/project_external_service_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/project_external_service_api_result_metadata.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/project_external_service_settings_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/project_external_services_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/project_extraction_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/project_failure_category_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/project_failure_category_group_item_api_result_reply.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/project_name_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/project_select_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/project_short_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/project_short_api_result_reply.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/project_shortest_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/project_test_plans_filter_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/project_type.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/project_type_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/projects_filter_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/projects_filter_model_autotests_count.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/projects_filter_model_checklists_count.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/projects_filter_model_created_date.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/projects_filter_model_shared_steps_count.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/projects_filter_model_test_cases_count.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/public_test_point_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/public_test_run_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/public_test_run_model_status_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/rename_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/replace_project_external_service_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/request_type_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/request_type_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/rerun_test_result_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/rerun_test_result_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/reruns_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/search_attributes_in_project_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/search_custom_attribute_template_get_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/search_test_runs_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/search_test_statuses_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/search_webhooks_query_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/search_work_item_link_urls_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/search_workflow_projects_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/search_workflows_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/section_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/section_move_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/section_post_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/section_put_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/section_rename_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/section_shared_step.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/section_with_steps_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/select_tags_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/select_tags_api_model_extraction_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/select_tags_api_model_filter.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/shared_step_change_view_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/shared_step_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/shared_step_reference_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/shared_step_reference_section_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/shared_step_reference_sections_query_filter_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/shared_step_reference_sections_query_filter_model_created_date.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/shared_step_reference_sections_query_filter_model_modified_date.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/shared_step_result_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/short_configuration.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/step_comment_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/step_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/step_post_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/step_put_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/step_result_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/string_array_changed_field_view_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/string_changed_field_view_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/string_changed_field_with_diffs_view_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/string_extraction_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/tag_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/tag_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/tag_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/tag_short_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/tags_extraction_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/tags_extraction_api_model_ids.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/tags_filter_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/tags_filter_api_model_created_date.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_change_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_change_model_test_plan_changed_fields.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_changed_fields_view_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_extraction_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_group_by_status.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_group_by_status_code.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_group_by_status_type.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_group_by_test_suite.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_group_by_tester.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_group_by_tester_and_status.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_group_by_tester_and_status_code.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_link.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_select_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_short_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_status.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_status_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_summary_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_tag_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_test_points_analytics_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_test_points_analytics_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_test_points_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_test_points_extraction_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_test_points_extraction_api_model_ids.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_test_points_group_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_test_points_group_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_test_points_group_search_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_test_points_group_search_api_result_status_counters.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_test_points_group_search_item_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_test_points_inquiry_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_test_points_search_api_model_created_date.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_test_points_search_api_model_duration.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_test_points_search_api_model_modified_date.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_test_points_search_api_model_work_item_created_date.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_test_points_search_api_model_work_item_median_duration.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_test_points_search_api_model_work_item_modified_date.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_test_points_search_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_test_points_search_api_result_configuration.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_test_points_search_api_result_created.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_test_points_search_api_result_status_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_test_points_search_api_result_test_suite.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_test_points_search_api_result_work_item.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_test_points_search_status_counters_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_test_points_section_search_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_test_points_set_testers_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_test_points_status_group_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_test_points_status_type_group_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_test_points_test_suite_search_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_test_points_tester_and_status_group_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_test_points_tester_and_status_type_group_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_test_points_tester_group_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_test_points_work_item_search_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_test_points_work_item_search_api_result_section.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_with_analytic_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_with_analytic_model_analytic.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_plan_with_test_suite_tree_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_point.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_point_analytic_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_point_change_view_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_point_change_view_model_changed_field_view_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_point_filter_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_point_filter_request_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_point_result_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_point_select_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_point_selector.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_point_short_api_result_status_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_point_short_response_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_point_short_response_model_last_test_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_point_short_response_model_status_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_point_status.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_point_with_last_result_response_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_points_extraction_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_result_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_result_change_view_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_result_change_view_model_changed_field_view_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_result_chronology_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_result_configuration.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_result_failure_class_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_result_history_report_api_result_status.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_result_outcome.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_result_response.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_result_short_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_result_short_response.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_result_step_comment_update_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_result_v2_get_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_result_v2_short_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_results_extraction_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_results_filter_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_results_filter_api_model_completed_on.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_results_filter_api_model_created_date.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_results_filter_api_model_duration.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_results_filter_api_model_modified_date.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_results_filter_api_model_started_on.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_results_local_filter_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_results_select_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_results_select_api_model_extraction_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_results_select_api_model_filter.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_results_statistics_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_results_statistics_api_result_failure_categories.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_results_statistics_failure_categories_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_run_analytic_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_run_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_run_api_result_analytic.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_run_by_auto_test_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_run_by_auto_test_api_result_status.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_run_extraction_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_run_extraction_api_model_ids.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_run_filter_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_run_filter_api_model_auto_tests_count.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_run_filter_api_model_completed_date.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_run_filter_api_model_created_date.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_run_filter_api_model_started_date.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_run_group_by_failure_class_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_run_group_by_status_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_run_group_by_status_type_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_run_name_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_run_select_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_run_select_api_model_extraction_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_run_short_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_run_short_api_result_statistics.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_run_short_api_result_status.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_run_state.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_run_statistics_filter_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_run_test_results_partial_bulk_set_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_run_test_results_partial_bulk_set_model_selector.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_run_test_results_select_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_run_test_results_select_model_filter.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_run_test_results_select_model_test_result_ids_extraction_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_status_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_status_api_result_reply.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_status_api_type.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_status_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_status_short_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_status_type.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_suite_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_suite_change_view_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_suite_change_view_model_changed_field_view_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_suite_hierarchy_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_suite_test_plan_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_suite_type.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_suite_type_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_suite_v2_get_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_suite_v2_post_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_suite_v2_put_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_suite_with_children_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_suite_work_items_search_model_duration.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_suite_work_items_search_model_links.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/test_suite_work_items_search_model_median_duration.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/update_auto_test_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/update_custom_attribute_test_plan_project_relations_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/update_failure_category_project_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/update_failure_class_regex_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/update_link_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/update_multiple_attachments_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/update_multiple_links_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/update_multiple_test_runs_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/update_multiple_test_runs_api_model_attachment_update_scheme.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/update_multiple_test_runs_api_model_link_update_scheme.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/update_multiple_test_runs_api_model_select_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/update_parameter_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/update_parameter_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/update_project_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/update_project_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/update_section_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/update_step_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/update_tag_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/update_test_plan_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/update_test_plan_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/update_test_status_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/update_work_item_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/update_work_item_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/update_workflow_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/user_custom_name_validation_response.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/user_name_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/user_with_rank_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/validation_problem_details.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/web_hook_event_type.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/web_hook_event_type_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/web_hook_event_type_request.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/web_hook_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/web_hook_post_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/web_hook_test_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/webhook_bulk_update_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/webhook_response.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/webhook_variables_type.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/webhooks_delete_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/webhooks_delete_api_model_extractor.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/webhooks_delete_api_model_filter.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/webhooks_delete_filter_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/webhooks_extraction_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/webhooks_filter_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/webhooks_update_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/webhooks_update_api_model_filter.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/webhooks_update_api_model_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/webhooks_update_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_change_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_change_model_work_item_changed_fields.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_changed_attribute_view_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_changed_fields_view_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_changed_fields_view_model_attachments.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_changed_fields_view_model_auto_tests.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_changed_fields_view_model_duration.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_changed_fields_view_model_global_id.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_changed_fields_view_model_is_deleted.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_changed_fields_view_model_links.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_changed_fields_view_model_project_id.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_changed_fields_view_model_state.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_changed_fields_view_model_steps.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_changed_fields_view_model_tags.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_comment_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_comment_model_user.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_comment_post_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_comment_put_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_entity_type_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_entity_types.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_extraction_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_extraction_api_model_ids.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_extraction_api_model_section_ids.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_extraction_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_filter_api_model_links.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_group_get_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_group_get_model_select_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_group_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_group_type.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_identifier_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_like_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_link_change_view_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_link_change_view_model_array_changed_field_view_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_link_extraction_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_link_filter_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_link_filter_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_link_url_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_link_url_api_model_extraction_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_link_url_api_model_filter.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_link_url_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_link_url_filter_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_local_select_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_local_select_model_extraction_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_move_post_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_preview_step_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_priority.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_priority_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_priority_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_select_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_select_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_short_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_short_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_source_type_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_source_type_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_state.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_state_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_states.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_step_change_view_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.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-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_step_change_view_model_work_item.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/work_item_version_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/workflow_exists_by_name_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/workflow_project_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/workflow_project_api_result_reply.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/workflow_short_api_result_reply.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/workflow_status_api_model.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model/workflow_status_api_result.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/model_utils.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/rest.py +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client.egg-info/dependency_links.txt +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client.egg-info/requires.txt +0 -0
- {testit_api_client-7.1.2 → testit_api_client-7.2.0}/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.
|
|
3
|
+
Version: 7.2.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
|
|
@@ -48,7 +48,7 @@ Dynamic: summary
|
|
|
48
48
|
| 5.4.0 | 6.3.1.post540 |
|
|
49
49
|
| 5.4.1 | 7.0.3.post541 |
|
|
50
50
|
| 5.5.0 | 7.2.0.post550 |
|
|
51
|
-
| Cloud | 7.
|
|
51
|
+
| Cloud | 7.2.0 |
|
|
52
52
|
|
|
53
53
|
## Installation & Usage
|
|
54
54
|
### pip install
|
|
@@ -157,6 +157,7 @@ Class | Method | HTTP request | Description
|
|
|
157
157
|
*CustomAttributesApi* | [**api_v2_custom_attributes_global_post**](docs/CustomAttributesApi.md#api_v2_custom_attributes_global_post) | **POST** /api/v2/customAttributes/global | Create global attribute
|
|
158
158
|
*CustomAttributesApi* | [**api_v2_custom_attributes_id_get**](docs/CustomAttributesApi.md#api_v2_custom_attributes_id_get) | **GET** /api/v2/customAttributes/{id} | Get attribute
|
|
159
159
|
*CustomAttributesApi* | [**api_v2_custom_attributes_search_post**](docs/CustomAttributesApi.md#api_v2_custom_attributes_search_post) | **POST** /api/v2/customAttributes/search | Search for attributes
|
|
160
|
+
*ExternalIssuesApi* | [**api_v2_external_issues_suggestions_post**](docs/ExternalIssuesApi.md#api_v2_external_issues_suggestions_post) | **POST** /api/v2/external-issues/suggestions | Returns list of suggestions from available external issues
|
|
160
161
|
*NotificationsApi* | [**api_v2_notifications_count_get**](docs/NotificationsApi.md#api_v2_notifications_count_get) | **GET** /api/v2/notifications/count | Get unread Notifications total in last 7 days
|
|
161
162
|
*NotificationsApi* | [**api_v2_notifications_get**](docs/NotificationsApi.md#api_v2_notifications_get) | **GET** /api/v2/notifications | Get all Notifications for current User
|
|
162
163
|
*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
|
|
@@ -206,10 +207,10 @@ Class | Method | HTTP request | Description
|
|
|
206
207
|
*ProjectWorkItemsApi* | [**api_v2_projects_project_id_work_items_search_grouped_post**](docs/ProjectWorkItemsApi.md#api_v2_projects_project_id_work_items_search_grouped_post) | **POST** /api/v2/projects/{projectId}/workItems/search/grouped | Search for work items and group results by attribute
|
|
207
208
|
*ProjectWorkItemsApi* | [**api_v2_projects_project_id_work_items_search_id_post**](docs/ProjectWorkItemsApi.md#api_v2_projects_project_id_work_items_search_id_post) | **POST** /api/v2/projects/{projectId}/workItems/search/id | Search for work items and extract IDs only
|
|
208
209
|
*ProjectWorkItemsApi* | [**api_v2_projects_project_id_work_items_search_post**](docs/ProjectWorkItemsApi.md#api_v2_projects_project_id_work_items_search_post) | **POST** /api/v2/projects/{projectId}/workItems/search | Search for work items
|
|
210
|
+
*ProjectWorkItemsApi* | [**api_v2_projects_project_id_work_items_search_work_item_id_index_post**](docs/ProjectWorkItemsApi.md#api_v2_projects_project_id_work_items_search_work_item_id_index_post) | **POST** /api/v2/projects/{projectId}/workItems/search/{workItemId}/index | Get work item index (position) in a collection by its id.
|
|
209
211
|
*ProjectWorkItemsApi* | [**api_v2_projects_project_id_work_items_tags_get**](docs/ProjectWorkItemsApi.md#api_v2_projects_project_id_work_items_tags_get) | **GET** /api/v2/projects/{projectId}/workItems/tags | Get WorkItems Tags
|
|
210
212
|
*ProjectWorkItemsApi* | [**get_work_items_by_project_id**](docs/ProjectWorkItemsApi.md#get_work_items_by_project_id) | **GET** /api/v2/projects/{projectId}/workItems | Get project work items
|
|
211
|
-
*ProjectsApi* | [**
|
|
212
|
-
*ProjectsApi* | [**api_v2_projects_demo_post**](docs/ProjectsApi.md#api_v2_projects_demo_post) | **POST** /api/v2/projects/demo |
|
|
213
|
+
*ProjectsApi* | [**add_global_attributes_to_project**](docs/ProjectsApi.md#add_global_attributes_to_project) | **POST** /api/v2/projects/{id}/globalAttributes | Add global attributes to project
|
|
213
214
|
*ProjectsApi* | [**api_v2_projects_id_delete**](docs/ProjectsApi.md#api_v2_projects_id_delete) | **DELETE** /api/v2/projects/{id} | Archive project
|
|
214
215
|
*ProjectsApi* | [**api_v2_projects_id_failure_classes_get**](docs/ProjectsApi.md#api_v2_projects_id_failure_classes_get) | **GET** /api/v2/projects/{id}/failureClasses | Get failure classes
|
|
215
216
|
*ProjectsApi* | [**api_v2_projects_id_favorite_put**](docs/ProjectsApi.md#api_v2_projects_id_favorite_put) | **PUT** /api/v2/projects/{id}/favorite | Mark Project as favorite
|
|
@@ -323,6 +324,13 @@ Class | Method | HTTP request | Description
|
|
|
323
324
|
*TestRunsApi* | [**start_test_run**](docs/TestRunsApi.md#start_test_run) | **POST** /api/v2/testRuns/{id}/start | Start TestRun
|
|
324
325
|
*TestRunsApi* | [**stop_test_run**](docs/TestRunsApi.md#stop_test_run) | **POST** /api/v2/testRuns/{id}/stop | Stop TestRun
|
|
325
326
|
*TestRunsApi* | [**update_empty**](docs/TestRunsApi.md#update_empty) | **PUT** /api/v2/testRuns | Update empty TestRun
|
|
327
|
+
*TestStatusesApi* | [**api_v2_test_statuses_code_code_exists_get**](docs/TestStatusesApi.md#api_v2_test_statuses_code_code_exists_get) | **GET** /api/v2/testStatuses/code/{code}/exists |
|
|
328
|
+
*TestStatusesApi* | [**api_v2_test_statuses_id_delete**](docs/TestStatusesApi.md#api_v2_test_statuses_id_delete) | **DELETE** /api/v2/testStatuses/{id} |
|
|
329
|
+
*TestStatusesApi* | [**api_v2_test_statuses_id_get**](docs/TestStatusesApi.md#api_v2_test_statuses_id_get) | **GET** /api/v2/testStatuses/{id} |
|
|
330
|
+
*TestStatusesApi* | [**api_v2_test_statuses_id_put**](docs/TestStatusesApi.md#api_v2_test_statuses_id_put) | **PUT** /api/v2/testStatuses/{id} |
|
|
331
|
+
*TestStatusesApi* | [**api_v2_test_statuses_name_name_exists_get**](docs/TestStatusesApi.md#api_v2_test_statuses_name_name_exists_get) | **GET** /api/v2/testStatuses/name/{name}/exists |
|
|
332
|
+
*TestStatusesApi* | [**api_v2_test_statuses_post**](docs/TestStatusesApi.md#api_v2_test_statuses_post) | **POST** /api/v2/testStatuses |
|
|
333
|
+
*TestStatusesApi* | [**api_v2_test_statuses_search_post**](docs/TestStatusesApi.md#api_v2_test_statuses_search_post) | **POST** /api/v2/testStatuses/search |
|
|
326
334
|
*TestSuitesApi* | [**add_test_points_to_test_suite**](docs/TestSuitesApi.md#add_test_points_to_test_suite) | **POST** /api/v2/testSuites/{id}/test-points | Add test-points to test suite
|
|
327
335
|
*TestSuitesApi* | [**api_v2_test_suites_id_patch**](docs/TestSuitesApi.md#api_v2_test_suites_id_patch) | **PATCH** /api/v2/testSuites/{id} | Patch test suite
|
|
328
336
|
*TestSuitesApi* | [**api_v2_test_suites_id_refresh_post**](docs/TestSuitesApi.md#api_v2_test_suites_id_refresh_post) | **POST** /api/v2/testSuites/{id}/refresh | Refresh test suite. Only dynamic test suites are supported by this method
|
|
@@ -347,7 +355,7 @@ Class | Method | HTTP request | Description
|
|
|
347
355
|
*WebhooksApi* | [**api_v2_webhooks_search_post**](docs/WebhooksApi.md#api_v2_webhooks_search_post) | **POST** /api/v2/webhooks/search | Search for webhooks
|
|
348
356
|
*WebhooksApi* | [**api_v2_webhooks_special_variables_get**](docs/WebhooksApi.md#api_v2_webhooks_special_variables_get) | **GET** /api/v2/webhooks/specialVariables | Get special variables for webhook event type
|
|
349
357
|
*WebhooksApi* | [**api_v2_webhooks_test_post**](docs/WebhooksApi.md#api_v2_webhooks_test_post) | **POST** /api/v2/webhooks/test | Test webhook's url
|
|
350
|
-
*WebhooksLogsApi* | [**api_v2_webhooks_logs_get**](docs/WebhooksLogsApi.md#api_v2_webhooks_logs_get) | **GET** /api/v2/webhooks/logs | Get
|
|
358
|
+
*WebhooksLogsApi* | [**api_v2_webhooks_logs_get**](docs/WebhooksLogsApi.md#api_v2_webhooks_logs_get) | **GET** /api/v2/webhooks/logs | Get last webhook logs
|
|
351
359
|
*WebhooksLogsApi* | [**api_v2_webhooks_logs_id_delete**](docs/WebhooksLogsApi.md#api_v2_webhooks_logs_id_delete) | **DELETE** /api/v2/webhooks/logs/{id} | Delete webhook log by ID
|
|
352
360
|
*WebhooksLogsApi* | [**api_v2_webhooks_logs_id_get**](docs/WebhooksLogsApi.md#api_v2_webhooks_logs_id_get) | **GET** /api/v2/webhooks/logs/{id} | Get webhook log by ID
|
|
353
361
|
*WorkItemsApi* | [**api_v2_work_items_id_attachments_post**](docs/WorkItemsApi.md#api_v2_work_items_id_attachments_post) | **POST** /api/v2/workItems/{id}/attachments | Upload and link attachment to WorkItem
|
|
@@ -381,6 +389,14 @@ Class | Method | HTTP request | Description
|
|
|
381
389
|
*WorkItemsCommentsApi* | [**api_v2_work_items_comments_put**](docs/WorkItemsCommentsApi.md#api_v2_work_items_comments_put) | **PUT** /api/v2/workItems/comments | Update work item comment
|
|
382
390
|
*WorkItemsCommentsApi* | [**api_v2_work_items_id_comments_count_get**](docs/WorkItemsCommentsApi.md#api_v2_work_items_id_comments_count_get) | **GET** /api/v2/workItems/{id}/comments/count | Get work item comments count
|
|
383
391
|
*WorkItemsCommentsApi* | [**api_v2_work_items_id_comments_get**](docs/WorkItemsCommentsApi.md#api_v2_work_items_id_comments_get) | **GET** /api/v2/workItems/{id}/comments | Get work item comments
|
|
392
|
+
*WorkflowsApi* | [**api_v2_workflows_id_delete**](docs/WorkflowsApi.md#api_v2_workflows_id_delete) | **DELETE** /api/v2/workflows/{id} |
|
|
393
|
+
*WorkflowsApi* | [**api_v2_workflows_id_get**](docs/WorkflowsApi.md#api_v2_workflows_id_get) | **GET** /api/v2/workflows/{id} |
|
|
394
|
+
*WorkflowsApi* | [**api_v2_workflows_id_patch**](docs/WorkflowsApi.md#api_v2_workflows_id_patch) | **PATCH** /api/v2/workflows/{id} |
|
|
395
|
+
*WorkflowsApi* | [**api_v2_workflows_id_projects_search_post**](docs/WorkflowsApi.md#api_v2_workflows_id_projects_search_post) | **POST** /api/v2/workflows/{id}/projects/search |
|
|
396
|
+
*WorkflowsApi* | [**api_v2_workflows_id_put**](docs/WorkflowsApi.md#api_v2_workflows_id_put) | **PUT** /api/v2/workflows/{id} |
|
|
397
|
+
*WorkflowsApi* | [**api_v2_workflows_name_name_exists_get**](docs/WorkflowsApi.md#api_v2_workflows_name_name_exists_get) | **GET** /api/v2/workflows/name/{name}/exists |
|
|
398
|
+
*WorkflowsApi* | [**api_v2_workflows_post**](docs/WorkflowsApi.md#api_v2_workflows_post) | **POST** /api/v2/workflows |
|
|
399
|
+
*WorkflowsApi* | [**api_v2_workflows_search_post**](docs/WorkflowsApi.md#api_v2_workflows_search_post) | **POST** /api/v2/workflows/search |
|
|
384
400
|
|
|
385
401
|
|
|
386
402
|
## Documentation For Models
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
| 5.4.0 | 6.3.1.post540 |
|
|
27
27
|
| 5.4.1 | 7.0.3.post541 |
|
|
28
28
|
| 5.5.0 | 7.2.0.post550 |
|
|
29
|
-
| Cloud | 7.
|
|
29
|
+
| Cloud | 7.2.0 |
|
|
30
30
|
|
|
31
31
|
## Installation & Usage
|
|
32
32
|
### pip install
|
|
@@ -135,6 +135,7 @@ Class | Method | HTTP request | Description
|
|
|
135
135
|
*CustomAttributesApi* | [**api_v2_custom_attributes_global_post**](docs/CustomAttributesApi.md#api_v2_custom_attributes_global_post) | **POST** /api/v2/customAttributes/global | Create global attribute
|
|
136
136
|
*CustomAttributesApi* | [**api_v2_custom_attributes_id_get**](docs/CustomAttributesApi.md#api_v2_custom_attributes_id_get) | **GET** /api/v2/customAttributes/{id} | Get attribute
|
|
137
137
|
*CustomAttributesApi* | [**api_v2_custom_attributes_search_post**](docs/CustomAttributesApi.md#api_v2_custom_attributes_search_post) | **POST** /api/v2/customAttributes/search | Search for attributes
|
|
138
|
+
*ExternalIssuesApi* | [**api_v2_external_issues_suggestions_post**](docs/ExternalIssuesApi.md#api_v2_external_issues_suggestions_post) | **POST** /api/v2/external-issues/suggestions | Returns list of suggestions from available external issues
|
|
138
139
|
*NotificationsApi* | [**api_v2_notifications_count_get**](docs/NotificationsApi.md#api_v2_notifications_count_get) | **GET** /api/v2/notifications/count | Get unread Notifications total in last 7 days
|
|
139
140
|
*NotificationsApi* | [**api_v2_notifications_get**](docs/NotificationsApi.md#api_v2_notifications_get) | **GET** /api/v2/notifications | Get all Notifications for current User
|
|
140
141
|
*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
|
|
@@ -184,10 +185,10 @@ Class | Method | HTTP request | Description
|
|
|
184
185
|
*ProjectWorkItemsApi* | [**api_v2_projects_project_id_work_items_search_grouped_post**](docs/ProjectWorkItemsApi.md#api_v2_projects_project_id_work_items_search_grouped_post) | **POST** /api/v2/projects/{projectId}/workItems/search/grouped | Search for work items and group results by attribute
|
|
185
186
|
*ProjectWorkItemsApi* | [**api_v2_projects_project_id_work_items_search_id_post**](docs/ProjectWorkItemsApi.md#api_v2_projects_project_id_work_items_search_id_post) | **POST** /api/v2/projects/{projectId}/workItems/search/id | Search for work items and extract IDs only
|
|
186
187
|
*ProjectWorkItemsApi* | [**api_v2_projects_project_id_work_items_search_post**](docs/ProjectWorkItemsApi.md#api_v2_projects_project_id_work_items_search_post) | **POST** /api/v2/projects/{projectId}/workItems/search | Search for work items
|
|
188
|
+
*ProjectWorkItemsApi* | [**api_v2_projects_project_id_work_items_search_work_item_id_index_post**](docs/ProjectWorkItemsApi.md#api_v2_projects_project_id_work_items_search_work_item_id_index_post) | **POST** /api/v2/projects/{projectId}/workItems/search/{workItemId}/index | Get work item index (position) in a collection by its id.
|
|
187
189
|
*ProjectWorkItemsApi* | [**api_v2_projects_project_id_work_items_tags_get**](docs/ProjectWorkItemsApi.md#api_v2_projects_project_id_work_items_tags_get) | **GET** /api/v2/projects/{projectId}/workItems/tags | Get WorkItems Tags
|
|
188
190
|
*ProjectWorkItemsApi* | [**get_work_items_by_project_id**](docs/ProjectWorkItemsApi.md#get_work_items_by_project_id) | **GET** /api/v2/projects/{projectId}/workItems | Get project work items
|
|
189
|
-
*ProjectsApi* | [**
|
|
190
|
-
*ProjectsApi* | [**api_v2_projects_demo_post**](docs/ProjectsApi.md#api_v2_projects_demo_post) | **POST** /api/v2/projects/demo |
|
|
191
|
+
*ProjectsApi* | [**add_global_attributes_to_project**](docs/ProjectsApi.md#add_global_attributes_to_project) | **POST** /api/v2/projects/{id}/globalAttributes | Add global attributes to project
|
|
191
192
|
*ProjectsApi* | [**api_v2_projects_id_delete**](docs/ProjectsApi.md#api_v2_projects_id_delete) | **DELETE** /api/v2/projects/{id} | Archive project
|
|
192
193
|
*ProjectsApi* | [**api_v2_projects_id_failure_classes_get**](docs/ProjectsApi.md#api_v2_projects_id_failure_classes_get) | **GET** /api/v2/projects/{id}/failureClasses | Get failure classes
|
|
193
194
|
*ProjectsApi* | [**api_v2_projects_id_favorite_put**](docs/ProjectsApi.md#api_v2_projects_id_favorite_put) | **PUT** /api/v2/projects/{id}/favorite | Mark Project as favorite
|
|
@@ -301,6 +302,13 @@ Class | Method | HTTP request | Description
|
|
|
301
302
|
*TestRunsApi* | [**start_test_run**](docs/TestRunsApi.md#start_test_run) | **POST** /api/v2/testRuns/{id}/start | Start TestRun
|
|
302
303
|
*TestRunsApi* | [**stop_test_run**](docs/TestRunsApi.md#stop_test_run) | **POST** /api/v2/testRuns/{id}/stop | Stop TestRun
|
|
303
304
|
*TestRunsApi* | [**update_empty**](docs/TestRunsApi.md#update_empty) | **PUT** /api/v2/testRuns | Update empty TestRun
|
|
305
|
+
*TestStatusesApi* | [**api_v2_test_statuses_code_code_exists_get**](docs/TestStatusesApi.md#api_v2_test_statuses_code_code_exists_get) | **GET** /api/v2/testStatuses/code/{code}/exists |
|
|
306
|
+
*TestStatusesApi* | [**api_v2_test_statuses_id_delete**](docs/TestStatusesApi.md#api_v2_test_statuses_id_delete) | **DELETE** /api/v2/testStatuses/{id} |
|
|
307
|
+
*TestStatusesApi* | [**api_v2_test_statuses_id_get**](docs/TestStatusesApi.md#api_v2_test_statuses_id_get) | **GET** /api/v2/testStatuses/{id} |
|
|
308
|
+
*TestStatusesApi* | [**api_v2_test_statuses_id_put**](docs/TestStatusesApi.md#api_v2_test_statuses_id_put) | **PUT** /api/v2/testStatuses/{id} |
|
|
309
|
+
*TestStatusesApi* | [**api_v2_test_statuses_name_name_exists_get**](docs/TestStatusesApi.md#api_v2_test_statuses_name_name_exists_get) | **GET** /api/v2/testStatuses/name/{name}/exists |
|
|
310
|
+
*TestStatusesApi* | [**api_v2_test_statuses_post**](docs/TestStatusesApi.md#api_v2_test_statuses_post) | **POST** /api/v2/testStatuses |
|
|
311
|
+
*TestStatusesApi* | [**api_v2_test_statuses_search_post**](docs/TestStatusesApi.md#api_v2_test_statuses_search_post) | **POST** /api/v2/testStatuses/search |
|
|
304
312
|
*TestSuitesApi* | [**add_test_points_to_test_suite**](docs/TestSuitesApi.md#add_test_points_to_test_suite) | **POST** /api/v2/testSuites/{id}/test-points | Add test-points to test suite
|
|
305
313
|
*TestSuitesApi* | [**api_v2_test_suites_id_patch**](docs/TestSuitesApi.md#api_v2_test_suites_id_patch) | **PATCH** /api/v2/testSuites/{id} | Patch test suite
|
|
306
314
|
*TestSuitesApi* | [**api_v2_test_suites_id_refresh_post**](docs/TestSuitesApi.md#api_v2_test_suites_id_refresh_post) | **POST** /api/v2/testSuites/{id}/refresh | Refresh test suite. Only dynamic test suites are supported by this method
|
|
@@ -325,7 +333,7 @@ Class | Method | HTTP request | Description
|
|
|
325
333
|
*WebhooksApi* | [**api_v2_webhooks_search_post**](docs/WebhooksApi.md#api_v2_webhooks_search_post) | **POST** /api/v2/webhooks/search | Search for webhooks
|
|
326
334
|
*WebhooksApi* | [**api_v2_webhooks_special_variables_get**](docs/WebhooksApi.md#api_v2_webhooks_special_variables_get) | **GET** /api/v2/webhooks/specialVariables | Get special variables for webhook event type
|
|
327
335
|
*WebhooksApi* | [**api_v2_webhooks_test_post**](docs/WebhooksApi.md#api_v2_webhooks_test_post) | **POST** /api/v2/webhooks/test | Test webhook's url
|
|
328
|
-
*WebhooksLogsApi* | [**api_v2_webhooks_logs_get**](docs/WebhooksLogsApi.md#api_v2_webhooks_logs_get) | **GET** /api/v2/webhooks/logs | Get
|
|
336
|
+
*WebhooksLogsApi* | [**api_v2_webhooks_logs_get**](docs/WebhooksLogsApi.md#api_v2_webhooks_logs_get) | **GET** /api/v2/webhooks/logs | Get last webhook logs
|
|
329
337
|
*WebhooksLogsApi* | [**api_v2_webhooks_logs_id_delete**](docs/WebhooksLogsApi.md#api_v2_webhooks_logs_id_delete) | **DELETE** /api/v2/webhooks/logs/{id} | Delete webhook log by ID
|
|
330
338
|
*WebhooksLogsApi* | [**api_v2_webhooks_logs_id_get**](docs/WebhooksLogsApi.md#api_v2_webhooks_logs_id_get) | **GET** /api/v2/webhooks/logs/{id} | Get webhook log by ID
|
|
331
339
|
*WorkItemsApi* | [**api_v2_work_items_id_attachments_post**](docs/WorkItemsApi.md#api_v2_work_items_id_attachments_post) | **POST** /api/v2/workItems/{id}/attachments | Upload and link attachment to WorkItem
|
|
@@ -359,6 +367,14 @@ Class | Method | HTTP request | Description
|
|
|
359
367
|
*WorkItemsCommentsApi* | [**api_v2_work_items_comments_put**](docs/WorkItemsCommentsApi.md#api_v2_work_items_comments_put) | **PUT** /api/v2/workItems/comments | Update work item comment
|
|
360
368
|
*WorkItemsCommentsApi* | [**api_v2_work_items_id_comments_count_get**](docs/WorkItemsCommentsApi.md#api_v2_work_items_id_comments_count_get) | **GET** /api/v2/workItems/{id}/comments/count | Get work item comments count
|
|
361
369
|
*WorkItemsCommentsApi* | [**api_v2_work_items_id_comments_get**](docs/WorkItemsCommentsApi.md#api_v2_work_items_id_comments_get) | **GET** /api/v2/workItems/{id}/comments | Get work item comments
|
|
370
|
+
*WorkflowsApi* | [**api_v2_workflows_id_delete**](docs/WorkflowsApi.md#api_v2_workflows_id_delete) | **DELETE** /api/v2/workflows/{id} |
|
|
371
|
+
*WorkflowsApi* | [**api_v2_workflows_id_get**](docs/WorkflowsApi.md#api_v2_workflows_id_get) | **GET** /api/v2/workflows/{id} |
|
|
372
|
+
*WorkflowsApi* | [**api_v2_workflows_id_patch**](docs/WorkflowsApi.md#api_v2_workflows_id_patch) | **PATCH** /api/v2/workflows/{id} |
|
|
373
|
+
*WorkflowsApi* | [**api_v2_workflows_id_projects_search_post**](docs/WorkflowsApi.md#api_v2_workflows_id_projects_search_post) | **POST** /api/v2/workflows/{id}/projects/search |
|
|
374
|
+
*WorkflowsApi* | [**api_v2_workflows_id_put**](docs/WorkflowsApi.md#api_v2_workflows_id_put) | **PUT** /api/v2/workflows/{id} |
|
|
375
|
+
*WorkflowsApi* | [**api_v2_workflows_name_name_exists_get**](docs/WorkflowsApi.md#api_v2_workflows_name_name_exists_get) | **GET** /api/v2/workflows/name/{name}/exists |
|
|
376
|
+
*WorkflowsApi* | [**api_v2_workflows_post**](docs/WorkflowsApi.md#api_v2_workflows_post) | **POST** /api/v2/workflows |
|
|
377
|
+
*WorkflowsApi* | [**api_v2_workflows_search_post**](docs/WorkflowsApi.md#api_v2_workflows_search_post) | **POST** /api/v2/workflows/search |
|
|
362
378
|
|
|
363
379
|
|
|
364
380
|
## Documentation For Models
|
{testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/api/attachments_api.py
RENAMED
|
@@ -666,7 +666,7 @@ class AttachmentsApi(object):
|
|
|
666
666
|
):
|
|
667
667
|
"""Upload new attachment file # noqa: E501
|
|
668
668
|
|
|
669
|
-
File size is restricted to
|
|
669
|
+
File size is restricted to 1 GB (1 073 741 824 bytes) # noqa: E501
|
|
670
670
|
This method makes a synchronous HTTP request by default. To make an
|
|
671
671
|
asynchronous HTTP request, please pass async_req=True
|
|
672
672
|
|
{testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/api/auto_tests_api.py
RENAMED
|
@@ -1390,7 +1390,7 @@ class AutoTestsApi(object):
|
|
|
1390
1390
|
):
|
|
1391
1391
|
"""Set \"Flaky\" status for multiple autotests # noqa: E501
|
|
1392
1392
|
|
|
1393
|
-
User permissions for project:
|
|
1393
|
+
User permissions for project: - Read only - Execute - Write - Full control # noqa: E501
|
|
1394
1394
|
This method makes a synchronous HTTP request by default. To make an
|
|
1395
1395
|
asynchronous HTTP request, please pass async_req=True
|
|
1396
1396
|
|
|
@@ -1559,7 +1559,7 @@ class AutoTestsApi(object):
|
|
|
1559
1559
|
):
|
|
1560
1560
|
"""Get test results history for autotest # noqa: E501
|
|
1561
1561
|
|
|
1562
|
-
|
|
1562
|
+
Use case User sets autotest internal (guid format) or global (integer format) identifier User sets getTestResultHistoryReportQuery (listed in the example) User runs method execution System search for test results using filters set by user in getTestResultHistoryReportQuery and id System returns the enumeration of test results # noqa: E501
|
|
1563
1563
|
This method makes a synchronous HTTP request by default. To make an
|
|
1564
1564
|
asynchronous HTTP request, please pass async_req=True
|
|
1565
1565
|
|
|
@@ -1648,7 +1648,7 @@ class AutoTestsApi(object):
|
|
|
1648
1648
|
):
|
|
1649
1649
|
"""Get identifiers of changed linked work items # noqa: E501
|
|
1650
1650
|
|
|
1651
|
-
User permissions for project:
|
|
1651
|
+
User permissions for project: - Read only - Execute - Write - Full control # noqa: E501
|
|
1652
1652
|
This method makes a synchronous HTTP request by default. To make an
|
|
1653
1653
|
asynchronous HTTP request, please pass async_req=True
|
|
1654
1654
|
|
|
@@ -1732,7 +1732,7 @@ class AutoTestsApi(object):
|
|
|
1732
1732
|
):
|
|
1733
1733
|
"""Approve changes to work items linked to autotest # noqa: E501
|
|
1734
1734
|
|
|
1735
|
-
User permissions for project:
|
|
1735
|
+
User permissions for project: - Read only - Execute - Write - Full control # noqa: E501
|
|
1736
1736
|
This method makes a synchronous HTTP request by default. To make an
|
|
1737
1737
|
asynchronous HTTP request, please pass async_req=True
|
|
1738
1738
|
|
|
@@ -1900,7 +1900,7 @@ class AutoTestsApi(object):
|
|
|
1900
1900
|
):
|
|
1901
1901
|
"""Create autotest # noqa: E501
|
|
1902
1902
|
|
|
1903
|
-
|
|
1903
|
+
This method creates a new autotest. To add an autotest to the test plan, link it to a work item using the `POST /api/v2/autoTests/{autoTestId}/workItems` method. Use the `POST /api/v2/testRuns/byAutoTests` method to run autotest outside the test plan. # noqa: E501
|
|
1904
1904
|
This method makes a synchronous HTTP request by default. To make an
|
|
1905
1905
|
asynchronous HTTP request, please pass async_req=True
|
|
1906
1906
|
|
|
@@ -1979,7 +1979,7 @@ class AutoTestsApi(object):
|
|
|
1979
1979
|
):
|
|
1980
1980
|
"""Create multiple autotests # noqa: E501
|
|
1981
1981
|
|
|
1982
|
-
|
|
1982
|
+
Use case User sets autotest parameters (listed in the example) and runs method execution System creates autotest [Optional] If steps enumeration is set, system creates step items and relates them to autotest [Optional] If setup enumeration is set, system creates setup items and relates them to autotest [Optional] If teardown enumeration is set, system creates teardown items and relates them to autotest [Optional] If label enumeration is set, system creates labels and relates them to autotest [Optional] If link enumeration is set, system creates links and relates them to autotest System returns autotest model (example listed in response parameters) # noqa: E501
|
|
1983
1983
|
This method makes a synchronous HTTP request by default. To make an
|
|
1984
1984
|
asynchronous HTTP request, please pass async_req=True
|
|
1985
1985
|
|
|
@@ -2059,7 +2059,7 @@ class AutoTestsApi(object):
|
|
|
2059
2059
|
):
|
|
2060
2060
|
"""Delete autotest # noqa: E501
|
|
2061
2061
|
|
|
2062
|
-
|
|
2062
|
+
Use case User sets autotest internal (guid format) or global (integer format) identifier and runs method execution System finds the autotest by the identifier System deletes autotest and returns no content response # noqa: E501
|
|
2063
2063
|
This method makes a synchronous HTTP request by default. To make an
|
|
2064
2064
|
asynchronous HTTP request, please pass async_req=True
|
|
2065
2065
|
|
|
@@ -2142,7 +2142,7 @@ class AutoTestsApi(object):
|
|
|
2142
2142
|
):
|
|
2143
2143
|
"""Unlink autotest from work item # noqa: E501
|
|
2144
2144
|
|
|
2145
|
-
|
|
2145
|
+
Use case User sets autotest internal (guid format) or global (integer format) identifier [Optional] User sets workitem internal (guid format) or global (integer format) identifier User runs method execution System finds the autotest by the autotest identifier [Optional] if workitem id is set by User, System finds the workitem by the workitem identifier and unlinks it from autotest. [Optional] Otherwise, if workitem id is not specified, System unlinks all workitems linked to autotest. System returns no content response # noqa: E501
|
|
2146
2146
|
This method makes a synchronous HTTP request by default. To make an
|
|
2147
2147
|
asynchronous HTTP request, please pass async_req=True
|
|
2148
2148
|
|
|
@@ -2329,7 +2329,7 @@ class AutoTestsApi(object):
|
|
|
2329
2329
|
):
|
|
2330
2330
|
"""Get average autotest duration # noqa: E501
|
|
2331
2331
|
|
|
2332
|
-
|
|
2332
|
+
Use case User sets autotest internal (guid format) or global (integer format) identifier User runs method execution System calculates pass average duration and fail average duration of autotest from all related test results System returns pass average duration and fail average duration for autotest # noqa: E501
|
|
2333
2333
|
This method makes a synchronous HTTP request by default. To make an
|
|
2334
2334
|
asynchronous HTTP request, please pass async_req=True
|
|
2335
2335
|
|
|
@@ -2412,7 +2412,7 @@ class AutoTestsApi(object):
|
|
|
2412
2412
|
):
|
|
2413
2413
|
"""Get autotest by internal or global ID # noqa: E501
|
|
2414
2414
|
|
|
2415
|
-
|
|
2415
|
+
Use case User sets autotest internal or global identifier and runs method execution System returns autotest, which internal or global identifier equals the identifier value set in the previous action # noqa: E501
|
|
2416
2416
|
This method makes a synchronous HTTP request by default. To make an
|
|
2417
2417
|
asynchronous HTTP request, please pass async_req=True
|
|
2418
2418
|
|
|
@@ -2495,7 +2495,7 @@ class AutoTestsApi(object):
|
|
|
2495
2495
|
):
|
|
2496
2496
|
"""Get autotest chronology # noqa: E501
|
|
2497
2497
|
|
|
2498
|
-
|
|
2498
|
+
Use case User sets autotest internal (guid format) or global (integer format) identifier User runs method execution System search all test results related to autotest (with default limit equal 100) System orders the test results by CompletedOn property descending and then orders by CreatedDate property descending System returns test result chronology for autotest # noqa: E501
|
|
2499
2499
|
This method makes a synchronous HTTP request by default. To make an
|
|
2500
2500
|
asynchronous HTTP request, please pass async_req=True
|
|
2501
2501
|
|
|
@@ -2578,7 +2578,7 @@ class AutoTestsApi(object):
|
|
|
2578
2578
|
):
|
|
2579
2579
|
"""Get completed tests runs for autotests # noqa: E501
|
|
2580
2580
|
|
|
2581
|
-
|
|
2581
|
+
Use case User sets autotest internal (guid format) or global (integer format) identifier User runs method execution System search for all test runs related to the autotest System returns the enumeration of test runs # noqa: E501
|
|
2582
2582
|
This method makes a synchronous HTTP request by default. To make an
|
|
2583
2583
|
asynchronous HTTP request, please pass async_req=True
|
|
2584
2584
|
|
|
@@ -2661,7 +2661,7 @@ class AutoTestsApi(object):
|
|
|
2661
2661
|
):
|
|
2662
2662
|
"""Get work items linked to autotest # noqa: E501
|
|
2663
2663
|
|
|
2664
|
-
|
|
2664
|
+
This method links an autotest to a test case or a checklist. A manual test case with a linked automated work item is marked in the test management system as an autotest. You can run it from graphical user interface (GUI). To do that: 1. Open the project in GUI. 2. Go to <b>Test plans</b> section and switch to the <b>Execution</b> tab. 3. Select the autotest(s) you want to run using checkboxes. 4. In the toolbar above the test list, click <b>Run autotests</b>. # noqa: E501
|
|
2665
2665
|
This method makes a synchronous HTTP request by default. To make an
|
|
2666
2666
|
asynchronous HTTP request, please pass async_req=True
|
|
2667
2667
|
|
|
@@ -2669,7 +2669,7 @@ class AutoTestsApi(object):
|
|
|
2669
2669
|
>>> result = thread.get()
|
|
2670
2670
|
|
|
2671
2671
|
Args:
|
|
2672
|
-
id (str): Specifies the autotest entity ID.
|
|
2672
|
+
id (str): Specifies the autotest entity ID. You can copy it from the address bar in your web browser or use autotest GUID.
|
|
2673
2673
|
|
|
2674
2674
|
Keyword Args:
|
|
2675
2675
|
is_deleted (bool): Specifies that a test is deleted or still relevant.. [optional]
|
|
@@ -2746,7 +2746,7 @@ class AutoTestsApi(object):
|
|
|
2746
2746
|
):
|
|
2747
2747
|
"""Link autotest with work items # noqa: E501
|
|
2748
2748
|
|
|
2749
|
-
|
|
2749
|
+
Use case User sets autotest internal (guid format) or global (integer format) identifier User sets work item internal (guid format) or global (integer format) identifier User runs method execution System finds the autotest by the autotest identifier System finds the work item by the work item identifier System relates the work item with the autotest and returns no content response # noqa: E501
|
|
2750
2750
|
This method makes a synchronous HTTP request by default. To make an
|
|
2751
2751
|
asynchronous HTTP request, please pass async_req=True
|
|
2752
2752
|
|
|
@@ -2829,7 +2829,7 @@ class AutoTestsApi(object):
|
|
|
2829
2829
|
):
|
|
2830
2830
|
"""Update autotest # noqa: E501
|
|
2831
2831
|
|
|
2832
|
-
|
|
2832
|
+
Use case User sets autotest updated parameters values (listed in the example) and runs method execution System finds the autotest by the identifier System updates autotest parameters [Optional] If steps enumeration is set, system creates step items, relates them to autotest and deletes relations with current steps( if exist) [Optional] If Setup enumeration is set, system creates setup items and relates them to autotest and deletes relations with current Setup items (if exist) [Optional] If teardown enumeration is set, system creates teardown items and relates them to autotest and deletes relations with current teardown items (if exist) [Optional] If label enumeration is set, system creates labels and relates them to autotest and deletes relations with current Labels (if exist) [Optional] If link enumeration is set, system creates links and relates them to autotest and deletes relations with current Links (if exist) System updates autotest and returns no content response # noqa: E501
|
|
2833
2833
|
This method makes a synchronous HTTP request by default. To make an
|
|
2834
2834
|
asynchronous HTTP request, please pass async_req=True
|
|
2835
2835
|
|
|
@@ -2908,7 +2908,7 @@ class AutoTestsApi(object):
|
|
|
2908
2908
|
):
|
|
2909
2909
|
"""Update multiple autotests # noqa: E501
|
|
2910
2910
|
|
|
2911
|
-
|
|
2911
|
+
Use case User sets autotest updated parameters values (listed in the example) and runs method execution System finds the autotest by the identifier System updates autotest parameters [Optional] If steps enumeration is set, system creates step items, relates them to autotest and deletes relations with current steps( if exist) [Optional] If Setup enumeration is set, system creates setup items and relates them to autotest and deletes relations with current Setup items (if exist) [Optional] If teardown enumeration is set, system creates teardown items and relates them to autotest and deletes relations with current teardown items (if exist) [Optional] If label enumeration is set, system creates labels and relates them to autotest and deletes relations with current Labels (if exist) [Optional] If link enumeration is set, system creates links and relates them to autotest and deletes relations with current Links (if exist) System updates autotest and returns no content response # noqa: E501
|
|
2912
2912
|
This method makes a synchronous HTTP request by default. To make an
|
|
2913
2913
|
asynchronous HTTP request, please pass async_req=True
|
|
2914
2914
|
|
{testit_api_client-7.1.2 → testit_api_client-7.2.0}/src/testit_api_client/api/configurations_api.py
RENAMED
|
@@ -355,7 +355,7 @@ class ConfigurationsApi(object):
|
|
|
355
355
|
)
|
|
356
356
|
self.api_v2_configurations_purge_bulk_post_endpoint = _Endpoint(
|
|
357
357
|
settings={
|
|
358
|
-
'response_type':
|
|
358
|
+
'response_type': (int,),
|
|
359
359
|
'auth': [
|
|
360
360
|
'Bearer or PrivateToken'
|
|
361
361
|
],
|
|
@@ -1213,7 +1213,7 @@ class ConfigurationsApi(object):
|
|
|
1213
1213
|
async_req (bool): execute request asynchronously
|
|
1214
1214
|
|
|
1215
1215
|
Returns:
|
|
1216
|
-
|
|
1216
|
+
int
|
|
1217
1217
|
If the method is called asynchronously, returns the request
|
|
1218
1218
|
thread.
|
|
1219
1219
|
"""
|
|
@@ -1489,7 +1489,7 @@ class ConfigurationsApi(object):
|
|
|
1489
1489
|
):
|
|
1490
1490
|
"""Create Configuration # noqa: E501
|
|
1491
1491
|
|
|
1492
|
-
|
|
1492
|
+
Use case User sets configuration model (listed in the request example) User runs method execution System creates configuration System returns created configuration (listed in the response example) # noqa: E501
|
|
1493
1493
|
This method makes a synchronous HTTP request by default. To make an
|
|
1494
1494
|
asynchronous HTTP request, please pass async_req=True
|
|
1495
1495
|
|
|
@@ -1569,7 +1569,7 @@ class ConfigurationsApi(object):
|
|
|
1569
1569
|
):
|
|
1570
1570
|
"""Get configuration by internal or global ID # noqa: E501
|
|
1571
1571
|
|
|
1572
|
-
|
|
1572
|
+
Use case User sets configuration internal (guid format) or global (integer format) identifier User runs method execution System search configuration using the identifier System returns configuration # noqa: E501
|
|
1573
1573
|
This method makes a synchronous HTTP request by default. To make an
|
|
1574
1574
|
asynchronous HTTP request, please pass async_req=True
|
|
1575
1575
|
|
|
@@ -627,7 +627,7 @@ class CustomAttributeTemplatesApi(object):
|
|
|
627
627
|
):
|
|
628
628
|
"""Exclude CustomAttributes from CustomAttributeTemplate # noqa: E501
|
|
629
629
|
|
|
630
|
-
|
|
630
|
+
Use case User sets attribute template internal identifier User sets attribute internal identifiers User runs method execution System delete attributes from attributes tempalte # noqa: E501
|
|
631
631
|
This method makes a synchronous HTTP request by default. To make an
|
|
632
632
|
asynchronous HTTP request, please pass async_req=True
|
|
633
633
|
|
|
@@ -711,7 +711,7 @@ class CustomAttributeTemplatesApi(object):
|
|
|
711
711
|
):
|
|
712
712
|
"""Include CustomAttributes to CustomAttributeTemplate # noqa: E501
|
|
713
713
|
|
|
714
|
-
|
|
714
|
+
Use case User sets attribute template internal identifier User sets attribute internal identifiers User runs method execution System add attributes to attributes tempalte # noqa: E501
|
|
715
715
|
This method makes a synchronous HTTP request by default. To make an
|
|
716
716
|
asynchronous HTTP request, please pass async_req=True
|
|
717
717
|
|
|
@@ -795,7 +795,7 @@ class CustomAttributeTemplatesApi(object):
|
|
|
795
795
|
):
|
|
796
796
|
"""Delete CustomAttributeTemplate # noqa: E501
|
|
797
797
|
|
|
798
|
-
|
|
798
|
+
Use case User sets attribute template internal identifier User runs method execution System search and delete attribute template System returns no content response # noqa: E501
|
|
799
799
|
This method makes a synchronous HTTP request by default. To make an
|
|
800
800
|
asynchronous HTTP request, please pass async_req=True
|
|
801
801
|
|
|
@@ -878,7 +878,7 @@ class CustomAttributeTemplatesApi(object):
|
|
|
878
878
|
):
|
|
879
879
|
"""Get CustomAttributeTemplate by ID # noqa: E501
|
|
880
880
|
|
|
881
|
-
|
|
881
|
+
Use case User sets attribute template internal identifier User runs method execution System return attribute template (listed in response example) # noqa: E501
|
|
882
882
|
This method makes a synchronous HTTP request by default. To make an
|
|
883
883
|
asynchronous HTTP request, please pass async_req=True
|
|
884
884
|
|
|
@@ -961,7 +961,7 @@ class CustomAttributeTemplatesApi(object):
|
|
|
961
961
|
):
|
|
962
962
|
"""Get CustomAttributeTemplate by name # noqa: E501
|
|
963
963
|
|
|
964
|
-
|
|
964
|
+
Use case User sets attribute template name User runs method execution System search and return list of attribute templates (listed in response example) # noqa: E501
|
|
965
965
|
This method makes a synchronous HTTP request by default. To make an
|
|
966
966
|
asynchronous HTTP request, please pass async_req=True
|
|
967
967
|
|
|
@@ -1043,7 +1043,7 @@ class CustomAttributeTemplatesApi(object):
|
|
|
1043
1043
|
):
|
|
1044
1044
|
"""Create CustomAttributeTemplate # noqa: E501
|
|
1045
1045
|
|
|
1046
|
-
|
|
1046
|
+
Use case User sets attribute template parameters (listed in request example) User runs method execution System creates attribute template System returns attribute template model (example listed in response parameters) # noqa: E501
|
|
1047
1047
|
This method makes a synchronous HTTP request by default. To make an
|
|
1048
1048
|
asynchronous HTTP request, please pass async_req=True
|
|
1049
1049
|
|
|
@@ -1200,7 +1200,7 @@ class CustomAttributeTemplatesApi(object):
|
|
|
1200
1200
|
):
|
|
1201
1201
|
"""Search CustomAttributeTemplates # noqa: E501
|
|
1202
1202
|
|
|
1203
|
-
|
|
1203
|
+
Use case User sets search params model (listed in request example) User runs method execution System return attribute templates (listed in response example) # noqa: E501
|
|
1204
1204
|
This method makes a synchronous HTTP request by default. To make an
|
|
1205
1205
|
asynchronous HTTP request, please pass async_req=True
|
|
1206
1206
|
|
|
@@ -0,0 +1,169 @@
|
|
|
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.api_v2_external_issues_suggestions_post_request import ApiV2ExternalIssuesSuggestionsPostRequest
|
|
25
|
+
from testit_api_client.model.external_issue_api_field_suggestion_reply import ExternalIssueApiFieldSuggestionReply
|
|
26
|
+
from testit_api_client.model.problem_details import ProblemDetails
|
|
27
|
+
from testit_api_client.model.validation_problem_details import ValidationProblemDetails
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
class ExternalIssuesApi(object):
|
|
31
|
+
"""NOTE: This class is auto generated by OpenAPI Generator
|
|
32
|
+
Ref: https://openapi-generator.tech
|
|
33
|
+
|
|
34
|
+
Do not edit the class manually.
|
|
35
|
+
"""
|
|
36
|
+
|
|
37
|
+
def __init__(self, api_client=None):
|
|
38
|
+
if api_client is None:
|
|
39
|
+
api_client = ApiClient()
|
|
40
|
+
self.api_client = api_client
|
|
41
|
+
self.api_v2_external_issues_suggestions_post_endpoint = _Endpoint(
|
|
42
|
+
settings={
|
|
43
|
+
'response_type': (ExternalIssueApiFieldSuggestionReply,),
|
|
44
|
+
'auth': [
|
|
45
|
+
'Bearer or PrivateToken'
|
|
46
|
+
],
|
|
47
|
+
'endpoint_path': '/api/v2/external-issues/suggestions',
|
|
48
|
+
'operation_id': 'api_v2_external_issues_suggestions_post',
|
|
49
|
+
'http_method': 'POST',
|
|
50
|
+
'servers': None,
|
|
51
|
+
},
|
|
52
|
+
params_map={
|
|
53
|
+
'all': [
|
|
54
|
+
'api_v2_external_issues_suggestions_post_request',
|
|
55
|
+
],
|
|
56
|
+
'required': [],
|
|
57
|
+
'nullable': [
|
|
58
|
+
],
|
|
59
|
+
'enum': [
|
|
60
|
+
],
|
|
61
|
+
'validation': [
|
|
62
|
+
]
|
|
63
|
+
},
|
|
64
|
+
root_map={
|
|
65
|
+
'validations': {
|
|
66
|
+
},
|
|
67
|
+
'allowed_values': {
|
|
68
|
+
},
|
|
69
|
+
'openapi_types': {
|
|
70
|
+
'api_v2_external_issues_suggestions_post_request':
|
|
71
|
+
(ApiV2ExternalIssuesSuggestionsPostRequest,),
|
|
72
|
+
},
|
|
73
|
+
'attribute_map': {
|
|
74
|
+
},
|
|
75
|
+
'location_map': {
|
|
76
|
+
'api_v2_external_issues_suggestions_post_request': 'body',
|
|
77
|
+
},
|
|
78
|
+
'collection_format_map': {
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
headers_map={
|
|
82
|
+
'accept': [
|
|
83
|
+
'application/json'
|
|
84
|
+
],
|
|
85
|
+
'content_type': [
|
|
86
|
+
'application/json'
|
|
87
|
+
]
|
|
88
|
+
},
|
|
89
|
+
api_client=api_client
|
|
90
|
+
)
|
|
91
|
+
|
|
92
|
+
def api_v2_external_issues_suggestions_post(
|
|
93
|
+
self,
|
|
94
|
+
**kwargs
|
|
95
|
+
):
|
|
96
|
+
"""Returns list of suggestions from available external issues # noqa: E501
|
|
97
|
+
|
|
98
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
99
|
+
asynchronous HTTP request, please pass async_req=True
|
|
100
|
+
|
|
101
|
+
>>> thread = api.api_v2_external_issues_suggestions_post(async_req=True)
|
|
102
|
+
>>> result = thread.get()
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
Keyword Args:
|
|
106
|
+
api_v2_external_issues_suggestions_post_request (ApiV2ExternalIssuesSuggestionsPostRequest): [optional]
|
|
107
|
+
_return_http_data_only (bool): response data without head status
|
|
108
|
+
code and headers. Default is True.
|
|
109
|
+
_preload_content (bool): if False, the urllib3.HTTPResponse object
|
|
110
|
+
will be returned without reading/decoding response data.
|
|
111
|
+
Default is True.
|
|
112
|
+
_request_timeout (int/float/tuple): timeout setting for this request. If
|
|
113
|
+
one number provided, it will be total request timeout. It can also
|
|
114
|
+
be a pair (tuple) of (connection, read) timeouts.
|
|
115
|
+
Default is None.
|
|
116
|
+
_check_input_type (bool): specifies if type checking
|
|
117
|
+
should be done one the data sent to the server.
|
|
118
|
+
Default is True.
|
|
119
|
+
_check_return_type (bool): specifies if type checking
|
|
120
|
+
should be done one the data received from the server.
|
|
121
|
+
Default is True.
|
|
122
|
+
_spec_property_naming (bool): True if the variable names in the input data
|
|
123
|
+
are serialized names, as specified in the OpenAPI document.
|
|
124
|
+
False if the variable names in the input data
|
|
125
|
+
are pythonic names, e.g. snake case (default)
|
|
126
|
+
_content_type (str/None): force body content-type.
|
|
127
|
+
Default is None and content-type will be predicted by allowed
|
|
128
|
+
content-types and body.
|
|
129
|
+
_host_index (int/None): specifies the index of the server
|
|
130
|
+
that we want to use.
|
|
131
|
+
Default is read from the configuration.
|
|
132
|
+
_request_auths (list): set to override the auth_settings for an a single
|
|
133
|
+
request; this effectively ignores the authentication
|
|
134
|
+
in the spec for a single request.
|
|
135
|
+
Default is None
|
|
136
|
+
async_req (bool): execute request asynchronously
|
|
137
|
+
|
|
138
|
+
Returns:
|
|
139
|
+
ExternalIssueApiFieldSuggestionReply
|
|
140
|
+
If the method is called asynchronously, returns the request
|
|
141
|
+
thread.
|
|
142
|
+
"""
|
|
143
|
+
kwargs['async_req'] = kwargs.get(
|
|
144
|
+
'async_req', False
|
|
145
|
+
)
|
|
146
|
+
kwargs['_return_http_data_only'] = kwargs.get(
|
|
147
|
+
'_return_http_data_only', True
|
|
148
|
+
)
|
|
149
|
+
kwargs['_preload_content'] = kwargs.get(
|
|
150
|
+
'_preload_content', True
|
|
151
|
+
)
|
|
152
|
+
kwargs['_request_timeout'] = kwargs.get(
|
|
153
|
+
'_request_timeout', None
|
|
154
|
+
)
|
|
155
|
+
kwargs['_check_input_type'] = kwargs.get(
|
|
156
|
+
'_check_input_type', True
|
|
157
|
+
)
|
|
158
|
+
kwargs['_check_return_type'] = kwargs.get(
|
|
159
|
+
'_check_return_type', True
|
|
160
|
+
)
|
|
161
|
+
kwargs['_spec_property_naming'] = kwargs.get(
|
|
162
|
+
'_spec_property_naming', False
|
|
163
|
+
)
|
|
164
|
+
kwargs['_content_type'] = kwargs.get(
|
|
165
|
+
'_content_type')
|
|
166
|
+
kwargs['_host_index'] = kwargs.get('_host_index')
|
|
167
|
+
kwargs['_request_auths'] = kwargs.get('_request_auths', None)
|
|
168
|
+
return self.api_v2_external_issues_suggestions_post_endpoint.call_with_http_info(**kwargs)
|
|
169
|
+
|