testit-api-client 4.1.0__tar.gz → 4.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.
Files changed (554) hide show
  1. {testit_api_client-4.1.0/src/testit_api_client.egg-info → testit_api_client-4.2.0}/PKG-INFO +17 -8
  2. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/README.md +16 -7
  3. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/setup.py +1 -1
  4. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/__init__.py +1 -1
  5. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/api/attachments_api.py +133 -0
  6. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/api/auto_tests_api.py +28 -253
  7. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/api/custom_attribute_templates_api.py +128 -0
  8. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/api/custom_attributes_api.py +134 -0
  9. testit_api_client-4.1.0/src/testit_api_client/api/project_import_api.py → testit_api_client-4.2.0/src/testit_api_client/api/project_settings_api.py +30 -185
  10. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/api/project_work_items_api.py +17 -17
  11. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/api/projects_api.py +5 -400
  12. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/api/test_plans_api.py +141 -6
  13. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/api/test_results_api.py +435 -17
  14. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/api/test_runs_api.py +305 -28
  15. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/api/test_suites_api.py +6 -6
  16. testit_api_client-4.2.0/src/testit_api_client/api/users_api.py +167 -0
  17. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/api/webhooks_api.py +259 -0
  18. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/api/work_items_api.py +9 -9
  19. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/api/work_items_comments_api.py +133 -0
  20. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/api_client.py +1 -1
  21. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/apis/__init__.py +2 -1
  22. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/configuration.py +1 -1
  23. testit_api_client-4.1.0/src/testit_api_client/model/api_v2_projects_project_id_work_items_search_post_request.py → testit_api_client-4.2.0/src/testit_api_client/model/add_test_points_with_sections_request.py +3 -3
  24. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_projects_project_id_settings_autotests_post_request.py +347 -0
  25. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/api_v2_test_points_search_post_request.py +3 -3
  26. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_test_results_external_projects_external_project_id_defects_external_forms_post_request.py +327 -0
  27. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_test_results_external_projects_external_project_id_defects_post_request.py +329 -0
  28. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/api_v2_test_results_search_post_request.py +50 -46
  29. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_test_runs_id_reruns_post_request.py +327 -0
  30. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/api_v2_test_runs_id_statistics_filter_post_request.py +4 -0
  31. testit_api_client-4.1.0/src/testit_api_client/model/api_v2_test_runs_delete_request.py → testit_api_client-4.2.0/src/testit_api_client/model/api_v2_test_runs_purge_bulk_post_request.py +3 -3
  32. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/api_v2_test_runs_search_post_request.py +4 -0
  33. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_webhooks_delete_request.py +327 -0
  34. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_webhooks_put_request.py +333 -0
  35. testit_api_client-4.2.0/src/testit_api_client/model/attachment.py +307 -0
  36. testit_api_client-4.2.0/src/testit_api_client/model/attachment_update_request.py +263 -0
  37. testit_api_client-4.1.0/src/testit_api_client/model/update_auto_test_request.py → testit_api_client-4.2.0/src/testit_api_client/model/auto_test.py +115 -104
  38. testit_api_client-4.2.0/src/testit_api_client/model/auto_test_class_count_api_model.py +267 -0
  39. testit_api_client-4.2.0/src/testit_api_client/model/auto_test_last_test_result_configuration.py +323 -0
  40. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/auto_test_model.py +6 -0
  41. testit_api_client-4.2.0/src/testit_api_client/model/auto_test_model_last_test_result_configuration.py +323 -0
  42. testit_api_client-4.2.0/src/testit_api_client/model/auto_test_namespace_count_api_model.py +278 -0
  43. testit_api_client-4.2.0/src/testit_api_client/model/auto_test_namespaces_count_response.py +268 -0
  44. testit_api_client-4.2.0/src/testit_api_client/model/auto_test_project_settings_get_model.py +299 -0
  45. testit_api_client-4.2.0/src/testit_api_client/model/auto_test_project_settings_post_model.py +293 -0
  46. testit_api_client-4.1.0/src/testit_api_client/model/autotest_result_reason_sub_get_model.py → testit_api_client-4.2.0/src/testit_api_client/model/auto_test_result_reason_short.py +3 -3
  47. testit_api_client-4.2.0/src/testit_api_client/model/auto_test_step.py +274 -0
  48. testit_api_client-4.2.0/src/testit_api_client/model/auto_test_step_result.py +304 -0
  49. testit_api_client-4.2.0/src/testit_api_client/model/auto_test_step_result_update_request.py +306 -0
  50. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/autotest_filter_model.py +6 -0
  51. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/autotest_result_historical_get_model.py +24 -10
  52. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/autotest_select_model_filter.py +6 -0
  53. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/autotests_select_model_filter.py +6 -0
  54. testit_api_client-4.2.0/src/testit_api_client/model/configuration_short.py +269 -0
  55. testit_api_client-4.2.0/src/testit_api_client/model/configuration_short_model.py +269 -0
  56. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/create_and_fill_by_auto_tests_request.py +3 -0
  57. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/create_and_fill_by_work_items_request.py +6 -0
  58. testit_api_client-4.2.0/src/testit_api_client/model/create_defect_api_model.py +278 -0
  59. testit_api_client-4.2.0/src/testit_api_client/model/create_defect_api_model_form.py +337 -0
  60. testit_api_client-4.2.0/src/testit_api_client/model/custom_attribute_template_validation_result.py +263 -0
  61. testit_api_client-4.2.0/src/testit_api_client/model/custom_attribute_validation_result.py +263 -0
  62. testit_api_client-4.2.0/src/testit_api_client/model/defect_api_model.py +263 -0
  63. testit_api_client-4.2.0/src/testit_api_client/model/external_form_allowed_value_model.py +275 -0
  64. testit_api_client-4.2.0/src/testit_api_client/model/external_form_create_model.py +290 -0
  65. testit_api_client-4.2.0/src/testit_api_client/model/external_form_field_model.py +315 -0
  66. testit_api_client-4.2.0/src/testit_api_client/model/external_form_link_model.py +269 -0
  67. testit_api_client-4.2.0/src/testit_api_client/model/external_form_model.py +284 -0
  68. testit_api_client-4.2.0/src/testit_api_client/model/get_external_form_api_result.py +274 -0
  69. testit_api_client-4.2.0/src/testit_api_client/model/get_external_form_api_result_form.py +333 -0
  70. testit_api_client-4.2.0/src/testit_api_client/model/label.py +272 -0
  71. testit_api_client-4.2.0/src/testit_api_client/model/link.py +293 -0
  72. testit_api_client-4.1.0/src/testit_api_client/model/link_sub_get_model.py → testit_api_client-4.2.0/src/testit_api_client/model/link_short.py +3 -3
  73. testit_api_client-4.2.0/src/testit_api_client/model/manual_rerun_result_model.py +263 -0
  74. testit_api_client-4.2.0/src/testit_api_client/model/manual_rerun_select_model.py +268 -0
  75. testit_api_client-4.2.0/src/testit_api_client/model/project_short_model.py +344 -0
  76. testit_api_client-4.2.0/src/testit_api_client/model/request_type_request.py +291 -0
  77. testit_api_client-4.2.0/src/testit_api_client/model/rerun_test_result_model.py +273 -0
  78. testit_api_client-4.2.0/src/testit_api_client/model/reruns_model.py +274 -0
  79. testit_api_client-4.2.0/src/testit_api_client/model/shared_step_result.py +269 -0
  80. testit_api_client-4.2.0/src/testit_api_client/model/step_comment.py +312 -0
  81. testit_api_client-4.2.0/src/testit_api_client/model/step_result.py +288 -0
  82. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_plan_change_model_test_plan_changed_fields.py +9 -11
  83. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_plan_changed_fields_view_model.py +9 -11
  84. testit_api_client-4.2.0/src/testit_api_client/model/test_plan_summary_model.py +297 -0
  85. testit_api_client-4.1.0/src/testit_api_client/model/test_point_put_model.py → testit_api_client-4.2.0/src/testit_api_client/model/test_point.py +26 -17
  86. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_point_filter_model.py +3 -3
  87. testit_api_client-4.2.0/src/testit_api_client/model/test_point_put_model.py +312 -0
  88. testit_api_client-4.1.0/src/testit_api_client/model/link_auto_test_to_work_item_request.py → testit_api_client-4.2.0/src/testit_api_client/model/test_point_put_model_status_model.py +16 -11
  89. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_point_short_get_model.py +5 -5
  90. testit_api_client-4.2.0/src/testit_api_client/model/test_result_extraction_model.py +262 -0
  91. testit_api_client-4.2.0/src/testit_api_client/model/test_result_history_response.py +382 -0
  92. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_result_model.py +6 -0
  93. testit_api_client-4.1.0/src/testit_api_client/model/test_result_history_report_model.py → testit_api_client-4.2.0/src/testit_api_client/model/test_result_response.py +132 -84
  94. testit_api_client-4.1.0/src/testit_api_client/model/test_result_short_get_model.py → testit_api_client-4.2.0/src/testit_api_client/model/test_result_short_response.py +36 -26
  95. testit_api_client-4.1.0/src/testit_api_client/model/test_result_step_comment_put_model.py → testit_api_client-4.2.0/src/testit_api_client/model/test_result_step_comment_update_request.py +10 -10
  96. testit_api_client-4.1.0/src/testit_api_client/model/test_result_update_model.py → testit_api_client-4.2.0/src/testit_api_client/model/test_result_update_v2_request.py +27 -23
  97. testit_api_client-4.2.0/src/testit_api_client/model/test_results_extraction_api_model.py +262 -0
  98. testit_api_client-4.2.0/src/testit_api_client/model/test_results_extraction_api_model_ids.py +323 -0
  99. testit_api_client-4.2.0/src/testit_api_client/model/test_results_filter_model.py +324 -0
  100. testit_api_client-4.1.0/src/testit_api_client/model/test_results_filter_model.py → testit_api_client-4.2.0/src/testit_api_client/model/test_results_filter_request.py +50 -46
  101. testit_api_client-4.2.0/src/testit_api_client/model/test_results_filter_request_completed_on.py +323 -0
  102. testit_api_client-4.2.0/src/testit_api_client/model/test_results_filter_request_created_date.py +323 -0
  103. testit_api_client-4.1.0/src/testit_api_client/model/test_results_filter_model_duration.py → testit_api_client-4.2.0/src/testit_api_client/model/test_results_filter_request_duration.py +3 -3
  104. testit_api_client-4.2.0/src/testit_api_client/model/test_results_filter_request_modified_date.py +323 -0
  105. testit_api_client-4.1.0/src/testit_api_client/model/test_results_filter_model_completed_on.py → testit_api_client-4.2.0/src/testit_api_client/model/test_results_filter_request_started_on.py +3 -3
  106. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_results_local_filter_model.py +4 -0
  107. testit_api_client-4.2.0/src/testit_api_client/model/test_results_select_api_model.py +276 -0
  108. testit_api_client-4.2.0/src/testit_api_client/model/test_results_select_api_model_extraction_model.py +321 -0
  109. testit_api_client-4.2.0/src/testit_api_client/model/test_results_select_api_model_filter.py +397 -0
  110. testit_api_client-4.2.0/src/testit_api_client/model/test_results_statistics_failure_categories.py +275 -0
  111. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_results_statistics_get_model_failure_categories.py +0 -8
  112. testit_api_client-4.2.0/src/testit_api_client/model/test_results_statistics_response.py +276 -0
  113. testit_api_client-4.2.0/src/testit_api_client/model/test_results_statistics_response_failure_categories.py +327 -0
  114. testit_api_client-4.2.0/src/testit_api_client/model/test_results_statistics_response_statuses.py +335 -0
  115. testit_api_client-4.2.0/src/testit_api_client/model/test_results_statistics_statuses.py +287 -0
  116. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_run_fill_by_auto_tests_post_model.py +3 -0
  117. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_run_fill_by_work_items_post_model.py +6 -0
  118. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_run_filter_model.py +4 -0
  119. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_run_short_get_model.py +10 -2
  120. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_run_statistics_error_categories_get_model.py +2 -14
  121. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_run_test_results_select_model_filter.py +4 -0
  122. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_run_v2_get_model.py +8 -2
  123. testit_api_client-4.2.0/src/testit_api_client/model/test_status.py +302 -0
  124. testit_api_client-4.2.0/src/testit_api_client/model/test_status_create_model.py +296 -0
  125. testit_api_client-4.2.0/src/testit_api_client/model/test_status_model.py +275 -0
  126. testit_api_client-4.2.0/src/testit_api_client/model/test_status_type.py +293 -0
  127. testit_api_client-4.2.0/src/testit_api_client/model/test_status_update_model.py +281 -0
  128. testit_api_client-4.2.0/src/testit_api_client/model/user_custom_name_validation_response.py +263 -0
  129. testit_api_client-4.2.0/src/testit_api_client/model/web_hook_event_type_request.py +305 -0
  130. testit_api_client-4.2.0/src/testit_api_client/model/webhook_bulk_update_api_model.py +263 -0
  131. testit_api_client-4.2.0/src/testit_api_client/model/webhooks_delete_filter_request.py +290 -0
  132. testit_api_client-4.2.0/src/testit_api_client/model/webhooks_delete_request.py +276 -0
  133. testit_api_client-4.2.0/src/testit_api_client/model/webhooks_delete_request_extractor.py +321 -0
  134. testit_api_client-4.2.0/src/testit_api_client/model/webhooks_delete_request_filter.py +349 -0
  135. testit_api_client-4.2.0/src/testit_api_client/model/webhooks_extraction_request.py +262 -0
  136. testit_api_client-4.2.0/src/testit_api_client/model/webhooks_filter_request.py +286 -0
  137. testit_api_client-4.2.0/src/testit_api_client/model/webhooks_update_request.py +284 -0
  138. testit_api_client-4.2.0/src/testit_api_client/model/webhooks_update_request_filter.py +345 -0
  139. testit_api_client-4.2.0/src/testit_api_client/model/webhooks_update_request_model.py +319 -0
  140. testit_api_client-4.2.0/src/testit_api_client/model/webhooks_update_response.py +263 -0
  141. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/models/__init__.py +91 -24
  142. {testit_api_client-4.1.0 → testit_api_client-4.2.0/src/testit_api_client.egg-info}/PKG-INFO +17 -8
  143. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client.egg-info/SOURCES.txt +93 -25
  144. testit_api_client-4.1.0/src/testit_api_client/model/api_v2_attachments_post_request.py +0 -263
  145. testit_api_client-4.1.0/src/testit_api_client/model/api_v2_auto_tests_flaky_bulk_post_request.py +0 -325
  146. testit_api_client-4.1.0/src/testit_api_client/model/api_v2_auto_tests_id_test_results_search_post_request.py +0 -361
  147. testit_api_client-4.1.0/src/testit_api_client/model/api_v2_projects_project_id_work_items_search_grouped_post_request.py +0 -331
  148. testit_api_client-4.1.0/src/testit_api_client/model/api_v2_test_results_id_put_request.py +0 -385
  149. testit_api_client-4.1.0/src/testit_api_client/model/create_auto_test_request.py +0 -397
  150. testit_api_client-4.1.0/src/testit_api_client/model/create_empty_request.py +0 -343
  151. testit_api_client-4.1.0/src/testit_api_client/model/test_point_short_get_model_last_test_result.py +0 -347
  152. testit_api_client-4.1.0/src/testit_api_client/model/test_results_filter_model_created_date.py +0 -323
  153. testit_api_client-4.1.0/src/testit_api_client/model/test_results_filter_model_modified_date.py +0 -323
  154. testit_api_client-4.1.0/src/testit_api_client/model/test_results_filter_model_started_on.py +0 -323
  155. testit_api_client-4.1.0/src/testit_api_client/model/update_empty_request.py +0 -346
  156. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/LICENSE.md +0 -0
  157. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/setup.cfg +0 -0
  158. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/api/__init__.py +0 -0
  159. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/api/background_jobs_api.py +0 -0
  160. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/api/configurations_api.py +0 -0
  161. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/api/notifications_api.py +0 -0
  162. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/api/parameters_api.py +0 -0
  163. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/api/project_attribute_templates_api.py +0 -0
  164. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/api/project_attributes_api.py +0 -0
  165. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/api/project_configurations_api.py +0 -0
  166. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/api/project_sections_api.py +0 -0
  167. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/api/project_test_plan_attributes_api.py +0 -0
  168. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/api/project_test_plans_api.py +0 -0
  169. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/api/search_api.py +0 -0
  170. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/api/sections_api.py +0 -0
  171. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/api/tags_api.py +0 -0
  172. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/api/test_points_api.py +0 -0
  173. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/api/webhooks_logs_api.py +0 -0
  174. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/exceptions.py +0 -0
  175. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/__init__.py +0 -0
  176. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/action_update.py +0 -0
  177. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/api_v2_auto_tests_search_post_request.py +0 -0
  178. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/api_v2_background_jobs_search_post_request.py +0 -0
  179. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/api_v2_configurations_create_by_parameters_post_request.py +0 -0
  180. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/api_v2_configurations_purge_bulk_post_request.py +0 -0
  181. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/api_v2_configurations_put_request.py +0 -0
  182. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/api_v2_configurations_search_post_request.py +0 -0
  183. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/api_v2_custom_attributes_global_id_put_request.py +0 -0
  184. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/api_v2_custom_attributes_global_post_request.py +0 -0
  185. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/api_v2_custom_attributes_search_post_request.py +0 -0
  186. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/api_v2_custom_attributes_templates_post_request.py +0 -0
  187. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/api_v2_custom_attributes_templates_put_request.py +0 -0
  188. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/api_v2_custom_attributes_templates_search_post_request.py +0 -0
  189. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/api_v2_notifications_search_post_request.py +0 -0
  190. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/api_v2_parameters_search_post_request.py +0 -0
  191. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/api_v2_projects_project_id_attributes_templates_search_post_request.py +0 -0
  192. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/api_v2_projects_project_id_test_plans_delete_bulk_post_request.py +0 -0
  193. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/api_v2_projects_project_id_test_plans_search_post_request.py +0 -0
  194. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/api_v2_projects_restore_bulk_post_request.py +0 -0
  195. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/api_v2_projects_search_post_request.py +0 -0
  196. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/api_v2_search_global_search_post_request.py +0 -0
  197. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/api_v2_tags_delete_request.py +0 -0
  198. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/api_v2_tags_post_request.py +0 -0
  199. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/api_v2_tags_put_request.py +0 -0
  200. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/api_v2_test_plans_id_export_test_points_xlsx_post_request.py +0 -0
  201. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/api_v2_test_plans_id_test_points_tester_user_id_post_request.py +0 -0
  202. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/api_v2_test_plans_id_test_runs_search_post_request.py +0 -0
  203. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/api_v2_test_runs_id_test_results_bulk_put_request.py +0 -0
  204. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/api_v2_test_runs_update_multiple_post_request.py +0 -0
  205. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/api_v2_test_suites_post_request.py +0 -0
  206. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/api_v2_test_suites_put_request.py +0 -0
  207. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/api_v2_webhooks_post_request.py +0 -0
  208. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/api_v2_webhooks_search_post_request.py +0 -0
  209. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/api_v2_webhooks_test_post_request.py +0 -0
  210. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/api_v2_work_items_comments_post_request.py +0 -0
  211. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/api_v2_work_items_comments_put_request.py +0 -0
  212. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/api_v2_work_items_move_post_request.py +0 -0
  213. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/api_v2_work_items_shared_step_id_references_sections_post_request.py +0 -0
  214. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/api_v2_work_items_shared_step_id_references_work_items_post_request.py +0 -0
  215. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/attachment_change_view_model.py +0 -0
  216. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/attachment_change_view_model_array_changed_field_view_model.py +0 -0
  217. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/attachment_model.py +0 -0
  218. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/attachment_model_auto_test_step_results_model.py +0 -0
  219. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/attachment_put_model.py +0 -0
  220. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/attachment_put_model_auto_test_step_results_model.py +0 -0
  221. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/auto_test_average_duration_model.py +0 -0
  222. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/auto_test_change_view_model.py +0 -0
  223. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/auto_test_change_view_model_array_changed_field_view_model.py +0 -0
  224. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/auto_test_id_model.py +0 -0
  225. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/auto_test_model_v2_get_model.py +0 -0
  226. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/auto_test_namespace_model.py +0 -0
  227. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/auto_test_post_model.py +0 -0
  228. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/auto_test_put_model.py +0 -0
  229. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/auto_test_related_to_test_result.py +0 -0
  230. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/auto_test_results_for_test_run_model.py +0 -0
  231. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/auto_test_short_model.py +0 -0
  232. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/auto_test_step_model.py +0 -0
  233. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/autotest_filter_model_created_date.py +0 -0
  234. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/autotest_filter_model_modified_date.py +0 -0
  235. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/autotest_filter_model_stability_percentage.py +0 -0
  236. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/autotest_historical_result_select_model.py +0 -0
  237. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/autotest_result_outcome.py +0 -0
  238. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/autotest_select_model.py +0 -0
  239. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/autotest_select_model_extraction_model.py +0 -0
  240. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/autotests_extraction_model.py +0 -0
  241. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/autotests_extraction_model_ids.py +0 -0
  242. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/autotests_select_model.py +0 -0
  243. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/autotests_select_model_includes.py +0 -0
  244. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/available_test_result_outcome.py +0 -0
  245. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/background_job_attachment_model.py +0 -0
  246. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/background_job_filter_model.py +0 -0
  247. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/background_job_get_model.py +0 -0
  248. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/background_job_state.py +0 -0
  249. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/background_job_type.py +0 -0
  250. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/boolean_changed_field_view_model.py +0 -0
  251. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/boolean_nullable_changed_field_view_model.py +0 -0
  252. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/configuration_by_parameters_model.py +0 -0
  253. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/configuration_extraction_model.py +0 -0
  254. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/configuration_extraction_model_ids.py +0 -0
  255. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/configuration_extraction_model_project_ids.py +0 -0
  256. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/configuration_filter_model.py +0 -0
  257. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/configuration_model.py +0 -0
  258. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/configuration_post_model.py +0 -0
  259. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/configuration_put_model.py +0 -0
  260. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/configuration_select_model.py +0 -0
  261. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/configuration_select_model_extraction_model.py +0 -0
  262. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/configuration_select_model_filter.py +0 -0
  263. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/create_and_fill_by_configurations_request.py +0 -0
  264. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/create_configuration_request.py +0 -0
  265. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/create_parameter_request.py +0 -0
  266. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/create_project_request.py +0 -0
  267. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/create_projects_attribute_request.py +0 -0
  268. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/create_section_request.py +0 -0
  269. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/create_test_plan_request.py +0 -0
  270. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/create_work_item_request.py +0 -0
  271. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/custom_attribute_change_model.py +0 -0
  272. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/custom_attribute_get_model.py +0 -0
  273. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/custom_attribute_model.py +0 -0
  274. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/custom_attribute_option_model.py +0 -0
  275. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/custom_attribute_option_post_model.py +0 -0
  276. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/custom_attribute_post_model.py +0 -0
  277. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/custom_attribute_put_model.py +0 -0
  278. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/custom_attribute_search_query_model.py +0 -0
  279. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/custom_attribute_template_model.py +0 -0
  280. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/custom_attribute_template_post_model.py +0 -0
  281. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/custom_attribute_template_put_model.py +0 -0
  282. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/custom_attribute_template_search_query_model.py +0 -0
  283. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/custom_attribute_test_plan_project_relation_put_model.py +0 -0
  284. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/custom_attribute_types_enum.py +0 -0
  285. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/date_time_range_selector_model.py +0 -0
  286. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/deletion_state.py +0 -0
  287. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/external_link_model.py +0 -0
  288. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/failure_category_model.py +0 -0
  289. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/failure_class_model.py +0 -0
  290. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/failure_class_regex_model.py +0 -0
  291. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/filter_model.py +0 -0
  292. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/filter_model_data.py +0 -0
  293. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/flaky_bulk_model.py +0 -0
  294. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/flaky_bulk_model_autotest_select.py +0 -0
  295. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/get_xlsx_test_points_by_test_plan_model.py +0 -0
  296. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/global_custom_attribute_post_model.py +0 -0
  297. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/global_custom_attribute_update_model.py +0 -0
  298. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/global_search_item_result.py +0 -0
  299. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/global_search_request.py +0 -0
  300. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/global_search_response.py +0 -0
  301. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/guid_changed_field_view_model.py +0 -0
  302. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/guid_extraction_model.py +0 -0
  303. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/image_resize_type.py +0 -0
  304. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/int32_changed_field_view_model.py +0 -0
  305. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/int32_range_selector_model.py +0 -0
  306. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/int64_changed_field_view_model.py +0 -0
  307. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/int64_range_selector_model.py +0 -0
  308. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/iteration_model.py +0 -0
  309. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/iteration_put_model.py +0 -0
  310. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/label_post_model.py +0 -0
  311. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/label_short_model.py +0 -0
  312. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/last_test_result_model.py +0 -0
  313. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/link_model.py +0 -0
  314. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/link_post_model.py +0 -0
  315. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/link_put_model.py +0 -0
  316. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/link_short_model.py +0 -0
  317. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/link_type.py +0 -0
  318. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/move_request.py +0 -0
  319. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/named_entity_model.py +0 -0
  320. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/notification_model.py +0 -0
  321. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/notification_query_filter_model.py +0 -0
  322. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/notification_type_model.py +0 -0
  323. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/operation.py +0 -0
  324. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/parameter_filter_model.py +0 -0
  325. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/parameter_group_model.py +0 -0
  326. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/parameter_iteration_model.py +0 -0
  327. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/parameter_model.py +0 -0
  328. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/parameter_post_model.py +0 -0
  329. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/parameter_put_model.py +0 -0
  330. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/parameter_short_model.py +0 -0
  331. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/period_view_model.py +0 -0
  332. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/period_view_model_changed_field_view_model.py +0 -0
  333. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/problem_details.py +0 -0
  334. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/project_attributes_filter_model.py +0 -0
  335. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/project_custom_attribute_template_get_model.py +0 -0
  336. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/project_custom_attributes_templates_filter_model.py +0 -0
  337. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/project_extraction_model.py +0 -0
  338. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/project_model.py +0 -0
  339. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/project_post_model.py +0 -0
  340. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/project_put_model.py +0 -0
  341. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/project_select_model.py +0 -0
  342. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/project_shortest_model.py +0 -0
  343. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/project_test_plans_filter_model.py +0 -0
  344. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/project_type_model.py +0 -0
  345. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/projects_filter_model.py +0 -0
  346. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/projects_filter_model_autotests_count.py +0 -0
  347. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/projects_filter_model_checklists_count.py +0 -0
  348. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/projects_filter_model_created_date.py +0 -0
  349. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/projects_filter_model_shared_steps_count.py +0 -0
  350. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/projects_filter_model_test_cases_count.py +0 -0
  351. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/public_test_point_model.py +0 -0
  352. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/public_test_run_model.py +0 -0
  353. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/rename_request.py +0 -0
  354. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/request_type_model.py +0 -0
  355. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/search_attributes_in_project_request.py +0 -0
  356. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/search_auto_tests_query_includes_model.py +0 -0
  357. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/search_custom_attribute_template_get_model.py +0 -0
  358. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/search_webhooks_query_model.py +0 -0
  359. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/search_work_items_request.py +0 -0
  360. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/section_model.py +0 -0
  361. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/section_move_model.py +0 -0
  362. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/section_post_model.py +0 -0
  363. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/section_put_model.py +0 -0
  364. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/section_rename_model.py +0 -0
  365. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/section_shared_step.py +0 -0
  366. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/section_with_steps_model.py +0 -0
  367. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/set_of_attachment_ids.py +0 -0
  368. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/set_of_links.py +0 -0
  369. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/shared_step_change_view_model.py +0 -0
  370. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/shared_step_model.py +0 -0
  371. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/shared_step_reference_model.py +0 -0
  372. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/shared_step_reference_section_model.py +0 -0
  373. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/shared_step_reference_sections_query_filter_model.py +0 -0
  374. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/shared_step_reference_sections_query_filter_model_created_date.py +0 -0
  375. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/shared_step_reference_sections_query_filter_model_modified_date.py +0 -0
  376. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/shared_step_references_query_filter_model.py +0 -0
  377. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/shared_step_result_model.py +0 -0
  378. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/short_configuration.py +0 -0
  379. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/step_comment_model.py +0 -0
  380. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/step_model.py +0 -0
  381. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/step_post_model.py +0 -0
  382. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/step_put_model.py +0 -0
  383. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/step_result_model.py +0 -0
  384. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/string_array_changed_field_view_model.py +0 -0
  385. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/string_changed_field_view_model.py +0 -0
  386. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/string_changed_field_with_diffs_view_model.py +0 -0
  387. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/tag_extraction_model.py +0 -0
  388. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/tag_model.py +0 -0
  389. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/tag_post_model.py +0 -0
  390. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/tag_put_model.py +0 -0
  391. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/tag_select_model.py +0 -0
  392. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/tag_short_model.py +0 -0
  393. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/tags_filter_model.py +0 -0
  394. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/tags_filter_model_created_date.py +0 -0
  395. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_plan_change_model.py +0 -0
  396. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_plan_extraction_model.py +0 -0
  397. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_plan_group_by_status.py +0 -0
  398. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_plan_group_by_test_suite.py +0 -0
  399. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_plan_group_by_tester.py +0 -0
  400. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_plan_group_by_tester_and_status.py +0 -0
  401. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_plan_link.py +0 -0
  402. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_plan_model.py +0 -0
  403. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_plan_post_model.py +0 -0
  404. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_plan_put_model.py +0 -0
  405. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_plan_select_model.py +0 -0
  406. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_plan_short_model.py +0 -0
  407. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_plan_status_model.py +0 -0
  408. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_plan_with_analytic_model.py +0 -0
  409. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_plan_with_analytic_model_analytic.py +0 -0
  410. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_plan_with_test_suite_tree_model.py +0 -0
  411. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_point_analytic_result.py +0 -0
  412. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_point_by_test_suite_model.py +0 -0
  413. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_point_change_view_model.py +0 -0
  414. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_point_change_view_model_changed_field_view_model.py +0 -0
  415. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_point_filter_model_created_date.py +0 -0
  416. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_point_filter_model_duration.py +0 -0
  417. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_point_filter_model_modified_date.py +0 -0
  418. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_point_filter_model_work_item_created_date.py +0 -0
  419. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_point_filter_model_work_item_median_duration.py +0 -0
  420. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_point_filter_model_work_item_modified_date.py +0 -0
  421. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_point_related_to_test_result.py +0 -0
  422. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_point_result_model.py +0 -0
  423. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_point_select_model.py +0 -0
  424. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_point_selector.py +0 -0
  425. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_point_short_model.py +0 -0
  426. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_point_status.py +0 -0
  427. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_point_with_last_result_model.py +0 -0
  428. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_points_extraction_model.py +0 -0
  429. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_points_extraction_model_ids.py +0 -0
  430. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_result_change_view_model.py +0 -0
  431. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_result_change_view_model_changed_field_view_model.py +0 -0
  432. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_result_chronology_model.py +0 -0
  433. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_result_configuration.py +0 -0
  434. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_result_outcome.py +0 -0
  435. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_result_short_model.py +0 -0
  436. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_result_v2_get_model.py +0 -0
  437. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_result_v2_short_model.py +0 -0
  438. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_results_statistics_get_model.py +0 -0
  439. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_results_statistics_get_model_statuses.py +0 -0
  440. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_run_analytic_result_model.py +0 -0
  441. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_run_extraction_model.py +0 -0
  442. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_run_extraction_model_ids.py +0 -0
  443. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_run_fill_by_configurations_post_model.py +0 -0
  444. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_run_filter_model_auto_tests_count.py +0 -0
  445. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_run_filter_model_completed_date.py +0 -0
  446. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_run_filter_model_created_date.py +0 -0
  447. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_run_filter_model_started_date.py +0 -0
  448. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_run_group_by_failure_class_model.py +0 -0
  449. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_run_group_by_status_model.py +0 -0
  450. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_run_model.py +0 -0
  451. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_run_model_analytic.py +0 -0
  452. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_run_search_query_model.py +0 -0
  453. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_run_select_model.py +0 -0
  454. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_run_select_model_extraction_model.py +0 -0
  455. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_run_selection_model.py +0 -0
  456. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_run_short_get_model_statistics.py +0 -0
  457. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_run_short_model.py +0 -0
  458. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_run_state.py +0 -0
  459. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_run_statistics_statuses_get_model.py +0 -0
  460. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_run_test_results_partial_bulk_set_model.py +0 -0
  461. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_run_test_results_partial_bulk_set_model_selector.py +0 -0
  462. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_run_test_results_select_model.py +0 -0
  463. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_run_test_results_select_model_test_result_ids_extraction_model.py +0 -0
  464. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_run_update_multiple_model.py +0 -0
  465. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_run_v2_post_short_model.py +0 -0
  466. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_run_v2_put_model.py +0 -0
  467. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_suite_change_view_model.py +0 -0
  468. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_suite_change_view_model_changed_field_view_model.py +0 -0
  469. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_suite_type.py +0 -0
  470. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_suite_v2_get_model.py +0 -0
  471. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_suite_v2_post_model.py +0 -0
  472. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_suite_v2_put_model.py +0 -0
  473. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_suite_v2_tree_model.py +0 -0
  474. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_suite_with_children_model.py +0 -0
  475. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_suite_work_items_search_model.py +0 -0
  476. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_suite_work_items_search_model_duration.py +0 -0
  477. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/test_suite_work_items_search_model_median_duration.py +0 -0
  478. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/update_attachment_short_model.py +0 -0
  479. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/update_custom_attribute_test_plan_project_relations_request.py +0 -0
  480. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/update_link_short_model.py +0 -0
  481. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/update_parameter_request.py +0 -0
  482. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/update_project_request.py +0 -0
  483. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/update_projects_attribute_request.py +0 -0
  484. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/update_section_request.py +0 -0
  485. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/update_test_plan_request.py +0 -0
  486. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/update_work_item_request.py +0 -0
  487. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/user_rank_model.py +0 -0
  488. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/user_with_rank_model.py +0 -0
  489. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/user_with_rank_model_user_rank.py +0 -0
  490. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/validation_problem_details.py +0 -0
  491. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/web_hook_event_type.py +0 -0
  492. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/web_hook_event_type_model.py +0 -0
  493. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/web_hook_log_model.py +0 -0
  494. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/web_hook_model.py +0 -0
  495. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/web_hook_post_model.py +0 -0
  496. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/web_hook_test_model.py +0 -0
  497. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/webhook_response.py +0 -0
  498. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/webhook_variables_type.py +0 -0
  499. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_change_model.py +0 -0
  500. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_change_model_work_item_changed_fields.py +0 -0
  501. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_changed_attribute_view_model.py +0 -0
  502. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_changed_fields_view_model.py +0 -0
  503. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_changed_fields_view_model_attachments.py +0 -0
  504. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_changed_fields_view_model_auto_tests.py +0 -0
  505. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_changed_fields_view_model_duration.py +0 -0
  506. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_changed_fields_view_model_global_id.py +0 -0
  507. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_changed_fields_view_model_is_deleted.py +0 -0
  508. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_changed_fields_view_model_links.py +0 -0
  509. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_changed_fields_view_model_project_id.py +0 -0
  510. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_changed_fields_view_model_state.py +0 -0
  511. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_changed_fields_view_model_steps.py +0 -0
  512. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_changed_fields_view_model_tags.py +0 -0
  513. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_comment_model.py +0 -0
  514. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_comment_model_user.py +0 -0
  515. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_comment_post_model.py +0 -0
  516. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_comment_put_model.py +0 -0
  517. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_entity_types.py +0 -0
  518. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_extraction_model.py +0 -0
  519. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_extraction_model_ids.py +0 -0
  520. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_extraction_model_section_ids.py +0 -0
  521. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_filter_model.py +0 -0
  522. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_group_get_model.py +0 -0
  523. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_group_get_model_select_model.py +0 -0
  524. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_group_model.py +0 -0
  525. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_group_type.py +0 -0
  526. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_id_model.py +0 -0
  527. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_identifier_model.py +0 -0
  528. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_like_model.py +0 -0
  529. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_link_change_view_model.py +0 -0
  530. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_link_change_view_model_array_changed_field_view_model.py +0 -0
  531. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_local_filter_model.py +0 -0
  532. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_local_select_model.py +0 -0
  533. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_local_select_model_extraction_model.py +0 -0
  534. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_local_select_model_filter.py +0 -0
  535. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_model.py +0 -0
  536. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_move_post_model.py +0 -0
  537. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_post_model.py +0 -0
  538. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_priority_model.py +0 -0
  539. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_put_model.py +0 -0
  540. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_search_query_model.py +0 -0
  541. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_select_model.py +0 -0
  542. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_select_model_filter.py +0 -0
  543. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_short_model.py +0 -0
  544. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_state.py +0 -0
  545. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_states.py +0 -0
  546. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_step_change_view_model.py +0 -0
  547. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_step_change_view_model_array_changed_field_with_diffs_view_model.py +0 -0
  548. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_step_change_view_model_work_item.py +0 -0
  549. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model/work_item_version_model.py +0 -0
  550. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/model_utils.py +0 -0
  551. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client/rest.py +0 -0
  552. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client.egg-info/dependency_links.txt +0 -0
  553. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client.egg-info/requires.txt +0 -0
  554. {testit_api_client-4.1.0 → testit_api_client-4.2.0}/src/testit_api_client.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: testit-api-client
3
- Version: 4.1.0
3
+ Version: 4.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
@@ -33,6 +33,7 @@ Requires-Dist: python-dateutil
33
33
  | 4.6 | 3.5.0 |
34
34
  | 5.0 | 4.0.0 |
35
35
  | 5.1 | 4.1.0 |
36
+ | 5.2 | 4.2.0 |
36
37
 
37
38
  ## Installation & Usage
38
39
  ### pip install
@@ -85,6 +86,7 @@ Class | Method | HTTP request | Description
85
86
  ------------ | ------------- | ------------- | -------------
86
87
  *AttachmentsApi* | [**api_v2_attachments_id_delete**](docs/AttachmentsApi.md#api_v2_attachments_id_delete) | **DELETE** /api/v2/attachments/{id} | Delete attachment file
87
88
  *AttachmentsApi* | [**api_v2_attachments_id_get**](docs/AttachmentsApi.md#api_v2_attachments_id_get) | **GET** /api/v2/attachments/{id} | Download attachment file
89
+ *AttachmentsApi* | [**api_v2_attachments_id_metadata_get**](docs/AttachmentsApi.md#api_v2_attachments_id_metadata_get) | **GET** /api/v2/attachments/{id}/metadata | Get attachment metadata
88
90
  *AttachmentsApi* | [**api_v2_attachments_occupied_file_storage_size_get**](docs/AttachmentsApi.md#api_v2_attachments_occupied_file_storage_size_get) | **GET** /api/v2/attachments/occupiedFileStorageSize | Get size of attachments storage in bytes
89
91
  *AttachmentsApi* | [**api_v2_attachments_post**](docs/AttachmentsApi.md#api_v2_attachments_post) | **POST** /api/v2/attachments | Upload new attachment file
90
92
  *AutoTestsApi* | [**api_v2_auto_tests_flaky_bulk_post**](docs/AutoTestsApi.md#api_v2_auto_tests_flaky_bulk_post) | **POST** /api/v2/autoTests/flaky/bulk | Set \"Flaky\" status for multiple autotests
@@ -102,7 +104,6 @@ Class | Method | HTTP request | Description
102
104
  *AutoTestsApi* | [**get_auto_test_by_id**](docs/AutoTestsApi.md#get_auto_test_by_id) | **GET** /api/v2/autoTests/{id} | Get autotest by internal or global ID
103
105
  *AutoTestsApi* | [**get_auto_test_chronology**](docs/AutoTestsApi.md#get_auto_test_chronology) | **GET** /api/v2/autoTests/{id}/chronology | Get autotest chronology
104
106
  *AutoTestsApi* | [**get_test_runs**](docs/AutoTestsApi.md#get_test_runs) | **GET** /api/v2/autoTests/{id}/testRuns | Get completed tests runs for autotests
105
- *AutoTestsApi* | [**get_work_item_results**](docs/AutoTestsApi.md#get_work_item_results) | **GET** /api/v2/autoTests/{id}/testResultHistory |
106
107
  *AutoTestsApi* | [**get_work_items_linked_to_auto_test**](docs/AutoTestsApi.md#get_work_items_linked_to_auto_test) | **GET** /api/v2/autoTests/{id}/workItems | Get work items linked to autotest
107
108
  *AutoTestsApi* | [**link_auto_test_to_work_item**](docs/AutoTestsApi.md#link_auto_test_to_work_item) | **POST** /api/v2/autoTests/{id}/workItems | Link autotest with work items
108
109
  *AutoTestsApi* | [**update_auto_test**](docs/AutoTestsApi.md#update_auto_test) | **PUT** /api/v2/autoTests | Update autotest
@@ -125,6 +126,7 @@ Class | Method | HTTP request | Description
125
126
  *ConfigurationsApi* | [**api_v2_configurations_search_post**](docs/ConfigurationsApi.md#api_v2_configurations_search_post) | **POST** /api/v2/configurations/search | Search for configurations
126
127
  *ConfigurationsApi* | [**create_configuration**](docs/ConfigurationsApi.md#create_configuration) | **POST** /api/v2/configurations | Create Configuration
127
128
  *ConfigurationsApi* | [**get_configuration_by_id**](docs/ConfigurationsApi.md#get_configuration_by_id) | **GET** /api/v2/configurations/{id} | Get configuration by internal or global ID
129
+ *CustomAttributeTemplatesApi* | [**api_v2_custom_attributes_templates_exists_get**](docs/CustomAttributeTemplatesApi.md#api_v2_custom_attributes_templates_exists_get) | **GET** /api/v2/customAttributes/templates/exists |
128
130
  *CustomAttributeTemplatesApi* | [**api_v2_custom_attributes_templates_id_custom_attributes_exclude_post**](docs/CustomAttributeTemplatesApi.md#api_v2_custom_attributes_templates_id_custom_attributes_exclude_post) | **POST** /api/v2/customAttributes/templates/{id}/customAttributes/exclude | Exclude CustomAttributes from CustomAttributeTemplate
129
131
  *CustomAttributeTemplatesApi* | [**api_v2_custom_attributes_templates_id_custom_attributes_include_post**](docs/CustomAttributeTemplatesApi.md#api_v2_custom_attributes_templates_id_custom_attributes_include_post) | **POST** /api/v2/customAttributes/templates/{id}/customAttributes/include | Include CustomAttributes to CustomAttributeTemplate
130
132
  *CustomAttributeTemplatesApi* | [**api_v2_custom_attributes_templates_id_delete**](docs/CustomAttributeTemplatesApi.md#api_v2_custom_attributes_templates_id_delete) | **DELETE** /api/v2/customAttributes/templates/{id} | Delete CustomAttributeTemplate
@@ -133,6 +135,7 @@ Class | Method | HTTP request | Description
133
135
  *CustomAttributeTemplatesApi* | [**api_v2_custom_attributes_templates_post**](docs/CustomAttributeTemplatesApi.md#api_v2_custom_attributes_templates_post) | **POST** /api/v2/customAttributes/templates | Create CustomAttributeTemplate
134
136
  *CustomAttributeTemplatesApi* | [**api_v2_custom_attributes_templates_put**](docs/CustomAttributeTemplatesApi.md#api_v2_custom_attributes_templates_put) | **PUT** /api/v2/customAttributes/templates | Update custom attributes template
135
137
  *CustomAttributeTemplatesApi* | [**api_v2_custom_attributes_templates_search_post**](docs/CustomAttributeTemplatesApi.md#api_v2_custom_attributes_templates_search_post) | **POST** /api/v2/customAttributes/templates/search | Search CustomAttributeTemplates
138
+ *CustomAttributesApi* | [**api_v2_custom_attributes_exists_get**](docs/CustomAttributesApi.md#api_v2_custom_attributes_exists_get) | **GET** /api/v2/customAttributes/exists |
136
139
  *CustomAttributesApi* | [**api_v2_custom_attributes_global_id_delete**](docs/CustomAttributesApi.md#api_v2_custom_attributes_global_id_delete) | **DELETE** /api/v2/customAttributes/global/{id} | Delete global attribute
137
140
  *CustomAttributesApi* | [**api_v2_custom_attributes_global_id_put**](docs/CustomAttributesApi.md#api_v2_custom_attributes_global_id_put) | **PUT** /api/v2/customAttributes/global/{id} | Edit global attribute
138
141
  *CustomAttributesApi* | [**api_v2_custom_attributes_global_post**](docs/CustomAttributesApi.md#api_v2_custom_attributes_global_post) | **POST** /api/v2/customAttributes/global | Create global attribute
@@ -168,10 +171,9 @@ Class | Method | HTTP request | Description
168
171
  *ProjectAttributesApi* | [**search_attributes_in_project**](docs/ProjectAttributesApi.md#search_attributes_in_project) | **POST** /api/v2/projects/{projectId}/attributes/search | Search for attributes used in the project
169
172
  *ProjectAttributesApi* | [**update_projects_attribute**](docs/ProjectAttributesApi.md#update_projects_attribute) | **PUT** /api/v2/projects/{projectId}/attributes | Edit attribute of the project
170
173
  *ProjectConfigurationsApi* | [**get_configurations_by_project_id**](docs/ProjectConfigurationsApi.md#get_configurations_by_project_id) | **GET** /api/v2/projects/{projectId}/configurations | Get project configurations
171
- *ProjectImportApi* | [**background_import_to_existing_project**](docs/ProjectImportApi.md#background_import_to_existing_project) | **POST** /api/v2/projects/{projectId}/import/json | Import project from JSON file into existing project in background job
172
- *ProjectImportApi* | [**background_import_zip_to_existing_project**](docs/ProjectImportApi.md#background_import_zip_to_existing_project) | **POST** /api/v2/projects/{projectId}/import/zip | Import project from Zip file into existing project in background job
173
- *ProjectImportApi* | [**import_to_existing_project**](docs/ProjectImportApi.md#import_to_existing_project) | **POST** /api/v2/projects/{projectId}/import | Import project from JSON file into existing project
174
174
  *ProjectSectionsApi* | [**get_sections_by_project_id**](docs/ProjectSectionsApi.md#get_sections_by_project_id) | **GET** /api/v2/projects/{projectId}/sections | Get project sections
175
+ *ProjectSettingsApi* | [**api_v2_projects_project_id_settings_autotests_post**](docs/ProjectSettingsApi.md#api_v2_projects_project_id_settings_autotests_post) | **POST** /api/v2/projects/{projectId}/settings/autotests | Set autotest project settings.
176
+ *ProjectSettingsApi* | [**get_autotest_project_settings**](docs/ProjectSettingsApi.md#get_autotest_project_settings) | **GET** /api/v2/projects/{projectId}/settings/autotests | Get autotest project settings.
175
177
  *ProjectTestPlanAttributesApi* | [**create_custom_attribute_test_plan_project_relations**](docs/ProjectTestPlanAttributesApi.md#create_custom_attribute_test_plan_project_relations) | **POST** /api/v2/projects/{projectId}/testPlans/attributes | Add attributes to project's test plans
176
178
  *ProjectTestPlanAttributesApi* | [**delete_custom_attribute_test_plan_project_relations**](docs/ProjectTestPlanAttributesApi.md#delete_custom_attribute_test_plan_project_relations) | **DELETE** /api/v2/projects/{projectId}/testPlans/attributes/{attributeId} | Delete attribute from project's test plans
177
179
  *ProjectTestPlanAttributesApi* | [**get_custom_attribute_test_plan_project_relations**](docs/ProjectTestPlanAttributesApi.md#get_custom_attribute_test_plan_project_relations) | **GET** /api/v2/projects/{projectId}/testPlans/attributes | Get project's test plan attributes
@@ -205,9 +207,6 @@ Class | Method | HTTP request | Description
205
207
  *ProjectsApi* | [**api_v2_projects_purge_bulk_post**](docs/ProjectsApi.md#api_v2_projects_purge_bulk_post) | **POST** /api/v2/projects/purge/bulk | Purge multiple projects
206
208
  *ProjectsApi* | [**api_v2_projects_restore_bulk_post**](docs/ProjectsApi.md#api_v2_projects_restore_bulk_post) | **POST** /api/v2/projects/restore/bulk | Restore multiple projects
207
209
  *ProjectsApi* | [**api_v2_projects_search_post**](docs/ProjectsApi.md#api_v2_projects_search_post) | **POST** /api/v2/projects/search | Search for projects
208
- *ProjectsApi* | [**background_import_project**](docs/ProjectsApi.md#background_import_project) | **POST** /api/v2/projects/import/json | Import project from JSON file in background job
209
- *ProjectsApi* | [**background_import_zip_project**](docs/ProjectsApi.md#background_import_zip_project) | **POST** /api/v2/projects/import/zip | Import project from Zip file in background job
210
- *ProjectsApi* | [**call_import**](docs/ProjectsApi.md#call_import) | **POST** /api/v2/projects/import | Import project from JSON file
211
210
  *ProjectsApi* | [**create_project**](docs/ProjectsApi.md#create_project) | **POST** /api/v2/projects | Create project
212
211
  *ProjectsApi* | [**delete_project_auto_tests**](docs/ProjectsApi.md#delete_project_auto_tests) | **DELETE** /api/v2/projects/{id}/autoTests | Delete all autotests from project
213
212
  *ProjectsApi* | [**get_all_projects**](docs/ProjectsApi.md#get_all_projects) | **GET** /api/v2/projects | Get all projects
@@ -242,6 +241,7 @@ Class | Method | HTTP request | Description
242
241
  *TestPlansApi* | [**api_v2_test_plans_id_history_get**](docs/TestPlansApi.md#api_v2_test_plans_id_history_get) | **GET** /api/v2/testPlans/{id}/history | Get TestPlan history
243
242
  *TestPlansApi* | [**api_v2_test_plans_id_links_get**](docs/TestPlansApi.md#api_v2_test_plans_id_links_get) | **GET** /api/v2/testPlans/{id}/links | Get Links of TestPlan
244
243
  *TestPlansApi* | [**api_v2_test_plans_id_patch**](docs/TestPlansApi.md#api_v2_test_plans_id_patch) | **PATCH** /api/v2/testPlans/{id} | Patch test plan
244
+ *TestPlansApi* | [**api_v2_test_plans_id_summaries_get**](docs/TestPlansApi.md#api_v2_test_plans_id_summaries_get) | **GET** /api/v2/testPlans/{id}/summaries | Get summary by TestPlan
245
245
  *TestPlansApi* | [**api_v2_test_plans_id_test_points_last_results_get**](docs/TestPlansApi.md#api_v2_test_plans_id_test_points_last_results_get) | **GET** /api/v2/testPlans/{id}/testPoints/lastResults | Get TestPoints with last result from TestPlan
246
246
  *TestPlansApi* | [**api_v2_test_plans_id_test_points_reset_post**](docs/TestPlansApi.md#api_v2_test_plans_id_test_points_reset_post) | **POST** /api/v2/testPlans/{id}/testPoints/reset | Reset TestPoints status of TestPlan
247
247
  *TestPlansApi* | [**api_v2_test_plans_id_test_points_tester_delete**](docs/TestPlansApi.md#api_v2_test_plans_id_test_points_tester_delete) | **DELETE** /api/v2/testPlans/{id}/testPoints/tester | Unassign users from multiple test points
@@ -266,11 +266,14 @@ Class | Method | HTTP request | Description
266
266
  *TestPointsApi* | [**api_v2_test_points_id_work_item_get**](docs/TestPointsApi.md#api_v2_test_points_id_work_item_get) | **GET** /api/v2/testPoints/{id}/workItem | Get work item represented by test point
267
267
  *TestPointsApi* | [**api_v2_test_points_search_id_post**](docs/TestPointsApi.md#api_v2_test_points_search_id_post) | **POST** /api/v2/testPoints/search/id | Search for test points and extract IDs only
268
268
  *TestPointsApi* | [**api_v2_test_points_search_post**](docs/TestPointsApi.md#api_v2_test_points_search_post) | **POST** /api/v2/testPoints/search | Search for test points
269
+ *TestResultsApi* | [**api_v2_test_results_external_projects_external_project_id_defects_external_forms_post**](docs/TestResultsApi.md#api_v2_test_results_external_projects_external_project_id_defects_external_forms_post) | **POST** /api/v2/testResults/external-projects/{externalProjectId}/defects/external-forms |
270
+ *TestResultsApi* | [**api_v2_test_results_external_projects_external_project_id_defects_post**](docs/TestResultsApi.md#api_v2_test_results_external_projects_external_project_id_defects_post) | **POST** /api/v2/testResults/external-projects/{externalProjectId}/defects |
269
271
  *TestResultsApi* | [**api_v2_test_results_id_aggregated_get**](docs/TestResultsApi.md#api_v2_test_results_id_aggregated_get) | **GET** /api/v2/testResults/{id}/aggregated | Get test result by ID aggregated with previous results
270
272
  *TestResultsApi* | [**api_v2_test_results_id_attachments_attachment_id_put**](docs/TestResultsApi.md#api_v2_test_results_id_attachments_attachment_id_put) | **PUT** /api/v2/testResults/{id}/attachments/{attachmentId} | Attach file to the test result
271
273
  *TestResultsApi* | [**api_v2_test_results_id_attachments_info_get**](docs/TestResultsApi.md#api_v2_test_results_id_attachments_info_get) | **GET** /api/v2/testResults/{id}/attachments/info | Get test result attachments meta-information
272
274
  *TestResultsApi* | [**api_v2_test_results_id_get**](docs/TestResultsApi.md#api_v2_test_results_id_get) | **GET** /api/v2/testResults/{id} | Get test result by ID
273
275
  *TestResultsApi* | [**api_v2_test_results_id_put**](docs/TestResultsApi.md#api_v2_test_results_id_put) | **PUT** /api/v2/testResults/{id} | Edit test result by ID
276
+ *TestResultsApi* | [**api_v2_test_results_id_reruns_get**](docs/TestResultsApi.md#api_v2_test_results_id_reruns_get) | **GET** /api/v2/testResults/{id}/reruns | Get reruns
274
277
  *TestResultsApi* | [**api_v2_test_results_search_post**](docs/TestResultsApi.md#api_v2_test_results_search_post) | **POST** /api/v2/testResults/search | Search for test results
275
278
  *TestResultsApi* | [**api_v2_test_results_statistics_filter_post**](docs/TestResultsApi.md#api_v2_test_results_statistics_filter_post) | **POST** /api/v2/testResults/statistics/filter | Search for test results and extract statistics
276
279
  *TestResultsApi* | [**create_attachment**](docs/TestResultsApi.md#create_attachment) | **POST** /api/v2/testResults/{id}/attachments | Upload and link attachment to TestResult
@@ -279,8 +282,10 @@ Class | Method | HTTP request | Description
279
282
  *TestResultsApi* | [**get_attachment**](docs/TestResultsApi.md#get_attachment) | **GET** /api/v2/testResults/{id}/attachments/{attachmentId}/info | Get Metadata of TestResult's attachment
280
283
  *TestResultsApi* | [**get_attachments**](docs/TestResultsApi.md#get_attachments) | **GET** /api/v2/testResults/{id}/attachments | Get all attachments of TestResult
281
284
  *TestRunsApi* | [**api_v2_test_runs_delete**](docs/TestRunsApi.md#api_v2_test_runs_delete) | **DELETE** /api/v2/testRuns | Delete multiple test runs
285
+ *TestRunsApi* | [**api_v2_test_runs_id_auto_tests_namespaces_get**](docs/TestRunsApi.md#api_v2_test_runs_id_auto_tests_namespaces_get) | **GET** /api/v2/testRuns/{id}/autoTestsNamespaces | Get autotest classes and namespaces in test run
282
286
  *TestRunsApi* | [**api_v2_test_runs_id_delete**](docs/TestRunsApi.md#api_v2_test_runs_id_delete) | **DELETE** /api/v2/testRuns/{id} | Delete test run
283
287
  *TestRunsApi* | [**api_v2_test_runs_id_purge_post**](docs/TestRunsApi.md#api_v2_test_runs_id_purge_post) | **POST** /api/v2/testRuns/{id}/purge | Permanently delete test run from archive
288
+ *TestRunsApi* | [**api_v2_test_runs_id_reruns_post**](docs/TestRunsApi.md#api_v2_test_runs_id_reruns_post) | **POST** /api/v2/testRuns/{id}/reruns | Manual autotests rerun in test run
284
289
  *TestRunsApi* | [**api_v2_test_runs_id_restore_post**](docs/TestRunsApi.md#api_v2_test_runs_id_restore_post) | **POST** /api/v2/testRuns/{id}/restore | Restore test run from the archive
285
290
  *TestRunsApi* | [**api_v2_test_runs_id_statistics_filter_post**](docs/TestRunsApi.md#api_v2_test_runs_id_statistics_filter_post) | **POST** /api/v2/testRuns/{id}/statistics/filter | Search for the test run test results and build statistics
286
291
  *TestRunsApi* | [**api_v2_test_runs_id_test_points_results_get**](docs/TestRunsApi.md#api_v2_test_runs_id_test_points_results_get) | **GET** /api/v2/testRuns/{id}/testPoints/results | Get test results from the test run grouped by test points
@@ -313,11 +318,14 @@ Class | Method | HTTP request | Description
313
318
  *TestSuitesApi* | [**get_test_suite_by_id**](docs/TestSuitesApi.md#get_test_suite_by_id) | **GET** /api/v2/testSuites/{id} | Get TestSuite by Id
314
319
  *TestSuitesApi* | [**search_work_items**](docs/TestSuitesApi.md#search_work_items) | **POST** /api/v2/testSuites/{id}/workItems/search | Search WorkItems
315
320
  *TestSuitesApi* | [**set_configurations_by_test_suite_id**](docs/TestSuitesApi.md#set_configurations_by_test_suite_id) | **POST** /api/v2/testSuites/{id}/configurations | Set Configurations By TestSuite Id
321
+ *UsersApi* | [**api_v2_users_exists_get**](docs/UsersApi.md#api_v2_users_exists_get) | **GET** /api/v2/users/exists |
322
+ *WebhooksApi* | [**api_v2_webhooks_delete**](docs/WebhooksApi.md#api_v2_webhooks_delete) | **DELETE** /api/v2/webhooks |
316
323
  *WebhooksApi* | [**api_v2_webhooks_get**](docs/WebhooksApi.md#api_v2_webhooks_get) | **GET** /api/v2/webhooks | Get all webhooks
317
324
  *WebhooksApi* | [**api_v2_webhooks_id_delete**](docs/WebhooksApi.md#api_v2_webhooks_id_delete) | **DELETE** /api/v2/webhooks/{id} | Delete webhook by ID
318
325
  *WebhooksApi* | [**api_v2_webhooks_id_get**](docs/WebhooksApi.md#api_v2_webhooks_id_get) | **GET** /api/v2/webhooks/{id} | Get webhook by ID
319
326
  *WebhooksApi* | [**api_v2_webhooks_id_put**](docs/WebhooksApi.md#api_v2_webhooks_id_put) | **PUT** /api/v2/webhooks/{id} | Edit webhook by ID
320
327
  *WebhooksApi* | [**api_v2_webhooks_post**](docs/WebhooksApi.md#api_v2_webhooks_post) | **POST** /api/v2/webhooks | Create webhook
328
+ *WebhooksApi* | [**api_v2_webhooks_put**](docs/WebhooksApi.md#api_v2_webhooks_put) | **PUT** /api/v2/webhooks |
321
329
  *WebhooksApi* | [**api_v2_webhooks_search_post**](docs/WebhooksApi.md#api_v2_webhooks_search_post) | **POST** /api/v2/webhooks/search | Search for webhooks
322
330
  *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
323
331
  *WebhooksApi* | [**api_v2_webhooks_test_post**](docs/WebhooksApi.md#api_v2_webhooks_test_post) | **POST** /api/v2/webhooks/test | Test webhook's url
@@ -352,6 +360,7 @@ Class | Method | HTTP request | Description
352
360
  *WorkItemsCommentsApi* | [**api_v2_work_items_comments_comment_id_delete**](docs/WorkItemsCommentsApi.md#api_v2_work_items_comments_comment_id_delete) | **DELETE** /api/v2/workItems/comments/{commentId} | Delete WorkItem comment
353
361
  *WorkItemsCommentsApi* | [**api_v2_work_items_comments_post**](docs/WorkItemsCommentsApi.md#api_v2_work_items_comments_post) | **POST** /api/v2/workItems/comments | Create WorkItem comment
354
362
  *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
363
+ *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
355
364
  *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
356
365
 
357
366
 
@@ -20,6 +20,7 @@
20
20
  | 4.6 | 3.5.0 |
21
21
  | 5.0 | 4.0.0 |
22
22
  | 5.1 | 4.1.0 |
23
+ | 5.2 | 4.2.0 |
23
24
 
24
25
  ## Installation & Usage
25
26
  ### pip install
@@ -72,6 +73,7 @@ Class | Method | HTTP request | Description
72
73
  ------------ | ------------- | ------------- | -------------
73
74
  *AttachmentsApi* | [**api_v2_attachments_id_delete**](docs/AttachmentsApi.md#api_v2_attachments_id_delete) | **DELETE** /api/v2/attachments/{id} | Delete attachment file
74
75
  *AttachmentsApi* | [**api_v2_attachments_id_get**](docs/AttachmentsApi.md#api_v2_attachments_id_get) | **GET** /api/v2/attachments/{id} | Download attachment file
76
+ *AttachmentsApi* | [**api_v2_attachments_id_metadata_get**](docs/AttachmentsApi.md#api_v2_attachments_id_metadata_get) | **GET** /api/v2/attachments/{id}/metadata | Get attachment metadata
75
77
  *AttachmentsApi* | [**api_v2_attachments_occupied_file_storage_size_get**](docs/AttachmentsApi.md#api_v2_attachments_occupied_file_storage_size_get) | **GET** /api/v2/attachments/occupiedFileStorageSize | Get size of attachments storage in bytes
76
78
  *AttachmentsApi* | [**api_v2_attachments_post**](docs/AttachmentsApi.md#api_v2_attachments_post) | **POST** /api/v2/attachments | Upload new attachment file
77
79
  *AutoTestsApi* | [**api_v2_auto_tests_flaky_bulk_post**](docs/AutoTestsApi.md#api_v2_auto_tests_flaky_bulk_post) | **POST** /api/v2/autoTests/flaky/bulk | Set \"Flaky\" status for multiple autotests
@@ -89,7 +91,6 @@ Class | Method | HTTP request | Description
89
91
  *AutoTestsApi* | [**get_auto_test_by_id**](docs/AutoTestsApi.md#get_auto_test_by_id) | **GET** /api/v2/autoTests/{id} | Get autotest by internal or global ID
90
92
  *AutoTestsApi* | [**get_auto_test_chronology**](docs/AutoTestsApi.md#get_auto_test_chronology) | **GET** /api/v2/autoTests/{id}/chronology | Get autotest chronology
91
93
  *AutoTestsApi* | [**get_test_runs**](docs/AutoTestsApi.md#get_test_runs) | **GET** /api/v2/autoTests/{id}/testRuns | Get completed tests runs for autotests
92
- *AutoTestsApi* | [**get_work_item_results**](docs/AutoTestsApi.md#get_work_item_results) | **GET** /api/v2/autoTests/{id}/testResultHistory |
93
94
  *AutoTestsApi* | [**get_work_items_linked_to_auto_test**](docs/AutoTestsApi.md#get_work_items_linked_to_auto_test) | **GET** /api/v2/autoTests/{id}/workItems | Get work items linked to autotest
94
95
  *AutoTestsApi* | [**link_auto_test_to_work_item**](docs/AutoTestsApi.md#link_auto_test_to_work_item) | **POST** /api/v2/autoTests/{id}/workItems | Link autotest with work items
95
96
  *AutoTestsApi* | [**update_auto_test**](docs/AutoTestsApi.md#update_auto_test) | **PUT** /api/v2/autoTests | Update autotest
@@ -112,6 +113,7 @@ Class | Method | HTTP request | Description
112
113
  *ConfigurationsApi* | [**api_v2_configurations_search_post**](docs/ConfigurationsApi.md#api_v2_configurations_search_post) | **POST** /api/v2/configurations/search | Search for configurations
113
114
  *ConfigurationsApi* | [**create_configuration**](docs/ConfigurationsApi.md#create_configuration) | **POST** /api/v2/configurations | Create Configuration
114
115
  *ConfigurationsApi* | [**get_configuration_by_id**](docs/ConfigurationsApi.md#get_configuration_by_id) | **GET** /api/v2/configurations/{id} | Get configuration by internal or global ID
116
+ *CustomAttributeTemplatesApi* | [**api_v2_custom_attributes_templates_exists_get**](docs/CustomAttributeTemplatesApi.md#api_v2_custom_attributes_templates_exists_get) | **GET** /api/v2/customAttributes/templates/exists |
115
117
  *CustomAttributeTemplatesApi* | [**api_v2_custom_attributes_templates_id_custom_attributes_exclude_post**](docs/CustomAttributeTemplatesApi.md#api_v2_custom_attributes_templates_id_custom_attributes_exclude_post) | **POST** /api/v2/customAttributes/templates/{id}/customAttributes/exclude | Exclude CustomAttributes from CustomAttributeTemplate
116
118
  *CustomAttributeTemplatesApi* | [**api_v2_custom_attributes_templates_id_custom_attributes_include_post**](docs/CustomAttributeTemplatesApi.md#api_v2_custom_attributes_templates_id_custom_attributes_include_post) | **POST** /api/v2/customAttributes/templates/{id}/customAttributes/include | Include CustomAttributes to CustomAttributeTemplate
117
119
  *CustomAttributeTemplatesApi* | [**api_v2_custom_attributes_templates_id_delete**](docs/CustomAttributeTemplatesApi.md#api_v2_custom_attributes_templates_id_delete) | **DELETE** /api/v2/customAttributes/templates/{id} | Delete CustomAttributeTemplate
@@ -120,6 +122,7 @@ Class | Method | HTTP request | Description
120
122
  *CustomAttributeTemplatesApi* | [**api_v2_custom_attributes_templates_post**](docs/CustomAttributeTemplatesApi.md#api_v2_custom_attributes_templates_post) | **POST** /api/v2/customAttributes/templates | Create CustomAttributeTemplate
121
123
  *CustomAttributeTemplatesApi* | [**api_v2_custom_attributes_templates_put**](docs/CustomAttributeTemplatesApi.md#api_v2_custom_attributes_templates_put) | **PUT** /api/v2/customAttributes/templates | Update custom attributes template
122
124
  *CustomAttributeTemplatesApi* | [**api_v2_custom_attributes_templates_search_post**](docs/CustomAttributeTemplatesApi.md#api_v2_custom_attributes_templates_search_post) | **POST** /api/v2/customAttributes/templates/search | Search CustomAttributeTemplates
125
+ *CustomAttributesApi* | [**api_v2_custom_attributes_exists_get**](docs/CustomAttributesApi.md#api_v2_custom_attributes_exists_get) | **GET** /api/v2/customAttributes/exists |
123
126
  *CustomAttributesApi* | [**api_v2_custom_attributes_global_id_delete**](docs/CustomAttributesApi.md#api_v2_custom_attributes_global_id_delete) | **DELETE** /api/v2/customAttributes/global/{id} | Delete global attribute
124
127
  *CustomAttributesApi* | [**api_v2_custom_attributes_global_id_put**](docs/CustomAttributesApi.md#api_v2_custom_attributes_global_id_put) | **PUT** /api/v2/customAttributes/global/{id} | Edit global attribute
125
128
  *CustomAttributesApi* | [**api_v2_custom_attributes_global_post**](docs/CustomAttributesApi.md#api_v2_custom_attributes_global_post) | **POST** /api/v2/customAttributes/global | Create global attribute
@@ -155,10 +158,9 @@ Class | Method | HTTP request | Description
155
158
  *ProjectAttributesApi* | [**search_attributes_in_project**](docs/ProjectAttributesApi.md#search_attributes_in_project) | **POST** /api/v2/projects/{projectId}/attributes/search | Search for attributes used in the project
156
159
  *ProjectAttributesApi* | [**update_projects_attribute**](docs/ProjectAttributesApi.md#update_projects_attribute) | **PUT** /api/v2/projects/{projectId}/attributes | Edit attribute of the project
157
160
  *ProjectConfigurationsApi* | [**get_configurations_by_project_id**](docs/ProjectConfigurationsApi.md#get_configurations_by_project_id) | **GET** /api/v2/projects/{projectId}/configurations | Get project configurations
158
- *ProjectImportApi* | [**background_import_to_existing_project**](docs/ProjectImportApi.md#background_import_to_existing_project) | **POST** /api/v2/projects/{projectId}/import/json | Import project from JSON file into existing project in background job
159
- *ProjectImportApi* | [**background_import_zip_to_existing_project**](docs/ProjectImportApi.md#background_import_zip_to_existing_project) | **POST** /api/v2/projects/{projectId}/import/zip | Import project from Zip file into existing project in background job
160
- *ProjectImportApi* | [**import_to_existing_project**](docs/ProjectImportApi.md#import_to_existing_project) | **POST** /api/v2/projects/{projectId}/import | Import project from JSON file into existing project
161
161
  *ProjectSectionsApi* | [**get_sections_by_project_id**](docs/ProjectSectionsApi.md#get_sections_by_project_id) | **GET** /api/v2/projects/{projectId}/sections | Get project sections
162
+ *ProjectSettingsApi* | [**api_v2_projects_project_id_settings_autotests_post**](docs/ProjectSettingsApi.md#api_v2_projects_project_id_settings_autotests_post) | **POST** /api/v2/projects/{projectId}/settings/autotests | Set autotest project settings.
163
+ *ProjectSettingsApi* | [**get_autotest_project_settings**](docs/ProjectSettingsApi.md#get_autotest_project_settings) | **GET** /api/v2/projects/{projectId}/settings/autotests | Get autotest project settings.
162
164
  *ProjectTestPlanAttributesApi* | [**create_custom_attribute_test_plan_project_relations**](docs/ProjectTestPlanAttributesApi.md#create_custom_attribute_test_plan_project_relations) | **POST** /api/v2/projects/{projectId}/testPlans/attributes | Add attributes to project's test plans
163
165
  *ProjectTestPlanAttributesApi* | [**delete_custom_attribute_test_plan_project_relations**](docs/ProjectTestPlanAttributesApi.md#delete_custom_attribute_test_plan_project_relations) | **DELETE** /api/v2/projects/{projectId}/testPlans/attributes/{attributeId} | Delete attribute from project's test plans
164
166
  *ProjectTestPlanAttributesApi* | [**get_custom_attribute_test_plan_project_relations**](docs/ProjectTestPlanAttributesApi.md#get_custom_attribute_test_plan_project_relations) | **GET** /api/v2/projects/{projectId}/testPlans/attributes | Get project's test plan attributes
@@ -192,9 +194,6 @@ Class | Method | HTTP request | Description
192
194
  *ProjectsApi* | [**api_v2_projects_purge_bulk_post**](docs/ProjectsApi.md#api_v2_projects_purge_bulk_post) | **POST** /api/v2/projects/purge/bulk | Purge multiple projects
193
195
  *ProjectsApi* | [**api_v2_projects_restore_bulk_post**](docs/ProjectsApi.md#api_v2_projects_restore_bulk_post) | **POST** /api/v2/projects/restore/bulk | Restore multiple projects
194
196
  *ProjectsApi* | [**api_v2_projects_search_post**](docs/ProjectsApi.md#api_v2_projects_search_post) | **POST** /api/v2/projects/search | Search for projects
195
- *ProjectsApi* | [**background_import_project**](docs/ProjectsApi.md#background_import_project) | **POST** /api/v2/projects/import/json | Import project from JSON file in background job
196
- *ProjectsApi* | [**background_import_zip_project**](docs/ProjectsApi.md#background_import_zip_project) | **POST** /api/v2/projects/import/zip | Import project from Zip file in background job
197
- *ProjectsApi* | [**call_import**](docs/ProjectsApi.md#call_import) | **POST** /api/v2/projects/import | Import project from JSON file
198
197
  *ProjectsApi* | [**create_project**](docs/ProjectsApi.md#create_project) | **POST** /api/v2/projects | Create project
199
198
  *ProjectsApi* | [**delete_project_auto_tests**](docs/ProjectsApi.md#delete_project_auto_tests) | **DELETE** /api/v2/projects/{id}/autoTests | Delete all autotests from project
200
199
  *ProjectsApi* | [**get_all_projects**](docs/ProjectsApi.md#get_all_projects) | **GET** /api/v2/projects | Get all projects
@@ -229,6 +228,7 @@ Class | Method | HTTP request | Description
229
228
  *TestPlansApi* | [**api_v2_test_plans_id_history_get**](docs/TestPlansApi.md#api_v2_test_plans_id_history_get) | **GET** /api/v2/testPlans/{id}/history | Get TestPlan history
230
229
  *TestPlansApi* | [**api_v2_test_plans_id_links_get**](docs/TestPlansApi.md#api_v2_test_plans_id_links_get) | **GET** /api/v2/testPlans/{id}/links | Get Links of TestPlan
231
230
  *TestPlansApi* | [**api_v2_test_plans_id_patch**](docs/TestPlansApi.md#api_v2_test_plans_id_patch) | **PATCH** /api/v2/testPlans/{id} | Patch test plan
231
+ *TestPlansApi* | [**api_v2_test_plans_id_summaries_get**](docs/TestPlansApi.md#api_v2_test_plans_id_summaries_get) | **GET** /api/v2/testPlans/{id}/summaries | Get summary by TestPlan
232
232
  *TestPlansApi* | [**api_v2_test_plans_id_test_points_last_results_get**](docs/TestPlansApi.md#api_v2_test_plans_id_test_points_last_results_get) | **GET** /api/v2/testPlans/{id}/testPoints/lastResults | Get TestPoints with last result from TestPlan
233
233
  *TestPlansApi* | [**api_v2_test_plans_id_test_points_reset_post**](docs/TestPlansApi.md#api_v2_test_plans_id_test_points_reset_post) | **POST** /api/v2/testPlans/{id}/testPoints/reset | Reset TestPoints status of TestPlan
234
234
  *TestPlansApi* | [**api_v2_test_plans_id_test_points_tester_delete**](docs/TestPlansApi.md#api_v2_test_plans_id_test_points_tester_delete) | **DELETE** /api/v2/testPlans/{id}/testPoints/tester | Unassign users from multiple test points
@@ -253,11 +253,14 @@ Class | Method | HTTP request | Description
253
253
  *TestPointsApi* | [**api_v2_test_points_id_work_item_get**](docs/TestPointsApi.md#api_v2_test_points_id_work_item_get) | **GET** /api/v2/testPoints/{id}/workItem | Get work item represented by test point
254
254
  *TestPointsApi* | [**api_v2_test_points_search_id_post**](docs/TestPointsApi.md#api_v2_test_points_search_id_post) | **POST** /api/v2/testPoints/search/id | Search for test points and extract IDs only
255
255
  *TestPointsApi* | [**api_v2_test_points_search_post**](docs/TestPointsApi.md#api_v2_test_points_search_post) | **POST** /api/v2/testPoints/search | Search for test points
256
+ *TestResultsApi* | [**api_v2_test_results_external_projects_external_project_id_defects_external_forms_post**](docs/TestResultsApi.md#api_v2_test_results_external_projects_external_project_id_defects_external_forms_post) | **POST** /api/v2/testResults/external-projects/{externalProjectId}/defects/external-forms |
257
+ *TestResultsApi* | [**api_v2_test_results_external_projects_external_project_id_defects_post**](docs/TestResultsApi.md#api_v2_test_results_external_projects_external_project_id_defects_post) | **POST** /api/v2/testResults/external-projects/{externalProjectId}/defects |
256
258
  *TestResultsApi* | [**api_v2_test_results_id_aggregated_get**](docs/TestResultsApi.md#api_v2_test_results_id_aggregated_get) | **GET** /api/v2/testResults/{id}/aggregated | Get test result by ID aggregated with previous results
257
259
  *TestResultsApi* | [**api_v2_test_results_id_attachments_attachment_id_put**](docs/TestResultsApi.md#api_v2_test_results_id_attachments_attachment_id_put) | **PUT** /api/v2/testResults/{id}/attachments/{attachmentId} | Attach file to the test result
258
260
  *TestResultsApi* | [**api_v2_test_results_id_attachments_info_get**](docs/TestResultsApi.md#api_v2_test_results_id_attachments_info_get) | **GET** /api/v2/testResults/{id}/attachments/info | Get test result attachments meta-information
259
261
  *TestResultsApi* | [**api_v2_test_results_id_get**](docs/TestResultsApi.md#api_v2_test_results_id_get) | **GET** /api/v2/testResults/{id} | Get test result by ID
260
262
  *TestResultsApi* | [**api_v2_test_results_id_put**](docs/TestResultsApi.md#api_v2_test_results_id_put) | **PUT** /api/v2/testResults/{id} | Edit test result by ID
263
+ *TestResultsApi* | [**api_v2_test_results_id_reruns_get**](docs/TestResultsApi.md#api_v2_test_results_id_reruns_get) | **GET** /api/v2/testResults/{id}/reruns | Get reruns
261
264
  *TestResultsApi* | [**api_v2_test_results_search_post**](docs/TestResultsApi.md#api_v2_test_results_search_post) | **POST** /api/v2/testResults/search | Search for test results
262
265
  *TestResultsApi* | [**api_v2_test_results_statistics_filter_post**](docs/TestResultsApi.md#api_v2_test_results_statistics_filter_post) | **POST** /api/v2/testResults/statistics/filter | Search for test results and extract statistics
263
266
  *TestResultsApi* | [**create_attachment**](docs/TestResultsApi.md#create_attachment) | **POST** /api/v2/testResults/{id}/attachments | Upload and link attachment to TestResult
@@ -266,8 +269,10 @@ Class | Method | HTTP request | Description
266
269
  *TestResultsApi* | [**get_attachment**](docs/TestResultsApi.md#get_attachment) | **GET** /api/v2/testResults/{id}/attachments/{attachmentId}/info | Get Metadata of TestResult's attachment
267
270
  *TestResultsApi* | [**get_attachments**](docs/TestResultsApi.md#get_attachments) | **GET** /api/v2/testResults/{id}/attachments | Get all attachments of TestResult
268
271
  *TestRunsApi* | [**api_v2_test_runs_delete**](docs/TestRunsApi.md#api_v2_test_runs_delete) | **DELETE** /api/v2/testRuns | Delete multiple test runs
272
+ *TestRunsApi* | [**api_v2_test_runs_id_auto_tests_namespaces_get**](docs/TestRunsApi.md#api_v2_test_runs_id_auto_tests_namespaces_get) | **GET** /api/v2/testRuns/{id}/autoTestsNamespaces | Get autotest classes and namespaces in test run
269
273
  *TestRunsApi* | [**api_v2_test_runs_id_delete**](docs/TestRunsApi.md#api_v2_test_runs_id_delete) | **DELETE** /api/v2/testRuns/{id} | Delete test run
270
274
  *TestRunsApi* | [**api_v2_test_runs_id_purge_post**](docs/TestRunsApi.md#api_v2_test_runs_id_purge_post) | **POST** /api/v2/testRuns/{id}/purge | Permanently delete test run from archive
275
+ *TestRunsApi* | [**api_v2_test_runs_id_reruns_post**](docs/TestRunsApi.md#api_v2_test_runs_id_reruns_post) | **POST** /api/v2/testRuns/{id}/reruns | Manual autotests rerun in test run
271
276
  *TestRunsApi* | [**api_v2_test_runs_id_restore_post**](docs/TestRunsApi.md#api_v2_test_runs_id_restore_post) | **POST** /api/v2/testRuns/{id}/restore | Restore test run from the archive
272
277
  *TestRunsApi* | [**api_v2_test_runs_id_statistics_filter_post**](docs/TestRunsApi.md#api_v2_test_runs_id_statistics_filter_post) | **POST** /api/v2/testRuns/{id}/statistics/filter | Search for the test run test results and build statistics
273
278
  *TestRunsApi* | [**api_v2_test_runs_id_test_points_results_get**](docs/TestRunsApi.md#api_v2_test_runs_id_test_points_results_get) | **GET** /api/v2/testRuns/{id}/testPoints/results | Get test results from the test run grouped by test points
@@ -300,11 +305,14 @@ Class | Method | HTTP request | Description
300
305
  *TestSuitesApi* | [**get_test_suite_by_id**](docs/TestSuitesApi.md#get_test_suite_by_id) | **GET** /api/v2/testSuites/{id} | Get TestSuite by Id
301
306
  *TestSuitesApi* | [**search_work_items**](docs/TestSuitesApi.md#search_work_items) | **POST** /api/v2/testSuites/{id}/workItems/search | Search WorkItems
302
307
  *TestSuitesApi* | [**set_configurations_by_test_suite_id**](docs/TestSuitesApi.md#set_configurations_by_test_suite_id) | **POST** /api/v2/testSuites/{id}/configurations | Set Configurations By TestSuite Id
308
+ *UsersApi* | [**api_v2_users_exists_get**](docs/UsersApi.md#api_v2_users_exists_get) | **GET** /api/v2/users/exists |
309
+ *WebhooksApi* | [**api_v2_webhooks_delete**](docs/WebhooksApi.md#api_v2_webhooks_delete) | **DELETE** /api/v2/webhooks |
303
310
  *WebhooksApi* | [**api_v2_webhooks_get**](docs/WebhooksApi.md#api_v2_webhooks_get) | **GET** /api/v2/webhooks | Get all webhooks
304
311
  *WebhooksApi* | [**api_v2_webhooks_id_delete**](docs/WebhooksApi.md#api_v2_webhooks_id_delete) | **DELETE** /api/v2/webhooks/{id} | Delete webhook by ID
305
312
  *WebhooksApi* | [**api_v2_webhooks_id_get**](docs/WebhooksApi.md#api_v2_webhooks_id_get) | **GET** /api/v2/webhooks/{id} | Get webhook by ID
306
313
  *WebhooksApi* | [**api_v2_webhooks_id_put**](docs/WebhooksApi.md#api_v2_webhooks_id_put) | **PUT** /api/v2/webhooks/{id} | Edit webhook by ID
307
314
  *WebhooksApi* | [**api_v2_webhooks_post**](docs/WebhooksApi.md#api_v2_webhooks_post) | **POST** /api/v2/webhooks | Create webhook
315
+ *WebhooksApi* | [**api_v2_webhooks_put**](docs/WebhooksApi.md#api_v2_webhooks_put) | **PUT** /api/v2/webhooks |
308
316
  *WebhooksApi* | [**api_v2_webhooks_search_post**](docs/WebhooksApi.md#api_v2_webhooks_search_post) | **POST** /api/v2/webhooks/search | Search for webhooks
309
317
  *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
310
318
  *WebhooksApi* | [**api_v2_webhooks_test_post**](docs/WebhooksApi.md#api_v2_webhooks_test_post) | **POST** /api/v2/webhooks/test | Test webhook's url
@@ -339,6 +347,7 @@ Class | Method | HTTP request | Description
339
347
  *WorkItemsCommentsApi* | [**api_v2_work_items_comments_comment_id_delete**](docs/WorkItemsCommentsApi.md#api_v2_work_items_comments_comment_id_delete) | **DELETE** /api/v2/workItems/comments/{commentId} | Delete WorkItem comment
340
348
  *WorkItemsCommentsApi* | [**api_v2_work_items_comments_post**](docs/WorkItemsCommentsApi.md#api_v2_work_items_comments_post) | **POST** /api/v2/workItems/comments | Create WorkItem comment
341
349
  *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
350
+ *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
342
351
  *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
343
352
 
344
353
 
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages # noqa: H301
2
2
 
3
3
  NAME = "testit-api-client"
4
4
 
5
- VERSION = "4.1.0"
5
+ VERSION = "4.2.0"
6
6
 
7
7
  REQUIRES = [
8
8
  "urllib3 >= 1.25.3",
@@ -10,7 +10,7 @@
10
10
  """
11
11
 
12
12
 
13
- __version__ = "4.1.0"
13
+ __version__ = "4.2.0"
14
14
 
15
15
  # import ApiClient
16
16
  from testit_api_client.api_client import ApiClient
@@ -185,6 +185,57 @@ class AttachmentsApi(object):
185
185
  },
186
186
  api_client=api_client
187
187
  )
188
+ self.api_v2_attachments_id_metadata_get_endpoint = _Endpoint(
189
+ settings={
190
+ 'response_type': (AttachmentModel,),
191
+ 'auth': [
192
+ 'Bearer or PrivateToken'
193
+ ],
194
+ 'endpoint_path': '/api/v2/attachments/{id}/metadata',
195
+ 'operation_id': 'api_v2_attachments_id_metadata_get',
196
+ 'http_method': 'GET',
197
+ 'servers': None,
198
+ },
199
+ params_map={
200
+ 'all': [
201
+ 'id',
202
+ ],
203
+ 'required': [
204
+ 'id',
205
+ ],
206
+ 'nullable': [
207
+ ],
208
+ 'enum': [
209
+ ],
210
+ 'validation': [
211
+ ]
212
+ },
213
+ root_map={
214
+ 'validations': {
215
+ },
216
+ 'allowed_values': {
217
+ },
218
+ 'openapi_types': {
219
+ 'id':
220
+ (str,),
221
+ },
222
+ 'attribute_map': {
223
+ 'id': 'id',
224
+ },
225
+ 'location_map': {
226
+ 'id': 'path',
227
+ },
228
+ 'collection_format_map': {
229
+ }
230
+ },
231
+ headers_map={
232
+ 'accept': [
233
+ 'application/json'
234
+ ],
235
+ 'content_type': [],
236
+ },
237
+ api_client=api_client
238
+ )
188
239
  self.api_v2_attachments_occupied_file_storage_size_get_endpoint = _Endpoint(
189
240
  settings={
190
241
  'response_type': (int,),
@@ -450,6 +501,88 @@ class AttachmentsApi(object):
450
501
  id
451
502
  return self.api_v2_attachments_id_get_endpoint.call_with_http_info(**kwargs)
452
503
 
504
+ def api_v2_attachments_id_metadata_get(
505
+ self,
506
+ id,
507
+ **kwargs
508
+ ):
509
+ """Get attachment metadata # noqa: E501
510
+
511
+ This method makes a synchronous HTTP request by default. To make an
512
+ asynchronous HTTP request, please pass async_req=True
513
+
514
+ >>> thread = api.api_v2_attachments_id_metadata_get(id, async_req=True)
515
+ >>> result = thread.get()
516
+
517
+ Args:
518
+ id (str):
519
+
520
+ Keyword Args:
521
+ _return_http_data_only (bool): response data without head status
522
+ code and headers. Default is True.
523
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
524
+ will be returned without reading/decoding response data.
525
+ Default is True.
526
+ _request_timeout (int/float/tuple): timeout setting for this request. If
527
+ one number provided, it will be total request timeout. It can also
528
+ be a pair (tuple) of (connection, read) timeouts.
529
+ Default is None.
530
+ _check_input_type (bool): specifies if type checking
531
+ should be done one the data sent to the server.
532
+ Default is True.
533
+ _check_return_type (bool): specifies if type checking
534
+ should be done one the data received from the server.
535
+ Default is True.
536
+ _spec_property_naming (bool): True if the variable names in the input data
537
+ are serialized names, as specified in the OpenAPI document.
538
+ False if the variable names in the input data
539
+ are pythonic names, e.g. snake case (default)
540
+ _content_type (str/None): force body content-type.
541
+ Default is None and content-type will be predicted by allowed
542
+ content-types and body.
543
+ _host_index (int/None): specifies the index of the server
544
+ that we want to use.
545
+ Default is read from the configuration.
546
+ _request_auths (list): set to override the auth_settings for an a single
547
+ request; this effectively ignores the authentication
548
+ in the spec for a single request.
549
+ Default is None
550
+ async_req (bool): execute request asynchronously
551
+
552
+ Returns:
553
+ AttachmentModel
554
+ If the method is called asynchronously, returns the request
555
+ thread.
556
+ """
557
+ kwargs['async_req'] = kwargs.get(
558
+ 'async_req', False
559
+ )
560
+ kwargs['_return_http_data_only'] = kwargs.get(
561
+ '_return_http_data_only', True
562
+ )
563
+ kwargs['_preload_content'] = kwargs.get(
564
+ '_preload_content', True
565
+ )
566
+ kwargs['_request_timeout'] = kwargs.get(
567
+ '_request_timeout', None
568
+ )
569
+ kwargs['_check_input_type'] = kwargs.get(
570
+ '_check_input_type', True
571
+ )
572
+ kwargs['_check_return_type'] = kwargs.get(
573
+ '_check_return_type', True
574
+ )
575
+ kwargs['_spec_property_naming'] = kwargs.get(
576
+ '_spec_property_naming', False
577
+ )
578
+ kwargs['_content_type'] = kwargs.get(
579
+ '_content_type')
580
+ kwargs['_host_index'] = kwargs.get('_host_index')
581
+ kwargs['_request_auths'] = kwargs.get('_request_auths', None)
582
+ kwargs['id'] = \
583
+ id
584
+ return self.api_v2_attachments_id_metadata_get_endpoint.call_with_http_info(**kwargs)
585
+
453
586
  def api_v2_attachments_occupied_file_storage_size_get(
454
587
  self,
455
588
  **kwargs