testit-api-client 3.2.0__tar.gz → 3.3.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 (469) hide show
  1. {testit-api-client-3.2.0/src/testit_api_client.egg-info → testit-api-client-3.3.0}/PKG-INFO +19 -9
  2. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/README.md +16 -8
  3. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/setup.py +1 -1
  4. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/__init__.py +1 -1
  5. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/api/attachments_api.py +3 -2
  6. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/api/auto_tests_api.py +6 -0
  7. testit-api-client-3.3.0/src/testit_api_client/api/background_jobs_api.py +612 -0
  8. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/api/configurations_api.py +6 -6
  9. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/api/custom_attribute_templates_api.py +11 -11
  10. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/api/custom_attributes_api.py +6 -6
  11. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/api/notifications_api.py +3 -2
  12. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/api/parameters_api.py +158 -0
  13. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/api/projects_api.py +833 -446
  14. testit-api-client-3.3.0/src/testit_api_client/api/search_api.py +167 -0
  15. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/api/sections_api.py +3 -2
  16. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/api/test_results_api.py +9 -8
  17. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/api/test_runs_api.py +127 -0
  18. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/api/test_suites_api.py +12 -188
  19. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/api/webhooks_api.py +21 -13
  20. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/api/work_items_api.py +12 -12
  21. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/api/work_items_comments_api.py +11 -11
  22. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/api_client.py +4 -2
  23. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/apis/__init__.py +1 -0
  24. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/configuration.py +5 -1
  25. testit-api-client-3.3.0/src/testit_api_client/model/action_update.py +292 -0
  26. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/api_v2_auto_tests_flaky_bulk_post_request.py +5 -5
  27. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/api_v2_auto_tests_id_test_results_search_post_request.py +5 -5
  28. testit-api-client-3.2.0/src/testit_api_client/model/notification_query_filter_model_created_date.py → testit-api-client-3.3.0/src/testit_api_client/model/api_v2_background_jobs_search_post_request.py +31 -13
  29. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/api_v2_configurations_create_by_parameters_post_request.py +4 -4
  30. testit-api-client-3.2.0/src/testit_api_client/model/api_v2_configurations_post_request.py → testit-api-client-3.3.0/src/testit_api_client/model/api_v2_configurations_put_request.py +10 -10
  31. testit-api-client-3.2.0/src/testit_api_client/model/api_v2_custom_attributes_global_id_delete_request.py → testit-api-client-3.3.0/src/testit_api_client/model/api_v2_custom_attributes_global_id_put_request.py +3 -3
  32. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/api_v2_custom_attributes_global_post_request.py +5 -3
  33. testit-api-client-3.2.0/src/testit_api_client/model/api_v2_custom_attributes_templates_post_request1.py → testit-api-client-3.3.0/src/testit_api_client/model/api_v2_custom_attributes_templates_post_request.py +3 -3
  34. testit-api-client-3.2.0/src/testit_api_client/model/api_v2_custom_attributes_templates_post_request.py → testit-api-client-3.3.0/src/testit_api_client/model/api_v2_custom_attributes_templates_put_request.py +3 -3
  35. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/api_v2_notifications_search_post_request.py +5 -5
  36. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/api_v2_projects_id_test_plans_delete_bulk_post_request.py +10 -10
  37. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/api_v2_projects_id_test_plans_search_post_request.py +14 -14
  38. testit-api-client-3.2.0/src/testit_api_client/model/test_point_select_model_extraction_model.py → testit-api-client-3.3.0/src/testit_api_client/model/api_v2_projects_restore_bulk_post_request.py +18 -12
  39. testit-api-client-3.2.0/src/testit_api_client/model/autotest_select_model_extraction_model.py → testit-api-client-3.3.0/src/testit_api_client/model/api_v2_search_global_search_post_request.py +22 -12
  40. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/api_v2_test_plans_id_export_test_points_xlsx_post_request.py +24 -24
  41. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/api_v2_test_plans_id_test_points_tester_user_id_post_request.py +10 -10
  42. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/api_v2_test_plans_id_test_runs_search_post_request.py +8 -8
  43. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/api_v2_test_points_search_post_request.py +9 -29
  44. testit-api-client-3.2.0/src/testit_api_client/model/api_v2_test_results_id_get_request.py → testit-api-client-3.3.0/src/testit_api_client/model/api_v2_test_results_id_put_request.py +45 -28
  45. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/api_v2_test_results_search_post_request.py +0 -8
  46. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/api_v2_test_runs_id_statistics_filter_post_request.py +0 -6
  47. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/api_v2_test_runs_search_post_request.py +40 -6
  48. testit-api-client-3.3.0/src/testit_api_client/model/api_v2_test_runs_update_multiple_post_request.py +337 -0
  49. testit-api-client-3.2.0/src/testit_api_client/model/api_v2_test_suites_post_request1.py → testit-api-client-3.3.0/src/testit_api_client/model/api_v2_test_suites_post_request.py +8 -6
  50. testit-api-client-3.2.0/src/testit_api_client/model/api_v2_test_suites_post_request.py → testit-api-client-3.3.0/src/testit_api_client/model/api_v2_test_suites_put_request.py +7 -7
  51. testit-api-client-3.2.0/src/testit_api_client/model/api_v2_webhooks_get_request.py → testit-api-client-3.3.0/src/testit_api_client/model/api_v2_webhooks_post_request.py +37 -33
  52. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/api_v2_webhooks_test_post_request.py +5 -3
  53. testit-api-client-3.2.0/src/testit_api_client/model/api_v2_work_items_comments_post_request1.py → testit-api-client-3.3.0/src/testit_api_client/model/api_v2_work_items_comments_post_request.py +3 -3
  54. testit-api-client-3.2.0/src/testit_api_client/model/api_v2_work_items_comments_post_request.py → testit-api-client-3.3.0/src/testit_api_client/model/api_v2_work_items_comments_put_request.py +3 -3
  55. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/attachment_change_view_model.py +16 -8
  56. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/attachment_model.py +34 -45
  57. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/attachment_model_auto_test_step_results_model.py +5 -3
  58. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/attachment_put_model.py +2 -2
  59. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/attachment_put_model_auto_test_step_results_model.py +5 -3
  60. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/auto_test_average_duration_model.py +14 -6
  61. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/auto_test_change_view_model.py +22 -12
  62. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/auto_test_id_model.py +10 -4
  63. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/auto_test_model.py +38 -22
  64. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/auto_test_model_v2_get_model.py +42 -28
  65. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/auto_test_post_model.py +4 -0
  66. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/auto_test_put_model.py +4 -0
  67. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/auto_test_related_to_test_result.py +26 -26
  68. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/auto_test_results_for_test_run_model.py +11 -9
  69. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/auto_test_short_model.py +25 -15
  70. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/autotest_filter_model.py +9 -3
  71. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/autotest_historical_result_select_model.py +5 -5
  72. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/autotest_result_historical_get_model.py +41 -20
  73. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/autotest_result_reason_sub_get_model.py +19 -8
  74. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/autotest_select_model.py +10 -10
  75. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/autotests_extraction_model_ids.py +0 -4
  76. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/autotests_select_model_filter.py +10 -4
  77. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/autotests_select_model_includes.py +7 -7
  78. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/background_job_attachment_model.py +16 -10
  79. testit-api-client-3.3.0/src/testit_api_client/model/background_job_filter_model.py +282 -0
  80. testit-api-client-3.2.0/src/testit_api_client/model/background_job_model.py → testit-api-client-3.3.0/src/testit_api_client/model/background_job_get_model.py +45 -23
  81. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/background_job_type.py +5 -4
  82. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/boolean_changed_field_view_model.py +14 -6
  83. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/configuration_by_parameters_model.py +8 -6
  84. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/configuration_extraction_model_ids.py +0 -4
  85. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/configuration_extraction_model_project_ids.py +0 -4
  86. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/configuration_model.py +46 -28
  87. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/configuration_post_model.py +11 -9
  88. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/configuration_put_model.py +11 -9
  89. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/create_and_fill_by_auto_tests_request.py +12 -0
  90. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/create_and_fill_by_configurations_request.py +12 -0
  91. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/create_and_fill_by_work_items_request.py +12 -0
  92. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/create_auto_test_request.py +4 -0
  93. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/create_configuration_request.py +7 -7
  94. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/create_empty_request.py +12 -0
  95. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/create_projects_attribute_request.py +13 -11
  96. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/create_test_plan_request.py +3 -3
  97. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/create_work_item_request.py +15 -9
  98. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/custom_attribute_get_model.py +36 -24
  99. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/custom_attribute_model.py +32 -20
  100. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/custom_attribute_option_model.py +20 -10
  101. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/custom_attribute_option_post_model.py +12 -6
  102. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/custom_attribute_post_model.py +21 -13
  103. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/custom_attribute_put_model.py +32 -20
  104. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/custom_attribute_template_model.py +12 -8
  105. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/custom_attribute_types_enum.py +5 -4
  106. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/failure_category_model.py +5 -4
  107. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/failure_class_model.py +31 -21
  108. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/failure_class_regex_model.py +20 -12
  109. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/filter_model.py +41 -27
  110. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/flaky_bulk_model.py +5 -5
  111. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/get_xlsx_test_points_by_test_plan_model.py +54 -26
  112. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/global_custom_attribute_post_model.py +5 -3
  113. testit-api-client-3.3.0/src/testit_api_client/model/global_search_item_result.py +285 -0
  114. testit-api-client-3.3.0/src/testit_api_client/model/global_search_request.py +279 -0
  115. testit-api-client-3.3.0/src/testit_api_client/model/global_search_response.py +280 -0
  116. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/guid_changed_field_view_model.py +14 -6
  117. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/guid_extraction_model.py +0 -4
  118. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/int32_changed_field_view_model.py +14 -6
  119. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/int64_changed_field_view_model.py +14 -6
  120. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/iteration_model.py +13 -7
  121. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/iteration_put_model.py +6 -4
  122. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/label_post_model.py +2 -2
  123. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/label_short_model.py +10 -8
  124. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/last_test_result_model.py +20 -10
  125. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/link_model.py +22 -13
  126. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/link_post_model.py +8 -3
  127. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/link_put_model.py +14 -9
  128. testit-api-client-3.3.0/src/testit_api_client/model/link_short_model.py +271 -0
  129. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/link_sub_get_model.py +6 -6
  130. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/no_content_result.py +10 -4
  131. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/notification_model.py +46 -31
  132. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/notification_query_filter_model.py +5 -5
  133. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/parameter_group_model.py +17 -11
  134. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/parameter_model.py +30 -20
  135. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/parameter_put_model.py +8 -6
  136. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/parameter_short_model.py +14 -10
  137. testit-api-client-3.3.0/src/testit_api_client/model/period_view_model_changed_field_view_model.py +266 -0
  138. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/project_attributes_filter_model.py +6 -6
  139. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/project_custom_attribute_template_get_model.py +20 -12
  140. testit-api-client-3.3.0/src/testit_api_client/model/project_extraction_model.py +262 -0
  141. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/project_model.py +43 -27
  142. testit-api-client-3.3.0/src/testit_api_client/model/project_select_model.py +268 -0
  143. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/project_shortest_model.py +21 -11
  144. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/project_test_plans_filter_model.py +14 -14
  145. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/public_test_point_model.py +20 -10
  146. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/public_test_run_model.py +31 -23
  147. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/request_data.py +26 -14
  148. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/search_attributes_in_project_request.py +6 -6
  149. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/search_auto_tests_query_includes_model.py +18 -8
  150. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/search_custom_attribute_template_get_model.py +23 -15
  151. testit-api-client-3.2.0/src/testit_api_client/model/filter_model_data.py → testit-api-client-3.3.0/src/testit_api_client/model/search_work_items_request.py +45 -11
  152. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/section_model.py +26 -18
  153. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/section_shared_step.py +13 -13
  154. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/section_with_steps_model.py +26 -18
  155. testit-api-client-3.3.0/src/testit_api_client/model/set_of_attachment_ids.py +325 -0
  156. testit-api-client-3.2.0/src/testit_api_client/model/test_point_with_last_result_model_iteration.py → testit-api-client-3.3.0/src/testit_api_client/model/set_of_links.py +18 -16
  157. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/shared_step_change_view_model.py +20 -12
  158. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/shared_step_model.py +25 -15
  159. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/shared_step_reference_model.py +66 -44
  160. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/shared_step_reference_section_model.py +32 -18
  161. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/shared_step_result_model.py +13 -7
  162. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/short_configuration.py +13 -7
  163. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/step_comment_model.py +20 -14
  164. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/step_model.py +12 -6
  165. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/step_put_model.py +10 -4
  166. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/step_result_model.py +18 -12
  167. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_plan_change_model.py +24 -14
  168. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_plan_changed_fields_view_model.py +54 -54
  169. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_plan_extraction_model.py +5 -5
  170. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_plan_group_by_status.py +14 -8
  171. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_plan_group_by_test_suite.py +18 -10
  172. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_plan_group_by_tester.py +12 -6
  173. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_plan_group_by_tester_and_status.py +15 -9
  174. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_plan_link.py +10 -10
  175. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_plan_model.py +28 -20
  176. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_plan_post_model.py +3 -3
  177. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_plan_put_model.py +3 -3
  178. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_plan_select_model.py +10 -10
  179. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_plan_short_model.py +17 -9
  180. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_plan_with_analytic_model.py +33 -25
  181. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_plan_with_test_suite_tree_model.py +31 -23
  182. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_point_analytic_result.py +15 -15
  183. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_point_by_test_suite_model.py +16 -8
  184. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_point_change_view_model.py +16 -8
  185. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_point_change_view_model_changed_field_view_model.py +8 -8
  186. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_point_filter_model.py +9 -29
  187. testit-api-client-3.3.0/src/testit_api_client/model/test_point_filter_model_work_item_median_duration.py +323 -0
  188. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_point_put_model.py +30 -18
  189. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_point_related_to_test_result.py +8 -8
  190. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_point_select_model.py +10 -10
  191. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_point_short_get_model.py +115 -73
  192. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_point_short_get_model_last_test_result.py +8 -8
  193. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_point_short_model.py +20 -10
  194. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_point_with_last_result_model.py +58 -42
  195. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_points_extraction_model_ids.py +0 -4
  196. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_result_change_view_model.py +10 -4
  197. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_result_change_view_model_changed_field_view_model.py +8 -8
  198. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_result_chronology_model.py +12 -6
  199. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_result_configuration.py +26 -26
  200. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_result_history_report_model.py +40 -24
  201. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_result_model.py +75 -55
  202. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_result_short_get_model.py +48 -40
  203. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_result_short_model.py +26 -20
  204. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_result_step_comment_put_model.py +14 -12
  205. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_result_update_model.py +42 -25
  206. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_result_v2_get_model.py +37 -25
  207. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_result_v2_short_model.py +33 -21
  208. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_results_filter_model.py +0 -8
  209. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_results_local_filter_model.py +0 -6
  210. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_results_statistics_get_model_failure_categories.py +11 -11
  211. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_results_statistics_get_model_statuses.py +11 -11
  212. testit-api-client-3.3.0/src/testit_api_client/model/test_run_extraction_model.py +262 -0
  213. testit-api-client-3.2.0/src/testit_api_client/model/test_plan_extraction_model_ids.py → testit-api-client-3.3.0/src/testit_api_client/model/test_run_extraction_model_ids.py +3 -7
  214. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_run_fill_by_auto_tests_post_model.py +15 -0
  215. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_run_fill_by_configurations_post_model.py +12 -0
  216. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_run_fill_by_work_items_post_model.py +15 -0
  217. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_run_filter_model.py +40 -6
  218. testit-api-client-3.2.0/src/testit_api_client/model/work_item_filter_model_duration.py → testit-api-client-3.3.0/src/testit_api_client/model/test_run_filter_model_auto_tests_count.py +3 -3
  219. testit-api-client-3.3.0/src/testit_api_client/model/test_run_filter_model_completed_date.py +323 -0
  220. testit-api-client-3.2.0/src/testit_api_client/model/test_run_filter_model_created_date.py → testit-api-client-3.3.0/src/testit_api_client/model/test_run_filter_model_started_date.py +3 -3
  221. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_run_group_by_failure_class_model.py +14 -8
  222. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_run_group_by_status_model.py +14 -8
  223. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_run_model.py +71 -55
  224. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_run_search_query_model.py +8 -8
  225. testit-api-client-3.3.0/src/testit_api_client/model/test_run_select_model.py +268 -0
  226. testit-api-client-3.2.0/src/testit_api_client/model/test_plan_select_model_extraction_model.py → testit-api-client-3.3.0/src/testit_api_client/model/test_run_select_model_extraction_model.py +11 -11
  227. testit-api-client-3.2.0/src/testit_api_client/model/flaky_bulk_model_autotest_select.py → testit-api-client-3.3.0/src/testit_api_client/model/test_run_selection_model.py +16 -16
  228. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_run_short_get_model.py +46 -40
  229. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_run_short_get_model_statistics.py +1 -1
  230. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_run_short_model.py +26 -15
  231. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_run_statistics_error_categories_get_model.py +26 -12
  232. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_run_statistics_statuses_get_model.py +26 -12
  233. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_run_test_results_select_model_filter.py +0 -6
  234. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_run_test_results_select_model_test_result_ids_extraction_model.py +0 -4
  235. testit-api-client-3.3.0/src/testit_api_client/model/test_run_update_multiple_model.py +284 -0
  236. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_run_v2_get_model.py +37 -17
  237. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_run_v2_post_short_model.py +15 -0
  238. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_run_v2_put_model.py +15 -0
  239. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_suite_change_view_model.py +19 -11
  240. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_suite_change_view_model_changed_field_view_model.py +8 -8
  241. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_suite_v2_get_model.py +16 -9
  242. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_suite_v2_post_model.py +8 -3
  243. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_suite_v2_put_model.py +8 -6
  244. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_suite_v2_tree_model.py +16 -9
  245. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_suite_with_children_model.py +27 -17
  246. testit-api-client-3.3.0/src/testit_api_client/model/test_suite_work_items_search_model.py +400 -0
  247. testit-api-client-3.2.0/src/testit_api_client/model/autotest_historical_result_select_model_duration.py → testit-api-client-3.3.0/src/testit_api_client/model/test_suite_work_items_search_model_median_duration.py +3 -3
  248. testit-api-client-3.3.0/src/testit_api_client/model/update_attachment_short_model.py +272 -0
  249. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/update_auto_test_request.py +4 -0
  250. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/update_empty_request.py +12 -0
  251. testit-api-client-3.3.0/src/testit_api_client/model/update_link_short_model.py +274 -0
  252. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/update_parameter_request.py +4 -4
  253. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/update_projects_attribute_request.py +20 -18
  254. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/update_test_plan_request.py +3 -3
  255. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/update_work_item_request.py +24 -20
  256. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/user_rank_model.py +30 -14
  257. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/user_with_rank_model.py +55 -43
  258. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/validate_anti_forgery_token_attribute.py +13 -8
  259. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/validation_problem_details.py +10 -4
  260. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/web_hook_event_type.py +6 -4
  261. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/web_hook_event_type_model.py +6 -4
  262. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/web_hook_log_model.py +56 -37
  263. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/web_hook_model.py +81 -54
  264. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/web_hook_post_model.py +49 -32
  265. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/web_hook_test_model.py +8 -3
  266. testit-api-client-3.3.0/src/testit_api_client/model/webhook_variables_type.py +291 -0
  267. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/work_item_change_model.py +32 -18
  268. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/work_item_changed_attribute_view_model.py +9 -9
  269. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/work_item_changed_fields_view_model.py +82 -82
  270. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/work_item_comment_model.py +29 -19
  271. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/work_item_filter_model.py +11 -5
  272. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/work_item_identifier_model.py +14 -6
  273. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/work_item_like_model.py +30 -16
  274. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/work_item_link_change_view_model.py +28 -20
  275. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/work_item_model.py +89 -61
  276. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/work_item_post_model.py +15 -9
  277. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/work_item_put_model.py +30 -22
  278. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/work_item_search_query_model.py +11 -5
  279. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/work_item_select_model_extraction_model.py +1 -1
  280. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/work_item_select_model_filter.py +12 -6
  281. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/work_item_short_model.py +84 -56
  282. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/work_item_step_change_view_model.py +28 -22
  283. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/work_item_version_model.py +14 -6
  284. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/work_items_extraction_model_ids.py +0 -4
  285. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/work_items_extraction_model_section_ids.py +0 -4
  286. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/models/__init__.py +37 -62
  287. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/rest.py +4 -0
  288. {testit-api-client-3.2.0 → testit-api-client-3.3.0/src/testit_api_client.egg-info}/PKG-INFO +19 -9
  289. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client.egg-info/SOURCES.txt +37 -61
  290. testit-api-client-3.2.0/src/testit_api_client/api/background_jobs_api.py +0 -320
  291. testit-api-client-3.2.0/src/testit_api_client/model/attachment_sub_get_model.py +0 -261
  292. testit-api-client-3.2.0/src/testit_api_client/model/autotest_select_model_filter.py +0 -403
  293. testit-api-client-3.2.0/src/testit_api_client/model/period_view_model_changed_field_view_model.py +0 -266
  294. testit-api-client-3.2.0/src/testit_api_client/model/period_view_model_changed_field_view_model_old_value.py +0 -323
  295. testit-api-client-3.2.0/src/testit_api_client/model/search_work_items_request.py +0 -405
  296. testit-api-client-3.2.0/src/testit_api_client/model/step_result_model_comment.py +0 -357
  297. testit-api-client-3.2.0/src/testit_api_client/model/test_plan_change_model_test_plan_changed_fields.py +0 -387
  298. testit-api-client-3.2.0/src/testit_api_client/model/test_plan_changed_fields_view_model_has_automatic_duration_timer.py +0 -323
  299. testit-api-client-3.2.0/src/testit_api_client/model/test_plan_changed_fields_view_model_locking.py +0 -323
  300. testit-api-client-3.2.0/src/testit_api_client/model/test_plan_changed_fields_view_model_name.py +0 -327
  301. testit-api-client-3.2.0/src/testit_api_client/model/test_plan_changed_fields_view_model_period.py +0 -325
  302. testit-api-client-3.2.0/src/testit_api_client/model/test_plan_changed_fields_view_model_product_name.py +0 -323
  303. testit-api-client-3.2.0/src/testit_api_client/model/test_plan_changed_fields_view_model_tags.py +0 -323
  304. testit-api-client-3.2.0/src/testit_api_client/model/test_plan_changed_fields_view_model_test_points.py +0 -325
  305. testit-api-client-3.2.0/src/testit_api_client/model/test_plan_changed_fields_view_model_test_results.py +0 -325
  306. testit-api-client-3.2.0/src/testit_api_client/model/test_plan_changed_fields_view_model_test_suite.py +0 -325
  307. testit-api-client-3.2.0/src/testit_api_client/model/test_plan_link_bug_link.py +0 -342
  308. testit-api-client-3.2.0/src/testit_api_client/model/test_plan_link_info.py +0 -347
  309. testit-api-client-3.2.0/src/testit_api_client/model/test_plan_with_analytic_model_analytic.py +0 -343
  310. testit-api-client-3.2.0/src/testit_api_client/model/test_point_change_view_model_changed_field_view_model_old_value.py +0 -327
  311. testit-api-client-3.2.0/src/testit_api_client/model/test_point_with_last_result_model_last_test_result.py +0 -347
  312. testit-api-client-3.2.0/src/testit_api_client/model/test_result_change_view_model_changed_field_view_model_old_value.py +0 -319
  313. testit-api-client-3.2.0/src/testit_api_client/model/test_result_model_auto_test.py +0 -431
  314. testit-api-client-3.2.0/src/testit_api_client/model/test_result_model_test_point.py +0 -351
  315. testit-api-client-3.2.0/src/testit_api_client/model/test_result_short_model_auto_test.py +0 -335
  316. testit-api-client-3.2.0/src/testit_api_client/model/test_run_model_analytic.py +0 -327
  317. testit-api-client-3.2.0/src/testit_api_client/model/test_run_model_test_plan.py +0 -421
  318. testit-api-client-3.2.0/src/testit_api_client/model/test_suite_change_view_model_changed_field_view_model_old_value.py +0 -333
  319. testit-api-client-3.2.0/src/testit_api_client/model/test_suite_work_items_search_model.py +0 -346
  320. testit-api-client-3.2.0/src/testit_api_client/model/test_suite_work_items_search_model_created_date.py +0 -323
  321. testit-api-client-3.2.0/src/testit_api_client/model/test_suite_work_items_search_model_modified_date.py +0 -323
  322. testit-api-client-3.2.0/src/testit_api_client/model/user_with_rank_model_user_rank.py +0 -339
  323. testit-api-client-3.2.0/src/testit_api_client/model/work_item_change_model_work_item_changed_fields.py +0 -419
  324. testit-api-client-3.2.0/src/testit_api_client/model/work_item_changed_fields_view_model_attachments.py +0 -325
  325. testit-api-client-3.2.0/src/testit_api_client/model/work_item_changed_fields_view_model_auto_tests.py +0 -325
  326. testit-api-client-3.2.0/src/testit_api_client/model/work_item_changed_fields_view_model_duration.py +0 -323
  327. testit-api-client-3.2.0/src/testit_api_client/model/work_item_changed_fields_view_model_global_id.py +0 -323
  328. testit-api-client-3.2.0/src/testit_api_client/model/work_item_changed_fields_view_model_is_deleted.py +0 -323
  329. testit-api-client-3.2.0/src/testit_api_client/model/work_item_changed_fields_view_model_links.py +0 -325
  330. testit-api-client-3.2.0/src/testit_api_client/model/work_item_changed_fields_view_model_project_id.py +0 -323
  331. testit-api-client-3.2.0/src/testit_api_client/model/work_item_changed_fields_view_model_state.py +0 -323
  332. testit-api-client-3.2.0/src/testit_api_client/model/work_item_changed_fields_view_model_steps.py +0 -329
  333. testit-api-client-3.2.0/src/testit_api_client/model/work_item_changed_fields_view_model_tags.py +0 -323
  334. testit-api-client-3.2.0/src/testit_api_client/model/work_item_comment_model_user.py +0 -373
  335. testit-api-client-3.2.0/src/testit_api_client/model/work_item_step_change_view_model_work_item.py +0 -333
  336. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/LICENSE.md +0 -0
  337. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/setup.cfg +0 -0
  338. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/api/__init__.py +0 -0
  339. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/api/tags_api.py +0 -0
  340. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/api/test_plans_api.py +0 -0
  341. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/api/test_points_api.py +0 -0
  342. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/api/webhooks_logs_api.py +0 -0
  343. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/exceptions.py +0 -0
  344. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/__init__.py +0 -0
  345. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/api_v2_attachments_post_request.py +0 -0
  346. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/api_v2_auto_tests_search_post_request.py +0 -0
  347. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/api_v2_configurations_purge_bulk_post_request.py +0 -0
  348. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/api_v2_configurations_search_post_request.py +0 -0
  349. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/api_v2_custom_attributes_search_post_request.py +0 -0
  350. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/api_v2_custom_attributes_templates_search_post_request.py +0 -0
  351. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/api_v2_parameters_search_post_request.py +0 -0
  352. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/api_v2_projects_id_attributes_templates_search_post_request.py +0 -0
  353. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/api_v2_projects_id_work_items_search_post_request.py +0 -0
  354. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/api_v2_projects_search_post_request.py +0 -0
  355. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/api_v2_test_runs_id_test_results_bulk_put_request.py +0 -0
  356. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/api_v2_webhooks_search_post_request.py +0 -0
  357. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/api_v2_work_items_move_post_request.py +0 -0
  358. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/api_v2_work_items_shared_step_id_references_sections_post_request.py +0 -0
  359. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/api_v2_work_items_shared_step_id_references_work_items_post_request.py +0 -0
  360. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/attachment_change_view_model_array_changed_field_view_model.py +0 -0
  361. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/auto_test_change_view_model_array_changed_field_view_model.py +0 -0
  362. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/auto_test_namespace_model.py +0 -0
  363. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/auto_test_step_model.py +0 -0
  364. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/autotest_filter_model_created_date.py +0 -0
  365. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/autotest_filter_model_modified_date.py +0 -0
  366. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/autotest_filter_model_stability_percentage.py +0 -0
  367. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/autotest_result_outcome.py +0 -0
  368. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/autotests_extraction_model.py +0 -0
  369. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/autotests_select_model.py +0 -0
  370. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/available_test_result_outcome.py +0 -0
  371. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/background_job_state.py +0 -0
  372. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/boolean_nullable_changed_field_view_model.py +0 -0
  373. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/configuration_extraction_model.py +0 -0
  374. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/configuration_filter_model.py +0 -0
  375. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/configuration_select_model.py +0 -0
  376. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/configuration_select_model_extraction_model.py +0 -0
  377. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/configuration_select_model_filter.py +0 -0
  378. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/create_parameter_request.py +0 -0
  379. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/create_project_request.py +0 -0
  380. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/create_section_request.py +0 -0
  381. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/custom_attribute_change_model.py +0 -0
  382. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/custom_attribute_search_query_model.py +0 -0
  383. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/custom_attribute_template_post_model.py +0 -0
  384. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/custom_attribute_template_put_model.py +0 -0
  385. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/custom_attribute_template_search_query_model.py +0 -0
  386. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/custom_attribute_test_plan_project_relation_put_model.py +0 -0
  387. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/date_time_range_selector_model.py +0 -0
  388. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/deletion_state.py +0 -0
  389. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/export_project_json_request.py +0 -0
  390. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/export_project_with_test_plans_json_request.py +0 -0
  391. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/external_link_model.py +0 -0
  392. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/global_custom_attribute_update_model.py +0 -0
  393. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/image_resize_type.py +0 -0
  394. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/int32_range_selector_model.py +0 -0
  395. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/int64_range_selector_model.py +0 -0
  396. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/link_auto_test_to_work_item_request.py +0 -0
  397. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/link_type.py +0 -0
  398. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/move_request.py +0 -0
  399. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/notification_type_model.py +0 -0
  400. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/operation.py +0 -0
  401. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/parameter_filter_model.py +0 -0
  402. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/parameter_iteration_model.py +0 -0
  403. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/parameter_post_model.py +0 -0
  404. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/period_view_model.py +0 -0
  405. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/problem_details.py +0 -0
  406. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/project_custom_attributes_templates_filter_model.py +0 -0
  407. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/project_export_query_model.py +0 -0
  408. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/project_export_with_test_plans_post_model.py +0 -0
  409. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/project_post_model.py +0 -0
  410. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/project_put_model.py +0 -0
  411. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/projects_filter_model.py +0 -0
  412. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/projects_filter_model_autotests_count.py +0 -0
  413. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/projects_filter_model_checklists_count.py +0 -0
  414. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/projects_filter_model_created_date.py +0 -0
  415. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/projects_filter_model_shared_steps_count.py +0 -0
  416. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/projects_filter_model_test_cases_count.py +0 -0
  417. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/rename_request.py +0 -0
  418. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/request_type_model.py +0 -0
  419. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/search_webhooks_query_model.py +0 -0
  420. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/section_move_model.py +0 -0
  421. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/section_post_model.py +0 -0
  422. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/section_put_model.py +0 -0
  423. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/section_rename_model.py +0 -0
  424. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/shared_step_reference_sections_query_filter_model.py +0 -0
  425. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/shared_step_reference_sections_query_filter_model_created_date.py +0 -0
  426. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/shared_step_reference_sections_query_filter_model_modified_date.py +0 -0
  427. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/shared_step_references_query_filter_model.py +0 -0
  428. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/string_array_changed_field_view_model.py +0 -0
  429. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/string_changed_field_view_model.py +0 -0
  430. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/string_changed_field_with_diffs_view_model.py +0 -0
  431. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/tag_short_model.py +0 -0
  432. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_plan_status_model.py +0 -0
  433. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_point_filter_model_created_date.py +0 -0
  434. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_point_filter_model_duration.py +0 -0
  435. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_point_filter_model_modified_date.py +0 -0
  436. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_point_filter_model_work_item_created_date.py +0 -0
  437. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_point_filter_model_work_item_modified_date.py +0 -0
  438. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_point_result_model.py +0 -0
  439. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_point_selector.py +0 -0
  440. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_point_status.py +0 -0
  441. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_points_extraction_model.py +0 -0
  442. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_result_outcome.py +0 -0
  443. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_results_statistics_get_model.py +0 -0
  444. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_run_analytic_result_model.py +0 -0
  445. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_run_state.py +0 -0
  446. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_run_test_results_partial_bulk_set_model.py +0 -0
  447. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_run_test_results_partial_bulk_set_model_selector.py +0 -0
  448. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_run_test_results_select_model.py +0 -0
  449. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_suite_type.py +0 -0
  450. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/test_suite_work_items_search_model_duration.py +0 -0
  451. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/update_custom_attribute_test_plan_project_relations_request.py +0 -0
  452. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/update_project_request.py +0 -0
  453. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/update_section_request.py +0 -0
  454. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/work_item_comment_post_model.py +0 -0
  455. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/work_item_comment_put_model.py +0 -0
  456. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/work_item_entity_types.py +0 -0
  457. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/work_item_id_model.py +0 -0
  458. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/work_item_link_change_view_model_array_changed_field_view_model.py +0 -0
  459. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/work_item_move_post_model.py +0 -0
  460. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/work_item_priority_model.py +0 -0
  461. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/work_item_select_model.py +0 -0
  462. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/work_item_state.py +0 -0
  463. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/work_item_states.py +0 -0
  464. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/work_item_step_change_view_model_array_changed_field_with_diffs_view_model.py +0 -0
  465. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model/work_items_extraction_model.py +0 -0
  466. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client/model_utils.py +0 -0
  467. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client.egg-info/dependency_links.txt +0 -0
  468. {testit-api-client-3.2.0 → testit-api-client-3.3.0}/src/testit_api_client.egg-info/requires.txt +0 -0
  469. {testit-api-client-3.2.0 → testit-api-client-3.3.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.2.0
3
+ Version: 3.3.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
@@ -8,6 +8,8 @@ Author-email: integrations@testit.software
8
8
  Requires-Python: >=3.6
9
9
  Description-Content-Type: text/markdown
10
10
  License-File: LICENSE.md
11
+ Requires-Dist: urllib3>=1.25.3
12
+ Requires-Dist: python-dateutil
11
13
 
12
14
  # Api client for Test IT TMS
13
15
  ![Test IT](https://raw.githubusercontent.com/testit-tms/api-client-python/master/images/banner.png)
@@ -22,6 +24,7 @@ License-File: LICENSE.md
22
24
  | 4.0 | 3.0.0 |
23
25
  | 4.2 | 3.1.0 |
24
26
  | 4.3 | 3.2.0 |
27
+ | 4.4 | 3.3.0 |
25
28
 
26
29
  ## Installation & Usage
27
30
  ### pip install
@@ -96,8 +99,10 @@ Class | Method | HTTP request | Description
96
99
  *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
97
100
  *AutoTestsApi* | [**update_auto_test**](docs/AutoTestsApi.md#update_auto_test) | **PUT** /api/v2/autoTests | Update autotest
98
101
  *AutoTestsApi* | [**update_multiple**](docs/AutoTestsApi.md#update_multiple) | **PUT** /api/v2/autoTests/bulk | Update multiple autotests
99
- *BackgroundJobsApi* | [**api_v2_background_jobs_get**](docs/BackgroundJobsApi.md#api_v2_background_jobs_get) | **GET** /api/v2/backgroundJobs | Get current user background jobs
102
+ *BackgroundJobsApi* | [**api_v2_background_jobs_get**](docs/BackgroundJobsApi.md#api_v2_background_jobs_get) | **GET** /api/v2/backgroundJobs |
100
103
  *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
104
+ *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
105
+ *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
101
106
  *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
102
107
  *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
103
108
  *ConfigurationsApi* | [**api_v2_configurations_id_delete**](docs/ConfigurationsApi.md#api_v2_configurations_id_delete) | **DELETE** /api/v2/configurations/{id} | Delete configuration
@@ -134,6 +139,7 @@ Class | Method | HTTP request | Description
134
139
  *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
135
140
  *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
136
141
  *ParametersApi* | [**api_v2_parameters_keys_get**](docs/ParametersApi.md#api_v2_parameters_keys_get) | **GET** /api/v2/parameters/keys | Get all parameter keys
142
+ *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
137
143
  *ParametersApi* | [**api_v2_parameters_search_post**](docs/ParametersApi.md#api_v2_parameters_search_post) | **POST** /api/v2/parameters/search | Search for parameters
138
144
  *ParametersApi* | [**create_parameter**](docs/ParametersApi.md#create_parameter) | **POST** /api/v2/parameters | Create parameter
139
145
  *ParametersApi* | [**delete_by_name**](docs/ParametersApi.md#delete_by_name) | **DELETE** /api/v2/parameters/name/{name} | Delete parameter by name
@@ -146,10 +152,13 @@ Class | Method | HTTP request | Description
146
152
  *ProjectsApi* | [**api_v2_projects_id_attributes_templates_search_post**](docs/ProjectsApi.md#api_v2_projects_id_attributes_templates_search_post) | **POST** /api/v2/projects/{id}/attributes/templates/search | Search for custom attributes templates
147
153
  *ProjectsApi* | [**api_v2_projects_id_attributes_templates_template_id_delete**](docs/ProjectsApi.md#api_v2_projects_id_attributes_templates_template_id_delete) | **DELETE** /api/v2/projects/{id}/attributes/templates/{templateId} | Delete CustomAttributeTemplate from Project
148
154
  *ProjectsApi* | [**api_v2_projects_id_attributes_templates_template_id_post**](docs/ProjectsApi.md#api_v2_projects_id_attributes_templates_template_id_post) | **POST** /api/v2/projects/{id}/attributes/templates/{templateId} | Add CustomAttributeTemplate to Project
149
- *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 Project FailureClasses
155
+ *ProjectsApi* | [**api_v2_projects_id_delete**](docs/ProjectsApi.md#api_v2_projects_id_delete) | **DELETE** /api/v2/projects/{id} | Archive project
156
+ *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
150
157
  *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
151
158
  *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
152
159
  *ProjectsApi* | [**api_v2_projects_id_patch**](docs/ProjectsApi.md#api_v2_projects_id_patch) | **PATCH** /api/v2/projects/{id} | Patch project
160
+ *ProjectsApi* | [**api_v2_projects_id_purge_post**](docs/ProjectsApi.md#api_v2_projects_id_purge_post) | **POST** /api/v2/projects/{id}/purge | Purge archived project
161
+ *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
153
162
  *ProjectsApi* | [**api_v2_projects_id_test_plans_analytics_get**](docs/ProjectsApi.md#api_v2_projects_id_test_plans_analytics_get) | **GET** /api/v2/projects/{id}/testPlans/analytics | Get TestPlans analytics
154
163
  *ProjectsApi* | [**api_v2_projects_id_test_plans_delete_bulk_post**](docs/ProjectsApi.md#api_v2_projects_id_test_plans_delete_bulk_post) | **POST** /api/v2/projects/{id}/testPlans/delete/bulk | Delete multiple test plans
155
164
  *ProjectsApi* | [**api_v2_projects_id_test_plans_name_exists_get**](docs/ProjectsApi.md#api_v2_projects_id_test_plans_name_exists_get) | **GET** /api/v2/projects/{id}/testPlans/{name}/exists | Checks if TestPlan exists with the specified name exists for the project
@@ -162,6 +171,8 @@ Class | Method | HTTP request | Description
162
171
  *ProjectsApi* | [**api_v2_projects_id_work_items_search_post**](docs/ProjectsApi.md#api_v2_projects_id_work_items_search_post) | **POST** /api/v2/projects/{id}/workItems/search | Search for work items
163
172
  *ProjectsApi* | [**api_v2_projects_id_work_items_tags_get**](docs/ProjectsApi.md#api_v2_projects_id_work_items_tags_get) | **GET** /api/v2/projects/{id}/workItems/tags | Get WorkItems Tags
164
173
  *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 |
174
+ *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
175
+ *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
165
176
  *ProjectsApi* | [**api_v2_projects_search_post**](docs/ProjectsApi.md#api_v2_projects_search_post) | **POST** /api/v2/projects/search | Search for projects
166
177
  *ProjectsApi* | [**background_import_project**](docs/ProjectsApi.md#background_import_project) | **POST** /api/v2/projects/import/json | Import project from JSON file in background job
167
178
  *ProjectsApi* | [**background_import_to_existing_project**](docs/ProjectsApi.md#background_import_to_existing_project) | **POST** /api/v2/projects/{id}/import/json | Import project from JSON file into existing project in background job
@@ -172,8 +183,7 @@ Class | Method | HTTP request | Description
172
183
  *ProjectsApi* | [**create_project**](docs/ProjectsApi.md#create_project) | **POST** /api/v2/projects | Create project
173
184
  *ProjectsApi* | [**create_projects_attribute**](docs/ProjectsApi.md#create_projects_attribute) | **POST** /api/v2/projects/{id}/attributes | Create project attribute
174
185
  *ProjectsApi* | [**delete_custom_attribute_test_plan_project_relations**](docs/ProjectsApi.md#delete_custom_attribute_test_plan_project_relations) | **DELETE** /api/v2/projects/{id}/testPlans/attribute/{attributeId} | Delete attribute from project's test plans
175
- *ProjectsApi* | [**delete_project**](docs/ProjectsApi.md#delete_project) | **DELETE** /api/v2/projects/{id} | Delete project
176
- *ProjectsApi* | [**delete_project_auto_tests**](docs/ProjectsApi.md#delete_project_auto_tests) | **DELETE** /api/v2/projects/{id}/autoTests | Delete project
186
+ *ProjectsApi* | [**delete_project_auto_tests**](docs/ProjectsApi.md#delete_project_auto_tests) | **DELETE** /api/v2/projects/{id}/autoTests | Delete all autotests from project
177
187
  *ProjectsApi* | [**delete_projects_attribute**](docs/ProjectsApi.md#delete_projects_attribute) | **DELETE** /api/v2/projects/{id}/attributes/{attributeId} | Delete project attribute
178
188
  *ProjectsApi* | [**export**](docs/ProjectsApi.md#export) | **POST** /api/v2/projects/{id}/export | Export project as JSON file
179
189
  *ProjectsApi* | [**export_project_json**](docs/ProjectsApi.md#export_project_json) | **POST** /api/v2/projects/{id}/export/json | Export project as JSON file in background job
@@ -193,12 +203,12 @@ Class | Method | HTTP request | Description
193
203
  *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
194
204
  *ProjectsApi* | [**get_work_items_by_project_id**](docs/ProjectsApi.md#get_work_items_by_project_id) | **GET** /api/v2/projects/{id}/workItems | Get project work items
195
205
  *ProjectsApi* | [**import_to_existing_project**](docs/ProjectsApi.md#import_to_existing_project) | **POST** /api/v2/projects/{id}/import | Import project from JSON file into existing project
196
- *ProjectsApi* | [**restore_project**](docs/ProjectsApi.md#restore_project) | **POST** /api/v2/projects/{id}/restore | Restore project
197
206
  *ProjectsApi* | [**search_attributes_in_project**](docs/ProjectsApi.md#search_attributes_in_project) | **POST** /api/v2/projects/{id}/attributes/search | Search for attributes used in the project
198
207
  *ProjectsApi* | [**search_test_plan_attributes_in_project**](docs/ProjectsApi.md#search_test_plan_attributes_in_project) | **POST** /api/v2/projects/{id}/testPlans/attributes/search | Search for attributes used in the project test plans
199
208
  *ProjectsApi* | [**update_custom_attribute_test_plan_project_relations**](docs/ProjectsApi.md#update_custom_attribute_test_plan_project_relations) | **PUT** /api/v2/projects/{id}/testPlans/attribute | Update attribute of project's test plans
200
209
  *ProjectsApi* | [**update_project**](docs/ProjectsApi.md#update_project) | **PUT** /api/v2/projects | Update project
201
210
  *ProjectsApi* | [**update_projects_attribute**](docs/ProjectsApi.md#update_projects_attribute) | **PUT** /api/v2/projects/{id}/attributes | Edit attribute of the project
211
+ *SearchApi* | [**api_v2_search_global_search_post**](docs/SearchApi.md#api_v2_search_global_search_post) | **POST** /api/v2/search/globalSearch |
202
212
  *SectionsApi* | [**api_v2_sections_id_patch**](docs/SectionsApi.md#api_v2_sections_id_patch) | **PATCH** /api/v2/sections/{id} | Patch section
203
213
  *SectionsApi* | [**create_section**](docs/SectionsApi.md#create_section) | **POST** /api/v2/sections | Create section
204
214
  *SectionsApi* | [**delete_section**](docs/SectionsApi.md#delete_section) | **DELETE** /api/v2/sections/{id} | Delete section
@@ -260,6 +270,7 @@ Class | Method | HTTP request | Description
260
270
  *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
261
271
  *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
262
272
  *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
273
+ *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
263
274
  *TestRunsApi* | [**complete_test_run**](docs/TestRunsApi.md#complete_test_run) | **POST** /api/v2/testRuns/{id}/complete | Complete TestRun
264
275
  *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
265
276
  *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
@@ -281,7 +292,6 @@ Class | Method | HTTP request | Description
281
292
  *TestSuitesApi* | [**get_test_points_by_id**](docs/TestSuitesApi.md#get_test_points_by_id) | **GET** /api/v2/testSuites/{id}/testPoints | Get TestPoints By Id
282
293
  *TestSuitesApi* | [**get_test_results_by_id**](docs/TestSuitesApi.md#get_test_results_by_id) | **GET** /api/v2/testSuites/{id}/testResults | Get TestResults By Id
283
294
  *TestSuitesApi* | [**get_test_suite_by_id**](docs/TestSuitesApi.md#get_test_suite_by_id) | **GET** /api/v2/testSuites/{id} | Get TestSuite by Id
284
- *TestSuitesApi* | [**get_work_items_by_id**](docs/TestSuitesApi.md#get_work_items_by_id) | **GET** /api/v2/testSuites/{id}/workItems |
285
295
  *TestSuitesApi* | [**search_work_items**](docs/TestSuitesApi.md#search_work_items) | **POST** /api/v2/testSuites/{id}/workItems/search | Search WorkItems
286
296
  *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
287
297
  *WebhooksApi* | [**api_v2_webhooks_get**](docs/WebhooksApi.md#api_v2_webhooks_get) | **GET** /api/v2/webhooks | Get all webhooks
@@ -307,13 +317,13 @@ Class | Method | HTTP request | Description
307
317
  *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
308
318
  *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
309
319
  *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
310
- *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 workitems
320
+ *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
311
321
  *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
312
322
  *WorkItemsApi* | [**create_work_item**](docs/WorkItemsApi.md#create_work_item) | **POST** /api/v2/workItems | Create Test Case, Checklist or Shared Step
313
323
  *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
314
324
  *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
315
325
  *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
316
- *WorkItemsApi* | [**get_iterations**](docs/WorkItemsApi.md#get_iterations) | **GET** /api/v2/workItems/{id}/iterations | Get iterations by workitem Id or GlobalId
326
+ *WorkItemsApi* | [**get_iterations**](docs/WorkItemsApi.md#get_iterations) | **GET** /api/v2/workItems/{id}/iterations | Get iterations by work item Id or GlobalId
317
327
  *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
318
328
  *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
319
329
  *WorkItemsApi* | [**get_work_item_versions**](docs/WorkItemsApi.md#get_work_item_versions) | **GET** /api/v2/workItems/{id}/versions | Get WorkItem versions
@@ -11,6 +11,7 @@
11
11
  | 4.0 | 3.0.0 |
12
12
  | 4.2 | 3.1.0 |
13
13
  | 4.3 | 3.2.0 |
14
+ | 4.4 | 3.3.0 |
14
15
 
15
16
  ## Installation & Usage
16
17
  ### pip install
@@ -85,8 +86,10 @@ Class | Method | HTTP request | Description
85
86
  *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
86
87
  *AutoTestsApi* | [**update_auto_test**](docs/AutoTestsApi.md#update_auto_test) | **PUT** /api/v2/autoTests | Update autotest
87
88
  *AutoTestsApi* | [**update_multiple**](docs/AutoTestsApi.md#update_multiple) | **PUT** /api/v2/autoTests/bulk | Update multiple autotests
88
- *BackgroundJobsApi* | [**api_v2_background_jobs_get**](docs/BackgroundJobsApi.md#api_v2_background_jobs_get) | **GET** /api/v2/backgroundJobs | Get current user background jobs
89
+ *BackgroundJobsApi* | [**api_v2_background_jobs_get**](docs/BackgroundJobsApi.md#api_v2_background_jobs_get) | **GET** /api/v2/backgroundJobs |
89
90
  *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
91
+ *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
92
+ *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
90
93
  *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
91
94
  *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
92
95
  *ConfigurationsApi* | [**api_v2_configurations_id_delete**](docs/ConfigurationsApi.md#api_v2_configurations_id_delete) | **DELETE** /api/v2/configurations/{id} | Delete configuration
@@ -123,6 +126,7 @@ Class | Method | HTTP request | Description
123
126
  *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
124
127
  *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
125
128
  *ParametersApi* | [**api_v2_parameters_keys_get**](docs/ParametersApi.md#api_v2_parameters_keys_get) | **GET** /api/v2/parameters/keys | Get all parameter keys
129
+ *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
126
130
  *ParametersApi* | [**api_v2_parameters_search_post**](docs/ParametersApi.md#api_v2_parameters_search_post) | **POST** /api/v2/parameters/search | Search for parameters
127
131
  *ParametersApi* | [**create_parameter**](docs/ParametersApi.md#create_parameter) | **POST** /api/v2/parameters | Create parameter
128
132
  *ParametersApi* | [**delete_by_name**](docs/ParametersApi.md#delete_by_name) | **DELETE** /api/v2/parameters/name/{name} | Delete parameter by name
@@ -135,10 +139,13 @@ Class | Method | HTTP request | Description
135
139
  *ProjectsApi* | [**api_v2_projects_id_attributes_templates_search_post**](docs/ProjectsApi.md#api_v2_projects_id_attributes_templates_search_post) | **POST** /api/v2/projects/{id}/attributes/templates/search | Search for custom attributes templates
136
140
  *ProjectsApi* | [**api_v2_projects_id_attributes_templates_template_id_delete**](docs/ProjectsApi.md#api_v2_projects_id_attributes_templates_template_id_delete) | **DELETE** /api/v2/projects/{id}/attributes/templates/{templateId} | Delete CustomAttributeTemplate from Project
137
141
  *ProjectsApi* | [**api_v2_projects_id_attributes_templates_template_id_post**](docs/ProjectsApi.md#api_v2_projects_id_attributes_templates_template_id_post) | **POST** /api/v2/projects/{id}/attributes/templates/{templateId} | Add CustomAttributeTemplate to Project
138
- *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 Project FailureClasses
142
+ *ProjectsApi* | [**api_v2_projects_id_delete**](docs/ProjectsApi.md#api_v2_projects_id_delete) | **DELETE** /api/v2/projects/{id} | Archive project
143
+ *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
139
144
  *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
140
145
  *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
141
146
  *ProjectsApi* | [**api_v2_projects_id_patch**](docs/ProjectsApi.md#api_v2_projects_id_patch) | **PATCH** /api/v2/projects/{id} | Patch project
147
+ *ProjectsApi* | [**api_v2_projects_id_purge_post**](docs/ProjectsApi.md#api_v2_projects_id_purge_post) | **POST** /api/v2/projects/{id}/purge | Purge archived project
148
+ *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
142
149
  *ProjectsApi* | [**api_v2_projects_id_test_plans_analytics_get**](docs/ProjectsApi.md#api_v2_projects_id_test_plans_analytics_get) | **GET** /api/v2/projects/{id}/testPlans/analytics | Get TestPlans analytics
143
150
  *ProjectsApi* | [**api_v2_projects_id_test_plans_delete_bulk_post**](docs/ProjectsApi.md#api_v2_projects_id_test_plans_delete_bulk_post) | **POST** /api/v2/projects/{id}/testPlans/delete/bulk | Delete multiple test plans
144
151
  *ProjectsApi* | [**api_v2_projects_id_test_plans_name_exists_get**](docs/ProjectsApi.md#api_v2_projects_id_test_plans_name_exists_get) | **GET** /api/v2/projects/{id}/testPlans/{name}/exists | Checks if TestPlan exists with the specified name exists for the project
@@ -151,6 +158,8 @@ Class | Method | HTTP request | Description
151
158
  *ProjectsApi* | [**api_v2_projects_id_work_items_search_post**](docs/ProjectsApi.md#api_v2_projects_id_work_items_search_post) | **POST** /api/v2/projects/{id}/workItems/search | Search for work items
152
159
  *ProjectsApi* | [**api_v2_projects_id_work_items_tags_get**](docs/ProjectsApi.md#api_v2_projects_id_work_items_tags_get) | **GET** /api/v2/projects/{id}/workItems/tags | Get WorkItems Tags
153
160
  *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 |
161
+ *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
162
+ *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
154
163
  *ProjectsApi* | [**api_v2_projects_search_post**](docs/ProjectsApi.md#api_v2_projects_search_post) | **POST** /api/v2/projects/search | Search for projects
155
164
  *ProjectsApi* | [**background_import_project**](docs/ProjectsApi.md#background_import_project) | **POST** /api/v2/projects/import/json | Import project from JSON file in background job
156
165
  *ProjectsApi* | [**background_import_to_existing_project**](docs/ProjectsApi.md#background_import_to_existing_project) | **POST** /api/v2/projects/{id}/import/json | Import project from JSON file into existing project in background job
@@ -161,8 +170,7 @@ Class | Method | HTTP request | Description
161
170
  *ProjectsApi* | [**create_project**](docs/ProjectsApi.md#create_project) | **POST** /api/v2/projects | Create project
162
171
  *ProjectsApi* | [**create_projects_attribute**](docs/ProjectsApi.md#create_projects_attribute) | **POST** /api/v2/projects/{id}/attributes | Create project attribute
163
172
  *ProjectsApi* | [**delete_custom_attribute_test_plan_project_relations**](docs/ProjectsApi.md#delete_custom_attribute_test_plan_project_relations) | **DELETE** /api/v2/projects/{id}/testPlans/attribute/{attributeId} | Delete attribute from project's test plans
164
- *ProjectsApi* | [**delete_project**](docs/ProjectsApi.md#delete_project) | **DELETE** /api/v2/projects/{id} | Delete project
165
- *ProjectsApi* | [**delete_project_auto_tests**](docs/ProjectsApi.md#delete_project_auto_tests) | **DELETE** /api/v2/projects/{id}/autoTests | Delete project
173
+ *ProjectsApi* | [**delete_project_auto_tests**](docs/ProjectsApi.md#delete_project_auto_tests) | **DELETE** /api/v2/projects/{id}/autoTests | Delete all autotests from project
166
174
  *ProjectsApi* | [**delete_projects_attribute**](docs/ProjectsApi.md#delete_projects_attribute) | **DELETE** /api/v2/projects/{id}/attributes/{attributeId} | Delete project attribute
167
175
  *ProjectsApi* | [**export**](docs/ProjectsApi.md#export) | **POST** /api/v2/projects/{id}/export | Export project as JSON file
168
176
  *ProjectsApi* | [**export_project_json**](docs/ProjectsApi.md#export_project_json) | **POST** /api/v2/projects/{id}/export/json | Export project as JSON file in background job
@@ -182,12 +190,12 @@ Class | Method | HTTP request | Description
182
190
  *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
183
191
  *ProjectsApi* | [**get_work_items_by_project_id**](docs/ProjectsApi.md#get_work_items_by_project_id) | **GET** /api/v2/projects/{id}/workItems | Get project work items
184
192
  *ProjectsApi* | [**import_to_existing_project**](docs/ProjectsApi.md#import_to_existing_project) | **POST** /api/v2/projects/{id}/import | Import project from JSON file into existing project
185
- *ProjectsApi* | [**restore_project**](docs/ProjectsApi.md#restore_project) | **POST** /api/v2/projects/{id}/restore | Restore project
186
193
  *ProjectsApi* | [**search_attributes_in_project**](docs/ProjectsApi.md#search_attributes_in_project) | **POST** /api/v2/projects/{id}/attributes/search | Search for attributes used in the project
187
194
  *ProjectsApi* | [**search_test_plan_attributes_in_project**](docs/ProjectsApi.md#search_test_plan_attributes_in_project) | **POST** /api/v2/projects/{id}/testPlans/attributes/search | Search for attributes used in the project test plans
188
195
  *ProjectsApi* | [**update_custom_attribute_test_plan_project_relations**](docs/ProjectsApi.md#update_custom_attribute_test_plan_project_relations) | **PUT** /api/v2/projects/{id}/testPlans/attribute | Update attribute of project's test plans
189
196
  *ProjectsApi* | [**update_project**](docs/ProjectsApi.md#update_project) | **PUT** /api/v2/projects | Update project
190
197
  *ProjectsApi* | [**update_projects_attribute**](docs/ProjectsApi.md#update_projects_attribute) | **PUT** /api/v2/projects/{id}/attributes | Edit attribute of the project
198
+ *SearchApi* | [**api_v2_search_global_search_post**](docs/SearchApi.md#api_v2_search_global_search_post) | **POST** /api/v2/search/globalSearch |
191
199
  *SectionsApi* | [**api_v2_sections_id_patch**](docs/SectionsApi.md#api_v2_sections_id_patch) | **PATCH** /api/v2/sections/{id} | Patch section
192
200
  *SectionsApi* | [**create_section**](docs/SectionsApi.md#create_section) | **POST** /api/v2/sections | Create section
193
201
  *SectionsApi* | [**delete_section**](docs/SectionsApi.md#delete_section) | **DELETE** /api/v2/sections/{id} | Delete section
@@ -249,6 +257,7 @@ Class | Method | HTTP request | Description
249
257
  *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
250
258
  *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
251
259
  *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
260
+ *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
252
261
  *TestRunsApi* | [**complete_test_run**](docs/TestRunsApi.md#complete_test_run) | **POST** /api/v2/testRuns/{id}/complete | Complete TestRun
253
262
  *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
254
263
  *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
@@ -270,7 +279,6 @@ Class | Method | HTTP request | Description
270
279
  *TestSuitesApi* | [**get_test_points_by_id**](docs/TestSuitesApi.md#get_test_points_by_id) | **GET** /api/v2/testSuites/{id}/testPoints | Get TestPoints By Id
271
280
  *TestSuitesApi* | [**get_test_results_by_id**](docs/TestSuitesApi.md#get_test_results_by_id) | **GET** /api/v2/testSuites/{id}/testResults | Get TestResults By Id
272
281
  *TestSuitesApi* | [**get_test_suite_by_id**](docs/TestSuitesApi.md#get_test_suite_by_id) | **GET** /api/v2/testSuites/{id} | Get TestSuite by Id
273
- *TestSuitesApi* | [**get_work_items_by_id**](docs/TestSuitesApi.md#get_work_items_by_id) | **GET** /api/v2/testSuites/{id}/workItems |
274
282
  *TestSuitesApi* | [**search_work_items**](docs/TestSuitesApi.md#search_work_items) | **POST** /api/v2/testSuites/{id}/workItems/search | Search WorkItems
275
283
  *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
276
284
  *WebhooksApi* | [**api_v2_webhooks_get**](docs/WebhooksApi.md#api_v2_webhooks_get) | **GET** /api/v2/webhooks | Get all webhooks
@@ -296,13 +304,13 @@ Class | Method | HTTP request | Description
296
304
  *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
297
305
  *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
298
306
  *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
299
- *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 workitems
307
+ *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
300
308
  *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
301
309
  *WorkItemsApi* | [**create_work_item**](docs/WorkItemsApi.md#create_work_item) | **POST** /api/v2/workItems | Create Test Case, Checklist or Shared Step
302
310
  *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
303
311
  *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
304
312
  *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
305
- *WorkItemsApi* | [**get_iterations**](docs/WorkItemsApi.md#get_iterations) | **GET** /api/v2/workItems/{id}/iterations | Get iterations by workitem Id or GlobalId
313
+ *WorkItemsApi* | [**get_iterations**](docs/WorkItemsApi.md#get_iterations) | **GET** /api/v2/workItems/{id}/iterations | Get iterations by work item Id or GlobalId
306
314
  *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
307
315
  *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
308
316
  *WorkItemsApi* | [**get_work_item_versions**](docs/WorkItemsApi.md#get_work_item_versions) | **GET** /api/v2/workItems/{id}/versions | Get WorkItem versions
@@ -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.2.0"
5
+ VERSION = "3.3.0"
6
6
 
7
7
  REQUIRES = [
8
8
  "urllib3 >= 1.25.3",
@@ -10,7 +10,7 @@
10
10
  """
11
11
 
12
12
 
13
- __version__ = "3.0.0"
13
+ __version__ = "4.0.0"
14
14
 
15
15
  # import ApiClient
16
16
  from testit_api_client.api_client import ApiClient
@@ -22,6 +22,7 @@ from testit_api_client.model_utils import ( # noqa: F401
22
22
  validate_and_convert_types
23
23
  )
24
24
  from testit_api_client.model.attachment_model import AttachmentModel
25
+ from testit_api_client.model.image_resize_type import ImageResizeType
25
26
  from testit_api_client.model.problem_details import ProblemDetails
26
27
  from testit_api_client.model.validation_problem_details import ValidationProblemDetails
27
28
 
@@ -153,7 +154,7 @@ class AttachmentsApi(object):
153
154
  'height':
154
155
  (int,),
155
156
  'resize_type':
156
- (bool, date, datetime, dict, float, int, list, str, none_type,),
157
+ (ImageResizeType,),
157
158
  'background_color':
158
159
  (str,),
159
160
  'preview':
@@ -383,7 +384,7 @@ class AttachmentsApi(object):
383
384
  Keyword Args:
384
385
  width (int): Width of the result image. [optional]
385
386
  height (int): Height of the result image. [optional]
386
- resize_type (bool, date, datetime, dict, float, int, list, str, none_type): Type of resizing to apply to the result image. [optional]
387
+ resize_type (ImageResizeType): Type of resizing to apply to the result image. [optional]
387
388
  background_color (str): Color of the background if the `resizeType` is `AddBackgroundStripes`. [optional]
388
389
  preview (bool): If image must be converted to a preview (lower quality, no animation). [optional]
389
390
  _return_http_data_only (bool): response data without head status
@@ -689,6 +689,7 @@ class AutoTestsApi(object):
689
689
  'flaky',
690
690
  'include_steps',
691
691
  'include_labels',
692
+ 'external_key',
692
693
  'skip',
693
694
  'take',
694
695
  'order_by',
@@ -749,6 +750,8 @@ class AutoTestsApi(object):
749
750
  (bool,),
750
751
  'include_labels':
751
752
  (bool,),
753
+ 'external_key':
754
+ (str,),
752
755
  'skip':
753
756
  (int,),
754
757
  'take':
@@ -781,6 +784,7 @@ class AutoTestsApi(object):
781
784
  'flaky': 'flaky',
782
785
  'include_steps': 'includeSteps',
783
786
  'include_labels': 'includeLabels',
787
+ 'external_key': 'externalKey',
784
788
  'skip': 'Skip',
785
789
  'take': 'Take',
786
790
  'order_by': 'OrderBy',
@@ -808,6 +812,7 @@ class AutoTestsApi(object):
808
812
  'flaky': 'query',
809
813
  'include_steps': 'query',
810
814
  'include_labels': 'query',
815
+ 'external_key': 'query',
811
816
  'skip': 'query',
812
817
  'take': 'query',
813
818
  'order_by': 'query',
@@ -2244,6 +2249,7 @@ class AutoTestsApi(object):
2244
2249
  flaky (bool): Is autotest marked as \"Flaky\". [optional]
2245
2250
  include_steps (bool): If result must also include autotest steps. [optional]
2246
2251
  include_labels (bool): If result must also include autotest labels. [optional]
2252
+ external_key (str): External key of autotest. [optional]
2247
2253
  skip (int): Amount of items to be skipped (offset). [optional]
2248
2254
  take (int): Amount of items to be taken (limit). [optional]
2249
2255
  order_by (str): SQL-like ORDER BY statement (column1 ASC|DESC , column2 ASC|DESC). [optional]