seeq 65.1.13__tar.gz → 66.86.0.20251211__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1110) hide show
  1. seeq-66.86.0.20251211/PKG-INFO +520 -0
  2. seeq-66.86.0.20251211/README.md +84 -0
  3. seeq-66.86.0.20251211/pyproject.toml +45 -0
  4. seeq-66.86.0.20251211/seeq/sdk/__init__.py +674 -0
  5. seeq-66.86.0.20251211/seeq/sdk/api/__init__.py +71 -0
  6. seeq-66.86.0.20251211/seeq/sdk/api/access_keys_api.py +386 -0
  7. seeq-66.86.0.20251211/seeq/sdk/api/add_ons_api.py +722 -0
  8. seeq-66.86.0.20251211/seeq/sdk/api/agents_api.py +2978 -0
  9. seeq-66.86.0.20251211/seeq/sdk/api/annotations_api.py +1317 -0
  10. seeq-66.86.0.20251211/seeq/sdk/api/assets_api.py +603 -0
  11. seeq-66.86.0.20251211/seeq/sdk/api/audit_api.py +659 -0
  12. seeq-66.86.0.20251211/seeq/sdk/api/auth_api.py +695 -0
  13. seeq-66.86.0.20251211/seeq/sdk/api/cache_api.py +184 -0
  14. seeq-66.86.0.20251211/seeq/sdk/api/condition_monitors_api.py +1363 -0
  15. seeq-66.86.0.20251211/seeq/sdk/api/conditions_api.py +1328 -0
  16. seeq-66.86.0.20251211/seeq/sdk/api/content_api.py +3024 -0
  17. seeq-66.86.0.20251211/seeq/sdk/api/context_api.py +4582 -0
  18. seeq-66.86.0.20251211/seeq/sdk/api/datafiles_api.py +842 -0
  19. seeq-66.86.0.20251211/seeq/sdk/api/datasources_api.py +1445 -0
  20. seeq-66.86.0.20251211/seeq/sdk/api/display_templates_api.py +609 -0
  21. seeq-66.86.0.20251211/seeq/sdk/api/displays_api.py +609 -0
  22. seeq-66.86.0.20251211/seeq/sdk/api/export_api.py +725 -0
  23. seeq-66.86.0.20251211/seeq/sdk/api/folders_api.py +1373 -0
  24. seeq-66.86.0.20251211/seeq/sdk/api/formulas_api.py +2928 -0
  25. seeq-66.86.0.20251211/seeq/sdk/api/graph_ql_api.py +153 -0
  26. seeq-66.86.0.20251211/seeq/sdk/api/hierarchies_api.py +879 -0
  27. seeq-66.86.0.20251211/seeq/sdk/api/items_api.py +4946 -0
  28. seeq-66.86.0.20251211/seeq/sdk/api/jobs_api.py +852 -0
  29. seeq-66.86.0.20251211/seeq/sdk/api/logs_api.py +631 -0
  30. seeq-66.86.0.20251211/seeq/sdk/api/markdown_items_api.py +609 -0
  31. seeq-66.86.0.20251211/seeq/sdk/api/markdown_links_api.py +374 -0
  32. seeq-66.86.0.20251211/seeq/sdk/api/materialized_tables_api.py +283 -0
  33. seeq-66.86.0.20251211/seeq/sdk/api/metrics_api.py +609 -0
  34. seeq-66.86.0.20251211/seeq/sdk/api/models_api.py +2066 -0
  35. seeq-66.86.0.20251211/seeq/sdk/api/monitors_api.py +803 -0
  36. seeq-66.86.0.20251211/seeq/sdk/api/networks_api.py +154 -0
  37. seeq-66.86.0.20251211/seeq/sdk/api/notification_configurations_api.py +615 -0
  38. seeq-66.86.0.20251211/seeq/sdk/api/notifier_api.py +266 -0
  39. seeq-66.86.0.20251211/seeq/sdk/api/plugins_api.py +518 -0
  40. seeq-66.86.0.20251211/seeq/sdk/api/projects_api.py +1203 -0
  41. seeq-66.86.0.20251211/seeq/sdk/api/report_templates_api.py +608 -0
  42. seeq-66.86.0.20251211/seeq/sdk/api/reports_api.py +153 -0
  43. seeq-66.86.0.20251211/seeq/sdk/api/requests_api.py +927 -0
  44. seeq-66.86.0.20251211/seeq/sdk/api/scalars_api.py +711 -0
  45. seeq-66.86.0.20251211/seeq/sdk/api/scim_api.py +405 -0
  46. seeq-66.86.0.20251211/seeq/sdk/api/sharing_api.py +390 -0
  47. seeq-66.86.0.20251211/seeq/sdk/api/signal_monitors_api.py +1006 -0
  48. seeq-66.86.0.20251211/seeq/sdk/api/signals_api.py +2320 -0
  49. seeq-66.86.0.20251211/seeq/sdk/api/stored_tables_api.py +515 -0
  50. seeq-66.86.0.20251211/seeq/sdk/api/subscriptions_api.py +497 -0
  51. seeq-66.86.0.20251211/seeq/sdk/api/system_api.py +2758 -0
  52. seeq-66.86.0.20251211/seeq/sdk/api/table_definitions_api.py +2460 -0
  53. seeq-66.86.0.20251211/seeq/sdk/api/trees_api.py +1461 -0
  54. seeq-66.86.0.20251211/seeq/sdk/api/usage_api.py +292 -0
  55. seeq-66.86.0.20251211/seeq/sdk/api/user_groups_api.py +1332 -0
  56. seeq-66.86.0.20251211/seeq/sdk/api/users_api.py +1530 -0
  57. seeq-66.86.0.20251211/seeq/sdk/api/workbooks_api.py +2813 -0
  58. seeq-66.86.0.20251211/seeq/sdk/api_client.py +805 -0
  59. seeq-66.86.0.20251211/seeq/sdk/configuration.py +270 -0
  60. seeq-66.86.0.20251211/seeq/sdk/models/__init__.py +614 -0
  61. seeq-66.86.0.20251211/seeq/sdk/models/access_key_input_v1.py +182 -0
  62. seeq-66.86.0.20251211/seeq/sdk/models/access_key_output_list_v1.py +264 -0
  63. seeq-66.86.0.20251211/seeq/sdk/models/access_key_output_v1.py +552 -0
  64. seeq-66.86.0.20251211/seeq/sdk/models/ace_input_v1.py +154 -0
  65. seeq-66.86.0.20251211/seeq/sdk/models/ace_output_v1.py +232 -0
  66. seeq-66.86.0.20251211/seeq/sdk/models/acl_input_v1.py +208 -0
  67. seeq-66.86.0.20251211/seeq/sdk/models/acl_output_v1.py +208 -0
  68. seeq-66.86.0.20251211/seeq/sdk/models/activity_graph_output_v1.py +126 -0
  69. seeq-66.86.0.20251211/seeq/sdk/models/activity_output_v1.py +246 -0
  70. seeq-66.86.0.20251211/seeq/sdk/models/add_on_input_v1.py +296 -0
  71. seeq-66.86.0.20251211/seeq/sdk/models/add_on_output_list_v1.py +264 -0
  72. seeq-66.86.0.20251211/seeq/sdk/models/add_on_output_v1.py +574 -0
  73. seeq-66.86.0.20251211/seeq/sdk/models/add_on_preview_output_list_v1.py +264 -0
  74. seeq-66.86.0.20251211/seeq/sdk/models/add_on_preview_v1.py +232 -0
  75. seeq-66.86.0.20251211/seeq/sdk/models/add_on_tool_input_v1.py +384 -0
  76. seeq-66.86.0.20251211/seeq/sdk/models/add_on_tool_output_v1.py +616 -0
  77. seeq-66.86.0.20251211/seeq/sdk/models/administrator_contact_information_v1.py +156 -0
  78. seeq-66.86.0.20251211/seeq/sdk/models/agent_input_v1.py +180 -0
  79. seeq-66.86.0.20251211/seeq/sdk/models/agent_key_output_v1.py +124 -0
  80. seeq-66.86.0.20251211/seeq/sdk/models/agent_orchestrator_output_v1.py +210 -0
  81. seeq-66.86.0.20251211/seeq/sdk/models/agent_output_v1.py +492 -0
  82. seeq-66.86.0.20251211/seeq/sdk/models/agent_status_output_v1.py +296 -0
  83. seeq-66.86.0.20251211/seeq/sdk/models/agent_status_v1.py +300 -0
  84. seeq-66.86.0.20251211/seeq/sdk/models/all_context_output_v1.py +216 -0
  85. seeq-66.86.0.20251211/seeq/sdk/models/annotation_image_link_output_v1.py +152 -0
  86. seeq-66.86.0.20251211/seeq/sdk/models/annotation_input_v1.py +376 -0
  87. seeq-66.86.0.20251211/seeq/sdk/models/annotation_interest_input_v1.py +236 -0
  88. seeq-66.86.0.20251211/seeq/sdk/models/annotation_interest_output_v1.py +148 -0
  89. seeq-66.86.0.20251211/seeq/sdk/models/annotation_list_output_v1.py +264 -0
  90. seeq-66.86.0.20251211/seeq/sdk/models/annotation_output_v1.py +1138 -0
  91. seeq-66.86.0.20251211/seeq/sdk/models/archive_output_v1.py +152 -0
  92. seeq-66.86.0.20251211/seeq/sdk/models/asset_batch_input_v1.py +154 -0
  93. seeq-66.86.0.20251211/seeq/sdk/models/asset_error.py +200 -0
  94. seeq-66.86.0.20251211/seeq/sdk/models/asset_group_asset_input_v1.py +458 -0
  95. seeq-66.86.0.20251211/seeq/sdk/models/asset_group_input_v1.py +150 -0
  96. seeq-66.86.0.20251211/seeq/sdk/models/asset_group_output_v1.py +150 -0
  97. seeq-66.86.0.20251211/seeq/sdk/models/asset_group_root_input_v1.py +430 -0
  98. seeq-66.86.0.20251211/seeq/sdk/models/asset_group_tree_output_v1.py +234 -0
  99. seeq-66.86.0.20251211/seeq/sdk/models/asset_input_v1.py +374 -0
  100. seeq-66.86.0.20251211/seeq/sdk/models/asset_output_v1.py +576 -0
  101. seeq-66.86.0.20251211/seeq/sdk/models/asset_selection_input_v1.py +296 -0
  102. seeq-66.86.0.20251211/seeq/sdk/models/asset_selection_output_v1.py +460 -0
  103. seeq-66.86.0.20251211/seeq/sdk/models/asset_tree_batch_input_v1.py +212 -0
  104. seeq-66.86.0.20251211/seeq/sdk/models/asset_tree_output_v1.py +402 -0
  105. seeq-66.86.0.20251211/seeq/sdk/models/asset_tree_single_input_v1.py +152 -0
  106. seeq-66.86.0.20251211/seeq/sdk/models/attachment_input_v1.py +186 -0
  107. seeq-66.86.0.20251211/seeq/sdk/models/audit_output_list_v1.py +294 -0
  108. seeq-66.86.0.20251211/seeq/sdk/models/audit_output_v1.py +366 -0
  109. seeq-66.86.0.20251211/seeq/sdk/models/auth_input_v1.py +264 -0
  110. seeq-66.86.0.20251211/seeq/sdk/models/auth_providers_output_v1.py +126 -0
  111. seeq-66.86.0.20251211/seeq/sdk/models/authoritative_region_output_v1.py +174 -0
  112. seeq-66.86.0.20251211/seeq/sdk/models/base_output.py +352 -0
  113. seeq-66.86.0.20251211/seeq/sdk/models/boolean_config_field_v1.py +96 -0
  114. seeq-66.86.0.20251211/seeq/sdk/models/cache_block.py +408 -0
  115. seeq-66.86.0.20251211/seeq/sdk/models/cache_info_v1.py +152 -0
  116. seeq-66.86.0.20251211/seeq/sdk/models/calculated_item_output_v1.py +660 -0
  117. seeq-66.86.0.20251211/seeq/sdk/models/capability_inheritance_output_v1.py +150 -0
  118. seeq-66.86.0.20251211/seeq/sdk/models/capsule_input_v1.py +184 -0
  119. seeq-66.86.0.20251211/seeq/sdk/models/capsule_property_input_v1.py +156 -0
  120. seeq-66.86.0.20251211/seeq/sdk/models/capsule_property_output_v1.py +154 -0
  121. seeq-66.86.0.20251211/seeq/sdk/models/capsule_v1.py +268 -0
  122. seeq-66.86.0.20251211/seeq/sdk/models/capsules_input_v1.py +126 -0
  123. seeq-66.86.0.20251211/seeq/sdk/models/capsules_output_v1.py +322 -0
  124. seeq-66.86.0.20251211/seeq/sdk/models/capsules_overwrite_input_v1.py +152 -0
  125. seeq-66.86.0.20251211/seeq/sdk/models/category_label_pair_input_v1.py +152 -0
  126. seeq-66.86.0.20251211/seeq/sdk/models/channel_output_v1.py +264 -0
  127. seeq-66.86.0.20251211/seeq/sdk/models/column_definition_bulk_edit_input_list_v1.py +126 -0
  128. seeq-66.86.0.20251211/seeq/sdk/models/column_definition_bulk_edit_input_v1.py +460 -0
  129. seeq-66.86.0.20251211/seeq/sdk/models/column_definition_input_list_v1.py +126 -0
  130. seeq-66.86.0.20251211/seeq/sdk/models/column_definition_input_v1.py +432 -0
  131. seeq-66.86.0.20251211/seeq/sdk/models/column_definition_order_input_v1.py +126 -0
  132. seeq-66.86.0.20251211/seeq/sdk/models/column_definition_output_v1.py +476 -0
  133. seeq-66.86.0.20251211/seeq/sdk/models/column_header_output_v1.py +152 -0
  134. seeq-66.86.0.20251211/seeq/sdk/models/column_model_input_v1.py +126 -0
  135. seeq-66.86.0.20251211/seeq/sdk/models/column_model_output.py +148 -0
  136. seeq-66.86.0.20251211/seeq/sdk/models/column_override_input_list_v1.py +126 -0
  137. seeq-66.86.0.20251211/seeq/sdk/models/column_override_input_v1.py +212 -0
  138. seeq-66.86.0.20251211/seeq/sdk/models/column_rule_ancestor_input_v1.py +156 -0
  139. seeq-66.86.0.20251211/seeq/sdk/models/column_rule_asset_creator_input_v1.py +292 -0
  140. seeq-66.86.0.20251211/seeq/sdk/models/column_rule_concat_input_v1.py +210 -0
  141. seeq-66.86.0.20251211/seeq/sdk/models/column_rule_constant_input_v1.py +182 -0
  142. seeq-66.86.0.20251211/seeq/sdk/models/column_rule_context_condition_input_v1.py +126 -0
  143. seeq-66.86.0.20251211/seeq/sdk/models/column_rule_datasource_input_v1.py +126 -0
  144. seeq-66.86.0.20251211/seeq/sdk/models/column_rule_descendant_input_v1.py +272 -0
  145. seeq-66.86.0.20251211/seeq/sdk/models/column_rule_descendant_search_input_v1.py +242 -0
  146. seeq-66.86.0.20251211/seeq/sdk/models/column_rule_event_asset_creator_input_v1.py +210 -0
  147. seeq-66.86.0.20251211/seeq/sdk/models/column_rule_event_property_input_v1.py +126 -0
  148. seeq-66.86.0.20251211/seeq/sdk/models/column_rule_find_descendant_input_v1.py +300 -0
  149. seeq-66.86.0.20251211/seeq/sdk/models/column_rule_find_property_input_v1.py +156 -0
  150. seeq-66.86.0.20251211/seeq/sdk/models/column_rule_formula_creator_input_v1.py +412 -0
  151. seeq-66.86.0.20251211/seeq/sdk/models/column_rule_get_item_property_input_v1.py +156 -0
  152. seeq-66.86.0.20251211/seeq/sdk/models/column_rule_input_v1.py +772 -0
  153. seeq-66.86.0.20251211/seeq/sdk/models/column_rule_item_search_input_v1.py +270 -0
  154. seeq-66.86.0.20251211/seeq/sdk/models/column_rule_item_type_input_v1.py +126 -0
  155. seeq-66.86.0.20251211/seeq/sdk/models/column_rule_manager_input_v1.py +126 -0
  156. seeq-66.86.0.20251211/seeq/sdk/models/column_rule_output_v1.py +184 -0
  157. seeq-66.86.0.20251211/seeq/sdk/models/column_rule_path_input_v1.py +182 -0
  158. seeq-66.86.0.20251211/seeq/sdk/models/column_rule_path_search_input_v1.py +154 -0
  159. seeq-66.86.0.20251211/seeq/sdk/models/column_rule_preserve_existing_input_v1.py +96 -0
  160. seeq-66.86.0.20251211/seeq/sdk/models/column_rule_scalar_creator_input_v1.py +296 -0
  161. seeq-66.86.0.20251211/seeq/sdk/models/column_rule_search_ancestor_input_v1.py +156 -0
  162. seeq-66.86.0.20251211/seeq/sdk/models/column_rule_set_item_property_input_v1.py +186 -0
  163. seeq-66.86.0.20251211/seeq/sdk/models/column_rule_text_extractor_input_v1.py +156 -0
  164. seeq-66.86.0.20251211/seeq/sdk/models/column_rule_text_replacement_input_v1.py +242 -0
  165. seeq-66.86.0.20251211/seeq/sdk/models/column_rule_tree_path_creator_input_v1.py +154 -0
  166. seeq-66.86.0.20251211/seeq/sdk/models/comment_category_input_v1.py +208 -0
  167. seeq-66.86.0.20251211/seeq/sdk/models/comment_category_output_list_v1.py +124 -0
  168. seeq-66.86.0.20251211/seeq/sdk/models/comment_category_output_v1.py +320 -0
  169. seeq-66.86.0.20251211/seeq/sdk/models/complex_object_config_field_v1.py +96 -0
  170. seeq-66.86.0.20251211/seeq/sdk/models/composite_filter.py +176 -0
  171. seeq-66.86.0.20251211/seeq/sdk/models/condition_batch_input_v1.py +126 -0
  172. seeq-66.86.0.20251211/seeq/sdk/models/condition_input_v1.py +622 -0
  173. seeq-66.86.0.20251211/seeq/sdk/models/condition_monitor_input_v1.py +462 -0
  174. seeq-66.86.0.20251211/seeq/sdk/models/condition_monitor_metadata_output_list_v1.py +296 -0
  175. seeq-66.86.0.20251211/seeq/sdk/models/condition_monitor_metadata_output_v1.py +298 -0
  176. seeq-66.86.0.20251211/seeq/sdk/models/condition_monitor_notification_configuration_input_v1.py +320 -0
  177. seeq-66.86.0.20251211/seeq/sdk/models/condition_monitor_output_v1.py +900 -0
  178. seeq-66.86.0.20251211/seeq/sdk/models/condition_monitor_workbook_output_v1.py +186 -0
  179. seeq-66.86.0.20251211/seeq/sdk/models/condition_output_v1.py +828 -0
  180. seeq-66.86.0.20251211/seeq/sdk/models/condition_source_v1.py +148 -0
  181. seeq-66.86.0.20251211/seeq/sdk/models/condition_table_input_v1.py +292 -0
  182. seeq-66.86.0.20251211/seeq/sdk/models/condition_table_stat_input_for_direct_items_v1.py +156 -0
  183. seeq-66.86.0.20251211/seeq/sdk/models/condition_table_stat_input_for_table_v1.py +182 -0
  184. seeq-66.86.0.20251211/seeq/sdk/models/condition_update_input_v1.py +706 -0
  185. seeq-66.86.0.20251211/seeq/sdk/models/config_field_v1.py +300 -0
  186. seeq-66.86.0.20251211/seeq/sdk/models/configuration_input_v1.py +152 -0
  187. seeq-66.86.0.20251211/seeq/sdk/models/configuration_option_input_v1.py +182 -0
  188. seeq-66.86.0.20251211/seeq/sdk/models/configuration_option_output_simple_v1.py +156 -0
  189. seeq-66.86.0.20251211/seeq/sdk/models/configuration_option_output_v1.py +470 -0
  190. seeq-66.86.0.20251211/seeq/sdk/models/configuration_output_v1.py +296 -0
  191. seeq-66.86.0.20251211/seeq/sdk/models/configured_directives_output_v1.py +180 -0
  192. seeq-66.86.0.20251211/seeq/sdk/models/connection_input_v1.py +292 -0
  193. seeq-66.86.0.20251211/seeq/sdk/models/connection_output_v1.py +884 -0
  194. seeq-66.86.0.20251211/seeq/sdk/models/connection_status_output_v1.py +578 -0
  195. seeq-66.86.0.20251211/seeq/sdk/models/connection_status_v1.py +528 -0
  196. seeq-66.86.0.20251211/seeq/sdk/models/connections_output_v1.py +124 -0
  197. seeq-66.86.0.20251211/seeq/sdk/models/connector_input_v1.py +180 -0
  198. seeq-66.86.0.20251211/seeq/sdk/models/connector_output_v1.py +520 -0
  199. seeq-66.86.0.20251211/seeq/sdk/models/connectors_output_v1.py +124 -0
  200. seeq-66.86.0.20251211/seeq/sdk/models/content_input_v1.py +638 -0
  201. seeq-66.86.0.20251211/seeq/sdk/models/content_output_v1.py +884 -0
  202. seeq-66.86.0.20251211/seeq/sdk/models/content_with_metadata_list_output_v1.py +180 -0
  203. seeq-66.86.0.20251211/seeq/sdk/models/content_with_metadata_output_v1.py +1072 -0
  204. seeq-66.86.0.20251211/seeq/sdk/models/context_comment_input_v1.py +290 -0
  205. seeq-66.86.0.20251211/seeq/sdk/models/context_comment_list_output_v1.py +126 -0
  206. seeq-66.86.0.20251211/seeq/sdk/models/context_comment_output_v1.py +578 -0
  207. seeq-66.86.0.20251211/seeq/sdk/models/context_condition_output_list_v1.py +124 -0
  208. seeq-66.86.0.20251211/seeq/sdk/models/context_condition_output_v1.py +156 -0
  209. seeq-66.86.0.20251211/seeq/sdk/models/context_id_input_v1.py +154 -0
  210. seeq-66.86.0.20251211/seeq/sdk/models/context_item.py +208 -0
  211. seeq-66.86.0.20251211/seeq/sdk/models/context_label_input_v1.py +236 -0
  212. seeq-66.86.0.20251211/seeq/sdk/models/context_label_list_output_v1.py +126 -0
  213. seeq-66.86.0.20251211/seeq/sdk/models/context_label_output_v1.py +584 -0
  214. seeq-66.86.0.20251211/seeq/sdk/models/context_label_with_id_input_v1.py +264 -0
  215. seeq-66.86.0.20251211/seeq/sdk/models/context_numeric_input_v1.py +264 -0
  216. seeq-66.86.0.20251211/seeq/sdk/models/context_numeric_list_output_v1.py +126 -0
  217. seeq-66.86.0.20251211/seeq/sdk/models/context_numeric_output_v1.py +580 -0
  218. seeq-66.86.0.20251211/seeq/sdk/models/context_opaque_input_v1.py +264 -0
  219. seeq-66.86.0.20251211/seeq/sdk/models/context_opaque_list_output_v1.py +126 -0
  220. seeq-66.86.0.20251211/seeq/sdk/models/context_opaque_output_v1.py +554 -0
  221. seeq-66.86.0.20251211/seeq/sdk/models/context_user.py +152 -0
  222. seeq-66.86.0.20251211/seeq/sdk/models/csv_datafile_output_v1.py +126 -0
  223. seeq-66.86.0.20251211/seeq/sdk/models/datafile_input_v1.py +1104 -0
  224. seeq-66.86.0.20251211/seeq/sdk/models/datafile_output_v1.py +1332 -0
  225. seeq-66.86.0.20251211/seeq/sdk/models/datafiles_csv_body.py +126 -0
  226. seeq-66.86.0.20251211/seeq/sdk/models/datasource_access_stats_v1.py +216 -0
  227. seeq-66.86.0.20251211/seeq/sdk/models/datasource_cache_clear_output_v1.py +156 -0
  228. seeq-66.86.0.20251211/seeq/sdk/models/datasource_clean_up_input_v1.py +266 -0
  229. seeq-66.86.0.20251211/seeq/sdk/models/datasource_clean_up_output_v1.py +150 -0
  230. seeq-66.86.0.20251211/seeq/sdk/models/datasource_input_v1.py +382 -0
  231. seeq-66.86.0.20251211/seeq/sdk/models/datasource_output_list_v1.py +264 -0
  232. seeq-66.86.0.20251211/seeq/sdk/models/datasource_output_v1.py +688 -0
  233. seeq-66.86.0.20251211/seeq/sdk/models/datasource_pair_output_v1.py +156 -0
  234. seeq-66.86.0.20251211/seeq/sdk/models/datasource_pairs_output_v1.py +264 -0
  235. seeq-66.86.0.20251211/seeq/sdk/models/datasource_preview_v1.py +326 -0
  236. seeq-66.86.0.20251211/seeq/sdk/models/datasource_statistics_v1.py +432 -0
  237. seeq-66.86.0.20251211/seeq/sdk/models/datasource_status_output_v1.py +294 -0
  238. seeq-66.86.0.20251211/seeq/sdk/models/datasource_status_v1.py +318 -0
  239. seeq-66.86.0.20251211/seeq/sdk/models/datasource_summary_status_output_v1.py +802 -0
  240. seeq-66.86.0.20251211/seeq/sdk/models/datasources_status_output_v1.py +300 -0
  241. seeq-66.86.0.20251211/seeq/sdk/models/date_range_input_v1.py +352 -0
  242. seeq-66.86.0.20251211/seeq/sdk/models/date_range_output_v1.py +598 -0
  243. seeq-66.86.0.20251211/seeq/sdk/models/debug_cache_block_output_v1.py +148 -0
  244. seeq-66.86.0.20251211/seeq/sdk/models/delete_column_error_output_v1.py +184 -0
  245. seeq-66.86.0.20251211/seeq/sdk/models/delete_rows_input_v1.py +126 -0
  246. seeq-66.86.0.20251211/seeq/sdk/models/delete_rows_output_v1.py +124 -0
  247. seeq-66.86.0.20251211/seeq/sdk/models/derived_feature_v1.py +270 -0
  248. seeq-66.86.0.20251211/seeq/sdk/models/detailed_meter_output_v1.py +180 -0
  249. seeq-66.86.0.20251211/seeq/sdk/models/detailed_timer_output_v1.py +208 -0
  250. seeq-66.86.0.20251211/seeq/sdk/models/direct_item_ids_source_v1.py +154 -0
  251. seeq-66.86.0.20251211/seeq/sdk/models/directive_input_v1.py +180 -0
  252. seeq-66.86.0.20251211/seeq/sdk/models/display_input_v1.py +180 -0
  253. seeq-66.86.0.20251211/seeq/sdk/models/display_output_list_v1.py +264 -0
  254. seeq-66.86.0.20251211/seeq/sdk/models/display_output_v1.py +500 -0
  255. seeq-66.86.0.20251211/seeq/sdk/models/display_template_input_v1.py +298 -0
  256. seeq-66.86.0.20251211/seeq/sdk/models/display_template_output_list_v1.py +264 -0
  257. seeq-66.86.0.20251211/seeq/sdk/models/display_template_output_v1.py +520 -0
  258. seeq-66.86.0.20251211/seeq/sdk/models/document_backup_output_v1.py +180 -0
  259. seeq-66.86.0.20251211/seeq/sdk/models/double_config_field_v1.py +152 -0
  260. seeq-66.86.0.20251211/seeq/sdk/models/duration_config_field_v1.py +152 -0
  261. seeq-66.86.0.20251211/seeq/sdk/models/email_notification_recipient_output_v1.py +208 -0
  262. seeq-66.86.0.20251211/seeq/sdk/models/emailer_configuration_output_v1.py +186 -0
  263. seeq-66.86.0.20251211/seeq/sdk/models/enum_config_field_v1.py +150 -0
  264. seeq-66.86.0.20251211/seeq/sdk/models/export_item_v1.py +216 -0
  265. seeq-66.86.0.20251211/seeq/sdk/models/export_items_output_v1.py +742 -0
  266. seeq-66.86.0.20251211/seeq/sdk/models/export_items_v1.py +578 -0
  267. seeq-66.86.0.20251211/seeq/sdk/models/export_preview_list_v1.py +264 -0
  268. seeq-66.86.0.20251211/seeq/sdk/models/export_preview_v1.py +382 -0
  269. seeq-66.86.0.20251211/seeq/sdk/models/feature_argument_output_v1.py +156 -0
  270. seeq-66.86.0.20251211/seeq/sdk/models/feature_output_v1.py +244 -0
  271. seeq-66.86.0.20251211/seeq/sdk/models/feature_rule_v1.py +258 -0
  272. seeq-66.86.0.20251211/seeq/sdk/models/feature_value_output_v1.py +176 -0
  273. seeq-66.86.0.20251211/seeq/sdk/models/filter.py +174 -0
  274. seeq-66.86.0.20251211/seeq/sdk/models/fixed_list_search_v1.py +214 -0
  275. seeq-66.86.0.20251211/seeq/sdk/models/folded_stack_node_v1.py +252 -0
  276. seeq-66.86.0.20251211/seeq/sdk/models/folder_input_v1.py +238 -0
  277. seeq-66.86.0.20251211/seeq/sdk/models/folder_navigation_output_v1.py +212 -0
  278. seeq-66.86.0.20251211/seeq/sdk/models/folder_output_v1.py +544 -0
  279. seeq-66.86.0.20251211/seeq/sdk/models/folder_search_results_v1.py +236 -0
  280. seeq-66.86.0.20251211/seeq/sdk/models/formula_compile_input_v1.py +152 -0
  281. seeq-66.86.0.20251211/seeq/sdk/models/formula_compile_output_v1.py +234 -0
  282. seeq-66.86.0.20251211/seeq/sdk/models/formula_compiler_error_output_v1.py +292 -0
  283. seeq-66.86.0.20251211/seeq/sdk/models/formula_dependency_input_v1.py +156 -0
  284. seeq-66.86.0.20251211/seeq/sdk/models/formula_doc_example_input_v1.py +152 -0
  285. seeq-66.86.0.20251211/seeq/sdk/models/formula_doc_example_list_input_v1.py +126 -0
  286. seeq-66.86.0.20251211/seeq/sdk/models/formula_doc_input_v1.py +260 -0
  287. seeq-66.86.0.20251211/seeq/sdk/models/formula_doc_keyword_list_input_v1.py +126 -0
  288. seeq-66.86.0.20251211/seeq/sdk/models/formula_doc_output_v1.py +740 -0
  289. seeq-66.86.0.20251211/seeq/sdk/models/formula_doc_summaries_output_v1.py +122 -0
  290. seeq-66.86.0.20251211/seeq/sdk/models/formula_doc_summary_output_v1.py +292 -0
  291. seeq-66.86.0.20251211/seeq/sdk/models/formula_error_output_v1.py +264 -0
  292. seeq-66.86.0.20251211/seeq/sdk/models/formula_example_output_v1.py +152 -0
  293. seeq-66.86.0.20251211/seeq/sdk/models/formula_generic_output_v1.py +156 -0
  294. seeq-66.86.0.20251211/seeq/sdk/models/formula_item_input_v1.py +604 -0
  295. seeq-66.86.0.20251211/seeq/sdk/models/formula_item_output_v1.py +658 -0
  296. seeq-66.86.0.20251211/seeq/sdk/models/formula_log_entry.py +148 -0
  297. seeq-66.86.0.20251211/seeq/sdk/models/formula_log_entry_details.py +148 -0
  298. seeq-66.86.0.20251211/seeq/sdk/models/formula_log_v1.py +154 -0
  299. seeq-66.86.0.20251211/seeq/sdk/models/formula_package_import_input_v1.py +212 -0
  300. seeq-66.86.0.20251211/seeq/sdk/models/formula_package_import_output_v1.py +206 -0
  301. seeq-66.86.0.20251211/seeq/sdk/models/formula_package_input_v1.py +292 -0
  302. seeq-66.86.0.20251211/seeq/sdk/models/formula_package_output_v1.py +600 -0
  303. seeq-66.86.0.20251211/seeq/sdk/models/formula_parameter_input_v1.py +238 -0
  304. seeq-66.86.0.20251211/seeq/sdk/models/formula_parameter_output_v1.py +208 -0
  305. seeq-66.86.0.20251211/seeq/sdk/models/formula_run_input_v1.py +432 -0
  306. seeq-66.86.0.20251211/seeq/sdk/models/formula_run_output_v1.py +420 -0
  307. seeq-66.86.0.20251211/seeq/sdk/models/formula_token.py +200 -0
  308. seeq-66.86.0.20251211/seeq/sdk/models/formula_update_input_v1.py +182 -0
  309. seeq-66.86.0.20251211/seeq/sdk/models/formula_upgrade_change_v1.py +152 -0
  310. seeq-66.86.0.20251211/seeq/sdk/models/formula_upgrade_output_v1.py +236 -0
  311. seeq-66.86.0.20251211/seeq/sdk/models/function_input_v1.py +434 -0
  312. seeq-66.86.0.20251211/seeq/sdk/models/function_parameter_output_v1.py +180 -0
  313. seeq-66.86.0.20251211/seeq/sdk/models/function_variant_output_v1.py +264 -0
  314. seeq-66.86.0.20251211/seeq/sdk/models/gauge_datum_v1.py +184 -0
  315. seeq-66.86.0.20251211/seeq/sdk/models/generic_table_output_v1.py +156 -0
  316. seeq-66.86.0.20251211/seeq/sdk/models/get_add_on_tools_output_v1.py +124 -0
  317. seeq-66.86.0.20251211/seeq/sdk/models/get_all_context_input_v1.py +230 -0
  318. seeq-66.86.0.20251211/seeq/sdk/models/get_channels_output_v1.py +264 -0
  319. seeq-66.86.0.20251211/seeq/sdk/models/get_condition_monitor_items_output_v1.py +296 -0
  320. seeq-66.86.0.20251211/seeq/sdk/models/get_content_items_output_v1.py +264 -0
  321. seeq-66.86.0.20251211/seeq/sdk/models/get_context_condition_input_v1.py +126 -0
  322. seeq-66.86.0.20251211/seeq/sdk/models/get_context_input_v1.py +152 -0
  323. seeq-66.86.0.20251211/seeq/sdk/models/get_date_ranges_output_v1.py +264 -0
  324. seeq-66.86.0.20251211/seeq/sdk/models/get_jobs_output_v1.py +264 -0
  325. seeq-66.86.0.20251211/seeq/sdk/models/get_metrics_output_v1.py +264 -0
  326. seeq-66.86.0.20251211/seeq/sdk/models/get_organizations_output_v1.py +294 -0
  327. seeq-66.86.0.20251211/seeq/sdk/models/get_projects_output_v1.py +264 -0
  328. seeq-66.86.0.20251211/seeq/sdk/models/get_request_output_v1.py +150 -0
  329. seeq-66.86.0.20251211/seeq/sdk/models/get_requests_output_v1.py +124 -0
  330. seeq-66.86.0.20251211/seeq/sdk/models/get_sample_output_v1.py +206 -0
  331. seeq-66.86.0.20251211/seeq/sdk/models/get_samples_output_v1.py +348 -0
  332. seeq-66.86.0.20251211/seeq/sdk/models/get_signal_monitor_items_output_v1.py +292 -0
  333. seeq-66.86.0.20251211/seeq/sdk/models/get_signals_output_v1.py +264 -0
  334. seeq-66.86.0.20251211/seeq/sdk/models/graph_ql_input_v1.py +152 -0
  335. seeq-66.86.0.20251211/seeq/sdk/models/graph_ql_output_v1.py +152 -0
  336. seeq-66.86.0.20251211/seeq/sdk/models/hierarchy_input_v1.py +296 -0
  337. seeq-66.86.0.20251211/seeq/sdk/models/hierarchy_node_output_list_v1.py +150 -0
  338. seeq-66.86.0.20251211/seeq/sdk/models/hierarchy_node_output_v1.py +212 -0
  339. seeq-66.86.0.20251211/seeq/sdk/models/hierarchy_node_with_path_output_v1.py +214 -0
  340. seeq-66.86.0.20251211/seeq/sdk/models/hierarchy_output_list_v1.py +266 -0
  341. seeq-66.86.0.20251211/seeq/sdk/models/hierarchy_output_v1.py +494 -0
  342. seeq-66.86.0.20251211/seeq/sdk/models/hierarchy_search_v1.py +242 -0
  343. seeq-66.86.0.20251211/seeq/sdk/models/hierarchy_validation_output_v1.py +154 -0
  344. seeq-66.86.0.20251211/seeq/sdk/models/id_images_body.py +126 -0
  345. seeq-66.86.0.20251211/seeq/sdk/models/identity_mapping_list_v1.py +124 -0
  346. seeq-66.86.0.20251211/seeq/sdk/models/identity_mapping_v1.py +180 -0
  347. seeq-66.86.0.20251211/seeq/sdk/models/identity_preview_list_v1.py +294 -0
  348. seeq-66.86.0.20251211/seeq/sdk/models/identity_preview_v1.py +462 -0
  349. seeq-66.86.0.20251211/seeq/sdk/models/import_table_csv_output_v1.py +126 -0
  350. seeq-66.86.0.20251211/seeq/sdk/models/indexing_parameters_input_v1.py +152 -0
  351. seeq-66.86.0.20251211/seeq/sdk/models/input_feature_v1.py +208 -0
  352. seeq-66.86.0.20251211/seeq/sdk/models/installer_output_v1.py +180 -0
  353. seeq-66.86.0.20251211/seeq/sdk/models/instance_output_mapping_v1.py +206 -0
  354. seeq-66.86.0.20251211/seeq/sdk/models/instance_output_paginated_list_v1.py +264 -0
  355. seeq-66.86.0.20251211/seeq/sdk/models/instance_output_v1.py +320 -0
  356. seeq-66.86.0.20251211/seeq/sdk/models/instance_retired_output_v1.py +152 -0
  357. seeq-66.86.0.20251211/seeq/sdk/models/interval_v1.py +152 -0
  358. seeq-66.86.0.20251211/seeq/sdk/models/invalid_swap_out_v1.py +122 -0
  359. seeq-66.86.0.20251211/seeq/sdk/models/issue_summary_output_v1.py +246 -0
  360. seeq-66.86.0.20251211/seeq/sdk/models/item_batch_output_v1.py +178 -0
  361. seeq-66.86.0.20251211/seeq/sdk/models/item_dependency_output_v1.py +412 -0
  362. seeq-66.86.0.20251211/seeq/sdk/models/item_finder_input_v1.py +462 -0
  363. seeq-66.86.0.20251211/seeq/sdk/models/item_finder_output_list_v1.py +266 -0
  364. seeq-66.86.0.20251211/seeq/sdk/models/item_finder_output_v1.py +612 -0
  365. seeq-66.86.0.20251211/seeq/sdk/models/item_finder_searches_input_v1.py +264 -0
  366. seeq-66.86.0.20251211/seeq/sdk/models/item_finder_searches_output_v1.py +186 -0
  367. seeq-66.86.0.20251211/seeq/sdk/models/item_id_list_input_v1.py +126 -0
  368. seeq-66.86.0.20251211/seeq/sdk/models/item_metadata.py +200 -0
  369. seeq-66.86.0.20251211/seeq/sdk/models/item_output_v1.py +548 -0
  370. seeq-66.86.0.20251211/seeq/sdk/models/item_parameter_of_output_v1.py +410 -0
  371. seeq-66.86.0.20251211/seeq/sdk/models/item_preview_list_v1.py +294 -0
  372. seeq-66.86.0.20251211/seeq/sdk/models/item_preview_v1.py +270 -0
  373. seeq-66.86.0.20251211/seeq/sdk/models/item_preview_with_assets_v1.py +354 -0
  374. seeq-66.86.0.20251211/seeq/sdk/models/item_search_input_v1.py +320 -0
  375. seeq-66.86.0.20251211/seeq/sdk/models/item_search_preview_list_v1.py +152 -0
  376. seeq-66.86.0.20251211/seeq/sdk/models/item_search_preview_paginated_list_v1.py +294 -0
  377. seeq-66.86.0.20251211/seeq/sdk/models/item_search_preview_v1.py +548 -0
  378. seeq-66.86.0.20251211/seeq/sdk/models/item_swap_result_output_v1.py +176 -0
  379. seeq-66.86.0.20251211/seeq/sdk/models/item_update_output_v1.py +234 -0
  380. seeq-66.86.0.20251211/seeq/sdk/models/item_user_attributes_input_v1.py +178 -0
  381. seeq-66.86.0.20251211/seeq/sdk/models/item_user_attributes_output_v1.py +236 -0
  382. seeq-66.86.0.20251211/seeq/sdk/models/item_with_swap_pairs_v1.py +184 -0
  383. seeq-66.86.0.20251211/seeq/sdk/models/jira_attachment.py +174 -0
  384. seeq-66.86.0.20251211/seeq/sdk/models/jira_attachment_media_type.py +226 -0
  385. seeq-66.86.0.20251211/seeq/sdk/models/job_accepted_output_v1.py +208 -0
  386. seeq-66.86.0.20251211/seeq/sdk/models/job_output_v1.py +522 -0
  387. seeq-66.86.0.20251211/seeq/sdk/models/json_backup_output_v1.py +180 -0
  388. seeq-66.86.0.20251211/seeq/sdk/models/label_category_input_v1.py +236 -0
  389. seeq-66.86.0.20251211/seeq/sdk/models/label_category_output_list_v1.py +124 -0
  390. seeq-66.86.0.20251211/seeq/sdk/models/label_category_output_v1.py +320 -0
  391. seeq-66.86.0.20251211/seeq/sdk/models/label_hierarchy_input_v1.py +208 -0
  392. seeq-66.86.0.20251211/seeq/sdk/models/label_hierarchy_output_list_v1.py +126 -0
  393. seeq-66.86.0.20251211/seeq/sdk/models/label_hierarchy_output_v1.py +246 -0
  394. seeq-66.86.0.20251211/seeq/sdk/models/label_input_v1.py +236 -0
  395. seeq-66.86.0.20251211/seeq/sdk/models/label_output_list_v1.py +124 -0
  396. seeq-66.86.0.20251211/seeq/sdk/models/label_output_v1.py +322 -0
  397. seeq-66.86.0.20251211/seeq/sdk/models/last_run_state_output_v1.py +322 -0
  398. seeq-66.86.0.20251211/seeq/sdk/models/license_importer_output_v1.py +152 -0
  399. seeq-66.86.0.20251211/seeq/sdk/models/license_status_output_v1.py +432 -0
  400. seeq-66.86.0.20251211/seeq/sdk/models/licensed_feature_status_output_v1.py +208 -0
  401. seeq-66.86.0.20251211/seeq/sdk/models/list_config_field_v1.py +206 -0
  402. seeq-66.86.0.20251211/seeq/sdk/models/lock_error_output_v1.py +182 -0
  403. seeq-66.86.0.20251211/seeq/sdk/models/lock_error_path_output_v1.py +178 -0
  404. seeq-66.86.0.20251211/seeq/sdk/models/lock_errors_output_v1.py +154 -0
  405. seeq-66.86.0.20251211/seeq/sdk/models/lock_item_output_v1.py +354 -0
  406. seeq-66.86.0.20251211/seeq/sdk/models/locked_item_list_output_v1.py +124 -0
  407. seeq-66.86.0.20251211/seeq/sdk/models/log_message.py +350 -0
  408. seeq-66.86.0.20251211/seeq/sdk/models/log_message_input_v1.py +272 -0
  409. seeq-66.86.0.20251211/seeq/sdk/models/log_message_output_v1.py +300 -0
  410. seeq-66.86.0.20251211/seeq/sdk/models/long_config_field_v1.py +152 -0
  411. seeq-66.86.0.20251211/seeq/sdk/models/manual_run_input_v1.py +212 -0
  412. seeq-66.86.0.20251211/seeq/sdk/models/markdown_item_input_v1.py +242 -0
  413. seeq-66.86.0.20251211/seeq/sdk/models/markdown_item_list_v1.py +266 -0
  414. seeq-66.86.0.20251211/seeq/sdk/models/markdown_item_output_v1.py +552 -0
  415. seeq-66.86.0.20251211/seeq/sdk/models/markdown_link_upload_output_v1.py +152 -0
  416. seeq-66.86.0.20251211/seeq/sdk/models/markdown_links_body.py +126 -0
  417. seeq-66.86.0.20251211/seeq/sdk/models/materialized_table_header_v1.py +154 -0
  418. seeq-66.86.0.20251211/seeq/sdk/models/materialized_table_source_v1.py +212 -0
  419. seeq-66.86.0.20251211/seeq/sdk/models/materialized_table_v1.py +156 -0
  420. seeq-66.86.0.20251211/seeq/sdk/models/meter_datum_v1.py +182 -0
  421. seeq-66.86.0.20251211/seeq/sdk/models/migrate_editor_input_v1.py +124 -0
  422. seeq-66.86.0.20251211/seeq/sdk/models/model_application_error_output_v1.py +264 -0
  423. seeq-66.86.0.20251211/seeq/sdk/models/model_application_input_v1.py +124 -0
  424. seeq-66.86.0.20251211/seeq/sdk/models/model_application_mapping_v1.py +292 -0
  425. seeq-66.86.0.20251211/seeq/sdk/models/model_boolean_constant_rule_v1.py +124 -0
  426. seeq-66.86.0.20251211/seeq/sdk/models/model_derived_column_names_input_v1.py +156 -0
  427. seeq-66.86.0.20251211/seeq/sdk/models/model_formula_creator_rule_v1.py +336 -0
  428. seeq-66.86.0.20251211/seeq/sdk/models/model_from_ids_input_v1.py +270 -0
  429. seeq-66.86.0.20251211/seeq/sdk/models/model_output_list_v1.py +266 -0
  430. seeq-66.86.0.20251211/seeq/sdk/models/model_output_v1.py +464 -0
  431. seeq-66.86.0.20251211/seeq/sdk/models/model_rule_input_v1_list_string.py +324 -0
  432. seeq-66.86.0.20251211/seeq/sdk/models/model_rule_input_v1_object.py +324 -0
  433. seeq-66.86.0.20251211/seeq/sdk/models/model_rule_input_v1_string.py +324 -0
  434. seeq-66.86.0.20251211/seeq/sdk/models/model_rule_input_v1_uuid.py +324 -0
  435. seeq-66.86.0.20251211/seeq/sdk/models/model_scalar_creator_rule_v1.py +228 -0
  436. seeq-66.86.0.20251211/seeq/sdk/models/model_table_application_output_v1.py +124 -0
  437. seeq-66.86.0.20251211/seeq/sdk/models/model_table_applications_output_list_v1.py +124 -0
  438. seeq-66.86.0.20251211/seeq/sdk/models/model_table_applications_output_v1.py +208 -0
  439. seeq-66.86.0.20251211/seeq/sdk/models/model_v1.py +266 -0
  440. seeq-66.86.0.20251211/seeq/sdk/models/monitor_definition_output_v1.py +152 -0
  441. seeq-66.86.0.20251211/seeq/sdk/models/monitor_definitions_output_v1.py +122 -0
  442. seeq-66.86.0.20251211/seeq/sdk/models/monitor_input_v1.py +180 -0
  443. seeq-66.86.0.20251211/seeq/sdk/models/monitor_output_v1.py +122 -0
  444. seeq-66.86.0.20251211/seeq/sdk/models/monitor_values.py +538 -0
  445. seeq-66.86.0.20251211/seeq/sdk/models/monitored_condition_output_list_v1.py +156 -0
  446. seeq-66.86.0.20251211/seeq/sdk/models/monitored_condition_output_v1.py +238 -0
  447. seeq-66.86.0.20251211/seeq/sdk/models/monitored_signal_last_run_state_output_v1.py +292 -0
  448. seeq-66.86.0.20251211/seeq/sdk/models/monitored_signal_output_list_v1.py +126 -0
  449. seeq-66.86.0.20251211/seeq/sdk/models/monitored_signal_output_v1.py +154 -0
  450. seeq-66.86.0.20251211/seeq/sdk/models/monitors_output_v1.py +122 -0
  451. seeq-66.86.0.20251211/seeq/sdk/models/notifiable_report_output_list_v1.py +296 -0
  452. seeq-66.86.0.20251211/seeq/sdk/models/notifiable_report_output_v1.py +298 -0
  453. seeq-66.86.0.20251211/seeq/sdk/models/notification_configuration_output_v1.py +358 -0
  454. seeq-66.86.0.20251211/seeq/sdk/models/numeric_description_input_v1.py +348 -0
  455. seeq-66.86.0.20251211/seeq/sdk/models/numeric_description_output_list_v1.py +124 -0
  456. seeq-66.86.0.20251211/seeq/sdk/models/numeric_description_output_v1.py +376 -0
  457. seeq-66.86.0.20251211/seeq/sdk/models/one_off_model_application_input_v1.py +214 -0
  458. seeq-66.86.0.20251211/seeq/sdk/models/optional_report_input_v1.py +208 -0
  459. seeq-66.86.0.20251211/seeq/sdk/models/organization_input_v1.py +182 -0
  460. seeq-66.86.0.20251211/seeq/sdk/models/organization_output_v1.py +544 -0
  461. seeq-66.86.0.20251211/seeq/sdk/models/parameter_doc_output_v1.py +236 -0
  462. seeq-66.86.0.20251211/seeq/sdk/models/password_reset_input.py +186 -0
  463. seeq-66.86.0.20251211/seeq/sdk/models/permissions_v1.py +174 -0
  464. seeq-66.86.0.20251211/seeq/sdk/models/plugin_output_list_v1.py +294 -0
  465. seeq-66.86.0.20251211/seeq/sdk/models/plugin_output_v1.py +602 -0
  466. seeq-66.86.0.20251211/seeq/sdk/models/plugins_body.py +126 -0
  467. seeq-66.86.0.20251211/seeq/sdk/models/pre_cached_condition_capsule_property_info_v1.py +152 -0
  468. seeq-66.86.0.20251211/seeq/sdk/models/pre_provision_input_v1.py +210 -0
  469. seeq-66.86.0.20251211/seeq/sdk/models/pre_provision_output_v1.py +148 -0
  470. seeq-66.86.0.20251211/seeq/sdk/models/precached_item_output_v1.py +348 -0
  471. seeq-66.86.0.20251211/seeq/sdk/models/precached_items_output_v1.py +174 -0
  472. seeq-66.86.0.20251211/seeq/sdk/models/priority_v1.py +186 -0
  473. seeq-66.86.0.20251211/seeq/sdk/models/progress_information_output_v1.py +148 -0
  474. seeq-66.86.0.20251211/seeq/sdk/models/project_input_v1.py +322 -0
  475. seeq-66.86.0.20251211/seeq/sdk/models/project_output_v1.py +684 -0
  476. seeq-66.86.0.20251211/seeq/sdk/models/properties_for_item_uuid_column_input_v1.py +156 -0
  477. seeq-66.86.0.20251211/seeq/sdk/models/property_filter_input_v1.py +186 -0
  478. seeq-66.86.0.20251211/seeq/sdk/models/property_href_output_v1.py +154 -0
  479. seeq-66.86.0.20251211/seeq/sdk/models/property_input_v1.py +154 -0
  480. seeq-66.86.0.20251211/seeq/sdk/models/property_output_v1.py +240 -0
  481. seeq-66.86.0.20251211/seeq/sdk/models/property_search_v1.py +298 -0
  482. seeq-66.86.0.20251211/seeq/sdk/models/provision_input_v1.py +184 -0
  483. seeq-66.86.0.20251211/seeq/sdk/models/put_asset_input_v1.py +430 -0
  484. seeq-66.86.0.20251211/seeq/sdk/models/put_scalar_input_v1.py +598 -0
  485. seeq-66.86.0.20251211/seeq/sdk/models/put_scalars_input_v1.py +214 -0
  486. seeq-66.86.0.20251211/seeq/sdk/models/put_signals_input_v1.py +126 -0
  487. seeq-66.86.0.20251211/seeq/sdk/models/put_user_groups_input_v1.py +126 -0
  488. seeq-66.86.0.20251211/seeq/sdk/models/recompute_table_input_v1.py +124 -0
  489. seeq-66.86.0.20251211/seeq/sdk/models/recompute_table_output_v1.py +124 -0
  490. seeq-66.86.0.20251211/seeq/sdk/models/referenced_input_item_v1.py +184 -0
  491. seeq-66.86.0.20251211/seeq/sdk/models/referenced_items_output_v1.py +124 -0
  492. seeq-66.86.0.20251211/seeq/sdk/models/referenced_output_item_v1.py +212 -0
  493. seeq-66.86.0.20251211/seeq/sdk/models/regex_config_field_v1.py +152 -0
  494. seeq-66.86.0.20251211/seeq/sdk/models/regression_output_v1.py +334 -0
  495. seeq-66.86.0.20251211/seeq/sdk/models/release_notes_output_v1.py +242 -0
  496. seeq-66.86.0.20251211/seeq/sdk/models/remote_agent_directives_output_v1.py +152 -0
  497. seeq-66.86.0.20251211/seeq/sdk/models/remote_agent_status_input_v1.py +448 -0
  498. seeq-66.86.0.20251211/seeq/sdk/models/remote_agent_status_output_v1.py +488 -0
  499. seeq-66.86.0.20251211/seeq/sdk/models/report_input_item_v1.py +182 -0
  500. seeq-66.86.0.20251211/seeq/sdk/models/report_input_v1.py +184 -0
  501. seeq-66.86.0.20251211/seeq/sdk/models/report_notification_configuration_input_v1.py +264 -0
  502. seeq-66.86.0.20251211/seeq/sdk/models/report_template_input_v1.py +212 -0
  503. seeq-66.86.0.20251211/seeq/sdk/models/report_template_output_v1.py +522 -0
  504. seeq-66.86.0.20251211/seeq/sdk/models/request_output_v1.py +496 -0
  505. seeq-66.86.0.20251211/seeq/sdk/models/request_password_reset_input.py +126 -0
  506. seeq-66.86.0.20251211/seeq/sdk/models/row_id.py +154 -0
  507. seeq-66.86.0.20251211/seeq/sdk/models/row_id_input_list_v1.py +126 -0
  508. seeq-66.86.0.20251211/seeq/sdk/models/row_id_input_v1.py +154 -0
  509. seeq-66.86.0.20251211/seeq/sdk/models/row_rules_result_v1.py +184 -0
  510. seeq-66.86.0.20251211/seeq/sdk/models/rules_result_message_v1.py +272 -0
  511. seeq-66.86.0.20251211/seeq/sdk/models/rules_result_v1.py +150 -0
  512. seeq-66.86.0.20251211/seeq/sdk/models/run_condition_monitor_job_input_v1.py +124 -0
  513. seeq-66.86.0.20251211/seeq/sdk/models/sample_input_v1.py +154 -0
  514. seeq-66.86.0.20251211/seeq/sdk/models/sample_output_v1.py +180 -0
  515. seeq-66.86.0.20251211/seeq/sdk/models/samples_input_v1.py +126 -0
  516. seeq-66.86.0.20251211/seeq/sdk/models/samples_output_v1.py +124 -0
  517. seeq-66.86.0.20251211/seeq/sdk/models/samples_overwrite_input_v1.py +152 -0
  518. seeq-66.86.0.20251211/seeq/sdk/models/scalar_evaluate_output_v1.py +378 -0
  519. seeq-66.86.0.20251211/seeq/sdk/models/scalar_input_v1.py +542 -0
  520. seeq-66.86.0.20251211/seeq/sdk/models/scalar_property_v1.py +184 -0
  521. seeq-66.86.0.20251211/seeq/sdk/models/scalar_value_output_v1.py +184 -0
  522. seeq-66.86.0.20251211/seeq/sdk/models/scale_across_tree_output_v1.py +152 -0
  523. seeq-66.86.0.20251211/seeq/sdk/models/scaling_table_uuid_column_search_v1.py +300 -0
  524. seeq-66.86.0.20251211/seeq/sdk/models/schedulable_admin_list_output_v1.py +292 -0
  525. seeq-66.86.0.20251211/seeq/sdk/models/schedulable_admin_output_v1.py +582 -0
  526. seeq-66.86.0.20251211/seeq/sdk/models/schedulable_summary_day_output_v1.py +152 -0
  527. seeq-66.86.0.20251211/seeq/sdk/models/schedulable_summary_week_output_v1.py +124 -0
  528. seeq-66.86.0.20251211/seeq/sdk/models/schedulable_workbook_output_v1.py +186 -0
  529. seeq-66.86.0.20251211/seeq/sdk/models/schedule_input_v1.py +152 -0
  530. seeq-66.86.0.20251211/seeq/sdk/models/schedule_output_v1.py +180 -0
  531. seeq-66.86.0.20251211/seeq/sdk/models/scheduled_notebook_input_v1.py +350 -0
  532. seeq-66.86.0.20251211/seeq/sdk/models/scheduled_notebook_list_output_v1.py +264 -0
  533. seeq-66.86.0.20251211/seeq/sdk/models/scheduled_notebook_output_v1.py +824 -0
  534. seeq-66.86.0.20251211/seeq/sdk/models/scheduled_notebook_result_input_v1.py +210 -0
  535. seeq-66.86.0.20251211/seeq/sdk/models/scim_token_input_v1.py +124 -0
  536. seeq-66.86.0.20251211/seeq/sdk/models/scim_token_output_v1.py +152 -0
  537. seeq-66.86.0.20251211/seeq/sdk/models/screenshot_output_v1.py +152 -0
  538. seeq-66.86.0.20251211/seeq/sdk/models/secret_config_field_v1.py +178 -0
  539. seeq-66.86.0.20251211/seeq/sdk/models/secret_status.py +122 -0
  540. seeq-66.86.0.20251211/seeq/sdk/models/see_also_doc_output_v1.py +208 -0
  541. seeq-66.86.0.20251211/seeq/sdk/models/send_email_attachment_v1.py +186 -0
  542. seeq-66.86.0.20251211/seeq/sdk/models/send_email_contact_v1.py +154 -0
  543. seeq-66.86.0.20251211/seeq/sdk/models/send_email_input_v1.py +304 -0
  544. seeq-66.86.0.20251211/seeq/sdk/models/sent_email_attachment_output_v1.py +186 -0
  545. seeq-66.86.0.20251211/seeq/sdk/models/sent_email_output_v1.py +446 -0
  546. seeq-66.86.0.20251211/seeq/sdk/models/sent_emails_list_output_v1.py +126 -0
  547. seeq-66.86.0.20251211/seeq/sdk/models/server_build_info_output_v1.py +124 -0
  548. seeq-66.86.0.20251211/seeq/sdk/models/server_load_output_v1.py +152 -0
  549. seeq-66.86.0.20251211/seeq/sdk/models/server_spec_output_v1.py +236 -0
  550. seeq-66.86.0.20251211/seeq/sdk/models/server_status_output_v1.py +372 -0
  551. seeq-66.86.0.20251211/seeq/sdk/models/set_trust_input_v1.py +124 -0
  552. seeq-66.86.0.20251211/seeq/sdk/models/shared_item_information.py +180 -0
  553. seeq-66.86.0.20251211/seeq/sdk/models/signal_input_v1.py +516 -0
  554. seeq-66.86.0.20251211/seeq/sdk/models/signal_monitor_input_v1.py +382 -0
  555. seeq-66.86.0.20251211/seeq/sdk/models/signal_monitor_metadata_output_list_v1.py +296 -0
  556. seeq-66.86.0.20251211/seeq/sdk/models/signal_monitor_metadata_output_v1.py +298 -0
  557. seeq-66.86.0.20251211/seeq/sdk/models/signal_monitor_output_v1.py +728 -0
  558. seeq-66.86.0.20251211/seeq/sdk/models/signal_monitor_workbook_output_v1.py +186 -0
  559. seeq-66.86.0.20251211/seeq/sdk/models/signal_output_v1.py +856 -0
  560. seeq-66.86.0.20251211/seeq/sdk/models/signal_with_id_input_v1.py +656 -0
  561. seeq-66.86.0.20251211/seeq/sdk/models/simple_filter.py +152 -0
  562. seeq-66.86.0.20251211/seeq/sdk/models/status_message.py +126 -0
  563. seeq-66.86.0.20251211/seeq/sdk/models/status_message_base.py +124 -0
  564. seeq-66.86.0.20251211/seeq/sdk/models/store_secret_input_v1.py +152 -0
  565. seeq-66.86.0.20251211/seeq/sdk/models/stored_table_column_input_v1.py +320 -0
  566. seeq-66.86.0.20251211/seeq/sdk/models/stored_table_column_output_v1.py +388 -0
  567. seeq-66.86.0.20251211/seeq/sdk/models/stored_table_csv_input_v1.py +330 -0
  568. seeq-66.86.0.20251211/seeq/sdk/models/stored_table_output_v1.py +522 -0
  569. seeq-66.86.0.20251211/seeq/sdk/models/stored_table_search_v1.py +274 -0
  570. seeq-66.86.0.20251211/seeq/sdk/models/storedtables_csv_body.py +126 -0
  571. seeq-66.86.0.20251211/seeq/sdk/models/string_config_field_v1.py +180 -0
  572. seeq-66.86.0.20251211/seeq/sdk/models/subscription_input_v1.py +154 -0
  573. seeq-66.86.0.20251211/seeq/sdk/models/subscription_output_v1.py +180 -0
  574. seeq-66.86.0.20251211/seeq/sdk/models/subscription_update_input_v1.py +126 -0
  575. seeq-66.86.0.20251211/seeq/sdk/models/support_request_input_v1.py +356 -0
  576. seeq-66.86.0.20251211/seeq/sdk/models/support_request_output_v1.py +156 -0
  577. seeq-66.86.0.20251211/seeq/sdk/models/supported_units_output_v1.py +152 -0
  578. seeq-66.86.0.20251211/seeq/sdk/models/suppress_condition_input_v1.py +210 -0
  579. seeq-66.86.0.20251211/seeq/sdk/models/suppressed_condition_input_v1.py +208 -0
  580. seeq-66.86.0.20251211/seeq/sdk/models/suppressed_condition_output_v1.py +208 -0
  581. seeq-66.86.0.20251211/seeq/sdk/models/swap_across_assets_search_v1.py +240 -0
  582. seeq-66.86.0.20251211/seeq/sdk/models/swap_input_v1.py +152 -0
  583. seeq-66.86.0.20251211/seeq/sdk/models/swap_option_list_v1.py +124 -0
  584. seeq-66.86.0.20251211/seeq/sdk/models/swap_option_v1.py +178 -0
  585. seeq-66.86.0.20251211/seeq/sdk/models/swap_output_v1.py +152 -0
  586. seeq-66.86.0.20251211/seeq/sdk/models/sync_progress.py +408 -0
  587. seeq-66.86.0.20251211/seeq/sdk/models/sync_progress_output_v1.py +590 -0
  588. seeq-66.86.0.20251211/seeq/sdk/models/system_license_body.py +126 -0
  589. seeq-66.86.0.20251211/seeq/sdk/models/table_application_retired_output_v1.py +152 -0
  590. seeq-66.86.0.20251211/seeq/sdk/models/table_column_output_v1.py +184 -0
  591. seeq-66.86.0.20251211/seeq/sdk/models/table_compute_output_v1.py +154 -0
  592. seeq-66.86.0.20251211/seeq/sdk/models/table_definition_csv_input_v1.py +384 -0
  593. seeq-66.86.0.20251211/seeq/sdk/models/table_definition_csv_publish_rows_input_v1.py +216 -0
  594. seeq-66.86.0.20251211/seeq/sdk/models/table_definition_csv_publish_rows_output_v1.py +156 -0
  595. seeq-66.86.0.20251211/seeq/sdk/models/table_definition_csv_update_input_v1.py +216 -0
  596. seeq-66.86.0.20251211/seeq/sdk/models/table_definition_input_v1.py +380 -0
  597. seeq-66.86.0.20251211/seeq/sdk/models/table_definition_output_list_v1.py +266 -0
  598. seeq-66.86.0.20251211/seeq/sdk/models/table_definition_output_v1.py +690 -0
  599. seeq-66.86.0.20251211/seeq/sdk/models/table_definition_preview_input_v1.py +180 -0
  600. seeq-66.86.0.20251211/seeq/sdk/models/table_definition_preview_output_v1.py +184 -0
  601. seeq-66.86.0.20251211/seeq/sdk/models/table_definition_update_input_v1.py +238 -0
  602. seeq-66.86.0.20251211/seeq/sdk/models/table_model_application_input_v1.py +154 -0
  603. seeq-66.86.0.20251211/seeq/sdk/models/table_property_filter_input_v1.py +212 -0
  604. seeq-66.86.0.20251211/seeq/sdk/models/table_result_output_v1.py +208 -0
  605. seeq-66.86.0.20251211/seeq/sdk/models/tabledefinitions_csv_body.py +126 -0
  606. seeq-66.86.0.20251211/seeq/sdk/models/threshold_metric_input_v1.py +546 -0
  607. seeq-66.86.0.20251211/seeq/sdk/models/threshold_metric_output_v1.py +850 -0
  608. seeq-66.86.0.20251211/seeq/sdk/models/threshold_output_v1.py +200 -0
  609. seeq-66.86.0.20251211/seeq/sdk/models/time_interval.py +304 -0
  610. seeq-66.86.0.20251211/seeq/sdk/models/timer_datum_v1.py +184 -0
  611. seeq-66.86.0.20251211/seeq/sdk/models/topic_sandbox_input_v1.py +154 -0
  612. seeq-66.86.0.20251211/seeq/sdk/models/tree_item_output_v1.py +744 -0
  613. seeq-66.86.0.20251211/seeq/sdk/models/treemap_item_output_v1.py +260 -0
  614. seeq-66.86.0.20251211/seeq/sdk/models/treemap_output_v1.py +344 -0
  615. seeq-66.86.0.20251211/seeq/sdk/models/units_of_measure_batch_input_v1.py +126 -0
  616. seeq-66.86.0.20251211/seeq/sdk/models/units_of_measure_item_v1.py +152 -0
  617. seeq-66.86.0.20251211/seeq/sdk/models/units_of_measure_output_v1.py +124 -0
  618. seeq-66.86.0.20251211/seeq/sdk/models/unsubscribe_output_v1.py +382 -0
  619. seeq-66.86.0.20251211/seeq/sdk/models/usage_output_list_v1.py +156 -0
  620. seeq-66.86.0.20251211/seeq/sdk/models/usage_output_v1.py +472 -0
  621. seeq-66.86.0.20251211/seeq/sdk/models/usage_types_v1.py +124 -0
  622. seeq-66.86.0.20251211/seeq/sdk/models/user_group_input_v1.py +320 -0
  623. seeq-66.86.0.20251211/seeq/sdk/models/user_group_output_v1.py +688 -0
  624. seeq-66.86.0.20251211/seeq/sdk/models/user_group_with_id_input_v1.py +404 -0
  625. seeq-66.86.0.20251211/seeq/sdk/models/user_input_v1.py +692 -0
  626. seeq-66.86.0.20251211/seeq/sdk/models/user_output_list_v1.py +294 -0
  627. seeq-66.86.0.20251211/seeq/sdk/models/user_output_v1.py +1240 -0
  628. seeq-66.86.0.20251211/seeq/sdk/models/user_password_input_v1.py +154 -0
  629. seeq-66.86.0.20251211/seeq/sdk/models/validate_cron_list_input_v1.py +182 -0
  630. seeq-66.86.0.20251211/seeq/sdk/models/validate_cron_list_output_v1.py +124 -0
  631. seeq-66.86.0.20251211/seeq/sdk/models/validate_cron_output_v1.py +236 -0
  632. seeq-66.86.0.20251211/seeq/sdk/models/value.py +122 -0
  633. seeq-66.86.0.20251211/seeq/sdk/models/value_filter.py +178 -0
  634. seeq-66.86.0.20251211/seeq/sdk/models/version_history_output_list_v1.py +156 -0
  635. seeq-66.86.0.20251211/seeq/sdk/models/version_history_output_v1.py +412 -0
  636. seeq-66.86.0.20251211/seeq/sdk/models/version_input_v1.py +154 -0
  637. seeq-66.86.0.20251211/seeq/sdk/models/version_output_v1.py +266 -0
  638. seeq-66.86.0.20251211/seeq/sdk/models/version_source_output_v1.py +156 -0
  639. seeq-66.86.0.20251211/seeq/sdk/models/view_column_filter_input_v1.py +182 -0
  640. seeq-66.86.0.20251211/seeq/sdk/models/view_column_filter_output_v1.py +180 -0
  641. seeq-66.86.0.20251211/seeq/sdk/models/view_column_input_v1.py +236 -0
  642. seeq-66.86.0.20251211/seeq/sdk/models/view_column_output_v1.py +236 -0
  643. seeq-66.86.0.20251211/seeq/sdk/models/workbench_item_output_list_v1.py +322 -0
  644. seeq-66.86.0.20251211/seeq/sdk/models/workbench_search_result_preview_v1.py +714 -0
  645. seeq-66.86.0.20251211/seeq/sdk/models/workbook_input_v1.py +266 -0
  646. seeq-66.86.0.20251211/seeq/sdk/models/workbook_output_list_v1.py +264 -0
  647. seeq-66.86.0.20251211/seeq/sdk/models/workbook_output_v1.py +628 -0
  648. seeq-66.86.0.20251211/seeq/sdk/models/workbook_owner_output_v1.py +152 -0
  649. seeq-66.86.0.20251211/seeq/sdk/models/worksheet_input_v1.py +232 -0
  650. seeq-66.86.0.20251211/seeq/sdk/models/worksheet_output_list_v1.py +264 -0
  651. seeq-66.86.0.20251211/seeq/sdk/models/worksheet_output_v1.py +546 -0
  652. seeq-66.86.0.20251211/seeq/sdk/models/workstep_chronology_entry_v1.py +152 -0
  653. seeq-66.86.0.20251211/seeq/sdk/models/workstep_chronology_output_v1.py +180 -0
  654. seeq-66.86.0.20251211/seeq/sdk/models/workstep_input_v1.py +126 -0
  655. seeq-66.86.0.20251211/seeq/sdk/models/workstep_output_v1.py +520 -0
  656. seeq-66.86.0.20251211/seeq/sdk/rest.py +326 -0
  657. seeq-66.86.0.20251211/seeq.egg-info/PKG-INFO +520 -0
  658. seeq-66.86.0.20251211/seeq.egg-info/SOURCES.txt +664 -0
  659. seeq-66.86.0.20251211/seeq.egg-info/requires.txt +5 -0
  660. seeq-66.86.0.20251211/setup.py +15 -0
  661. seeq-65.1.13/PKG-INFO +0 -99
  662. seeq-65.1.13/README.md +0 -83
  663. seeq-65.1.13/pyproject.toml +0 -0
  664. seeq-65.1.13/seeq/sdk/__init__.py +0 -458
  665. seeq-65.1.13/seeq/sdk/api/__init__.py +0 -63
  666. seeq-65.1.13/seeq/sdk/api/access_keys_api.py +0 -381
  667. seeq-65.1.13/seeq/sdk/api/add_ons_api.py +0 -721
  668. seeq-65.1.13/seeq/sdk/api/agents_api.py +0 -2977
  669. seeq-65.1.13/seeq/sdk/api/annotations_api.py +0 -1316
  670. seeq-65.1.13/seeq/sdk/api/assets_api.py +0 -602
  671. seeq-65.1.13/seeq/sdk/api/audit_api.py +0 -185
  672. seeq-65.1.13/seeq/sdk/api/auth_api.py +0 -568
  673. seeq-65.1.13/seeq/sdk/api/condition_monitors_api.py +0 -634
  674. seeq-65.1.13/seeq/sdk/api/conditions_api.py +0 -1213
  675. seeq-65.1.13/seeq/sdk/api/content_api.py +0 -2899
  676. seeq-65.1.13/seeq/sdk/api/context_api.py +0 -1929
  677. seeq-65.1.13/seeq/sdk/api/datafiles_api.py +0 -841
  678. seeq-65.1.13/seeq/sdk/api/datasources_api.py +0 -1193
  679. seeq-65.1.13/seeq/sdk/api/display_templates_api.py +0 -608
  680. seeq-65.1.13/seeq/sdk/api/displays_api.py +0 -608
  681. seeq-65.1.13/seeq/sdk/api/export_api.py +0 -724
  682. seeq-65.1.13/seeq/sdk/api/folders_api.py +0 -1034
  683. seeq-65.1.13/seeq/sdk/api/formulas_api.py +0 -2457
  684. seeq-65.1.13/seeq/sdk/api/graph_ql_api.py +0 -152
  685. seeq-65.1.13/seeq/sdk/api/items_api.py +0 -4379
  686. seeq-65.1.13/seeq/sdk/api/jobs_api.py +0 -851
  687. seeq-65.1.13/seeq/sdk/api/logs_api.py +0 -511
  688. seeq-65.1.13/seeq/sdk/api/metrics_api.py +0 -608
  689. seeq-65.1.13/seeq/sdk/api/monitors_api.py +0 -802
  690. seeq-65.1.13/seeq/sdk/api/networks_api.py +0 -153
  691. seeq-65.1.13/seeq/sdk/api/notification_configurations_api.py +0 -757
  692. seeq-65.1.13/seeq/sdk/api/notifier_api.py +0 -265
  693. seeq-65.1.13/seeq/sdk/api/plugins_api.py +0 -513
  694. seeq-65.1.13/seeq/sdk/api/projects_api.py +0 -850
  695. seeq-65.1.13/seeq/sdk/api/report_templates_api.py +0 -607
  696. seeq-65.1.13/seeq/sdk/api/reports_api.py +0 -152
  697. seeq-65.1.13/seeq/sdk/api/requests_api.py +0 -926
  698. seeq-65.1.13/seeq/sdk/api/scalars_api.py +0 -710
  699. seeq-65.1.13/seeq/sdk/api/scim_api.py +0 -397
  700. seeq-65.1.13/seeq/sdk/api/signals_api.py +0 -2319
  701. seeq-65.1.13/seeq/sdk/api/subscriptions_api.py +0 -496
  702. seeq-65.1.13/seeq/sdk/api/system_api.py +0 -2535
  703. seeq-65.1.13/seeq/sdk/api/table_definitions_api.py +0 -1099
  704. seeq-65.1.13/seeq/sdk/api/trees_api.py +0 -1458
  705. seeq-65.1.13/seeq/sdk/api/unstable_api.py +0 -181
  706. seeq-65.1.13/seeq/sdk/api/usage_api.py +0 -291
  707. seeq-65.1.13/seeq/sdk/api/user_groups_api.py +0 -1206
  708. seeq-65.1.13/seeq/sdk/api/users_api.py +0 -1123
  709. seeq-65.1.13/seeq/sdk/api/workbooks_api.py +0 -2087
  710. seeq-65.1.13/seeq/sdk/api_client.py +0 -797
  711. seeq-65.1.13/seeq/sdk/configuration.py +0 -270
  712. seeq-65.1.13/seeq/sdk/models/__init__.py +0 -406
  713. seeq-65.1.13/seeq/sdk/models/access_key_input_v1.py +0 -154
  714. seeq-65.1.13/seeq/sdk/models/access_key_output_list_v1.py +0 -264
  715. seeq-65.1.13/seeq/sdk/models/access_key_output_v1.py +0 -524
  716. seeq-65.1.13/seeq/sdk/models/ace_input_v1.py +0 -154
  717. seeq-65.1.13/seeq/sdk/models/ace_output_v1.py +0 -232
  718. seeq-65.1.13/seeq/sdk/models/acl_input_v1.py +0 -208
  719. seeq-65.1.13/seeq/sdk/models/acl_output_v1.py +0 -208
  720. seeq-65.1.13/seeq/sdk/models/activity_graph_output_v1.py +0 -126
  721. seeq-65.1.13/seeq/sdk/models/activity_output_v1.py +0 -246
  722. seeq-65.1.13/seeq/sdk/models/add_on_input_v1.py +0 -268
  723. seeq-65.1.13/seeq/sdk/models/add_on_output_list_v1.py +0 -264
  724. seeq-65.1.13/seeq/sdk/models/add_on_output_v1.py +0 -546
  725. seeq-65.1.13/seeq/sdk/models/add_on_preview_output_list_v1.py +0 -264
  726. seeq-65.1.13/seeq/sdk/models/add_on_preview_v1.py +0 -232
  727. seeq-65.1.13/seeq/sdk/models/add_on_tool_input_v1.py +0 -356
  728. seeq-65.1.13/seeq/sdk/models/add_on_tool_output_v1.py +0 -586
  729. seeq-65.1.13/seeq/sdk/models/administrator_contact_information_v1.py +0 -156
  730. seeq-65.1.13/seeq/sdk/models/agent_input_v1.py +0 -180
  731. seeq-65.1.13/seeq/sdk/models/agent_key_output_v1.py +0 -124
  732. seeq-65.1.13/seeq/sdk/models/agent_orchestrator_output_v1.py +0 -216
  733. seeq-65.1.13/seeq/sdk/models/agent_output_v1.py +0 -492
  734. seeq-65.1.13/seeq/sdk/models/agent_status_output_v1.py +0 -296
  735. seeq-65.1.13/seeq/sdk/models/agent_status_v1.py +0 -272
  736. seeq-65.1.13/seeq/sdk/models/annotation_image_link_output_v1.py +0 -152
  737. seeq-65.1.13/seeq/sdk/models/annotation_input_v1.py +0 -376
  738. seeq-65.1.13/seeq/sdk/models/annotation_interest_input_v1.py +0 -154
  739. seeq-65.1.13/seeq/sdk/models/annotation_interest_output_v1.py +0 -148
  740. seeq-65.1.13/seeq/sdk/models/annotation_list_output_v1.py +0 -264
  741. seeq-65.1.13/seeq/sdk/models/annotation_output_v1.py +0 -1138
  742. seeq-65.1.13/seeq/sdk/models/archive_output_v1.py +0 -152
  743. seeq-65.1.13/seeq/sdk/models/asset_batch_input_v1.py +0 -154
  744. seeq-65.1.13/seeq/sdk/models/asset_error.py +0 -200
  745. seeq-65.1.13/seeq/sdk/models/asset_group_asset_input_v1.py +0 -458
  746. seeq-65.1.13/seeq/sdk/models/asset_group_input_v1.py +0 -150
  747. seeq-65.1.13/seeq/sdk/models/asset_group_output_v1.py +0 -150
  748. seeq-65.1.13/seeq/sdk/models/asset_group_root_input_v1.py +0 -430
  749. seeq-65.1.13/seeq/sdk/models/asset_group_tree_output_v1.py +0 -234
  750. seeq-65.1.13/seeq/sdk/models/asset_input_v1.py +0 -374
  751. seeq-65.1.13/seeq/sdk/models/asset_output_v1.py +0 -576
  752. seeq-65.1.13/seeq/sdk/models/asset_selection_input_v1.py +0 -296
  753. seeq-65.1.13/seeq/sdk/models/asset_selection_output_v1.py +0 -460
  754. seeq-65.1.13/seeq/sdk/models/asset_tree_batch_input_v1.py +0 -212
  755. seeq-65.1.13/seeq/sdk/models/asset_tree_output_v1.py +0 -402
  756. seeq-65.1.13/seeq/sdk/models/asset_tree_single_input_v1.py +0 -152
  757. seeq-65.1.13/seeq/sdk/models/attachment_input_v1.py +0 -186
  758. seeq-65.1.13/seeq/sdk/models/audit_output_list_v1.py +0 -294
  759. seeq-65.1.13/seeq/sdk/models/audit_output_v1.py +0 -372
  760. seeq-65.1.13/seeq/sdk/models/auth_input_v1.py +0 -264
  761. seeq-65.1.13/seeq/sdk/models/auth_providers_output_v1.py +0 -126
  762. seeq-65.1.13/seeq/sdk/models/authoritative_region_output_v1.py +0 -174
  763. seeq-65.1.13/seeq/sdk/models/boolean_configuration_field_output_v1.py +0 -96
  764. seeq-65.1.13/seeq/sdk/models/cache_block.py +0 -356
  765. seeq-65.1.13/seeq/sdk/models/cache_info_v1.py +0 -152
  766. seeq-65.1.13/seeq/sdk/models/calculated_item_output_v1.py +0 -660
  767. seeq-65.1.13/seeq/sdk/models/capsule_input_v1.py +0 -184
  768. seeq-65.1.13/seeq/sdk/models/capsule_property_input_v1.py +0 -156
  769. seeq-65.1.13/seeq/sdk/models/capsule_property_output_v1.py +0 -154
  770. seeq-65.1.13/seeq/sdk/models/capsule_v1.py +0 -268
  771. seeq-65.1.13/seeq/sdk/models/capsules_input_v1.py +0 -126
  772. seeq-65.1.13/seeq/sdk/models/capsules_output_v1.py +0 -322
  773. seeq-65.1.13/seeq/sdk/models/capsules_overwrite_input_v1.py +0 -152
  774. seeq-65.1.13/seeq/sdk/models/channel_output_v1.py +0 -264
  775. seeq-65.1.13/seeq/sdk/models/column_definition_input_list_v1.py +0 -126
  776. seeq-65.1.13/seeq/sdk/models/column_definition_input_v1.py +0 -246
  777. seeq-65.1.13/seeq/sdk/models/column_definition_order_input_v1.py +0 -126
  778. seeq-65.1.13/seeq/sdk/models/column_definition_output_v1.py +0 -280
  779. seeq-65.1.13/seeq/sdk/models/column_rule_ancestor_input_v1.py +0 -156
  780. seeq-65.1.13/seeq/sdk/models/column_rule_asset_creator_input_v1.py +0 -292
  781. seeq-65.1.13/seeq/sdk/models/column_rule_concat_input_v1.py +0 -126
  782. seeq-65.1.13/seeq/sdk/models/column_rule_constant_input_v1.py +0 -126
  783. seeq-65.1.13/seeq/sdk/models/column_rule_descendant_input_v1.py +0 -250
  784. seeq-65.1.13/seeq/sdk/models/column_rule_event_property_input_v1.py +0 -126
  785. seeq-65.1.13/seeq/sdk/models/column_rule_formula_creator_input_v1.py +0 -356
  786. seeq-65.1.13/seeq/sdk/models/column_rule_input_v1.py +0 -356
  787. seeq-65.1.13/seeq/sdk/models/column_rule_item_property_input_v1.py +0 -156
  788. seeq-65.1.13/seeq/sdk/models/column_rule_output_v1.py +0 -184
  789. seeq-65.1.13/seeq/sdk/models/column_rule_path_input_v1.py +0 -186
  790. seeq-65.1.13/seeq/sdk/models/column_rule_tree_path_creator_input_v1.py +0 -154
  791. seeq-65.1.13/seeq/sdk/models/condition_batch_input_v1.py +0 -126
  792. seeq-65.1.13/seeq/sdk/models/condition_input_v1.py +0 -596
  793. seeq-65.1.13/seeq/sdk/models/condition_monitor_input_v1.py +0 -380
  794. seeq-65.1.13/seeq/sdk/models/condition_monitor_notification_configuration_input_v1.py +0 -298
  795. seeq-65.1.13/seeq/sdk/models/condition_monitor_output_v1.py +0 -726
  796. seeq-65.1.13/seeq/sdk/models/condition_notification_output_list_v1.py +0 -296
  797. seeq-65.1.13/seeq/sdk/models/condition_notification_output_v1.py +0 -242
  798. seeq-65.1.13/seeq/sdk/models/condition_output_v1.py +0 -778
  799. seeq-65.1.13/seeq/sdk/models/condition_update_input_v1.py +0 -652
  800. seeq-65.1.13/seeq/sdk/models/configuration_field_output_v1.py +0 -276
  801. seeq-65.1.13/seeq/sdk/models/configuration_input_v1.py +0 -148
  802. seeq-65.1.13/seeq/sdk/models/configuration_option_input_v1.py +0 -174
  803. seeq-65.1.13/seeq/sdk/models/configuration_option_output_simple_v1.py +0 -148
  804. seeq-65.1.13/seeq/sdk/models/configuration_option_output_v1.py +0 -434
  805. seeq-65.1.13/seeq/sdk/models/configuration_output_v1.py +0 -296
  806. seeq-65.1.13/seeq/sdk/models/configured_directives_output_v1.py +0 -180
  807. seeq-65.1.13/seeq/sdk/models/connection_input_v1.py +0 -292
  808. seeq-65.1.13/seeq/sdk/models/connection_output_v1.py +0 -884
  809. seeq-65.1.13/seeq/sdk/models/connection_status_output_v1.py +0 -528
  810. seeq-65.1.13/seeq/sdk/models/connection_status_v1.py +0 -472
  811. seeq-65.1.13/seeq/sdk/models/connections_output_v1.py +0 -124
  812. seeq-65.1.13/seeq/sdk/models/connector_input_v1.py +0 -180
  813. seeq-65.1.13/seeq/sdk/models/connector_output_v1.py +0 -520
  814. seeq-65.1.13/seeq/sdk/models/connectors_output_v1.py +0 -124
  815. seeq-65.1.13/seeq/sdk/models/content_input_v1.py +0 -560
  816. seeq-65.1.13/seeq/sdk/models/content_output_v1.py +0 -800
  817. seeq-65.1.13/seeq/sdk/models/content_with_metadata_list_output_v1.py +0 -180
  818. seeq-65.1.13/seeq/sdk/models/content_with_metadata_output_v1.py +0 -932
  819. seeq-65.1.13/seeq/sdk/models/context_comment_input_v1.py +0 -208
  820. seeq-65.1.13/seeq/sdk/models/context_comment_output_v1.py +0 -414
  821. seeq-65.1.13/seeq/sdk/models/context_label_input_v1.py +0 -208
  822. seeq-65.1.13/seeq/sdk/models/context_label_output_v1.py +0 -446
  823. seeq-65.1.13/seeq/sdk/models/context_opaque_input_v1.py +0 -236
  824. seeq-65.1.13/seeq/sdk/models/context_opaque_output_v1.py +0 -444
  825. seeq-65.1.13/seeq/sdk/models/csv_datafile_output_v1.py +0 -126
  826. seeq-65.1.13/seeq/sdk/models/datafile_input_v1.py +0 -1128
  827. seeq-65.1.13/seeq/sdk/models/datafile_output_v1.py +0 -1356
  828. seeq-65.1.13/seeq/sdk/models/datafiles_csv_body.py +0 -126
  829. seeq-65.1.13/seeq/sdk/models/datasource_clean_up_input_v1.py +0 -266
  830. seeq-65.1.13/seeq/sdk/models/datasource_clean_up_output_v1.py +0 -150
  831. seeq-65.1.13/seeq/sdk/models/datasource_input_v1.py +0 -394
  832. seeq-65.1.13/seeq/sdk/models/datasource_output_list_v1.py +0 -264
  833. seeq-65.1.13/seeq/sdk/models/datasource_output_v1.py +0 -672
  834. seeq-65.1.13/seeq/sdk/models/datasource_preview_v1.py +0 -326
  835. seeq-65.1.13/seeq/sdk/models/datasource_statistics_v1.py +0 -432
  836. seeq-65.1.13/seeq/sdk/models/datasource_status_output_v1.py +0 -294
  837. seeq-65.1.13/seeq/sdk/models/datasource_status_v1.py +0 -318
  838. seeq-65.1.13/seeq/sdk/models/datasource_summary_status_output_v1.py +0 -780
  839. seeq-65.1.13/seeq/sdk/models/datasources_status_output_v1.py +0 -300
  840. seeq-65.1.13/seeq/sdk/models/date_range_input_v1.py +0 -352
  841. seeq-65.1.13/seeq/sdk/models/date_range_output_v1.py +0 -598
  842. seeq-65.1.13/seeq/sdk/models/debug_cache_block_output_v1.py +0 -154
  843. seeq-65.1.13/seeq/sdk/models/detailed_meter_output_v1.py +0 -180
  844. seeq-65.1.13/seeq/sdk/models/detailed_timer_output_v1.py +0 -208
  845. seeq-65.1.13/seeq/sdk/models/directive_input_v1.py +0 -180
  846. seeq-65.1.13/seeq/sdk/models/display_input_v1.py +0 -180
  847. seeq-65.1.13/seeq/sdk/models/display_output_list_v1.py +0 -264
  848. seeq-65.1.13/seeq/sdk/models/display_output_v1.py +0 -500
  849. seeq-65.1.13/seeq/sdk/models/display_template_input_v1.py +0 -298
  850. seeq-65.1.13/seeq/sdk/models/display_template_output_list_v1.py +0 -264
  851. seeq-65.1.13/seeq/sdk/models/display_template_output_v1.py +0 -520
  852. seeq-65.1.13/seeq/sdk/models/document_backup_output_v1.py +0 -180
  853. seeq-65.1.13/seeq/sdk/models/double_configuration_field_output_v1.py +0 -152
  854. seeq-65.1.13/seeq/sdk/models/email_notification_recipient_output_v1.py +0 -200
  855. seeq-65.1.13/seeq/sdk/models/emailer_configuration_output_v1.py +0 -186
  856. seeq-65.1.13/seeq/sdk/models/export_item_v1.py +0 -216
  857. seeq-65.1.13/seeq/sdk/models/export_items_output_v1.py +0 -742
  858. seeq-65.1.13/seeq/sdk/models/export_items_v1.py +0 -578
  859. seeq-65.1.13/seeq/sdk/models/export_preview_list_v1.py +0 -264
  860. seeq-65.1.13/seeq/sdk/models/export_preview_v1.py +0 -382
  861. seeq-65.1.13/seeq/sdk/models/fixed_list_search_v1.py +0 -192
  862. seeq-65.1.13/seeq/sdk/models/folded_stack_node_v1.py +0 -252
  863. seeq-65.1.13/seeq/sdk/models/folder_input_v1.py +0 -238
  864. seeq-65.1.13/seeq/sdk/models/folder_navigation_output_v1.py +0 -212
  865. seeq-65.1.13/seeq/sdk/models/folder_output_v1.py +0 -544
  866. seeq-65.1.13/seeq/sdk/models/formula_compile_input_v1.py +0 -152
  867. seeq-65.1.13/seeq/sdk/models/formula_compile_output_v1.py +0 -234
  868. seeq-65.1.13/seeq/sdk/models/formula_compiler_error_output_v1.py +0 -292
  869. seeq-65.1.13/seeq/sdk/models/formula_dependency_input_v1.py +0 -156
  870. seeq-65.1.13/seeq/sdk/models/formula_doc_example_input_v1.py +0 -152
  871. seeq-65.1.13/seeq/sdk/models/formula_doc_example_list_input_v1.py +0 -126
  872. seeq-65.1.13/seeq/sdk/models/formula_doc_input_v1.py +0 -260
  873. seeq-65.1.13/seeq/sdk/models/formula_doc_keyword_list_input_v1.py +0 -126
  874. seeq-65.1.13/seeq/sdk/models/formula_doc_output_v1.py +0 -712
  875. seeq-65.1.13/seeq/sdk/models/formula_doc_summaries_output_v1.py +0 -122
  876. seeq-65.1.13/seeq/sdk/models/formula_doc_summary_output_v1.py +0 -290
  877. seeq-65.1.13/seeq/sdk/models/formula_error_output_v1.py +0 -276
  878. seeq-65.1.13/seeq/sdk/models/formula_example_output_v1.py +0 -152
  879. seeq-65.1.13/seeq/sdk/models/formula_item_input_v1.py +0 -576
  880. seeq-65.1.13/seeq/sdk/models/formula_item_output_v1.py +0 -658
  881. seeq-65.1.13/seeq/sdk/models/formula_log_entry.py +0 -148
  882. seeq-65.1.13/seeq/sdk/models/formula_log_entry_details.py +0 -148
  883. seeq-65.1.13/seeq/sdk/models/formula_log_v1.py +0 -154
  884. seeq-65.1.13/seeq/sdk/models/formula_package_import_input_v1.py +0 -212
  885. seeq-65.1.13/seeq/sdk/models/formula_package_import_output_v1.py +0 -206
  886. seeq-65.1.13/seeq/sdk/models/formula_package_input_v1.py +0 -292
  887. seeq-65.1.13/seeq/sdk/models/formula_package_output_v1.py +0 -600
  888. seeq-65.1.13/seeq/sdk/models/formula_parameter_input_v1.py +0 -210
  889. seeq-65.1.13/seeq/sdk/models/formula_parameter_output_v1.py +0 -208
  890. seeq-65.1.13/seeq/sdk/models/formula_run_input_v1.py +0 -410
  891. seeq-65.1.13/seeq/sdk/models/formula_run_output_v1.py +0 -420
  892. seeq-65.1.13/seeq/sdk/models/formula_token.py +0 -174
  893. seeq-65.1.13/seeq/sdk/models/formula_update_input_v1.py +0 -154
  894. seeq-65.1.13/seeq/sdk/models/formula_upgrade_change_v1.py +0 -152
  895. seeq-65.1.13/seeq/sdk/models/formula_upgrade_output_v1.py +0 -180
  896. seeq-65.1.13/seeq/sdk/models/function_input_v1.py +0 -434
  897. seeq-65.1.13/seeq/sdk/models/function_parameter_output_v1.py +0 -180
  898. seeq-65.1.13/seeq/sdk/models/function_variant_output_v1.py +0 -236
  899. seeq-65.1.13/seeq/sdk/models/gauge_datum_v1.py +0 -184
  900. seeq-65.1.13/seeq/sdk/models/generic_table_output_v1.py +0 -156
  901. seeq-65.1.13/seeq/sdk/models/get_add_on_tools_output_v1.py +0 -124
  902. seeq-65.1.13/seeq/sdk/models/get_channels_output_v1.py +0 -264
  903. seeq-65.1.13/seeq/sdk/models/get_condition_monitor_items_output_v1.py +0 -296
  904. seeq-65.1.13/seeq/sdk/models/get_content_items_output_v1.py +0 -264
  905. seeq-65.1.13/seeq/sdk/models/get_date_ranges_output_v1.py +0 -264
  906. seeq-65.1.13/seeq/sdk/models/get_jobs_output_v1.py +0 -264
  907. seeq-65.1.13/seeq/sdk/models/get_metrics_output_v1.py +0 -264
  908. seeq-65.1.13/seeq/sdk/models/get_projects_output_v1.py +0 -264
  909. seeq-65.1.13/seeq/sdk/models/get_request_output_v1.py +0 -150
  910. seeq-65.1.13/seeq/sdk/models/get_requests_output_v1.py +0 -122
  911. seeq-65.1.13/seeq/sdk/models/get_sample_output_v1.py +0 -206
  912. seeq-65.1.13/seeq/sdk/models/get_samples_output_v1.py +0 -348
  913. seeq-65.1.13/seeq/sdk/models/get_signals_output_v1.py +0 -264
  914. seeq-65.1.13/seeq/sdk/models/graph_ql_input_v1.py +0 -152
  915. seeq-65.1.13/seeq/sdk/models/graph_ql_output_v1.py +0 -152
  916. seeq-65.1.13/seeq/sdk/models/id_images_body.py +0 -126
  917. seeq-65.1.13/seeq/sdk/models/identity_mapping_list_v1.py +0 -124
  918. seeq-65.1.13/seeq/sdk/models/identity_mapping_v1.py +0 -180
  919. seeq-65.1.13/seeq/sdk/models/identity_preview_list_v1.py +0 -294
  920. seeq-65.1.13/seeq/sdk/models/identity_preview_v1.py +0 -462
  921. seeq-65.1.13/seeq/sdk/models/indexing_parameters_input_v1.py +0 -152
  922. seeq-65.1.13/seeq/sdk/models/installer_output_v1.py +0 -180
  923. seeq-65.1.13/seeq/sdk/models/interval_v1.py +0 -152
  924. seeq-65.1.13/seeq/sdk/models/invalid_swap_out_v1.py +0 -122
  925. seeq-65.1.13/seeq/sdk/models/item_batch_output_v1.py +0 -178
  926. seeq-65.1.13/seeq/sdk/models/item_dependency_output_v1.py +0 -384
  927. seeq-65.1.13/seeq/sdk/models/item_finder_input_v1.py +0 -350
  928. seeq-65.1.13/seeq/sdk/models/item_finder_output_list_v1.py +0 -266
  929. seeq-65.1.13/seeq/sdk/models/item_finder_output_v1.py +0 -584
  930. seeq-65.1.13/seeq/sdk/models/item_finder_searches_input_v1.py +0 -180
  931. seeq-65.1.13/seeq/sdk/models/item_finder_searches_output_v1.py +0 -156
  932. seeq-65.1.13/seeq/sdk/models/item_id_list_input_v1.py +0 -126
  933. seeq-65.1.13/seeq/sdk/models/item_output_v1.py +0 -520
  934. seeq-65.1.13/seeq/sdk/models/item_parameter_of_output_v1.py +0 -382
  935. seeq-65.1.13/seeq/sdk/models/item_preview_list_v1.py +0 -294
  936. seeq-65.1.13/seeq/sdk/models/item_preview_v1.py +0 -270
  937. seeq-65.1.13/seeq/sdk/models/item_preview_with_assets_v1.py +0 -326
  938. seeq-65.1.13/seeq/sdk/models/item_search_preview_list_v1.py +0 -152
  939. seeq-65.1.13/seeq/sdk/models/item_search_preview_paginated_list_v1.py +0 -294
  940. seeq-65.1.13/seeq/sdk/models/item_search_preview_v1.py +0 -518
  941. seeq-65.1.13/seeq/sdk/models/item_swap_result_output_v1.py +0 -176
  942. seeq-65.1.13/seeq/sdk/models/item_update_output_v1.py +0 -234
  943. seeq-65.1.13/seeq/sdk/models/item_user_attributes_input_v1.py +0 -150
  944. seeq-65.1.13/seeq/sdk/models/item_user_attributes_output_v1.py +0 -208
  945. seeq-65.1.13/seeq/sdk/models/item_with_swap_pairs_v1.py +0 -184
  946. seeq-65.1.13/seeq/sdk/models/jira_attachment.py +0 -174
  947. seeq-65.1.13/seeq/sdk/models/jira_attachment_media_type.py +0 -226
  948. seeq-65.1.13/seeq/sdk/models/job_accepted_output_v1.py +0 -214
  949. seeq-65.1.13/seeq/sdk/models/job_output_v1.py +0 -494
  950. seeq-65.1.13/seeq/sdk/models/json_backup_output_v1.py +0 -180
  951. seeq-65.1.13/seeq/sdk/models/label_category_input_v1.py +0 -176
  952. seeq-65.1.13/seeq/sdk/models/label_category_output_list_v1.py +0 -122
  953. seeq-65.1.13/seeq/sdk/models/label_category_output_v1.py +0 -206
  954. seeq-65.1.13/seeq/sdk/models/label_input_v1.py +0 -180
  955. seeq-65.1.13/seeq/sdk/models/label_output_list_v1.py +0 -122
  956. seeq-65.1.13/seeq/sdk/models/label_output_v1.py +0 -208
  957. seeq-65.1.13/seeq/sdk/models/license_importer_output_v1.py +0 -152
  958. seeq-65.1.13/seeq/sdk/models/license_status_output_v1.py +0 -438
  959. seeq-65.1.13/seeq/sdk/models/licensed_feature_status_output_v1.py +0 -214
  960. seeq-65.1.13/seeq/sdk/models/log_message.py +0 -200
  961. seeq-65.1.13/seeq/sdk/models/long_configuration_field_output_v1.py +0 -152
  962. seeq-65.1.13/seeq/sdk/models/meter_datum_v1.py +0 -182
  963. seeq-65.1.13/seeq/sdk/models/migrate_editor_input_v1.py +0 -124
  964. seeq-65.1.13/seeq/sdk/models/monitor_definition_output_v1.py +0 -152
  965. seeq-65.1.13/seeq/sdk/models/monitor_definitions_output_v1.py +0 -122
  966. seeq-65.1.13/seeq/sdk/models/monitor_input_v1.py +0 -180
  967. seeq-65.1.13/seeq/sdk/models/monitor_output_v1.py +0 -122
  968. seeq-65.1.13/seeq/sdk/models/monitor_values.py +0 -538
  969. seeq-65.1.13/seeq/sdk/models/monitors_output_v1.py +0 -122
  970. seeq-65.1.13/seeq/sdk/models/notifiable_report_output_list_v1.py +0 -296
  971. seeq-65.1.13/seeq/sdk/models/notifiable_report_output_v1.py +0 -298
  972. seeq-65.1.13/seeq/sdk/models/notification_configuration_output_v1.py +0 -340
  973. seeq-65.1.13/seeq/sdk/models/optional_report_input_v1.py +0 -208
  974. seeq-65.1.13/seeq/sdk/models/parameter_doc_output_v1.py +0 -236
  975. seeq-65.1.13/seeq/sdk/models/permissions_v1.py +0 -174
  976. seeq-65.1.13/seeq/sdk/models/plugin_output_list_v1.py +0 -294
  977. seeq-65.1.13/seeq/sdk/models/plugin_output_v1.py +0 -602
  978. seeq-65.1.13/seeq/sdk/models/plugins_body.py +0 -126
  979. seeq-65.1.13/seeq/sdk/models/pre_provision_input_v1.py +0 -210
  980. seeq-65.1.13/seeq/sdk/models/pre_provision_output_v1.py +0 -148
  981. seeq-65.1.13/seeq/sdk/models/priority_v1.py +0 -186
  982. seeq-65.1.13/seeq/sdk/models/progress_information_output_v1.py +0 -148
  983. seeq-65.1.13/seeq/sdk/models/project_input_v1.py +0 -306
  984. seeq-65.1.13/seeq/sdk/models/project_output_v1.py +0 -668
  985. seeq-65.1.13/seeq/sdk/models/property_filter_input_v1.py +0 -192
  986. seeq-65.1.13/seeq/sdk/models/property_href_output_v1.py +0 -154
  987. seeq-65.1.13/seeq/sdk/models/property_input_v1.py +0 -154
  988. seeq-65.1.13/seeq/sdk/models/property_output_v1.py +0 -240
  989. seeq-65.1.13/seeq/sdk/models/property_search_v1.py +0 -276
  990. seeq-65.1.13/seeq/sdk/models/provision_input_v1.py +0 -184
  991. seeq-65.1.13/seeq/sdk/models/put_asset_input_v1.py +0 -402
  992. seeq-65.1.13/seeq/sdk/models/put_scalar_input_v1.py +0 -570
  993. seeq-65.1.13/seeq/sdk/models/put_scalars_input_v1.py +0 -214
  994. seeq-65.1.13/seeq/sdk/models/put_signals_input_v1.py +0 -126
  995. seeq-65.1.13/seeq/sdk/models/put_user_groups_input_v1.py +0 -126
  996. seeq-65.1.13/seeq/sdk/models/referenced_items_output_v1.py +0 -124
  997. seeq-65.1.13/seeq/sdk/models/regression_output_v1.py +0 -334
  998. seeq-65.1.13/seeq/sdk/models/remote_agent_directives_output_v1.py +0 -152
  999. seeq-65.1.13/seeq/sdk/models/remote_agent_status_input_v1.py +0 -454
  1000. seeq-65.1.13/seeq/sdk/models/remote_agent_status_output_v1.py +0 -494
  1001. seeq-65.1.13/seeq/sdk/models/report_input_item_v1.py +0 -182
  1002. seeq-65.1.13/seeq/sdk/models/report_input_v1.py +0 -184
  1003. seeq-65.1.13/seeq/sdk/models/report_notification_configuration_input_v1.py +0 -242
  1004. seeq-65.1.13/seeq/sdk/models/report_template_input_v1.py +0 -212
  1005. seeq-65.1.13/seeq/sdk/models/report_template_output_v1.py +0 -522
  1006. seeq-65.1.13/seeq/sdk/models/request_output_v1.py +0 -496
  1007. seeq-65.1.13/seeq/sdk/models/sample_input_v1.py +0 -154
  1008. seeq-65.1.13/seeq/sdk/models/sample_output_v1.py +0 -180
  1009. seeq-65.1.13/seeq/sdk/models/samples_input_v1.py +0 -126
  1010. seeq-65.1.13/seeq/sdk/models/samples_output_v1.py +0 -124
  1011. seeq-65.1.13/seeq/sdk/models/samples_overwrite_input_v1.py +0 -152
  1012. seeq-65.1.13/seeq/sdk/models/scalar_evaluate_output_v1.py +0 -378
  1013. seeq-65.1.13/seeq/sdk/models/scalar_input_v1.py +0 -542
  1014. seeq-65.1.13/seeq/sdk/models/scalar_property_v1.py +0 -184
  1015. seeq-65.1.13/seeq/sdk/models/scalar_value_output_v1.py +0 -184
  1016. seeq-65.1.13/seeq/sdk/models/scale_across_tree_output_v1.py +0 -152
  1017. seeq-65.1.13/seeq/sdk/models/schedulable_admin_list_output_v1.py +0 -292
  1018. seeq-65.1.13/seeq/sdk/models/schedulable_admin_output_v1.py +0 -536
  1019. seeq-65.1.13/seeq/sdk/models/schedulable_summary_day_output_v1.py +0 -158
  1020. seeq-65.1.13/seeq/sdk/models/schedulable_summary_week_output_v1.py +0 -124
  1021. seeq-65.1.13/seeq/sdk/models/schedule_input_v1.py +0 -152
  1022. seeq-65.1.13/seeq/sdk/models/schedule_output_v1.py +0 -180
  1023. seeq-65.1.13/seeq/sdk/models/scheduled_notebook_input_v1.py +0 -330
  1024. seeq-65.1.13/seeq/sdk/models/scheduled_notebook_list_output_v1.py +0 -152
  1025. seeq-65.1.13/seeq/sdk/models/scheduled_notebook_output_v1.py +0 -656
  1026. seeq-65.1.13/seeq/sdk/models/scim_token_output_v1.py +0 -152
  1027. seeq-65.1.13/seeq/sdk/models/screenshot_output_v1.py +0 -152
  1028. seeq-65.1.13/seeq/sdk/models/secret_configuration_field_output_v1.py +0 -152
  1029. seeq-65.1.13/seeq/sdk/models/see_also_doc_output_v1.py +0 -208
  1030. seeq-65.1.13/seeq/sdk/models/send_email_attachment_v1.py +0 -186
  1031. seeq-65.1.13/seeq/sdk/models/send_email_contact_v1.py +0 -154
  1032. seeq-65.1.13/seeq/sdk/models/send_email_input_v1.py +0 -276
  1033. seeq-65.1.13/seeq/sdk/models/sent_email_attachment_output_v1.py +0 -186
  1034. seeq-65.1.13/seeq/sdk/models/sent_email_output_v1.py +0 -446
  1035. seeq-65.1.13/seeq/sdk/models/sent_emails_list_output_v1.py +0 -126
  1036. seeq-65.1.13/seeq/sdk/models/server_build_info_output_v1.py +0 -124
  1037. seeq-65.1.13/seeq/sdk/models/server_load_output_v1.py +0 -152
  1038. seeq-65.1.13/seeq/sdk/models/server_spec_output_v1.py +0 -236
  1039. seeq-65.1.13/seeq/sdk/models/server_status_output_v1.py +0 -372
  1040. seeq-65.1.13/seeq/sdk/models/signal_input_v1.py +0 -516
  1041. seeq-65.1.13/seeq/sdk/models/signal_output_v1.py +0 -862
  1042. seeq-65.1.13/seeq/sdk/models/signal_with_id_input_v1.py +0 -628
  1043. seeq-65.1.13/seeq/sdk/models/status_message.py +0 -124
  1044. seeq-65.1.13/seeq/sdk/models/status_message_base.py +0 -124
  1045. seeq-65.1.13/seeq/sdk/models/store_secret_input_v1.py +0 -152
  1046. seeq-65.1.13/seeq/sdk/models/string_configuration_field_output_v1.py +0 -152
  1047. seeq-65.1.13/seeq/sdk/models/subscription_input_v1.py +0 -154
  1048. seeq-65.1.13/seeq/sdk/models/subscription_output_v1.py +0 -180
  1049. seeq-65.1.13/seeq/sdk/models/subscription_update_input_v1.py +0 -126
  1050. seeq-65.1.13/seeq/sdk/models/support_request_input_v1.py +0 -368
  1051. seeq-65.1.13/seeq/sdk/models/support_request_output_v1.py +0 -156
  1052. seeq-65.1.13/seeq/sdk/models/supported_units_output_v1.py +0 -152
  1053. seeq-65.1.13/seeq/sdk/models/swap_across_assets_search_v1.py +0 -218
  1054. seeq-65.1.13/seeq/sdk/models/swap_input_v1.py +0 -152
  1055. seeq-65.1.13/seeq/sdk/models/swap_option_list_v1.py +0 -124
  1056. seeq-65.1.13/seeq/sdk/models/swap_option_v1.py +0 -178
  1057. seeq-65.1.13/seeq/sdk/models/swap_output_v1.py +0 -152
  1058. seeq-65.1.13/seeq/sdk/models/sync_progress.py +0 -408
  1059. seeq-65.1.13/seeq/sdk/models/sync_progress_output_v1.py +0 -590
  1060. seeq-65.1.13/seeq/sdk/models/system_license_body.py +0 -126
  1061. seeq-65.1.13/seeq/sdk/models/table_column_output_v1.py +0 -184
  1062. seeq-65.1.13/seeq/sdk/models/table_definition_input_v1.py +0 -324
  1063. seeq-65.1.13/seeq/sdk/models/table_definition_output_list_v1.py +0 -266
  1064. seeq-65.1.13/seeq/sdk/models/table_definition_output_v1.py +0 -548
  1065. seeq-65.1.13/seeq/sdk/models/table_definition_update_input_v1.py +0 -182
  1066. seeq-65.1.13/seeq/sdk/models/threshold_metric_input_v1.py +0 -546
  1067. seeq-65.1.13/seeq/sdk/models/threshold_metric_output_v1.py +0 -856
  1068. seeq-65.1.13/seeq/sdk/models/threshold_output_v1.py +0 -200
  1069. seeq-65.1.13/seeq/sdk/models/timer_datum_v1.py +0 -184
  1070. seeq-65.1.13/seeq/sdk/models/tree_item_output_v1.py +0 -688
  1071. seeq-65.1.13/seeq/sdk/models/treemap_item_output_v1.py +0 -260
  1072. seeq-65.1.13/seeq/sdk/models/treemap_output_v1.py +0 -344
  1073. seeq-65.1.13/seeq/sdk/models/units_of_measure_batch_input_v1.py +0 -126
  1074. seeq-65.1.13/seeq/sdk/models/units_of_measure_item_v1.py +0 -152
  1075. seeq-65.1.13/seeq/sdk/models/units_of_measure_output_v1.py +0 -124
  1076. seeq-65.1.13/seeq/sdk/models/unsubscribe_output_v1.py +0 -382
  1077. seeq-65.1.13/seeq/sdk/models/usage_output_list_v1.py +0 -156
  1078. seeq-65.1.13/seeq/sdk/models/usage_output_v1.py +0 -382
  1079. seeq-65.1.13/seeq/sdk/models/usage_types_v1.py +0 -124
  1080. seeq-65.1.13/seeq/sdk/models/user_group_input_v1.py +0 -320
  1081. seeq-65.1.13/seeq/sdk/models/user_group_output_v1.py +0 -632
  1082. seeq-65.1.13/seeq/sdk/models/user_group_with_id_input_v1.py +0 -404
  1083. seeq-65.1.13/seeq/sdk/models/user_input_v1.py +0 -580
  1084. seeq-65.1.13/seeq/sdk/models/user_output_list_v1.py +0 -294
  1085. seeq-65.1.13/seeq/sdk/models/user_output_v1.py +0 -964
  1086. seeq-65.1.13/seeq/sdk/models/user_password_input_v1.py +0 -154
  1087. seeq-65.1.13/seeq/sdk/models/validate_cron_list_input_v1.py +0 -182
  1088. seeq-65.1.13/seeq/sdk/models/validate_cron_list_output_v1.py +0 -124
  1089. seeq-65.1.13/seeq/sdk/models/validate_cron_output_v1.py +0 -236
  1090. seeq-65.1.13/seeq/sdk/models/workbench_item_output_list_v1.py +0 -322
  1091. seeq-65.1.13/seeq/sdk/models/workbench_search_result_preview_v1.py +0 -686
  1092. seeq-65.1.13/seeq/sdk/models/workbook_input_v1.py +0 -266
  1093. seeq-65.1.13/seeq/sdk/models/workbook_output_list_v1.py +0 -264
  1094. seeq-65.1.13/seeq/sdk/models/workbook_output_v1.py +0 -572
  1095. seeq-65.1.13/seeq/sdk/models/worksheet_input_v1.py +0 -232
  1096. seeq-65.1.13/seeq/sdk/models/worksheet_output_list_v1.py +0 -264
  1097. seeq-65.1.13/seeq/sdk/models/worksheet_output_v1.py +0 -490
  1098. seeq-65.1.13/seeq/sdk/models/workstep_input_v1.py +0 -126
  1099. seeq-65.1.13/seeq/sdk/models/workstep_output_v1.py +0 -494
  1100. seeq-65.1.13/seeq/sdk/rest.py +0 -324
  1101. seeq-65.1.13/seeq.egg-info/PKG-INFO +0 -99
  1102. seeq-65.1.13/seeq.egg-info/SOURCES.txt +0 -448
  1103. seeq-65.1.13/seeq.egg-info/requires.txt +0 -5
  1104. seeq-65.1.13/setup.py +0 -38
  1105. {seeq-65.1.13 → seeq-66.86.0.20251211}/LICENSE +0 -0
  1106. {seeq-65.1.13 → seeq-66.86.0.20251211}/MANIFEST.in +0 -0
  1107. {seeq-65.1.13 → seeq-66.86.0.20251211}/seeq.egg-info/dependency_links.txt +0 -0
  1108. {seeq-65.1.13 → seeq-66.86.0.20251211}/seeq.egg-info/not-zip-safe +0 -0
  1109. {seeq-65.1.13 → seeq-66.86.0.20251211}/seeq.egg-info/top_level.txt +0 -0
  1110. {seeq-65.1.13 → seeq-66.86.0.20251211}/setup.cfg +0 -0
@@ -0,0 +1,520 @@
1
+ Metadata-Version: 2.4
2
+ Name: seeq
3
+ Version: 66.86.0.20251211
4
+ Summary: The Seeq SDK for Python
5
+ Author-email: Seeq Corporation <support@seeq.com>
6
+ License: Seeq Python Library – License File
7
+
8
+
9
+ ------------------------------------------------------------------------------------------------------------------------
10
+
11
+ Seeq Python Library - Copyright Notice
12
+
13
+ © Copyright 2020 - Seeq Corporation
14
+
15
+ Permission to Distribute - Permission is hereby granted, free of charge, to any person obtaining a copy of this Seeq
16
+ Python Library and associated documentation files (the "Software"), to copy the Software, to publish and distribute
17
+ copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following
18
+ conditions:
19
+
20
+ 1. The foregoing permission does not grant any right to use, modify, merge, sublicense, sell or otherwise deal in the
21
+ Software, and all such use is subject to the terms and conditions of the Seeq Python Library - End User License
22
+ Agreement, below.
23
+
24
+ 2. The above copyright notice and the full text of this permission notice shall be included in all copies or
25
+ substantial portions of the Software.
26
+
27
+
28
+ ------------------------------------------------------------------------------------------------------------------------
29
+
30
+
31
+ SEEQ PYTHON LIBRARY - END USER LICENSE AGREEMENT
32
+
33
+ This End User License Agreement ("Agreement") is a binding legal document between Seeq and you, which explains your
34
+ rights and obligations as a Customer using Seeq products. "Customer" means the person or company that downloads and
35
+ uses the Seeq Python library. "Seeq" means Seeq Corporation, 1301 2nd Avenue, Suite 2850, Seattle, WA 98101, USA.
36
+
37
+ By installing or using the Seeq Python library, you agree on behalf of Customer to be bound by this Agreement. If you
38
+ do not agree to this Agreement, then do not install or use Seeq products.
39
+
40
+ This Agreement, and your license to use the Seeq Python Library, remains in effect only during the term of any
41
+ subscription license that you purchase to use other Seeq software. Upon the termination or expiration of any such paid
42
+ license, this Agreement terminates immediately, and you will have no further right to use the Seeq Python Library.
43
+
44
+ From time to time, Seeq may modify this Agreement, including any referenced policies and other documents. Any modified
45
+ version will be effective at the time it is posted to Seeq’s website at
46
+ https://www.seeq.com/legal/software-license-agreement. To keep abreast of your license rights and relevant
47
+ restrictions, please bookmark this Agreement and read it periodically. By using any Product after any modifications,
48
+ Customer agrees to all of the modifications.
49
+
50
+ This End User License Agreement ("Agreement") is entered into by and between Seeq Corporation ("Seeq") and the Customer
51
+ identified during the process of registering the Seeq Software. Seeq and Customer agree as follows.
52
+
53
+ 1. Definitions.
54
+
55
+ "Affiliate" or "Affiliates" means any company, corporation, partnership, joint venture, or other entity in which any of
56
+ the Parties directly or indirectly owns, is owned by, or is under common ownership with a Party to this Agreement to
57
+ the extent of at least fifty percent (50%) of its equity, voting rights or other ownership interest (or such lesser
58
+ percentage which is the maximum allowed to be owned by a foreign corporation in a particular jurisdiction).
59
+
60
+ "Authorized Users" means the individually-identified employees, contractors, representatives or consultants of Customer
61
+ who are permitted to use the Software in accordance with the applicable Order Document.
62
+
63
+ "Customer Data" means data in Customer’s data resources that is accessed by, and processed in, Seeq Server software.
64
+ Customer Data includes all Derived Data.
65
+
66
+ "Derived Data" means data derived by Authorized Users from Customer Data and consists of: scalars, signals, conditions,
67
+ journals, analyses, analysis results, worksheets, workbooks and topics.
68
+
69
+ "Documentation" means Seeq’s standard installation materials, training materials, specifications and online help
70
+ documents normally made available by Seeq in connection with the Software, as modified from time to time by Seeq.
71
+
72
+ "On-Premise Software" means Software that is installed on hardware owned or arranged by and under the control of
73
+ Customer, such as Customer-owned hardware, a private cloud or a public cloud. On-Premise Software is managed by
74
+ Customer. Examples of On-Premise Software include Seeq Server, Seeq Python library, Seeq Connectors and Seeq Remote
75
+ Agents.
76
+
77
+ "Order Document" means each mutually-agreed ordering document used by the parties from time to time for the purchase of
78
+ licenses for the Software. Customer’s Purchase Order may, in conjunction with the applicable Proposal or Quote from
79
+ Seeq, constitute an Order Document subject to the terms of this Agreement. All Order Documents are incorporated by
80
+ reference into this Agreement.
81
+
82
+ "SaaS Software" means Software that is installed on hardware arranged by and under the control of Seeq, such as
83
+ Microsoft Azure or AWS. SaaS Software is managed by Seeq. Example of SaaS Software include Seeq Server.
84
+
85
+ "Seeq Technology" means the Software, the Documentation, all algorithms and techniques for use with the Software
86
+ created by Seeq, and all modifications, improvements, enhancements and derivative works thereof created by Seeq.
87
+
88
+ "Software" means: (i) the Seeq Python library with which this License File is included, and (ii) Seeq software
89
+ applications identified on an applicable Order Document that are licensed to Customer pursuant to this Agreement.
90
+ Software includes On-Premise Software and SaaS Software.
91
+
92
+ "Subscription License" means a license allowing Customer to access SaaS Software, and to copy, install and use
93
+ On-Premise Software, for the period of the Subscription Term.
94
+
95
+ "Subscription Term" means the period of time specified in an Order Document during which the Subscription License is in
96
+ effect. The Subscription Term for the Seeq Python library shall be coterminous with Customer’s paid license to use Seeq
97
+ Software under an Order Document.
98
+
99
+ 2. Subscription License.
100
+
101
+ a. License. Seeq grants Customer a worldwide, non-exclusive, non‐transferable, non‐sublicenseable right to access the
102
+ SaaS Software and to copy, install and use the On-Premise Software for the duration of the Subscription Term, subject
103
+ to the terms and conditions of this Agreement. Seeq does not license the Software on a perpetual basis.
104
+
105
+ b. Separate License Agreement. If Seeq and Customer have executed a separate License Agreement intended to govern
106
+ Customer’s use of the Software, then such separate License Agreement shall constitute the complete and exclusive
107
+ agreement of the parties for such use, and this Agreement shall be of no force or effect, regardless of any action by
108
+ Customer personnel that would have appeared to accept the terms of this Agreement.
109
+
110
+ c. Authorized Users. Only Authorized Users may use the Software, and only up to the number of Authorized Users
111
+ specified in the applicable Order Document. Customer designates each individual Authorized User in the Software. If
112
+ the number of Authorized Users is greater than the number specified in the particular Order Document, Customer will
113
+ purchase additional Authorized Users at the prices set out in the Order Document.
114
+
115
+ d. Subscription Term. The Subscription Term shall begin and end as provided in the applicable Order Document. The
116
+ Subscription Term will not renew, except by a new Order Document acceptable to both parties. Upon renewal of a
117
+ Subscription Term, Customer will, if applicable, increase the number of Authorized Users to a number that Customer
118
+ believes in good faith will be sufficient to accommodate any expected growth in the number of Customer’s users during
119
+ the new Subscription Term. This Agreement will continue in effect for the Subscription Term of all Order Documents
120
+ hereunder.
121
+
122
+ e. Limitations on Use. All use of Software must be in accordance with the relevant Documentation. End User may make a
123
+ limited number of copies of the Software as is strictly necessary for purposes of data protection, archiving, backup,
124
+ and testing. Customer will use the Software for its internal business purposes and to process information about the
125
+ operations of Customer and its Affiliates, and will not, except as provided in an Order Document, directly or
126
+ indirectly, use the Software to process information about or for any other company. Customer will: (i) not permit
127
+ unauthorized use of the Software, (ii) not infringe or violate the intellectual property rights, privacy, or any other
128
+ rights of any third party or any applicable law, (iii) ensure that each user uses a unique Authorized User ID and
129
+ password, (iv) not, except as provided in an Order Document, allow resale, timesharing, rental or use of the Software
130
+ in a service bureau or as a provider of outsourced services, and (v) not modify, adapt, create derivative works of,
131
+ reverse engineer, decompile, or disassemble the Software or Seeq Technology.
132
+
133
+ f. Software Modification. Seeq may modify the Software from time to time, but such modification will not materially
134
+ reduce the functionality of the Software. Seeq may contract with third parties to support the Software, so long as they
135
+ are subject to obligations of confidentiality to Seeq at least as strict as Seeq’s to Customer. Seeq shall remain
136
+ responsible for the performance of its contractors.
137
+
138
+ 2. Support. Support for Customer’s use of the Software is included in Customer’s subscription fee. Seeq will provide
139
+ support and maintenance for the Software, including all applicable updates, and web-based support assistance in
140
+ accordance with Seeq’s support policies in effect from time to time. Other professional services are available for
141
+ additional fees.
142
+
143
+ 3. Ownership.
144
+
145
+ a. Customer Data. Customer owns all Customer Data, including all Derived Data, and Seeq shall not receive any ownership
146
+ interest in it. Seeq may use the Customer Data only to provide the Software capabilities purchased by Customer and as
147
+ permitted by this Agreement, and not for any other purpose. Customer is the owner and data controller for the Customer
148
+ Data.
149
+
150
+ b. Software and Seeq Technology. Seeq retains all rights in the Software and the Seeq Technology (subject to the
151
+ license granted to Customer). Customer will not, and will not allow any other person to, modify, adapt, create
152
+ derivative works of, reverse engineer, decompile, or disassemble the Software or Seeq Technology. All new Seeq
153
+ Technology developed by Seeq while working with Customer, including any that was originally based on feedback,
154
+ suggestions, requests or comments from Customer, shall be Seeq’s sole property, and Customer shall have the right to
155
+ use any such new Seeq Technology only in connection with the Software.
156
+
157
+ c. Third-Party Open Source Software. The Software incorporates third-party open source software. All such software must
158
+ comply with Seeq’s Third Party Open Source License Policy. Customer may request a list of such third-party software and
159
+ a copy of the Policy at any time.
160
+
161
+ 4. Fees and Payment Terms.
162
+
163
+ a. Fees. Customer shall pay the fees as specified in the Order Document. Unless otherwise specified in the Order
164
+ Document, all amounts are in US Dollars (USD). Upon renewal of a Subscription Term, Customer will, if applicable,
165
+ increase the number of Authorized Users to a number that Customer believes in good faith will be sufficient to
166
+ accommodate any expected growth in the number of Customer’s users during the new Subscription Term.
167
+
168
+ b. Invoicing & Payment. All payments are due within 30 days of the date of the invoice and are non-cancellable and
169
+ non-refundable except as provided in this Agreement. If Customer does not pay any amount (not disputed in good faith)
170
+ when due, Seeq may charge interest on the unpaid amount at the rate of 1.0% per month (or if less, the maximum rate
171
+ allowed by law). If Customer does not pay an overdue amount (not disputed in good faith) within 20 days of notice of
172
+ non-payment, Seeq may suspend the Software until such payment is received, but Customer will remain obligated to make
173
+ all payments due under this Agreement. Customer agrees to pay Seeq’s expenses, including reasonable attorneys and
174
+ collection fees, incurred in collecting amounts not subject to a good faith dispute.
175
+
176
+ c. Excess Usage of Software. The Software has usage limitations based on the number of Authorized Users or other
177
+ metrics as set forth on the Order Document. Customer shall maintain accurate records regarding Customer’s actual use of
178
+ the Software and shall make such information promptly available to Seeq upon request. Seeq may also monitor Customer’s
179
+ use of the Software.
180
+
181
+ d. Fees for Excess Usage of Software. Seeq will not require Customer to pay for past excess use, and in consideration
182
+ thereof:
183
+
184
+ i. If Customer’s license covers a fixed number of Authorized Users, Customer will promptly issue a new Order Document
185
+ to cover current and good-faith anticipated future excess use.
186
+
187
+ ii. If Customer’s license is under Seeq’s Extended Experience Program, Strategic Agreement Program or any other program
188
+ not tied directly to a fixed number of Authorized Users, then the parties will negotiate in good faith as follows:
189
+
190
+ (1) if the excess use is less than 50% above the number of Authorized Users that was used to set pricing for such
191
+ license for the current contract period (usually a year), the parties will negotiate an appropriate usage level and
192
+ fees for the next contract period, and
193
+
194
+ (2) If the excess use is more than 50% above such number, the parties will negotiate appropriate usage levels and fees
195
+ for the remainder of the current and the next contract periods, with additional fees for the current period payable
196
+ upon Seeq’s invoice.
197
+
198
+ e. Taxes. All fees are exclusive of all taxes, including federal, state and local use, sales, property, value-added,
199
+ ad valorem and similar taxes related to this transaction, however designated (except taxes based on Seeq’s net income).
200
+ Unless Customer presents valid evidence of exemption, Customer agrees to pay any and all such taxes that it is
201
+ obligated by law to pay. Customer will pay Seeq’s invoices for such taxes whenever Seeq is required to collect such
202
+ taxes from Customer.
203
+
204
+ f. Purchase through Seeq Partner. In the event that End User purchased its subscription to Seeq through an accredited
205
+ Seeq Partner, notwithstanding provisions of this Agreement relating to End User's payments to Seeq, Partner will
206
+ invoice End User, or charge End User using the credit card on file, and End User will pay all applicable subscription
207
+ fees to Partner.
208
+
209
+ 6. Confidentiality. "Confidential Information" means all information and materials obtained by a party (the
210
+ "Recipient") from the other party (the "Disclosing Party"), whether in tangible form, written or oral, that is
211
+ identified as confidential or would reasonably be understood to be confidential given the nature of the information and
212
+ circumstances of disclosure, including without limitation Customer Data, the Software, Seeq Technology, and the terms
213
+ and pricing set out in this Agreement and Order Documents. Confidential Information does not include information that
214
+ (a) is already known to the Recipient prior to its disclosure by the Disclosing Party; (b) is or becomes generally
215
+ known through no wrongful act of the Recipient; (c) is independently developed by the Recipient without use of or
216
+ reference to the Disclosing Party’s Confidential Information; or (d) is received from a third party without restriction
217
+ and without a breach of an obligation of confidentiality. The Recipient shall not use or disclose any Confidential
218
+ Information without the Disclosing Party’s prior written permission, except to its employees, contractors, directors,
219
+ representatives or consultants who have a need to know in connection with this Agreement or Recipient’s business
220
+ generally, or as otherwise allowed herein. The Recipient shall protect the confidentiality of the Disclosing Party’s
221
+ Confidential Information in the same manner that it protects the confidentiality of its own confidential information of
222
+ a similar nature, but using not less than a reasonable degree of care. The Recipient may disclose Confidential
223
+ Information to the extent that it is required to be disclosed pursuant to a statutory or regulatory provision or court
224
+ order, provided that the Recipient provides prior notice of such disclosure to the Disclosing Party, unless such notice
225
+ is prohibited by law, rule, regulation or court order. As long as an Order Document is active under this Agreement and
226
+ for two (2) years thereafter, and at all times while Customer Data is in Seeq’s possession, the confidentiality
227
+ provisions of this Section shall remain in effect.
228
+
229
+ 7. Security. Seeq will maintain and enforce commercially reasonable physical and logical security methods and
230
+ procedures to protect Customer Data on the SaaS Software and to secure and defend the SaaS Software against "hackers"
231
+ and others who may seek to access the SaaS Software without authorization. Seeq will test its systems for potential
232
+ security vulnerabilities at least annually. Seeq will use commercially reasonable efforts to remedy any breach of
233
+ security or unauthorized access. Seeq reserves the right to suspend access to the Seeq System in the event of a
234
+ suspected or actual security breach. Customer will maintain and enforce commercially reasonable security methods and
235
+ procedures to prevent misuse of the log-in information of its employees and other users. Seeq shall not be liable for
236
+ any damages incurred by Customer or any third party in connection with any unauthorized access resulting from the
237
+ actions of Customer or its representatives.
238
+
239
+ 8. Warranties.
240
+
241
+ a. Authority and Compliance with Laws. Each party warrants and represents that it has all requisite legal authority to
242
+ enter into this Agreement and that it shall comply with all laws applicable to its performance hereunder including
243
+ export laws and laws pertaining to the collection and use of personal data.
244
+
245
+ b. Industry Standards and Documentation. Seeq warrants and represents that the Software will materially conform to the
246
+ specifications as set forth in the applicable Documentation. At no additional cost to Customer, and as Customer’s sole
247
+ and exclusive remedy for nonconformity of the Software with this limited warranty, Seeq will use commercially
248
+ reasonable efforts to correct any such nonconformity, provided Customer promptly notifies Seeq in writing outlining the
249
+ specific details upon discovery, and if such efforts are unsuccessful, then Customer may terminate, and receive a
250
+ refund of all pre-paid and unused fees for, the affected Software. This limited warranty shall be void if the failure
251
+ of the Software to conform is caused by (i) the use or operation of the Software with an application or in an
252
+ environment other than as set forth in the Documentation, or (ii) modifications to the Software that were not made by
253
+ Seeq or Seeq’s authorized representatives.
254
+
255
+ c. Malicious Code. Seeq will not introduce any time bomb, virus or other harmful or malicious code designed to disrupt
256
+ the use of the Software, other than Seeq’s ability to disable access to the Software in the event of termination or
257
+ suspension as permitted hereunder.
258
+
259
+ d. DISCLAIMER. EXCEPT AS EXPRESSLY SET FORTH HEREIN, NEITHER PARTY MAKES ANY REPRESENTATIONS OR WARRANTIES OF ANY
260
+ KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR
261
+ NON-INFRINGEMENT. EXCEPT AS STATED IN THIS SECTION, SEEQ DOES NOT REPRESENT THAT CUSTOMER’S USE OF THE SOFTWARE WILL BE
262
+ SECURE, UNINTERRUPTED OR ERROR FREE. NO STATEMENT OR INFORMATION, WHETHER ORAL OR WRITTEN, OBTAINED FROM SEEQ IN ANY
263
+ MEANS OR FASHION SHALL CREATE ANY WARRANTY NOT EXPRESSLY AND EXPLICITLY SET FORTH IN THIS AGREEMENT.
264
+
265
+ 9. Indemnification by Seeq. Seeq shall indemnify, defend and hold Customer harmless from and against all losses
266
+ (including reasonable attorney fees) arising out of any third-party suit or claim alleging that Customer’s authorized
267
+ use of the Software infringes any valid U.S. or European Union patent or trademark, trade secret or other proprietary
268
+ right of such third party. Customer shall: (i) give Seeq prompt written notice of such suit or claim, (ii) grant Seeq
269
+ sole control of the defense or settlement of such suit or claim and (iii) reasonably cooperate with Seeq, at Seeq’s
270
+ expense, in its defense or settlement of the suit or claim. To the extent that Seeq is prejudiced by Customer's failure
271
+ to comply with the foregoing requirements, Seeq shall not be liable hereunder. Seeq may, at its option and expense, (i)
272
+ replace the Software with compatible non-infringing Software, (ii) modify the Software so that it is non-infringing,
273
+ (iii) procure the right for Customer to continue using the Software, or (iv) if the foregoing options are not
274
+ reasonably available, terminate the applicable Order Document and refund Customer all prepaid fees for Software
275
+ applicable to the remainder of the applicable Subscription Term. Seeq shall have no obligation to Customer with respect
276
+ to any infringement claim against Customer if such claim existed prior to the effective date of the applicable Order
277
+ Document or such claim is based upon (i) Customer’s use of the Software in a manner not expressly authorized by this
278
+ Agreement, (ii) the combination, operation, or use of the Software with third party material that was not provided by
279
+ Seeq, if Customer’s liability would have been avoided in the absence of such combination, use, or operation, or (iii)
280
+ modifications to the Software other than as authorized in writing by Seeq. THIS SECTION SETS FORTH SEEQ’S ENTIRE
281
+ OBLIGATION TO CUSTOMER WITH RESPECT TO ANY CLAIM SUBJECT TO INDEMNIFICATION UNDER THIS SECTION.
282
+
283
+ 10. LIMITATION OF LIABILITIES. IN NO EVENT SHALL EITHER PARTY OR THEIR SERVICE PROVIDERS, LICENSORS CONTRACTORS OR
284
+ SUPPLIERS BE LIABLE FOR ANY INDIRECT, INCIDENTAL, CONSEQUENTIAL, SPECIAL OR PUNITIVE DAMAGES OF ANY KIND, INCLUDING
285
+ WITHOUT LIMITATION DAMAGES FOR COVER OR LOSS OF USE, DATA, REVENUE OR PROFITS, EVEN IF SUCH PARTY HAS BEEN ADVISED OF
286
+ THE POSSIBILITY OF SUCH DAMAGES. THE FOREGOING LIMITATION OF LIABILITY AND EXCLUSION OF CERTAIN DAMAGES SHALL APPLY
287
+ REGARDLESS OF THE SUCCESS OR EFFECTIVENESS OF OTHER REMEDIES. EXCEPT FOR THE PARTIES’ INDEMNIFICATION OBLIGATIONS,
288
+ DAMAGES FOR BODILY INJURY OR DEATH, DAMAGES TO REAL PROPERTY OR TANGIBLE PERSONAL PROPERTY, AND FOR BREACHES OF
289
+ CONFIDENTIALITY UNDER SECTION 6, IN NO EVENT SHALL THE AGGREGATE LIABILITY OF A PARTY, ITS SERVICE PROVIDERS,
290
+ LICENSORS, CONTRACTORS OR SUPPLIERS ARISING UNDER THIS AGREEMENT, WHETHER IN CONTRACT, TORT OR OTHERWISE, EXCEED THE
291
+ TOTAL AMOUNT OF FEES PAID BY CUSTOMER TO SEEQ FOR THE RELEVANT SOFTWARE WITHIN THE PRECEDING TWELVE (12) MONTHS.
292
+
293
+ 11. Termination and Expiration.
294
+
295
+ a. Termination Rights. A party may terminate any Order Document: (i) for any material breach not cured within thirty
296
+ (30) days following written notice of such breach, and (ii) immediately upon written notice if the other party files
297
+ for bankruptcy, becomes the subject of any bankruptcy proceeding or becomes insolvent.
298
+
299
+ b. Customer Termination for Convenience. Customer may terminate any Order Document for any reason at any time.
300
+
301
+ c. Termination Effects. Upon termination by Customer under Section 13(a)(i) or 13(b) above, Seeq shall refund
302
+ Customer all prepaid and unused fees for the Software. Upon termination by Seeq under Section 13(a)(i) above, Customer
303
+ shall promptly pay all unpaid fees due through the end of the Subscription Term of such Order Document.
304
+
305
+ d. Access and Data. Upon expiration or termination of an Order Document, Seeq will disable access to the applicable
306
+ SaaS Software, and Customer will uninstall and destroy all copies of the Software and Documentation on hardware under
307
+ its control. Upon Customer request, Seeq will provide Customer with a copy of all Customer Data in Seeq’s possession,
308
+ in a mutually agreeable format within a mutually agreeable timeframe. Notwithstanding the foregoing: (i) Seeq may
309
+ retain backup copies of Customer Data for a limited period of time in accordance with Seeq’s then-current backup
310
+ policy, and (ii) Seeq will destroy all Customer Data no later than 3 months after end of the Subscription Term or
311
+ earlier, upon written request from Customer.
312
+
313
+ 12. General.
314
+
315
+ a. Amendment. Seeq may modify this Agreement from time to time, including any referenced policies and other documents.
316
+ Any modified version will be effective at the time it is posted on Seeq’s website at
317
+ https://seeq.com/legal/software-license-agreement.
318
+
319
+ b. Precedence. The Order Document is governed by the terms of this Agreement and in the event of a conflict or
320
+ discrepancy between the terms of an Order Document and the terms of this Agreement, this Agreement shall govern except
321
+ as to the specific Software ordered, and the fees, currency and payment terms for such orders, for which the Order
322
+ Document shall govern, as applicable. If an Order Document signed by Seeq explicitly states that it is intended to
323
+ amend or modify a term of this Agreement, such Order Document shall govern over this Agreement solely as to the
324
+ amendment or modification. Seeq objects to and rejects any additional or different terms proposed by Customer,
325
+ including those contained in Customer’s purchase order, acceptance, vendor portal or website. Neither Seeq’s acceptance
326
+ of Customer’s purchase order nor its failure to object elsewhere to any provisions of any subsequent document, website,
327
+ communication, or act of Customer shall be deemed acceptance thereof or a waiver of any of the terms hereof.
328
+
329
+ c. Assignment. Neither party may assign this Agreement, in whole or in part, without the prior written consent of the
330
+ other, which shall not be unreasonably withheld. However, either party may assign this Agreement to any Affiliate, or
331
+ to a person or entity into which it has merged or which has otherwise succeeded to all or substantially all of its
332
+ business or assets to which this Agreement pertains, by purchase of stock, assets, merger, reorganization or otherwise,
333
+ and which has assumed in writing or by operation of law its obligations under this Agreement, provided that Customer
334
+ shall not assign this Agreement to a direct competitor of Seeq. Any assignment or attempted assignment in breach of
335
+ this Section shall be void. This Agreement shall be binding upon and shall inure to the benefit of the parties’
336
+ respective successors and assigns.
337
+
338
+ d. Employees. Each party agrees that during, and for one year after, the term of this Agreement, it will not directly
339
+ or indirectly solicit for hire any of the other party’s employees who were actively engaged in the provision or use of
340
+ the Software without the other party’s express written consent. This restriction shall not apply to offers extended
341
+ solely as a result of and in response to public advertising or similar general solicitations not specifically targeted
342
+ at the other party’s employees.
343
+
344
+ e. Independent Contractors. The parties are independent contractors and not agents or partners of, or joint venturers
345
+ with, the other party for any purpose. Neither party shall have any right, power, or authority to act or create any
346
+ obligation, express or implied, on behalf of the other party.
347
+
348
+ f. Notices. All notices required under this Agreement shall be in writing and shall be delivered personally against
349
+ receipt, or by registered or certified mail, return receipt requested, postage prepaid, or sent by
350
+ nationally-recognized overnight courier service, and addressed to the party to be notified at their address set forth
351
+ below. All notices and other communications required or permitted under this Agreement shall be deemed given when
352
+ delivered personally, or one (1) day after being deposited with such overnight courier service, or five (5) days after
353
+ being deposited in the United States mail, postage prepaid to Seeq at 1301 Second Avenue, #2850, Seattle, WA 98101,
354
+ Attn: Legal and to Customer at the then-current address in Seeq’s records, or to such other address as each party may
355
+ designate in writing.
356
+
357
+ g. Force Majeure. Except for payment obligations hereunder, either party shall be excused from performance of
358
+ non-monetary obligations under this Agreement for such period of time as such party is prevented from performing such
359
+ obligations, in whole or in part, due to causes beyond its reasonable control, including but not limited to, delays
360
+ caused by the other party, acts of God, war, terrorism, criminal activity, civil disturbance, court order or other
361
+ government action, third party performance or non-performance, strikes or work stoppages, provided that such party
362
+ gives prompt written notice to the other party of such event.
363
+
364
+ h. Integration. This Agreement, including all Order Documents and documents attached hereto or incorporated herein by
365
+ reference, constitutes the complete and exclusive statement of the parties’ agreement and supersedes all proposals or
366
+ prior agreements, oral or written, between the parties relating to the subject matter hereof.
367
+
368
+ i. Not Contingent. The party’s obligations hereunder are neither contingent on the delivery of any future functionality
369
+ or features of the Software nor dependent on any oral or written public comments made by Seeq regarding future
370
+ functionality or features of the Software.
371
+
372
+ j. No Third Party Rights. No right or cause of action for any third party is created by this Agreement or any
373
+ transaction under it.
374
+
375
+ k. Non-Waiver; Invalidity. No waiver or modification of the provisions of this Agreement shall be effective unless in
376
+ writing and signed by the party against whom it is to be enforced. If any provision of this Agreement is held invalid,
377
+ illegal or unenforceable, the validity, legality and enforceability of the remaining provisions shall not be affected
378
+ or impaired thereby. A waiver of any provision, breach or default by either party or a party’s delay exercising its
379
+ rights shall not constitute a waiver of any other provision, breach or default.
380
+
381
+ l. Governing Law and Venue. This Agreement will be interpreted and construed in accordance with the laws of the State
382
+ of Delaware without regard to conflict of law principles, and both parties hereby consent to the exclusive jurisdiction
383
+ and venue of courts in Wilmington, Delaware in all disputes arising out of or relating to this Agreement.
384
+
385
+ m. Mediation. The parties agree to attempt to resolve disputes without extended and costly litigation. The parties
386
+ will: (1) communicate any dispute to other party, orally and in writing; (2) respond in writing to any written dispute
387
+ from other party within 15 days of receipt; (3) if satisfactory resolution does not occur within 45 days of initial
388
+ written notification of the dispute, and if both parties do not mutually agree to a time extension, then either party
389
+ may seek a remedy in court.
390
+
391
+ n. Survival. Provisions of this Agreement that are intended to survive termination or expiration of this Agreement in
392
+ order to achieve the fundamental purposes of this Agreement shall so survive, including without limitation: Ownership,
393
+ Fees and Payment Terms, Confidentiality, Customer Data, Indemnification by Seeq and Limitation of Liabilities.
394
+
395
+ o. Headings and Language. The headings of sections included in this Agreement are inserted for convenience only and
396
+ are not intended to affect the meaning or interpretation of this Agreement. The parties to this Agreement and Order
397
+ Document have requested that this Agreement and all related documentation be written in English.
398
+
399
+ p. Federal Government End Use Provisions. Seeq provides the Software, including related technology, for ultimate
400
+ federal government end use solely in accordance with the following: Government technical data and software rights
401
+ related to the Software include only those rights customarily provided to the public as defined in this Agreement. This
402
+ customary commercial license is provided in accordance with FAR 12.211 (Technical Data) and FAR 12.212 (Software) and,
403
+ for Department of Defense transactions, DFAR 252.227-7015 (Technical Data – Commercial Items) and DFAR 227.7202-3
404
+ (Rights in Commercial Computer Software or Computer Software Documentation).
405
+
406
+ q. Contract for Services. The parties intend this Agreement to be a contract for the provision of services and not a
407
+ contract for the sale of goods. To the fullest extent permitted by law, the provisions of the Uniform Commercial Code
408
+ (UCC), the Uniform Computer Information Transaction Act (UCITA), the United Nations Convention on Contracts for the
409
+ International Sale of Goods , and any substantially similar legislation as may be enacted, shall not apply to this
410
+ Agreement.
411
+
412
+ r. Actions Permitted. Except for actions for nonpayment or breach of a party’s proprietary rights, no action,
413
+ regardless of form, arising out of or relating to the Agreement may be brought by either party more than one year after
414
+ the cause of action has accrued.
415
+
416
+ Should you have any questions concerning this Agreement, please contact Seeq at legal@seeq.com.
417
+
418
+
419
+
420
+
421
+
422
+ Project-URL: Homepage, https://www.seeq.com
423
+ Project-URL: Documentation, https://python-docs.seeq.com/
424
+ Project-URL: Changelog, https://python-docs.seeq.com/changelog.html
425
+ Classifier: Programming Language :: Python :: 2
426
+ Classifier: Programming Language :: Python :: 3
427
+ Classifier: License :: Other/Proprietary License
428
+ Classifier: Operating System :: OS Independent
429
+ Requires-Python: >=2.7
430
+ Description-Content-Type: text/markdown
431
+ Requires-Dist: certifi>=14.05.14
432
+ Requires-Dist: six>=1.10
433
+ Requires-Dist: urllib3<3.0.0,>=1.15.1
434
+ Requires-Dist: requests>=2.21.0
435
+ Requires-Dist: cryptography>=3.2
436
+
437
+ The **seeq** Python module is used to interface with Seeq Server API ([https://www.seeq.com](https://www.seeq.com)).
438
+
439
+ Documentation can be found at
440
+ [https://python-docs.seeq.com](https://python-docs.seeq.com/).
441
+
442
+ **IMPORTANT:**
443
+
444
+ This module mirrors the versioning of Seeq Server, such that the version of this module reflects the version
445
+ of the Seeq Server from which the Seeq SDK was generated.
446
+
447
+ For Seeq Server version R60 and later, the SPy module
448
+ [is in its own namespace package](https://pypi.org/project/seeq-spy/) called `seeq-spy` with its own versioning
449
+ scheme. (Prior to R60, the SPy module was bundled into this main `seeq` module.)
450
+
451
+ # Upgrade Considerations
452
+
453
+ ## When using Seeq Data lab:
454
+
455
+ If you are using **Seeq Data Lab**, you should not upgrade or otherwise affect the pre-installed version of the
456
+ `seeq` module, as the pre-installed version correctly matches the version of Seeq Server that Data Lab is tied
457
+ to.
458
+
459
+ ### Older than R60
460
+
461
+ However, in older versions of Seeq Server, you must follow the (more complex) instructions on the corresponding PyPI
462
+ pages for that version:
463
+
464
+ https://pypi.org/project/seeq/55.4.9.183.34/
465
+ https://pypi.org/project/seeq/56.1.9.184.21/
466
+ https://pypi.org/project/seeq/57.2.7.184.22/
467
+ https://pypi.org/project/seeq/58.1.3.184.22/
468
+ https://pypi.org/project/seeq/59.0.1.184.25/
469
+
470
+ ## When NOT using Seeq Data Lab:
471
+
472
+ If you are _not_ using **Seeq Data Lab**, you should install the version of the `seeq` module that corresponds
473
+ to the first two numbers in the version of Seeq you are interfacing with. This version can be found at the top
474
+ of the Seeq Server *API Reference* page.
475
+ E.G.: `pip install -U seeq~=65.1`. You should then upgrade SPy separately via `pip install -U seeq-spy`.
476
+
477
+ # seeq.spy
478
+
479
+ The SPy module is the recommended programming interface for interacting with the Seeq Server.
480
+ See [https://pypi.org/project/seeq-spy/](https://pypi.org/project/seeq-spy/) for more information on the SPy module.
481
+
482
+ For more advanced tasks than what the SPy module can provide, you may with to use the SDK module described below.
483
+
484
+ # seeq.sdk
485
+
486
+ The Seeq **SDK** module is a set of Python bindings for the Seeq Server REST API. You can experiment with the REST API
487
+ by selecting the *API Reference* menu item in the upper-right "hamburger" menu of Seeq Workbench.
488
+
489
+ **The SDK module supports both Python 2.x and Python 3.x, but it is strongly recommended that you use Python 3.x
490
+ (or later) as Python 2.x is end-of-life.**
491
+
492
+ Login is accomplished with the following pattern:
493
+
494
+ ```
495
+ import seeq
496
+ import getpass
497
+
498
+ api_client = seeq.sdk.ApiClient('http://localhost:34216/api')
499
+
500
+ # Change this to False if you're getting errors related to SSL
501
+ seeq.sdk.Configuration().verify_ssl = True
502
+
503
+ auth_api = seeq.sdk.AuthApi(api_client)
504
+ auth_input = seeq.sdk.AuthInputV1()
505
+
506
+ # Use raw_input() instead of input() if you're using Python 2
507
+ auth_input.username = input('Username:').rstrip().lower()
508
+ auth_input.password = getpass.getpass()
509
+ auth_input.auth_provider_class = "Auth"
510
+ auth_input.auth_provider_id = "Seeq"
511
+ auth_api.login(body=auth_input)
512
+ ```
513
+
514
+ The `api_client` object is then used as the argument to construct any API object you need, such as
515
+ `seeq.sdk.ItemsApi`. Each of the root endpoints that you see in the *API Reference* webpage corresponds to
516
+ a `seeq.sdk.XxxxxApi` class.
517
+
518
+ ----------
519
+
520
+ In case you are looking for the Gencove package, it is available here: https://pypi.org/project/gencove/
@@ -0,0 +1,84 @@
1
+ The **seeq** Python module is used to interface with Seeq Server API ([https://www.seeq.com](https://www.seeq.com)).
2
+
3
+ Documentation can be found at
4
+ [https://python-docs.seeq.com](https://python-docs.seeq.com/).
5
+
6
+ **IMPORTANT:**
7
+
8
+ This module mirrors the versioning of Seeq Server, such that the version of this module reflects the version
9
+ of the Seeq Server from which the Seeq SDK was generated.
10
+
11
+ For Seeq Server version R60 and later, the SPy module
12
+ [is in its own namespace package](https://pypi.org/project/seeq-spy/) called `seeq-spy` with its own versioning
13
+ scheme. (Prior to R60, the SPy module was bundled into this main `seeq` module.)
14
+
15
+ # Upgrade Considerations
16
+
17
+ ## When using Seeq Data lab:
18
+
19
+ If you are using **Seeq Data Lab**, you should not upgrade or otherwise affect the pre-installed version of the
20
+ `seeq` module, as the pre-installed version correctly matches the version of Seeq Server that Data Lab is tied
21
+ to.
22
+
23
+ ### Older than R60
24
+
25
+ However, in older versions of Seeq Server, you must follow the (more complex) instructions on the corresponding PyPI
26
+ pages for that version:
27
+
28
+ https://pypi.org/project/seeq/55.4.9.183.34/
29
+ https://pypi.org/project/seeq/56.1.9.184.21/
30
+ https://pypi.org/project/seeq/57.2.7.184.22/
31
+ https://pypi.org/project/seeq/58.1.3.184.22/
32
+ https://pypi.org/project/seeq/59.0.1.184.25/
33
+
34
+ ## When NOT using Seeq Data Lab:
35
+
36
+ If you are _not_ using **Seeq Data Lab**, you should install the version of the `seeq` module that corresponds
37
+ to the first two numbers in the version of Seeq you are interfacing with. This version can be found at the top
38
+ of the Seeq Server *API Reference* page.
39
+ E.G.: `pip install -U seeq~=65.1`. You should then upgrade SPy separately via `pip install -U seeq-spy`.
40
+
41
+ # seeq.spy
42
+
43
+ The SPy module is the recommended programming interface for interacting with the Seeq Server.
44
+ See [https://pypi.org/project/seeq-spy/](https://pypi.org/project/seeq-spy/) for more information on the SPy module.
45
+
46
+ For more advanced tasks than what the SPy module can provide, you may with to use the SDK module described below.
47
+
48
+ # seeq.sdk
49
+
50
+ The Seeq **SDK** module is a set of Python bindings for the Seeq Server REST API. You can experiment with the REST API
51
+ by selecting the *API Reference* menu item in the upper-right "hamburger" menu of Seeq Workbench.
52
+
53
+ **The SDK module supports both Python 2.x and Python 3.x, but it is strongly recommended that you use Python 3.x
54
+ (or later) as Python 2.x is end-of-life.**
55
+
56
+ Login is accomplished with the following pattern:
57
+
58
+ ```
59
+ import seeq
60
+ import getpass
61
+
62
+ api_client = seeq.sdk.ApiClient('http://localhost:34216/api')
63
+
64
+ # Change this to False if you're getting errors related to SSL
65
+ seeq.sdk.Configuration().verify_ssl = True
66
+
67
+ auth_api = seeq.sdk.AuthApi(api_client)
68
+ auth_input = seeq.sdk.AuthInputV1()
69
+
70
+ # Use raw_input() instead of input() if you're using Python 2
71
+ auth_input.username = input('Username:').rstrip().lower()
72
+ auth_input.password = getpass.getpass()
73
+ auth_input.auth_provider_class = "Auth"
74
+ auth_input.auth_provider_id = "Seeq"
75
+ auth_api.login(body=auth_input)
76
+ ```
77
+
78
+ The `api_client` object is then used as the argument to construct any API object you need, such as
79
+ `seeq.sdk.ItemsApi`. Each of the root endpoints that you see in the *API Reference* webpage corresponds to
80
+ a `seeq.sdk.XxxxxApi` class.
81
+
82
+ ----------
83
+
84
+ In case you are looking for the Gencove package, it is available here: https://pypi.org/project/gencove/