testit-api-client 4.2.0__tar.gz → 5.1.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 (935) hide show
  1. testit_api_client-5.1.0/PKG-INFO +397 -0
  2. testit_api_client-5.1.0/README.md +374 -0
  3. testit_api_client-5.1.0/setup.py +30 -0
  4. testit_api_client-5.1.0/src/testit_api_client/__init__.py +410 -0
  5. testit_api_client-5.1.0/src/testit_api_client/api/__init__.py +34 -0
  6. testit_api_client-5.1.0/src/testit_api_client/api/attachments_api.py +1505 -0
  7. testit_api_client-5.1.0/src/testit_api_client/api/auto_tests_api.py +6558 -0
  8. testit_api_client-5.1.0/src/testit_api_client/api/background_jobs_api.py +1853 -0
  9. testit_api_client-5.1.0/src/testit_api_client/api/configurations_api.py +3571 -0
  10. testit_api_client-5.1.0/src/testit_api_client/api/custom_attribute_templates_api.py +2733 -0
  11. testit_api_client-5.1.0/src/testit_api_client/api/custom_attributes_api.py +1857 -0
  12. testit_api_client-5.1.0/src/testit_api_client/api/notifications_api.py +1613 -0
  13. testit_api_client-5.1.0/src/testit_api_client/api/parameters_api.py +4649 -0
  14. testit_api_client-5.1.0/src/testit_api_client/api/project_attribute_templates_api.py +1017 -0
  15. testit_api_client-5.1.0/src/testit_api_client/api/project_attributes_api.py +1927 -0
  16. testit_api_client-5.1.0/src/testit_api_client/api/project_configurations_api.py +318 -0
  17. testit_api_client-5.1.0/src/testit_api_client/api/project_sections_api.py +403 -0
  18. testit_api_client-5.1.0/src/testit_api_client/api/project_settings_api.py +619 -0
  19. testit_api_client-5.1.0/src/testit_api_client/api/project_test_plan_attributes_api.py +1619 -0
  20. testit_api_client-5.1.0/src/testit_api_client/api/project_test_plans_api.py +2054 -0
  21. testit_api_client-5.1.0/src/testit_api_client/api/project_work_items_api.py +1925 -0
  22. testit_api_client-5.1.0/src/testit_api_client/api/projects_api.py +7885 -0
  23. testit_api_client-5.1.0/src/testit_api_client/api/search_api.py +327 -0
  24. testit_api_client-5.1.0/src/testit_api_client/api/sections_api.py +2512 -0
  25. testit_api_client-5.1.0/src/testit_api_client/api/tags_api.py +2188 -0
  26. testit_api_client-5.1.0/src/testit_api_client/api/test_plans_api.py +9567 -0
  27. testit_api_client-5.1.0/src/testit_api_client/api/test_points_api.py +1342 -0
  28. testit_api_client-5.1.0/src/testit_api_client/api/test_results_api.py +4575 -0
  29. testit_api_client-5.1.0/src/testit_api_client/api/test_runs_api.py +7057 -0
  30. testit_api_client-5.1.0/src/testit_api_client/api/test_suites_api.py +3917 -0
  31. testit_api_client-5.1.0/src/testit_api_client/api/users_api.py +316 -0
  32. testit_api_client-5.1.0/src/testit_api_client/api/webhooks_api.py +3005 -0
  33. testit_api_client-5.1.0/src/testit_api_client/api/webhooks_logs_api.py +954 -0
  34. testit_api_client-5.1.0/src/testit_api_client/api/work_items_api.py +7882 -0
  35. testit_api_client-5.1.0/src/testit_api_client/api/work_items_comments_api.py +1453 -0
  36. testit_api_client-5.1.0/src/testit_api_client/api_client.py +797 -0
  37. testit_api_client-5.1.0/src/testit_api_client/api_response.py +21 -0
  38. testit_api_client-5.1.0/src/testit_api_client/configuration.py +595 -0
  39. testit_api_client-5.1.0/src/testit_api_client/exceptions.py +216 -0
  40. testit_api_client-5.1.0/src/testit_api_client/models/__init__.py +364 -0
  41. testit_api_client-5.1.0/src/testit_api_client/models/action_update.py +39 -0
  42. testit_api_client-5.1.0/src/testit_api_client/models/assign_attachment_api_model.py +87 -0
  43. testit_api_client-5.1.0/src/testit_api_client/models/attachment.py +114 -0
  44. testit_api_client-5.1.0/src/testit_api_client/models/attachment_api_result.py +114 -0
  45. testit_api_client-5.1.0/src/testit_api_client/models/attachment_change_view_model.py +103 -0
  46. testit_api_client-5.1.0/src/testit_api_client/models/attachment_change_view_model_array_changed_field_view_model.py +114 -0
  47. testit_api_client-5.1.0/src/testit_api_client/models/attachment_model.py +114 -0
  48. testit_api_client-5.1.0/src/testit_api_client/models/attachment_put_model.py +87 -0
  49. testit_api_client-5.1.0/src/testit_api_client/models/attachment_put_model_auto_test_step_results_model.py +175 -0
  50. testit_api_client-5.1.0/src/testit_api_client/models/attachment_update_request.py +87 -0
  51. testit_api_client-5.1.0/src/testit_api_client/models/auto_test.py +280 -0
  52. testit_api_client-5.1.0/src/testit_api_client/models/auto_test_api_result.py +290 -0
  53. testit_api_client-5.1.0/src/testit_api_client/models/auto_test_average_duration_model.py +89 -0
  54. testit_api_client-5.1.0/src/testit_api_client/models/auto_test_bulk_delete_api_model.py +91 -0
  55. testit_api_client-5.1.0/src/testit_api_client/models/auto_test_bulk_delete_api_result.py +89 -0
  56. testit_api_client-5.1.0/src/testit_api_client/models/auto_test_change_view_model.py +93 -0
  57. testit_api_client-5.1.0/src/testit_api_client/models/auto_test_change_view_model_array_changed_field_view_model.py +114 -0
  58. testit_api_client-5.1.0/src/testit_api_client/models/auto_test_class_count_api_model.py +94 -0
  59. testit_api_client-5.1.0/src/testit_api_client/models/auto_test_extraction_api_model.py +96 -0
  60. testit_api_client-5.1.0/src/testit_api_client/models/auto_test_filter_api_model.py +238 -0
  61. testit_api_client-5.1.0/src/testit_api_client/models/auto_test_filter_model.py +237 -0
  62. testit_api_client-5.1.0/src/testit_api_client/models/auto_test_flaky_bulk_api_model.py +93 -0
  63. testit_api_client-5.1.0/src/testit_api_client/models/auto_test_id_model.py +87 -0
  64. testit_api_client-5.1.0/src/testit_api_client/models/auto_test_model.py +280 -0
  65. testit_api_client-5.1.0/src/testit_api_client/models/auto_test_model_v2_get_model.py +215 -0
  66. testit_api_client-5.1.0/src/testit_api_client/models/auto_test_namespace_count_api_model.py +104 -0
  67. testit_api_client-5.1.0/src/testit_api_client/models/auto_test_namespace_model.py +99 -0
  68. testit_api_client-5.1.0/src/testit_api_client/models/auto_test_namespaces_count_response.py +95 -0
  69. testit_api_client-5.1.0/src/testit_api_client/models/auto_test_outcome.py +39 -0
  70. testit_api_client-5.1.0/src/testit_api_client/models/auto_test_post_model.py +228 -0
  71. testit_api_client-5.1.0/src/testit_api_client/models/auto_test_project_settings_get_model.py +98 -0
  72. testit_api_client-5.1.0/src/testit_api_client/models/auto_test_project_settings_post_model.py +96 -0
  73. testit_api_client-5.1.0/src/testit_api_client/models/auto_test_put_model.py +221 -0
  74. testit_api_client-5.1.0/src/testit_api_client/models/auto_test_result_reason_short.py +90 -0
  75. testit_api_client-5.1.0/src/testit_api_client/models/auto_test_results_for_test_run_model.py +224 -0
  76. testit_api_client-5.1.0/src/testit_api_client/models/auto_test_search_api_model.py +107 -0
  77. testit_api_client-5.1.0/src/testit_api_client/models/auto_test_search_include_api_model.py +106 -0
  78. testit_api_client-5.1.0/src/testit_api_client/models/auto_test_select_api_model.py +107 -0
  79. testit_api_client-5.1.0/src/testit_api_client/models/auto_test_select_model.py +102 -0
  80. testit_api_client-5.1.0/src/testit_api_client/models/auto_test_short_model.py +95 -0
  81. testit_api_client-5.1.0/src/testit_api_client/models/auto_test_step.py +111 -0
  82. testit_api_client-5.1.0/src/testit_api_client/models/auto_test_step_api_result.py +110 -0
  83. testit_api_client-5.1.0/src/testit_api_client/models/auto_test_step_model.py +111 -0
  84. testit_api_client-5.1.0/src/testit_api_client/models/auto_test_step_result.py +175 -0
  85. testit_api_client-5.1.0/src/testit_api_client/models/auto_test_step_result_update_request.py +174 -0
  86. testit_api_client-5.1.0/src/testit_api_client/models/auto_test_step_results_api_result.py +174 -0
  87. testit_api_client-5.1.0/src/testit_api_client/models/auto_tests_extraction_model.py +96 -0
  88. testit_api_client-5.1.0/src/testit_api_client/models/autotest_historical_result_select_model.py +140 -0
  89. testit_api_client-5.1.0/src/testit_api_client/models/autotest_result_historical_get_model.py +171 -0
  90. testit_api_client-5.1.0/src/testit_api_client/models/autotest_result_outcome.py +40 -0
  91. testit_api_client-5.1.0/src/testit_api_client/models/available_test_result_outcome.py +39 -0
  92. testit_api_client-5.1.0/src/testit_api_client/models/background_job_attachment_model.py +93 -0
  93. testit_api_client-5.1.0/src/testit_api_client/models/background_job_filter_model.py +129 -0
  94. testit_api_client-5.1.0/src/testit_api_client/models/background_job_get_model.py +133 -0
  95. testit_api_client-5.1.0/src/testit_api_client/models/background_job_state.py +40 -0
  96. testit_api_client-5.1.0/src/testit_api_client/models/background_job_type.py +51 -0
  97. testit_api_client-5.1.0/src/testit_api_client/models/boolean_changed_field_view_model.py +89 -0
  98. testit_api_client-5.1.0/src/testit_api_client/models/boolean_nullable_changed_field_view_model.py +99 -0
  99. testit_api_client-5.1.0/src/testit_api_client/models/configuration_by_parameters_model.py +89 -0
  100. testit_api_client-5.1.0/src/testit_api_client/models/configuration_extraction_model.py +106 -0
  101. testit_api_client-5.1.0/src/testit_api_client/models/configuration_filter_model.py +114 -0
  102. testit_api_client-5.1.0/src/testit_api_client/models/configuration_model.py +135 -0
  103. testit_api_client-5.1.0/src/testit_api_client/models/configuration_post_model.py +101 -0
  104. testit_api_client-5.1.0/src/testit_api_client/models/configuration_put_model.py +103 -0
  105. testit_api_client-5.1.0/src/testit_api_client/models/configuration_select_model.py +107 -0
  106. testit_api_client-5.1.0/src/testit_api_client/models/configuration_short.py +89 -0
  107. testit_api_client-5.1.0/src/testit_api_client/models/configuration_short_api_result.py +89 -0
  108. testit_api_client-5.1.0/src/testit_api_client/models/configuration_short_model.py +89 -0
  109. testit_api_client-5.1.0/src/testit_api_client/models/create_defect_api_model.py +94 -0
  110. testit_api_client-5.1.0/src/testit_api_client/models/create_empty_test_run_api_model.py +138 -0
  111. testit_api_client-5.1.0/src/testit_api_client/models/create_link_api_model.py +112 -0
  112. testit_api_client-5.1.0/src/testit_api_client/models/create_test_plan_api_model.py +161 -0
  113. testit_api_client-5.1.0/src/testit_api_client/models/create_test_run_and_fill_by_auto_tests_api_model.py +143 -0
  114. testit_api_client-5.1.0/src/testit_api_client/models/create_test_run_and_fill_by_configurations_api_model.py +150 -0
  115. testit_api_client-5.1.0/src/testit_api_client/models/create_test_run_and_fill_by_work_items_api_model.py +145 -0
  116. testit_api_client-5.1.0/src/testit_api_client/models/custom_attribute_change_model.py +120 -0
  117. testit_api_client-5.1.0/src/testit_api_client/models/custom_attribute_get_model.py +110 -0
  118. testit_api_client-5.1.0/src/testit_api_client/models/custom_attribute_model.py +111 -0
  119. testit_api_client-5.1.0/src/testit_api_client/models/custom_attribute_option_model.py +99 -0
  120. testit_api_client-5.1.0/src/testit_api_client/models/custom_attribute_option_post_model.py +95 -0
  121. testit_api_client-5.1.0/src/testit_api_client/models/custom_attribute_post_model.py +112 -0
  122. testit_api_client-5.1.0/src/testit_api_client/models/custom_attribute_put_model.py +116 -0
  123. testit_api_client-5.1.0/src/testit_api_client/models/custom_attribute_search_query_model.py +129 -0
  124. testit_api_client-5.1.0/src/testit_api_client/models/custom_attribute_template_model.py +92 -0
  125. testit_api_client-5.1.0/src/testit_api_client/models/custom_attribute_template_post_model.py +95 -0
  126. testit_api_client-5.1.0/src/testit_api_client/models/custom_attribute_template_put_model.py +97 -0
  127. testit_api_client-5.1.0/src/testit_api_client/models/custom_attribute_template_search_query_model.py +114 -0
  128. testit_api_client-5.1.0/src/testit_api_client/models/custom_attribute_template_validation_result.py +87 -0
  129. testit_api_client-5.1.0/src/testit_api_client/models/custom_attribute_test_plan_project_relation_put_model.py +91 -0
  130. testit_api_client-5.1.0/src/testit_api_client/models/custom_attribute_types_enum.py +41 -0
  131. testit_api_client-5.1.0/src/testit_api_client/models/custom_attribute_validation_result.py +87 -0
  132. testit_api_client-5.1.0/src/testit_api_client/models/date_time_range_selector_model.py +100 -0
  133. testit_api_client-5.1.0/src/testit_api_client/models/defect_api_model.py +87 -0
  134. testit_api_client-5.1.0/src/testit_api_client/models/deletion_state.py +38 -0
  135. testit_api_client-5.1.0/src/testit_api_client/models/external_form_allowed_value_model.py +108 -0
  136. testit_api_client-5.1.0/src/testit_api_client/models/external_form_create_model.py +126 -0
  137. testit_api_client-5.1.0/src/testit_api_client/models/external_form_field_model.py +178 -0
  138. testit_api_client-5.1.0/src/testit_api_client/models/external_form_link_model.py +89 -0
  139. testit_api_client-5.1.0/src/testit_api_client/models/external_form_model.py +114 -0
  140. testit_api_client-5.1.0/src/testit_api_client/models/external_link_model.py +141 -0
  141. testit_api_client-5.1.0/src/testit_api_client/models/failure_category.py +40 -0
  142. testit_api_client-5.1.0/src/testit_api_client/models/failure_category_model.py +40 -0
  143. testit_api_client-5.1.0/src/testit_api_client/models/failure_class_model.py +133 -0
  144. testit_api_client-5.1.0/src/testit_api_client/models/failure_class_regex_model.py +98 -0
  145. testit_api_client-5.1.0/src/testit_api_client/models/filter_model.py +130 -0
  146. testit_api_client-5.1.0/src/testit_api_client/models/get_external_form_api_result.py +93 -0
  147. testit_api_client-5.1.0/src/testit_api_client/models/get_xlsx_test_points_by_test_plan_model.py +123 -0
  148. testit_api_client-5.1.0/src/testit_api_client/models/global_custom_attribute_post_model.py +120 -0
  149. testit_api_client-5.1.0/src/testit_api_client/models/global_custom_attribute_update_model.py +117 -0
  150. testit_api_client-5.1.0/src/testit_api_client/models/global_search_item_result.py +100 -0
  151. testit_api_client-5.1.0/src/testit_api_client/models/global_search_request.py +98 -0
  152. testit_api_client-5.1.0/src/testit_api_client/models/global_search_response.py +99 -0
  153. testit_api_client-5.1.0/src/testit_api_client/models/guid_changed_field_view_model.py +89 -0
  154. testit_api_client-5.1.0/src/testit_api_client/models/guid_extraction_model.py +99 -0
  155. testit_api_client-5.1.0/src/testit_api_client/models/image_resize_type.py +37 -0
  156. testit_api_client-5.1.0/src/testit_api_client/models/int32_changed_field_view_model.py +89 -0
  157. testit_api_client-5.1.0/src/testit_api_client/models/int32_range_selector_model.py +99 -0
  158. testit_api_client-5.1.0/src/testit_api_client/models/int64_changed_field_view_model.py +89 -0
  159. testit_api_client-5.1.0/src/testit_api_client/models/int64_range_selector_model.py +99 -0
  160. testit_api_client-5.1.0/src/testit_api_client/models/iteration_model.py +102 -0
  161. testit_api_client-5.1.0/src/testit_api_client/models/iteration_put_model.py +97 -0
  162. testit_api_client-5.1.0/src/testit_api_client/models/label.py +90 -0
  163. testit_api_client-5.1.0/src/testit_api_client/models/label_api_result.py +89 -0
  164. testit_api_client-5.1.0/src/testit_api_client/models/label_post_model.py +88 -0
  165. testit_api_client-5.1.0/src/testit_api_client/models/label_short_model.py +90 -0
  166. testit_api_client-5.1.0/src/testit_api_client/models/last_test_result_model.py +135 -0
  167. testit_api_client-5.1.0/src/testit_api_client/models/link.py +119 -0
  168. testit_api_client-5.1.0/src/testit_api_client/models/link_api_result.py +118 -0
  169. testit_api_client-5.1.0/src/testit_api_client/models/link_model.py +119 -0
  170. testit_api_client-5.1.0/src/testit_api_client/models/link_post_model.py +112 -0
  171. testit_api_client-5.1.0/src/testit_api_client/models/link_put_model.py +119 -0
  172. testit_api_client-5.1.0/src/testit_api_client/models/link_short.py +89 -0
  173. testit_api_client-5.1.0/src/testit_api_client/models/link_short_model.py +91 -0
  174. testit_api_client-5.1.0/src/testit_api_client/models/link_type.py +41 -0
  175. testit_api_client-5.1.0/src/testit_api_client/models/manual_rerun_api_result.py +87 -0
  176. testit_api_client-5.1.0/src/testit_api_client/models/manual_rerun_select_api_model.py +107 -0
  177. testit_api_client-5.1.0/src/testit_api_client/models/named_entity_api_model.py +89 -0
  178. testit_api_client-5.1.0/src/testit_api_client/models/notification_model.py +140 -0
  179. testit_api_client-5.1.0/src/testit_api_client/models/notification_query_filter_model.py +111 -0
  180. testit_api_client-5.1.0/src/testit_api_client/models/notification_type_model.py +39 -0
  181. testit_api_client-5.1.0/src/testit_api_client/models/operation.py +113 -0
  182. testit_api_client-5.1.0/src/testit_api_client/models/parameter_filter_model.py +99 -0
  183. testit_api_client-5.1.0/src/testit_api_client/models/parameter_group_model.py +91 -0
  184. testit_api_client-5.1.0/src/testit_api_client/models/parameter_iteration_model.py +87 -0
  185. testit_api_client-5.1.0/src/testit_api_client/models/parameter_model.py +115 -0
  186. testit_api_client-5.1.0/src/testit_api_client/models/parameter_post_model.py +90 -0
  187. testit_api_client-5.1.0/src/testit_api_client/models/parameter_put_model.py +92 -0
  188. testit_api_client-5.1.0/src/testit_api_client/models/parameter_short_model.py +94 -0
  189. testit_api_client-5.1.0/src/testit_api_client/models/period_view_model.py +100 -0
  190. testit_api_client-5.1.0/src/testit_api_client/models/period_view_model_changed_field_view_model.py +106 -0
  191. testit_api_client-5.1.0/src/testit_api_client/models/problem_details.py +133 -0
  192. testit_api_client-5.1.0/src/testit_api_client/models/project_attributes_filter_model.py +111 -0
  193. testit_api_client-5.1.0/src/testit_api_client/models/project_custom_attribute_template_get_model.py +101 -0
  194. testit_api_client-5.1.0/src/testit_api_client/models/project_custom_attributes_templates_filter_model.py +100 -0
  195. testit_api_client-5.1.0/src/testit_api_client/models/project_extraction_model.py +96 -0
  196. testit_api_client-5.1.0/src/testit_api_client/models/project_model.py +181 -0
  197. testit_api_client-5.1.0/src/testit_api_client/models/project_post_model.py +102 -0
  198. testit_api_client-5.1.0/src/testit_api_client/models/project_put_model.py +107 -0
  199. testit_api_client-5.1.0/src/testit_api_client/models/project_select_model.py +107 -0
  200. testit_api_client-5.1.0/src/testit_api_client/models/project_short_model.py +152 -0
  201. testit_api_client-5.1.0/src/testit_api_client/models/project_shortest_model.py +96 -0
  202. testit_api_client-5.1.0/src/testit_api_client/models/project_test_plans_filter_model.py +212 -0
  203. testit_api_client-5.1.0/src/testit_api_client/models/project_type_model.py +37 -0
  204. testit_api_client-5.1.0/src/testit_api_client/models/projects_filter_model.py +181 -0
  205. testit_api_client-5.1.0/src/testit_api_client/models/public_test_point_model.py +115 -0
  206. testit_api_client-5.1.0/src/testit_api_client/models/public_test_run_model.py +158 -0
  207. testit_api_client-5.1.0/src/testit_api_client/models/request_type_model.py +38 -0
  208. testit_api_client-5.1.0/src/testit_api_client/models/request_type_request.py +38 -0
  209. testit_api_client-5.1.0/src/testit_api_client/models/rerun_test_result_model.py +96 -0
  210. testit_api_client-5.1.0/src/testit_api_client/models/reruns_model.py +97 -0
  211. testit_api_client-5.1.0/src/testit_api_client/models/search_custom_attribute_template_get_model.py +111 -0
  212. testit_api_client-5.1.0/src/testit_api_client/models/search_test_runs_api_model.py +143 -0
  213. testit_api_client-5.1.0/src/testit_api_client/models/search_webhooks_query_model.py +123 -0
  214. testit_api_client-5.1.0/src/testit_api_client/models/section_model.py +125 -0
  215. testit_api_client-5.1.0/src/testit_api_client/models/section_move_model.py +98 -0
  216. testit_api_client-5.1.0/src/testit_api_client/models/section_post_model.py +136 -0
  217. testit_api_client-5.1.0/src/testit_api_client/models/section_put_model.py +138 -0
  218. testit_api_client-5.1.0/src/testit_api_client/models/section_rename_model.py +90 -0
  219. testit_api_client-5.1.0/src/testit_api_client/models/section_with_steps_model.py +169 -0
  220. testit_api_client-5.1.0/src/testit_api_client/models/shared_step_change_view_model.py +103 -0
  221. testit_api_client-5.1.0/src/testit_api_client/models/shared_step_model.py +105 -0
  222. testit_api_client-5.1.0/src/testit_api_client/models/shared_step_reference_model.py +151 -0
  223. testit_api_client-5.1.0/src/testit_api_client/models/shared_step_reference_section_model.py +119 -0
  224. testit_api_client-5.1.0/src/testit_api_client/models/shared_step_reference_sections_query_filter_model.py +127 -0
  225. testit_api_client-5.1.0/src/testit_api_client/models/shared_step_references_query_filter_model.py +178 -0
  226. testit_api_client-5.1.0/src/testit_api_client/models/shared_step_result.py +89 -0
  227. testit_api_client-5.1.0/src/testit_api_client/models/short_configuration.py +89 -0
  228. testit_api_client-5.1.0/src/testit_api_client/models/step_comment.py +139 -0
  229. testit_api_client-5.1.0/src/testit_api_client/models/step_comment_api_result.py +134 -0
  230. testit_api_client-5.1.0/src/testit_api_client/models/step_model.py +135 -0
  231. testit_api_client-5.1.0/src/testit_api_client/models/step_post_model.py +120 -0
  232. testit_api_client-5.1.0/src/testit_api_client/models/step_put_model.py +122 -0
  233. testit_api_client-5.1.0/src/testit_api_client/models/step_result.py +122 -0
  234. testit_api_client-5.1.0/src/testit_api_client/models/string_array_changed_field_view_model.py +99 -0
  235. testit_api_client-5.1.0/src/testit_api_client/models/string_changed_field_view_model.py +99 -0
  236. testit_api_client-5.1.0/src/testit_api_client/models/string_changed_field_with_diffs_view_model.py +106 -0
  237. testit_api_client-5.1.0/src/testit_api_client/models/tag_api_model.py +88 -0
  238. testit_api_client-5.1.0/src/testit_api_client/models/tag_extraction_model.py +96 -0
  239. testit_api_client-5.1.0/src/testit_api_client/models/tag_model.py +109 -0
  240. testit_api_client-5.1.0/src/testit_api_client/models/tag_post_model.py +88 -0
  241. testit_api_client-5.1.0/src/testit_api_client/models/tag_put_model.py +88 -0
  242. testit_api_client-5.1.0/src/testit_api_client/models/tag_select_model.py +107 -0
  243. testit_api_client-5.1.0/src/testit_api_client/models/tag_short_model.py +88 -0
  244. testit_api_client-5.1.0/src/testit_api_client/models/tags_filter_model.py +111 -0
  245. testit_api_client-5.1.0/src/testit_api_client/models/test_plan_api_result.py +209 -0
  246. testit_api_client-5.1.0/src/testit_api_client/models/test_plan_change_model.py +105 -0
  247. testit_api_client-5.1.0/src/testit_api_client/models/test_plan_changed_fields_view_model.py +233 -0
  248. testit_api_client-5.1.0/src/testit_api_client/models/test_plan_extraction_model.py +96 -0
  249. testit_api_client-5.1.0/src/testit_api_client/models/test_plan_group_by_status.py +89 -0
  250. testit_api_client-5.1.0/src/testit_api_client/models/test_plan_group_by_test_suite.py +91 -0
  251. testit_api_client-5.1.0/src/testit_api_client/models/test_plan_group_by_tester.py +94 -0
  252. testit_api_client-5.1.0/src/testit_api_client/models/test_plan_group_by_tester_and_status.py +96 -0
  253. testit_api_client-5.1.0/src/testit_api_client/models/test_plan_link.py +142 -0
  254. testit_api_client-5.1.0/src/testit_api_client/models/test_plan_model.py +210 -0
  255. testit_api_client-5.1.0/src/testit_api_client/models/test_plan_select_model.py +102 -0
  256. testit_api_client-5.1.0/src/testit_api_client/models/test_plan_short_model.py +91 -0
  257. testit_api_client-5.1.0/src/testit_api_client/models/test_plan_status.py +39 -0
  258. testit_api_client-5.1.0/src/testit_api_client/models/test_plan_status_model.py +39 -0
  259. testit_api_client-5.1.0/src/testit_api_client/models/test_plan_summary_model.py +104 -0
  260. testit_api_client-5.1.0/src/testit_api_client/models/test_plan_tag_api_result.py +87 -0
  261. testit_api_client-5.1.0/src/testit_api_client/models/test_plan_with_analytic_model.py +216 -0
  262. testit_api_client-5.1.0/src/testit_api_client/models/test_plan_with_test_suite_tree_model.py +220 -0
  263. testit_api_client-5.1.0/src/testit_api_client/models/test_point.py +139 -0
  264. testit_api_client-5.1.0/src/testit_api_client/models/test_point_analytic_result.py +134 -0
  265. testit_api_client-5.1.0/src/testit_api_client/models/test_point_by_test_suite_model.py +131 -0
  266. testit_api_client-5.1.0/src/testit_api_client/models/test_point_change_view_model.py +96 -0
  267. testit_api_client-5.1.0/src/testit_api_client/models/test_point_change_view_model_changed_field_view_model.py +106 -0
  268. testit_api_client-5.1.0/src/testit_api_client/models/test_point_filter_model.py +276 -0
  269. testit_api_client-5.1.0/src/testit_api_client/models/test_point_filter_request_model.py +276 -0
  270. testit_api_client-5.1.0/src/testit_api_client/models/test_point_put_model.py +134 -0
  271. testit_api_client-5.1.0/src/testit_api_client/models/test_point_result_model.py +150 -0
  272. testit_api_client-5.1.0/src/testit_api_client/models/test_point_select_model.py +107 -0
  273. testit_api_client-5.1.0/src/testit_api_client/models/test_point_selector.py +89 -0
  274. testit_api_client-5.1.0/src/testit_api_client/models/test_point_short_api_result.py +139 -0
  275. testit_api_client-5.1.0/src/testit_api_client/models/test_point_short_model.py +133 -0
  276. testit_api_client-5.1.0/src/testit_api_client/models/test_point_short_response_model.py +210 -0
  277. testit_api_client-5.1.0/src/testit_api_client/models/test_point_status.py +41 -0
  278. testit_api_client-5.1.0/src/testit_api_client/models/test_point_with_last_result_response_model.py +234 -0
  279. testit_api_client-5.1.0/src/testit_api_client/models/test_points_extraction_model.py +96 -0
  280. testit_api_client-5.1.0/src/testit_api_client/models/test_result_api_result.py +328 -0
  281. testit_api_client-5.1.0/src/testit_api_client/models/test_result_change_view_model.py +87 -0
  282. testit_api_client-5.1.0/src/testit_api_client/models/test_result_change_view_model_changed_field_view_model.py +106 -0
  283. testit_api_client-5.1.0/src/testit_api_client/models/test_result_chronology_model.py +94 -0
  284. testit_api_client-5.1.0/src/testit_api_client/models/test_result_failure_class_api_result.py +88 -0
  285. testit_api_client-5.1.0/src/testit_api_client/models/test_result_history_response.py +249 -0
  286. testit_api_client-5.1.0/src/testit_api_client/models/test_result_outcome.py +40 -0
  287. testit_api_client-5.1.0/src/testit_api_client/models/test_result_response.py +351 -0
  288. testit_api_client-5.1.0/src/testit_api_client/models/test_result_short_model.py +150 -0
  289. testit_api_client-5.1.0/src/testit_api_client/models/test_result_short_response.py +187 -0
  290. testit_api_client-5.1.0/src/testit_api_client/models/test_result_step_comment_update_request.py +108 -0
  291. testit_api_client-5.1.0/src/testit_api_client/models/test_result_update_v2_request.py +232 -0
  292. testit_api_client-5.1.0/src/testit_api_client/models/test_result_v2_get_model.py +236 -0
  293. testit_api_client-5.1.0/src/testit_api_client/models/test_result_v2_short_model.py +214 -0
  294. testit_api_client-5.1.0/src/testit_api_client/models/test_results_extraction_api_model.py +96 -0
  295. testit_api_client-5.1.0/src/testit_api_client/models/test_results_filter_api_model.py +210 -0
  296. testit_api_client-5.1.0/src/testit_api_client/models/test_results_local_filter_model.py +130 -0
  297. testit_api_client-5.1.0/src/testit_api_client/models/test_results_select_api_model.py +97 -0
  298. testit_api_client-5.1.0/src/testit_api_client/models/test_results_statistics_api_result.py +101 -0
  299. testit_api_client-5.1.0/src/testit_api_client/models/test_results_statistics_failure_categories_api_result.py +91 -0
  300. testit_api_client-5.1.0/src/testit_api_client/models/test_results_statistics_statuses_api_result.py +97 -0
  301. testit_api_client-5.1.0/src/testit_api_client/models/test_run_analytic_api_result.py +115 -0
  302. testit_api_client-5.1.0/src/testit_api_client/models/test_run_api_result.py +227 -0
  303. testit_api_client-5.1.0/src/testit_api_client/models/test_run_extraction_api_model.py +96 -0
  304. testit_api_client-5.1.0/src/testit_api_client/models/test_run_filter_api_model.py +207 -0
  305. testit_api_client-5.1.0/src/testit_api_client/models/test_run_group_by_failure_class_api_result.py +89 -0
  306. testit_api_client-5.1.0/src/testit_api_client/models/test_run_group_by_status_api_result.py +89 -0
  307. testit_api_client-5.1.0/src/testit_api_client/models/test_run_group_by_status_type_api_result.py +89 -0
  308. testit_api_client-5.1.0/src/testit_api_client/models/test_run_select_api_model.py +97 -0
  309. testit_api_client-5.1.0/src/testit_api_client/models/test_run_short_api_result.py +144 -0
  310. testit_api_client-5.1.0/src/testit_api_client/models/test_run_short_model.py +115 -0
  311. testit_api_client-5.1.0/src/testit_api_client/models/test_run_state.py +39 -0
  312. testit_api_client-5.1.0/src/testit_api_client/models/test_run_statistics_filter_api_model.py +130 -0
  313. testit_api_client-5.1.0/src/testit_api_client/models/test_run_test_results_partial_bulk_set_model.py +132 -0
  314. testit_api_client-5.1.0/src/testit_api_client/models/test_run_test_results_select_model.py +107 -0
  315. testit_api_client-5.1.0/src/testit_api_client/models/test_run_v2_api_result.py +215 -0
  316. testit_api_client-5.1.0/src/testit_api_client/models/test_status_api_result.py +105 -0
  317. testit_api_client-5.1.0/src/testit_api_client/models/test_status_create_model.py +100 -0
  318. testit_api_client-5.1.0/src/testit_api_client/models/test_status_model.py +105 -0
  319. testit_api_client-5.1.0/src/testit_api_client/models/test_status_type.py +40 -0
  320. testit_api_client-5.1.0/src/testit_api_client/models/test_status_update_model.py +97 -0
  321. testit_api_client-5.1.0/src/testit_api_client/models/test_suite_change_view_model.py +106 -0
  322. testit_api_client-5.1.0/src/testit_api_client/models/test_suite_change_view_model_changed_field_view_model.py +106 -0
  323. testit_api_client-5.1.0/src/testit_api_client/models/test_suite_test_plan_api_model.py +116 -0
  324. testit_api_client-5.1.0/src/testit_api_client/models/test_suite_type.py +38 -0
  325. testit_api_client-5.1.0/src/testit_api_client/models/test_suite_v2_get_model.py +129 -0
  326. testit_api_client-5.1.0/src/testit_api_client/models/test_suite_v2_post_model.py +119 -0
  327. testit_api_client-5.1.0/src/testit_api_client/models/test_suite_v2_put_model.py +106 -0
  328. testit_api_client-5.1.0/src/testit_api_client/models/test_suite_v2_tree_model.py +145 -0
  329. testit_api_client-5.1.0/src/testit_api_client/models/test_suite_with_children_model.py +123 -0
  330. testit_api_client-5.1.0/src/testit_api_client/models/test_suite_work_items_search_model.py +279 -0
  331. testit_api_client-5.1.0/src/testit_api_client/models/update_empty_test_run_api_model.py +134 -0
  332. testit_api_client-5.1.0/src/testit_api_client/models/update_link_api_model.py +119 -0
  333. testit_api_client-5.1.0/src/testit_api_client/models/update_multiple_attachments_api_model.py +95 -0
  334. testit_api_client-5.1.0/src/testit_api_client/models/update_multiple_links_api_model.py +103 -0
  335. testit_api_client-5.1.0/src/testit_api_client/models/update_multiple_test_runs_api_model.py +120 -0
  336. testit_api_client-5.1.0/src/testit_api_client/models/update_test_plan_api_model.py +164 -0
  337. testit_api_client-5.1.0/src/testit_api_client/models/user_custom_name_validation_response.py +87 -0
  338. testit_api_client-5.1.0/src/testit_api_client/models/user_rank_model.py +99 -0
  339. testit_api_client-5.1.0/src/testit_api_client/models/user_with_rank_model.py +122 -0
  340. testit_api_client-5.1.0/src/testit_api_client/models/validation_problem_details.py +135 -0
  341. testit_api_client-5.1.0/src/testit_api_client/models/web_hook_event_type.py +52 -0
  342. testit_api_client-5.1.0/src/testit_api_client/models/web_hook_event_type_model.py +52 -0
  343. testit_api_client-5.1.0/src/testit_api_client/models/web_hook_event_type_request.py +52 -0
  344. testit_api_client-5.1.0/src/testit_api_client/models/web_hook_log_model.py +157 -0
  345. testit_api_client-5.1.0/src/testit_api_client/models/web_hook_model.py +165 -0
  346. testit_api_client-5.1.0/src/testit_api_client/models/web_hook_post_model.py +126 -0
  347. testit_api_client-5.1.0/src/testit_api_client/models/web_hook_test_model.py +91 -0
  348. testit_api_client-5.1.0/src/testit_api_client/models/webhook_bulk_update_api_model.py +87 -0
  349. testit_api_client-5.1.0/src/testit_api_client/models/webhook_response.py +107 -0
  350. testit_api_client-5.1.0/src/testit_api_client/models/webhook_variables_type.py +38 -0
  351. testit_api_client-5.1.0/src/testit_api_client/models/webhooks_delete_filter_request.py +123 -0
  352. testit_api_client-5.1.0/src/testit_api_client/models/webhooks_delete_request.py +97 -0
  353. testit_api_client-5.1.0/src/testit_api_client/models/webhooks_extraction_request.py +96 -0
  354. testit_api_client-5.1.0/src/testit_api_client/models/webhooks_filter_request.py +116 -0
  355. testit_api_client-5.1.0/src/testit_api_client/models/webhooks_update_request.py +103 -0
  356. testit_api_client-5.1.0/src/testit_api_client/models/webhooks_update_response.py +87 -0
  357. testit_api_client-5.1.0/src/testit_api_client/models/work_item_change_model.py +109 -0
  358. testit_api_client-5.1.0/src/testit_api_client/models/work_item_changed_attribute_view_model.py +105 -0
  359. testit_api_client-5.1.0/src/testit_api_client/models/work_item_changed_fields_view_model.py +216 -0
  360. testit_api_client-5.1.0/src/testit_api_client/models/work_item_comment_model.py +114 -0
  361. testit_api_client-5.1.0/src/testit_api_client/models/work_item_comment_post_model.py +90 -0
  362. testit_api_client-5.1.0/src/testit_api_client/models/work_item_comment_put_model.py +90 -0
  363. testit_api_client-5.1.0/src/testit_api_client/models/work_item_entity_types.py +38 -0
  364. testit_api_client-5.1.0/src/testit_api_client/models/work_item_extraction_model.py +116 -0
  365. testit_api_client-5.1.0/src/testit_api_client/models/work_item_filter_model.py +265 -0
  366. testit_api_client-5.1.0/src/testit_api_client/models/work_item_group_get_model.py +106 -0
  367. testit_api_client-5.1.0/src/testit_api_client/models/work_item_group_model.py +104 -0
  368. testit_api_client-5.1.0/src/testit_api_client/models/work_item_group_type.py +42 -0
  369. testit_api_client-5.1.0/src/testit_api_client/models/work_item_id_model.py +88 -0
  370. testit_api_client-5.1.0/src/testit_api_client/models/work_item_identifier_model.py +89 -0
  371. testit_api_client-5.1.0/src/testit_api_client/models/work_item_like_model.py +110 -0
  372. testit_api_client-5.1.0/src/testit_api_client/models/work_item_link_change_view_model.py +97 -0
  373. testit_api_client-5.1.0/src/testit_api_client/models/work_item_link_change_view_model_array_changed_field_view_model.py +114 -0
  374. testit_api_client-5.1.0/src/testit_api_client/models/work_item_local_filter_model.py +237 -0
  375. testit_api_client-5.1.0/src/testit_api_client/models/work_item_local_select_model.py +107 -0
  376. testit_api_client-5.1.0/src/testit_api_client/models/work_item_model.py +266 -0
  377. testit_api_client-5.1.0/src/testit_api_client/models/work_item_move_post_model.py +103 -0
  378. testit_api_client-5.1.0/src/testit_api_client/models/work_item_post_model.py +205 -0
  379. testit_api_client-5.1.0/src/testit_api_client/models/work_item_priority_model.py +40 -0
  380. testit_api_client-5.1.0/src/testit_api_client/models/work_item_put_model.py +197 -0
  381. testit_api_client-5.1.0/src/testit_api_client/models/work_item_search_query_model.py +244 -0
  382. testit_api_client-5.1.0/src/testit_api_client/models/work_item_select_model.py +102 -0
  383. testit_api_client-5.1.0/src/testit_api_client/models/work_item_short_model.py +181 -0
  384. testit_api_client-5.1.0/src/testit_api_client/models/work_item_state.py +38 -0
  385. testit_api_client-5.1.0/src/testit_api_client/models/work_item_states.py +38 -0
  386. testit_api_client-5.1.0/src/testit_api_client/models/work_item_step_change_view_model.py +110 -0
  387. testit_api_client-5.1.0/src/testit_api_client/models/work_item_step_change_view_model_array_changed_field_with_diffs_view_model.py +128 -0
  388. testit_api_client-5.1.0/src/testit_api_client/models/work_item_version_model.py +104 -0
  389. testit_api_client-5.1.0/src/testit_api_client/py.typed +0 -0
  390. testit_api_client-5.1.0/src/testit_api_client/rest.py +257 -0
  391. testit_api_client-5.1.0/src/testit_api_client.egg-info/PKG-INFO +397 -0
  392. testit_api_client-5.1.0/src/testit_api_client.egg-info/SOURCES.txt +396 -0
  393. testit_api_client-5.1.0/src/testit_api_client.egg-info/requires.txt +4 -0
  394. testit_api_client-4.2.0/PKG-INFO +0 -385
  395. testit_api_client-4.2.0/README.md +0 -372
  396. testit_api_client-4.2.0/setup.py +0 -28
  397. testit_api_client-4.2.0/src/testit_api_client/__init__.py +0 -27
  398. testit_api_client-4.2.0/src/testit_api_client/api/__init__.py +0 -3
  399. testit_api_client-4.2.0/src/testit_api_client/api/attachments_api.py +0 -741
  400. testit_api_client-4.2.0/src/testit_api_client/api/auto_tests_api.py +0 -2850
  401. testit_api_client-4.2.0/src/testit_api_client/api/background_jobs_api.py +0 -871
  402. testit_api_client-4.2.0/src/testit_api_client/api/configurations_api.py +0 -1647
  403. testit_api_client-4.2.0/src/testit_api_client/api/custom_attribute_templates_api.py +0 -1280
  404. testit_api_client-4.2.0/src/testit_api_client/api/custom_attributes_api.py +0 -869
  405. testit_api_client-4.2.0/src/testit_api_client/api/notifications_api.py +0 -743
  406. testit_api_client-4.2.0/src/testit_api_client/api/parameters_api.py +0 -2136
  407. testit_api_client-4.2.0/src/testit_api_client/api/project_attribute_templates_api.py +0 -499
  408. testit_api_client-4.2.0/src/testit_api_client/api/project_attributes_api.py +0 -924
  409. testit_api_client-4.2.0/src/testit_api_client/api/project_configurations_api.py +0 -174
  410. testit_api_client-4.2.0/src/testit_api_client/api/project_sections_api.py +0 -204
  411. testit_api_client-4.2.0/src/testit_api_client/api/project_settings_api.py +0 -314
  412. testit_api_client-4.2.0/src/testit_api_client/api/project_test_plan_attributes_api.py +0 -777
  413. testit_api_client-4.2.0/src/testit_api_client/api/project_test_plans_api.py +0 -959
  414. testit_api_client-4.2.0/src/testit_api_client/api/project_work_items_api.py +0 -877
  415. testit_api_client-4.2.0/src/testit_api_client/api/projects_api.py +0 -3626
  416. testit_api_client-4.2.0/src/testit_api_client/api/search_api.py +0 -169
  417. testit_api_client-4.2.0/src/testit_api_client/api/sections_api.py +0 -1160
  418. testit_api_client-4.2.0/src/testit_api_client/api/tags_api.py +0 -1005
  419. testit_api_client-4.2.0/src/testit_api_client/api/test_plans_api.py +0 -4483
  420. testit_api_client-4.2.0/src/testit_api_client/api/test_points_api.py +0 -625
  421. testit_api_client-4.2.0/src/testit_api_client/api/test_results_api.py +0 -2190
  422. testit_api_client-4.2.0/src/testit_api_client/api/test_runs_api.py +0 -3274
  423. testit_api_client-4.2.0/src/testit_api_client/api/test_suites_api.py +0 -1849
  424. testit_api_client-4.2.0/src/testit_api_client/api/users_api.py +0 -167
  425. testit_api_client-4.2.0/src/testit_api_client/api/webhooks_api.py +0 -1385
  426. testit_api_client-4.2.0/src/testit_api_client/api/webhooks_logs_api.py +0 -463
  427. testit_api_client-4.2.0/src/testit_api_client/api/work_items_api.py +0 -3659
  428. testit_api_client-4.2.0/src/testit_api_client/api/work_items_comments_api.py +0 -699
  429. testit_api_client-4.2.0/src/testit_api_client/api_client.py +0 -898
  430. testit_api_client-4.2.0/src/testit_api_client/apis/__init__.py +0 -46
  431. testit_api_client-4.2.0/src/testit_api_client/configuration.py +0 -479
  432. testit_api_client-4.2.0/src/testit_api_client/exceptions.py +0 -158
  433. testit_api_client-4.2.0/src/testit_api_client/model/__init__.py +0 -5
  434. testit_api_client-4.2.0/src/testit_api_client/model/action_update.py +0 -292
  435. testit_api_client-4.2.0/src/testit_api_client/model/add_test_points_with_sections_request.py +0 -327
  436. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_auto_tests_search_post_request.py +0 -327
  437. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_background_jobs_search_post_request.py +0 -341
  438. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_configurations_create_by_parameters_post_request.py +0 -325
  439. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_configurations_purge_bulk_post_request.py +0 -327
  440. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_configurations_put_request.py +0 -342
  441. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_configurations_search_post_request.py +0 -339
  442. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_custom_attributes_global_id_put_request.py +0 -337
  443. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_custom_attributes_global_post_request.py +0 -343
  444. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_custom_attributes_search_post_request.py +0 -351
  445. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_custom_attributes_templates_post_request.py +0 -329
  446. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_custom_attributes_templates_put_request.py +0 -333
  447. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_custom_attributes_templates_search_post_request.py +0 -337
  448. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_notifications_search_post_request.py +0 -333
  449. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_parameters_search_post_request.py +0 -323
  450. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_projects_project_id_attributes_templates_search_post_request.py +0 -327
  451. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_projects_project_id_settings_autotests_post_request.py +0 -347
  452. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_projects_project_id_test_plans_delete_bulk_post_request.py +0 -327
  453. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_projects_project_id_test_plans_search_post_request.py +0 -409
  454. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_projects_restore_bulk_post_request.py +0 -327
  455. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_projects_search_post_request.py +0 -381
  456. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_search_global_search_post_request.py +0 -331
  457. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_tags_delete_request.py +0 -327
  458. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_tags_post_request.py +0 -323
  459. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_tags_put_request.py +0 -323
  460. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_test_plans_id_export_test_points_xlsx_post_request.py +0 -371
  461. 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 -327
  462. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_test_plans_id_test_runs_search_post_request.py +0 -353
  463. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_test_points_search_post_request.py +0 -427
  464. 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 +0 -327
  465. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_test_results_external_projects_external_project_id_defects_post_request.py +0 -329
  466. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_test_results_search_post_request.py +0 -397
  467. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_test_runs_id_reruns_post_request.py +0 -327
  468. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_test_runs_id_statistics_filter_post_request.py +0 -351
  469. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_test_runs_id_test_results_bulk_put_request.py +0 -345
  470. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_test_runs_purge_bulk_post_request.py +0 -327
  471. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_test_runs_search_post_request.py +0 -389
  472. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_test_runs_update_multiple_post_request.py +0 -337
  473. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_test_suites_post_request.py +0 -345
  474. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_test_suites_put_request.py +0 -339
  475. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_webhooks_delete_request.py +0 -327
  476. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_webhooks_post_request.py +0 -382
  477. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_webhooks_put_request.py +0 -333
  478. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_webhooks_search_post_request.py +0 -349
  479. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_webhooks_test_post_request.py +0 -328
  480. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_work_items_comments_post_request.py +0 -327
  481. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_work_items_comments_put_request.py +0 -327
  482. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_work_items_move_post_request.py +0 -331
  483. testit_api_client-4.2.0/src/testit_api_client/model/api_v2_work_items_shared_step_id_references_sections_post_request.py +0 -343
  484. 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 -387
  485. testit_api_client-4.2.0/src/testit_api_client/model/attachment.py +0 -307
  486. testit_api_client-4.2.0/src/testit_api_client/model/attachment_change_view_model.py +0 -277
  487. testit_api_client-4.2.0/src/testit_api_client/model/attachment_change_view_model_array_changed_field_view_model.py +0 -266
  488. testit_api_client-4.2.0/src/testit_api_client/model/attachment_model.py +0 -307
  489. testit_api_client-4.2.0/src/testit_api_client/model/attachment_model_auto_test_step_results_model.py +0 -304
  490. testit_api_client-4.2.0/src/testit_api_client/model/attachment_put_model.py +0 -263
  491. testit_api_client-4.2.0/src/testit_api_client/model/attachment_put_model_auto_test_step_results_model.py +0 -304
  492. testit_api_client-4.2.0/src/testit_api_client/model/attachment_update_request.py +0 -263
  493. testit_api_client-4.2.0/src/testit_api_client/model/auto_test.py +0 -404
  494. testit_api_client-4.2.0/src/testit_api_client/model/auto_test_average_duration_model.py +0 -269
  495. testit_api_client-4.2.0/src/testit_api_client/model/auto_test_change_view_model.py +0 -281
  496. testit_api_client-4.2.0/src/testit_api_client/model/auto_test_change_view_model_array_changed_field_view_model.py +0 -266
  497. testit_api_client-4.2.0/src/testit_api_client/model/auto_test_class_count_api_model.py +0 -267
  498. testit_api_client-4.2.0/src/testit_api_client/model/auto_test_id_model.py +0 -263
  499. testit_api_client-4.2.0/src/testit_api_client/model/auto_test_last_test_result_configuration.py +0 -323
  500. testit_api_client-4.2.0/src/testit_api_client/model/auto_test_model.py +0 -404
  501. testit_api_client-4.2.0/src/testit_api_client/model/auto_test_model_last_test_result_configuration.py +0 -323
  502. testit_api_client-4.2.0/src/testit_api_client/model/auto_test_model_v2_get_model.py +0 -352
  503. testit_api_client-4.2.0/src/testit_api_client/model/auto_test_namespace_count_api_model.py +0 -278
  504. testit_api_client-4.2.0/src/testit_api_client/model/auto_test_namespace_model.py +0 -263
  505. testit_api_client-4.2.0/src/testit_api_client/model/auto_test_namespaces_count_response.py +0 -268
  506. testit_api_client-4.2.0/src/testit_api_client/model/auto_test_post_model.py +0 -348
  507. testit_api_client-4.2.0/src/testit_api_client/model/auto_test_project_settings_get_model.py +0 -299
  508. testit_api_client-4.2.0/src/testit_api_client/model/auto_test_project_settings_post_model.py +0 -293
  509. testit_api_client-4.2.0/src/testit_api_client/model/auto_test_put_model.py +0 -344
  510. testit_api_client-4.2.0/src/testit_api_client/model/auto_test_related_to_test_result.py +0 -393
  511. testit_api_client-4.2.0/src/testit_api_client/model/auto_test_result_reason_short.py +0 -274
  512. testit_api_client-4.2.0/src/testit_api_client/model/auto_test_results_for_test_run_model.py +0 -347
  513. testit_api_client-4.2.0/src/testit_api_client/model/auto_test_short_model.py +0 -287
  514. testit_api_client-4.2.0/src/testit_api_client/model/auto_test_step.py +0 -274
  515. testit_api_client-4.2.0/src/testit_api_client/model/auto_test_step_model.py +0 -274
  516. testit_api_client-4.2.0/src/testit_api_client/model/auto_test_step_result.py +0 -304
  517. testit_api_client-4.2.0/src/testit_api_client/model/auto_test_step_result_update_request.py +0 -306
  518. testit_api_client-4.2.0/src/testit_api_client/model/autotest_filter_model.py +0 -356
  519. testit_api_client-4.2.0/src/testit_api_client/model/autotest_filter_model_created_date.py +0 -323
  520. testit_api_client-4.2.0/src/testit_api_client/model/autotest_filter_model_modified_date.py +0 -323
  521. testit_api_client-4.2.0/src/testit_api_client/model/autotest_filter_model_stability_percentage.py +0 -323
  522. testit_api_client-4.2.0/src/testit_api_client/model/autotest_historical_result_select_model.py +0 -302
  523. testit_api_client-4.2.0/src/testit_api_client/model/autotest_result_historical_get_model.py +0 -356
  524. testit_api_client-4.2.0/src/testit_api_client/model/autotest_result_outcome.py +0 -293
  525. testit_api_client-4.2.0/src/testit_api_client/model/autotest_select_model.py +0 -276
  526. testit_api_client-4.2.0/src/testit_api_client/model/autotest_select_model_extraction_model.py +0 -321
  527. testit_api_client-4.2.0/src/testit_api_client/model/autotest_select_model_filter.py +0 -415
  528. testit_api_client-4.2.0/src/testit_api_client/model/autotests_extraction_model.py +0 -262
  529. testit_api_client-4.2.0/src/testit_api_client/model/autotests_extraction_model_ids.py +0 -323
  530. testit_api_client-4.2.0/src/testit_api_client/model/autotests_select_model.py +0 -276
  531. testit_api_client-4.2.0/src/testit_api_client/model/autotests_select_model_filter.py +0 -415
  532. testit_api_client-4.2.0/src/testit_api_client/model/autotests_select_model_includes.py +0 -327
  533. testit_api_client-4.2.0/src/testit_api_client/model/available_test_result_outcome.py +0 -292
  534. testit_api_client-4.2.0/src/testit_api_client/model/background_job_attachment_model.py +0 -281
  535. testit_api_client-4.2.0/src/testit_api_client/model/background_job_filter_model.py +0 -282
  536. testit_api_client-4.2.0/src/testit_api_client/model/background_job_get_model.py +0 -326
  537. testit_api_client-4.2.0/src/testit_api_client/model/background_job_state.py +0 -293
  538. testit_api_client-4.2.0/src/testit_api_client/model/background_job_type.py +0 -304
  539. testit_api_client-4.2.0/src/testit_api_client/model/boolean_changed_field_view_model.py +0 -269
  540. testit_api_client-4.2.0/src/testit_api_client/model/boolean_nullable_changed_field_view_model.py +0 -261
  541. testit_api_client-4.2.0/src/testit_api_client/model/configuration_by_parameters_model.py +0 -271
  542. testit_api_client-4.2.0/src/testit_api_client/model/configuration_extraction_model.py +0 -268
  543. testit_api_client-4.2.0/src/testit_api_client/model/configuration_extraction_model_ids.py +0 -323
  544. testit_api_client-4.2.0/src/testit_api_client/model/configuration_extraction_model_project_ids.py +0 -323
  545. testit_api_client-4.2.0/src/testit_api_client/model/configuration_filter_model.py +0 -277
  546. testit_api_client-4.2.0/src/testit_api_client/model/configuration_model.py +0 -319
  547. testit_api_client-4.2.0/src/testit_api_client/model/configuration_post_model.py +0 -288
  548. testit_api_client-4.2.0/src/testit_api_client/model/configuration_put_model.py +0 -294
  549. testit_api_client-4.2.0/src/testit_api_client/model/configuration_select_model.py +0 -268
  550. testit_api_client-4.2.0/src/testit_api_client/model/configuration_select_model_extraction_model.py +0 -327
  551. testit_api_client-4.2.0/src/testit_api_client/model/configuration_select_model_filter.py +0 -339
  552. testit_api_client-4.2.0/src/testit_api_client/model/configuration_short.py +0 -269
  553. testit_api_client-4.2.0/src/testit_api_client/model/configuration_short_model.py +0 -269
  554. testit_api_client-4.2.0/src/testit_api_client/model/create_and_fill_by_auto_tests_request.py +0 -357
  555. testit_api_client-4.2.0/src/testit_api_client/model/create_and_fill_by_configurations_request.py +0 -353
  556. testit_api_client-4.2.0/src/testit_api_client/model/create_and_fill_by_work_items_request.py +0 -361
  557. testit_api_client-4.2.0/src/testit_api_client/model/create_configuration_request.py +0 -338
  558. testit_api_client-4.2.0/src/testit_api_client/model/create_defect_api_model.py +0 -278
  559. testit_api_client-4.2.0/src/testit_api_client/model/create_defect_api_model_form.py +0 -337
  560. testit_api_client-4.2.0/src/testit_api_client/model/create_parameter_request.py +0 -331
  561. testit_api_client-4.2.0/src/testit_api_client/model/create_project_request.py +0 -334
  562. testit_api_client-4.2.0/src/testit_api_client/model/create_projects_attribute_request.py +0 -347
  563. testit_api_client-4.2.0/src/testit_api_client/model/create_section_request.py +0 -347
  564. testit_api_client-4.2.0/src/testit_api_client/model/create_test_plan_request.py +0 -373
  565. testit_api_client-4.2.0/src/testit_api_client/model/create_work_item_request.py +0 -408
  566. testit_api_client-4.2.0/src/testit_api_client/model/custom_attribute_change_model.py +0 -273
  567. testit_api_client-4.2.0/src/testit_api_client/model/custom_attribute_get_model.py +0 -312
  568. testit_api_client-4.2.0/src/testit_api_client/model/custom_attribute_model.py +0 -316
  569. testit_api_client-4.2.0/src/testit_api_client/model/custom_attribute_option_model.py +0 -283
  570. testit_api_client-4.2.0/src/testit_api_client/model/custom_attribute_option_post_model.py +0 -271
  571. testit_api_client-4.2.0/src/testit_api_client/model/custom_attribute_post_model.py +0 -302
  572. testit_api_client-4.2.0/src/testit_api_client/model/custom_attribute_put_model.py +0 -314
  573. testit_api_client-4.2.0/src/testit_api_client/model/custom_attribute_search_query_model.py +0 -292
  574. testit_api_client-4.2.0/src/testit_api_client/model/custom_attribute_template_model.py +0 -279
  575. testit_api_client-4.2.0/src/testit_api_client/model/custom_attribute_template_post_model.py +0 -273
  576. testit_api_client-4.2.0/src/testit_api_client/model/custom_attribute_template_put_model.py +0 -279
  577. testit_api_client-4.2.0/src/testit_api_client/model/custom_attribute_template_search_query_model.py +0 -278
  578. testit_api_client-4.2.0/src/testit_api_client/model/custom_attribute_template_validation_result.py +0 -263
  579. testit_api_client-4.2.0/src/testit_api_client/model/custom_attribute_test_plan_project_relation_put_model.py +0 -275
  580. testit_api_client-4.2.0/src/testit_api_client/model/custom_attribute_types_enum.py +0 -294
  581. testit_api_client-4.2.0/src/testit_api_client/model/custom_attribute_validation_result.py +0 -263
  582. testit_api_client-4.2.0/src/testit_api_client/model/date_time_range_selector_model.py +0 -261
  583. testit_api_client-4.2.0/src/testit_api_client/model/defect_api_model.py +0 -263
  584. testit_api_client-4.2.0/src/testit_api_client/model/deletion_state.py +0 -291
  585. testit_api_client-4.2.0/src/testit_api_client/model/external_form_allowed_value_model.py +0 -275
  586. testit_api_client-4.2.0/src/testit_api_client/model/external_form_create_model.py +0 -290
  587. testit_api_client-4.2.0/src/testit_api_client/model/external_form_field_model.py +0 -315
  588. testit_api_client-4.2.0/src/testit_api_client/model/external_form_link_model.py +0 -269
  589. testit_api_client-4.2.0/src/testit_api_client/model/external_form_model.py +0 -284
  590. testit_api_client-4.2.0/src/testit_api_client/model/external_link_model.py +0 -285
  591. testit_api_client-4.2.0/src/testit_api_client/model/failure_category_model.py +0 -293
  592. testit_api_client-4.2.0/src/testit_api_client/model/failure_class_model.py +0 -310
  593. testit_api_client-4.2.0/src/testit_api_client/model/failure_class_regex_model.py +0 -279
  594. testit_api_client-4.2.0/src/testit_api_client/model/filter_model.py +0 -316
  595. testit_api_client-4.2.0/src/testit_api_client/model/filter_model_data.py +0 -435
  596. testit_api_client-4.2.0/src/testit_api_client/model/flaky_bulk_model.py +0 -274
  597. testit_api_client-4.2.0/src/testit_api_client/model/flaky_bulk_model_autotest_select.py +0 -327
  598. testit_api_client-4.2.0/src/testit_api_client/model/get_external_form_api_result.py +0 -274
  599. testit_api_client-4.2.0/src/testit_api_client/model/get_external_form_api_result_form.py +0 -333
  600. testit_api_client-4.2.0/src/testit_api_client/model/get_xlsx_test_points_by_test_plan_model.py +0 -337
  601. testit_api_client-4.2.0/src/testit_api_client/model/global_custom_attribute_post_model.py +0 -292
  602. testit_api_client-4.2.0/src/testit_api_client/model/global_custom_attribute_update_model.py +0 -284
  603. testit_api_client-4.2.0/src/testit_api_client/model/global_search_item_result.py +0 -285
  604. testit_api_client-4.2.0/src/testit_api_client/model/global_search_request.py +0 -279
  605. testit_api_client-4.2.0/src/testit_api_client/model/global_search_response.py +0 -280
  606. testit_api_client-4.2.0/src/testit_api_client/model/guid_changed_field_view_model.py +0 -269
  607. testit_api_client-4.2.0/src/testit_api_client/model/guid_extraction_model.py +0 -261
  608. testit_api_client-4.2.0/src/testit_api_client/model/image_resize_type.py +0 -290
  609. testit_api_client-4.2.0/src/testit_api_client/model/int32_changed_field_view_model.py +0 -269
  610. testit_api_client-4.2.0/src/testit_api_client/model/int32_range_selector_model.py +0 -261
  611. testit_api_client-4.2.0/src/testit_api_client/model/int64_changed_field_view_model.py +0 -269
  612. testit_api_client-4.2.0/src/testit_api_client/model/int64_range_selector_model.py +0 -261
  613. testit_api_client-4.2.0/src/testit_api_client/model/iteration_model.py +0 -272
  614. testit_api_client-4.2.0/src/testit_api_client/model/iteration_put_model.py +0 -274
  615. testit_api_client-4.2.0/src/testit_api_client/model/label.py +0 -272
  616. testit_api_client-4.2.0/src/testit_api_client/model/label_post_model.py +0 -266
  617. testit_api_client-4.2.0/src/testit_api_client/model/label_short_model.py +0 -272
  618. testit_api_client-4.2.0/src/testit_api_client/model/last_test_result_model.py +0 -298
  619. testit_api_client-4.2.0/src/testit_api_client/model/link.py +0 -293
  620. testit_api_client-4.2.0/src/testit_api_client/model/link_model.py +0 -293
  621. testit_api_client-4.2.0/src/testit_api_client/model/link_post_model.py +0 -289
  622. testit_api_client-4.2.0/src/testit_api_client/model/link_put_model.py +0 -293
  623. testit_api_client-4.2.0/src/testit_api_client/model/link_short.py +0 -269
  624. testit_api_client-4.2.0/src/testit_api_client/model/link_short_model.py +0 -275
  625. testit_api_client-4.2.0/src/testit_api_client/model/link_type.py +0 -294
  626. testit_api_client-4.2.0/src/testit_api_client/model/manual_rerun_result_model.py +0 -263
  627. testit_api_client-4.2.0/src/testit_api_client/model/manual_rerun_select_model.py +0 -268
  628. testit_api_client-4.2.0/src/testit_api_client/model/move_request.py +0 -331
  629. testit_api_client-4.2.0/src/testit_api_client/model/named_entity_model.py +0 -265
  630. testit_api_client-4.2.0/src/testit_api_client/model/notification_model.py +0 -336
  631. testit_api_client-4.2.0/src/testit_api_client/model/notification_query_filter_model.py +0 -274
  632. testit_api_client-4.2.0/src/testit_api_client/model/notification_type_model.py +0 -292
  633. testit_api_client-4.2.0/src/testit_api_client/model/operation.py +0 -269
  634. testit_api_client-4.2.0/src/testit_api_client/model/parameter_filter_model.py +0 -261
  635. testit_api_client-4.2.0/src/testit_api_client/model/parameter_group_model.py +0 -275
  636. testit_api_client-4.2.0/src/testit_api_client/model/parameter_iteration_model.py +0 -263
  637. testit_api_client-4.2.0/src/testit_api_client/model/parameter_model.py +0 -315
  638. testit_api_client-4.2.0/src/testit_api_client/model/parameter_post_model.py +0 -277
  639. testit_api_client-4.2.0/src/testit_api_client/model/parameter_put_model.py +0 -283
  640. testit_api_client-4.2.0/src/testit_api_client/model/parameter_short_model.py +0 -289
  641. testit_api_client-4.2.0/src/testit_api_client/model/period_view_model.py +0 -261
  642. testit_api_client-4.2.0/src/testit_api_client/model/period_view_model_changed_field_view_model.py +0 -266
  643. testit_api_client-4.2.0/src/testit_api_client/model/problem_details.py +0 -279
  644. testit_api_client-4.2.0/src/testit_api_client/model/project_attributes_filter_model.py +0 -288
  645. testit_api_client-4.2.0/src/testit_api_client/model/project_custom_attribute_template_get_model.py +0 -286
  646. testit_api_client-4.2.0/src/testit_api_client/model/project_custom_attributes_templates_filter_model.py +0 -268
  647. testit_api_client-4.2.0/src/testit_api_client/model/project_extraction_model.py +0 -262
  648. testit_api_client-4.2.0/src/testit_api_client/model/project_model.py +0 -354
  649. testit_api_client-4.2.0/src/testit_api_client/model/project_post_model.py +0 -278
  650. testit_api_client-4.2.0/src/testit_api_client/model/project_put_model.py +0 -295
  651. testit_api_client-4.2.0/src/testit_api_client/model/project_select_model.py +0 -268
  652. testit_api_client-4.2.0/src/testit_api_client/model/project_short_model.py +0 -344
  653. testit_api_client-4.2.0/src/testit_api_client/model/project_shortest_model.py +0 -292
  654. testit_api_client-4.2.0/src/testit_api_client/model/project_test_plans_filter_model.py +0 -350
  655. testit_api_client-4.2.0/src/testit_api_client/model/project_type_model.py +0 -290
  656. testit_api_client-4.2.0/src/testit_api_client/model/projects_filter_model.py +0 -322
  657. testit_api_client-4.2.0/src/testit_api_client/model/projects_filter_model_autotests_count.py +0 -323
  658. testit_api_client-4.2.0/src/testit_api_client/model/projects_filter_model_checklists_count.py +0 -323
  659. testit_api_client-4.2.0/src/testit_api_client/model/projects_filter_model_created_date.py +0 -323
  660. testit_api_client-4.2.0/src/testit_api_client/model/projects_filter_model_shared_steps_count.py +0 -323
  661. testit_api_client-4.2.0/src/testit_api_client/model/projects_filter_model_test_cases_count.py +0 -323
  662. testit_api_client-4.2.0/src/testit_api_client/model/public_test_point_model.py +0 -294
  663. testit_api_client-4.2.0/src/testit_api_client/model/public_test_run_model.py +0 -328
  664. testit_api_client-4.2.0/src/testit_api_client/model/rename_request.py +0 -327
  665. testit_api_client-4.2.0/src/testit_api_client/model/request_type_model.py +0 -291
  666. testit_api_client-4.2.0/src/testit_api_client/model/request_type_request.py +0 -291
  667. testit_api_client-4.2.0/src/testit_api_client/model/rerun_test_result_model.py +0 -273
  668. testit_api_client-4.2.0/src/testit_api_client/model/reruns_model.py +0 -274
  669. testit_api_client-4.2.0/src/testit_api_client/model/search_attributes_in_project_request.py +0 -339
  670. testit_api_client-4.2.0/src/testit_api_client/model/search_auto_tests_query_includes_model.py +0 -275
  671. testit_api_client-4.2.0/src/testit_api_client/model/search_custom_attribute_template_get_model.py +0 -294
  672. testit_api_client-4.2.0/src/testit_api_client/model/search_webhooks_query_model.py +0 -290
  673. testit_api_client-4.2.0/src/testit_api_client/model/search_work_items_request.py +0 -463
  674. testit_api_client-4.2.0/src/testit_api_client/model/section_model.py +0 -306
  675. testit_api_client-4.2.0/src/testit_api_client/model/section_move_model.py +0 -279
  676. testit_api_client-4.2.0/src/testit_api_client/model/section_post_model.py +0 -298
  677. testit_api_client-4.2.0/src/testit_api_client/model/section_put_model.py +0 -304
  678. testit_api_client-4.2.0/src/testit_api_client/model/section_rename_model.py +0 -273
  679. testit_api_client-4.2.0/src/testit_api_client/model/section_shared_step.py +0 -337
  680. testit_api_client-4.2.0/src/testit_api_client/model/section_with_steps_model.py +0 -325
  681. testit_api_client-4.2.0/src/testit_api_client/model/set_of_attachment_ids.py +0 -325
  682. testit_api_client-4.2.0/src/testit_api_client/model/set_of_links.py +0 -327
  683. testit_api_client-4.2.0/src/testit_api_client/model/shared_step_change_view_model.py +0 -286
  684. testit_api_client-4.2.0/src/testit_api_client/model/shared_step_model.py +0 -292
  685. testit_api_client-4.2.0/src/testit_api_client/model/shared_step_reference_model.py +0 -364
  686. testit_api_client-4.2.0/src/testit_api_client/model/shared_step_reference_section_model.py +0 -305
  687. testit_api_client-4.2.0/src/testit_api_client/model/shared_step_reference_sections_query_filter_model.py +0 -284
  688. testit_api_client-4.2.0/src/testit_api_client/model/shared_step_reference_sections_query_filter_model_created_date.py +0 -323
  689. testit_api_client-4.2.0/src/testit_api_client/model/shared_step_reference_sections_query_filter_model_modified_date.py +0 -323
  690. testit_api_client-4.2.0/src/testit_api_client/model/shared_step_references_query_filter_model.py +0 -328
  691. testit_api_client-4.2.0/src/testit_api_client/model/shared_step_result.py +0 -269
  692. testit_api_client-4.2.0/src/testit_api_client/model/shared_step_result_model.py +0 -269
  693. testit_api_client-4.2.0/src/testit_api_client/model/short_configuration.py +0 -269
  694. testit_api_client-4.2.0/src/testit_api_client/model/step_comment.py +0 -312
  695. testit_api_client-4.2.0/src/testit_api_client/model/step_comment_model.py +0 -312
  696. testit_api_client-4.2.0/src/testit_api_client/model/step_model.py +0 -292
  697. testit_api_client-4.2.0/src/testit_api_client/model/step_post_model.py +0 -273
  698. testit_api_client-4.2.0/src/testit_api_client/model/step_put_model.py +0 -283
  699. testit_api_client-4.2.0/src/testit_api_client/model/step_result.py +0 -288
  700. testit_api_client-4.2.0/src/testit_api_client/model/step_result_model.py +0 -288
  701. testit_api_client-4.2.0/src/testit_api_client/model/string_array_changed_field_view_model.py +0 -261
  702. testit_api_client-4.2.0/src/testit_api_client/model/string_changed_field_view_model.py +0 -261
  703. testit_api_client-4.2.0/src/testit_api_client/model/string_changed_field_with_diffs_view_model.py +0 -265
  704. testit_api_client-4.2.0/src/testit_api_client/model/tag_extraction_model.py +0 -262
  705. testit_api_client-4.2.0/src/testit_api_client/model/tag_model.py +0 -292
  706. testit_api_client-4.2.0/src/testit_api_client/model/tag_post_model.py +0 -267
  707. testit_api_client-4.2.0/src/testit_api_client/model/tag_put_model.py +0 -267
  708. testit_api_client-4.2.0/src/testit_api_client/model/tag_select_model.py +0 -268
  709. testit_api_client-4.2.0/src/testit_api_client/model/tag_short_model.py +0 -266
  710. testit_api_client-4.2.0/src/testit_api_client/model/tags_filter_model.py +0 -276
  711. testit_api_client-4.2.0/src/testit_api_client/model/tags_filter_model_created_date.py +0 -323
  712. testit_api_client-4.2.0/src/testit_api_client/model/test_plan_change_model.py +0 -290
  713. testit_api_client-4.2.0/src/testit_api_client/model/test_plan_change_model_test_plan_changed_fields.py +0 -385
  714. testit_api_client-4.2.0/src/testit_api_client/model/test_plan_changed_fields_view_model.py +0 -326
  715. testit_api_client-4.2.0/src/testit_api_client/model/test_plan_extraction_model.py +0 -262
  716. testit_api_client-4.2.0/src/testit_api_client/model/test_plan_group_by_status.py +0 -269
  717. testit_api_client-4.2.0/src/testit_api_client/model/test_plan_group_by_test_suite.py +0 -275
  718. testit_api_client-4.2.0/src/testit_api_client/model/test_plan_group_by_tester.py +0 -267
  719. testit_api_client-4.2.0/src/testit_api_client/model/test_plan_group_by_tester_and_status.py +0 -273
  720. testit_api_client-4.2.0/src/testit_api_client/model/test_plan_link.py +0 -288
  721. testit_api_client-4.2.0/src/testit_api_client/model/test_plan_model.py +0 -384
  722. testit_api_client-4.2.0/src/testit_api_client/model/test_plan_post_model.py +0 -324
  723. testit_api_client-4.2.0/src/testit_api_client/model/test_plan_put_model.py +0 -334
  724. testit_api_client-4.2.0/src/testit_api_client/model/test_plan_select_model.py +0 -274
  725. testit_api_client-4.2.0/src/testit_api_client/model/test_plan_short_model.py +0 -275
  726. testit_api_client-4.2.0/src/testit_api_client/model/test_plan_status_model.py +0 -292
  727. testit_api_client-4.2.0/src/testit_api_client/model/test_plan_summary_model.py +0 -297
  728. testit_api_client-4.2.0/src/testit_api_client/model/test_plan_with_analytic_model.py +0 -392
  729. testit_api_client-4.2.0/src/testit_api_client/model/test_plan_with_analytic_model_analytic.py +0 -343
  730. testit_api_client-4.2.0/src/testit_api_client/model/test_plan_with_test_suite_tree_model.py +0 -392
  731. testit_api_client-4.2.0/src/testit_api_client/model/test_point.py +0 -310
  732. testit_api_client-4.2.0/src/testit_api_client/model/test_point_analytic_result.py +0 -298
  733. testit_api_client-4.2.0/src/testit_api_client/model/test_point_by_test_suite_model.py +0 -293
  734. testit_api_client-4.2.0/src/testit_api_client/model/test_point_change_view_model.py +0 -273
  735. testit_api_client-4.2.0/src/testit_api_client/model/test_point_change_view_model_changed_field_view_model.py +0 -266
  736. testit_api_client-4.2.0/src/testit_api_client/model/test_point_filter_model.py +0 -368
  737. testit_api_client-4.2.0/src/testit_api_client/model/test_point_filter_model_created_date.py +0 -323
  738. testit_api_client-4.2.0/src/testit_api_client/model/test_point_filter_model_duration.py +0 -323
  739. testit_api_client-4.2.0/src/testit_api_client/model/test_point_filter_model_modified_date.py +0 -323
  740. testit_api_client-4.2.0/src/testit_api_client/model/test_point_filter_model_work_item_created_date.py +0 -323
  741. testit_api_client-4.2.0/src/testit_api_client/model/test_point_filter_model_work_item_median_duration.py +0 -323
  742. testit_api_client-4.2.0/src/testit_api_client/model/test_point_filter_model_work_item_modified_date.py +0 -323
  743. testit_api_client-4.2.0/src/testit_api_client/model/test_point_put_model.py +0 -312
  744. testit_api_client-4.2.0/src/testit_api_client/model/test_point_put_model_status_model.py +0 -327
  745. testit_api_client-4.2.0/src/testit_api_client/model/test_point_related_to_test_result.py +0 -351
  746. testit_api_client-4.2.0/src/testit_api_client/model/test_point_result_model.py +0 -288
  747. testit_api_client-4.2.0/src/testit_api_client/model/test_point_select_model.py +0 -268
  748. testit_api_client-4.2.0/src/testit_api_client/model/test_point_selector.py +0 -269
  749. testit_api_client-4.2.0/src/testit_api_client/model/test_point_short_get_model.py +0 -450
  750. testit_api_client-4.2.0/src/testit_api_client/model/test_point_short_model.py +0 -299
  751. testit_api_client-4.2.0/src/testit_api_client/model/test_point_status.py +0 -294
  752. testit_api_client-4.2.0/src/testit_api_client/model/test_point_with_last_result_model.py +0 -378
  753. testit_api_client-4.2.0/src/testit_api_client/model/test_points_extraction_model.py +0 -262
  754. testit_api_client-4.2.0/src/testit_api_client/model/test_points_extraction_model_ids.py +0 -323
  755. testit_api_client-4.2.0/src/testit_api_client/model/test_result_change_view_model.py +0 -263
  756. testit_api_client-4.2.0/src/testit_api_client/model/test_result_change_view_model_changed_field_view_model.py +0 -266
  757. testit_api_client-4.2.0/src/testit_api_client/model/test_result_chronology_model.py +0 -267
  758. testit_api_client-4.2.0/src/testit_api_client/model/test_result_configuration.py +0 -363
  759. testit_api_client-4.2.0/src/testit_api_client/model/test_result_extraction_model.py +0 -262
  760. testit_api_client-4.2.0/src/testit_api_client/model/test_result_history_response.py +0 -382
  761. testit_api_client-4.2.0/src/testit_api_client/model/test_result_model.py +0 -430
  762. testit_api_client-4.2.0/src/testit_api_client/model/test_result_outcome.py +0 -293
  763. testit_api_client-4.2.0/src/testit_api_client/model/test_result_response.py +0 -430
  764. testit_api_client-4.2.0/src/testit_api_client/model/test_result_short_model.py +0 -308
  765. testit_api_client-4.2.0/src/testit_api_client/model/test_result_short_response.py +0 -368
  766. testit_api_client-4.2.0/src/testit_api_client/model/test_result_step_comment_update_request.py +0 -290
  767. testit_api_client-4.2.0/src/testit_api_client/model/test_result_update_v2_request.py +0 -330
  768. testit_api_client-4.2.0/src/testit_api_client/model/test_result_v2_get_model.py +0 -364
  769. testit_api_client-4.2.0/src/testit_api_client/model/test_result_v2_short_model.py +0 -352
  770. testit_api_client-4.2.0/src/testit_api_client/model/test_results_extraction_api_model.py +0 -262
  771. testit_api_client-4.2.0/src/testit_api_client/model/test_results_extraction_api_model_ids.py +0 -323
  772. testit_api_client-4.2.0/src/testit_api_client/model/test_results_filter_model.py +0 -324
  773. testit_api_client-4.2.0/src/testit_api_client/model/test_results_filter_request.py +0 -338
  774. testit_api_client-4.2.0/src/testit_api_client/model/test_results_filter_request_completed_on.py +0 -323
  775. testit_api_client-4.2.0/src/testit_api_client/model/test_results_filter_request_created_date.py +0 -323
  776. testit_api_client-4.2.0/src/testit_api_client/model/test_results_filter_request_duration.py +0 -323
  777. testit_api_client-4.2.0/src/testit_api_client/model/test_results_filter_request_modified_date.py +0 -323
  778. testit_api_client-4.2.0/src/testit_api_client/model/test_results_filter_request_started_on.py +0 -323
  779. testit_api_client-4.2.0/src/testit_api_client/model/test_results_local_filter_model.py +0 -292
  780. testit_api_client-4.2.0/src/testit_api_client/model/test_results_select_api_model.py +0 -276
  781. testit_api_client-4.2.0/src/testit_api_client/model/test_results_select_api_model_extraction_model.py +0 -321
  782. testit_api_client-4.2.0/src/testit_api_client/model/test_results_select_api_model_filter.py +0 -397
  783. testit_api_client-4.2.0/src/testit_api_client/model/test_results_statistics_failure_categories.py +0 -275
  784. testit_api_client-4.2.0/src/testit_api_client/model/test_results_statistics_get_model.py +0 -276
  785. testit_api_client-4.2.0/src/testit_api_client/model/test_results_statistics_get_model_failure_categories.py +0 -327
  786. testit_api_client-4.2.0/src/testit_api_client/model/test_results_statistics_get_model_statuses.py +0 -335
  787. testit_api_client-4.2.0/src/testit_api_client/model/test_results_statistics_response.py +0 -276
  788. testit_api_client-4.2.0/src/testit_api_client/model/test_results_statistics_response_failure_categories.py +0 -327
  789. testit_api_client-4.2.0/src/testit_api_client/model/test_results_statistics_response_statuses.py +0 -335
  790. testit_api_client-4.2.0/src/testit_api_client/model/test_results_statistics_statuses.py +0 -287
  791. testit_api_client-4.2.0/src/testit_api_client/model/test_run_analytic_result_model.py +0 -268
  792. testit_api_client-4.2.0/src/testit_api_client/model/test_run_extraction_model.py +0 -262
  793. testit_api_client-4.2.0/src/testit_api_client/model/test_run_extraction_model_ids.py +0 -323
  794. testit_api_client-4.2.0/src/testit_api_client/model/test_run_fill_by_auto_tests_post_model.py +0 -308
  795. testit_api_client-4.2.0/src/testit_api_client/model/test_run_fill_by_configurations_post_model.py +0 -304
  796. testit_api_client-4.2.0/src/testit_api_client/model/test_run_fill_by_work_items_post_model.py +0 -314
  797. testit_api_client-4.2.0/src/testit_api_client/model/test_run_filter_model.py +0 -330
  798. testit_api_client-4.2.0/src/testit_api_client/model/test_run_filter_model_auto_tests_count.py +0 -323
  799. testit_api_client-4.2.0/src/testit_api_client/model/test_run_filter_model_completed_date.py +0 -323
  800. testit_api_client-4.2.0/src/testit_api_client/model/test_run_filter_model_created_date.py +0 -323
  801. testit_api_client-4.2.0/src/testit_api_client/model/test_run_filter_model_started_date.py +0 -323
  802. testit_api_client-4.2.0/src/testit_api_client/model/test_run_group_by_failure_class_model.py +0 -269
  803. testit_api_client-4.2.0/src/testit_api_client/model/test_run_group_by_status_model.py +0 -269
  804. testit_api_client-4.2.0/src/testit_api_client/model/test_run_model.py +0 -400
  805. testit_api_client-4.2.0/src/testit_api_client/model/test_run_model_analytic.py +0 -327
  806. testit_api_client-4.2.0/src/testit_api_client/model/test_run_search_query_model.py +0 -294
  807. testit_api_client-4.2.0/src/testit_api_client/model/test_run_select_model.py +0 -276
  808. testit_api_client-4.2.0/src/testit_api_client/model/test_run_select_model_extraction_model.py +0 -321
  809. testit_api_client-4.2.0/src/testit_api_client/model/test_run_selection_model.py +0 -327
  810. testit_api_client-4.2.0/src/testit_api_client/model/test_run_short_get_model.py +0 -332
  811. testit_api_client-4.2.0/src/testit_api_client/model/test_run_short_get_model_statistics.py +0 -327
  812. testit_api_client-4.2.0/src/testit_api_client/model/test_run_short_model.py +0 -298
  813. testit_api_client-4.2.0/src/testit_api_client/model/test_run_state.py +0 -292
  814. testit_api_client-4.2.0/src/testit_api_client/model/test_run_statistics_error_categories_get_model.py +0 -275
  815. testit_api_client-4.2.0/src/testit_api_client/model/test_run_statistics_statuses_get_model.py +0 -287
  816. testit_api_client-4.2.0/src/testit_api_client/model/test_run_test_results_partial_bulk_set_model.py +0 -286
  817. testit_api_client-4.2.0/src/testit_api_client/model/test_run_test_results_partial_bulk_set_model_selector.py +0 -327
  818. testit_api_client-4.2.0/src/testit_api_client/model/test_run_test_results_select_model.py +0 -268
  819. testit_api_client-4.2.0/src/testit_api_client/model/test_run_test_results_select_model_filter.py +0 -351
  820. testit_api_client-4.2.0/src/testit_api_client/model/test_run_test_results_select_model_test_result_ids_extraction_model.py +0 -323
  821. testit_api_client-4.2.0/src/testit_api_client/model/test_run_update_multiple_model.py +0 -288
  822. testit_api_client-4.2.0/src/testit_api_client/model/test_run_v2_get_model.py +0 -373
  823. testit_api_client-4.2.0/src/testit_api_client/model/test_run_v2_post_short_model.py +0 -290
  824. testit_api_client-4.2.0/src/testit_api_client/model/test_run_v2_put_model.py +0 -295
  825. testit_api_client-4.2.0/src/testit_api_client/model/test_status.py +0 -302
  826. testit_api_client-4.2.0/src/testit_api_client/model/test_status_create_model.py +0 -296
  827. testit_api_client-4.2.0/src/testit_api_client/model/test_status_model.py +0 -275
  828. testit_api_client-4.2.0/src/testit_api_client/model/test_status_type.py +0 -293
  829. testit_api_client-4.2.0/src/testit_api_client/model/test_status_update_model.py +0 -281
  830. testit_api_client-4.2.0/src/testit_api_client/model/test_suite_change_view_model.py +0 -284
  831. testit_api_client-4.2.0/src/testit_api_client/model/test_suite_change_view_model_changed_field_view_model.py +0 -266
  832. testit_api_client-4.2.0/src/testit_api_client/model/test_suite_type.py +0 -291
  833. testit_api_client-4.2.0/src/testit_api_client/model/test_suite_v2_get_model.py +0 -304
  834. testit_api_client-4.2.0/src/testit_api_client/model/test_suite_v2_post_model.py +0 -294
  835. testit_api_client-4.2.0/src/testit_api_client/model/test_suite_v2_put_model.py +0 -287
  836. testit_api_client-4.2.0/src/testit_api_client/model/test_suite_v2_tree_model.py +0 -308
  837. testit_api_client-4.2.0/src/testit_api_client/model/test_suite_with_children_model.py +0 -293
  838. testit_api_client-4.2.0/src/testit_api_client/model/test_suite_work_items_search_model.py +0 -404
  839. testit_api_client-4.2.0/src/testit_api_client/model/test_suite_work_items_search_model_duration.py +0 -323
  840. testit_api_client-4.2.0/src/testit_api_client/model/test_suite_work_items_search_model_median_duration.py +0 -323
  841. testit_api_client-4.2.0/src/testit_api_client/model/update_attachment_short_model.py +0 -272
  842. testit_api_client-4.2.0/src/testit_api_client/model/update_custom_attribute_test_plan_project_relations_request.py +0 -327
  843. testit_api_client-4.2.0/src/testit_api_client/model/update_link_short_model.py +0 -274
  844. testit_api_client-4.2.0/src/testit_api_client/model/update_parameter_request.py +0 -335
  845. testit_api_client-4.2.0/src/testit_api_client/model/update_project_request.py +0 -344
  846. testit_api_client-4.2.0/src/testit_api_client/model/update_projects_attribute_request.py +0 -355
  847. testit_api_client-4.2.0/src/testit_api_client/model/update_section_request.py +0 -351
  848. testit_api_client-4.2.0/src/testit_api_client/model/update_test_plan_request.py +0 -381
  849. testit_api_client-4.2.0/src/testit_api_client/model/update_work_item_request.py +0 -402
  850. testit_api_client-4.2.0/src/testit_api_client/model/user_custom_name_validation_response.py +0 -263
  851. testit_api_client-4.2.0/src/testit_api_client/model/user_rank_model.py +0 -299
  852. testit_api_client-4.2.0/src/testit_api_client/model/user_with_rank_model.py +0 -344
  853. testit_api_client-4.2.0/src/testit_api_client/model/user_with_rank_model_user_rank.py +0 -343
  854. testit_api_client-4.2.0/src/testit_api_client/model/validation_problem_details.py +0 -289
  855. testit_api_client-4.2.0/src/testit_api_client/model/web_hook_event_type.py +0 -305
  856. testit_api_client-4.2.0/src/testit_api_client/model/web_hook_event_type_model.py +0 -305
  857. testit_api_client-4.2.0/src/testit_api_client/model/web_hook_event_type_request.py +0 -305
  858. testit_api_client-4.2.0/src/testit_api_client/model/web_hook_log_model.py +0 -352
  859. testit_api_client-4.2.0/src/testit_api_client/model/web_hook_model.py +0 -376
  860. testit_api_client-4.2.0/src/testit_api_client/model/web_hook_post_model.py +0 -351
  861. testit_api_client-4.2.0/src/testit_api_client/model/web_hook_test_model.py +0 -277
  862. testit_api_client-4.2.0/src/testit_api_client/model/webhook_bulk_update_api_model.py +0 -263
  863. testit_api_client-4.2.0/src/testit_api_client/model/webhook_response.py +0 -289
  864. testit_api_client-4.2.0/src/testit_api_client/model/webhook_variables_type.py +0 -291
  865. testit_api_client-4.2.0/src/testit_api_client/model/webhooks_delete_filter_request.py +0 -290
  866. testit_api_client-4.2.0/src/testit_api_client/model/webhooks_delete_request.py +0 -276
  867. testit_api_client-4.2.0/src/testit_api_client/model/webhooks_delete_request_extractor.py +0 -321
  868. testit_api_client-4.2.0/src/testit_api_client/model/webhooks_delete_request_filter.py +0 -349
  869. testit_api_client-4.2.0/src/testit_api_client/model/webhooks_extraction_request.py +0 -262
  870. testit_api_client-4.2.0/src/testit_api_client/model/webhooks_filter_request.py +0 -286
  871. testit_api_client-4.2.0/src/testit_api_client/model/webhooks_update_request.py +0 -284
  872. testit_api_client-4.2.0/src/testit_api_client/model/webhooks_update_request_filter.py +0 -345
  873. testit_api_client-4.2.0/src/testit_api_client/model/webhooks_update_request_model.py +0 -319
  874. testit_api_client-4.2.0/src/testit_api_client/model/webhooks_update_response.py +0 -263
  875. testit_api_client-4.2.0/src/testit_api_client/model/work_item_change_model.py +0 -302
  876. testit_api_client-4.2.0/src/testit_api_client/model/work_item_change_model_work_item_changed_fields.py +0 -419
  877. testit_api_client-4.2.0/src/testit_api_client/model/work_item_changed_attribute_view_model.py +0 -287
  878. testit_api_client-4.2.0/src/testit_api_client/model/work_item_changed_fields_view_model.py +0 -400
  879. testit_api_client-4.2.0/src/testit_api_client/model/work_item_changed_fields_view_model_attachments.py +0 -325
  880. testit_api_client-4.2.0/src/testit_api_client/model/work_item_changed_fields_view_model_auto_tests.py +0 -325
  881. testit_api_client-4.2.0/src/testit_api_client/model/work_item_changed_fields_view_model_duration.py +0 -323
  882. testit_api_client-4.2.0/src/testit_api_client/model/work_item_changed_fields_view_model_global_id.py +0 -323
  883. testit_api_client-4.2.0/src/testit_api_client/model/work_item_changed_fields_view_model_is_deleted.py +0 -323
  884. testit_api_client-4.2.0/src/testit_api_client/model/work_item_changed_fields_view_model_links.py +0 -325
  885. testit_api_client-4.2.0/src/testit_api_client/model/work_item_changed_fields_view_model_project_id.py +0 -323
  886. testit_api_client-4.2.0/src/testit_api_client/model/work_item_changed_fields_view_model_state.py +0 -323
  887. testit_api_client-4.2.0/src/testit_api_client/model/work_item_changed_fields_view_model_steps.py +0 -329
  888. testit_api_client-4.2.0/src/testit_api_client/model/work_item_changed_fields_view_model_tags.py +0 -323
  889. testit_api_client-4.2.0/src/testit_api_client/model/work_item_comment_model.py +0 -300
  890. testit_api_client-4.2.0/src/testit_api_client/model/work_item_comment_model_user.py +0 -373
  891. testit_api_client-4.2.0/src/testit_api_client/model/work_item_comment_post_model.py +0 -273
  892. testit_api_client-4.2.0/src/testit_api_client/model/work_item_comment_put_model.py +0 -273
  893. testit_api_client-4.2.0/src/testit_api_client/model/work_item_entity_types.py +0 -291
  894. testit_api_client-4.2.0/src/testit_api_client/model/work_item_extraction_model.py +0 -274
  895. testit_api_client-4.2.0/src/testit_api_client/model/work_item_extraction_model_ids.py +0 -323
  896. testit_api_client-4.2.0/src/testit_api_client/model/work_item_extraction_model_section_ids.py +0 -323
  897. testit_api_client-4.2.0/src/testit_api_client/model/work_item_filter_model.py +0 -392
  898. testit_api_client-4.2.0/src/testit_api_client/model/work_item_group_get_model.py +0 -278
  899. testit_api_client-4.2.0/src/testit_api_client/model/work_item_group_get_model_select_model.py +0 -327
  900. testit_api_client-4.2.0/src/testit_api_client/model/work_item_group_model.py +0 -278
  901. testit_api_client-4.2.0/src/testit_api_client/model/work_item_group_type.py +0 -295
  902. testit_api_client-4.2.0/src/testit_api_client/model/work_item_id_model.py +0 -266
  903. testit_api_client-4.2.0/src/testit_api_client/model/work_item_identifier_model.py +0 -269
  904. testit_api_client-4.2.0/src/testit_api_client/model/work_item_like_model.py +0 -295
  905. testit_api_client-4.2.0/src/testit_api_client/model/work_item_link_change_view_model.py +0 -293
  906. testit_api_client-4.2.0/src/testit_api_client/model/work_item_link_change_view_model_array_changed_field_view_model.py +0 -266
  907. testit_api_client-4.2.0/src/testit_api_client/model/work_item_local_filter_model.py +0 -370
  908. testit_api_client-4.2.0/src/testit_api_client/model/work_item_local_select_model.py +0 -268
  909. testit_api_client-4.2.0/src/testit_api_client/model/work_item_local_select_model_extraction_model.py +0 -333
  910. testit_api_client-4.2.0/src/testit_api_client/model/work_item_local_select_model_filter.py +0 -429
  911. testit_api_client-4.2.0/src/testit_api_client/model/work_item_model.py +0 -449
  912. testit_api_client-4.2.0/src/testit_api_client/model/work_item_move_post_model.py +0 -277
  913. testit_api_client-4.2.0/src/testit_api_client/model/work_item_post_model.py +0 -379
  914. testit_api_client-4.2.0/src/testit_api_client/model/work_item_priority_model.py +0 -293
  915. testit_api_client-4.2.0/src/testit_api_client/model/work_item_put_model.py +0 -373
  916. testit_api_client-4.2.0/src/testit_api_client/model/work_item_search_query_model.py +0 -376
  917. testit_api_client-4.2.0/src/testit_api_client/model/work_item_select_model.py +0 -274
  918. testit_api_client-4.2.0/src/testit_api_client/model/work_item_select_model_filter.py +0 -451
  919. testit_api_client-4.2.0/src/testit_api_client/model/work_item_short_model.py +0 -403
  920. testit_api_client-4.2.0/src/testit_api_client/model/work_item_state.py +0 -291
  921. testit_api_client-4.2.0/src/testit_api_client/model/work_item_states.py +0 -291
  922. testit_api_client-4.2.0/src/testit_api_client/model/work_item_step_change_view_model.py +0 -302
  923. 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 -270
  924. testit_api_client-4.2.0/src/testit_api_client/model/work_item_step_change_view_model_work_item.py +0 -333
  925. testit_api_client-4.2.0/src/testit_api_client/model/work_item_version_model.py +0 -277
  926. testit_api_client-4.2.0/src/testit_api_client/model_utils.py +0 -2058
  927. testit_api_client-4.2.0/src/testit_api_client/models/__init__.py +0 -503
  928. testit_api_client-4.2.0/src/testit_api_client/rest.py +0 -356
  929. testit_api_client-4.2.0/src/testit_api_client.egg-info/PKG-INFO +0 -385
  930. testit_api_client-4.2.0/src/testit_api_client.egg-info/SOURCES.txt +0 -541
  931. testit_api_client-4.2.0/src/testit_api_client.egg-info/requires.txt +0 -2
  932. {testit_api_client-4.2.0 → testit_api_client-5.1.0}/LICENSE.md +0 -0
  933. {testit_api_client-4.2.0 → testit_api_client-5.1.0}/setup.cfg +0 -0
  934. {testit_api_client-4.2.0 → testit_api_client-5.1.0}/src/testit_api_client.egg-info/dependency_links.txt +0 -0
  935. {testit_api_client-4.2.0 → testit_api_client-5.1.0}/src/testit_api_client.egg-info/top_level.txt +0 -0
@@ -0,0 +1,397 @@
1
+ Metadata-Version: 2.2
2
+ Name: testit-api-client
3
+ Version: 5.1.0
4
+ Summary: API-client for Test IT
5
+ Home-page: https://pypi.org/project/testit-api-client/
6
+ Author: Integration team
7
+ Author-email: integrations@testit.software
8
+ Requires-Python: >= 3.8
9
+ Description-Content-Type: text/markdown
10
+ License-File: LICENSE.md
11
+ Requires-Dist: urllib3<3.0.0,>=1.25.3
12
+ Requires-Dist: python-dateutil>=2.8.2
13
+ Requires-Dist: pydantic>=2
14
+ Requires-Dist: typing-extensions>=4.7.1
15
+ Dynamic: author
16
+ Dynamic: author-email
17
+ Dynamic: description
18
+ Dynamic: description-content-type
19
+ Dynamic: home-page
20
+ Dynamic: requires-dist
21
+ Dynamic: requires-python
22
+ Dynamic: summary
23
+
24
+ # Api client for Test IT TMS
25
+ ![Test IT](https://raw.githubusercontent.com/testit-tms/api-client-python/master/images/banner.png)
26
+
27
+ [![Release Status](https://img.shields.io/pypi/v/testit-api-client?style=plastic)](https://pypi.python.org/pypi/testit-api-client)
28
+ [![Downloads](https://img.shields.io/pypi/dm/testit-api-client?style=plastic)](https://pypi.python.org/pypi/testit-api-client)
29
+ [![GitHub contributors](https://img.shields.io/github/contributors/testit-tms/api-client-python?style=plastic)](https://github.com/testit-tms/api-client-python)
30
+
31
+ ## Getting Started
32
+
33
+ ### Compatibility
34
+
35
+ | Test IT | API Client |
36
+ |---------|------------|
37
+ | 3.5 | 2.0.4 |
38
+ | 4.0 | 3.0.0 |
39
+ | 4.2 | 3.1.0 |
40
+ | 4.3 | 3.2.0 |
41
+ | 4.4 | 3.3.0 |
42
+ | 4.5 | 3.4.0 |
43
+ | 4.6 | 3.5.0 |
44
+ | 5.0 | 4.0.0 |
45
+ | 5.1 | 4.1.0 |
46
+ | 5.2 | 4.2.0 |
47
+ | Cloud | 5.1.0 |
48
+
49
+ ## Installation & Usage
50
+ ### pip install
51
+
52
+ ```sh
53
+ pip install testit-api-client
54
+ ```
55
+
56
+ Then import the package:
57
+
58
+ ```python
59
+ import testit_api_client
60
+ ```
61
+
62
+ ## Examples
63
+
64
+ Please follow the [installation procedure](#installation--usage) and then run the following:
65
+
66
+ ```python
67
+ import testit_api_client
68
+ from testit_api_client.api import attachments_api
69
+ from testit_api_client.models.attachment_model import AttachmentModel
70
+ from testit_api_client.models.image_resize_type import ImageResizeType
71
+ from testit_api_client.models.problem_details import ProblemDetails
72
+ from testit_api_client.models.validation_problem_details import ValidationProblemDetails
73
+
74
+ configuration = testit_api_client.Configuration(
75
+ host = "Your TMS address"
76
+ )
77
+
78
+ with testit_api_client.ApiClient(
79
+ configuration,
80
+ header_name='Authorization',
81
+ header_value='PrivateToken ' + 'Your private token') as api_client:
82
+ api_instance = attachments_api.AttachmentsApi(api_client)
83
+ id = "Attachment's guid in the TMS"
84
+
85
+ try:
86
+ api_instance.api_v2_attachments_id_delete(id)
87
+ except testit_api_client.ApiException as e:
88
+ print("Exception when calling AttachmentsApi->api_v2_attachments_id_delete: %s\n" % e)
89
+ ```
90
+
91
+
92
+ ## Documentation for API Endpoints
93
+
94
+ All URIs are relative to *http://localhost*
95
+
96
+ Class | Method | HTTP request | Description
97
+ ------------ | ------------- | ------------- | -------------
98
+ *AttachmentsApi* | [**api_v2_attachments_id_delete**](docs/AttachmentsApi.md#api_v2_attachments_id_delete) | **DELETE** /api/v2/attachments/{id} | Delete attachment file
99
+ *AttachmentsApi* | [**api_v2_attachments_id_get**](docs/AttachmentsApi.md#api_v2_attachments_id_get) | **GET** /api/v2/attachments/{id} | Download attachment file
100
+ *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
101
+ *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
102
+ *AttachmentsApi* | [**api_v2_attachments_post**](docs/AttachmentsApi.md#api_v2_attachments_post) | **POST** /api/v2/attachments | Upload new attachment file
103
+ *AutoTestsApi* | [**api_v2_auto_tests_delete**](docs/AutoTestsApi.md#api_v2_auto_tests_delete) | **DELETE** /api/v2/autoTests | Delete autotests
104
+ *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 \&quot;Flaky\&quot; status for multiple autotests
105
+ *AutoTestsApi* | [**api_v2_auto_tests_id_patch**](docs/AutoTestsApi.md#api_v2_auto_tests_id_patch) | **PATCH** /api/v2/autoTests/{id} | Patch auto test
106
+ *AutoTestsApi* | [**api_v2_auto_tests_id_test_results_search_post**](docs/AutoTestsApi.md#api_v2_auto_tests_id_test_results_search_post) | **POST** /api/v2/autoTests/{id}/testResults/search | Get test results history for autotest
107
+ *AutoTestsApi* | [**api_v2_auto_tests_id_work_items_changed_id_get**](docs/AutoTestsApi.md#api_v2_auto_tests_id_work_items_changed_id_get) | **GET** /api/v2/autoTests/{id}/workItems/changed/id | Get identifiers of changed linked work items
108
+ *AutoTestsApi* | [**api_v2_auto_tests_id_work_items_changed_work_item_id_approve_post**](docs/AutoTestsApi.md#api_v2_auto_tests_id_work_items_changed_work_item_id_approve_post) | **POST** /api/v2/autoTests/{id}/workItems/changed/{workItemId}/approve | Approve changes to work items linked to autotest
109
+ *AutoTestsApi* | [**api_v2_auto_tests_search_post**](docs/AutoTestsApi.md#api_v2_auto_tests_search_post) | **POST** /api/v2/autoTests/search | Search for autotests
110
+ *AutoTestsApi* | [**create_auto_test**](docs/AutoTestsApi.md#create_auto_test) | **POST** /api/v2/autoTests | Create autotest
111
+ *AutoTestsApi* | [**create_multiple**](docs/AutoTestsApi.md#create_multiple) | **POST** /api/v2/autoTests/bulk | Create multiple autotests
112
+ *AutoTestsApi* | [**delete_auto_test**](docs/AutoTestsApi.md#delete_auto_test) | **DELETE** /api/v2/autoTests/{id} | Delete autotest
113
+ *AutoTestsApi* | [**delete_auto_test_link_from_work_item**](docs/AutoTestsApi.md#delete_auto_test_link_from_work_item) | **DELETE** /api/v2/autoTests/{id}/workItems | Unlink autotest from work item
114
+ *AutoTestsApi* | [**get_all_auto_tests**](docs/AutoTestsApi.md#get_all_auto_tests) | **GET** /api/v2/autoTests |
115
+ *AutoTestsApi* | [**get_auto_test_average_duration**](docs/AutoTestsApi.md#get_auto_test_average_duration) | **GET** /api/v2/autoTests/{id}/averageDuration | Get average autotest duration
116
+ *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
117
+ *AutoTestsApi* | [**get_auto_test_chronology**](docs/AutoTestsApi.md#get_auto_test_chronology) | **GET** /api/v2/autoTests/{id}/chronology | Get autotest chronology
118
+ *AutoTestsApi* | [**get_test_runs**](docs/AutoTestsApi.md#get_test_runs) | **GET** /api/v2/autoTests/{id}/testRuns | Get completed tests runs for autotests
119
+ *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
120
+ *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
121
+ *AutoTestsApi* | [**update_auto_test**](docs/AutoTestsApi.md#update_auto_test) | **PUT** /api/v2/autoTests | Update autotest
122
+ *AutoTestsApi* | [**update_multiple**](docs/AutoTestsApi.md#update_multiple) | **PUT** /api/v2/autoTests/bulk | Update multiple autotests
123
+ *BackgroundJobsApi* | [**api_v2_background_jobs_completed_delete**](docs/BackgroundJobsApi.md#api_v2_background_jobs_completed_delete) | **DELETE** /api/v2/backgroundJobs/completed | Delete all completed background jobs
124
+ *BackgroundJobsApi* | [**api_v2_background_jobs_get**](docs/BackgroundJobsApi.md#api_v2_background_jobs_get) | **GET** /api/v2/backgroundJobs |
125
+ *BackgroundJobsApi* | [**api_v2_background_jobs_id_cancel_post**](docs/BackgroundJobsApi.md#api_v2_background_jobs_id_cancel_post) | **POST** /api/v2/backgroundJobs/{id}/cancel | Cancel current user background job
126
+ *BackgroundJobsApi* | [**api_v2_background_jobs_id_get**](docs/BackgroundJobsApi.md#api_v2_background_jobs_id_get) | **GET** /api/v2/backgroundJobs/{id} | Get background job by ID
127
+ *BackgroundJobsApi* | [**api_v2_background_jobs_id_status_get**](docs/BackgroundJobsApi.md#api_v2_background_jobs_id_status_get) | **GET** /api/v2/backgroundJobs/{id}/status | Get background job status by job ID
128
+ *BackgroundJobsApi* | [**api_v2_background_jobs_search_post**](docs/BackgroundJobsApi.md#api_v2_background_jobs_search_post) | **POST** /api/v2/backgroundJobs/search | Search for user background jobs
129
+ *ConfigurationsApi* | [**api_v2_configurations_create_by_parameters_post**](docs/ConfigurationsApi.md#api_v2_configurations_create_by_parameters_post) | **POST** /api/v2/configurations/createByParameters | Create configurations by parameters
130
+ *ConfigurationsApi* | [**api_v2_configurations_delete_bulk_post**](docs/ConfigurationsApi.md#api_v2_configurations_delete_bulk_post) | **POST** /api/v2/configurations/delete/bulk | Delete multiple configurations
131
+ *ConfigurationsApi* | [**api_v2_configurations_id_delete**](docs/ConfigurationsApi.md#api_v2_configurations_id_delete) | **DELETE** /api/v2/configurations/{id} | Delete configuration
132
+ *ConfigurationsApi* | [**api_v2_configurations_id_patch**](docs/ConfigurationsApi.md#api_v2_configurations_id_patch) | **PATCH** /api/v2/configurations/{id} | Patch configuration
133
+ *ConfigurationsApi* | [**api_v2_configurations_id_purge_post**](docs/ConfigurationsApi.md#api_v2_configurations_id_purge_post) | **POST** /api/v2/configurations/{id}/purge | Permanently delete configuration from archive
134
+ *ConfigurationsApi* | [**api_v2_configurations_id_restore_post**](docs/ConfigurationsApi.md#api_v2_configurations_id_restore_post) | **POST** /api/v2/configurations/{id}/restore | Restore configuration from the archive
135
+ *ConfigurationsApi* | [**api_v2_configurations_purge_bulk_post**](docs/ConfigurationsApi.md#api_v2_configurations_purge_bulk_post) | **POST** /api/v2/configurations/purge/bulk | Permanently delete multiple archived configurations
136
+ *ConfigurationsApi* | [**api_v2_configurations_put**](docs/ConfigurationsApi.md#api_v2_configurations_put) | **PUT** /api/v2/configurations | Edit configuration
137
+ *ConfigurationsApi* | [**api_v2_configurations_restore_bulk_post**](docs/ConfigurationsApi.md#api_v2_configurations_restore_bulk_post) | **POST** /api/v2/configurations/restore/bulk | Restore multiple configurations from the archive
138
+ *ConfigurationsApi* | [**api_v2_configurations_search_post**](docs/ConfigurationsApi.md#api_v2_configurations_search_post) | **POST** /api/v2/configurations/search | Search for configurations
139
+ *ConfigurationsApi* | [**create_configuration**](docs/ConfigurationsApi.md#create_configuration) | **POST** /api/v2/configurations | Create Configuration
140
+ *ConfigurationsApi* | [**get_configuration_by_id**](docs/ConfigurationsApi.md#get_configuration_by_id) | **GET** /api/v2/configurations/{id} | Get configuration by internal or global ID
141
+ *CustomAttributeTemplatesApi* | [**api_v2_custom_attributes_templates_exists_get**](docs/CustomAttributeTemplatesApi.md#api_v2_custom_attributes_templates_exists_get) | **GET** /api/v2/customAttributes/templates/exists |
142
+ *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
143
+ *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
144
+ *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
145
+ *CustomAttributeTemplatesApi* | [**api_v2_custom_attributes_templates_id_get**](docs/CustomAttributeTemplatesApi.md#api_v2_custom_attributes_templates_id_get) | **GET** /api/v2/customAttributes/templates/{id} | Get CustomAttributeTemplate by ID
146
+ *CustomAttributeTemplatesApi* | [**api_v2_custom_attributes_templates_name_get**](docs/CustomAttributeTemplatesApi.md#api_v2_custom_attributes_templates_name_get) | **GET** /api/v2/customAttributes/templates/{name} | Get CustomAttributeTemplate by name
147
+ *CustomAttributeTemplatesApi* | [**api_v2_custom_attributes_templates_post**](docs/CustomAttributeTemplatesApi.md#api_v2_custom_attributes_templates_post) | **POST** /api/v2/customAttributes/templates | Create CustomAttributeTemplate
148
+ *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
149
+ *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
150
+ *CustomAttributesApi* | [**api_v2_custom_attributes_exists_get**](docs/CustomAttributesApi.md#api_v2_custom_attributes_exists_get) | **GET** /api/v2/customAttributes/exists |
151
+ *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
152
+ *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
153
+ *CustomAttributesApi* | [**api_v2_custom_attributes_global_post**](docs/CustomAttributesApi.md#api_v2_custom_attributes_global_post) | **POST** /api/v2/customAttributes/global | Create global attribute
154
+ *CustomAttributesApi* | [**api_v2_custom_attributes_id_get**](docs/CustomAttributesApi.md#api_v2_custom_attributes_id_get) | **GET** /api/v2/customAttributes/{id} | Get attribute
155
+ *CustomAttributesApi* | [**api_v2_custom_attributes_search_post**](docs/CustomAttributesApi.md#api_v2_custom_attributes_search_post) | **POST** /api/v2/customAttributes/search | Search for attributes
156
+ *NotificationsApi* | [**api_v2_notifications_count_get**](docs/NotificationsApi.md#api_v2_notifications_count_get) | **GET** /api/v2/notifications/count | Get unread Notifications total in last 7 days
157
+ *NotificationsApi* | [**api_v2_notifications_get**](docs/NotificationsApi.md#api_v2_notifications_get) | **GET** /api/v2/notifications | Get all Notifications for current User
158
+ *NotificationsApi* | [**api_v2_notifications_id_read_post**](docs/NotificationsApi.md#api_v2_notifications_id_read_post) | **POST** /api/v2/notifications/{id}/read | Set Notification as read
159
+ *NotificationsApi* | [**api_v2_notifications_read_post**](docs/NotificationsApi.md#api_v2_notifications_read_post) | **POST** /api/v2/notifications/read | Set all Notifications as read
160
+ *NotificationsApi* | [**api_v2_notifications_search_post**](docs/NotificationsApi.md#api_v2_notifications_search_post) | **POST** /api/v2/notifications/search | Search Notifications for current User
161
+ *ParametersApi* | [**api_v2_parameters_bulk_post**](docs/ParametersApi.md#api_v2_parameters_bulk_post) | **POST** /api/v2/parameters/bulk | Create multiple parameters
162
+ *ParametersApi* | [**api_v2_parameters_bulk_put**](docs/ParametersApi.md#api_v2_parameters_bulk_put) | **PUT** /api/v2/parameters/bulk | Update multiple parameters
163
+ *ParametersApi* | [**api_v2_parameters_groups_get**](docs/ParametersApi.md#api_v2_parameters_groups_get) | **GET** /api/v2/parameters/groups | Get parameters as group
164
+ *ParametersApi* | [**api_v2_parameters_key_name_name_exists_get**](docs/ParametersApi.md#api_v2_parameters_key_name_name_exists_get) | **GET** /api/v2/parameters/key/name/{name}/exists | Check existence parameter key in system
165
+ *ParametersApi* | [**api_v2_parameters_key_values_get**](docs/ParametersApi.md#api_v2_parameters_key_values_get) | **GET** /api/v2/parameters/{key}/values | Get all parameter key values
166
+ *ParametersApi* | [**api_v2_parameters_keys_get**](docs/ParametersApi.md#api_v2_parameters_keys_get) | **GET** /api/v2/parameters/keys | Get all parameter keys
167
+ *ParametersApi* | [**api_v2_parameters_search_groups_post**](docs/ParametersApi.md#api_v2_parameters_search_groups_post) | **POST** /api/v2/parameters/search/groups | Search for parameters as group
168
+ *ParametersApi* | [**api_v2_parameters_search_post**](docs/ParametersApi.md#api_v2_parameters_search_post) | **POST** /api/v2/parameters/search | Search for parameters
169
+ *ParametersApi* | [**create_parameter**](docs/ParametersApi.md#create_parameter) | **POST** /api/v2/parameters | Create parameter
170
+ *ParametersApi* | [**delete_by_name**](docs/ParametersApi.md#delete_by_name) | **DELETE** /api/v2/parameters/name/{name} | Delete parameter by name
171
+ *ParametersApi* | [**delete_by_parameter_key_id**](docs/ParametersApi.md#delete_by_parameter_key_id) | **DELETE** /api/v2/parameters/keyId/{keyId} | Delete parameters by parameter key identifier
172
+ *ParametersApi* | [**delete_parameter**](docs/ParametersApi.md#delete_parameter) | **DELETE** /api/v2/parameters/{id} | Delete parameter
173
+ *ParametersApi* | [**get_all_parameters**](docs/ParametersApi.md#get_all_parameters) | **GET** /api/v2/parameters | Get all parameters
174
+ *ParametersApi* | [**get_parameter_by_id**](docs/ParametersApi.md#get_parameter_by_id) | **GET** /api/v2/parameters/{id} | Get parameter by ID
175
+ *ParametersApi* | [**update_parameter**](docs/ParametersApi.md#update_parameter) | **PUT** /api/v2/parameters | Update parameter
176
+ *ProjectAttributeTemplatesApi* | [**api_v2_projects_project_id_attributes_templates_search_post**](docs/ProjectAttributeTemplatesApi.md#api_v2_projects_project_id_attributes_templates_search_post) | **POST** /api/v2/projects/{projectId}/attributes/templates/search | Search for custom attributes templates
177
+ *ProjectAttributeTemplatesApi* | [**api_v2_projects_project_id_attributes_templates_template_id_delete**](docs/ProjectAttributeTemplatesApi.md#api_v2_projects_project_id_attributes_templates_template_id_delete) | **DELETE** /api/v2/projects/{projectId}/attributes/templates/{templateId} | Delete CustomAttributeTemplate from Project
178
+ *ProjectAttributeTemplatesApi* | [**api_v2_projects_project_id_attributes_templates_template_id_post**](docs/ProjectAttributeTemplatesApi.md#api_v2_projects_project_id_attributes_templates_template_id_post) | **POST** /api/v2/projects/{projectId}/attributes/templates/{templateId} | Add CustomAttributeTemplate to Project
179
+ *ProjectAttributesApi* | [**create_projects_attribute**](docs/ProjectAttributesApi.md#create_projects_attribute) | **POST** /api/v2/projects/{projectId}/attributes | Create project attribute
180
+ *ProjectAttributesApi* | [**delete_projects_attribute**](docs/ProjectAttributesApi.md#delete_projects_attribute) | **DELETE** /api/v2/projects/{projectId}/attributes/{attributeId} | Delete project attribute
181
+ *ProjectAttributesApi* | [**get_attribute_by_project_id**](docs/ProjectAttributesApi.md#get_attribute_by_project_id) | **GET** /api/v2/projects/{projectId}/attributes/{attributeId} | Get project attribute
182
+ *ProjectAttributesApi* | [**get_attributes_by_project_id**](docs/ProjectAttributesApi.md#get_attributes_by_project_id) | **GET** /api/v2/projects/{projectId}/attributes | Get project attributes
183
+ *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
184
+ *ProjectAttributesApi* | [**update_projects_attribute**](docs/ProjectAttributesApi.md#update_projects_attribute) | **PUT** /api/v2/projects/{projectId}/attributes | Edit attribute of the project
185
+ *ProjectConfigurationsApi* | [**get_configurations_by_project_id**](docs/ProjectConfigurationsApi.md#get_configurations_by_project_id) | **GET** /api/v2/projects/{projectId}/configurations | Get project configurations
186
+ *ProjectSectionsApi* | [**get_sections_by_project_id**](docs/ProjectSectionsApi.md#get_sections_by_project_id) | **GET** /api/v2/projects/{projectId}/sections | Get project sections
187
+ *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.
188
+ *ProjectSettingsApi* | [**get_autotest_project_settings**](docs/ProjectSettingsApi.md#get_autotest_project_settings) | **GET** /api/v2/projects/{projectId}/settings/autotests | Get autotest project settings.
189
+ *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&#39;s test plans
190
+ *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&#39;s test plans
191
+ *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&#39;s test plan attributes
192
+ *ProjectTestPlanAttributesApi* | [**search_test_plan_attributes_in_project**](docs/ProjectTestPlanAttributesApi.md#search_test_plan_attributes_in_project) | **POST** /api/v2/projects/{projectId}/testPlans/attributes/search | Search for attributes used in the project test plans
193
+ *ProjectTestPlanAttributesApi* | [**update_custom_attribute_test_plan_project_relations**](docs/ProjectTestPlanAttributesApi.md#update_custom_attribute_test_plan_project_relations) | **PUT** /api/v2/projects/{projectId}/testPlans/attributes | Update attribute of project&#39;s test plans
194
+ *ProjectTestPlansApi* | [**api_v2_projects_project_id_test_plans_analytics_get**](docs/ProjectTestPlansApi.md#api_v2_projects_project_id_test_plans_analytics_get) | **GET** /api/v2/projects/{projectId}/testPlans/analytics | Get TestPlans analytics
195
+ *ProjectTestPlansApi* | [**api_v2_projects_project_id_test_plans_delete_bulk_post**](docs/ProjectTestPlansApi.md#api_v2_projects_project_id_test_plans_delete_bulk_post) | **POST** /api/v2/projects/{projectId}/testPlans/delete/bulk | Delete multiple test plans
196
+ *ProjectTestPlansApi* | [**api_v2_projects_project_id_test_plans_name_exists_get**](docs/ProjectTestPlansApi.md#api_v2_projects_project_id_test_plans_name_exists_get) | **GET** /api/v2/projects/{projectId}/testPlans/{name}/exists | Checks if TestPlan exists with the specified name exists for the project
197
+ *ProjectTestPlansApi* | [**api_v2_projects_project_id_test_plans_purge_bulk_post**](docs/ProjectTestPlansApi.md#api_v2_projects_project_id_test_plans_purge_bulk_post) | **POST** /api/v2/projects/{projectId}/testPlans/purge/bulk | Permanently delete multiple archived test plans
198
+ *ProjectTestPlansApi* | [**api_v2_projects_project_id_test_plans_restore_bulk_post**](docs/ProjectTestPlansApi.md#api_v2_projects_project_id_test_plans_restore_bulk_post) | **POST** /api/v2/projects/{projectId}/testPlans/restore/bulk | Restore multiple test plans
199
+ *ProjectTestPlansApi* | [**api_v2_projects_project_id_test_plans_search_post**](docs/ProjectTestPlansApi.md#api_v2_projects_project_id_test_plans_search_post) | **POST** /api/v2/projects/{projectId}/testPlans/search | Get Project TestPlans with analytics
200
+ *ProjectWorkItemsApi* | [**api_v2_projects_project_id_work_items_search_grouped_post**](docs/ProjectWorkItemsApi.md#api_v2_projects_project_id_work_items_search_grouped_post) | **POST** /api/v2/projects/{projectId}/workItems/search/grouped | Search for work items and group results by attribute
201
+ *ProjectWorkItemsApi* | [**api_v2_projects_project_id_work_items_search_id_post**](docs/ProjectWorkItemsApi.md#api_v2_projects_project_id_work_items_search_id_post) | **POST** /api/v2/projects/{projectId}/workItems/search/id | Search for work items and extract IDs only
202
+ *ProjectWorkItemsApi* | [**api_v2_projects_project_id_work_items_search_post**](docs/ProjectWorkItemsApi.md#api_v2_projects_project_id_work_items_search_post) | **POST** /api/v2/projects/{projectId}/workItems/search | Search for work items
203
+ *ProjectWorkItemsApi* | [**api_v2_projects_project_id_work_items_tags_get**](docs/ProjectWorkItemsApi.md#api_v2_projects_project_id_work_items_tags_get) | **GET** /api/v2/projects/{projectId}/workItems/tags | Get WorkItems Tags
204
+ *ProjectWorkItemsApi* | [**get_work_items_by_project_id**](docs/ProjectWorkItemsApi.md#get_work_items_by_project_id) | **GET** /api/v2/projects/{projectId}/workItems | Get project work items
205
+ *ProjectsApi* | [**add_globa_attributes_to_project**](docs/ProjectsApi.md#add_globa_attributes_to_project) | **POST** /api/v2/projects/{id}/globalAttributes | Add global attributes to project
206
+ *ProjectsApi* | [**api_v2_projects_demo_post**](docs/ProjectsApi.md#api_v2_projects_demo_post) | **POST** /api/v2/projects/demo |
207
+ *ProjectsApi* | [**api_v2_projects_id_delete**](docs/ProjectsApi.md#api_v2_projects_id_delete) | **DELETE** /api/v2/projects/{id} | Archive project
208
+ *ProjectsApi* | [**api_v2_projects_id_failure_classes_get**](docs/ProjectsApi.md#api_v2_projects_id_failure_classes_get) | **GET** /api/v2/projects/{id}/failureClasses | Get failure classes
209
+ *ProjectsApi* | [**api_v2_projects_id_favorite_put**](docs/ProjectsApi.md#api_v2_projects_id_favorite_put) | **PUT** /api/v2/projects/{id}/favorite | Mark Project as favorite
210
+ *ProjectsApi* | [**api_v2_projects_id_filters_get**](docs/ProjectsApi.md#api_v2_projects_id_filters_get) | **GET** /api/v2/projects/{id}/filters | Get Project filters
211
+ *ProjectsApi* | [**api_v2_projects_id_patch**](docs/ProjectsApi.md#api_v2_projects_id_patch) | **PATCH** /api/v2/projects/{id} | Patch project
212
+ *ProjectsApi* | [**api_v2_projects_id_purge_post**](docs/ProjectsApi.md#api_v2_projects_id_purge_post) | **POST** /api/v2/projects/{id}/purge | Purge the project
213
+ *ProjectsApi* | [**api_v2_projects_id_restore_post**](docs/ProjectsApi.md#api_v2_projects_id_restore_post) | **POST** /api/v2/projects/{id}/restore | Restore archived project
214
+ *ProjectsApi* | [**api_v2_projects_id_test_plans_attribute_attribute_id_delete**](docs/ProjectsApi.md#api_v2_projects_id_test_plans_attribute_attribute_id_delete) | **DELETE** /api/v2/projects/{id}/testPlans/attribute/{attributeId} | Delete attribute from project&#39;s test plans
215
+ *ProjectsApi* | [**api_v2_projects_id_test_plans_attribute_put**](docs/ProjectsApi.md#api_v2_projects_id_test_plans_attribute_put) | **PUT** /api/v2/projects/{id}/testPlans/attribute | Update attribute of project&#39;s test plans
216
+ *ProjectsApi* | [**api_v2_projects_id_test_runs_active_get**](docs/ProjectsApi.md#api_v2_projects_id_test_runs_active_get) | **GET** /api/v2/projects/{id}/testRuns/active | Get active Project TestRuns
217
+ *ProjectsApi* | [**api_v2_projects_id_test_runs_full_get**](docs/ProjectsApi.md#api_v2_projects_id_test_runs_full_get) | **GET** /api/v2/projects/{id}/testRuns/full | Get Project TestRuns full models
218
+ *ProjectsApi* | [**api_v2_projects_name_name_exists_get**](docs/ProjectsApi.md#api_v2_projects_name_name_exists_get) | **GET** /api/v2/projects/name/{name}/exists |
219
+ *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
220
+ *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
221
+ *ProjectsApi* | [**api_v2_projects_search_post**](docs/ProjectsApi.md#api_v2_projects_search_post) | **POST** /api/v2/projects/search | Search for projects
222
+ *ProjectsApi* | [**create_project**](docs/ProjectsApi.md#create_project) | **POST** /api/v2/projects | Create project
223
+ *ProjectsApi* | [**delete_project_auto_tests**](docs/ProjectsApi.md#delete_project_auto_tests) | **DELETE** /api/v2/projects/{id}/autoTests | Delete all autotests from project
224
+ *ProjectsApi* | [**get_all_projects**](docs/ProjectsApi.md#get_all_projects) | **GET** /api/v2/projects | Get all projects
225
+ *ProjectsApi* | [**get_auto_tests_namespaces**](docs/ProjectsApi.md#get_auto_tests_namespaces) | **GET** /api/v2/projects/{id}/autoTestsNamespaces | Get namespaces of autotests in project
226
+ *ProjectsApi* | [**get_project_by_id**](docs/ProjectsApi.md#get_project_by_id) | **GET** /api/v2/projects/{id} | Get project by ID
227
+ *ProjectsApi* | [**get_test_plans_by_project_id**](docs/ProjectsApi.md#get_test_plans_by_project_id) | **GET** /api/v2/projects/{id}/testPlans | Get project test plans
228
+ *ProjectsApi* | [**get_test_runs_by_project_id**](docs/ProjectsApi.md#get_test_runs_by_project_id) | **GET** /api/v2/projects/{id}/testRuns | Get project test runs
229
+ *ProjectsApi* | [**update_project**](docs/ProjectsApi.md#update_project) | **PUT** /api/v2/projects | Update project
230
+ *SearchApi* | [**api_v2_search_global_search_post**](docs/SearchApi.md#api_v2_search_global_search_post) | **POST** /api/v2/search/globalSearch |
231
+ *SectionsApi* | [**api_v2_sections_id_patch**](docs/SectionsApi.md#api_v2_sections_id_patch) | **PATCH** /api/v2/sections/{id} | Patch section
232
+ *SectionsApi* | [**create_section**](docs/SectionsApi.md#create_section) | **POST** /api/v2/sections | Create section
233
+ *SectionsApi* | [**delete_section**](docs/SectionsApi.md#delete_section) | **DELETE** /api/v2/sections/{id} | Delete section
234
+ *SectionsApi* | [**get_section_by_id**](docs/SectionsApi.md#get_section_by_id) | **GET** /api/v2/sections/{id} | Get section
235
+ *SectionsApi* | [**get_work_items_by_section_id**](docs/SectionsApi.md#get_work_items_by_section_id) | **GET** /api/v2/sections/{id}/workItems | Get section work items
236
+ *SectionsApi* | [**move**](docs/SectionsApi.md#move) | **POST** /api/v2/sections/move | Move section with all work items into another section
237
+ *SectionsApi* | [**rename**](docs/SectionsApi.md#rename) | **POST** /api/v2/sections/rename | Rename section
238
+ *SectionsApi* | [**update_section**](docs/SectionsApi.md#update_section) | **PUT** /api/v2/sections | Update section
239
+ *TagsApi* | [**api_v2_tags_delete**](docs/TagsApi.md#api_v2_tags_delete) | **DELETE** /api/v2/tags | Delete tags
240
+ *TagsApi* | [**api_v2_tags_get**](docs/TagsApi.md#api_v2_tags_get) | **GET** /api/v2/tags | Get all Tags
241
+ *TagsApi* | [**api_v2_tags_id_delete**](docs/TagsApi.md#api_v2_tags_id_delete) | **DELETE** /api/v2/tags/{id} | Delete tag
242
+ *TagsApi* | [**api_v2_tags_post**](docs/TagsApi.md#api_v2_tags_post) | **POST** /api/v2/tags | Create tag
243
+ *TagsApi* | [**api_v2_tags_put**](docs/TagsApi.md#api_v2_tags_put) | **PUT** /api/v2/tags | Update tag
244
+ *TagsApi* | [**api_v2_tags_search_get**](docs/TagsApi.md#api_v2_tags_search_get) | **GET** /api/v2/tags/search | Search tags
245
+ *TagsApi* | [**api_v2_tags_test_plans_tags_get**](docs/TagsApi.md#api_v2_tags_test_plans_tags_get) | **GET** /api/v2/tags/testPlansTags | Get all Tags that are used in TestPlans
246
+ *TestPlansApi* | [**add_test_points_with_sections**](docs/TestPlansApi.md#add_test_points_with_sections) | **POST** /api/v2/testPlans/{id}/test-points/withSections | Add test-points to TestPlan with sections
247
+ *TestPlansApi* | [**add_work_items_with_sections**](docs/TestPlansApi.md#add_work_items_with_sections) | **POST** /api/v2/testPlans/{id}/workItems/withSections | Add WorkItems to TestPlan with Sections as TestSuites
248
+ *TestPlansApi* | [**api_v2_test_plans_id_analytics_get**](docs/TestPlansApi.md#api_v2_test_plans_id_analytics_get) | **GET** /api/v2/testPlans/{id}/analytics | Get analytics by TestPlan
249
+ *TestPlansApi* | [**api_v2_test_plans_id_autobalance_post**](docs/TestPlansApi.md#api_v2_test_plans_id_autobalance_post) | **POST** /api/v2/testPlans/{id}/autobalance | Distribute test points between the users
250
+ *TestPlansApi* | [**api_v2_test_plans_id_configurations_get**](docs/TestPlansApi.md#api_v2_test_plans_id_configurations_get) | **GET** /api/v2/testPlans/{id}/configurations | Get TestPlan configurations
251
+ *TestPlansApi* | [**api_v2_test_plans_id_export_test_points_xlsx_post**](docs/TestPlansApi.md#api_v2_test_plans_id_export_test_points_xlsx_post) | **POST** /api/v2/testPlans/{id}/export/testPoints/xlsx | Export TestPoints from TestPlan in xls format
252
+ *TestPlansApi* | [**api_v2_test_plans_id_export_test_result_history_xlsx_post**](docs/TestPlansApi.md#api_v2_test_plans_id_export_test_result_history_xlsx_post) | **POST** /api/v2/testPlans/{id}/export/testResultHistory/xlsx | Export TestResults history from TestPlan in xls format
253
+ *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
254
+ *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
255
+ *TestPlansApi* | [**api_v2_test_plans_id_patch**](docs/TestPlansApi.md#api_v2_test_plans_id_patch) | **PATCH** /api/v2/testPlans/{id} | Patch test plan
256
+ *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
257
+ *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
258
+ *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
259
+ *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
260
+ *TestPlansApi* | [**api_v2_test_plans_id_test_points_tester_user_id_post**](docs/TestPlansApi.md#api_v2_test_plans_id_test_points_tester_user_id_post) | **POST** /api/v2/testPlans/{id}/testPoints/tester/{userId} | Assign user as a tester to multiple test points
261
+ *TestPlansApi* | [**api_v2_test_plans_id_test_runs_get**](docs/TestPlansApi.md#api_v2_test_plans_id_test_runs_get) | **GET** /api/v2/testPlans/{id}/testRuns | Get TestRuns of TestPlan
262
+ *TestPlansApi* | [**api_v2_test_plans_id_test_runs_search_post**](docs/TestPlansApi.md#api_v2_test_plans_id_test_runs_search_post) | **POST** /api/v2/testPlans/{id}/testRuns/search | Search TestRuns of TestPlan
263
+ *TestPlansApi* | [**api_v2_test_plans_id_test_runs_test_results_last_modified_modified_date_get**](docs/TestPlansApi.md#api_v2_test_plans_id_test_runs_test_results_last_modified_modified_date_get) | **GET** /api/v2/testPlans/{id}/testRuns/testResults/lastModified/modifiedDate | Get last modification date of test plan&#39;s test results
264
+ *TestPlansApi* | [**api_v2_test_plans_id_unlock_request_post**](docs/TestPlansApi.md#api_v2_test_plans_id_unlock_request_post) | **POST** /api/v2/testPlans/{id}/unlock/request | Send unlock TestPlan notification
265
+ *TestPlansApi* | [**api_v2_test_plans_shorts_post**](docs/TestPlansApi.md#api_v2_test_plans_shorts_post) | **POST** /api/v2/testPlans/shorts | Get TestPlans short models by Project identifiers
266
+ *TestPlansApi* | [**clone**](docs/TestPlansApi.md#clone) | **POST** /api/v2/testPlans/{id}/clone | Clone TestPlan
267
+ *TestPlansApi* | [**complete**](docs/TestPlansApi.md#complete) | **POST** /api/v2/testPlans/{id}/complete | Complete TestPlan
268
+ *TestPlansApi* | [**create_test_plan**](docs/TestPlansApi.md#create_test_plan) | **POST** /api/v2/testPlans | Create TestPlan
269
+ *TestPlansApi* | [**delete_test_plan**](docs/TestPlansApi.md#delete_test_plan) | **DELETE** /api/v2/testPlans/{id} | Delete TestPlan
270
+ *TestPlansApi* | [**get_test_plan_by_id**](docs/TestPlansApi.md#get_test_plan_by_id) | **GET** /api/v2/testPlans/{id} | Get TestPlan by Id
271
+ *TestPlansApi* | [**get_test_suites_by_id**](docs/TestPlansApi.md#get_test_suites_by_id) | **GET** /api/v2/testPlans/{id}/testSuites | Get TestSuites Tree By Id
272
+ *TestPlansApi* | [**pause**](docs/TestPlansApi.md#pause) | **POST** /api/v2/testPlans/{id}/pause | Pause TestPlan
273
+ *TestPlansApi* | [**purge_test_plan**](docs/TestPlansApi.md#purge_test_plan) | **POST** /api/v2/testPlans/{id}/purge | Permanently delete test plan from archive
274
+ *TestPlansApi* | [**restore_test_plan**](docs/TestPlansApi.md#restore_test_plan) | **POST** /api/v2/testPlans/{id}/restore | Restore TestPlan
275
+ *TestPlansApi* | [**start**](docs/TestPlansApi.md#start) | **POST** /api/v2/testPlans/{id}/start | Start TestPlan
276
+ *TestPlansApi* | [**update_test_plan**](docs/TestPlansApi.md#update_test_plan) | **PUT** /api/v2/testPlans | Update TestPlan
277
+ *TestPointsApi* | [**api_v2_test_points_id_test_runs_get**](docs/TestPointsApi.md#api_v2_test_points_id_test_runs_get) | **GET** /api/v2/testPoints/{id}/testRuns | Get all test runs which use test point
278
+ *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
279
+ *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
280
+ *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
281
+ *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 |
282
+ *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 |
283
+ *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
284
+ *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
285
+ *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
286
+ *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
287
+ *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
288
+ *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
289
+ *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
290
+ *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
291
+ *TestResultsApi* | [**create_attachment**](docs/TestResultsApi.md#create_attachment) | **POST** /api/v2/testResults/{id}/attachments | Upload and link attachment to TestResult
292
+ *TestResultsApi* | [**delete_attachment**](docs/TestResultsApi.md#delete_attachment) | **DELETE** /api/v2/testResults/{id}/attachments/{attachmentId} | Remove attachment and unlink from TestResult
293
+ *TestResultsApi* | [**download_attachment**](docs/TestResultsApi.md#download_attachment) | **GET** /api/v2/testResults/{id}/attachments/{attachmentId} | Get attachment of TestResult
294
+ *TestResultsApi* | [**get_attachment**](docs/TestResultsApi.md#get_attachment) | **GET** /api/v2/testResults/{id}/attachments/{attachmentId}/info | Get Metadata of TestResult&#39;s attachment
295
+ *TestResultsApi* | [**get_attachments**](docs/TestResultsApi.md#get_attachments) | **GET** /api/v2/testResults/{id}/attachments | Get all attachments of TestResult
296
+ *TestRunsApi* | [**api_v2_test_runs_delete**](docs/TestRunsApi.md#api_v2_test_runs_delete) | **DELETE** /api/v2/testRuns | Delete multiple test runs
297
+ *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
298
+ *TestRunsApi* | [**api_v2_test_runs_id_delete**](docs/TestRunsApi.md#api_v2_test_runs_id_delete) | **DELETE** /api/v2/testRuns/{id} | Delete test run
299
+ *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
300
+ *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
301
+ *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
302
+ *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
303
+ *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
304
+ *TestRunsApi* | [**api_v2_test_runs_id_test_results_bulk_put**](docs/TestRunsApi.md#api_v2_test_runs_id_test_results_bulk_put) | **PUT** /api/v2/testRuns/{id}/testResults/bulk | Partial edit of multiple test results in the test run
305
+ *TestRunsApi* | [**api_v2_test_runs_id_test_results_last_modified_modification_date_get**](docs/TestRunsApi.md#api_v2_test_runs_id_test_results_last_modified_modification_date_get) | **GET** /api/v2/testRuns/{id}/testResults/lastModified/modificationDate | Get modification date of last test result of the test run
306
+ *TestRunsApi* | [**api_v2_test_runs_purge_bulk_post**](docs/TestRunsApi.md#api_v2_test_runs_purge_bulk_post) | **POST** /api/v2/testRuns/purge/bulk | Permanently delete multiple test runs from archive
307
+ *TestRunsApi* | [**api_v2_test_runs_restore_bulk_post**](docs/TestRunsApi.md#api_v2_test_runs_restore_bulk_post) | **POST** /api/v2/testRuns/restore/bulk | Restore multiple test runs from the archive
308
+ *TestRunsApi* | [**api_v2_test_runs_search_post**](docs/TestRunsApi.md#api_v2_test_runs_search_post) | **POST** /api/v2/testRuns/search | Search for test runs
309
+ *TestRunsApi* | [**api_v2_test_runs_update_multiple_post**](docs/TestRunsApi.md#api_v2_test_runs_update_multiple_post) | **POST** /api/v2/testRuns/updateMultiple | Update multiple test runs
310
+ *TestRunsApi* | [**complete_test_run**](docs/TestRunsApi.md#complete_test_run) | **POST** /api/v2/testRuns/{id}/complete | Complete TestRun
311
+ *TestRunsApi* | [**create_and_fill_by_auto_tests**](docs/TestRunsApi.md#create_and_fill_by_auto_tests) | **POST** /api/v2/testRuns/byAutoTests | Create test runs based on autotests and configurations
312
+ *TestRunsApi* | [**create_and_fill_by_configurations**](docs/TestRunsApi.md#create_and_fill_by_configurations) | **POST** /api/v2/testRuns/byConfigurations | Create test runs picking the needed test points
313
+ *TestRunsApi* | [**create_and_fill_by_work_items**](docs/TestRunsApi.md#create_and_fill_by_work_items) | **POST** /api/v2/testRuns/byWorkItems | Create test run based on configurations and work items
314
+ *TestRunsApi* | [**create_empty**](docs/TestRunsApi.md#create_empty) | **POST** /api/v2/testRuns | Create empty TestRun
315
+ *TestRunsApi* | [**get_test_run_by_id**](docs/TestRunsApi.md#get_test_run_by_id) | **GET** /api/v2/testRuns/{id} | Get TestRun by Id
316
+ *TestRunsApi* | [**set_auto_test_results_for_test_run**](docs/TestRunsApi.md#set_auto_test_results_for_test_run) | **POST** /api/v2/testRuns/{id}/testResults | Send test results to the test runs in the system
317
+ *TestRunsApi* | [**start_test_run**](docs/TestRunsApi.md#start_test_run) | **POST** /api/v2/testRuns/{id}/start | Start TestRun
318
+ *TestRunsApi* | [**stop_test_run**](docs/TestRunsApi.md#stop_test_run) | **POST** /api/v2/testRuns/{id}/stop | Stop TestRun
319
+ *TestRunsApi* | [**update_empty**](docs/TestRunsApi.md#update_empty) | **PUT** /api/v2/testRuns | Update empty TestRun
320
+ *TestSuitesApi* | [**add_test_points_to_test_suite**](docs/TestSuitesApi.md#add_test_points_to_test_suite) | **POST** /api/v2/testSuites/{id}/test-points | Add test-points to test suite
321
+ *TestSuitesApi* | [**api_v2_test_suites_id_patch**](docs/TestSuitesApi.md#api_v2_test_suites_id_patch) | **PATCH** /api/v2/testSuites/{id} | Patch test suite
322
+ *TestSuitesApi* | [**api_v2_test_suites_id_refresh_post**](docs/TestSuitesApi.md#api_v2_test_suites_id_refresh_post) | **POST** /api/v2/testSuites/{id}/refresh | Refresh test suite. Only dynamic test suites are supported by this method
323
+ *TestSuitesApi* | [**api_v2_test_suites_id_work_items_post**](docs/TestSuitesApi.md#api_v2_test_suites_id_work_items_post) | **POST** /api/v2/testSuites/{id}/workItems | Set work items for test suite
324
+ *TestSuitesApi* | [**api_v2_test_suites_post**](docs/TestSuitesApi.md#api_v2_test_suites_post) | **POST** /api/v2/testSuites | Create test suite
325
+ *TestSuitesApi* | [**api_v2_test_suites_put**](docs/TestSuitesApi.md#api_v2_test_suites_put) | **PUT** /api/v2/testSuites | Edit test suite
326
+ *TestSuitesApi* | [**delete_test_suite**](docs/TestSuitesApi.md#delete_test_suite) | **DELETE** /api/v2/testSuites/{id} | Delete TestSuite
327
+ *TestSuitesApi* | [**get_configurations_by_test_suite_id**](docs/TestSuitesApi.md#get_configurations_by_test_suite_id) | **GET** /api/v2/testSuites/{id}/configurations | Get Configurations By Id
328
+ *TestSuitesApi* | [**get_test_points_by_id**](docs/TestSuitesApi.md#get_test_points_by_id) | **GET** /api/v2/testSuites/{id}/testPoints | Get TestPoints By Id
329
+ *TestSuitesApi* | [**get_test_results_by_id**](docs/TestSuitesApi.md#get_test_results_by_id) | **GET** /api/v2/testSuites/{id}/testResults | Get TestResults By Id
330
+ *TestSuitesApi* | [**get_test_suite_by_id**](docs/TestSuitesApi.md#get_test_suite_by_id) | **GET** /api/v2/testSuites/{id} | Get TestSuite by Id
331
+ *TestSuitesApi* | [**search_work_items**](docs/TestSuitesApi.md#search_work_items) | **POST** /api/v2/testSuites/{id}/workItems/search | Search WorkItems
332
+ *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
333
+ *UsersApi* | [**api_v2_users_exists_get**](docs/UsersApi.md#api_v2_users_exists_get) | **GET** /api/v2/users/exists |
334
+ *WebhooksApi* | [**api_v2_webhooks_delete**](docs/WebhooksApi.md#api_v2_webhooks_delete) | **DELETE** /api/v2/webhooks |
335
+ *WebhooksApi* | [**api_v2_webhooks_get**](docs/WebhooksApi.md#api_v2_webhooks_get) | **GET** /api/v2/webhooks | Get all webhooks
336
+ *WebhooksApi* | [**api_v2_webhooks_id_delete**](docs/WebhooksApi.md#api_v2_webhooks_id_delete) | **DELETE** /api/v2/webhooks/{id} | Delete webhook by ID
337
+ *WebhooksApi* | [**api_v2_webhooks_id_get**](docs/WebhooksApi.md#api_v2_webhooks_id_get) | **GET** /api/v2/webhooks/{id} | Get webhook by ID
338
+ *WebhooksApi* | [**api_v2_webhooks_id_put**](docs/WebhooksApi.md#api_v2_webhooks_id_put) | **PUT** /api/v2/webhooks/{id} | Edit webhook by ID
339
+ *WebhooksApi* | [**api_v2_webhooks_post**](docs/WebhooksApi.md#api_v2_webhooks_post) | **POST** /api/v2/webhooks | Create webhook
340
+ *WebhooksApi* | [**api_v2_webhooks_put**](docs/WebhooksApi.md#api_v2_webhooks_put) | **PUT** /api/v2/webhooks |
341
+ *WebhooksApi* | [**api_v2_webhooks_search_post**](docs/WebhooksApi.md#api_v2_webhooks_search_post) | **POST** /api/v2/webhooks/search | Search for webhooks
342
+ *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
343
+ *WebhooksApi* | [**api_v2_webhooks_test_post**](docs/WebhooksApi.md#api_v2_webhooks_test_post) | **POST** /api/v2/webhooks/test | Test webhook&#39;s url
344
+ *WebhooksLogsApi* | [**api_v2_webhooks_logs_get**](docs/WebhooksLogsApi.md#api_v2_webhooks_logs_get) | **GET** /api/v2/webhooks/logs | Get all webhook logs
345
+ *WebhooksLogsApi* | [**api_v2_webhooks_logs_id_delete**](docs/WebhooksLogsApi.md#api_v2_webhooks_logs_id_delete) | **DELETE** /api/v2/webhooks/logs/{id} | Delete webhook log by ID
346
+ *WebhooksLogsApi* | [**api_v2_webhooks_logs_id_get**](docs/WebhooksLogsApi.md#api_v2_webhooks_logs_id_get) | **GET** /api/v2/webhooks/logs/{id} | Get webhook log by ID
347
+ *WorkItemsApi* | [**api_v2_work_items_id_attachments_post**](docs/WorkItemsApi.md#api_v2_work_items_id_attachments_post) | **POST** /api/v2/workItems/{id}/attachments | Upload and link attachment to WorkItem
348
+ *WorkItemsApi* | [**api_v2_work_items_id_check_list_transform_to_test_case_post**](docs/WorkItemsApi.md#api_v2_work_items_id_check_list_transform_to_test_case_post) | **POST** /api/v2/workItems/{id}/checkList/transformTo/testCase | Transform CheckList to TestCase
349
+ *WorkItemsApi* | [**api_v2_work_items_id_history_get**](docs/WorkItemsApi.md#api_v2_work_items_id_history_get) | **GET** /api/v2/workItems/{id}/history | Get change history of WorkItem
350
+ *WorkItemsApi* | [**api_v2_work_items_id_like_delete**](docs/WorkItemsApi.md#api_v2_work_items_id_like_delete) | **DELETE** /api/v2/workItems/{id}/like | Delete like from WorkItem
351
+ *WorkItemsApi* | [**api_v2_work_items_id_like_post**](docs/WorkItemsApi.md#api_v2_work_items_id_like_post) | **POST** /api/v2/workItems/{id}/like | Set like to WorkItem
352
+ *WorkItemsApi* | [**api_v2_work_items_id_likes_count_get**](docs/WorkItemsApi.md#api_v2_work_items_id_likes_count_get) | **GET** /api/v2/workItems/{id}/likes/count | Get likes count of WorkItem
353
+ *WorkItemsApi* | [**api_v2_work_items_id_likes_get**](docs/WorkItemsApi.md#api_v2_work_items_id_likes_get) | **GET** /api/v2/workItems/{id}/likes | Get likes of WorkItem
354
+ *WorkItemsApi* | [**api_v2_work_items_id_test_results_history_get**](docs/WorkItemsApi.md#api_v2_work_items_id_test_results_history_get) | **GET** /api/v2/workItems/{id}/testResults/history | Get test results history of WorkItem
355
+ *WorkItemsApi* | [**api_v2_work_items_id_version_version_id_actual_post**](docs/WorkItemsApi.md#api_v2_work_items_id_version_version_id_actual_post) | **POST** /api/v2/workItems/{id}/version/{versionId}/actual | Set WorkItem as actual
356
+ *WorkItemsApi* | [**api_v2_work_items_move_post**](docs/WorkItemsApi.md#api_v2_work_items_move_post) | **POST** /api/v2/workItems/move | Move WorkItem to another section
357
+ *WorkItemsApi* | [**api_v2_work_items_search_post**](docs/WorkItemsApi.md#api_v2_work_items_search_post) | **POST** /api/v2/workItems/search | Search for work items
358
+ *WorkItemsApi* | [**api_v2_work_items_shared_step_id_references_sections_post**](docs/WorkItemsApi.md#api_v2_work_items_shared_step_id_references_sections_post) | **POST** /api/v2/workItems/{sharedStepId}/references/sections | Get SharedStep references in sections
359
+ *WorkItemsApi* | [**api_v2_work_items_shared_step_id_references_work_items_post**](docs/WorkItemsApi.md#api_v2_work_items_shared_step_id_references_work_items_post) | **POST** /api/v2/workItems/{sharedStepId}/references/workItems | Get SharedStep references in work items
360
+ *WorkItemsApi* | [**api_v2_work_items_shared_steps_shared_step_id_references_get**](docs/WorkItemsApi.md#api_v2_work_items_shared_steps_shared_step_id_references_get) | **GET** /api/v2/workItems/sharedSteps/{sharedStepId}/references | Get SharedStep references
361
+ *WorkItemsApi* | [**create_work_item**](docs/WorkItemsApi.md#create_work_item) | **POST** /api/v2/workItems | Create Test Case, Checklist or Shared Step
362
+ *WorkItemsApi* | [**delete_all_work_items_from_auto_test**](docs/WorkItemsApi.md#delete_all_work_items_from_auto_test) | **DELETE** /api/v2/workItems/{id}/autoTests | Delete all links AutoTests from WorkItem by Id or GlobalId
363
+ *WorkItemsApi* | [**delete_work_item**](docs/WorkItemsApi.md#delete_work_item) | **DELETE** /api/v2/workItems/{id} | Delete Test Case, Checklist or Shared Step by Id or GlobalId
364
+ *WorkItemsApi* | [**get_auto_tests_for_work_item**](docs/WorkItemsApi.md#get_auto_tests_for_work_item) | **GET** /api/v2/workItems/{id}/autoTests | Get all AutoTests linked to WorkItem by Id or GlobalId
365
+ *WorkItemsApi* | [**get_iterations**](docs/WorkItemsApi.md#get_iterations) | **GET** /api/v2/workItems/{id}/iterations | Get iterations by work item Id or GlobalId
366
+ *WorkItemsApi* | [**get_work_item_by_id**](docs/WorkItemsApi.md#get_work_item_by_id) | **GET** /api/v2/workItems/{id} | Get Test Case, Checklist or Shared Step by Id or GlobalId
367
+ *WorkItemsApi* | [**get_work_item_chronology**](docs/WorkItemsApi.md#get_work_item_chronology) | **GET** /api/v2/workItems/{id}/chronology | Get WorkItem chronology by Id or GlobalId
368
+ *WorkItemsApi* | [**get_work_item_versions**](docs/WorkItemsApi.md#get_work_item_versions) | **GET** /api/v2/workItems/{id}/versions | Get WorkItem versions
369
+ *WorkItemsApi* | [**purge_work_item**](docs/WorkItemsApi.md#purge_work_item) | **POST** /api/v2/workItems/{id}/purge | Permanently delete test case, checklist or shared steps from archive
370
+ *WorkItemsApi* | [**restore_work_item**](docs/WorkItemsApi.md#restore_work_item) | **POST** /api/v2/workItems/{id}/restore | Restore test case, checklist or shared steps from archive
371
+ *WorkItemsApi* | [**update_work_item**](docs/WorkItemsApi.md#update_work_item) | **PUT** /api/v2/workItems | Update Test Case, Checklist or Shared Step
372
+ *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
373
+ *WorkItemsCommentsApi* | [**api_v2_work_items_comments_post**](docs/WorkItemsCommentsApi.md#api_v2_work_items_comments_post) | **POST** /api/v2/workItems/comments | Create WorkItem comment
374
+ *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
375
+ *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
376
+ *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
377
+
378
+
379
+ ## Documentation For Models
380
+
381
+ - You can see the documentation [here](docs/README.md).
382
+
383
+
384
+ # Contributing
385
+
386
+ You can help to develop the project. Any contributions are **greatly appreciated**.
387
+
388
+ * If you have suggestions for adding or removing projects, feel free to [open an issue](https://github.com/testit-tms/api-client-python/issues/new) to discuss it, or directly create a pull request after you edit the *README.md* file with necessary changes.
389
+ * Please make sure you check your spelling and grammar.
390
+ * Create individual PR for each suggestion.
391
+ * Please also read through the [Code Of Conduct](https://github.com/testit-tms/api-client-python/blob/master/CODE_OF_CONDUCT.md) before posting your first idea as well.
392
+
393
+
394
+ # License
395
+
396
+ Distributed under the Apache-2.0 License. See [LICENSE](https://github.com/testit-tms/api-client-python/blob/master/LICENSE.md) for more information.
397
+