UncountablePythonSDK 0.0.37__py3-none-any.whl → 0.0.39__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


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

Files changed (98) hide show
  1. {UncountablePythonSDK-0.0.37.dist-info → UncountablePythonSDK-0.0.39.dist-info}/METADATA +1 -1
  2. {UncountablePythonSDK-0.0.37.dist-info → UncountablePythonSDK-0.0.39.dist-info}/RECORD +98 -96
  3. {UncountablePythonSDK-0.0.37.dist-info → UncountablePythonSDK-0.0.39.dist-info}/WHEEL +1 -1
  4. pkgs/type_spec/emit_python.py +3 -1
  5. uncountable/core/client.py +28 -22
  6. uncountable/types/__init__.py +3 -1
  7. uncountable/types/api/batch/execute_batch.py +1 -1
  8. uncountable/types/api/batch/execute_batch_load_async.py +1 -1
  9. uncountable/types/api/chemical/convert_chemical_formats.py +1 -1
  10. uncountable/types/api/entity/create_entities.py +1 -1
  11. uncountable/types/api/entity/create_entity.py +1 -1
  12. uncountable/types/api/entity/get_entities_data.py +1 -1
  13. uncountable/types/api/entity/list_entities.py +1 -1
  14. uncountable/types/api/entity/lock_entity.py +1 -1
  15. uncountable/types/api/entity/resolve_entity_ids.py +1 -1
  16. uncountable/types/api/entity/set_values.py +1 -1
  17. uncountable/types/api/entity/transition_entity_phase.py +1 -1
  18. uncountable/types/api/entity/unlock_entity.py +1 -1
  19. uncountable/types/api/equipment/__init__.py +1 -0
  20. uncountable/types/api/equipment/associate_equipment_input.py +37 -0
  21. uncountable/types/api/field_options/upsert_field_options.py +1 -1
  22. uncountable/types/api/id_source/list_id_source.py +1 -1
  23. uncountable/types/api/id_source/match_id_source.py +1 -1
  24. uncountable/types/api/input_groups/get_input_group_names.py +1 -1
  25. uncountable/types/api/inputs/create_inputs.py +1 -1
  26. uncountable/types/api/inputs/get_input_data.py +1 -1
  27. uncountable/types/api/inputs/get_input_names.py +1 -1
  28. uncountable/types/api/inputs/get_inputs_data.py +1 -1
  29. uncountable/types/api/inputs/set_input_attribute_values.py +1 -1
  30. uncountable/types/api/inputs/set_input_category.py +1 -1
  31. uncountable/types/api/inputs/set_input_subcategories.py +1 -1
  32. uncountable/types/api/inputs/set_intermediate_type.py +1 -1
  33. uncountable/types/api/material_families/update_entity_material_families.py +1 -1
  34. uncountable/types/api/outputs/get_output_data.py +1 -1
  35. uncountable/types/api/outputs/get_output_names.py +1 -1
  36. uncountable/types/api/outputs/resolve_output_conditions.py +1 -1
  37. uncountable/types/api/permissions/set_core_permissions.py +1 -1
  38. uncountable/types/api/project/get_projects.py +1 -1
  39. uncountable/types/api/project/get_projects_data.py +1 -1
  40. uncountable/types/api/recipe_links/create_recipe_link.py +1 -1
  41. uncountable/types/api/recipe_links/remove_recipe_link.py +1 -1
  42. uncountable/types/api/recipe_metadata/get_recipe_metadata_data.py +1 -1
  43. uncountable/types/api/recipes/add_recipe_to_project.py +1 -1
  44. uncountable/types/api/recipes/archive_recipes.py +1 -1
  45. uncountable/types/api/recipes/associate_recipe_as_input.py +1 -1
  46. uncountable/types/api/recipes/associate_recipe_as_lot.py +1 -1
  47. uncountable/types/api/recipes/create_recipe.py +1 -1
  48. uncountable/types/api/recipes/create_recipes.py +1 -1
  49. uncountable/types/api/recipes/disassociate_recipe_as_input.py +1 -1
  50. uncountable/types/api/recipes/edit_recipe_inputs.py +1 -1
  51. uncountable/types/api/recipes/get_curve.py +1 -1
  52. uncountable/types/api/recipes/get_recipe_calculations.py +1 -1
  53. uncountable/types/api/recipes/get_recipe_links.py +1 -1
  54. uncountable/types/api/recipes/get_recipe_names.py +1 -1
  55. uncountable/types/api/recipes/get_recipe_output_metadata.py +1 -1
  56. uncountable/types/api/recipes/get_recipes_data.py +1 -1
  57. uncountable/types/api/recipes/lock_recipes.py +1 -1
  58. uncountable/types/api/recipes/remove_recipe_from_project.py +1 -1
  59. uncountable/types/api/recipes/set_recipe_inputs.py +1 -1
  60. uncountable/types/api/recipes/set_recipe_metadata.py +1 -1
  61. uncountable/types/api/recipes/set_recipe_output_annotations.py +1 -1
  62. uncountable/types/api/recipes/set_recipe_outputs.py +1 -1
  63. uncountable/types/api/recipes/set_recipe_tags.py +1 -1
  64. uncountable/types/api/recipes/unarchive_recipes.py +1 -1
  65. uncountable/types/api/recipes/unlock_recipes.py +1 -1
  66. uncountable/types/api/triggers/run_trigger.py +1 -1
  67. uncountable/types/async_batch.py +2 -1
  68. uncountable/types/async_batch_processor.py +37 -1
  69. uncountable/types/base.py +1 -1
  70. uncountable/types/calculations.py +1 -1
  71. uncountable/types/chemical_structure.py +1 -1
  72. uncountable/types/client_base.py +24 -1
  73. uncountable/types/curves.py +1 -1
  74. uncountable/types/entity.py +1 -1
  75. uncountable/types/experiment_groups.py +1 -1
  76. uncountable/types/field_values.py +1 -1
  77. uncountable/types/fields.py +1 -1
  78. uncountable/types/id_source.py +1 -1
  79. uncountable/types/identifier.py +1 -1
  80. uncountable/types/input_attributes.py +1 -1
  81. uncountable/types/inputs.py +1 -1
  82. uncountable/types/outputs.py +1 -1
  83. uncountable/types/permissions.py +1 -1
  84. uncountable/types/phases.py +1 -1
  85. uncountable/types/post_base.py +1 -1
  86. uncountable/types/recipe_identifiers.py +1 -1
  87. uncountable/types/recipe_inputs.py +1 -1
  88. uncountable/types/recipe_links.py +1 -1
  89. uncountable/types/recipe_metadata.py +1 -1
  90. uncountable/types/recipe_output_metadata.py +1 -1
  91. uncountable/types/recipe_tags.py +1 -1
  92. uncountable/types/recipe_workflow_steps.py +1 -1
  93. uncountable/types/recipes.py +1 -1
  94. uncountable/types/response.py +1 -1
  95. uncountable/types/units.py +1 -1
  96. uncountable/types/users.py +1 -1
  97. uncountable/types/workflows.py +1 -1
  98. {UncountablePythonSDK-0.0.37.dist-info → UncountablePythonSDK-0.0.39.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  # DO NOT MODIFY -- This file is generated by type_spec
2
2
  # flake8: noqa: F821
3
- # ruff: noqa: E402
3
+ # ruff: noqa: E402 Q003
4
4
  # fmt: off
5
5
  # isort: skip_file
6
6
  from __future__ import annotations
@@ -1,6 +1,6 @@
1
1
  # DO NOT MODIFY -- This file is generated by type_spec
2
2
  # flake8: noqa: F821
3
- # ruff: noqa: E402
3
+ # ruff: noqa: E402 Q003
4
4
  # fmt: off
5
5
  # isort: skip_file
6
6
  from __future__ import annotations
@@ -1,6 +1,6 @@
1
1
  # DO NOT MODIFY -- This file is generated by type_spec
2
2
  # flake8: noqa: F821
3
- # ruff: noqa: E402
3
+ # ruff: noqa: E402 Q003
4
4
  # fmt: off
5
5
  # isort: skip_file
6
6
  from __future__ import annotations
@@ -1,6 +1,6 @@
1
1
  # DO NOT MODIFY -- This file is generated by type_spec
2
2
  # flake8: noqa: F821
3
- # ruff: noqa: E402
3
+ # ruff: noqa: E402 Q003
4
4
  # fmt: off
5
5
  # isort: skip_file
6
6
  from __future__ import annotations
@@ -1,6 +1,6 @@
1
1
  # DO NOT MODIFY -- This file is generated by type_spec
2
2
  # flake8: noqa: F821
3
- # ruff: noqa: E402
3
+ # ruff: noqa: E402 Q003
4
4
  # fmt: off
5
5
  # isort: skip_file
6
6
  from __future__ import annotations
@@ -1,6 +1,6 @@
1
1
  # DO NOT MODIFY -- This file is generated by type_spec
2
2
  # flake8: noqa: F821
3
- # ruff: noqa: E402
3
+ # ruff: noqa: E402 Q003
4
4
  # fmt: off
5
5
  # isort: skip_file
6
6
  from __future__ import annotations
@@ -1,6 +1,6 @@
1
1
  # DO NOT MODIFY -- This file is generated by type_spec
2
2
  # flake8: noqa: F821
3
- # ruff: noqa: E402
3
+ # ruff: noqa: E402 Q003
4
4
  # fmt: off
5
5
  # isort: skip_file
6
6
  from __future__ import annotations
@@ -1,6 +1,6 @@
1
1
  # DO NOT MODIFY -- This file is generated by type_spec
2
2
  # flake8: noqa: F821
3
- # ruff: noqa: E402
3
+ # ruff: noqa: E402 Q003
4
4
  # fmt: off
5
5
  # isort: skip_file
6
6
  from __future__ import annotations