seeq 66.68.0.20251029__py3-none-any.whl → 66.93.0.20260109__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.
Files changed (665) hide show
  1. seeq/sdk/__init__.py +63 -2
  2. seeq/sdk/api/__init__.py +4 -2
  3. seeq/sdk/api/access_keys_api.py +1 -1
  4. seeq/sdk/api/add_ons_api.py +1 -1
  5. seeq/sdk/api/agents_api.py +1 -1
  6. seeq/sdk/api/annotations_api.py +1 -1
  7. seeq/sdk/api/assets_api.py +1 -1
  8. seeq/sdk/api/audit_api.py +1 -1
  9. seeq/sdk/api/auth_api.py +1 -1
  10. seeq/sdk/api/cache_api.py +1 -1
  11. seeq/sdk/api/condition_monitors_api.py +1 -1
  12. seeq/sdk/api/conditions_api.py +115 -1
  13. seeq/sdk/api/content_api.py +1 -1
  14. seeq/sdk/api/context_api.py +949 -39
  15. seeq/sdk/api/datafiles_api.py +1 -1
  16. seeq/sdk/api/datasources_api.py +1 -1
  17. seeq/sdk/api/display_templates_api.py +1 -1
  18. seeq/sdk/api/displays_api.py +1 -1
  19. seeq/sdk/api/export_api.py +1 -1
  20. seeq/sdk/api/folders_api.py +355 -1
  21. seeq/sdk/api/formulas_api.py +115 -1
  22. seeq/sdk/api/graph_ql_api.py +1 -1
  23. seeq/sdk/api/hierarchies_api.py +1 -1
  24. seeq/sdk/api/items_api.py +118 -1
  25. seeq/sdk/api/jobs_api.py +1 -1
  26. seeq/sdk/api/logs_api.py +120 -1
  27. seeq/sdk/api/markdown_items_api.py +1 -1
  28. seeq/sdk/api/markdown_links_api.py +1 -1
  29. seeq/sdk/api/materialized_tables_api.py +133 -5
  30. seeq/sdk/api/metrics_api.py +1 -1
  31. seeq/sdk/api/models_api.py +478 -1
  32. seeq/sdk/api/monitors_api.py +1 -1
  33. seeq/sdk/api/networks_api.py +1 -1
  34. seeq/sdk/api/notification_configurations_api.py +1 -1
  35. seeq/sdk/api/notifier_api.py +1 -1
  36. seeq/sdk/api/plugins_api.py +1 -1
  37. seeq/sdk/api/projects_api.py +1 -1
  38. seeq/sdk/api/report_templates_api.py +1 -1
  39. seeq/sdk/api/reports_api.py +1 -1
  40. seeq/sdk/api/requests_api.py +1 -1
  41. seeq/sdk/api/scalars_api.py +1 -1
  42. seeq/sdk/api/scim_api.py +1 -1
  43. seeq/sdk/api/sharing_api.py +621 -0
  44. seeq/sdk/api/signal_monitors_api.py +1 -1
  45. seeq/sdk/api/signals_api.py +1 -1
  46. seeq/sdk/api/stored_tables_api.py +999 -0
  47. seeq/sdk/api/subscriptions_api.py +1 -1
  48. seeq/sdk/api/system_api.py +1 -1
  49. seeq/sdk/api/table_definitions_api.py +2 -116
  50. seeq/sdk/api/trees_api.py +1 -1
  51. seeq/sdk/api/usage_api.py +1 -1
  52. seeq/sdk/api/user_groups_api.py +1 -1
  53. seeq/sdk/api/users_api.py +124 -3
  54. seeq/sdk/api/workbooks_api.py +127 -1
  55. seeq/sdk/api_client.py +9 -3
  56. seeq/sdk/configuration.py +3 -3
  57. seeq/sdk/models/__init__.py +61 -2
  58. seeq/sdk/models/access_key_input_v1.py +1 -1
  59. seeq/sdk/models/access_key_output_list_v1.py +1 -1
  60. seeq/sdk/models/access_key_output_v1.py +30 -2
  61. seeq/sdk/models/ace_input_v1.py +1 -1
  62. seeq/sdk/models/ace_output_v1.py +1 -1
  63. seeq/sdk/models/acl_input_v1.py +1 -1
  64. seeq/sdk/models/acl_output_v1.py +1 -1
  65. seeq/sdk/models/activity_graph_output_v1.py +1 -1
  66. seeq/sdk/models/activity_output_v1.py +1 -1
  67. seeq/sdk/models/add_on_input_v1.py +1 -1
  68. seeq/sdk/models/add_on_output_list_v1.py +1 -1
  69. seeq/sdk/models/add_on_output_v1.py +1 -1
  70. seeq/sdk/models/add_on_preview_output_list_v1.py +1 -1
  71. seeq/sdk/models/add_on_preview_v1.py +1 -1
  72. seeq/sdk/models/add_on_tool_input_v1.py +1 -1
  73. seeq/sdk/models/add_on_tool_output_v1.py +1 -1
  74. seeq/sdk/models/administrator_contact_information_v1.py +1 -1
  75. seeq/sdk/models/agent_input_v1.py +1 -1
  76. seeq/sdk/models/agent_key_output_v1.py +1 -1
  77. seeq/sdk/models/agent_orchestrator_output_v1.py +1 -1
  78. seeq/sdk/models/agent_output_v1.py +1 -1
  79. seeq/sdk/models/agent_status_output_v1.py +1 -1
  80. seeq/sdk/models/agent_status_v1.py +1 -1
  81. seeq/sdk/models/all_context_output_v1.py +216 -0
  82. seeq/sdk/models/annotation_image_link_output_v1.py +1 -1
  83. seeq/sdk/models/annotation_input_v1.py +1 -1
  84. seeq/sdk/models/annotation_interest_input_v1.py +1 -1
  85. seeq/sdk/models/annotation_interest_output_v1.py +1 -1
  86. seeq/sdk/models/annotation_list_output_v1.py +1 -1
  87. seeq/sdk/models/annotation_output_v1.py +1 -1
  88. seeq/sdk/models/archive_output_v1.py +1 -1
  89. seeq/sdk/models/asset_batch_input_v1.py +1 -1
  90. seeq/sdk/models/asset_error.py +1 -1
  91. seeq/sdk/models/asset_group_asset_input_v1.py +1 -1
  92. seeq/sdk/models/asset_group_input_v1.py +1 -1
  93. seeq/sdk/models/asset_group_output_v1.py +1 -1
  94. seeq/sdk/models/asset_group_root_input_v1.py +1 -1
  95. seeq/sdk/models/asset_group_tree_output_v1.py +1 -1
  96. seeq/sdk/models/asset_input_v1.py +1 -1
  97. seeq/sdk/models/asset_output_v1.py +1 -1
  98. seeq/sdk/models/asset_selection_input_v1.py +1 -1
  99. seeq/sdk/models/asset_selection_output_v1.py +1 -1
  100. seeq/sdk/models/asset_tree_batch_input_v1.py +1 -1
  101. seeq/sdk/models/asset_tree_output_v1.py +1 -1
  102. seeq/sdk/models/asset_tree_single_input_v1.py +1 -1
  103. seeq/sdk/models/attachment_input_v1.py +1 -1
  104. seeq/sdk/models/audit_output_list_v1.py +1 -1
  105. seeq/sdk/models/audit_output_v1.py +1 -1
  106. seeq/sdk/models/auth_input_v1.py +1 -1
  107. seeq/sdk/models/auth_providers_output_v1.py +1 -1
  108. seeq/sdk/models/authoritative_region_output_v1.py +1 -1
  109. seeq/sdk/models/base_output.py +1 -1
  110. seeq/sdk/models/boolean_config_field_v1.py +1 -1
  111. seeq/sdk/models/cache_block.py +1 -1
  112. seeq/sdk/models/cache_info_v1.py +1 -1
  113. seeq/sdk/models/calculated_item_output_v1.py +1 -1
  114. seeq/sdk/models/capability_inheritance_output_v1.py +1 -1
  115. seeq/sdk/models/capsule_input_v1.py +1 -1
  116. seeq/sdk/models/capsule_property_input_v1.py +1 -1
  117. seeq/sdk/models/capsule_property_output_v1.py +1 -1
  118. seeq/sdk/models/capsule_v1.py +1 -1
  119. seeq/sdk/models/capsules_input_v1.py +1 -1
  120. seeq/sdk/models/capsules_output_v1.py +1 -1
  121. seeq/sdk/models/capsules_overwrite_input_v1.py +1 -1
  122. seeq/sdk/models/category_label_pair_input_v1.py +152 -0
  123. seeq/sdk/models/channel_output_v1.py +1 -1
  124. seeq/sdk/models/column_data_update_input_list_v1.py +126 -0
  125. seeq/sdk/models/column_data_update_input_v1.py +184 -0
  126. seeq/sdk/models/column_definition_bulk_edit_input_list_v1.py +1 -1
  127. seeq/sdk/models/column_definition_bulk_edit_input_v1.py +1 -1
  128. seeq/sdk/models/column_definition_input_list_v1.py +1 -1
  129. seeq/sdk/models/column_definition_input_v1.py +1 -1
  130. seeq/sdk/models/column_definition_order_input_v1.py +1 -1
  131. seeq/sdk/models/column_definition_output_v1.py +1 -1
  132. seeq/sdk/models/column_header_output_v1.py +152 -0
  133. seeq/sdk/models/column_model_input_v1.py +1 -1
  134. seeq/sdk/models/column_model_output.py +1 -1
  135. seeq/sdk/models/column_override_input_list_v1.py +1 -1
  136. seeq/sdk/models/column_override_input_v1.py +1 -1
  137. seeq/sdk/models/column_rule_ancestor_input_v1.py +1 -1
  138. seeq/sdk/models/column_rule_asset_creator_input_v1.py +1 -1
  139. seeq/sdk/models/column_rule_concat_input_v1.py +1 -1
  140. seeq/sdk/models/column_rule_constant_input_v1.py +1 -1
  141. seeq/sdk/models/column_rule_context_condition_input_v1.py +1 -1
  142. seeq/sdk/models/column_rule_datasource_input_v1.py +1 -1
  143. seeq/sdk/models/column_rule_descendant_input_v1.py +1 -1
  144. seeq/sdk/models/column_rule_descendant_search_input_v1.py +1 -1
  145. seeq/sdk/models/column_rule_event_asset_creator_input_v1.py +1 -1
  146. seeq/sdk/models/column_rule_event_property_input_v1.py +1 -1
  147. seeq/sdk/models/column_rule_find_descendant_input_v1.py +1 -1
  148. seeq/sdk/models/column_rule_find_property_input_v1.py +1 -1
  149. seeq/sdk/models/column_rule_formula_creator_input_v1.py +1 -1
  150. seeq/sdk/models/column_rule_get_item_property_input_v1.py +1 -1
  151. seeq/sdk/models/column_rule_input_v1.py +1 -1
  152. seeq/sdk/models/column_rule_item_search_input_v1.py +1 -1
  153. seeq/sdk/models/column_rule_item_type_input_v1.py +1 -1
  154. seeq/sdk/models/column_rule_manager_input_v1.py +1 -1
  155. seeq/sdk/models/column_rule_output_v1.py +1 -1
  156. seeq/sdk/models/column_rule_path_input_v1.py +1 -1
  157. seeq/sdk/models/column_rule_path_search_input_v1.py +1 -1
  158. seeq/sdk/models/column_rule_preserve_existing_input_v1.py +1 -1
  159. seeq/sdk/models/column_rule_scalar_creator_input_v1.py +1 -1
  160. seeq/sdk/models/column_rule_search_ancestor_input_v1.py +1 -1
  161. seeq/sdk/models/column_rule_set_item_property_input_v1.py +1 -1
  162. seeq/sdk/models/column_rule_text_extractor_input_v1.py +1 -1
  163. seeq/sdk/models/column_rule_text_replacement_input_v1.py +1 -1
  164. seeq/sdk/models/column_rule_tree_path_creator_input_v1.py +1 -1
  165. seeq/sdk/models/comment_category_input_v1.py +1 -1
  166. seeq/sdk/models/comment_category_output_list_v1.py +3 -1
  167. seeq/sdk/models/comment_category_output_v1.py +1 -1
  168. seeq/sdk/models/complex_object_config_field_v1.py +96 -0
  169. seeq/sdk/models/composite_filter.py +176 -0
  170. seeq/sdk/models/condition_batch_input_v1.py +1 -1
  171. seeq/sdk/models/condition_input_v1.py +1 -1
  172. seeq/sdk/models/condition_monitor_input_v1.py +3 -3
  173. seeq/sdk/models/condition_monitor_metadata_output_list_v1.py +1 -1
  174. seeq/sdk/models/condition_monitor_metadata_output_v1.py +1 -1
  175. seeq/sdk/models/condition_monitor_notification_configuration_input_v1.py +1 -1
  176. seeq/sdk/models/condition_monitor_output_v1.py +1 -1
  177. seeq/sdk/models/condition_monitor_workbook_output_v1.py +1 -1
  178. seeq/sdk/models/condition_output_v1.py +1 -1
  179. seeq/sdk/models/condition_source_v1.py +148 -0
  180. seeq/sdk/models/condition_table_input_v1.py +292 -0
  181. seeq/sdk/models/condition_table_stat_input_for_direct_items_v1.py +156 -0
  182. seeq/sdk/models/condition_table_stat_input_for_table_v1.py +182 -0
  183. seeq/sdk/models/condition_update_input_v1.py +1 -1
  184. seeq/sdk/models/config_field_v1.py +32 -2
  185. seeq/sdk/models/configuration_input_v1.py +6 -2
  186. seeq/sdk/models/configuration_option_input_v1.py +9 -1
  187. seeq/sdk/models/configuration_option_output_simple_v1.py +9 -1
  188. seeq/sdk/models/configuration_option_output_v1.py +38 -2
  189. seeq/sdk/models/configuration_output_v1.py +1 -1
  190. seeq/sdk/models/configured_directives_output_v1.py +1 -1
  191. seeq/sdk/models/connection_input_v1.py +1 -1
  192. seeq/sdk/models/connection_output_v1.py +3 -3
  193. seeq/sdk/models/connection_status_output_v1.py +1 -1
  194. seeq/sdk/models/connection_status_v1.py +1 -1
  195. seeq/sdk/models/connections_output_v1.py +1 -1
  196. seeq/sdk/models/connector_input_v1.py +1 -1
  197. seeq/sdk/models/connector_output_v1.py +1 -1
  198. seeq/sdk/models/connectors_output_v1.py +1 -1
  199. seeq/sdk/models/content_input_v1.py +1 -1
  200. seeq/sdk/models/content_output_v1.py +1 -1
  201. seeq/sdk/models/content_with_metadata_list_output_v1.py +1 -1
  202. seeq/sdk/models/content_with_metadata_output_v1.py +1 -1
  203. seeq/sdk/models/context_comment_input_v1.py +30 -2
  204. seeq/sdk/models/context_comment_list_output_v1.py +126 -0
  205. seeq/sdk/models/context_comment_output_v1.py +56 -2
  206. seeq/sdk/models/context_condition_output_list_v1.py +124 -0
  207. seeq/sdk/models/context_condition_output_v1.py +156 -0
  208. seeq/sdk/models/context_id_input_v1.py +154 -0
  209. seeq/sdk/models/context_item.py +208 -0
  210. seeq/sdk/models/context_label_input_v1.py +1 -1
  211. seeq/sdk/models/context_label_list_output_v1.py +126 -0
  212. seeq/sdk/models/context_label_output_v1.py +84 -2
  213. seeq/sdk/models/context_label_with_id_input_v1.py +1 -1
  214. seeq/sdk/models/context_numeric_input_v1.py +1 -1
  215. seeq/sdk/models/context_numeric_list_output_v1.py +126 -0
  216. seeq/sdk/models/context_numeric_output_v1.py +56 -2
  217. seeq/sdk/models/context_opaque_input_v1.py +1 -1
  218. seeq/sdk/models/context_opaque_list_output_v1.py +126 -0
  219. seeq/sdk/models/context_opaque_output_v1.py +56 -2
  220. seeq/sdk/models/context_user.py +152 -0
  221. seeq/sdk/models/csv_datafile_output_v1.py +1 -1
  222. seeq/sdk/models/datafile_input_v1.py +1 -1
  223. seeq/sdk/models/datafile_output_v1.py +1 -1
  224. seeq/sdk/models/datafiles_csv_body.py +1 -1
  225. seeq/sdk/models/datasource_access_stats_v1.py +1 -1
  226. seeq/sdk/models/datasource_cache_clear_output_v1.py +1 -1
  227. seeq/sdk/models/datasource_clean_up_input_v1.py +1 -1
  228. seeq/sdk/models/datasource_clean_up_output_v1.py +1 -1
  229. seeq/sdk/models/datasource_input_v1.py +1 -1
  230. seeq/sdk/models/datasource_output_list_v1.py +1 -1
  231. seeq/sdk/models/datasource_output_v1.py +1 -1
  232. seeq/sdk/models/datasource_pair_output_v1.py +1 -1
  233. seeq/sdk/models/datasource_pairs_output_v1.py +1 -1
  234. seeq/sdk/models/datasource_preview_v1.py +1 -1
  235. seeq/sdk/models/datasource_statistics_v1.py +1 -1
  236. seeq/sdk/models/datasource_status_output_v1.py +1 -1
  237. seeq/sdk/models/datasource_status_v1.py +1 -1
  238. seeq/sdk/models/datasource_summary_status_output_v1.py +1 -1
  239. seeq/sdk/models/datasources_status_output_v1.py +1 -1
  240. seeq/sdk/models/date_range_input_v1.py +1 -1
  241. seeq/sdk/models/date_range_output_v1.py +1 -1
  242. seeq/sdk/models/debug_cache_block_output_v1.py +1 -1
  243. seeq/sdk/models/delete_column_error_output_v1.py +1 -1
  244. seeq/sdk/models/delete_rows_input_v1.py +4 -34
  245. seeq/sdk/models/delete_rows_output_v1.py +1 -1
  246. seeq/sdk/models/derived_feature_v1.py +1 -1
  247. seeq/sdk/models/detailed_meter_output_v1.py +1 -1
  248. seeq/sdk/models/detailed_timer_output_v1.py +1 -1
  249. seeq/sdk/models/direct_item_ids_source_v1.py +154 -0
  250. seeq/sdk/models/directive_input_v1.py +1 -1
  251. seeq/sdk/models/display_input_v1.py +1 -1
  252. seeq/sdk/models/display_output_list_v1.py +1 -1
  253. seeq/sdk/models/display_output_v1.py +1 -1
  254. seeq/sdk/models/display_template_input_v1.py +1 -1
  255. seeq/sdk/models/display_template_output_list_v1.py +1 -1
  256. seeq/sdk/models/display_template_output_v1.py +1 -1
  257. seeq/sdk/models/document_backup_output_v1.py +1 -1
  258. seeq/sdk/models/double_config_field_v1.py +1 -1
  259. seeq/sdk/models/duration_config_field_v1.py +1 -1
  260. seeq/sdk/models/email_notification_recipient_output_v1.py +9 -1
  261. seeq/sdk/models/emailer_configuration_output_v1.py +1 -1
  262. seeq/sdk/models/enum_config_field_v1.py +1 -1
  263. seeq/sdk/models/export_item_v1.py +1 -1
  264. seeq/sdk/models/export_items_output_v1.py +1 -1
  265. seeq/sdk/models/export_items_v1.py +1 -1
  266. seeq/sdk/models/export_preview_list_v1.py +1 -1
  267. seeq/sdk/models/export_preview_v1.py +1 -1
  268. seeq/sdk/models/feature_argument_output_v1.py +1 -1
  269. seeq/sdk/models/feature_output_v1.py +1 -1
  270. seeq/sdk/models/feature_rule_v1.py +28 -2
  271. seeq/sdk/models/feature_value_output_v1.py +1 -1
  272. seeq/sdk/models/filter.py +174 -0
  273. seeq/sdk/models/fixed_list_search_v1.py +30 -2
  274. seeq/sdk/models/folded_stack_node_v1.py +1 -1
  275. seeq/sdk/models/folder_input_v1.py +1 -1
  276. seeq/sdk/models/folder_navigation_output_v1.py +1 -1
  277. seeq/sdk/models/folder_output_v1.py +1 -1
  278. seeq/sdk/models/folder_search_results_v1.py +274 -0
  279. seeq/sdk/models/formula_compile_input_v1.py +1 -1
  280. seeq/sdk/models/formula_compile_output_v1.py +1 -1
  281. seeq/sdk/models/formula_compiler_error_output_v1.py +1 -1
  282. seeq/sdk/models/formula_dependency_input_v1.py +1 -1
  283. seeq/sdk/models/formula_doc_example_input_v1.py +1 -1
  284. seeq/sdk/models/formula_doc_example_list_input_v1.py +1 -1
  285. seeq/sdk/models/formula_doc_input_v1.py +1 -1
  286. seeq/sdk/models/formula_doc_keyword_list_input_v1.py +1 -1
  287. seeq/sdk/models/formula_doc_output_v1.py +1 -1
  288. seeq/sdk/models/formula_doc_summaries_output_v1.py +1 -1
  289. seeq/sdk/models/formula_doc_summary_output_v1.py +1 -1
  290. seeq/sdk/models/formula_error_output_v1.py +1 -1
  291. seeq/sdk/models/formula_example_output_v1.py +1 -1
  292. seeq/sdk/models/formula_generic_output_v1.py +1 -1
  293. seeq/sdk/models/formula_item_input_v1.py +1 -1
  294. seeq/sdk/models/formula_item_output_v1.py +1 -1
  295. seeq/sdk/models/formula_log_entry.py +1 -1
  296. seeq/sdk/models/formula_log_entry_details.py +1 -1
  297. seeq/sdk/models/formula_log_v1.py +1 -1
  298. seeq/sdk/models/formula_package_import_input_v1.py +1 -1
  299. seeq/sdk/models/formula_package_import_output_v1.py +1 -1
  300. seeq/sdk/models/formula_package_input_v1.py +1 -1
  301. seeq/sdk/models/formula_package_output_v1.py +1 -1
  302. seeq/sdk/models/formula_parameter_input_v1.py +1 -1
  303. seeq/sdk/models/formula_parameter_output_v1.py +1 -1
  304. seeq/sdk/models/formula_run_input_v1.py +1 -1
  305. seeq/sdk/models/formula_run_output_v1.py +1 -1
  306. seeq/sdk/models/formula_token.py +1 -1
  307. seeq/sdk/models/formula_update_input_v1.py +1 -1
  308. seeq/sdk/models/formula_upgrade_change_v1.py +1 -1
  309. seeq/sdk/models/formula_upgrade_output_v1.py +1 -1
  310. seeq/sdk/models/function_input_v1.py +1 -1
  311. seeq/sdk/models/function_parameter_output_v1.py +1 -1
  312. seeq/sdk/models/function_variant_output_v1.py +1 -1
  313. seeq/sdk/models/gauge_datum_v1.py +1 -1
  314. seeq/sdk/models/generic_table_output_v1.py +1 -1
  315. seeq/sdk/models/get_add_on_tools_output_v1.py +1 -1
  316. seeq/sdk/models/get_all_context_input_v1.py +230 -0
  317. seeq/sdk/models/get_channels_output_v1.py +1 -1
  318. seeq/sdk/models/get_condition_monitor_items_output_v1.py +1 -1
  319. seeq/sdk/models/get_content_items_output_v1.py +1 -1
  320. seeq/sdk/models/get_context_condition_input_v1.py +126 -0
  321. seeq/sdk/models/get_context_input_v1.py +152 -0
  322. seeq/sdk/models/get_date_ranges_output_v1.py +1 -1
  323. seeq/sdk/models/get_jobs_output_v1.py +1 -1
  324. seeq/sdk/models/get_metrics_output_v1.py +1 -1
  325. seeq/sdk/models/get_organizations_output_v1.py +294 -0
  326. seeq/sdk/models/get_projects_output_v1.py +1 -1
  327. seeq/sdk/models/get_request_output_v1.py +1 -1
  328. seeq/sdk/models/get_requests_output_v1.py +3 -1
  329. seeq/sdk/models/get_sample_output_v1.py +1 -1
  330. seeq/sdk/models/get_samples_output_v1.py +1 -1
  331. seeq/sdk/models/get_signal_monitor_items_output_v1.py +1 -1
  332. seeq/sdk/models/get_signals_output_v1.py +1 -1
  333. seeq/sdk/models/graph_ql_input_v1.py +1 -1
  334. seeq/sdk/models/graph_ql_output_v1.py +1 -1
  335. seeq/sdk/models/hierarchy_input_v1.py +1 -1
  336. seeq/sdk/models/hierarchy_node_output_list_v1.py +1 -1
  337. seeq/sdk/models/hierarchy_node_output_v1.py +1 -1
  338. seeq/sdk/models/hierarchy_node_with_path_output_v1.py +1 -1
  339. seeq/sdk/models/hierarchy_output_list_v1.py +1 -1
  340. seeq/sdk/models/hierarchy_output_v1.py +20 -20
  341. seeq/sdk/models/hierarchy_search_v1.py +30 -2
  342. seeq/sdk/models/hierarchy_validation_output_v1.py +1 -1
  343. seeq/sdk/models/id_images_body.py +1 -1
  344. seeq/sdk/models/identity_mapping_list_v1.py +1 -1
  345. seeq/sdk/models/identity_mapping_v1.py +1 -1
  346. seeq/sdk/models/identity_preview_list_v1.py +1 -1
  347. seeq/sdk/models/identity_preview_v1.py +56 -2
  348. seeq/sdk/models/import_table_csv_output_v1.py +5 -1
  349. seeq/sdk/models/indexing_parameters_input_v1.py +1 -1
  350. seeq/sdk/models/input_feature_v1.py +1 -1
  351. seeq/sdk/models/installer_output_v1.py +1 -1
  352. seeq/sdk/models/instance_output_mapping_v1.py +58 -4
  353. seeq/sdk/models/instance_output_paginated_list_v1.py +1 -1
  354. seeq/sdk/models/instance_output_v1.py +86 -2
  355. seeq/sdk/models/instance_retired_output_v1.py +152 -0
  356. seeq/sdk/models/interval_v1.py +1 -1
  357. seeq/sdk/models/invalid_swap_out_v1.py +1 -1
  358. seeq/sdk/models/issue_summary_output_v1.py +1 -1
  359. seeq/sdk/models/item_batch_output_v1.py +1 -1
  360. seeq/sdk/models/item_dependency_output_v1.py +1 -1
  361. seeq/sdk/models/item_finder_input_v1.py +30 -2
  362. seeq/sdk/models/item_finder_output_list_v1.py +1 -1
  363. seeq/sdk/models/item_finder_output_v1.py +1 -1
  364. seeq/sdk/models/item_finder_searches_input_v1.py +32 -4
  365. seeq/sdk/models/item_finder_searches_output_v1.py +1 -1
  366. seeq/sdk/models/item_id_list_input_v1.py +1 -1
  367. seeq/sdk/models/item_metadata.py +1 -1
  368. seeq/sdk/models/item_output_v1.py +1 -1
  369. seeq/sdk/models/item_parameter_of_output_v1.py +1 -1
  370. seeq/sdk/models/item_preview_list_v1.py +1 -1
  371. seeq/sdk/models/item_preview_v1.py +1 -1
  372. seeq/sdk/models/item_preview_with_assets_v1.py +1 -1
  373. seeq/sdk/models/item_search_input_v1.py +1 -1
  374. seeq/sdk/models/item_search_preview_list_v1.py +1 -1
  375. seeq/sdk/models/item_search_preview_paginated_list_v1.py +1 -1
  376. seeq/sdk/models/item_search_preview_v1.py +3 -1
  377. seeq/sdk/models/item_swap_result_output_v1.py +1 -1
  378. seeq/sdk/models/item_update_output_v1.py +1 -1
  379. seeq/sdk/models/item_user_attributes_input_v1.py +1 -1
  380. seeq/sdk/models/item_user_attributes_output_v1.py +1 -1
  381. seeq/sdk/models/item_with_swap_pairs_v1.py +1 -1
  382. seeq/sdk/models/jira_attachment.py +1 -1
  383. seeq/sdk/models/jira_attachment_media_type.py +1 -1
  384. seeq/sdk/models/job_accepted_output_v1.py +1 -1
  385. seeq/sdk/models/job_output_v1.py +1 -1
  386. seeq/sdk/models/json_backup_output_v1.py +1 -1
  387. seeq/sdk/models/label_category_input_v1.py +5 -1
  388. seeq/sdk/models/label_category_output_list_v1.py +3 -1
  389. seeq/sdk/models/label_category_output_v1.py +1 -1
  390. seeq/sdk/models/label_hierarchy_input_v1.py +208 -0
  391. seeq/sdk/models/label_hierarchy_output_list_v1.py +126 -0
  392. seeq/sdk/models/label_hierarchy_output_v1.py +246 -0
  393. seeq/sdk/models/label_input_v1.py +1 -1
  394. seeq/sdk/models/label_output_list_v1.py +3 -1
  395. seeq/sdk/models/label_output_v1.py +1 -1
  396. seeq/sdk/models/last_run_state_output_v1.py +19 -1
  397. seeq/sdk/models/license_importer_output_v1.py +1 -1
  398. seeq/sdk/models/license_status_output_v1.py +1 -1
  399. seeq/sdk/models/licensed_feature_status_output_v1.py +1 -1
  400. seeq/sdk/models/list_config_field_v1.py +28 -2
  401. seeq/sdk/models/lock_error_output_v1.py +1 -1
  402. seeq/sdk/models/lock_error_path_output_v1.py +1 -1
  403. seeq/sdk/models/lock_errors_output_v1.py +1 -1
  404. seeq/sdk/models/lock_item_output_v1.py +1 -1
  405. seeq/sdk/models/locked_item_list_output_v1.py +1 -1
  406. seeq/sdk/models/log_message.py +155 -5
  407. seeq/sdk/models/log_message_input_v1.py +272 -0
  408. seeq/sdk/models/log_message_output_v1.py +300 -0
  409. seeq/sdk/models/long_config_field_v1.py +1 -1
  410. seeq/sdk/models/manual_run_input_v1.py +1 -1
  411. seeq/sdk/models/markdown_item_input_v1.py +1 -1
  412. seeq/sdk/models/markdown_item_list_v1.py +1 -1
  413. seeq/sdk/models/markdown_item_output_v1.py +1 -1
  414. seeq/sdk/models/markdown_link_upload_output_v1.py +1 -1
  415. seeq/sdk/models/markdown_links_body.py +1 -1
  416. seeq/sdk/models/materialized_table_header_v1.py +1 -1
  417. seeq/sdk/models/materialized_table_source_v1.py +212 -0
  418. seeq/sdk/models/materialized_table_v1.py +1 -1
  419. seeq/sdk/models/mention_input_v1.py +272 -0
  420. seeq/sdk/models/meter_datum_v1.py +1 -1
  421. seeq/sdk/models/migrate_editor_input_v1.py +1 -1
  422. seeq/sdk/models/model_application_error_output_v1.py +264 -0
  423. seeq/sdk/models/model_application_input_v1.py +1 -1
  424. seeq/sdk/models/model_application_mapping_v1.py +30 -2
  425. seeq/sdk/models/model_boolean_constant_rule_v1.py +124 -0
  426. seeq/sdk/models/model_derived_column_names_input_v1.py +9 -1
  427. seeq/sdk/models/model_formula_creator_rule_v1.py +1 -1
  428. seeq/sdk/models/model_from_ids_input_v1.py +1 -1
  429. seeq/sdk/models/model_output_list_v1.py +1 -1
  430. seeq/sdk/models/model_output_v1.py +32 -4
  431. seeq/sdk/models/model_rule_input_v1_list_string.py +1 -1
  432. seeq/sdk/models/model_rule_input_v1_object.py +1 -1
  433. seeq/sdk/models/model_rule_input_v1_string.py +1 -1
  434. seeq/sdk/models/model_rule_input_v1_uuid.py +1 -1
  435. seeq/sdk/models/model_scalar_creator_rule_v1.py +1 -1
  436. seeq/sdk/models/model_table_application_output_v1.py +1 -1
  437. seeq/sdk/models/model_table_applications_output_list_v1.py +1 -1
  438. seeq/sdk/models/model_table_applications_output_v1.py +30 -2
  439. seeq/sdk/models/model_v1.py +1 -1
  440. seeq/sdk/models/monitor_definition_output_v1.py +1 -1
  441. seeq/sdk/models/monitor_definitions_output_v1.py +1 -1
  442. seeq/sdk/models/monitor_input_v1.py +1 -1
  443. seeq/sdk/models/monitor_output_v1.py +1 -1
  444. seeq/sdk/models/monitor_values.py +1 -1
  445. seeq/sdk/models/monitored_condition_output_list_v1.py +9 -1
  446. seeq/sdk/models/monitored_condition_output_v1.py +13 -1
  447. seeq/sdk/models/monitored_signal_last_run_state_output_v1.py +15 -1
  448. seeq/sdk/models/monitored_signal_output_list_v1.py +1 -1
  449. seeq/sdk/models/monitored_signal_output_v1.py +7 -1
  450. seeq/sdk/models/monitors_output_v1.py +1 -1
  451. seeq/sdk/models/notifiable_report_output_list_v1.py +1 -1
  452. seeq/sdk/models/notifiable_report_output_v1.py +1 -1
  453. seeq/sdk/models/notification_configuration_output_v1.py +1 -1
  454. seeq/sdk/models/numeric_description_input_v1.py +1 -1
  455. seeq/sdk/models/numeric_description_output_list_v1.py +3 -1
  456. seeq/sdk/models/numeric_description_output_v1.py +1 -1
  457. seeq/sdk/models/one_off_model_application_input_v1.py +1 -1
  458. seeq/sdk/models/optional_report_input_v1.py +1 -1
  459. seeq/sdk/models/organization_input_v1.py +182 -0
  460. seeq/sdk/models/organization_output_v1.py +544 -0
  461. seeq/sdk/models/parameter_doc_output_v1.py +1 -1
  462. seeq/sdk/models/password_reset_input.py +1 -1
  463. seeq/sdk/models/permissions_v1.py +1 -1
  464. seeq/sdk/models/plugin_output_list_v1.py +1 -1
  465. seeq/sdk/models/plugin_output_v1.py +1 -1
  466. seeq/sdk/models/plugins_body.py +1 -1
  467. seeq/sdk/models/pre_cached_condition_capsule_property_info_v1.py +1 -1
  468. seeq/sdk/models/pre_provision_input_v1.py +1 -1
  469. seeq/sdk/models/pre_provision_output_v1.py +1 -1
  470. seeq/sdk/models/precached_item_output_v1.py +1 -1
  471. seeq/sdk/models/precached_items_output_v1.py +1 -1
  472. seeq/sdk/models/priority_v1.py +1 -1
  473. seeq/sdk/models/progress_information_output_v1.py +1 -1
  474. seeq/sdk/models/project_input_v1.py +1 -1
  475. seeq/sdk/models/project_output_v1.py +1 -1
  476. seeq/sdk/models/properties_for_item_uuid_column_input_v1.py +156 -0
  477. seeq/sdk/models/property_filter_input_v1.py +1 -1
  478. seeq/sdk/models/property_href_output_v1.py +1 -1
  479. seeq/sdk/models/property_input_v1.py +1 -1
  480. seeq/sdk/models/property_output_v1.py +1 -1
  481. seeq/sdk/models/property_search_v1.py +30 -2
  482. seeq/sdk/models/provision_input_v1.py +1 -1
  483. seeq/sdk/models/put_asset_input_v1.py +1 -1
  484. seeq/sdk/models/put_scalar_input_v1.py +1 -1
  485. seeq/sdk/models/put_scalars_input_v1.py +1 -1
  486. seeq/sdk/models/put_signals_input_v1.py +1 -1
  487. seeq/sdk/models/put_user_groups_input_v1.py +1 -1
  488. seeq/sdk/models/recompute_table_input_v1.py +124 -0
  489. seeq/sdk/models/recompute_table_output_v1.py +124 -0
  490. seeq/sdk/models/referenced_input_item_v1.py +1 -1
  491. seeq/sdk/models/referenced_items_output_v1.py +1 -1
  492. seeq/sdk/models/referenced_output_item_v1.py +1 -1
  493. seeq/sdk/models/regex_config_field_v1.py +1 -1
  494. seeq/sdk/models/regression_output_v1.py +1 -1
  495. seeq/sdk/models/release_notes_output_v1.py +1 -1
  496. seeq/sdk/models/remote_agent_directives_output_v1.py +1 -1
  497. seeq/sdk/models/remote_agent_status_input_v1.py +1 -1
  498. seeq/sdk/models/remote_agent_status_output_v1.py +1 -1
  499. seeq/sdk/models/report_input_item_v1.py +1 -1
  500. seeq/sdk/models/report_input_v1.py +1 -1
  501. seeq/sdk/models/report_notification_configuration_input_v1.py +1 -1
  502. seeq/sdk/models/report_template_input_v1.py +1 -1
  503. seeq/sdk/models/report_template_output_v1.py +1 -1
  504. seeq/sdk/models/request_output_v1.py +1 -1
  505. seeq/sdk/models/request_password_reset_input.py +1 -1
  506. seeq/sdk/models/row_id.py +1 -1
  507. seeq/sdk/models/row_id_input_list_v1.py +1 -1
  508. seeq/sdk/models/row_id_input_v1.py +1 -1
  509. seeq/sdk/models/row_rules_result_v1.py +1 -1
  510. seeq/sdk/models/rules_result_message_v1.py +1 -1
  511. seeq/sdk/models/rules_result_v1.py +1 -1
  512. seeq/sdk/models/run_condition_monitor_job_input_v1.py +1 -1
  513. seeq/sdk/models/sample_input_v1.py +1 -1
  514. seeq/sdk/models/sample_output_v1.py +1 -1
  515. seeq/sdk/models/samples_input_v1.py +1 -1
  516. seeq/sdk/models/samples_output_v1.py +1 -1
  517. seeq/sdk/models/samples_overwrite_input_v1.py +1 -1
  518. seeq/sdk/models/scalar_evaluate_output_v1.py +1 -1
  519. seeq/sdk/models/scalar_input_v1.py +1 -1
  520. seeq/sdk/models/scalar_property_v1.py +1 -1
  521. seeq/sdk/models/scalar_value_output_v1.py +1 -1
  522. seeq/sdk/models/scale_across_tree_output_v1.py +1 -1
  523. seeq/sdk/models/scaling_table_uuid_column_search_v1.py +30 -2
  524. seeq/sdk/models/schedulable_admin_list_output_v1.py +1 -1
  525. seeq/sdk/models/schedulable_admin_output_v1.py +1 -1
  526. seeq/sdk/models/schedulable_summary_day_output_v1.py +1 -1
  527. seeq/sdk/models/schedulable_summary_week_output_v1.py +1 -1
  528. seeq/sdk/models/schedulable_workbook_output_v1.py +13 -1
  529. seeq/sdk/models/schedule_input_v1.py +1 -1
  530. seeq/sdk/models/schedule_output_v1.py +1 -1
  531. seeq/sdk/models/scheduled_notebook_input_v1.py +22 -2
  532. seeq/sdk/models/scheduled_notebook_list_output_v1.py +1 -1
  533. seeq/sdk/models/scheduled_notebook_output_v1.py +1 -1
  534. seeq/sdk/models/scheduled_notebook_result_input_v1.py +1 -1
  535. seeq/sdk/models/scim_token_input_v1.py +1 -1
  536. seeq/sdk/models/scim_token_output_v1.py +1 -1
  537. seeq/sdk/models/screenshot_output_v1.py +1 -1
  538. seeq/sdk/models/secret_config_field_v1.py +1 -1
  539. seeq/sdk/models/secret_status.py +1 -1
  540. seeq/sdk/models/see_also_doc_output_v1.py +1 -1
  541. seeq/sdk/models/send_email_attachment_v1.py +1 -1
  542. seeq/sdk/models/send_email_contact_v1.py +1 -1
  543. seeq/sdk/models/send_email_input_v1.py +1 -1
  544. seeq/sdk/models/sent_email_attachment_output_v1.py +1 -1
  545. seeq/sdk/models/sent_email_output_v1.py +1 -1
  546. seeq/sdk/models/sent_emails_list_output_v1.py +1 -1
  547. seeq/sdk/models/server_build_info_output_v1.py +1 -1
  548. seeq/sdk/models/server_load_output_v1.py +1 -1
  549. seeq/sdk/models/server_spec_output_v1.py +1 -1
  550. seeq/sdk/models/server_status_output_v1.py +1 -1
  551. seeq/sdk/models/set_trust_input_v1.py +124 -0
  552. seeq/sdk/models/shared_item_information.py +180 -0
  553. seeq/sdk/models/signal_input_v1.py +1 -1
  554. seeq/sdk/models/signal_monitor_input_v1.py +3 -1
  555. seeq/sdk/models/signal_monitor_metadata_output_list_v1.py +1 -1
  556. seeq/sdk/models/signal_monitor_metadata_output_v1.py +1 -1
  557. seeq/sdk/models/signal_monitor_output_v1.py +1 -1
  558. seeq/sdk/models/signal_monitor_workbook_output_v1.py +1 -1
  559. seeq/sdk/models/signal_output_v1.py +1 -1
  560. seeq/sdk/models/signal_with_id_input_v1.py +1 -1
  561. seeq/sdk/models/simple_filter.py +152 -0
  562. seeq/sdk/models/status_message.py +3 -1
  563. seeq/sdk/models/status_message_base.py +1 -1
  564. seeq/sdk/models/store_secret_input_v1.py +1 -1
  565. seeq/sdk/models/stored_table_column_input_v1.py +320 -0
  566. seeq/sdk/models/stored_table_column_output_v1.py +388 -0
  567. seeq/sdk/models/stored_table_csv_input_v1.py +330 -0
  568. seeq/sdk/models/stored_table_delete_rows_input_v1.py +126 -0
  569. seeq/sdk/models/stored_table_output_v1.py +522 -0
  570. seeq/sdk/models/stored_table_search_v1.py +274 -0
  571. seeq/sdk/models/storedtables_csv_body.py +126 -0
  572. seeq/sdk/models/string_config_field_v1.py +1 -1
  573. seeq/sdk/models/subscription_input_v1.py +1 -1
  574. seeq/sdk/models/subscription_output_v1.py +1 -1
  575. seeq/sdk/models/subscription_update_input_v1.py +1 -1
  576. seeq/sdk/models/support_request_input_v1.py +1 -1
  577. seeq/sdk/models/support_request_output_v1.py +1 -1
  578. seeq/sdk/models/supported_units_output_v1.py +1 -1
  579. seeq/sdk/models/suppress_condition_input_v1.py +1 -1
  580. seeq/sdk/models/suppressed_condition_input_v1.py +1 -1
  581. seeq/sdk/models/suppressed_condition_output_v1.py +1 -1
  582. seeq/sdk/models/swap_across_assets_search_v1.py +30 -2
  583. seeq/sdk/models/swap_input_v1.py +1 -1
  584. seeq/sdk/models/swap_option_list_v1.py +1 -1
  585. seeq/sdk/models/swap_option_v1.py +1 -1
  586. seeq/sdk/models/swap_output_v1.py +1 -1
  587. seeq/sdk/models/sync_progress.py +1 -1
  588. seeq/sdk/models/sync_progress_output_v1.py +1 -1
  589. seeq/sdk/models/system_license_body.py +1 -1
  590. seeq/sdk/models/table_application_retired_output_v1.py +152 -0
  591. seeq/sdk/models/table_column_output_v1.py +1 -1
  592. seeq/sdk/models/table_compute_output_v1.py +1 -1
  593. seeq/sdk/models/table_definition_csv_input_v1.py +5 -1
  594. seeq/sdk/models/table_definition_csv_publish_rows_input_v1.py +1 -1
  595. seeq/sdk/models/table_definition_csv_publish_rows_output_v1.py +9 -1
  596. seeq/sdk/models/table_definition_csv_update_input_v1.py +5 -1
  597. seeq/sdk/models/table_definition_input_v1.py +1 -1
  598. seeq/sdk/models/table_definition_output_list_v1.py +1 -1
  599. seeq/sdk/models/table_definition_output_v1.py +30 -2
  600. seeq/sdk/models/table_definition_preview_input_v1.py +30 -2
  601. seeq/sdk/models/table_definition_preview_output_v1.py +1 -1
  602. seeq/sdk/models/table_definition_update_input_v1.py +30 -2
  603. seeq/sdk/models/table_model_application_input_v1.py +7 -1
  604. seeq/sdk/models/table_property_filter_input_v1.py +212 -0
  605. seeq/sdk/models/table_result_output_v1.py +208 -0
  606. seeq/sdk/models/tabledefinitions_csv_body.py +1 -1
  607. seeq/sdk/models/threshold_metric_input_v1.py +1 -1
  608. seeq/sdk/models/threshold_metric_output_v1.py +1 -1
  609. seeq/sdk/models/threshold_output_v1.py +1 -1
  610. seeq/sdk/models/time_interval.py +1 -1
  611. seeq/sdk/models/timer_datum_v1.py +1 -1
  612. seeq/sdk/models/topic_sandbox_input_v1.py +154 -0
  613. seeq/sdk/models/tree_item_output_v1.py +1 -1
  614. seeq/sdk/models/treemap_item_output_v1.py +1 -1
  615. seeq/sdk/models/treemap_output_v1.py +1 -1
  616. seeq/sdk/models/units_of_measure_batch_input_v1.py +1 -1
  617. seeq/sdk/models/units_of_measure_item_v1.py +1 -1
  618. seeq/sdk/models/units_of_measure_output_v1.py +1 -1
  619. seeq/sdk/models/unsubscribe_output_v1.py +1 -1
  620. seeq/sdk/models/updated_rows_output_v1.py +124 -0
  621. seeq/sdk/models/usage_output_list_v1.py +1 -1
  622. seeq/sdk/models/usage_output_v1.py +1 -1
  623. seeq/sdk/models/usage_types_v1.py +1 -1
  624. seeq/sdk/models/user_group_input_v1.py +1 -1
  625. seeq/sdk/models/user_group_output_v1.py +30 -2
  626. seeq/sdk/models/user_group_with_id_input_v1.py +1 -1
  627. seeq/sdk/models/user_input_v1.py +1 -1
  628. seeq/sdk/models/user_output_list_v1.py +1 -1
  629. seeq/sdk/models/user_output_v1.py +28 -2
  630. seeq/sdk/models/user_password_input_v1.py +1 -1
  631. seeq/sdk/models/validate_cron_list_input_v1.py +1 -1
  632. seeq/sdk/models/validate_cron_list_output_v1.py +1 -1
  633. seeq/sdk/models/validate_cron_output_v1.py +1 -1
  634. seeq/sdk/models/value.py +122 -0
  635. seeq/sdk/models/value_filter.py +178 -0
  636. seeq/sdk/models/version_history_output_list_v1.py +1 -1
  637. seeq/sdk/models/version_history_output_v1.py +1 -1
  638. seeq/sdk/models/version_input_v1.py +1 -1
  639. seeq/sdk/models/version_output_v1.py +1 -1
  640. seeq/sdk/models/version_source_output_v1.py +1 -1
  641. seeq/sdk/models/view_column_filter_input_v1.py +1 -1
  642. seeq/sdk/models/view_column_filter_output_v1.py +1 -1
  643. seeq/sdk/models/view_column_input_v1.py +1 -1
  644. seeq/sdk/models/view_column_output_v1.py +1 -1
  645. seeq/sdk/models/workbench_item_output_list_v1.py +1 -1
  646. seeq/sdk/models/workbench_search_result_preview_v1.py +30 -2
  647. seeq/sdk/models/workbook_input_v1.py +1 -1
  648. seeq/sdk/models/workbook_output_list_v1.py +1 -1
  649. seeq/sdk/models/workbook_output_v1.py +1 -1
  650. seeq/sdk/models/workbook_owner_output_v1.py +5 -1
  651. seeq/sdk/models/worksheet_input_v1.py +1 -1
  652. seeq/sdk/models/worksheet_output_list_v1.py +1 -1
  653. seeq/sdk/models/worksheet_output_v1.py +1 -1
  654. seeq/sdk/models/workstep_chronology_entry_v1.py +1 -1
  655. seeq/sdk/models/workstep_chronology_output_v1.py +1 -1
  656. seeq/sdk/models/workstep_input_v1.py +1 -1
  657. seeq/sdk/models/workstep_output_v1.py +1 -1
  658. seeq/sdk/rest.py +2 -2
  659. seeq-66.93.0.20260109.dist-info/METADATA +520 -0
  660. seeq-66.93.0.20260109.dist-info/RECORD +662 -0
  661. {seeq-66.68.0.20251029.dist-info → seeq-66.93.0.20260109.dist-info}/WHEEL +1 -1
  662. seeq-66.68.0.20251029.dist-info/LICENSE +0 -415
  663. seeq-66.68.0.20251029.dist-info/METADATA +0 -105
  664. seeq-66.68.0.20251029.dist-info/RECORD +0 -602
  665. {seeq-66.68.0.20251029.dist-info → seeq-66.93.0.20260109.dist-info}/top_level.txt +0 -0
@@ -5,7 +5,7 @@
5
5
 
6
6
  No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
7
7
 
8
- OpenAPI spec version: 66.68.0-v202510291017-CD
8
+ OpenAPI spec version: 66.93.0-v202601090429-CD
9
9
 
10
10
  Generated by: https://github.com/swagger-api/swagger-codegen.git
11
11
  """
@@ -2384,51 +2384,717 @@ class ContextApi(object):
2384
2384
  _request_timeout=params.get('_request_timeout'),
2385
2385
  collection_formats=collection_formats)
2386
2386
 
2387
+ def get_all_context(self, **kwargs):
2388
+ """
2389
+ Fetch all context types for specified item IDs
2390
+ This method makes a synchronous HTTP request by default. To make an
2391
+ asynchronous HTTP request, please define a `callback` function
2392
+ to be invoked when receiving the response.
2393
+ >>> def callback_function(response):
2394
+ >>> pprint(response)
2395
+ >>>
2396
+ >>> thread = api.get_all_context(body=body_value, callback=callback_function)
2397
+
2398
+ :param callback function: The callback function
2399
+ for asynchronous request. (optional)
2400
+ :param GetAllContextInputV1 body: (required)
2401
+ :return: AllContextOutputV1
2402
+ If the method is called asynchronously,
2403
+ returns the request thread.
2404
+ :rtype: AllContextOutputV1
2405
+ """
2406
+ kwargs['_return_http_data_only'] = True
2407
+ if kwargs.get('callback'):
2408
+ return self.get_all_context_with_http_info(**kwargs)
2409
+ else:
2410
+ (data) = self.get_all_context_with_http_info(**kwargs)
2411
+ return data
2412
+
2413
+ def get_all_context_with_http_info(self, **kwargs):
2414
+ """
2415
+ Fetch all context types for specified item IDs
2416
+ This method makes a synchronous HTTP request by default. To make an
2417
+ asynchronous HTTP request, please define a `callback` function
2418
+ to be invoked when receiving the response.
2419
+ >>> def callback_function(response):
2420
+ >>> pprint(response)
2421
+ >>>
2422
+ >>> thread = api.get_all_context_with_http_info(body=body_value, callback=callback_function)
2423
+
2424
+ :param callback function: The callback function
2425
+ for asynchronous request. (optional)
2426
+ :param GetAllContextInputV1 body: (required)
2427
+ :return: AllContextOutputV1
2428
+ If the method is called asynchronously,
2429
+ returns the request thread.
2430
+ :rtype: AllContextOutputV1
2431
+ """
2432
+
2433
+ all_params = ['body']
2434
+ all_params.append('callback')
2435
+ all_params.append('_return_http_data_only')
2436
+ all_params.append('_preload_content')
2437
+ all_params.append('_request_timeout')
2438
+ all_params.append('_response_type')
2439
+ all_params.append('_custom_headers')
2440
+
2441
+ params = locals()
2442
+ for key, val in iteritems(params['kwargs']):
2443
+ if key not in all_params:
2444
+ raise TypeError(
2445
+ "Got an unexpected keyword argument '%s'"
2446
+ " to method get_all_context" % key
2447
+ )
2448
+ params[key] = val
2449
+ del params['kwargs']
2450
+ # verify the required parameter 'body' is set
2451
+ if ('body' not in params) or (params['body'] is None):
2452
+ raise ValueError("Missing the required parameter `body` when calling `get_all_context`")
2453
+
2454
+
2455
+ collection_formats = {}
2456
+
2457
+ path_params = {}
2458
+
2459
+ query_params = []
2460
+
2461
+ header_params = {}
2462
+
2463
+ for key, value in params.get('_custom_headers', {}).items():
2464
+ header_params[key] = value
2465
+
2466
+
2467
+ form_params = []
2468
+ local_var_files = {}
2469
+
2470
+ body_params = None
2471
+ if 'body' in params:
2472
+ body_params = params['body']
2473
+ # HTTP header `Accept`
2474
+ header_params['Accept'] = self.api_client.\
2475
+ select_header_accept(['application/vnd.seeq.v1+json'])
2476
+
2477
+ # HTTP header `Content-Type`
2478
+ header_params['Content-Type'] = self.api_client.\
2479
+ select_header_content_type(['application/vnd.seeq.v1+json', ])
2480
+
2481
+ # Authentication setting
2482
+ auth_settings = ['api_key']
2483
+
2484
+ return self.api_client.call_api('/context/search/all', 'POST',
2485
+ path_params,
2486
+ query_params,
2487
+ header_params,
2488
+ body=body_params,
2489
+ post_params=form_params,
2490
+ files=local_var_files,
2491
+ response_type=params.get('_response_type', 'AllContextOutputV1'),
2492
+ auth_settings=auth_settings,
2493
+ callback=params.get('callback'),
2494
+ _return_http_data_only=params.get('_return_http_data_only'),
2495
+ _preload_content=params.get('_preload_content', True),
2496
+ _request_timeout=params.get('_request_timeout'),
2497
+ collection_formats=collection_formats)
2498
+
2387
2499
  def get_all_numeric_descriptions(self, **kwargs):
2388
2500
  """
2389
- Get all numeric descriptions
2501
+ Get all numeric descriptions
2502
+ This method makes a synchronous HTTP request by default. To make an
2503
+ asynchronous HTTP request, please define a `callback` function
2504
+ to be invoked when receiving the response.
2505
+ >>> def callback_function(response):
2506
+ >>> pprint(response)
2507
+ >>>
2508
+ >>> thread = api.get_all_numeric_descriptions(callback=callback_function)
2509
+
2510
+ :param callback function: The callback function
2511
+ for asynchronous request. (optional)
2512
+ :return: NumericDescriptionOutputListV1
2513
+ If the method is called asynchronously,
2514
+ returns the request thread.
2515
+ :rtype: NumericDescriptionOutputListV1
2516
+ """
2517
+ kwargs['_return_http_data_only'] = True
2518
+ if kwargs.get('callback'):
2519
+ return self.get_all_numeric_descriptions_with_http_info(**kwargs)
2520
+ else:
2521
+ (data) = self.get_all_numeric_descriptions_with_http_info(**kwargs)
2522
+ return data
2523
+
2524
+ def get_all_numeric_descriptions_with_http_info(self, **kwargs):
2525
+ """
2526
+ Get all numeric descriptions
2527
+ This method makes a synchronous HTTP request by default. To make an
2528
+ asynchronous HTTP request, please define a `callback` function
2529
+ to be invoked when receiving the response.
2530
+ >>> def callback_function(response):
2531
+ >>> pprint(response)
2532
+ >>>
2533
+ >>> thread = api.get_all_numeric_descriptions_with_http_info(callback=callback_function)
2534
+
2535
+ :param callback function: The callback function
2536
+ for asynchronous request. (optional)
2537
+ :return: NumericDescriptionOutputListV1
2538
+ If the method is called asynchronously,
2539
+ returns the request thread.
2540
+ :rtype: NumericDescriptionOutputListV1
2541
+ """
2542
+
2543
+ all_params = []
2544
+ all_params.append('callback')
2545
+ all_params.append('_return_http_data_only')
2546
+ all_params.append('_preload_content')
2547
+ all_params.append('_request_timeout')
2548
+ all_params.append('_response_type')
2549
+ all_params.append('_custom_headers')
2550
+
2551
+ params = locals()
2552
+ for key, val in iteritems(params['kwargs']):
2553
+ if key not in all_params:
2554
+ raise TypeError(
2555
+ "Got an unexpected keyword argument '%s'"
2556
+ " to method get_all_numeric_descriptions" % key
2557
+ )
2558
+ params[key] = val
2559
+ del params['kwargs']
2560
+
2561
+ collection_formats = {}
2562
+
2563
+ path_params = {}
2564
+
2565
+ query_params = []
2566
+
2567
+ header_params = {}
2568
+
2569
+ for key, value in params.get('_custom_headers', {}).items():
2570
+ header_params[key] = value
2571
+
2572
+
2573
+ form_params = []
2574
+ local_var_files = {}
2575
+
2576
+ body_params = None
2577
+ # HTTP header `Accept`
2578
+ header_params['Accept'] = self.api_client.\
2579
+ select_header_accept(['application/vnd.seeq.v1+json'])
2580
+
2581
+ # HTTP header `Content-Type`
2582
+ header_params['Content-Type'] = self.api_client.\
2583
+ select_header_content_type(['application/vnd.seeq.v1+json', ])
2584
+
2585
+ # Authentication setting
2586
+ auth_settings = ['api_key']
2587
+
2588
+ return self.api_client.call_api('/context/numeric/descriptions', 'GET',
2589
+ path_params,
2590
+ query_params,
2591
+ header_params,
2592
+ body=body_params,
2593
+ post_params=form_params,
2594
+ files=local_var_files,
2595
+ response_type=params.get('_response_type', 'NumericDescriptionOutputListV1'),
2596
+ auth_settings=auth_settings,
2597
+ callback=params.get('callback'),
2598
+ _return_http_data_only=params.get('_return_http_data_only'),
2599
+ _preload_content=params.get('_preload_content', True),
2600
+ _request_timeout=params.get('_request_timeout'),
2601
+ collection_formats=collection_formats)
2602
+
2603
+ def get_comment_category(self, **kwargs):
2604
+ """
2605
+ Get comment category by ID
2606
+ This method makes a synchronous HTTP request by default. To make an
2607
+ asynchronous HTTP request, please define a `callback` function
2608
+ to be invoked when receiving the response.
2609
+ >>> def callback_function(response):
2610
+ >>> pprint(response)
2611
+ >>>
2612
+ >>> thread = api.get_comment_category(id=id_value, callback=callback_function)
2613
+
2614
+ :param callback function: The callback function
2615
+ for asynchronous request. (optional)
2616
+ :param str id: (required)
2617
+ :return: CommentCategoryOutputV1
2618
+ If the method is called asynchronously,
2619
+ returns the request thread.
2620
+ :rtype: CommentCategoryOutputV1
2621
+ """
2622
+ kwargs['_return_http_data_only'] = True
2623
+ if kwargs.get('callback'):
2624
+ return self.get_comment_category_with_http_info(**kwargs)
2625
+ else:
2626
+ (data) = self.get_comment_category_with_http_info(**kwargs)
2627
+ return data
2628
+
2629
+ def get_comment_category_with_http_info(self, **kwargs):
2630
+ """
2631
+ Get comment category by ID
2632
+ This method makes a synchronous HTTP request by default. To make an
2633
+ asynchronous HTTP request, please define a `callback` function
2634
+ to be invoked when receiving the response.
2635
+ >>> def callback_function(response):
2636
+ >>> pprint(response)
2637
+ >>>
2638
+ >>> thread = api.get_comment_category_with_http_info(id=id_value, callback=callback_function)
2639
+
2640
+ :param callback function: The callback function
2641
+ for asynchronous request. (optional)
2642
+ :param str id: (required)
2643
+ :return: CommentCategoryOutputV1
2644
+ If the method is called asynchronously,
2645
+ returns the request thread.
2646
+ :rtype: CommentCategoryOutputV1
2647
+ """
2648
+
2649
+ all_params = ['id']
2650
+ all_params.append('callback')
2651
+ all_params.append('_return_http_data_only')
2652
+ all_params.append('_preload_content')
2653
+ all_params.append('_request_timeout')
2654
+ all_params.append('_response_type')
2655
+ all_params.append('_custom_headers')
2656
+
2657
+ params = locals()
2658
+ for key, val in iteritems(params['kwargs']):
2659
+ if key not in all_params:
2660
+ raise TypeError(
2661
+ "Got an unexpected keyword argument '%s'"
2662
+ " to method get_comment_category" % key
2663
+ )
2664
+ params[key] = val
2665
+ del params['kwargs']
2666
+ # verify the required parameter 'id' is set
2667
+ if ('id' not in params) or (params['id'] is None):
2668
+ raise ValueError("Missing the required parameter `id` when calling `get_comment_category`")
2669
+
2670
+
2671
+ collection_formats = {}
2672
+
2673
+ path_params = {}
2674
+ if 'id' in params:
2675
+ path_params['id'] = params['id']
2676
+
2677
+ query_params = []
2678
+
2679
+ header_params = {}
2680
+
2681
+ for key, value in params.get('_custom_headers', {}).items():
2682
+ header_params[key] = value
2683
+
2684
+
2685
+ form_params = []
2686
+ local_var_files = {}
2687
+
2688
+ body_params = None
2689
+ # HTTP header `Accept`
2690
+ header_params['Accept'] = self.api_client.\
2691
+ select_header_accept(['application/vnd.seeq.v1+json'])
2692
+
2693
+ # HTTP header `Content-Type`
2694
+ header_params['Content-Type'] = self.api_client.\
2695
+ select_header_content_type(['application/vnd.seeq.v1+json', ])
2696
+
2697
+ # Authentication setting
2698
+ auth_settings = ['api_key']
2699
+
2700
+ return self.api_client.call_api('/context/comments/categories/{id}', 'GET',
2701
+ path_params,
2702
+ query_params,
2703
+ header_params,
2704
+ body=body_params,
2705
+ post_params=form_params,
2706
+ files=local_var_files,
2707
+ response_type=params.get('_response_type', 'CommentCategoryOutputV1'),
2708
+ auth_settings=auth_settings,
2709
+ callback=params.get('callback'),
2710
+ _return_http_data_only=params.get('_return_http_data_only'),
2711
+ _preload_content=params.get('_preload_content', True),
2712
+ _request_timeout=params.get('_request_timeout'),
2713
+ collection_formats=collection_formats)
2714
+
2715
+ def get_context_comments(self, **kwargs):
2716
+ """
2717
+ Fetch context comments for specified item IDs
2718
+ This method makes a synchronous HTTP request by default. To make an
2719
+ asynchronous HTTP request, please define a `callback` function
2720
+ to be invoked when receiving the response.
2721
+ >>> def callback_function(response):
2722
+ >>> pprint(response)
2723
+ >>>
2724
+ >>> thread = api.get_context_comments(body=body_value, callback=callback_function)
2725
+
2726
+ :param callback function: The callback function
2727
+ for asynchronous request. (optional)
2728
+ :param GetContextInputV1 body: (required)
2729
+ :return: ContextCommentListOutputV1
2730
+ If the method is called asynchronously,
2731
+ returns the request thread.
2732
+ :rtype: ContextCommentListOutputV1
2733
+ """
2734
+ kwargs['_return_http_data_only'] = True
2735
+ if kwargs.get('callback'):
2736
+ return self.get_context_comments_with_http_info(**kwargs)
2737
+ else:
2738
+ (data) = self.get_context_comments_with_http_info(**kwargs)
2739
+ return data
2740
+
2741
+ def get_context_comments_with_http_info(self, **kwargs):
2742
+ """
2743
+ Fetch context comments for specified item IDs
2744
+ This method makes a synchronous HTTP request by default. To make an
2745
+ asynchronous HTTP request, please define a `callback` function
2746
+ to be invoked when receiving the response.
2747
+ >>> def callback_function(response):
2748
+ >>> pprint(response)
2749
+ >>>
2750
+ >>> thread = api.get_context_comments_with_http_info(body=body_value, callback=callback_function)
2751
+
2752
+ :param callback function: The callback function
2753
+ for asynchronous request. (optional)
2754
+ :param GetContextInputV1 body: (required)
2755
+ :return: ContextCommentListOutputV1
2756
+ If the method is called asynchronously,
2757
+ returns the request thread.
2758
+ :rtype: ContextCommentListOutputV1
2759
+ """
2760
+
2761
+ all_params = ['body']
2762
+ all_params.append('callback')
2763
+ all_params.append('_return_http_data_only')
2764
+ all_params.append('_preload_content')
2765
+ all_params.append('_request_timeout')
2766
+ all_params.append('_response_type')
2767
+ all_params.append('_custom_headers')
2768
+
2769
+ params = locals()
2770
+ for key, val in iteritems(params['kwargs']):
2771
+ if key not in all_params:
2772
+ raise TypeError(
2773
+ "Got an unexpected keyword argument '%s'"
2774
+ " to method get_context_comments" % key
2775
+ )
2776
+ params[key] = val
2777
+ del params['kwargs']
2778
+ # verify the required parameter 'body' is set
2779
+ if ('body' not in params) or (params['body'] is None):
2780
+ raise ValueError("Missing the required parameter `body` when calling `get_context_comments`")
2781
+
2782
+
2783
+ collection_formats = {}
2784
+
2785
+ path_params = {}
2786
+
2787
+ query_params = []
2788
+
2789
+ header_params = {}
2790
+
2791
+ for key, value in params.get('_custom_headers', {}).items():
2792
+ header_params[key] = value
2793
+
2794
+
2795
+ form_params = []
2796
+ local_var_files = {}
2797
+
2798
+ body_params = None
2799
+ if 'body' in params:
2800
+ body_params = params['body']
2801
+ # HTTP header `Accept`
2802
+ header_params['Accept'] = self.api_client.\
2803
+ select_header_accept(['application/vnd.seeq.v1+json'])
2804
+
2805
+ # HTTP header `Content-Type`
2806
+ header_params['Content-Type'] = self.api_client.\
2807
+ select_header_content_type(['application/vnd.seeq.v1+json', ])
2808
+
2809
+ # Authentication setting
2810
+ auth_settings = ['api_key']
2811
+
2812
+ return self.api_client.call_api('/context/search/comments', 'POST',
2813
+ path_params,
2814
+ query_params,
2815
+ header_params,
2816
+ body=body_params,
2817
+ post_params=form_params,
2818
+ files=local_var_files,
2819
+ response_type=params.get('_response_type', 'ContextCommentListOutputV1'),
2820
+ auth_settings=auth_settings,
2821
+ callback=params.get('callback'),
2822
+ _return_http_data_only=params.get('_return_http_data_only'),
2823
+ _preload_content=params.get('_preload_content', True),
2824
+ _request_timeout=params.get('_request_timeout'),
2825
+ collection_formats=collection_formats)
2826
+
2827
+ def get_context_conditions(self, **kwargs):
2828
+ """
2829
+ Fetch context conditions for specified item IDs
2830
+ This method makes a synchronous HTTP request by default. To make an
2831
+ asynchronous HTTP request, please define a `callback` function
2832
+ to be invoked when receiving the response.
2833
+ >>> def callback_function(response):
2834
+ >>> pprint(response)
2835
+ >>>
2836
+ >>> thread = api.get_context_conditions(body=body_value, callback=callback_function)
2837
+
2838
+ :param callback function: The callback function
2839
+ for asynchronous request. (optional)
2840
+ :param GetContextConditionInputV1 body: (required)
2841
+ :return: ContextConditionOutputListV1
2842
+ If the method is called asynchronously,
2843
+ returns the request thread.
2844
+ :rtype: ContextConditionOutputListV1
2845
+ """
2846
+ kwargs['_return_http_data_only'] = True
2847
+ if kwargs.get('callback'):
2848
+ return self.get_context_conditions_with_http_info(**kwargs)
2849
+ else:
2850
+ (data) = self.get_context_conditions_with_http_info(**kwargs)
2851
+ return data
2852
+
2853
+ def get_context_conditions_with_http_info(self, **kwargs):
2854
+ """
2855
+ Fetch context conditions for specified item IDs
2856
+ This method makes a synchronous HTTP request by default. To make an
2857
+ asynchronous HTTP request, please define a `callback` function
2858
+ to be invoked when receiving the response.
2859
+ >>> def callback_function(response):
2860
+ >>> pprint(response)
2861
+ >>>
2862
+ >>> thread = api.get_context_conditions_with_http_info(body=body_value, callback=callback_function)
2863
+
2864
+ :param callback function: The callback function
2865
+ for asynchronous request. (optional)
2866
+ :param GetContextConditionInputV1 body: (required)
2867
+ :return: ContextConditionOutputListV1
2868
+ If the method is called asynchronously,
2869
+ returns the request thread.
2870
+ :rtype: ContextConditionOutputListV1
2871
+ """
2872
+
2873
+ all_params = ['body']
2874
+ all_params.append('callback')
2875
+ all_params.append('_return_http_data_only')
2876
+ all_params.append('_preload_content')
2877
+ all_params.append('_request_timeout')
2878
+ all_params.append('_response_type')
2879
+ all_params.append('_custom_headers')
2880
+
2881
+ params = locals()
2882
+ for key, val in iteritems(params['kwargs']):
2883
+ if key not in all_params:
2884
+ raise TypeError(
2885
+ "Got an unexpected keyword argument '%s'"
2886
+ " to method get_context_conditions" % key
2887
+ )
2888
+ params[key] = val
2889
+ del params['kwargs']
2890
+ # verify the required parameter 'body' is set
2891
+ if ('body' not in params) or (params['body'] is None):
2892
+ raise ValueError("Missing the required parameter `body` when calling `get_context_conditions`")
2893
+
2894
+
2895
+ collection_formats = {}
2896
+
2897
+ path_params = {}
2898
+
2899
+ query_params = []
2900
+
2901
+ header_params = {}
2902
+
2903
+ for key, value in params.get('_custom_headers', {}).items():
2904
+ header_params[key] = value
2905
+
2906
+
2907
+ form_params = []
2908
+ local_var_files = {}
2909
+
2910
+ body_params = None
2911
+ if 'body' in params:
2912
+ body_params = params['body']
2913
+ # HTTP header `Accept`
2914
+ header_params['Accept'] = self.api_client.\
2915
+ select_header_accept(['application/vnd.seeq.v1+json'])
2916
+
2917
+ # HTTP header `Content-Type`
2918
+ header_params['Content-Type'] = self.api_client.\
2919
+ select_header_content_type(['application/vnd.seeq.v1+json', ])
2920
+
2921
+ # Authentication setting
2922
+ auth_settings = ['api_key']
2923
+
2924
+ return self.api_client.call_api('/context/conditions', 'POST',
2925
+ path_params,
2926
+ query_params,
2927
+ header_params,
2928
+ body=body_params,
2929
+ post_params=form_params,
2930
+ files=local_var_files,
2931
+ response_type=params.get('_response_type', 'ContextConditionOutputListV1'),
2932
+ auth_settings=auth_settings,
2933
+ callback=params.get('callback'),
2934
+ _return_http_data_only=params.get('_return_http_data_only'),
2935
+ _preload_content=params.get('_preload_content', True),
2936
+ _request_timeout=params.get('_request_timeout'),
2937
+ collection_formats=collection_formats)
2938
+
2939
+ def get_context_labels(self, **kwargs):
2940
+ """
2941
+ Fetch context labels for specified item IDs
2942
+ This method makes a synchronous HTTP request by default. To make an
2943
+ asynchronous HTTP request, please define a `callback` function
2944
+ to be invoked when receiving the response.
2945
+ >>> def callback_function(response):
2946
+ >>> pprint(response)
2947
+ >>>
2948
+ >>> thread = api.get_context_labels(body=body_value, callback=callback_function)
2949
+
2950
+ :param callback function: The callback function
2951
+ for asynchronous request. (optional)
2952
+ :param GetContextInputV1 body: (required)
2953
+ :return: ContextLabelListOutputV1
2954
+ If the method is called asynchronously,
2955
+ returns the request thread.
2956
+ :rtype: ContextLabelListOutputV1
2957
+ """
2958
+ kwargs['_return_http_data_only'] = True
2959
+ if kwargs.get('callback'):
2960
+ return self.get_context_labels_with_http_info(**kwargs)
2961
+ else:
2962
+ (data) = self.get_context_labels_with_http_info(**kwargs)
2963
+ return data
2964
+
2965
+ def get_context_labels_with_http_info(self, **kwargs):
2966
+ """
2967
+ Fetch context labels for specified item IDs
2968
+ This method makes a synchronous HTTP request by default. To make an
2969
+ asynchronous HTTP request, please define a `callback` function
2970
+ to be invoked when receiving the response.
2971
+ >>> def callback_function(response):
2972
+ >>> pprint(response)
2973
+ >>>
2974
+ >>> thread = api.get_context_labels_with_http_info(body=body_value, callback=callback_function)
2975
+
2976
+ :param callback function: The callback function
2977
+ for asynchronous request. (optional)
2978
+ :param GetContextInputV1 body: (required)
2979
+ :return: ContextLabelListOutputV1
2980
+ If the method is called asynchronously,
2981
+ returns the request thread.
2982
+ :rtype: ContextLabelListOutputV1
2983
+ """
2984
+
2985
+ all_params = ['body']
2986
+ all_params.append('callback')
2987
+ all_params.append('_return_http_data_only')
2988
+ all_params.append('_preload_content')
2989
+ all_params.append('_request_timeout')
2990
+ all_params.append('_response_type')
2991
+ all_params.append('_custom_headers')
2992
+
2993
+ params = locals()
2994
+ for key, val in iteritems(params['kwargs']):
2995
+ if key not in all_params:
2996
+ raise TypeError(
2997
+ "Got an unexpected keyword argument '%s'"
2998
+ " to method get_context_labels" % key
2999
+ )
3000
+ params[key] = val
3001
+ del params['kwargs']
3002
+ # verify the required parameter 'body' is set
3003
+ if ('body' not in params) or (params['body'] is None):
3004
+ raise ValueError("Missing the required parameter `body` when calling `get_context_labels`")
3005
+
3006
+
3007
+ collection_formats = {}
3008
+
3009
+ path_params = {}
3010
+
3011
+ query_params = []
3012
+
3013
+ header_params = {}
3014
+
3015
+ for key, value in params.get('_custom_headers', {}).items():
3016
+ header_params[key] = value
3017
+
3018
+
3019
+ form_params = []
3020
+ local_var_files = {}
3021
+
3022
+ body_params = None
3023
+ if 'body' in params:
3024
+ body_params = params['body']
3025
+ # HTTP header `Accept`
3026
+ header_params['Accept'] = self.api_client.\
3027
+ select_header_accept(['application/vnd.seeq.v1+json'])
3028
+
3029
+ # HTTP header `Content-Type`
3030
+ header_params['Content-Type'] = self.api_client.\
3031
+ select_header_content_type(['application/vnd.seeq.v1+json', ])
3032
+
3033
+ # Authentication setting
3034
+ auth_settings = ['api_key']
3035
+
3036
+ return self.api_client.call_api('/context/search/labels', 'POST',
3037
+ path_params,
3038
+ query_params,
3039
+ header_params,
3040
+ body=body_params,
3041
+ post_params=form_params,
3042
+ files=local_var_files,
3043
+ response_type=params.get('_response_type', 'ContextLabelListOutputV1'),
3044
+ auth_settings=auth_settings,
3045
+ callback=params.get('callback'),
3046
+ _return_http_data_only=params.get('_return_http_data_only'),
3047
+ _preload_content=params.get('_preload_content', True),
3048
+ _request_timeout=params.get('_request_timeout'),
3049
+ collection_formats=collection_formats)
3050
+
3051
+ def get_context_numerics(self, **kwargs):
3052
+ """
3053
+ Fetch numeric context for specified item IDs
2390
3054
  This method makes a synchronous HTTP request by default. To make an
2391
3055
  asynchronous HTTP request, please define a `callback` function
2392
3056
  to be invoked when receiving the response.
2393
3057
  >>> def callback_function(response):
2394
3058
  >>> pprint(response)
2395
3059
  >>>
2396
- >>> thread = api.get_all_numeric_descriptions(callback=callback_function)
3060
+ >>> thread = api.get_context_numerics(body=body_value, callback=callback_function)
2397
3061
 
2398
3062
  :param callback function: The callback function
2399
3063
  for asynchronous request. (optional)
2400
- :return: NumericDescriptionOutputListV1
3064
+ :param GetContextInputV1 body: (required)
3065
+ :return: ContextNumericListOutputV1
2401
3066
  If the method is called asynchronously,
2402
3067
  returns the request thread.
2403
- :rtype: NumericDescriptionOutputListV1
3068
+ :rtype: ContextNumericListOutputV1
2404
3069
  """
2405
3070
  kwargs['_return_http_data_only'] = True
2406
3071
  if kwargs.get('callback'):
2407
- return self.get_all_numeric_descriptions_with_http_info(**kwargs)
3072
+ return self.get_context_numerics_with_http_info(**kwargs)
2408
3073
  else:
2409
- (data) = self.get_all_numeric_descriptions_with_http_info(**kwargs)
3074
+ (data) = self.get_context_numerics_with_http_info(**kwargs)
2410
3075
  return data
2411
3076
 
2412
- def get_all_numeric_descriptions_with_http_info(self, **kwargs):
3077
+ def get_context_numerics_with_http_info(self, **kwargs):
2413
3078
  """
2414
- Get all numeric descriptions
3079
+ Fetch numeric context for specified item IDs
2415
3080
  This method makes a synchronous HTTP request by default. To make an
2416
3081
  asynchronous HTTP request, please define a `callback` function
2417
3082
  to be invoked when receiving the response.
2418
3083
  >>> def callback_function(response):
2419
3084
  >>> pprint(response)
2420
3085
  >>>
2421
- >>> thread = api.get_all_numeric_descriptions_with_http_info(callback=callback_function)
3086
+ >>> thread = api.get_context_numerics_with_http_info(body=body_value, callback=callback_function)
2422
3087
 
2423
3088
  :param callback function: The callback function
2424
3089
  for asynchronous request. (optional)
2425
- :return: NumericDescriptionOutputListV1
3090
+ :param GetContextInputV1 body: (required)
3091
+ :return: ContextNumericListOutputV1
2426
3092
  If the method is called asynchronously,
2427
3093
  returns the request thread.
2428
- :rtype: NumericDescriptionOutputListV1
3094
+ :rtype: ContextNumericListOutputV1
2429
3095
  """
2430
3096
 
2431
- all_params = []
3097
+ all_params = ['body']
2432
3098
  all_params.append('callback')
2433
3099
  all_params.append('_return_http_data_only')
2434
3100
  all_params.append('_preload_content')
@@ -2441,10 +3107,14 @@ class ContextApi(object):
2441
3107
  if key not in all_params:
2442
3108
  raise TypeError(
2443
3109
  "Got an unexpected keyword argument '%s'"
2444
- " to method get_all_numeric_descriptions" % key
3110
+ " to method get_context_numerics" % key
2445
3111
  )
2446
3112
  params[key] = val
2447
3113
  del params['kwargs']
3114
+ # verify the required parameter 'body' is set
3115
+ if ('body' not in params) or (params['body'] is None):
3116
+ raise ValueError("Missing the required parameter `body` when calling `get_context_numerics`")
3117
+
2448
3118
 
2449
3119
  collection_formats = {}
2450
3120
 
@@ -2462,6 +3132,8 @@ class ContextApi(object):
2462
3132
  local_var_files = {}
2463
3133
 
2464
3134
  body_params = None
3135
+ if 'body' in params:
3136
+ body_params = params['body']
2465
3137
  # HTTP header `Accept`
2466
3138
  header_params['Accept'] = self.api_client.\
2467
3139
  select_header_accept(['application/vnd.seeq.v1+json'])
@@ -2473,14 +3145,14 @@ class ContextApi(object):
2473
3145
  # Authentication setting
2474
3146
  auth_settings = ['api_key']
2475
3147
 
2476
- return self.api_client.call_api('/context/numeric/descriptions', 'GET',
3148
+ return self.api_client.call_api('/context/search/numerics', 'POST',
2477
3149
  path_params,
2478
3150
  query_params,
2479
3151
  header_params,
2480
3152
  body=body_params,
2481
3153
  post_params=form_params,
2482
3154
  files=local_var_files,
2483
- response_type=params.get('_response_type', 'NumericDescriptionOutputListV1'),
3155
+ response_type=params.get('_response_type', 'ContextNumericListOutputV1'),
2484
3156
  auth_settings=auth_settings,
2485
3157
  callback=params.get('callback'),
2486
3158
  _return_http_data_only=params.get('_return_http_data_only'),
@@ -2488,53 +3160,53 @@ class ContextApi(object):
2488
3160
  _request_timeout=params.get('_request_timeout'),
2489
3161
  collection_formats=collection_formats)
2490
3162
 
2491
- def get_comment_category(self, **kwargs):
3163
+ def get_context_opaque(self, **kwargs):
2492
3164
  """
2493
- Get comment category by ID
3165
+ Fetch opaque context for specified item IDs
2494
3166
  This method makes a synchronous HTTP request by default. To make an
2495
3167
  asynchronous HTTP request, please define a `callback` function
2496
3168
  to be invoked when receiving the response.
2497
3169
  >>> def callback_function(response):
2498
3170
  >>> pprint(response)
2499
3171
  >>>
2500
- >>> thread = api.get_comment_category(id=id_value, callback=callback_function)
3172
+ >>> thread = api.get_context_opaque(body=body_value, callback=callback_function)
2501
3173
 
2502
3174
  :param callback function: The callback function
2503
3175
  for asynchronous request. (optional)
2504
- :param str id: (required)
2505
- :return: CommentCategoryOutputV1
3176
+ :param GetContextInputV1 body: (required)
3177
+ :return: ContextOpaqueListOutputV1
2506
3178
  If the method is called asynchronously,
2507
3179
  returns the request thread.
2508
- :rtype: CommentCategoryOutputV1
3180
+ :rtype: ContextOpaqueListOutputV1
2509
3181
  """
2510
3182
  kwargs['_return_http_data_only'] = True
2511
3183
  if kwargs.get('callback'):
2512
- return self.get_comment_category_with_http_info(**kwargs)
3184
+ return self.get_context_opaque_with_http_info(**kwargs)
2513
3185
  else:
2514
- (data) = self.get_comment_category_with_http_info(**kwargs)
3186
+ (data) = self.get_context_opaque_with_http_info(**kwargs)
2515
3187
  return data
2516
3188
 
2517
- def get_comment_category_with_http_info(self, **kwargs):
3189
+ def get_context_opaque_with_http_info(self, **kwargs):
2518
3190
  """
2519
- Get comment category by ID
3191
+ Fetch opaque context for specified item IDs
2520
3192
  This method makes a synchronous HTTP request by default. To make an
2521
3193
  asynchronous HTTP request, please define a `callback` function
2522
3194
  to be invoked when receiving the response.
2523
3195
  >>> def callback_function(response):
2524
3196
  >>> pprint(response)
2525
3197
  >>>
2526
- >>> thread = api.get_comment_category_with_http_info(id=id_value, callback=callback_function)
3198
+ >>> thread = api.get_context_opaque_with_http_info(body=body_value, callback=callback_function)
2527
3199
 
2528
3200
  :param callback function: The callback function
2529
3201
  for asynchronous request. (optional)
2530
- :param str id: (required)
2531
- :return: CommentCategoryOutputV1
3202
+ :param GetContextInputV1 body: (required)
3203
+ :return: ContextOpaqueListOutputV1
2532
3204
  If the method is called asynchronously,
2533
3205
  returns the request thread.
2534
- :rtype: CommentCategoryOutputV1
3206
+ :rtype: ContextOpaqueListOutputV1
2535
3207
  """
2536
3208
 
2537
- all_params = ['id']
3209
+ all_params = ['body']
2538
3210
  all_params.append('callback')
2539
3211
  all_params.append('_return_http_data_only')
2540
3212
  all_params.append('_preload_content')
@@ -2547,20 +3219,18 @@ class ContextApi(object):
2547
3219
  if key not in all_params:
2548
3220
  raise TypeError(
2549
3221
  "Got an unexpected keyword argument '%s'"
2550
- " to method get_comment_category" % key
3222
+ " to method get_context_opaque" % key
2551
3223
  )
2552
3224
  params[key] = val
2553
3225
  del params['kwargs']
2554
- # verify the required parameter 'id' is set
2555
- if ('id' not in params) or (params['id'] is None):
2556
- raise ValueError("Missing the required parameter `id` when calling `get_comment_category`")
3226
+ # verify the required parameter 'body' is set
3227
+ if ('body' not in params) or (params['body'] is None):
3228
+ raise ValueError("Missing the required parameter `body` when calling `get_context_opaque`")
2557
3229
 
2558
3230
 
2559
3231
  collection_formats = {}
2560
3232
 
2561
3233
  path_params = {}
2562
- if 'id' in params:
2563
- path_params['id'] = params['id']
2564
3234
 
2565
3235
  query_params = []
2566
3236
 
@@ -2574,6 +3244,8 @@ class ContextApi(object):
2574
3244
  local_var_files = {}
2575
3245
 
2576
3246
  body_params = None
3247
+ if 'body' in params:
3248
+ body_params = params['body']
2577
3249
  # HTTP header `Accept`
2578
3250
  header_params['Accept'] = self.api_client.\
2579
3251
  select_header_accept(['application/vnd.seeq.v1+json'])
@@ -2585,14 +3257,126 @@ class ContextApi(object):
2585
3257
  # Authentication setting
2586
3258
  auth_settings = ['api_key']
2587
3259
 
2588
- return self.api_client.call_api('/context/comments/categories/{id}', 'GET',
3260
+ return self.api_client.call_api('/context/search/opaque', 'POST',
2589
3261
  path_params,
2590
3262
  query_params,
2591
3263
  header_params,
2592
3264
  body=body_params,
2593
3265
  post_params=form_params,
2594
3266
  files=local_var_files,
2595
- response_type=params.get('_response_type', 'CommentCategoryOutputV1'),
3267
+ response_type=params.get('_response_type', 'ContextOpaqueListOutputV1'),
3268
+ auth_settings=auth_settings,
3269
+ callback=params.get('callback'),
3270
+ _return_http_data_only=params.get('_return_http_data_only'),
3271
+ _preload_content=params.get('_preload_content', True),
3272
+ _request_timeout=params.get('_request_timeout'),
3273
+ collection_formats=collection_formats)
3274
+
3275
+ def get_label_hierarchies(self, **kwargs):
3276
+ """
3277
+ Get label hierarchies for given category/label pairs. If no potential match for a given pair exists, nothing is returned for that pair.
3278
+ This method makes a synchronous HTTP request by default. To make an
3279
+ asynchronous HTTP request, please define a `callback` function
3280
+ to be invoked when receiving the response.
3281
+ >>> def callback_function(response):
3282
+ >>> pprint(response)
3283
+ >>>
3284
+ >>> thread = api.get_label_hierarchies(body=body_value, callback=callback_function)
3285
+
3286
+ :param callback function: The callback function
3287
+ for asynchronous request. (optional)
3288
+ :param LabelHierarchyInputV1 body: Label hierarchy request (required)
3289
+ :return: LabelHierarchyOutputListV1
3290
+ If the method is called asynchronously,
3291
+ returns the request thread.
3292
+ :rtype: LabelHierarchyOutputListV1
3293
+ """
3294
+ kwargs['_return_http_data_only'] = True
3295
+ if kwargs.get('callback'):
3296
+ return self.get_label_hierarchies_with_http_info(**kwargs)
3297
+ else:
3298
+ (data) = self.get_label_hierarchies_with_http_info(**kwargs)
3299
+ return data
3300
+
3301
+ def get_label_hierarchies_with_http_info(self, **kwargs):
3302
+ """
3303
+ Get label hierarchies for given category/label pairs. If no potential match for a given pair exists, nothing is returned for that pair.
3304
+ This method makes a synchronous HTTP request by default. To make an
3305
+ asynchronous HTTP request, please define a `callback` function
3306
+ to be invoked when receiving the response.
3307
+ >>> def callback_function(response):
3308
+ >>> pprint(response)
3309
+ >>>
3310
+ >>> thread = api.get_label_hierarchies_with_http_info(body=body_value, callback=callback_function)
3311
+
3312
+ :param callback function: The callback function
3313
+ for asynchronous request. (optional)
3314
+ :param LabelHierarchyInputV1 body: Label hierarchy request (required)
3315
+ :return: LabelHierarchyOutputListV1
3316
+ If the method is called asynchronously,
3317
+ returns the request thread.
3318
+ :rtype: LabelHierarchyOutputListV1
3319
+ """
3320
+
3321
+ all_params = ['body']
3322
+ all_params.append('callback')
3323
+ all_params.append('_return_http_data_only')
3324
+ all_params.append('_preload_content')
3325
+ all_params.append('_request_timeout')
3326
+ all_params.append('_response_type')
3327
+ all_params.append('_custom_headers')
3328
+
3329
+ params = locals()
3330
+ for key, val in iteritems(params['kwargs']):
3331
+ if key not in all_params:
3332
+ raise TypeError(
3333
+ "Got an unexpected keyword argument '%s'"
3334
+ " to method get_label_hierarchies" % key
3335
+ )
3336
+ params[key] = val
3337
+ del params['kwargs']
3338
+ # verify the required parameter 'body' is set
3339
+ if ('body' not in params) or (params['body'] is None):
3340
+ raise ValueError("Missing the required parameter `body` when calling `get_label_hierarchies`")
3341
+
3342
+
3343
+ collection_formats = {}
3344
+
3345
+ path_params = {}
3346
+
3347
+ query_params = []
3348
+
3349
+ header_params = {}
3350
+
3351
+ for key, value in params.get('_custom_headers', {}).items():
3352
+ header_params[key] = value
3353
+
3354
+
3355
+ form_params = []
3356
+ local_var_files = {}
3357
+
3358
+ body_params = None
3359
+ if 'body' in params:
3360
+ body_params = params['body']
3361
+ # HTTP header `Accept`
3362
+ header_params['Accept'] = self.api_client.\
3363
+ select_header_accept(['application/vnd.seeq.v1+json'])
3364
+
3365
+ # HTTP header `Content-Type`
3366
+ header_params['Content-Type'] = self.api_client.\
3367
+ select_header_content_type(['application/vnd.seeq.v1+json', ])
3368
+
3369
+ # Authentication setting
3370
+ auth_settings = ['api_key']
3371
+
3372
+ return self.api_client.call_api('/context/labels/hierarchies', 'POST',
3373
+ path_params,
3374
+ query_params,
3375
+ header_params,
3376
+ body=body_params,
3377
+ post_params=form_params,
3378
+ files=local_var_files,
3379
+ response_type=params.get('_response_type', 'LabelHierarchyOutputListV1'),
2596
3380
  auth_settings=auth_settings,
2597
3381
  callback=params.get('callback'),
2598
3382
  _return_http_data_only=params.get('_return_http_data_only'),
@@ -3188,6 +3972,132 @@ class ContextApi(object):
3188
3972
  _request_timeout=params.get('_request_timeout'),
3189
3973
  collection_formats=collection_formats)
3190
3974
 
3975
+ def update_context_numeric(self, **kwargs):
3976
+ """
3977
+ Update a numeric context
3978
+ This method makes a synchronous HTTP request by default. To make an
3979
+ asynchronous HTTP request, please define a `callback` function
3980
+ to be invoked when receiving the response.
3981
+ >>> def callback_function(response):
3982
+ >>> pprint(response)
3983
+ >>>
3984
+ >>> thread = api.update_context_numeric(body=body_value, item_id=item_id_value, numeric_context_id=numeric_context_id_value, callback=callback_function)
3985
+
3986
+ :param callback function: The callback function
3987
+ for asynchronous request. (optional)
3988
+ :param ContextNumericInputV1 body: Updated numeric context information (required)
3989
+ :param str item_id: ID of the item that the numeric context is associated with (required)
3990
+ :param str numeric_context_id: ID of the numeric context to update (required)
3991
+ :return: ContextNumericOutputV1
3992
+ If the method is called asynchronously,
3993
+ returns the request thread.
3994
+ :rtype: ContextNumericOutputV1
3995
+ """
3996
+ kwargs['_return_http_data_only'] = True
3997
+ if kwargs.get('callback'):
3998
+ return self.update_context_numeric_with_http_info(**kwargs)
3999
+ else:
4000
+ (data) = self.update_context_numeric_with_http_info(**kwargs)
4001
+ return data
4002
+
4003
+ def update_context_numeric_with_http_info(self, **kwargs):
4004
+ """
4005
+ Update a numeric context
4006
+ This method makes a synchronous HTTP request by default. To make an
4007
+ asynchronous HTTP request, please define a `callback` function
4008
+ to be invoked when receiving the response.
4009
+ >>> def callback_function(response):
4010
+ >>> pprint(response)
4011
+ >>>
4012
+ >>> thread = api.update_context_numeric_with_http_info(body=body_value, item_id=item_id_value, numeric_context_id=numeric_context_id_value, callback=callback_function)
4013
+
4014
+ :param callback function: The callback function
4015
+ for asynchronous request. (optional)
4016
+ :param ContextNumericInputV1 body: Updated numeric context information (required)
4017
+ :param str item_id: ID of the item that the numeric context is associated with (required)
4018
+ :param str numeric_context_id: ID of the numeric context to update (required)
4019
+ :return: ContextNumericOutputV1
4020
+ If the method is called asynchronously,
4021
+ returns the request thread.
4022
+ :rtype: ContextNumericOutputV1
4023
+ """
4024
+
4025
+ all_params = ['body', 'item_id', 'numeric_context_id']
4026
+ all_params.append('callback')
4027
+ all_params.append('_return_http_data_only')
4028
+ all_params.append('_preload_content')
4029
+ all_params.append('_request_timeout')
4030
+ all_params.append('_response_type')
4031
+ all_params.append('_custom_headers')
4032
+
4033
+ params = locals()
4034
+ for key, val in iteritems(params['kwargs']):
4035
+ if key not in all_params:
4036
+ raise TypeError(
4037
+ "Got an unexpected keyword argument '%s'"
4038
+ " to method update_context_numeric" % key
4039
+ )
4040
+ params[key] = val
4041
+ del params['kwargs']
4042
+ # verify the required parameter 'body' is set
4043
+ if ('body' not in params) or (params['body'] is None):
4044
+ raise ValueError("Missing the required parameter `body` when calling `update_context_numeric`")
4045
+ # verify the required parameter 'item_id' is set
4046
+ if ('item_id' not in params) or (params['item_id'] is None):
4047
+ raise ValueError("Missing the required parameter `item_id` when calling `update_context_numeric`")
4048
+ # verify the required parameter 'numeric_context_id' is set
4049
+ if ('numeric_context_id' not in params) or (params['numeric_context_id'] is None):
4050
+ raise ValueError("Missing the required parameter `numeric_context_id` when calling `update_context_numeric`")
4051
+
4052
+
4053
+ collection_formats = {}
4054
+
4055
+ path_params = {}
4056
+ if 'item_id' in params:
4057
+ path_params['itemId'] = params['item_id']
4058
+ if 'numeric_context_id' in params:
4059
+ path_params['numericContextId'] = params['numeric_context_id']
4060
+
4061
+ query_params = []
4062
+
4063
+ header_params = {}
4064
+
4065
+ for key, value in params.get('_custom_headers', {}).items():
4066
+ header_params[key] = value
4067
+
4068
+
4069
+ form_params = []
4070
+ local_var_files = {}
4071
+
4072
+ body_params = None
4073
+ if 'body' in params:
4074
+ body_params = params['body']
4075
+ # HTTP header `Accept`
4076
+ header_params['Accept'] = self.api_client.\
4077
+ select_header_accept(['application/vnd.seeq.v1+json'])
4078
+
4079
+ # HTTP header `Content-Type`
4080
+ header_params['Content-Type'] = self.api_client.\
4081
+ select_header_content_type(['application/vnd.seeq.v1+json', ])
4082
+
4083
+ # Authentication setting
4084
+ auth_settings = ['api_key']
4085
+
4086
+ return self.api_client.call_api('/context/{itemId}/numeric/{numericContextId}', 'POST',
4087
+ path_params,
4088
+ query_params,
4089
+ header_params,
4090
+ body=body_params,
4091
+ post_params=form_params,
4092
+ files=local_var_files,
4093
+ response_type=params.get('_response_type', 'ContextNumericOutputV1'),
4094
+ auth_settings=auth_settings,
4095
+ callback=params.get('callback'),
4096
+ _return_http_data_only=params.get('_return_http_data_only'),
4097
+ _preload_content=params.get('_preload_content', True),
4098
+ _request_timeout=params.get('_request_timeout'),
4099
+ collection_formats=collection_formats)
4100
+
3191
4101
  def update_context_opaque(self, **kwargs):
3192
4102
  """
3193
4103
  Update opaque context