testit-api-client 3.4.1__tar.gz → 4.0.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (481) hide show
  1. {testit-api-client-3.4.1/src/testit_api_client.egg-info → testit_api_client-4.0.0}/PKG-INFO +14 -1
  2. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/README.md +13 -0
  3. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/setup.py +1 -1
  4. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/__init__.py +1 -1
  5. testit_api_client-4.0.0/src/testit_api_client/api/tags_api.py +1005 -0
  6. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/test_results_api.py +3 -2
  7. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/test_runs_api.py +1043 -253
  8. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/webhooks_api.py +3 -3
  9. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api_client.py +1 -1
  10. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/configuration.py +1 -5
  11. testit_api_client-4.0.0/src/testit_api_client/model/api_v2_tags_delete_request.py +327 -0
  12. testit_api_client-4.0.0/src/testit_api_client/model/api_v2_tags_post_request.py +323 -0
  13. testit_api_client-4.0.0/src/testit_api_client/model/api_v2_tags_put_request.py +323 -0
  14. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_test_points_search_post_request.py +4 -0
  15. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_test_results_search_post_request.py +42 -0
  16. testit_api_client-4.0.0/src/testit_api_client/model/api_v2_test_runs_delete_request.py +327 -0
  17. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_test_runs_search_post_request.py +6 -0
  18. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/attachment_model.py +2 -8
  19. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/auto_test_model_v2_get_model.py +4 -0
  20. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/auto_test_post_model.py +4 -0
  21. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/auto_test_related_to_test_result.py +4 -0
  22. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/create_and_fill_by_auto_tests_request.py +3 -0
  23. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/create_auto_test_request.py +4 -0
  24. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/create_section_request.py +14 -8
  25. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/create_test_plan_request.py +5 -5
  26. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/create_work_item_request.py +16 -16
  27. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/custom_attribute_model.py +8 -6
  28. testit_api_client-4.0.0/src/testit_api_client/model/named_entity_model.py +265 -0
  29. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/public_test_point_model.py +8 -2
  30. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/public_test_run_model.py +8 -0
  31. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/section_post_model.py +18 -10
  32. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/section_put_model.py +10 -2
  33. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/section_with_steps_model.py +6 -0
  34. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/shared_step_reference_model.py +5 -5
  35. testit_api_client-4.0.0/src/testit_api_client/model/step_post_model.py +273 -0
  36. testit_api_client-4.0.0/src/testit_api_client/model/tag_extraction_model.py +262 -0
  37. testit_api_client-4.0.0/src/testit_api_client/model/tag_model.py +292 -0
  38. testit_api_client-4.0.0/src/testit_api_client/model/tag_post_model.py +267 -0
  39. testit_api_client-4.0.0/src/testit_api_client/model/tag_put_model.py +267 -0
  40. testit_api_client-4.0.0/src/testit_api_client/model/tag_select_model.py +268 -0
  41. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/tag_short_model.py +1 -2
  42. testit_api_client-4.0.0/src/testit_api_client/model/tags_filter_model.py +276 -0
  43. testit_api_client-4.0.0/src/testit_api_client/model/tags_filter_model_created_date.py +323 -0
  44. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_plan_model.py +5 -5
  45. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_plan_post_model.py +5 -5
  46. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_plan_put_model.py +5 -5
  47. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_plan_with_analytic_model.py +5 -5
  48. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_plan_with_test_suite_tree_model.py +5 -5
  49. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_point_filter_model.py +4 -0
  50. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_point_short_get_model.py +14 -2
  51. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_result_short_get_model.py +22 -4
  52. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_result_v2_get_model.py +1 -1
  53. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_result_v2_short_model.py +1 -1
  54. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_results_filter_model.py +42 -0
  55. testit_api_client-4.0.0/src/testit_api_client/model/test_results_filter_model_completed_on.py +323 -0
  56. testit_api_client-4.0.0/src/testit_api_client/model/test_results_filter_model_created_date.py +323 -0
  57. testit_api_client-4.0.0/src/testit_api_client/model/test_results_filter_model_duration.py +323 -0
  58. testit_api_client-4.0.0/src/testit_api_client/model/test_results_filter_model_modified_date.py +323 -0
  59. testit_api_client-4.0.0/src/testit_api_client/model/test_results_filter_model_started_on.py +323 -0
  60. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_fill_by_auto_tests_post_model.py +3 -0
  61. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_filter_model.py +6 -0
  62. testit_api_client-4.0.0/src/testit_api_client/model/test_run_filter_model_created_date.py +323 -0
  63. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_v2_get_model.py +14 -2
  64. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/update_section_request.py +6 -0
  65. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/update_test_plan_request.py +5 -5
  66. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/update_work_item_request.py +5 -5
  67. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/user_rank_model.py +8 -2
  68. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/user_with_rank_model_user_rank.py +4 -0
  69. testit-api-client-3.4.1/src/testit_api_client/model/request_data.py → testit_api_client-4.0.0/src/testit_api_client/model/webhook_response.py +3 -3
  70. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_model.py +5 -5
  71. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_post_model.py +16 -16
  72. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_put_model.py +5 -5
  73. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_short_model.py +8 -2
  74. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/models/__init__.py +20 -1
  75. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/rest.py +0 -4
  76. {testit-api-client-3.4.1 → testit_api_client-4.0.0/src/testit_api_client.egg-info}/PKG-INFO +14 -1
  77. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client.egg-info/SOURCES.txt +20 -1
  78. testit-api-client-3.4.1/src/testit_api_client/api/tags_api.py +0 -314
  79. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/LICENSE.md +0 -0
  80. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/setup.cfg +0 -0
  81. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/__init__.py +0 -0
  82. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/attachments_api.py +0 -0
  83. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/auto_tests_api.py +0 -0
  84. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/background_jobs_api.py +0 -0
  85. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/configurations_api.py +0 -0
  86. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/custom_attribute_templates_api.py +0 -0
  87. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/custom_attributes_api.py +0 -0
  88. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/notifications_api.py +0 -0
  89. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/parameters_api.py +0 -0
  90. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/project_attribute_templates_api.py +0 -0
  91. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/project_attributes_api.py +0 -0
  92. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/project_configurations_api.py +0 -0
  93. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/project_export_api.py +0 -0
  94. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/project_import_api.py +0 -0
  95. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/project_sections_api.py +0 -0
  96. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/project_test_plan_attributes_api.py +0 -0
  97. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/project_test_plans_api.py +0 -0
  98. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/project_work_items_api.py +0 -0
  99. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/projects_api.py +0 -0
  100. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/search_api.py +0 -0
  101. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/sections_api.py +0 -0
  102. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/test_plans_api.py +0 -0
  103. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/test_points_api.py +0 -0
  104. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/test_suites_api.py +0 -0
  105. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/webhooks_logs_api.py +0 -0
  106. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/work_items_api.py +0 -0
  107. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/api/work_items_comments_api.py +0 -0
  108. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/apis/__init__.py +0 -0
  109. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/exceptions.py +0 -0
  110. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/__init__.py +0 -0
  111. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/action_update.py +0 -0
  112. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_attachments_post_request.py +0 -0
  113. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_auto_tests_flaky_bulk_post_request.py +0 -0
  114. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_auto_tests_id_test_results_search_post_request.py +0 -0
  115. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_auto_tests_search_post_request.py +0 -0
  116. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_background_jobs_search_post_request.py +0 -0
  117. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_configurations_create_by_parameters_post_request.py +0 -0
  118. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_configurations_purge_bulk_post_request.py +0 -0
  119. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_configurations_put_request.py +0 -0
  120. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_configurations_search_post_request.py +0 -0
  121. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_custom_attributes_global_id_put_request.py +0 -0
  122. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_custom_attributes_global_post_request.py +0 -0
  123. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_custom_attributes_search_post_request.py +0 -0
  124. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_custom_attributes_templates_post_request.py +0 -0
  125. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_custom_attributes_templates_put_request.py +0 -0
  126. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_custom_attributes_templates_search_post_request.py +0 -0
  127. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_notifications_search_post_request.py +0 -0
  128. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_parameters_search_post_request.py +0 -0
  129. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_projects_project_id_attributes_templates_search_post_request.py +0 -0
  130. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_projects_project_id_test_plans_delete_bulk_post_request.py +0 -0
  131. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_projects_project_id_test_plans_search_post_request.py +0 -0
  132. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_projects_project_id_work_items_search_grouped_post_request.py +0 -0
  133. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_projects_project_id_work_items_search_post_request.py +0 -0
  134. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_projects_restore_bulk_post_request.py +0 -0
  135. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_projects_search_post_request.py +0 -0
  136. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_search_global_search_post_request.py +0 -0
  137. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_test_plans_id_export_test_points_xlsx_post_request.py +0 -0
  138. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_test_plans_id_test_points_tester_user_id_post_request.py +0 -0
  139. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_test_plans_id_test_runs_search_post_request.py +0 -0
  140. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_test_results_id_put_request.py +0 -0
  141. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_test_runs_id_statistics_filter_post_request.py +0 -0
  142. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_test_runs_id_test_results_bulk_put_request.py +0 -0
  143. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_test_runs_update_multiple_post_request.py +0 -0
  144. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_test_suites_post_request.py +0 -0
  145. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_test_suites_put_request.py +0 -0
  146. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_webhooks_post_request.py +0 -0
  147. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_webhooks_search_post_request.py +0 -0
  148. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_webhooks_test_post_request.py +0 -0
  149. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_work_items_comments_post_request.py +0 -0
  150. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_work_items_comments_put_request.py +0 -0
  151. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_work_items_move_post_request.py +0 -0
  152. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_work_items_shared_step_id_references_sections_post_request.py +0 -0
  153. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/api_v2_work_items_shared_step_id_references_work_items_post_request.py +0 -0
  154. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/attachment_change_view_model.py +0 -0
  155. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/attachment_change_view_model_array_changed_field_view_model.py +0 -0
  156. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/attachment_model_auto_test_step_results_model.py +0 -0
  157. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/attachment_put_model.py +0 -0
  158. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/attachment_put_model_auto_test_step_results_model.py +0 -0
  159. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/auto_test_average_duration_model.py +0 -0
  160. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/auto_test_change_view_model.py +0 -0
  161. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/auto_test_change_view_model_array_changed_field_view_model.py +0 -0
  162. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/auto_test_id_model.py +0 -0
  163. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/auto_test_model.py +0 -0
  164. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/auto_test_namespace_model.py +0 -0
  165. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/auto_test_put_model.py +0 -0
  166. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/auto_test_results_for_test_run_model.py +0 -0
  167. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/auto_test_short_model.py +0 -0
  168. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/auto_test_step_model.py +0 -0
  169. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/autotest_filter_model.py +0 -0
  170. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/autotest_filter_model_created_date.py +0 -0
  171. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/autotest_filter_model_modified_date.py +0 -0
  172. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/autotest_filter_model_stability_percentage.py +0 -0
  173. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/autotest_historical_result_select_model.py +0 -0
  174. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/autotest_result_historical_get_model.py +0 -0
  175. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/autotest_result_outcome.py +0 -0
  176. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/autotest_result_reason_sub_get_model.py +0 -0
  177. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/autotest_select_model.py +0 -0
  178. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/autotest_select_model_extraction_model.py +0 -0
  179. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/autotest_select_model_filter.py +0 -0
  180. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/autotests_extraction_model.py +0 -0
  181. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/autotests_extraction_model_ids.py +0 -0
  182. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/autotests_select_model.py +0 -0
  183. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/autotests_select_model_filter.py +0 -0
  184. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/autotests_select_model_includes.py +0 -0
  185. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/available_test_result_outcome.py +0 -0
  186. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/background_job_attachment_model.py +0 -0
  187. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/background_job_filter_model.py +0 -0
  188. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/background_job_get_model.py +0 -0
  189. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/background_job_state.py +0 -0
  190. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/background_job_type.py +0 -0
  191. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/boolean_changed_field_view_model.py +0 -0
  192. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/boolean_nullable_changed_field_view_model.py +0 -0
  193. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/configuration_by_parameters_model.py +0 -0
  194. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/configuration_extraction_model.py +0 -0
  195. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/configuration_extraction_model_ids.py +0 -0
  196. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/configuration_extraction_model_project_ids.py +0 -0
  197. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/configuration_filter_model.py +0 -0
  198. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/configuration_model.py +0 -0
  199. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/configuration_post_model.py +0 -0
  200. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/configuration_put_model.py +0 -0
  201. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/configuration_select_model.py +0 -0
  202. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/configuration_select_model_extraction_model.py +0 -0
  203. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/configuration_select_model_filter.py +0 -0
  204. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/create_and_fill_by_configurations_request.py +0 -0
  205. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/create_and_fill_by_work_items_request.py +0 -0
  206. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/create_configuration_request.py +0 -0
  207. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/create_empty_request.py +0 -0
  208. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/create_parameter_request.py +0 -0
  209. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/create_project_request.py +0 -0
  210. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/create_projects_attribute_request.py +0 -0
  211. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/custom_attribute_change_model.py +0 -0
  212. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/custom_attribute_get_model.py +0 -0
  213. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/custom_attribute_option_model.py +0 -0
  214. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/custom_attribute_option_post_model.py +0 -0
  215. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/custom_attribute_post_model.py +0 -0
  216. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/custom_attribute_put_model.py +0 -0
  217. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/custom_attribute_search_query_model.py +0 -0
  218. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/custom_attribute_template_model.py +0 -0
  219. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/custom_attribute_template_post_model.py +0 -0
  220. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/custom_attribute_template_put_model.py +0 -0
  221. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/custom_attribute_template_search_query_model.py +0 -0
  222. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/custom_attribute_test_plan_project_relation_put_model.py +0 -0
  223. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/custom_attribute_types_enum.py +0 -0
  224. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/date_time_range_selector_model.py +0 -0
  225. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/deletion_state.py +0 -0
  226. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/export_project_json_request.py +0 -0
  227. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/export_project_with_test_plans_json_request.py +0 -0
  228. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/external_link_model.py +0 -0
  229. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/failure_category_model.py +0 -0
  230. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/failure_class_model.py +0 -0
  231. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/failure_class_regex_model.py +0 -0
  232. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/filter_model.py +0 -0
  233. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/filter_model_data.py +0 -0
  234. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/flaky_bulk_model.py +0 -0
  235. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/flaky_bulk_model_autotest_select.py +0 -0
  236. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/get_xlsx_test_points_by_test_plan_model.py +0 -0
  237. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/global_custom_attribute_post_model.py +0 -0
  238. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/global_custom_attribute_update_model.py +0 -0
  239. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/global_search_item_result.py +0 -0
  240. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/global_search_request.py +0 -0
  241. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/global_search_response.py +0 -0
  242. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/guid_changed_field_view_model.py +0 -0
  243. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/guid_extraction_model.py +0 -0
  244. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/image_resize_type.py +0 -0
  245. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/int32_changed_field_view_model.py +0 -0
  246. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/int32_range_selector_model.py +0 -0
  247. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/int64_changed_field_view_model.py +0 -0
  248. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/int64_range_selector_model.py +0 -0
  249. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/iteration_model.py +0 -0
  250. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/iteration_put_model.py +0 -0
  251. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/label_post_model.py +0 -0
  252. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/label_short_model.py +0 -0
  253. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/last_test_result_model.py +0 -0
  254. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/link_auto_test_to_work_item_request.py +0 -0
  255. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/link_model.py +0 -0
  256. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/link_post_model.py +0 -0
  257. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/link_put_model.py +0 -0
  258. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/link_short_model.py +0 -0
  259. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/link_sub_get_model.py +0 -0
  260. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/link_type.py +0 -0
  261. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/move_request.py +0 -0
  262. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/no_content_result.py +0 -0
  263. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/notification_model.py +0 -0
  264. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/notification_query_filter_model.py +0 -0
  265. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/notification_type_model.py +0 -0
  266. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/operation.py +0 -0
  267. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/parameter_filter_model.py +0 -0
  268. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/parameter_group_model.py +0 -0
  269. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/parameter_iteration_model.py +0 -0
  270. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/parameter_model.py +0 -0
  271. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/parameter_post_model.py +0 -0
  272. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/parameter_put_model.py +0 -0
  273. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/parameter_short_model.py +0 -0
  274. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/period_view_model.py +0 -0
  275. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/period_view_model_changed_field_view_model.py +0 -0
  276. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/problem_details.py +0 -0
  277. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/project_attributes_filter_model.py +0 -0
  278. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/project_custom_attribute_template_get_model.py +0 -0
  279. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/project_custom_attributes_templates_filter_model.py +0 -0
  280. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/project_export_query_model.py +0 -0
  281. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/project_export_with_test_plans_post_model.py +0 -0
  282. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/project_extraction_model.py +0 -0
  283. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/project_model.py +0 -0
  284. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/project_post_model.py +0 -0
  285. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/project_put_model.py +0 -0
  286. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/project_select_model.py +0 -0
  287. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/project_shortest_model.py +0 -0
  288. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/project_test_plans_filter_model.py +0 -0
  289. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/projects_filter_model.py +0 -0
  290. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/projects_filter_model_autotests_count.py +0 -0
  291. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/projects_filter_model_checklists_count.py +0 -0
  292. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/projects_filter_model_created_date.py +0 -0
  293. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/projects_filter_model_shared_steps_count.py +0 -0
  294. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/projects_filter_model_test_cases_count.py +0 -0
  295. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/rename_request.py +0 -0
  296. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/request_type_model.py +0 -0
  297. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/search_attributes_in_project_request.py +0 -0
  298. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/search_auto_tests_query_includes_model.py +0 -0
  299. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/search_custom_attribute_template_get_model.py +0 -0
  300. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/search_webhooks_query_model.py +0 -0
  301. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/search_work_items_request.py +0 -0
  302. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/section_model.py +0 -0
  303. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/section_move_model.py +0 -0
  304. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/section_rename_model.py +0 -0
  305. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/section_shared_step.py +0 -0
  306. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/set_of_attachment_ids.py +0 -0
  307. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/set_of_links.py +0 -0
  308. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/shared_step_change_view_model.py +0 -0
  309. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/shared_step_model.py +0 -0
  310. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/shared_step_reference_section_model.py +0 -0
  311. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/shared_step_reference_sections_query_filter_model.py +0 -0
  312. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/shared_step_reference_sections_query_filter_model_created_date.py +0 -0
  313. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/shared_step_reference_sections_query_filter_model_modified_date.py +0 -0
  314. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/shared_step_references_query_filter_model.py +0 -0
  315. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/shared_step_result_model.py +0 -0
  316. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/short_configuration.py +0 -0
  317. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/step_comment_model.py +0 -0
  318. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/step_model.py +0 -0
  319. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/step_put_model.py +0 -0
  320. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/step_result_model.py +0 -0
  321. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/string_array_changed_field_view_model.py +0 -0
  322. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/string_changed_field_view_model.py +0 -0
  323. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/string_changed_field_with_diffs_view_model.py +0 -0
  324. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_plan_change_model.py +0 -0
  325. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_plan_change_model_test_plan_changed_fields.py +0 -0
  326. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_plan_changed_fields_view_model.py +0 -0
  327. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_plan_extraction_model.py +0 -0
  328. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_plan_group_by_status.py +0 -0
  329. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_plan_group_by_test_suite.py +0 -0
  330. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_plan_group_by_tester.py +0 -0
  331. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_plan_group_by_tester_and_status.py +0 -0
  332. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_plan_link.py +0 -0
  333. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_plan_select_model.py +0 -0
  334. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_plan_short_model.py +0 -0
  335. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_plan_status_model.py +0 -0
  336. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_plan_with_analytic_model_analytic.py +0 -0
  337. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_point_analytic_result.py +0 -0
  338. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_point_by_test_suite_model.py +0 -0
  339. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_point_change_view_model.py +0 -0
  340. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_point_change_view_model_changed_field_view_model.py +0 -0
  341. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_point_filter_model_created_date.py +0 -0
  342. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_point_filter_model_duration.py +0 -0
  343. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_point_filter_model_modified_date.py +0 -0
  344. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_point_filter_model_work_item_created_date.py +0 -0
  345. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_point_filter_model_work_item_median_duration.py +0 -0
  346. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_point_filter_model_work_item_modified_date.py +0 -0
  347. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_point_put_model.py +0 -0
  348. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_point_related_to_test_result.py +0 -0
  349. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_point_result_model.py +0 -0
  350. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_point_select_model.py +0 -0
  351. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_point_selector.py +0 -0
  352. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_point_short_get_model_last_test_result.py +0 -0
  353. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_point_short_model.py +0 -0
  354. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_point_status.py +0 -0
  355. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_point_with_last_result_model.py +0 -0
  356. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_points_extraction_model.py +0 -0
  357. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_points_extraction_model_ids.py +0 -0
  358. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_result_change_view_model.py +0 -0
  359. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_result_change_view_model_changed_field_view_model.py +0 -0
  360. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_result_chronology_model.py +0 -0
  361. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_result_configuration.py +0 -0
  362. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_result_history_report_model.py +0 -0
  363. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_result_model.py +0 -0
  364. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_result_outcome.py +0 -0
  365. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_result_short_model.py +0 -0
  366. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_result_step_comment_put_model.py +0 -0
  367. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_result_update_model.py +0 -0
  368. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_results_local_filter_model.py +0 -0
  369. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_results_statistics_get_model.py +0 -0
  370. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_results_statistics_get_model_failure_categories.py +0 -0
  371. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_results_statistics_get_model_statuses.py +0 -0
  372. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_analytic_result_model.py +0 -0
  373. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_extraction_model.py +0 -0
  374. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_extraction_model_ids.py +0 -0
  375. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_fill_by_configurations_post_model.py +0 -0
  376. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_fill_by_work_items_post_model.py +0 -0
  377. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_filter_model_auto_tests_count.py +0 -0
  378. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_filter_model_completed_date.py +0 -0
  379. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_filter_model_started_date.py +0 -0
  380. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_group_by_failure_class_model.py +0 -0
  381. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_group_by_status_model.py +0 -0
  382. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_model.py +0 -0
  383. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_model_analytic.py +0 -0
  384. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_search_query_model.py +0 -0
  385. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_select_model.py +0 -0
  386. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_select_model_extraction_model.py +0 -0
  387. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_selection_model.py +0 -0
  388. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_short_get_model.py +0 -0
  389. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_short_get_model_statistics.py +0 -0
  390. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_short_model.py +0 -0
  391. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_state.py +0 -0
  392. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_statistics_error_categories_get_model.py +0 -0
  393. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_statistics_statuses_get_model.py +0 -0
  394. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_test_results_partial_bulk_set_model.py +0 -0
  395. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_test_results_partial_bulk_set_model_selector.py +0 -0
  396. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_test_results_select_model.py +0 -0
  397. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_test_results_select_model_filter.py +0 -0
  398. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_test_results_select_model_test_result_ids_extraction_model.py +0 -0
  399. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_update_multiple_model.py +0 -0
  400. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_v2_post_short_model.py +0 -0
  401. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_run_v2_put_model.py +0 -0
  402. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_suite_change_view_model.py +0 -0
  403. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_suite_change_view_model_changed_field_view_model.py +0 -0
  404. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_suite_type.py +0 -0
  405. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_suite_v2_get_model.py +0 -0
  406. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_suite_v2_post_model.py +0 -0
  407. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_suite_v2_put_model.py +0 -0
  408. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_suite_v2_tree_model.py +0 -0
  409. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_suite_with_children_model.py +0 -0
  410. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_suite_work_items_search_model.py +0 -0
  411. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_suite_work_items_search_model_duration.py +0 -0
  412. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/test_suite_work_items_search_model_median_duration.py +0 -0
  413. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/update_attachment_short_model.py +0 -0
  414. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/update_auto_test_request.py +0 -0
  415. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/update_custom_attribute_test_plan_project_relations_request.py +0 -0
  416. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/update_empty_request.py +0 -0
  417. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/update_link_short_model.py +0 -0
  418. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/update_parameter_request.py +0 -0
  419. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/update_project_request.py +0 -0
  420. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/update_projects_attribute_request.py +0 -0
  421. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/user_with_rank_model.py +0 -0
  422. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/validate_anti_forgery_token_attribute.py +0 -0
  423. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/validation_problem_details.py +0 -0
  424. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/web_hook_event_type.py +0 -0
  425. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/web_hook_event_type_model.py +0 -0
  426. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/web_hook_log_model.py +0 -0
  427. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/web_hook_model.py +0 -0
  428. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/web_hook_post_model.py +0 -0
  429. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/web_hook_test_model.py +0 -0
  430. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/webhook_variables_type.py +0 -0
  431. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_change_model.py +0 -0
  432. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_change_model_work_item_changed_fields.py +0 -0
  433. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_changed_attribute_view_model.py +0 -0
  434. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_changed_fields_view_model.py +0 -0
  435. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_changed_fields_view_model_attachments.py +0 -0
  436. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_changed_fields_view_model_auto_tests.py +0 -0
  437. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_changed_fields_view_model_duration.py +0 -0
  438. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_changed_fields_view_model_global_id.py +0 -0
  439. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_changed_fields_view_model_is_deleted.py +0 -0
  440. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_changed_fields_view_model_links.py +0 -0
  441. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_changed_fields_view_model_project_id.py +0 -0
  442. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_changed_fields_view_model_state.py +0 -0
  443. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_changed_fields_view_model_steps.py +0 -0
  444. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_changed_fields_view_model_tags.py +0 -0
  445. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_comment_model.py +0 -0
  446. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_comment_model_user.py +0 -0
  447. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_comment_post_model.py +0 -0
  448. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_comment_put_model.py +0 -0
  449. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_entity_types.py +0 -0
  450. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_extraction_model.py +0 -0
  451. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_extraction_model_ids.py +0 -0
  452. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_extraction_model_section_ids.py +0 -0
  453. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_filter_model.py +0 -0
  454. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_group_get_model.py +0 -0
  455. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_group_get_model_select_model.py +0 -0
  456. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_group_model.py +0 -0
  457. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_group_type.py +0 -0
  458. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_id_model.py +0 -0
  459. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_identifier_model.py +0 -0
  460. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_like_model.py +0 -0
  461. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_link_change_view_model.py +0 -0
  462. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_link_change_view_model_array_changed_field_view_model.py +0 -0
  463. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_local_filter_model.py +0 -0
  464. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_local_select_model.py +0 -0
  465. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_local_select_model_extraction_model.py +0 -0
  466. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_local_select_model_filter.py +0 -0
  467. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_move_post_model.py +0 -0
  468. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_priority_model.py +0 -0
  469. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_search_query_model.py +0 -0
  470. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_select_model.py +0 -0
  471. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_select_model_filter.py +0 -0
  472. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_state.py +0 -0
  473. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_states.py +0 -0
  474. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_step_change_view_model.py +0 -0
  475. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_step_change_view_model_array_changed_field_with_diffs_view_model.py +0 -0
  476. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_step_change_view_model_work_item.py +0 -0
  477. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model/work_item_version_model.py +0 -0
  478. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client/model_utils.py +0 -0
  479. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client.egg-info/dependency_links.txt +0 -0
  480. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client.egg-info/requires.txt +0 -0
  481. {testit-api-client-3.4.1 → testit_api_client-4.0.0}/src/testit_api_client.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: testit-api-client
3
- Version: 3.4.1
3
+ Version: 4.0.0
4
4
  Summary: API-client for Test IT
5
5
  Home-page: https://pypi.org/project/testit-api-client/
6
6
  Author: Integration team
@@ -31,6 +31,8 @@ Status](https://img.shields.io/pypi/v/testit-api-client?style=plastic)](https://
31
31
  | 4.3 | 3.2.0 |
32
32
  | 4.4 | 3.3.0 |
33
33
  | 4.5 | 3.4.0 |
34
+ | 4.6 | 3.5.0 |
35
+ | 5.0 | 4.0.0 |
34
36
 
35
37
  ## Installation & Usage
36
38
  ### pip install
@@ -228,7 +230,12 @@ Class | Method | HTTP request | Description
228
230
  *SectionsApi* | [**move**](docs/SectionsApi.md#move) | **POST** /api/v2/sections/move | Move section with all work items into another section
229
231
  *SectionsApi* | [**rename**](docs/SectionsApi.md#rename) | **POST** /api/v2/sections/rename | Rename section
230
232
  *SectionsApi* | [**update_section**](docs/SectionsApi.md#update_section) | **PUT** /api/v2/sections | Update section
233
+ *TagsApi* | [**api_v2_tags_delete**](docs/TagsApi.md#api_v2_tags_delete) | **DELETE** /api/v2/tags | Delete tags
231
234
  *TagsApi* | [**api_v2_tags_get**](docs/TagsApi.md#api_v2_tags_get) | **GET** /api/v2/tags | Get all Tags
235
+ *TagsApi* | [**api_v2_tags_id_delete**](docs/TagsApi.md#api_v2_tags_id_delete) | **DELETE** /api/v2/tags/{id} | Delete tag
236
+ *TagsApi* | [**api_v2_tags_post**](docs/TagsApi.md#api_v2_tags_post) | **POST** /api/v2/tags | Create tag
237
+ *TagsApi* | [**api_v2_tags_put**](docs/TagsApi.md#api_v2_tags_put) | **PUT** /api/v2/tags | Update tag
238
+ *TagsApi* | [**api_v2_tags_search_get**](docs/TagsApi.md#api_v2_tags_search_get) | **GET** /api/v2/tags/search | Search tags
232
239
  *TagsApi* | [**api_v2_tags_test_plans_tags_get**](docs/TagsApi.md#api_v2_tags_test_plans_tags_get) | **GET** /api/v2/tags/testPlansTags | Get all Tags that are used in TestPlans
233
240
  *TestPlansApi* | [**add_test_points_with_sections**](docs/TestPlansApi.md#add_test_points_with_sections) | **POST** /api/v2/testPlans/{id}/test-points/withSections | Add test-points to TestPlan with sections
234
241
  *TestPlansApi* | [**add_work_items_with_sections**](docs/TestPlansApi.md#add_work_items_with_sections) | **POST** /api/v2/testPlans/{id}/workItems/withSections | Add WorkItems to TestPlan with Sections as TestSuites
@@ -276,10 +283,16 @@ Class | Method | HTTP request | Description
276
283
  *TestResultsApi* | [**download_attachment**](docs/TestResultsApi.md#download_attachment) | **GET** /api/v2/testResults/{id}/attachments/{attachmentId} | Get attachment of TestResult
277
284
  *TestResultsApi* | [**get_attachment**](docs/TestResultsApi.md#get_attachment) | **GET** /api/v2/testResults/{id}/attachments/{attachmentId}/info | Get Metadata of TestResult's attachment
278
285
  *TestResultsApi* | [**get_attachments**](docs/TestResultsApi.md#get_attachments) | **GET** /api/v2/testResults/{id}/attachments | Get all attachments of TestResult
286
+ *TestRunsApi* | [**api_v2_test_runs_delete**](docs/TestRunsApi.md#api_v2_test_runs_delete) | **DELETE** /api/v2/testRuns | Delete multiple test runs
287
+ *TestRunsApi* | [**api_v2_test_runs_id_delete**](docs/TestRunsApi.md#api_v2_test_runs_id_delete) | **DELETE** /api/v2/testRuns/{id} | Delete test run
288
+ *TestRunsApi* | [**api_v2_test_runs_id_purge_post**](docs/TestRunsApi.md#api_v2_test_runs_id_purge_post) | **POST** /api/v2/testRuns/{id}/purge | Permanently delete test run from archive
289
+ *TestRunsApi* | [**api_v2_test_runs_id_restore_post**](docs/TestRunsApi.md#api_v2_test_runs_id_restore_post) | **POST** /api/v2/testRuns/{id}/restore | Restore test run from the archive
279
290
  *TestRunsApi* | [**api_v2_test_runs_id_statistics_filter_post**](docs/TestRunsApi.md#api_v2_test_runs_id_statistics_filter_post) | **POST** /api/v2/testRuns/{id}/statistics/filter | Search for the test run test results and build statistics
280
291
  *TestRunsApi* | [**api_v2_test_runs_id_test_points_results_get**](docs/TestRunsApi.md#api_v2_test_runs_id_test_points_results_get) | **GET** /api/v2/testRuns/{id}/testPoints/results | Get test results from the test run grouped by test points
281
292
  *TestRunsApi* | [**api_v2_test_runs_id_test_results_bulk_put**](docs/TestRunsApi.md#api_v2_test_runs_id_test_results_bulk_put) | **PUT** /api/v2/testRuns/{id}/testResults/bulk | Partial edit of multiple test results in the test run
282
293
  *TestRunsApi* | [**api_v2_test_runs_id_test_results_last_modified_modification_date_get**](docs/TestRunsApi.md#api_v2_test_runs_id_test_results_last_modified_modification_date_get) | **GET** /api/v2/testRuns/{id}/testResults/lastModified/modificationDate | Get modification date of last test result of the test run
294
+ *TestRunsApi* | [**api_v2_test_runs_purge_bulk_post**](docs/TestRunsApi.md#api_v2_test_runs_purge_bulk_post) | **POST** /api/v2/testRuns/purge/bulk | Permanently delete multiple test runs from archive
295
+ *TestRunsApi* | [**api_v2_test_runs_restore_bulk_post**](docs/TestRunsApi.md#api_v2_test_runs_restore_bulk_post) | **POST** /api/v2/testRuns/restore/bulk | Restore multiple test runs from the archive
283
296
  *TestRunsApi* | [**api_v2_test_runs_search_post**](docs/TestRunsApi.md#api_v2_test_runs_search_post) | **POST** /api/v2/testRuns/search | Search for test runs
284
297
  *TestRunsApi* | [**api_v2_test_runs_update_multiple_post**](docs/TestRunsApi.md#api_v2_test_runs_update_multiple_post) | **POST** /api/v2/testRuns/updateMultiple | Update multiple test runs
285
298
  *TestRunsApi* | [**complete_test_run**](docs/TestRunsApi.md#complete_test_run) | **POST** /api/v2/testRuns/{id}/complete | Complete TestRun
@@ -18,6 +18,8 @@ Status](https://img.shields.io/pypi/v/testit-api-client?style=plastic)](https://
18
18
  | 4.3 | 3.2.0 |
19
19
  | 4.4 | 3.3.0 |
20
20
  | 4.5 | 3.4.0 |
21
+ | 4.6 | 3.5.0 |
22
+ | 5.0 | 4.0.0 |
21
23
 
22
24
  ## Installation & Usage
23
25
  ### pip install
@@ -215,7 +217,12 @@ Class | Method | HTTP request | Description
215
217
  *SectionsApi* | [**move**](docs/SectionsApi.md#move) | **POST** /api/v2/sections/move | Move section with all work items into another section
216
218
  *SectionsApi* | [**rename**](docs/SectionsApi.md#rename) | **POST** /api/v2/sections/rename | Rename section
217
219
  *SectionsApi* | [**update_section**](docs/SectionsApi.md#update_section) | **PUT** /api/v2/sections | Update section
220
+ *TagsApi* | [**api_v2_tags_delete**](docs/TagsApi.md#api_v2_tags_delete) | **DELETE** /api/v2/tags | Delete tags
218
221
  *TagsApi* | [**api_v2_tags_get**](docs/TagsApi.md#api_v2_tags_get) | **GET** /api/v2/tags | Get all Tags
222
+ *TagsApi* | [**api_v2_tags_id_delete**](docs/TagsApi.md#api_v2_tags_id_delete) | **DELETE** /api/v2/tags/{id} | Delete tag
223
+ *TagsApi* | [**api_v2_tags_post**](docs/TagsApi.md#api_v2_tags_post) | **POST** /api/v2/tags | Create tag
224
+ *TagsApi* | [**api_v2_tags_put**](docs/TagsApi.md#api_v2_tags_put) | **PUT** /api/v2/tags | Update tag
225
+ *TagsApi* | [**api_v2_tags_search_get**](docs/TagsApi.md#api_v2_tags_search_get) | **GET** /api/v2/tags/search | Search tags
219
226
  *TagsApi* | [**api_v2_tags_test_plans_tags_get**](docs/TagsApi.md#api_v2_tags_test_plans_tags_get) | **GET** /api/v2/tags/testPlansTags | Get all Tags that are used in TestPlans
220
227
  *TestPlansApi* | [**add_test_points_with_sections**](docs/TestPlansApi.md#add_test_points_with_sections) | **POST** /api/v2/testPlans/{id}/test-points/withSections | Add test-points to TestPlan with sections
221
228
  *TestPlansApi* | [**add_work_items_with_sections**](docs/TestPlansApi.md#add_work_items_with_sections) | **POST** /api/v2/testPlans/{id}/workItems/withSections | Add WorkItems to TestPlan with Sections as TestSuites
@@ -263,10 +270,16 @@ Class | Method | HTTP request | Description
263
270
  *TestResultsApi* | [**download_attachment**](docs/TestResultsApi.md#download_attachment) | **GET** /api/v2/testResults/{id}/attachments/{attachmentId} | Get attachment of TestResult
264
271
  *TestResultsApi* | [**get_attachment**](docs/TestResultsApi.md#get_attachment) | **GET** /api/v2/testResults/{id}/attachments/{attachmentId}/info | Get Metadata of TestResult's attachment
265
272
  *TestResultsApi* | [**get_attachments**](docs/TestResultsApi.md#get_attachments) | **GET** /api/v2/testResults/{id}/attachments | Get all attachments of TestResult
273
+ *TestRunsApi* | [**api_v2_test_runs_delete**](docs/TestRunsApi.md#api_v2_test_runs_delete) | **DELETE** /api/v2/testRuns | Delete multiple test runs
274
+ *TestRunsApi* | [**api_v2_test_runs_id_delete**](docs/TestRunsApi.md#api_v2_test_runs_id_delete) | **DELETE** /api/v2/testRuns/{id} | Delete test run
275
+ *TestRunsApi* | [**api_v2_test_runs_id_purge_post**](docs/TestRunsApi.md#api_v2_test_runs_id_purge_post) | **POST** /api/v2/testRuns/{id}/purge | Permanently delete test run from archive
276
+ *TestRunsApi* | [**api_v2_test_runs_id_restore_post**](docs/TestRunsApi.md#api_v2_test_runs_id_restore_post) | **POST** /api/v2/testRuns/{id}/restore | Restore test run from the archive
266
277
  *TestRunsApi* | [**api_v2_test_runs_id_statistics_filter_post**](docs/TestRunsApi.md#api_v2_test_runs_id_statistics_filter_post) | **POST** /api/v2/testRuns/{id}/statistics/filter | Search for the test run test results and build statistics
267
278
  *TestRunsApi* | [**api_v2_test_runs_id_test_points_results_get**](docs/TestRunsApi.md#api_v2_test_runs_id_test_points_results_get) | **GET** /api/v2/testRuns/{id}/testPoints/results | Get test results from the test run grouped by test points
268
279
  *TestRunsApi* | [**api_v2_test_runs_id_test_results_bulk_put**](docs/TestRunsApi.md#api_v2_test_runs_id_test_results_bulk_put) | **PUT** /api/v2/testRuns/{id}/testResults/bulk | Partial edit of multiple test results in the test run
269
280
  *TestRunsApi* | [**api_v2_test_runs_id_test_results_last_modified_modification_date_get**](docs/TestRunsApi.md#api_v2_test_runs_id_test_results_last_modified_modification_date_get) | **GET** /api/v2/testRuns/{id}/testResults/lastModified/modificationDate | Get modification date of last test result of the test run
281
+ *TestRunsApi* | [**api_v2_test_runs_purge_bulk_post**](docs/TestRunsApi.md#api_v2_test_runs_purge_bulk_post) | **POST** /api/v2/testRuns/purge/bulk | Permanently delete multiple test runs from archive
282
+ *TestRunsApi* | [**api_v2_test_runs_restore_bulk_post**](docs/TestRunsApi.md#api_v2_test_runs_restore_bulk_post) | **POST** /api/v2/testRuns/restore/bulk | Restore multiple test runs from the archive
270
283
  *TestRunsApi* | [**api_v2_test_runs_search_post**](docs/TestRunsApi.md#api_v2_test_runs_search_post) | **POST** /api/v2/testRuns/search | Search for test runs
271
284
  *TestRunsApi* | [**api_v2_test_runs_update_multiple_post**](docs/TestRunsApi.md#api_v2_test_runs_update_multiple_post) | **POST** /api/v2/testRuns/updateMultiple | Update multiple test runs
272
285
  *TestRunsApi* | [**complete_test_run**](docs/TestRunsApi.md#complete_test_run) | **POST** /api/v2/testRuns/{id}/complete | Complete TestRun
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages # noqa: H301
2
2
 
3
3
  NAME = "testit-api-client"
4
4
 
5
- VERSION = "3.4.1"
5
+ VERSION = "4.0.0"
6
6
 
7
7
  REQUIRES = [
8
8
  "urllib3 >= 1.25.3",
@@ -10,7 +10,7 @@
10
10
  """
11
11
 
12
12
 
13
- __version__ = "4.0.0"
13
+ __version__ = "3.6.0"
14
14
 
15
15
  # import ApiClient
16
16
  from testit_api_client.api_client import ApiClient