rapidata 2.27.0__py3-none-any.whl → 2.44.4__py3-none-any.whl

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.

Potentially problematic release.


This version of rapidata might be problematic. Click here for more details.

Files changed (771) hide show
  1. rapidata/__init__.py +12 -9
  2. rapidata/api_client/__init__.py +83 -329
  3. rapidata/api_client/api/__init__.py +9 -2
  4. rapidata/api_client/api/asset_api.py +853 -0
  5. rapidata/api_client/api/audience_api.py +1133 -0
  6. rapidata/api_client/api/benchmark_api.py +3966 -0
  7. rapidata/api_client/api/campaign_api.py +232 -207
  8. rapidata/api_client/api/client_api.py +349 -71
  9. rapidata/api_client/api/coco_api.py +0 -571
  10. rapidata/api_client/api/compare_workflow_api.py +11 -10
  11. rapidata/api_client/api/customer_rapid_api.py +644 -72
  12. rapidata/api_client/api/datapoint_api.py +8 -797
  13. rapidata/api_client/api/dataset_api.py +229 -3452
  14. rapidata/api_client/api/evaluation_workflow_api.py +29 -82
  15. rapidata/api_client/api/feedback_api.py +11 -281
  16. rapidata/api_client/api/grouped_ranking_workflow_api.py +319 -0
  17. rapidata/api_client/api/identity_api.py +83 -1171
  18. rapidata/api_client/api/leaderboard_api.py +2550 -0
  19. rapidata/api_client/api/newsletter_api.py +20 -19
  20. rapidata/api_client/api/order_api.py +758 -5487
  21. rapidata/api_client/api/participant_api.py +2181 -0
  22. rapidata/api_client/api/pipeline_api.py +24 -1783
  23. rapidata/api_client/api/prompt_api.py +320 -0
  24. rapidata/api_client/api/rapidata_identity_api_api.py +5 -4
  25. rapidata/api_client/api/sample_api.py +300 -0
  26. rapidata/api_client/api/simple_workflow_api.py +11 -10
  27. rapidata/api_client/api/survey_api.py +304 -0
  28. rapidata/api_client/api/user_rapid_api.py +35 -31
  29. rapidata/api_client/api/validation_set_api.py +513 -3233
  30. rapidata/api_client/api/workflow_api.py +32 -825
  31. rapidata/api_client/api_client.py +2 -2
  32. rapidata/api_client/configuration.py +16 -29
  33. rapidata/api_client/exceptions.py +2 -2
  34. rapidata/api_client/models/__init__.py +65 -307
  35. rapidata/api_client/models/ab_test_selection_a_inner.py +27 -13
  36. rapidata/api_client/models/add_campaign_model.py +3 -3
  37. rapidata/api_client/models/add_user_response_result.py +10 -5
  38. rapidata/api_client/models/add_validation_rapid_model.py +55 -24
  39. rapidata/api_client/models/add_validation_rapid_model_asset.py +154 -0
  40. rapidata/api_client/models/add_validation_rapid_model_context_asset.py +160 -0
  41. rapidata/api_client/models/add_validation_rapid_model_metadata_inner.py +140 -0
  42. rapidata/api_client/models/add_validation_rapid_model_truth.py +7 -1
  43. rapidata/api_client/models/add_validation_rapid_new_model.py +137 -0
  44. rapidata/api_client/models/add_validation_rapid_new_model_asset.py +182 -0
  45. rapidata/api_client/models/add_validation_rapid_new_model_truth.py +286 -0
  46. rapidata/api_client/models/add_validation_text_rapid_model.py +1 -3
  47. rapidata/api_client/models/age_user_filter_model.py +2 -2
  48. rapidata/api_client/models/age_user_filter_model_age_group.py +41 -0
  49. rapidata/api_client/models/aggregated_orders_model.py +98 -0
  50. rapidata/api_client/models/aggregator_type.py +4 -2
  51. rapidata/api_client/models/and_filter.py +121 -0
  52. rapidata/api_client/models/and_filter_filters_inner.py +282 -0
  53. rapidata/api_client/models/and_user_filter_model.py +106 -0
  54. rapidata/api_client/models/and_user_filter_model_filters_inner.py +282 -0
  55. rapidata/api_client/models/are_rapids_active_result.py +2 -2
  56. rapidata/api_client/models/asset_metadata.py +11 -9
  57. rapidata/api_client/models/asset_type.py +40 -0
  58. rapidata/api_client/models/attach_category_rapid_blueprint.py +13 -3
  59. rapidata/api_client/models/attach_category_rapid_blueprint_category.py +89 -0
  60. rapidata/api_client/models/audience_status.py +38 -0
  61. rapidata/api_client/models/benchmark_query_result.py +98 -0
  62. rapidata/api_client/models/benchmark_query_result_paged_result.py +105 -0
  63. rapidata/api_client/models/boost_leaderboard_model.py +89 -0
  64. rapidata/api_client/models/boost_mode.py +37 -0
  65. rapidata/api_client/models/boost_query_result.py +97 -0
  66. rapidata/api_client/models/boost_query_result_boost_mode.py +37 -0
  67. rapidata/api_client/models/boost_query_result_boost_status.py +39 -0
  68. rapidata/api_client/models/boost_status.py +39 -0
  69. rapidata/api_client/models/boosting_profile.py +89 -0
  70. rapidata/api_client/models/box_shape.py +4 -33
  71. rapidata/api_client/models/campaign_filter.py +98 -0
  72. rapidata/api_client/models/campaign_query_result.py +15 -13
  73. rapidata/api_client/models/campaign_status.py +2 -2
  74. rapidata/api_client/models/change_boost_model.py +89 -0
  75. rapidata/api_client/models/classification_metadata.py +12 -1
  76. rapidata/api_client/models/classify_payload.py +14 -15
  77. rapidata/api_client/models/classify_payload_category.py +89 -0
  78. rapidata/api_client/models/client_model.py +181 -0
  79. rapidata/api_client/models/clients_query_result.py +5 -5
  80. rapidata/api_client/models/clone_order_model.py +6 -8
  81. rapidata/api_client/models/clone_order_result.py +9 -4
  82. rapidata/api_client/models/compare_rapid_blueprint.py +5 -3
  83. rapidata/api_client/models/compare_rapid_blueprint1.py +96 -0
  84. rapidata/api_client/models/compare_workflow_config.py +34 -23
  85. rapidata/api_client/models/compare_workflow_config_context_asset.py +174 -0
  86. rapidata/api_client/models/compare_workflow_config_metadata_value.py +57 -15
  87. rapidata/api_client/models/compare_workflow_config_model.py +15 -5
  88. rapidata/api_client/models/compare_workflow_model.py +34 -6
  89. rapidata/api_client/models/compare_workflow_model1.py +20 -9
  90. rapidata/api_client/models/compare_workflow_model_context_asset.py +160 -0
  91. rapidata/api_client/models/compare_workflow_model_metadata_inner.py +154 -0
  92. rapidata/api_client/models/compare_workflow_model_pair_maker_config.py +1 -1
  93. rapidata/api_client/models/comparison_operator.py +2 -2
  94. rapidata/api_client/models/conditional_validation_selection.py +8 -11
  95. rapidata/api_client/models/conditional_validation_selection_validation_chance.py +103 -0
  96. rapidata/api_client/models/confidence_interval.py +89 -0
  97. rapidata/api_client/models/count_metadata.py +12 -1
  98. rapidata/api_client/models/country_filter.py +98 -0
  99. rapidata/api_client/models/create_audience_request.py +99 -0
  100. rapidata/api_client/models/create_audience_result.py +87 -0
  101. rapidata/api_client/models/create_benchmark_model.py +87 -0
  102. rapidata/api_client/models/create_benchmark_participant_model.py +87 -0
  103. rapidata/api_client/models/create_benchmark_participant_result.py +89 -0
  104. rapidata/api_client/models/create_benchmark_prompt_result.py +87 -0
  105. rapidata/api_client/models/create_benchmark_result.py +87 -0
  106. rapidata/api_client/models/create_bridge_token_result.py +2 -2
  107. rapidata/api_client/models/create_client_model.py +6 -13
  108. rapidata/api_client/models/create_complex_order_model.py +9 -9
  109. rapidata/api_client/models/create_complex_order_result.py +6 -4
  110. rapidata/api_client/models/create_customer_client_result.py +89 -0
  111. rapidata/api_client/models/create_datapoint_from_files_model.py +3 -3
  112. rapidata/api_client/models/create_datapoint_from_text_sources_model.py +3 -3
  113. rapidata/api_client/models/create_datapoint_from_urls_model.py +3 -3
  114. rapidata/api_client/models/create_datapoint_model.py +134 -0
  115. rapidata/api_client/models/create_datapoint_model_asset.py +154 -0
  116. rapidata/api_client/models/create_datapoint_model_context_asset.py +160 -0
  117. rapidata/api_client/models/create_datapoint_model_metadata_inner.py +154 -0
  118. rapidata/api_client/models/create_datapoint_result.py +6 -18
  119. rapidata/api_client/models/create_demographic_rapid_model.py +45 -7
  120. rapidata/api_client/models/create_demographic_rapid_model_asset.py +160 -0
  121. rapidata/api_client/models/create_demographic_rapid_model_context_asset.py +160 -0
  122. rapidata/api_client/models/create_demographic_rapid_model_new.py +119 -0
  123. rapidata/api_client/models/create_empty_validation_set_result.py +2 -2
  124. rapidata/api_client/models/create_leaderboard_model.py +140 -0
  125. rapidata/api_client/models/create_leaderboard_participant_model.py +87 -0
  126. rapidata/api_client/models/create_leaderboard_participant_result.py +89 -0
  127. rapidata/api_client/models/create_leaderboard_result.py +99 -0
  128. rapidata/api_client/models/create_order_model.py +30 -101
  129. rapidata/api_client/models/create_order_model_referee.py +12 -12
  130. rapidata/api_client/models/create_order_model_workflow.py +35 -21
  131. rapidata/api_client/models/create_order_result.py +6 -4
  132. rapidata/api_client/models/create_rapid_result.py +2 -2
  133. rapidata/api_client/models/create_sample_model.py +93 -0
  134. rapidata/api_client/models/create_sample_model_asset.py +154 -0
  135. rapidata/api_client/models/create_sample_model_obsolete.py +87 -0
  136. rapidata/api_client/models/create_simple_pipeline_model_pipeline_steps_inner.py +8 -22
  137. rapidata/api_client/models/create_unsupported_order_model.py +6 -6
  138. rapidata/api_client/models/create_validation_set_model.py +5 -5
  139. rapidata/api_client/models/datapoint_model.py +3 -3
  140. rapidata/api_client/models/datapoint_model_paged_result.py +105 -0
  141. rapidata/api_client/models/datapoint_state.py +2 -2
  142. rapidata/api_client/models/demographic_filter.py +100 -0
  143. rapidata/api_client/models/dynamic_client_registration_request.py +160 -0
  144. rapidata/api_client/models/early_stopping_referee_model.py +3 -3
  145. rapidata/api_client/models/effort_capped_selection.py +106 -0
  146. rapidata/api_client/models/elo_config.py +2 -2
  147. rapidata/api_client/models/elo_config_model.py +6 -6
  148. rapidata/api_client/models/entity_tag_header_value.py +93 -0
  149. rapidata/api_client/models/evaluation_workflow_config.py +13 -3
  150. rapidata/api_client/models/evaluation_workflow_model.py +16 -6
  151. rapidata/api_client/models/existing_asset_input.py +120 -0
  152. rapidata/api_client/models/existing_asset_input_metadata_value.py +126 -0
  153. rapidata/api_client/models/feature_flag.py +2 -2
  154. rapidata/api_client/models/feature_flag_model.py +6 -6
  155. rapidata/api_client/models/feedback_model.py +7 -7
  156. rapidata/api_client/models/file_asset.py +3 -5
  157. rapidata/api_client/models/file_asset_input.py +104 -0
  158. rapidata/api_client/models/file_asset_input1.py +104 -0
  159. rapidata/api_client/models/file_asset_input1_file.py +168 -0
  160. rapidata/api_client/models/file_asset_input2.py +104 -0
  161. rapidata/api_client/models/file_asset_input3.py +104 -0
  162. rapidata/api_client/models/file_asset_input_file.py +168 -0
  163. rapidata/api_client/models/file_asset_metadata_value.py +252 -0
  164. rapidata/api_client/models/file_asset_model_metadata_value.py +43 -71
  165. rapidata/api_client/models/file_stream_result.py +122 -0
  166. rapidata/api_client/models/file_type.py +39 -0
  167. rapidata/api_client/models/file_type_metadata.py +110 -0
  168. rapidata/api_client/models/file_type_metadata_model.py +97 -0
  169. rapidata/api_client/models/filter.py +7 -25
  170. rapidata/api_client/models/filter_operator.py +3 -2
  171. rapidata/api_client/models/fork_benchmark_result.py +87 -0
  172. rapidata/api_client/models/form_file_wrapper.py +135 -0
  173. rapidata/api_client/models/free_text_payload.py +10 -3
  174. rapidata/api_client/models/free_text_rapid_blueprint.py +10 -3
  175. rapidata/api_client/models/gender_user_filter_model.py +2 -2
  176. rapidata/api_client/models/gender_user_filter_model_gender.py +38 -0
  177. rapidata/api_client/models/get_asset_metadata_result.py +100 -0
  178. rapidata/api_client/models/get_audience_by_id_result.py +111 -0
  179. rapidata/api_client/models/get_available_validation_sets_result.py +2 -2
  180. rapidata/api_client/models/get_benchmark_by_id_query.py +96 -0
  181. rapidata/api_client/models/get_benchmark_by_id_query_result.py +94 -0
  182. rapidata/api_client/models/get_benchmark_by_id_query_result_paged_result.py +105 -0
  183. rapidata/api_client/models/get_benchmark_by_id_result.py +96 -0
  184. rapidata/api_client/models/get_boost_result.py +97 -0
  185. rapidata/api_client/models/get_boost_result_boost_mode.py +37 -0
  186. rapidata/api_client/models/get_boost_result_boost_status.py +39 -0
  187. rapidata/api_client/models/get_compare_ab_summary_result.py +5 -5
  188. rapidata/api_client/models/get_compare_workflow_results_model.py +7 -7
  189. rapidata/api_client/models/get_compare_workflow_results_result.py +5 -5
  190. rapidata/api_client/models/get_datapoint_by_id_result.py +10 -21
  191. rapidata/api_client/models/get_datapoint_by_id_result_asset.py +170 -0
  192. rapidata/api_client/models/get_dataset_by_id_result.py +2 -2
  193. rapidata/api_client/models/get_dataset_progress_result.py +2 -2
  194. rapidata/api_client/models/get_evaluation_workflow_results_model.py +119 -0
  195. rapidata/api_client/models/get_failed_datapoints_result.py +5 -5
  196. rapidata/api_client/models/get_failed_datapoints_result_datapoint.py +100 -0
  197. rapidata/api_client/models/get_file_metadata_result.py +100 -0
  198. rapidata/api_client/models/get_grouped_ranking_workflow_results_model.py +106 -0
  199. rapidata/api_client/models/get_grouped_ranking_workflow_results_result.py +97 -0
  200. rapidata/api_client/models/get_grouped_ranking_workflow_results_result_paged_result.py +105 -0
  201. rapidata/api_client/models/get_leaderboard_by_id_result.py +135 -0
  202. rapidata/api_client/models/get_order_by_id_result.py +12 -5
  203. rapidata/api_client/models/get_participant_by_id_result.py +91 -0
  204. rapidata/api_client/models/get_pipeline_by_id_result.py +5 -5
  205. rapidata/api_client/models/get_public_orders_result.py +2 -2
  206. rapidata/api_client/models/get_public_responses_result.py +95 -0
  207. rapidata/api_client/models/get_public_responses_result_response.py +112 -0
  208. rapidata/api_client/models/get_rapid_responses_result.py +6 -12
  209. rapidata/api_client/models/get_recommended_validation_set_result.py +95 -0
  210. rapidata/api_client/models/get_responses_for_rapid_result.py +106 -0
  211. rapidata/api_client/models/get_responses_for_rapid_result_response.py +103 -0
  212. rapidata/api_client/models/get_responses_for_rapid_result_response_result.py +266 -0
  213. rapidata/api_client/models/get_responses_result.py +5 -5
  214. rapidata/api_client/models/get_responses_result_response.py +103 -0
  215. rapidata/api_client/models/get_sample_by_id_result.py +125 -0
  216. rapidata/api_client/models/get_simple_workflow_results_model.py +20 -15
  217. rapidata/api_client/models/get_standing_by_id_result.py +96 -0
  218. rapidata/api_client/models/get_validation_rapids_result.py +32 -41
  219. rapidata/api_client/models/get_validation_set_by_id_result.py +10 -4
  220. rapidata/api_client/models/get_workflow_by_id_result.py +5 -5
  221. rapidata/api_client/models/get_workflow_by_id_result_workflow.py +23 -9
  222. rapidata/api_client/models/get_workflow_progress_result.py +5 -11
  223. rapidata/api_client/models/get_workflow_results_result.py +34 -23
  224. rapidata/api_client/models/get_workflow_results_result_response.py +103 -0
  225. rapidata/api_client/models/google_one_tap_login_model.py +4 -4
  226. rapidata/api_client/models/grouped_ranking_workflow_config.py +155 -0
  227. rapidata/api_client/models/grouped_ranking_workflow_config_context_assets_value.py +170 -0
  228. rapidata/api_client/models/grouped_ranking_workflow_model.py +147 -0
  229. rapidata/api_client/models/grouped_ranking_workflow_model1.py +121 -0
  230. rapidata/api_client/models/i_artifact_model.py +182 -0
  231. rapidata/api_client/models/i_artifact_model_campaign_artifact_model.py +98 -0
  232. rapidata/api_client/models/i_artifact_model_dataset_artifact_model.py +98 -0
  233. rapidata/api_client/models/i_artifact_model_file_artifact_model.py +98 -0
  234. rapidata/api_client/models/i_artifact_model_workflow_artifact_model.py +98 -0
  235. rapidata/api_client/models/i_artifact_model_workflow_config_artifact_model.py +102 -0
  236. rapidata/api_client/models/i_asset.py +170 -0
  237. rapidata/api_client/models/i_asset_file_asset.py +111 -0
  238. rapidata/api_client/models/i_asset_input.py +156 -0
  239. rapidata/api_client/models/i_asset_input_existing_asset_input.py +118 -0
  240. rapidata/api_client/models/i_asset_input_multi_asset_input.py +128 -0
  241. rapidata/api_client/models/i_asset_input_text_asset_input.py +118 -0
  242. rapidata/api_client/models/i_asset_model.py +170 -0
  243. rapidata/api_client/models/i_asset_model_file_asset_model.py +113 -0
  244. rapidata/api_client/models/i_asset_model_multi_asset_model.py +123 -0
  245. rapidata/api_client/models/i_asset_model_null_asset_model.py +111 -0
  246. rapidata/api_client/models/i_asset_model_text_asset_model.py +113 -0
  247. rapidata/api_client/models/i_asset_multi_asset.py +121 -0
  248. rapidata/api_client/models/i_asset_null_asset.py +109 -0
  249. rapidata/api_client/models/i_asset_text_asset.py +111 -0
  250. rapidata/api_client/models/i_campaign_filter.py +282 -0
  251. rapidata/api_client/models/i_campaign_filter_and_filter.py +117 -0
  252. rapidata/api_client/models/i_campaign_filter_campaign_filter.py +98 -0
  253. rapidata/api_client/models/i_campaign_filter_country_filter.py +98 -0
  254. rapidata/api_client/models/i_campaign_filter_demographic_filter.py +100 -0
  255. rapidata/api_client/models/i_campaign_filter_language_filter.py +98 -0
  256. rapidata/api_client/models/i_campaign_filter_new_user_filter.py +96 -0
  257. rapidata/api_client/models/i_campaign_filter_not_filter.py +113 -0
  258. rapidata/api_client/models/i_campaign_filter_or_filter.py +117 -0
  259. rapidata/api_client/models/i_campaign_filter_response_count_filter.py +103 -0
  260. rapidata/api_client/models/i_campaign_filter_user_action_restriction_filter.py +106 -0
  261. rapidata/api_client/models/i_campaign_filter_user_score_filter.py +102 -0
  262. rapidata/api_client/models/i_campaign_filter_user_state_filter.py +106 -0
  263. rapidata/api_client/models/i_dataset_metadata_input.py +154 -0
  264. rapidata/api_client/models/i_dataset_metadata_input_prompt_asset_metadata_input.py +100 -0
  265. rapidata/api_client/models/i_dataset_metadata_input_prompt_metadata_input.py +96 -0
  266. rapidata/api_client/models/i_dataset_metadata_input_transcription_metadata_input.py +96 -0
  267. rapidata/api_client/models/i_dataset_model.py +126 -0
  268. rapidata/api_client/models/i_dataset_model_clone_dataset_model.py +98 -0
  269. rapidata/api_client/models/i_metadata.py +252 -0
  270. rapidata/api_client/models/i_metadata_classification_metadata.py +109 -0
  271. rapidata/api_client/models/i_metadata_count_metadata.py +109 -0
  272. rapidata/api_client/models/i_metadata_file_type_metadata.py +110 -0
  273. rapidata/api_client/models/i_metadata_image_dimension_metadata.py +111 -0
  274. rapidata/api_client/models/i_metadata_input.py +126 -0
  275. rapidata/api_client/models/i_metadata_input_text_metadata_input.py +111 -0
  276. rapidata/api_client/models/i_metadata_location_metadata.py +111 -0
  277. rapidata/api_client/models/i_metadata_model.py +252 -0
  278. rapidata/api_client/models/i_metadata_model_classification_metadata_model.py +96 -0
  279. rapidata/api_client/models/i_metadata_model_count_metadata_model.py +96 -0
  280. rapidata/api_client/models/i_metadata_model_file_type_metadata_model.py +97 -0
  281. rapidata/api_client/models/i_metadata_model_image_dimension_metadata_model.py +98 -0
  282. rapidata/api_client/models/i_metadata_model_location_metadata_model.py +98 -0
  283. rapidata/api_client/models/i_metadata_model_original_filename_metadata_model.py +96 -0
  284. rapidata/api_client/models/i_metadata_model_source_url_metadata_model.py +96 -0
  285. rapidata/api_client/models/i_metadata_model_streams_metadata_model.py +100 -0
  286. rapidata/api_client/models/i_metadata_model_text_metadata_model.py +101 -0
  287. rapidata/api_client/models/i_metadata_model_video_duration_metadata_model.py +97 -0
  288. rapidata/api_client/models/i_metadata_original_filename_metadata.py +109 -0
  289. rapidata/api_client/models/i_metadata_source_url_metadata.py +109 -0
  290. rapidata/api_client/models/i_metadata_streams_metadata.py +113 -0
  291. rapidata/api_client/models/i_metadata_text_metadata.py +114 -0
  292. rapidata/api_client/models/i_metadata_video_duration_metadata.py +110 -0
  293. rapidata/api_client/models/i_order_workflow_model.py +168 -0
  294. rapidata/api_client/models/i_order_workflow_model_compare_workflow_model.py +146 -0
  295. rapidata/api_client/models/i_order_workflow_model_evaluation_workflow_model.py +108 -0
  296. rapidata/api_client/models/i_order_workflow_model_grouped_ranking_workflow_model.py +147 -0
  297. rapidata/api_client/models/i_order_workflow_model_simple_workflow_model.py +110 -0
  298. rapidata/api_client/models/i_pair_maker_config.py +126 -0
  299. rapidata/api_client/models/i_pair_maker_config_model.py +126 -0
  300. rapidata/api_client/models/i_pair_maker_config_model_online_pair_maker_config_model.py +98 -0
  301. rapidata/api_client/models/i_pair_maker_config_online_pair_maker_config.py +98 -0
  302. rapidata/api_client/models/i_pair_maker_information.py +126 -0
  303. rapidata/api_client/models/i_pair_maker_information_online_pair_maker_information.py +100 -0
  304. rapidata/api_client/models/i_pipeline_artifact_model.py +126 -0
  305. rapidata/api_client/models/i_pipeline_artifact_model_create_dataset_artifact_model.py +102 -0
  306. rapidata/api_client/models/i_pipeline_model.py +126 -0
  307. rapidata/api_client/models/i_pipeline_model_create_simple_pipeline_model.py +116 -0
  308. rapidata/api_client/models/i_pipeline_step_model.py +168 -0
  309. rapidata/api_client/models/i_pipeline_step_model_dataset_evaluation_step_model.py +102 -0
  310. rapidata/api_client/models/i_pipeline_step_model_send_completion_mail_step_model.py +98 -0
  311. rapidata/api_client/models/i_pipeline_step_model_workflow_aggregation_step_model.py +103 -0
  312. rapidata/api_client/models/i_pipeline_step_model_workflow_labeling_step_model.py +96 -0
  313. rapidata/api_client/models/i_rapid_blueprint.py +252 -0
  314. rapidata/api_client/models/i_rapid_blueprint_attach_category_rapid_blueprint.py +108 -0
  315. rapidata/api_client/models/i_rapid_blueprint_bounding_box_rapid_blueprint.py +96 -0
  316. rapidata/api_client/models/i_rapid_blueprint_compare_rapid_blueprint.py +98 -0
  317. rapidata/api_client/models/i_rapid_blueprint_free_text_rapid_blueprint.py +103 -0
  318. rapidata/api_client/models/i_rapid_blueprint_line_rapid_blueprint.py +96 -0
  319. rapidata/api_client/models/i_rapid_blueprint_locate_rapid_blueprint.py +96 -0
  320. rapidata/api_client/models/i_rapid_blueprint_named_entity_rapid_blueprint.py +98 -0
  321. rapidata/api_client/models/i_rapid_blueprint_polygon_rapid_blueprint.py +96 -0
  322. rapidata/api_client/models/i_rapid_blueprint_scrub_rapid_blueprint.py +96 -0
  323. rapidata/api_client/models/i_rapid_blueprint_transcription_rapid_blueprint.py +96 -0
  324. rapidata/api_client/models/i_rapid_payload.py +252 -0
  325. rapidata/api_client/models/i_rapid_payload_bounding_box_payload.py +96 -0
  326. rapidata/api_client/models/i_rapid_payload_classify_payload.py +106 -0
  327. rapidata/api_client/models/i_rapid_payload_compare_payload.py +96 -0
  328. rapidata/api_client/models/i_rapid_payload_free_text_payload.py +103 -0
  329. rapidata/api_client/models/i_rapid_payload_line_payload.py +96 -0
  330. rapidata/api_client/models/i_rapid_payload_locate_payload.py +96 -0
  331. rapidata/api_client/models/i_rapid_payload_named_entity_payload.py +98 -0
  332. rapidata/api_client/models/i_rapid_payload_polygon_payload.py +96 -0
  333. rapidata/api_client/models/i_rapid_payload_scrub_payload.py +96 -0
  334. rapidata/api_client/models/i_rapid_payload_transcription_payload.py +106 -0
  335. rapidata/api_client/models/i_rapid_result.py +266 -0
  336. rapidata/api_client/models/i_rapid_result_attach_category_result.py +98 -0
  337. rapidata/api_client/models/i_rapid_result_bounding_box_result.py +106 -0
  338. rapidata/api_client/models/i_rapid_result_compare_result.py +98 -0
  339. rapidata/api_client/models/i_rapid_result_free_text_result.py +98 -0
  340. rapidata/api_client/models/i_rapid_result_line_result.py +106 -0
  341. rapidata/api_client/models/i_rapid_result_locate_result.py +106 -0
  342. rapidata/api_client/models/i_rapid_result_named_entity_result.py +106 -0
  343. rapidata/api_client/models/i_rapid_result_polygon_result.py +106 -0
  344. rapidata/api_client/models/i_rapid_result_scrub_result.py +98 -0
  345. rapidata/api_client/models/i_rapid_result_skip_result.py +96 -0
  346. rapidata/api_client/models/i_rapid_result_transcription_result.py +106 -0
  347. rapidata/api_client/models/i_referee_config.py +154 -0
  348. rapidata/api_client/models/i_referee_config_naive_referee_config.py +96 -0
  349. rapidata/api_client/models/i_referee_config_never_ending_referee_config.py +94 -0
  350. rapidata/api_client/models/i_referee_config_probabilistic_attach_category_referee_config.py +98 -0
  351. rapidata/api_client/models/i_referee_info.py +154 -0
  352. rapidata/api_client/models/i_referee_info_naive_referee_info.py +96 -0
  353. rapidata/api_client/models/i_referee_info_never_ending_referee_info.py +94 -0
  354. rapidata/api_client/models/i_referee_info_probabilistic_attach_category_referee_info.py +98 -0
  355. rapidata/api_client/models/i_referee_model.py +140 -0
  356. rapidata/api_client/models/i_referee_model_early_stopping_referee_model.py +98 -0
  357. rapidata/api_client/models/i_referee_model_naive_referee_model.py +96 -0
  358. rapidata/api_client/models/i_selection.py +240 -0
  359. rapidata/api_client/models/i_selection_ab_test_selection.py +122 -0
  360. rapidata/api_client/models/i_selection_capped_selection.py +108 -0
  361. rapidata/api_client/models/i_selection_conditional_validation_selection.py +110 -0
  362. rapidata/api_client/models/i_selection_demographic_selection.py +98 -0
  363. rapidata/api_client/models/i_selection_effort_capped_selection.py +101 -0
  364. rapidata/api_client/models/i_selection_labeling_selection.py +103 -0
  365. rapidata/api_client/models/i_selection_shuffling_selection.py +106 -0
  366. rapidata/api_client/models/i_selection_static_selection.py +96 -0
  367. rapidata/api_client/models/i_selection_validation_selection.py +98 -0
  368. rapidata/api_client/models/i_user_filter_model.py +282 -0
  369. rapidata/api_client/models/i_user_filter_model_age_user_filter_model.py +104 -0
  370. rapidata/api_client/models/i_user_filter_model_and_user_filter_model.py +106 -0
  371. rapidata/api_client/models/i_user_filter_model_campaign_user_filter_model.py +96 -0
  372. rapidata/api_client/models/i_user_filter_model_country_user_filter_model.py +96 -0
  373. rapidata/api_client/models/i_user_filter_model_custom_user_filter_model.py +98 -0
  374. rapidata/api_client/models/i_user_filter_model_gender_user_filter_model.py +104 -0
  375. rapidata/api_client/models/i_user_filter_model_language_user_filter_model.py +96 -0
  376. rapidata/api_client/models/i_user_filter_model_new_user_filter_model.py +94 -0
  377. rapidata/api_client/models/i_user_filter_model_not_user_filter_model.py +102 -0
  378. rapidata/api_client/models/i_user_filter_model_or_user_filter_model.py +106 -0
  379. rapidata/api_client/models/i_user_filter_model_response_count_user_filter_model.py +101 -0
  380. rapidata/api_client/models/i_user_filter_model_user_score_user_filter_model.py +105 -0
  381. rapidata/api_client/models/i_validation_metadata_input.py +140 -0
  382. rapidata/api_client/models/i_validation_metadata_input_prompt_asset_metadata_input.py +100 -0
  383. rapidata/api_client/models/i_validation_metadata_input_prompt_metadata_input.py +96 -0
  384. rapidata/api_client/models/i_validation_truth.py +280 -0
  385. rapidata/api_client/models/i_validation_truth_attach_category_truth.py +96 -0
  386. rapidata/api_client/models/i_validation_truth_bounding_box_truth.py +102 -0
  387. rapidata/api_client/models/i_validation_truth_compare_truth.py +96 -0
  388. rapidata/api_client/models/i_validation_truth_empty_validation_truth.py +94 -0
  389. rapidata/api_client/models/i_validation_truth_line_truth.py +94 -0
  390. rapidata/api_client/models/i_validation_truth_locate_box_truth.py +104 -0
  391. rapidata/api_client/models/i_validation_truth_multi_compare_truth.py +96 -0
  392. rapidata/api_client/models/i_validation_truth_named_entity_truth.py +104 -0
  393. rapidata/api_client/models/i_validation_truth_polygon_truth.py +94 -0
  394. rapidata/api_client/models/i_validation_truth_scrub_truth.py +104 -0
  395. rapidata/api_client/models/i_validation_truth_skip_truth.py +94 -0
  396. rapidata/api_client/models/i_validation_truth_transcription_truth.py +115 -0
  397. rapidata/api_client/models/i_workflow_config.py +168 -0
  398. rapidata/api_client/models/i_workflow_config_compare_workflow_config.py +142 -0
  399. rapidata/api_client/models/i_workflow_config_evaluation_workflow_config.py +114 -0
  400. rapidata/api_client/models/i_workflow_config_grouped_ranking_workflow_config.py +155 -0
  401. rapidata/api_client/models/i_workflow_config_simple_workflow_config.py +116 -0
  402. rapidata/api_client/models/i_workflow_model.py +168 -0
  403. rapidata/api_client/models/i_workflow_model_compare_workflow_model.py +145 -0
  404. rapidata/api_client/models/i_workflow_model_evaluation_workflow_model.py +115 -0
  405. rapidata/api_client/models/i_workflow_model_grouped_ranking_workflow_model.py +121 -0
  406. rapidata/api_client/models/i_workflow_model_simple_workflow_model.py +119 -0
  407. rapidata/api_client/models/image_dimension_metadata.py +12 -1
  408. rapidata/api_client/models/inquire_file_metadata_result.py +100 -0
  409. rapidata/api_client/models/inspect_report_result.py +2 -2
  410. rapidata/api_client/models/json_web_key.py +224 -0
  411. rapidata/api_client/models/json_web_key_set.py +95 -0
  412. rapidata/api_client/models/labeling_selection.py +11 -13
  413. rapidata/api_client/models/language_filter.py +98 -0
  414. rapidata/api_client/models/leaderboard_query_result.py +135 -0
  415. rapidata/api_client/models/leaderboard_query_result_paged_result.py +105 -0
  416. rapidata/api_client/models/leaderboards_query_result.py +135 -0
  417. rapidata/api_client/models/line_result.py +3 -3
  418. rapidata/api_client/models/line_result_line.py +97 -0
  419. rapidata/api_client/models/line_result_line_point.py +89 -0
  420. rapidata/api_client/models/local_file_wrapper.py +120 -0
  421. rapidata/api_client/models/locate_coordinate.py +4 -13
  422. rapidata/api_client/models/location_metadata.py +12 -1
  423. rapidata/api_client/models/logic_operator.py +2 -2
  424. rapidata/api_client/models/metadata_i_order_metadata_input.py +154 -0
  425. rapidata/api_client/models/metadata_i_order_metadata_input_metadata_prompt_asset_metadata_input.py +100 -0
  426. rapidata/api_client/models/metadata_i_order_metadata_input_metadata_prompt_metadata_input.py +96 -0
  427. rapidata/api_client/models/metadata_i_order_metadata_input_metadata_transcription_metadata_input.py +96 -0
  428. rapidata/api_client/models/metadata_prompt_asset_metadata_input.py +100 -0
  429. rapidata/api_client/models/metadata_prompt_metadata_input.py +96 -0
  430. rapidata/api_client/models/metadata_transcription_metadata_input.py +96 -0
  431. rapidata/api_client/models/multi_asset.py +6 -6
  432. rapidata/api_client/models/multi_asset_assets_inner.py +170 -0
  433. rapidata/api_client/models/multi_asset_input.py +130 -0
  434. rapidata/api_client/models/multi_asset_input1.py +110 -0
  435. rapidata/api_client/models/multi_asset_input1_assets_inner.py +198 -0
  436. rapidata/api_client/models/multi_asset_input2.py +110 -0
  437. rapidata/api_client/models/multi_asset_input3.py +110 -0
  438. rapidata/api_client/models/multi_asset_input3_assets_inner.py +198 -0
  439. rapidata/api_client/models/multi_asset_input_assets_inner.py +156 -0
  440. rapidata/api_client/models/multi_asset_model.py +3 -3
  441. rapidata/api_client/models/naive_referee_model.py +2 -2
  442. rapidata/api_client/models/named_classification.py +4 -13
  443. rapidata/api_client/models/new_user_filter.py +96 -0
  444. rapidata/api_client/models/newsletter_model.py +6 -6
  445. rapidata/api_client/models/not_available_yet_result.py +4 -13
  446. rapidata/api_client/models/not_filter.py +117 -0
  447. rapidata/api_client/models/not_user_filter_model.py +3 -3
  448. rapidata/api_client/models/null_asset.py +3 -5
  449. rapidata/api_client/models/online_pair_maker_config_model.py +3 -3
  450. rapidata/api_client/models/or_filter.py +121 -0
  451. rapidata/api_client/models/or_user_filter_model.py +3 -3
  452. rapidata/api_client/models/order_model.py +15 -14
  453. rapidata/api_client/models/order_state.py +2 -2
  454. rapidata/api_client/models/original_filename_metadata.py +12 -1
  455. rapidata/api_client/models/page_info.py +2 -7
  456. rapidata/api_client/models/paged_result_aggregated_orders_model.py +105 -0
  457. rapidata/api_client/models/paged_result_benchmark_query_result.py +105 -0
  458. rapidata/api_client/models/paged_result_campaign_query_result.py +105 -0
  459. rapidata/api_client/models/paged_result_clients_query_result.py +105 -0
  460. rapidata/api_client/models/paged_result_datapoint_model.py +105 -0
  461. rapidata/api_client/models/paged_result_get_compare_workflow_results_result.py +105 -0
  462. rapidata/api_client/models/paged_result_get_grouped_ranking_workflow_results_result.py +105 -0
  463. rapidata/api_client/models/paged_result_get_validation_rapids_result.py +105 -0
  464. rapidata/api_client/models/paged_result_get_workflow_results_result.py +105 -0
  465. rapidata/api_client/models/paged_result_i_workflow_model.py +105 -0
  466. rapidata/api_client/models/paged_result_leaderboard_query_result.py +105 -0
  467. rapidata/api_client/models/paged_result_leaderboards_query_result.py +105 -0
  468. rapidata/api_client/models/paged_result_of_aggregated_orders_model.py +103 -0
  469. rapidata/api_client/models/paged_result_of_benchmark_query_result.py +103 -0
  470. rapidata/api_client/models/paged_result_of_campaign_query_result.py +103 -0
  471. rapidata/api_client/models/paged_result_of_clients_query_result.py +103 -0
  472. rapidata/api_client/models/paged_result_of_get_compare_workflow_results_result.py +103 -0
  473. rapidata/api_client/models/paged_result_of_get_grouped_ranking_workflow_results_result.py +103 -0
  474. rapidata/api_client/models/paged_result_of_get_validation_rapids_result.py +103 -0
  475. rapidata/api_client/models/paged_result_of_get_workflow_results_result.py +103 -0
  476. rapidata/api_client/models/paged_result_of_i_workflow_model.py +103 -0
  477. rapidata/api_client/models/paged_result_of_leaderboards_query_result.py +103 -0
  478. rapidata/api_client/models/paged_result_of_order_model.py +103 -0
  479. rapidata/api_client/models/paged_result_of_participant_by_benchmark.py +103 -0
  480. rapidata/api_client/models/paged_result_of_prompt_by_benchmark_result.py +103 -0
  481. rapidata/api_client/models/paged_result_of_query_audiences_result.py +103 -0
  482. rapidata/api_client/models/paged_result_of_query_datapoints_by_dataset_id_result.py +103 -0
  483. rapidata/api_client/models/paged_result_of_query_validation_rapid_eligibility_result.py +103 -0
  484. rapidata/api_client/models/paged_result_of_rapid_model.py +103 -0
  485. rapidata/api_client/models/paged_result_of_runs_by_leaderboard_result.py +103 -0
  486. rapidata/api_client/models/paged_result_of_sample_by_identifier.py +103 -0
  487. rapidata/api_client/models/paged_result_of_sample_by_participant.py +103 -0
  488. rapidata/api_client/models/paged_result_of_standing_by_leaderboard.py +103 -0
  489. rapidata/api_client/models/paged_result_of_validation_set_model.py +103 -0
  490. rapidata/api_client/models/paged_result_order_model.py +105 -0
  491. rapidata/api_client/models/paged_result_participant_by_benchmark.py +105 -0
  492. rapidata/api_client/models/paged_result_potential_validation_rapid.py +105 -0
  493. rapidata/api_client/models/paged_result_prompt_by_benchmark_result.py +105 -0
  494. rapidata/api_client/models/paged_result_query_audiences_result.py +105 -0
  495. rapidata/api_client/models/paged_result_query_datapoints_by_dataset_id_result.py +105 -0
  496. rapidata/api_client/models/paged_result_query_validation_rapid_eligibility_result.py +105 -0
  497. rapidata/api_client/models/paged_result_rapid_model.py +105 -0
  498. rapidata/api_client/models/paged_result_runs_by_leaderboard_result.py +105 -0
  499. rapidata/api_client/models/paged_result_sample_by_identifier.py +105 -0
  500. rapidata/api_client/models/paged_result_sample_by_participant.py +105 -0
  501. rapidata/api_client/models/paged_result_standing_by_leaderboard.py +105 -0
  502. rapidata/api_client/models/paged_result_validation_set_model.py +105 -0
  503. rapidata/api_client/models/participant_by_benchmark.py +94 -0
  504. rapidata/api_client/models/participant_by_benchmark_paged_result.py +105 -0
  505. rapidata/api_client/models/participant_by_leaderboard.py +113 -0
  506. rapidata/api_client/models/participant_by_leaderboard_paged_result.py +105 -0
  507. rapidata/api_client/models/participant_status.py +38 -0
  508. rapidata/api_client/models/pipeline_id_workflow_config_put_request.py +140 -0
  509. rapidata/api_client/models/polygon_result.py +3 -3
  510. rapidata/api_client/models/polygon_result_coordinate.py +89 -0
  511. rapidata/api_client/models/polygon_result_shape.py +95 -0
  512. rapidata/api_client/models/potential_validation_rapid.py +103 -0
  513. rapidata/api_client/models/potential_validation_rapid_paged_result.py +105 -0
  514. rapidata/api_client/models/potential_validation_rapid_truth.py +280 -0
  515. rapidata/api_client/models/preliminary_download_model.py +5 -5
  516. rapidata/api_client/models/preview_order_model.py +87 -0
  517. rapidata/api_client/models/problem_details.py +2 -20
  518. rapidata/api_client/models/prompt_asset_metadata_input.py +6 -8
  519. rapidata/api_client/models/prompt_asset_metadata_input_asset.py +154 -0
  520. rapidata/api_client/models/prompt_by_benchmark_result.py +112 -0
  521. rapidata/api_client/models/prompt_by_benchmark_result_paged_result.py +105 -0
  522. rapidata/api_client/models/prompt_by_leaderboard_result.py +90 -0
  523. rapidata/api_client/models/prompt_by_leaderboard_result_paged_result.py +105 -0
  524. rapidata/api_client/models/prompt_metadata.py +12 -1
  525. rapidata/api_client/models/prompt_metadata_input.py +2 -2
  526. rapidata/api_client/models/prompt_type.py +38 -0
  527. rapidata/api_client/models/proxy_file_wrapper.py +129 -0
  528. rapidata/api_client/models/public_order_model.py +2 -2
  529. rapidata/api_client/models/public_rapid_response.py +112 -0
  530. rapidata/api_client/models/query_audiences_result.py +111 -0
  531. rapidata/api_client/models/query_datapoints_by_dataset_id_result.py +95 -0
  532. rapidata/api_client/models/query_model.py +10 -5
  533. rapidata/api_client/models/query_validation_model.py +97 -0
  534. rapidata/api_client/models/query_validation_rapid_eligibility_model_query_validation_model.py +107 -0
  535. rapidata/api_client/models/query_validation_rapid_eligibility_result.py +103 -0
  536. rapidata/api_client/models/query_validation_rapid_eligibility_result_truth.py +280 -0
  537. rapidata/api_client/models/rapid_issue.py +2 -2
  538. rapidata/api_client/models/rapid_modality.py +46 -0
  539. rapidata/api_client/models/rapid_model.py +33 -49
  540. rapidata/api_client/models/rapid_result_model.py +7 -7
  541. rapidata/api_client/models/rapid_skipped_model.py +5 -5
  542. rapidata/api_client/models/rapid_state.py +2 -2
  543. rapidata/api_client/models/read_bridge_token_keys_result.py +10 -24
  544. rapidata/api_client/models/reference_asset_input.py +100 -0
  545. rapidata/api_client/models/report_model.py +9 -15
  546. rapidata/api_client/models/response_count_filter.py +103 -0
  547. rapidata/api_client/models/response_count_user_filter_model.py +2 -8
  548. rapidata/api_client/models/retrieval_mode.py +2 -2
  549. rapidata/api_client/models/root_filter.py +5 -14
  550. rapidata/api_client/models/run_status.py +39 -0
  551. rapidata/api_client/models/runs_by_leaderboard_result.py +104 -0
  552. rapidata/api_client/models/runs_by_leaderboard_result_paged_result.py +105 -0
  553. rapidata/api_client/models/sample_by_identifier.py +125 -0
  554. rapidata/api_client/models/sample_by_identifier_paged_result.py +105 -0
  555. rapidata/api_client/models/sample_by_participant.py +121 -0
  556. rapidata/api_client/models/sample_by_participant_paged_result.py +105 -0
  557. rapidata/api_client/models/scrub_range.py +2 -2
  558. rapidata/api_client/models/send_survey_model.py +87 -0
  559. rapidata/api_client/models/simple_workflow_config.py +15 -7
  560. rapidata/api_client/models/simple_workflow_config_blueprint.py +37 -23
  561. rapidata/api_client/models/simple_workflow_config_model.py +11 -3
  562. rapidata/api_client/models/simple_workflow_model.py +14 -4
  563. rapidata/api_client/models/simple_workflow_model1.py +4 -11
  564. rapidata/api_client/models/simple_workflow_model_blueprint.py +1 -1
  565. rapidata/api_client/models/sort_criterion.py +5 -11
  566. rapidata/api_client/models/sort_direction.py +2 -2
  567. rapidata/api_client/models/source_url_metadata.py +12 -1
  568. rapidata/api_client/models/standing_by_benchmark.py +113 -0
  569. rapidata/api_client/models/standing_by_leaderboard.py +113 -0
  570. rapidata/api_client/models/standing_by_leaderboard_paged_result.py +105 -0
  571. rapidata/api_client/models/standing_status.py +38 -0
  572. rapidata/api_client/models/standings_by_benchmark_result.py +95 -0
  573. rapidata/api_client/models/standings_by_leaderboard_result.py +95 -0
  574. rapidata/api_client/models/start_preliminary_download_result.py +87 -0
  575. rapidata/api_client/models/sticky_state.py +3 -2
  576. rapidata/api_client/models/stream_file_wrapper.py +138 -0
  577. rapidata/api_client/models/streams_metadata.py +113 -0
  578. rapidata/api_client/models/streams_metadata_model.py +100 -0
  579. rapidata/api_client/models/string_segment.py +105 -0
  580. rapidata/api_client/models/submit_coco_model.py +1 -3
  581. rapidata/api_client/models/submit_order_model.py +87 -0
  582. rapidata/api_client/models/submit_participant_result.py +89 -0
  583. rapidata/api_client/models/submit_prompt_model.py +107 -0
  584. rapidata/api_client/models/submit_prompt_model_prompt_asset.py +202 -0
  585. rapidata/api_client/models/tags_by_benchmark_result.py +87 -0
  586. rapidata/api_client/models/text_asset.py +3 -5
  587. rapidata/api_client/models/text_asset_input.py +120 -0
  588. rapidata/api_client/models/text_metadata.py +18 -2
  589. rapidata/api_client/models/text_metadata_input.py +111 -0
  590. rapidata/api_client/models/text_metadata_model.py +7 -2
  591. rapidata/api_client/models/transcription_metadata.py +9 -1
  592. rapidata/api_client/models/transcription_metadata_input.py +2 -2
  593. rapidata/api_client/models/transcription_word.py +2 -2
  594. rapidata/api_client/models/translated_string.py +2 -2
  595. rapidata/api_client/models/unlock_order_result.py +2 -2
  596. rapidata/api_client/models/update_audience_request.py +102 -0
  597. rapidata/api_client/models/update_benchmark_model.py +99 -0
  598. rapidata/api_client/models/update_benchmark_name_model.py +87 -0
  599. rapidata/api_client/models/update_campaign_model.py +11 -11
  600. rapidata/api_client/models/update_dataset_name_model.py +5 -5
  601. rapidata/api_client/models/update_dimensions_model.py +3 -3
  602. rapidata/api_client/models/update_leaderboard_model.py +106 -0
  603. rapidata/api_client/models/update_leaderboard_name_model.py +87 -0
  604. rapidata/api_client/models/update_leaderboard_response_config_model.py +89 -0
  605. rapidata/api_client/models/update_order_name_model.py +5 -5
  606. rapidata/api_client/models/update_participant_model.py +92 -0
  607. rapidata/api_client/models/update_participant_name_model.py +87 -0
  608. rapidata/api_client/models/update_priority_model.py +87 -0
  609. rapidata/api_client/models/update_prompt_tags_model.py +87 -0
  610. rapidata/api_client/models/update_should_alert_model.py +87 -0
  611. rapidata/api_client/models/update_validation_rapid_model.py +28 -10
  612. rapidata/api_client/models/update_validation_rapid_model_context_asset.py +160 -0
  613. rapidata/api_client/models/update_validation_set_model.py +120 -0
  614. rapidata/api_client/models/upload_asset_result.py +102 -0
  615. rapidata/api_client/models/upload_file_from_url_result.py +87 -0
  616. rapidata/api_client/models/upload_file_result.py +87 -0
  617. rapidata/api_client/models/user_action_restriction.py +37 -0
  618. rapidata/api_client/models/user_action_restriction_filter.py +101 -0
  619. rapidata/api_client/models/user_score_filter.py +102 -0
  620. rapidata/api_client/models/user_state.py +38 -0
  621. rapidata/api_client/models/user_state_filter.py +101 -0
  622. rapidata/api_client/models/validation_chance.py +20 -3
  623. rapidata/api_client/models/validation_set_model.py +39 -5
  624. rapidata/api_client/models/validation_set_overview_model.py +2 -2
  625. rapidata/api_client/models/validation_set_validation_set_id_rapid_post_payload_parameter.py +252 -0
  626. rapidata/api_client/models/validation_set_validation_set_id_rapid_post_truth_parameter.py +280 -0
  627. rapidata/api_client/models/validation_set_zip_post_request_blueprint.py +252 -0
  628. rapidata/api_client/models/video_duration_metadata.py +109 -0
  629. rapidata/api_client/models/video_duration_metadata_model.py +96 -0
  630. rapidata/api_client/models/workflow_aggregation_step_model.py +3 -12
  631. rapidata/api_client/models/workflow_config_artifact_model_workflow_config.py +23 -9
  632. rapidata/api_client/models/workflow_state.py +2 -2
  633. rapidata/api_client/models/zip_entry_file_wrapper.py +151 -0
  634. rapidata/api_client/rest.py +16 -9
  635. rapidata/api_client_README.md +389 -315
  636. rapidata/rapidata_client/__init__.py +10 -17
  637. rapidata/rapidata_client/api/rapidata_api_client.py +253 -0
  638. rapidata/rapidata_client/benchmark/__init__.py +0 -0
  639. rapidata/rapidata_client/benchmark/_detail_mapper.py +32 -0
  640. rapidata/rapidata_client/benchmark/leaderboard/__init__.py +0 -0
  641. rapidata/rapidata_client/benchmark/leaderboard/rapidata_leaderboard.py +221 -0
  642. rapidata/rapidata_client/benchmark/participant/__init__.py +0 -0
  643. rapidata/rapidata_client/benchmark/participant/_participant.py +145 -0
  644. rapidata/rapidata_client/benchmark/rapidata_benchmark.py +546 -0
  645. rapidata/rapidata_client/benchmark/rapidata_benchmark_manager.py +219 -0
  646. rapidata/rapidata_client/config/__init__.py +4 -0
  647. rapidata/rapidata_client/config/logger.py +135 -0
  648. rapidata/rapidata_client/config/logging_config.py +55 -0
  649. rapidata/rapidata_client/config/managed_print.py +6 -0
  650. rapidata/rapidata_client/config/order_config.py +14 -0
  651. rapidata/rapidata_client/config/rapidata_config.py +36 -0
  652. rapidata/rapidata_client/config/tracer.py +184 -0
  653. rapidata/rapidata_client/config/upload_config.py +64 -0
  654. rapidata/rapidata_client/datapoints/__init__.py +10 -0
  655. rapidata/rapidata_client/datapoints/_asset_uploader.py +169 -0
  656. rapidata/rapidata_client/datapoints/_datapoint.py +92 -0
  657. rapidata/rapidata_client/datapoints/_datapoint_uploader.py +47 -0
  658. rapidata/rapidata_client/datapoints/_datapoints_validator.py +70 -0
  659. rapidata/rapidata_client/datapoints/assets/__init__.py +0 -0
  660. rapidata/rapidata_client/datapoints/assets/constants.py +7 -0
  661. rapidata/rapidata_client/{metadata → datapoints/metadata}/__init__.py +1 -0
  662. rapidata/rapidata_client/datapoints/metadata/_media_asset_metadata.py +26 -0
  663. rapidata/rapidata_client/datapoints/metadata/_private_text_metadata.py +16 -0
  664. rapidata/rapidata_client/datapoints/metadata/_prompt_identifier_metadata.py +14 -0
  665. rapidata/rapidata_client/datapoints/metadata/_prompt_metadata.py +12 -0
  666. rapidata/rapidata_client/datapoints/metadata/_public_text_metadata.py +16 -0
  667. rapidata/rapidata_client/{metadata → datapoints/metadata}/_select_words_metadata.py +4 -5
  668. rapidata/rapidata_client/demographic/demographic_manager.py +44 -19
  669. rapidata/rapidata_client/exceptions/__init__.py +1 -0
  670. rapidata/rapidata_client/exceptions/failed_upload_exception.py +20 -0
  671. rapidata/rapidata_client/filter/__init__.py +1 -0
  672. rapidata/rapidata_client/filter/_base_filter.py +27 -6
  673. rapidata/rapidata_client/filter/age_filter.py +21 -10
  674. rapidata/rapidata_client/filter/and_filter.py +42 -0
  675. rapidata/rapidata_client/filter/campaign_filter.py +18 -10
  676. rapidata/rapidata_client/filter/country_filter.py +34 -12
  677. rapidata/rapidata_client/filter/custom_filter.py +22 -12
  678. rapidata/rapidata_client/filter/gender_filter.py +22 -10
  679. rapidata/rapidata_client/filter/language_filter.py +39 -21
  680. rapidata/rapidata_client/filter/models/age_group.py +14 -12
  681. rapidata/rapidata_client/filter/models/gender.py +12 -8
  682. rapidata/rapidata_client/filter/new_user_filter.py +11 -4
  683. rapidata/rapidata_client/filter/not_filter.py +23 -11
  684. rapidata/rapidata_client/filter/or_filter.py +23 -11
  685. rapidata/rapidata_client/filter/rapidata_filters.py +26 -20
  686. rapidata/rapidata_client/filter/response_count_filter.py +36 -20
  687. rapidata/rapidata_client/filter/user_score_filter.py +47 -24
  688. rapidata/rapidata_client/order/_rapidata_order_builder.py +286 -193
  689. rapidata/rapidata_client/order/dataset/_rapidata_dataset.py +153 -0
  690. rapidata/rapidata_client/order/rapidata_order.py +317 -160
  691. rapidata/rapidata_client/order/rapidata_order_manager.py +689 -428
  692. rapidata/rapidata_client/order/rapidata_results.py +98 -67
  693. rapidata/rapidata_client/rapidata_client.py +99 -33
  694. rapidata/rapidata_client/referee/__init__.py +1 -1
  695. rapidata/rapidata_client/referee/_base_referee.py +7 -3
  696. rapidata/rapidata_client/referee/_early_stopping_referee.py +20 -11
  697. rapidata/rapidata_client/referee/_naive_referee.py +18 -3
  698. rapidata/rapidata_client/selection/__init__.py +2 -1
  699. rapidata/rapidata_client/selection/_base_selection.py +9 -2
  700. rapidata/rapidata_client/selection/ab_test_selection.py +28 -20
  701. rapidata/rapidata_client/selection/capped_selection.py +23 -16
  702. rapidata/rapidata_client/selection/conditional_validation_selection.py +43 -24
  703. rapidata/rapidata_client/selection/demographic_selection.py +21 -6
  704. rapidata/rapidata_client/selection/effort_selection.py +49 -0
  705. rapidata/rapidata_client/selection/labeling_selection.py +34 -11
  706. rapidata/rapidata_client/selection/{retrieval_modes.py → rapidata_retrieval_modes.py} +7 -4
  707. rapidata/rapidata_client/selection/rapidata_selections.py +25 -15
  708. rapidata/rapidata_client/selection/shuffling_selection.py +21 -13
  709. rapidata/rapidata_client/selection/static_selection.py +19 -8
  710. rapidata/rapidata_client/selection/validation_selection.py +20 -4
  711. rapidata/rapidata_client/settings/__init__.py +4 -1
  712. rapidata/rapidata_client/settings/_rapidata_setting.py +15 -2
  713. rapidata/rapidata_client/settings/alert_on_fast_response.py +8 -5
  714. rapidata/rapidata_client/settings/allow_neither_both.py +17 -0
  715. rapidata/rapidata_client/settings/custom_setting.py +3 -2
  716. rapidata/rapidata_client/settings/free_text_minimum_characters.py +9 -4
  717. rapidata/rapidata_client/settings/models/translation_behaviour_options.py +3 -2
  718. rapidata/rapidata_client/settings/mute_video.py +15 -0
  719. rapidata/rapidata_client/settings/no_shuffle.py +4 -2
  720. rapidata/rapidata_client/settings/play_video_until_the_end.py +7 -4
  721. rapidata/rapidata_client/settings/rapidata_settings.py +23 -11
  722. rapidata/rapidata_client/settings/swap_context_instruction.py +20 -0
  723. rapidata/rapidata_client/settings/translation_behaviour.py +7 -5
  724. rapidata/rapidata_client/validation/rapidata_validation_set.py +106 -12
  725. rapidata/rapidata_client/validation/rapids/_validation_rapid_uploader.py +62 -0
  726. rapidata/rapidata_client/validation/rapids/box.py +37 -12
  727. rapidata/rapidata_client/validation/rapids/rapids.py +28 -103
  728. rapidata/rapidata_client/validation/rapids/rapids_manager.py +315 -208
  729. rapidata/rapidata_client/validation/validation_set_manager.py +531 -219
  730. rapidata/rapidata_client/workflow/__init__.py +2 -1
  731. rapidata/rapidata_client/workflow/_base_workflow.py +25 -7
  732. rapidata/rapidata_client/workflow/_classify_workflow.py +58 -15
  733. rapidata/rapidata_client/workflow/_compare_workflow.py +44 -9
  734. rapidata/rapidata_client/workflow/_draw_workflow.py +40 -10
  735. rapidata/rapidata_client/workflow/_evaluation_workflow.py +28 -7
  736. rapidata/rapidata_client/workflow/_free_text_workflow.py +46 -9
  737. rapidata/rapidata_client/workflow/_locate_workflow.py +40 -10
  738. rapidata/rapidata_client/workflow/_multi_ranking_workflow.py +87 -0
  739. rapidata/rapidata_client/workflow/_ranking_workflow.py +109 -25
  740. rapidata/rapidata_client/workflow/_select_words_workflow.py +51 -11
  741. rapidata/rapidata_client/workflow/_timestamp_workflow.py +42 -11
  742. rapidata/service/__init__.py +0 -1
  743. rapidata/service/credential_manager.py +18 -18
  744. rapidata/service/openapi_service.py +82 -22
  745. rapidata/types/__init__.py +166 -0
  746. rapidata-2.44.4.dist-info/METADATA +32 -0
  747. rapidata-2.44.4.dist-info/RECORD +1014 -0
  748. {rapidata-2.27.0.dist-info → rapidata-2.44.4.dist-info}/WHEEL +1 -1
  749. rapidata/rapidata_client/api/rapidata_exception.py +0 -107
  750. rapidata/rapidata_client/assets/__init__.py +0 -10
  751. rapidata/rapidata_client/assets/_base_asset.py +0 -11
  752. rapidata/rapidata_client/assets/_media_asset.py +0 -306
  753. rapidata/rapidata_client/assets/_multi_asset.py +0 -61
  754. rapidata/rapidata_client/assets/_sessions.py +0 -35
  755. rapidata/rapidata_client/assets/_text_asset.py +0 -34
  756. rapidata/rapidata_client/assets/data_type_enum.py +0 -7
  757. rapidata/rapidata_client/country_codes/__init__.py +0 -1
  758. rapidata/rapidata_client/country_codes/country_codes.py +0 -19
  759. rapidata/rapidata_client/logging/__init__.py +0 -2
  760. rapidata/rapidata_client/logging/logger.py +0 -47
  761. rapidata/rapidata_client/logging/output_manager.py +0 -16
  762. rapidata/rapidata_client/metadata/_media_asset_metadata.py +0 -15
  763. rapidata/rapidata_client/metadata/_private_text_metadata.py +0 -17
  764. rapidata/rapidata_client/metadata/_prompt_metadata.py +0 -18
  765. rapidata/rapidata_client/metadata/_public_text_metadata.py +0 -17
  766. rapidata/rapidata_client/order/_rapidata_dataset.py +0 -411
  767. rapidata/service/local_file_service.py +0 -25
  768. rapidata-2.27.0.dist-info/METADATA +0 -35
  769. rapidata-2.27.0.dist-info/RECORD +0 -540
  770. /rapidata/rapidata_client/{metadata → datapoints/metadata}/_base_metadata.py +0 -0
  771. {rapidata-2.27.0.dist-info → rapidata-2.44.4.dist-info/licenses}/LICENSE +0 -0
@@ -1,9 +1,9 @@
1
1
  # coding: utf-8
2
2
 
3
3
  """
4
- Rapidata.Dataset
4
+ Rapidata Asset API
5
5
 
6
- No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ The API for the Rapidata Asset service
7
7
 
8
8
  The version of the OpenAPI document: v1
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
@@ -23,9 +23,8 @@ from rapidata.api_client.models.get_compare_ab_summary_result import GetCompareA
23
23
  from rapidata.api_client.models.get_responses_result import GetResponsesResult
24
24
  from rapidata.api_client.models.get_workflow_by_id_result import GetWorkflowByIdResult
25
25
  from rapidata.api_client.models.get_workflow_progress_result import GetWorkflowProgressResult
26
- from rapidata.api_client.models.i_workflow_model_paged_result import IWorkflowModelPagedResult
26
+ from rapidata.api_client.models.paged_result_of_i_workflow_model import PagedResultOfIWorkflowModel
27
27
  from rapidata.api_client.models.query_model import QueryModel
28
- from rapidata.api_client.models.query_workflows_model import QueryWorkflowsModel
29
28
  from rapidata.api_client.models.sort_direction import SortDirection
30
29
 
31
30
  from rapidata.api_client.api_client import ApiClient, RequestSerialized
@@ -278,8 +277,9 @@ class WorkflowApi:
278
277
 
279
278
  # authentication setting
280
279
  _auth_settings: List[str] = [
281
- 'bearer',
282
- 'oauth2'
280
+ 'OAuth2',
281
+ 'OpenIdConnect',
282
+ 'Bearer'
283
283
  ]
284
284
 
285
285
  return self.api_client.param_serialize(
@@ -300,804 +300,6 @@ class WorkflowApi:
300
300
 
301
301
 
302
302
 
303
- @validate_call
304
- def workflow_getbyid_get(
305
- self,
306
- workflow_id: Annotated[Optional[StrictStr], Field(description="The ID of the workflow to get.")] = None,
307
- _request_timeout: Union[
308
- None,
309
- Annotated[StrictFloat, Field(gt=0)],
310
- Tuple[
311
- Annotated[StrictFloat, Field(gt=0)],
312
- Annotated[StrictFloat, Field(gt=0)]
313
- ]
314
- ] = None,
315
- _request_auth: Optional[Dict[StrictStr, Any]] = None,
316
- _content_type: Optional[StrictStr] = None,
317
- _headers: Optional[Dict[StrictStr, Any]] = None,
318
- _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
319
- ) -> GetWorkflowByIdResult:
320
- """(Deprecated) Get a workflow by its ID.
321
-
322
-
323
- :param workflow_id: The ID of the workflow to get.
324
- :type workflow_id: str
325
- :param _request_timeout: timeout setting for this request. If one
326
- number provided, it will be total request
327
- timeout. It can also be a pair (tuple) of
328
- (connection, read) timeouts.
329
- :type _request_timeout: int, tuple(int, int), optional
330
- :param _request_auth: set to override the auth_settings for an a single
331
- request; this effectively ignores the
332
- authentication in the spec for a single request.
333
- :type _request_auth: dict, optional
334
- :param _content_type: force content-type for the request.
335
- :type _content_type: str, Optional
336
- :param _headers: set to override the headers for a single
337
- request; this effectively ignores the headers
338
- in the spec for a single request.
339
- :type _headers: dict, optional
340
- :param _host_index: set to override the host_index for a single
341
- request; this effectively ignores the host_index
342
- in the spec for a single request.
343
- :type _host_index: int, optional
344
- :return: Returns the result object.
345
- """ # noqa: E501
346
- warnings.warn("GET /workflow/getbyid is deprecated.", DeprecationWarning)
347
-
348
- _param = self._workflow_getbyid_get_serialize(
349
- workflow_id=workflow_id,
350
- _request_auth=_request_auth,
351
- _content_type=_content_type,
352
- _headers=_headers,
353
- _host_index=_host_index
354
- )
355
-
356
- _response_types_map: Dict[str, Optional[str]] = {
357
- '200': "GetWorkflowByIdResult",
358
- }
359
- response_data = self.api_client.call_api(
360
- *_param,
361
- _request_timeout=_request_timeout
362
- )
363
- response_data.read()
364
- return self.api_client.response_deserialize(
365
- response_data=response_data,
366
- response_types_map=_response_types_map,
367
- ).data
368
-
369
-
370
- @validate_call
371
- def workflow_getbyid_get_with_http_info(
372
- self,
373
- workflow_id: Annotated[Optional[StrictStr], Field(description="The ID of the workflow to get.")] = None,
374
- _request_timeout: Union[
375
- None,
376
- Annotated[StrictFloat, Field(gt=0)],
377
- Tuple[
378
- Annotated[StrictFloat, Field(gt=0)],
379
- Annotated[StrictFloat, Field(gt=0)]
380
- ]
381
- ] = None,
382
- _request_auth: Optional[Dict[StrictStr, Any]] = None,
383
- _content_type: Optional[StrictStr] = None,
384
- _headers: Optional[Dict[StrictStr, Any]] = None,
385
- _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
386
- ) -> ApiResponse[GetWorkflowByIdResult]:
387
- """(Deprecated) Get a workflow by its ID.
388
-
389
-
390
- :param workflow_id: The ID of the workflow to get.
391
- :type workflow_id: str
392
- :param _request_timeout: timeout setting for this request. If one
393
- number provided, it will be total request
394
- timeout. It can also be a pair (tuple) of
395
- (connection, read) timeouts.
396
- :type _request_timeout: int, tuple(int, int), optional
397
- :param _request_auth: set to override the auth_settings for an a single
398
- request; this effectively ignores the
399
- authentication in the spec for a single request.
400
- :type _request_auth: dict, optional
401
- :param _content_type: force content-type for the request.
402
- :type _content_type: str, Optional
403
- :param _headers: set to override the headers for a single
404
- request; this effectively ignores the headers
405
- in the spec for a single request.
406
- :type _headers: dict, optional
407
- :param _host_index: set to override the host_index for a single
408
- request; this effectively ignores the host_index
409
- in the spec for a single request.
410
- :type _host_index: int, optional
411
- :return: Returns the result object.
412
- """ # noqa: E501
413
- warnings.warn("GET /workflow/getbyid is deprecated.", DeprecationWarning)
414
-
415
- _param = self._workflow_getbyid_get_serialize(
416
- workflow_id=workflow_id,
417
- _request_auth=_request_auth,
418
- _content_type=_content_type,
419
- _headers=_headers,
420
- _host_index=_host_index
421
- )
422
-
423
- _response_types_map: Dict[str, Optional[str]] = {
424
- '200': "GetWorkflowByIdResult",
425
- }
426
- response_data = self.api_client.call_api(
427
- *_param,
428
- _request_timeout=_request_timeout
429
- )
430
- response_data.read()
431
- return self.api_client.response_deserialize(
432
- response_data=response_data,
433
- response_types_map=_response_types_map,
434
- )
435
-
436
-
437
- @validate_call
438
- def workflow_getbyid_get_without_preload_content(
439
- self,
440
- workflow_id: Annotated[Optional[StrictStr], Field(description="The ID of the workflow to get.")] = None,
441
- _request_timeout: Union[
442
- None,
443
- Annotated[StrictFloat, Field(gt=0)],
444
- Tuple[
445
- Annotated[StrictFloat, Field(gt=0)],
446
- Annotated[StrictFloat, Field(gt=0)]
447
- ]
448
- ] = None,
449
- _request_auth: Optional[Dict[StrictStr, Any]] = None,
450
- _content_type: Optional[StrictStr] = None,
451
- _headers: Optional[Dict[StrictStr, Any]] = None,
452
- _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
453
- ) -> RESTResponseType:
454
- """(Deprecated) Get a workflow by its ID.
455
-
456
-
457
- :param workflow_id: The ID of the workflow to get.
458
- :type workflow_id: str
459
- :param _request_timeout: timeout setting for this request. If one
460
- number provided, it will be total request
461
- timeout. It can also be a pair (tuple) of
462
- (connection, read) timeouts.
463
- :type _request_timeout: int, tuple(int, int), optional
464
- :param _request_auth: set to override the auth_settings for an a single
465
- request; this effectively ignores the
466
- authentication in the spec for a single request.
467
- :type _request_auth: dict, optional
468
- :param _content_type: force content-type for the request.
469
- :type _content_type: str, Optional
470
- :param _headers: set to override the headers for a single
471
- request; this effectively ignores the headers
472
- in the spec for a single request.
473
- :type _headers: dict, optional
474
- :param _host_index: set to override the host_index for a single
475
- request; this effectively ignores the host_index
476
- in the spec for a single request.
477
- :type _host_index: int, optional
478
- :return: Returns the result object.
479
- """ # noqa: E501
480
- warnings.warn("GET /workflow/getbyid is deprecated.", DeprecationWarning)
481
-
482
- _param = self._workflow_getbyid_get_serialize(
483
- workflow_id=workflow_id,
484
- _request_auth=_request_auth,
485
- _content_type=_content_type,
486
- _headers=_headers,
487
- _host_index=_host_index
488
- )
489
-
490
- _response_types_map: Dict[str, Optional[str]] = {
491
- '200': "GetWorkflowByIdResult",
492
- }
493
- response_data = self.api_client.call_api(
494
- *_param,
495
- _request_timeout=_request_timeout
496
- )
497
- return response_data.response
498
-
499
-
500
- def _workflow_getbyid_get_serialize(
501
- self,
502
- workflow_id,
503
- _request_auth,
504
- _content_type,
505
- _headers,
506
- _host_index,
507
- ) -> RequestSerialized:
508
-
509
- _host = None
510
-
511
- _collection_formats: Dict[str, str] = {
512
- }
513
-
514
- _path_params: Dict[str, str] = {}
515
- _query_params: List[Tuple[str, str]] = []
516
- _header_params: Dict[str, Optional[str]] = _headers or {}
517
- _form_params: List[Tuple[str, str]] = []
518
- _files: Dict[
519
- str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
520
- ] = {}
521
- _body_params: Optional[bytes] = None
522
-
523
- # process the path parameters
524
- # process the query parameters
525
- if workflow_id is not None:
526
-
527
- _query_params.append(('workflowId', workflow_id))
528
-
529
- # process the header parameters
530
- # process the form parameters
531
- # process the body parameter
532
-
533
-
534
- # set the HTTP header `Accept`
535
- if 'Accept' not in _header_params:
536
- _header_params['Accept'] = self.api_client.select_header_accept(
537
- [
538
- 'text/plain',
539
- 'application/json',
540
- 'text/json'
541
- ]
542
- )
543
-
544
-
545
- # authentication setting
546
- _auth_settings: List[str] = [
547
- 'bearer',
548
- 'oauth2'
549
- ]
550
-
551
- return self.api_client.param_serialize(
552
- method='GET',
553
- resource_path='/workflow/getbyid',
554
- path_params=_path_params,
555
- query_params=_query_params,
556
- header_params=_header_params,
557
- body=_body_params,
558
- post_params=_form_params,
559
- files=_files,
560
- auth_settings=_auth_settings,
561
- collection_formats=_collection_formats,
562
- _host=_host,
563
- _request_auth=_request_auth
564
- )
565
-
566
-
567
-
568
-
569
- @validate_call
570
- def workflow_getprogress_get(
571
- self,
572
- workflow_id: Annotated[Optional[StrictStr], Field(description="The ID of the workflow to get the progress for.")] = None,
573
- _request_timeout: Union[
574
- None,
575
- Annotated[StrictFloat, Field(gt=0)],
576
- Tuple[
577
- Annotated[StrictFloat, Field(gt=0)],
578
- Annotated[StrictFloat, Field(gt=0)]
579
- ]
580
- ] = None,
581
- _request_auth: Optional[Dict[StrictStr, Any]] = None,
582
- _content_type: Optional[StrictStr] = None,
583
- _headers: Optional[Dict[StrictStr, Any]] = None,
584
- _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
585
- ) -> GetWorkflowProgressResult:
586
- """(Deprecated) Get the progress of a workflow.
587
-
588
-
589
- :param workflow_id: The ID of the workflow to get the progress for.
590
- :type workflow_id: str
591
- :param _request_timeout: timeout setting for this request. If one
592
- number provided, it will be total request
593
- timeout. It can also be a pair (tuple) of
594
- (connection, read) timeouts.
595
- :type _request_timeout: int, tuple(int, int), optional
596
- :param _request_auth: set to override the auth_settings for an a single
597
- request; this effectively ignores the
598
- authentication in the spec for a single request.
599
- :type _request_auth: dict, optional
600
- :param _content_type: force content-type for the request.
601
- :type _content_type: str, Optional
602
- :param _headers: set to override the headers for a single
603
- request; this effectively ignores the headers
604
- in the spec for a single request.
605
- :type _headers: dict, optional
606
- :param _host_index: set to override the host_index for a single
607
- request; this effectively ignores the host_index
608
- in the spec for a single request.
609
- :type _host_index: int, optional
610
- :return: Returns the result object.
611
- """ # noqa: E501
612
- warnings.warn("GET /workflow/getprogress is deprecated.", DeprecationWarning)
613
-
614
- _param = self._workflow_getprogress_get_serialize(
615
- workflow_id=workflow_id,
616
- _request_auth=_request_auth,
617
- _content_type=_content_type,
618
- _headers=_headers,
619
- _host_index=_host_index
620
- )
621
-
622
- _response_types_map: Dict[str, Optional[str]] = {
623
- '200': "GetWorkflowProgressResult",
624
- }
625
- response_data = self.api_client.call_api(
626
- *_param,
627
- _request_timeout=_request_timeout
628
- )
629
- response_data.read()
630
- return self.api_client.response_deserialize(
631
- response_data=response_data,
632
- response_types_map=_response_types_map,
633
- ).data
634
-
635
-
636
- @validate_call
637
- def workflow_getprogress_get_with_http_info(
638
- self,
639
- workflow_id: Annotated[Optional[StrictStr], Field(description="The ID of the workflow to get the progress for.")] = None,
640
- _request_timeout: Union[
641
- None,
642
- Annotated[StrictFloat, Field(gt=0)],
643
- Tuple[
644
- Annotated[StrictFloat, Field(gt=0)],
645
- Annotated[StrictFloat, Field(gt=0)]
646
- ]
647
- ] = None,
648
- _request_auth: Optional[Dict[StrictStr, Any]] = None,
649
- _content_type: Optional[StrictStr] = None,
650
- _headers: Optional[Dict[StrictStr, Any]] = None,
651
- _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
652
- ) -> ApiResponse[GetWorkflowProgressResult]:
653
- """(Deprecated) Get the progress of a workflow.
654
-
655
-
656
- :param workflow_id: The ID of the workflow to get the progress for.
657
- :type workflow_id: str
658
- :param _request_timeout: timeout setting for this request. If one
659
- number provided, it will be total request
660
- timeout. It can also be a pair (tuple) of
661
- (connection, read) timeouts.
662
- :type _request_timeout: int, tuple(int, int), optional
663
- :param _request_auth: set to override the auth_settings for an a single
664
- request; this effectively ignores the
665
- authentication in the spec for a single request.
666
- :type _request_auth: dict, optional
667
- :param _content_type: force content-type for the request.
668
- :type _content_type: str, Optional
669
- :param _headers: set to override the headers for a single
670
- request; this effectively ignores the headers
671
- in the spec for a single request.
672
- :type _headers: dict, optional
673
- :param _host_index: set to override the host_index for a single
674
- request; this effectively ignores the host_index
675
- in the spec for a single request.
676
- :type _host_index: int, optional
677
- :return: Returns the result object.
678
- """ # noqa: E501
679
- warnings.warn("GET /workflow/getprogress is deprecated.", DeprecationWarning)
680
-
681
- _param = self._workflow_getprogress_get_serialize(
682
- workflow_id=workflow_id,
683
- _request_auth=_request_auth,
684
- _content_type=_content_type,
685
- _headers=_headers,
686
- _host_index=_host_index
687
- )
688
-
689
- _response_types_map: Dict[str, Optional[str]] = {
690
- '200': "GetWorkflowProgressResult",
691
- }
692
- response_data = self.api_client.call_api(
693
- *_param,
694
- _request_timeout=_request_timeout
695
- )
696
- response_data.read()
697
- return self.api_client.response_deserialize(
698
- response_data=response_data,
699
- response_types_map=_response_types_map,
700
- )
701
-
702
-
703
- @validate_call
704
- def workflow_getprogress_get_without_preload_content(
705
- self,
706
- workflow_id: Annotated[Optional[StrictStr], Field(description="The ID of the workflow to get the progress for.")] = None,
707
- _request_timeout: Union[
708
- None,
709
- Annotated[StrictFloat, Field(gt=0)],
710
- Tuple[
711
- Annotated[StrictFloat, Field(gt=0)],
712
- Annotated[StrictFloat, Field(gt=0)]
713
- ]
714
- ] = None,
715
- _request_auth: Optional[Dict[StrictStr, Any]] = None,
716
- _content_type: Optional[StrictStr] = None,
717
- _headers: Optional[Dict[StrictStr, Any]] = None,
718
- _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
719
- ) -> RESTResponseType:
720
- """(Deprecated) Get the progress of a workflow.
721
-
722
-
723
- :param workflow_id: The ID of the workflow to get the progress for.
724
- :type workflow_id: str
725
- :param _request_timeout: timeout setting for this request. If one
726
- number provided, it will be total request
727
- timeout. It can also be a pair (tuple) of
728
- (connection, read) timeouts.
729
- :type _request_timeout: int, tuple(int, int), optional
730
- :param _request_auth: set to override the auth_settings for an a single
731
- request; this effectively ignores the
732
- authentication in the spec for a single request.
733
- :type _request_auth: dict, optional
734
- :param _content_type: force content-type for the request.
735
- :type _content_type: str, Optional
736
- :param _headers: set to override the headers for a single
737
- request; this effectively ignores the headers
738
- in the spec for a single request.
739
- :type _headers: dict, optional
740
- :param _host_index: set to override the host_index for a single
741
- request; this effectively ignores the host_index
742
- in the spec for a single request.
743
- :type _host_index: int, optional
744
- :return: Returns the result object.
745
- """ # noqa: E501
746
- warnings.warn("GET /workflow/getprogress is deprecated.", DeprecationWarning)
747
-
748
- _param = self._workflow_getprogress_get_serialize(
749
- workflow_id=workflow_id,
750
- _request_auth=_request_auth,
751
- _content_type=_content_type,
752
- _headers=_headers,
753
- _host_index=_host_index
754
- )
755
-
756
- _response_types_map: Dict[str, Optional[str]] = {
757
- '200': "GetWorkflowProgressResult",
758
- }
759
- response_data = self.api_client.call_api(
760
- *_param,
761
- _request_timeout=_request_timeout
762
- )
763
- return response_data.response
764
-
765
-
766
- def _workflow_getprogress_get_serialize(
767
- self,
768
- workflow_id,
769
- _request_auth,
770
- _content_type,
771
- _headers,
772
- _host_index,
773
- ) -> RequestSerialized:
774
-
775
- _host = None
776
-
777
- _collection_formats: Dict[str, str] = {
778
- }
779
-
780
- _path_params: Dict[str, str] = {}
781
- _query_params: List[Tuple[str, str]] = []
782
- _header_params: Dict[str, Optional[str]] = _headers or {}
783
- _form_params: List[Tuple[str, str]] = []
784
- _files: Dict[
785
- str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
786
- ] = {}
787
- _body_params: Optional[bytes] = None
788
-
789
- # process the path parameters
790
- # process the query parameters
791
- if workflow_id is not None:
792
-
793
- _query_params.append(('workflowId', workflow_id))
794
-
795
- # process the header parameters
796
- # process the form parameters
797
- # process the body parameter
798
-
799
-
800
- # set the HTTP header `Accept`
801
- if 'Accept' not in _header_params:
802
- _header_params['Accept'] = self.api_client.select_header_accept(
803
- [
804
- 'text/plain',
805
- 'application/json',
806
- 'text/json'
807
- ]
808
- )
809
-
810
-
811
- # authentication setting
812
- _auth_settings: List[str] = [
813
- 'bearer',
814
- 'oauth2'
815
- ]
816
-
817
- return self.api_client.param_serialize(
818
- method='GET',
819
- resource_path='/workflow/getprogress',
820
- path_params=_path_params,
821
- query_params=_query_params,
822
- header_params=_header_params,
823
- body=_body_params,
824
- post_params=_form_params,
825
- files=_files,
826
- auth_settings=_auth_settings,
827
- collection_formats=_collection_formats,
828
- _host=_host,
829
- _request_auth=_request_auth
830
- )
831
-
832
-
833
-
834
-
835
- @validate_call
836
- def workflow_query_get(
837
- self,
838
- request: Annotated[Optional[QueryWorkflowsModel], Field(description="The model containing the filter, page, and sort criteria.")] = None,
839
- _request_timeout: Union[
840
- None,
841
- Annotated[StrictFloat, Field(gt=0)],
842
- Tuple[
843
- Annotated[StrictFloat, Field(gt=0)],
844
- Annotated[StrictFloat, Field(gt=0)]
845
- ]
846
- ] = None,
847
- _request_auth: Optional[Dict[StrictStr, Any]] = None,
848
- _content_type: Optional[StrictStr] = None,
849
- _headers: Optional[Dict[StrictStr, Any]] = None,
850
- _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
851
- ) -> IWorkflowModelPagedResult:
852
- """(Deprecated) Queries workflows based on the provided filter, page, and sort criteria.
853
-
854
-
855
- :param request: The model containing the filter, page, and sort criteria.
856
- :type request: QueryWorkflowsModel
857
- :param _request_timeout: timeout setting for this request. If one
858
- number provided, it will be total request
859
- timeout. It can also be a pair (tuple) of
860
- (connection, read) timeouts.
861
- :type _request_timeout: int, tuple(int, int), optional
862
- :param _request_auth: set to override the auth_settings for an a single
863
- request; this effectively ignores the
864
- authentication in the spec for a single request.
865
- :type _request_auth: dict, optional
866
- :param _content_type: force content-type for the request.
867
- :type _content_type: str, Optional
868
- :param _headers: set to override the headers for a single
869
- request; this effectively ignores the headers
870
- in the spec for a single request.
871
- :type _headers: dict, optional
872
- :param _host_index: set to override the host_index for a single
873
- request; this effectively ignores the host_index
874
- in the spec for a single request.
875
- :type _host_index: int, optional
876
- :return: Returns the result object.
877
- """ # noqa: E501
878
- warnings.warn("GET /workflow/query is deprecated.", DeprecationWarning)
879
-
880
- _param = self._workflow_query_get_serialize(
881
- request=request,
882
- _request_auth=_request_auth,
883
- _content_type=_content_type,
884
- _headers=_headers,
885
- _host_index=_host_index
886
- )
887
-
888
- _response_types_map: Dict[str, Optional[str]] = {
889
- '200': "IWorkflowModelPagedResult",
890
- }
891
- response_data = self.api_client.call_api(
892
- *_param,
893
- _request_timeout=_request_timeout
894
- )
895
- response_data.read()
896
- return self.api_client.response_deserialize(
897
- response_data=response_data,
898
- response_types_map=_response_types_map,
899
- ).data
900
-
901
-
902
- @validate_call
903
- def workflow_query_get_with_http_info(
904
- self,
905
- request: Annotated[Optional[QueryWorkflowsModel], Field(description="The model containing the filter, page, and sort criteria.")] = None,
906
- _request_timeout: Union[
907
- None,
908
- Annotated[StrictFloat, Field(gt=0)],
909
- Tuple[
910
- Annotated[StrictFloat, Field(gt=0)],
911
- Annotated[StrictFloat, Field(gt=0)]
912
- ]
913
- ] = None,
914
- _request_auth: Optional[Dict[StrictStr, Any]] = None,
915
- _content_type: Optional[StrictStr] = None,
916
- _headers: Optional[Dict[StrictStr, Any]] = None,
917
- _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
918
- ) -> ApiResponse[IWorkflowModelPagedResult]:
919
- """(Deprecated) Queries workflows based on the provided filter, page, and sort criteria.
920
-
921
-
922
- :param request: The model containing the filter, page, and sort criteria.
923
- :type request: QueryWorkflowsModel
924
- :param _request_timeout: timeout setting for this request. If one
925
- number provided, it will be total request
926
- timeout. It can also be a pair (tuple) of
927
- (connection, read) timeouts.
928
- :type _request_timeout: int, tuple(int, int), optional
929
- :param _request_auth: set to override the auth_settings for an a single
930
- request; this effectively ignores the
931
- authentication in the spec for a single request.
932
- :type _request_auth: dict, optional
933
- :param _content_type: force content-type for the request.
934
- :type _content_type: str, Optional
935
- :param _headers: set to override the headers for a single
936
- request; this effectively ignores the headers
937
- in the spec for a single request.
938
- :type _headers: dict, optional
939
- :param _host_index: set to override the host_index for a single
940
- request; this effectively ignores the host_index
941
- in the spec for a single request.
942
- :type _host_index: int, optional
943
- :return: Returns the result object.
944
- """ # noqa: E501
945
- warnings.warn("GET /workflow/query is deprecated.", DeprecationWarning)
946
-
947
- _param = self._workflow_query_get_serialize(
948
- request=request,
949
- _request_auth=_request_auth,
950
- _content_type=_content_type,
951
- _headers=_headers,
952
- _host_index=_host_index
953
- )
954
-
955
- _response_types_map: Dict[str, Optional[str]] = {
956
- '200': "IWorkflowModelPagedResult",
957
- }
958
- response_data = self.api_client.call_api(
959
- *_param,
960
- _request_timeout=_request_timeout
961
- )
962
- response_data.read()
963
- return self.api_client.response_deserialize(
964
- response_data=response_data,
965
- response_types_map=_response_types_map,
966
- )
967
-
968
-
969
- @validate_call
970
- def workflow_query_get_without_preload_content(
971
- self,
972
- request: Annotated[Optional[QueryWorkflowsModel], Field(description="The model containing the filter, page, and sort criteria.")] = None,
973
- _request_timeout: Union[
974
- None,
975
- Annotated[StrictFloat, Field(gt=0)],
976
- Tuple[
977
- Annotated[StrictFloat, Field(gt=0)],
978
- Annotated[StrictFloat, Field(gt=0)]
979
- ]
980
- ] = None,
981
- _request_auth: Optional[Dict[StrictStr, Any]] = None,
982
- _content_type: Optional[StrictStr] = None,
983
- _headers: Optional[Dict[StrictStr, Any]] = None,
984
- _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
985
- ) -> RESTResponseType:
986
- """(Deprecated) Queries workflows based on the provided filter, page, and sort criteria.
987
-
988
-
989
- :param request: The model containing the filter, page, and sort criteria.
990
- :type request: QueryWorkflowsModel
991
- :param _request_timeout: timeout setting for this request. If one
992
- number provided, it will be total request
993
- timeout. It can also be a pair (tuple) of
994
- (connection, read) timeouts.
995
- :type _request_timeout: int, tuple(int, int), optional
996
- :param _request_auth: set to override the auth_settings for an a single
997
- request; this effectively ignores the
998
- authentication in the spec for a single request.
999
- :type _request_auth: dict, optional
1000
- :param _content_type: force content-type for the request.
1001
- :type _content_type: str, Optional
1002
- :param _headers: set to override the headers for a single
1003
- request; this effectively ignores the headers
1004
- in the spec for a single request.
1005
- :type _headers: dict, optional
1006
- :param _host_index: set to override the host_index for a single
1007
- request; this effectively ignores the host_index
1008
- in the spec for a single request.
1009
- :type _host_index: int, optional
1010
- :return: Returns the result object.
1011
- """ # noqa: E501
1012
- warnings.warn("GET /workflow/query is deprecated.", DeprecationWarning)
1013
-
1014
- _param = self._workflow_query_get_serialize(
1015
- request=request,
1016
- _request_auth=_request_auth,
1017
- _content_type=_content_type,
1018
- _headers=_headers,
1019
- _host_index=_host_index
1020
- )
1021
-
1022
- _response_types_map: Dict[str, Optional[str]] = {
1023
- '200': "IWorkflowModelPagedResult",
1024
- }
1025
- response_data = self.api_client.call_api(
1026
- *_param,
1027
- _request_timeout=_request_timeout
1028
- )
1029
- return response_data.response
1030
-
1031
-
1032
- def _workflow_query_get_serialize(
1033
- self,
1034
- request,
1035
- _request_auth,
1036
- _content_type,
1037
- _headers,
1038
- _host_index,
1039
- ) -> RequestSerialized:
1040
-
1041
- _host = None
1042
-
1043
- _collection_formats: Dict[str, str] = {
1044
- }
1045
-
1046
- _path_params: Dict[str, str] = {}
1047
- _query_params: List[Tuple[str, str]] = []
1048
- _header_params: Dict[str, Optional[str]] = _headers or {}
1049
- _form_params: List[Tuple[str, str]] = []
1050
- _files: Dict[
1051
- str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
1052
- ] = {}
1053
- _body_params: Optional[bytes] = None
1054
-
1055
- # process the path parameters
1056
- # process the query parameters
1057
- if request is not None:
1058
-
1059
- _query_params.append(('request', request))
1060
-
1061
- # process the header parameters
1062
- # process the form parameters
1063
- # process the body parameter
1064
-
1065
-
1066
- # set the HTTP header `Accept`
1067
- if 'Accept' not in _header_params:
1068
- _header_params['Accept'] = self.api_client.select_header_accept(
1069
- [
1070
- 'text/plain',
1071
- 'application/json',
1072
- 'text/json'
1073
- ]
1074
- )
1075
-
1076
-
1077
- # authentication setting
1078
- _auth_settings: List[str] = [
1079
- 'bearer',
1080
- 'oauth2'
1081
- ]
1082
-
1083
- return self.api_client.param_serialize(
1084
- method='GET',
1085
- resource_path='/workflow/query',
1086
- path_params=_path_params,
1087
- query_params=_query_params,
1088
- header_params=_header_params,
1089
- body=_body_params,
1090
- post_params=_form_params,
1091
- files=_files,
1092
- auth_settings=_auth_settings,
1093
- collection_formats=_collection_formats,
1094
- _host=_host,
1095
- _request_auth=_request_auth
1096
- )
1097
-
1098
-
1099
-
1100
-
1101
303
  @validate_call
1102
304
  def workflow_workflow_id_compare_ab_summary_get(
1103
305
  self,
@@ -1116,7 +318,7 @@ class WorkflowApi:
1116
318
  _headers: Optional[Dict[StrictStr, Any]] = None,
1117
319
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1118
320
  ) -> GetCompareAbSummaryResult:
1119
- """Calculates a summary of the results for a simple compare workflow. The summary includes the number of times an asset at each index was the winner.
321
+ """Calculates a summary of the results for a simple compare workflow. The summary includes the number of times an asset at each index was the winner.
1120
322
 
1121
323
 
1122
324
  :param workflow_id: The ID of the workflow to get the summary for. (required)
@@ -1186,7 +388,7 @@ class WorkflowApi:
1186
388
  _headers: Optional[Dict[StrictStr, Any]] = None,
1187
389
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1188
390
  ) -> ApiResponse[GetCompareAbSummaryResult]:
1189
- """Calculates a summary of the results for a simple compare workflow. The summary includes the number of times an asset at each index was the winner.
391
+ """Calculates a summary of the results for a simple compare workflow. The summary includes the number of times an asset at each index was the winner.
1190
392
 
1191
393
 
1192
394
  :param workflow_id: The ID of the workflow to get the summary for. (required)
@@ -1256,7 +458,7 @@ class WorkflowApi:
1256
458
  _headers: Optional[Dict[StrictStr, Any]] = None,
1257
459
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1258
460
  ) -> RESTResponseType:
1259
- """Calculates a summary of the results for a simple compare workflow. The summary includes the number of times an asset at each index was the winner.
461
+ """Calculates a summary of the results for a simple compare workflow. The summary includes the number of times an asset at each index was the winner.
1260
462
 
1261
463
 
1262
464
  :param workflow_id: The ID of the workflow to get the summary for. (required)
@@ -1354,8 +556,9 @@ class WorkflowApi:
1354
556
 
1355
557
  # authentication setting
1356
558
  _auth_settings: List[str] = [
1357
- 'bearer',
1358
- 'oauth2'
559
+ 'OAuth2',
560
+ 'OpenIdConnect',
561
+ 'Bearer'
1359
562
  ]
1360
563
 
1361
564
  return self.api_client.param_serialize(
@@ -1615,8 +818,9 @@ class WorkflowApi:
1615
818
 
1616
819
  # authentication setting
1617
820
  _auth_settings: List[str] = [
1618
- 'bearer',
1619
- 'oauth2'
821
+ 'OAuth2',
822
+ 'OpenIdConnect',
823
+ 'Bearer'
1620
824
  ]
1621
825
 
1622
826
  return self.api_client.param_serialize(
@@ -1876,8 +1080,9 @@ class WorkflowApi:
1876
1080
 
1877
1081
  # authentication setting
1878
1082
  _auth_settings: List[str] = [
1879
- 'bearer',
1880
- 'oauth2'
1083
+ 'OAuth2',
1084
+ 'OpenIdConnect',
1085
+ 'Bearer'
1881
1086
  ]
1882
1087
 
1883
1088
  return self.api_client.param_serialize(
@@ -1917,7 +1122,7 @@ class WorkflowApi:
1917
1122
  _headers: Optional[Dict[StrictStr, Any]] = None,
1918
1123
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1919
1124
  ) -> GetResponsesResult:
1920
- """Gets the limit most recent or oldest responses for a workflow. The responses are not guaranteed to be of any specific rapid. Instead, this endpoint returns all responses to any rapid in the workflow.
1125
+ """Gets the limit most recent or oldest responses for a workflow. The responses are not guaranteed to be of any specific rapid. Instead, this endpoint returns all responses to any rapid in the workflow.
1921
1126
 
1922
1127
 
1923
1128
  :param workflow_id: The ID of the workflow to get the responses for. (required)
@@ -1991,7 +1196,7 @@ class WorkflowApi:
1991
1196
  _headers: Optional[Dict[StrictStr, Any]] = None,
1992
1197
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1993
1198
  ) -> ApiResponse[GetResponsesResult]:
1994
- """Gets the limit most recent or oldest responses for a workflow. The responses are not guaranteed to be of any specific rapid. Instead, this endpoint returns all responses to any rapid in the workflow.
1199
+ """Gets the limit most recent or oldest responses for a workflow. The responses are not guaranteed to be of any specific rapid. Instead, this endpoint returns all responses to any rapid in the workflow.
1995
1200
 
1996
1201
 
1997
1202
  :param workflow_id: The ID of the workflow to get the responses for. (required)
@@ -2065,7 +1270,7 @@ class WorkflowApi:
2065
1270
  _headers: Optional[Dict[StrictStr, Any]] = None,
2066
1271
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2067
1272
  ) -> RESTResponseType:
2068
- """Gets the limit most recent or oldest responses for a workflow. The responses are not guaranteed to be of any specific rapid. Instead, this endpoint returns all responses to any rapid in the workflow.
1273
+ """Gets the limit most recent or oldest responses for a workflow. The responses are not guaranteed to be of any specific rapid. Instead, this endpoint returns all responses to any rapid in the workflow.
2069
1274
 
2070
1275
 
2071
1276
  :param workflow_id: The ID of the workflow to get the responses for. (required)
@@ -2171,8 +1376,9 @@ class WorkflowApi:
2171
1376
 
2172
1377
  # authentication setting
2173
1378
  _auth_settings: List[str] = [
2174
- 'bearer',
2175
- 'oauth2'
1379
+ 'OAuth2',
1380
+ 'OpenIdConnect',
1381
+ 'Bearer'
2176
1382
  ]
2177
1383
 
2178
1384
  return self.api_client.param_serialize(
@@ -2209,7 +1415,7 @@ class WorkflowApi:
2209
1415
  _content_type: Optional[StrictStr] = None,
2210
1416
  _headers: Optional[Dict[StrictStr, Any]] = None,
2211
1417
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2212
- ) -> IWorkflowModelPagedResult:
1418
+ ) -> PagedResultOfIWorkflowModel:
2213
1419
  """Queries workflows based on the provided filter, page, and sort criteria.
2214
1420
 
2215
1421
 
@@ -2246,7 +1452,7 @@ class WorkflowApi:
2246
1452
  )
2247
1453
 
2248
1454
  _response_types_map: Dict[str, Optional[str]] = {
2249
- '200': "IWorkflowModelPagedResult",
1455
+ '200': "PagedResultOfIWorkflowModel",
2250
1456
  }
2251
1457
  response_data = self.api_client.call_api(
2252
1458
  *_param,
@@ -2275,7 +1481,7 @@ class WorkflowApi:
2275
1481
  _content_type: Optional[StrictStr] = None,
2276
1482
  _headers: Optional[Dict[StrictStr, Any]] = None,
2277
1483
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2278
- ) -> ApiResponse[IWorkflowModelPagedResult]:
1484
+ ) -> ApiResponse[PagedResultOfIWorkflowModel]:
2279
1485
  """Queries workflows based on the provided filter, page, and sort criteria.
2280
1486
 
2281
1487
 
@@ -2312,7 +1518,7 @@ class WorkflowApi:
2312
1518
  )
2313
1519
 
2314
1520
  _response_types_map: Dict[str, Optional[str]] = {
2315
- '200': "IWorkflowModelPagedResult",
1521
+ '200': "PagedResultOfIWorkflowModel",
2316
1522
  }
2317
1523
  response_data = self.api_client.call_api(
2318
1524
  *_param,
@@ -2378,7 +1584,7 @@ class WorkflowApi:
2378
1584
  )
2379
1585
 
2380
1586
  _response_types_map: Dict[str, Optional[str]] = {
2381
- '200': "IWorkflowModelPagedResult",
1587
+ '200': "PagedResultOfIWorkflowModel",
2382
1588
  }
2383
1589
  response_data = self.api_client.call_api(
2384
1590
  *_param,
@@ -2434,8 +1640,9 @@ class WorkflowApi:
2434
1640
 
2435
1641
  # authentication setting
2436
1642
  _auth_settings: List[str] = [
2437
- 'bearer',
2438
- 'oauth2'
1643
+ 'OAuth2',
1644
+ 'OpenIdConnect',
1645
+ 'Bearer'
2439
1646
  ]
2440
1647
 
2441
1648
  return self.api_client.param_serialize(