UncountablePythonSDK 0.0.38__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.
- {UncountablePythonSDK-0.0.38.dist-info → UncountablePythonSDK-0.0.39.dist-info}/METADATA +1 -1
- {UncountablePythonSDK-0.0.38.dist-info → UncountablePythonSDK-0.0.39.dist-info}/RECORD +98 -96
- {UncountablePythonSDK-0.0.38.dist-info → UncountablePythonSDK-0.0.39.dist-info}/WHEEL +1 -1
- pkgs/type_spec/emit_python.py +3 -1
- uncountable/core/client.py +1 -1
- uncountable/types/__init__.py +3 -1
- uncountable/types/api/batch/execute_batch.py +1 -1
- uncountable/types/api/batch/execute_batch_load_async.py +1 -1
- uncountable/types/api/chemical/convert_chemical_formats.py +1 -1
- uncountable/types/api/entity/create_entities.py +1 -1
- uncountable/types/api/entity/create_entity.py +1 -1
- uncountable/types/api/entity/get_entities_data.py +1 -1
- uncountable/types/api/entity/list_entities.py +1 -1
- uncountable/types/api/entity/lock_entity.py +1 -1
- uncountable/types/api/entity/resolve_entity_ids.py +1 -1
- uncountable/types/api/entity/set_values.py +1 -1
- uncountable/types/api/entity/transition_entity_phase.py +1 -1
- uncountable/types/api/entity/unlock_entity.py +1 -1
- uncountable/types/api/equipment/__init__.py +1 -0
- uncountable/types/api/equipment/associate_equipment_input.py +37 -0
- uncountable/types/api/field_options/upsert_field_options.py +1 -1
- uncountable/types/api/id_source/list_id_source.py +1 -1
- uncountable/types/api/id_source/match_id_source.py +1 -1
- uncountable/types/api/input_groups/get_input_group_names.py +1 -1
- uncountable/types/api/inputs/create_inputs.py +1 -1
- uncountable/types/api/inputs/get_input_data.py +1 -1
- uncountable/types/api/inputs/get_input_names.py +1 -1
- uncountable/types/api/inputs/get_inputs_data.py +1 -1
- uncountable/types/api/inputs/set_input_attribute_values.py +1 -1
- uncountable/types/api/inputs/set_input_category.py +1 -1
- uncountable/types/api/inputs/set_input_subcategories.py +1 -1
- uncountable/types/api/inputs/set_intermediate_type.py +1 -1
- uncountable/types/api/material_families/update_entity_material_families.py +1 -1
- uncountable/types/api/outputs/get_output_data.py +1 -1
- uncountable/types/api/outputs/get_output_names.py +1 -1
- uncountable/types/api/outputs/resolve_output_conditions.py +1 -1
- uncountable/types/api/permissions/set_core_permissions.py +1 -1
- uncountable/types/api/project/get_projects.py +1 -1
- uncountable/types/api/project/get_projects_data.py +1 -1
- uncountable/types/api/recipe_links/create_recipe_link.py +1 -1
- uncountable/types/api/recipe_links/remove_recipe_link.py +1 -1
- uncountable/types/api/recipe_metadata/get_recipe_metadata_data.py +1 -1
- uncountable/types/api/recipes/add_recipe_to_project.py +1 -1
- uncountable/types/api/recipes/archive_recipes.py +1 -1
- uncountable/types/api/recipes/associate_recipe_as_input.py +1 -1
- uncountable/types/api/recipes/associate_recipe_as_lot.py +1 -1
- uncountable/types/api/recipes/create_recipe.py +1 -1
- uncountable/types/api/recipes/create_recipes.py +1 -1
- uncountable/types/api/recipes/disassociate_recipe_as_input.py +1 -1
- uncountable/types/api/recipes/edit_recipe_inputs.py +1 -1
- uncountable/types/api/recipes/get_curve.py +1 -1
- uncountable/types/api/recipes/get_recipe_calculations.py +1 -1
- uncountable/types/api/recipes/get_recipe_links.py +1 -1
- uncountable/types/api/recipes/get_recipe_names.py +1 -1
- uncountable/types/api/recipes/get_recipe_output_metadata.py +1 -1
- uncountable/types/api/recipes/get_recipes_data.py +1 -1
- uncountable/types/api/recipes/lock_recipes.py +1 -1
- uncountable/types/api/recipes/remove_recipe_from_project.py +1 -1
- uncountable/types/api/recipes/set_recipe_inputs.py +1 -1
- uncountable/types/api/recipes/set_recipe_metadata.py +1 -1
- uncountable/types/api/recipes/set_recipe_output_annotations.py +1 -1
- uncountable/types/api/recipes/set_recipe_outputs.py +1 -1
- uncountable/types/api/recipes/set_recipe_tags.py +1 -1
- uncountable/types/api/recipes/unarchive_recipes.py +1 -1
- uncountable/types/api/recipes/unlock_recipes.py +1 -1
- uncountable/types/api/triggers/run_trigger.py +1 -1
- uncountable/types/async_batch.py +2 -1
- uncountable/types/async_batch_processor.py +37 -1
- uncountable/types/base.py +1 -1
- uncountable/types/calculations.py +1 -1
- uncountable/types/chemical_structure.py +1 -1
- uncountable/types/client_base.py +24 -1
- uncountable/types/curves.py +1 -1
- uncountable/types/entity.py +1 -1
- uncountable/types/experiment_groups.py +1 -1
- uncountable/types/field_values.py +1 -1
- uncountable/types/fields.py +1 -1
- uncountable/types/id_source.py +1 -1
- uncountable/types/identifier.py +1 -1
- uncountable/types/input_attributes.py +1 -1
- uncountable/types/inputs.py +1 -1
- uncountable/types/outputs.py +1 -1
- uncountable/types/permissions.py +1 -1
- uncountable/types/phases.py +1 -1
- uncountable/types/post_base.py +1 -1
- uncountable/types/recipe_identifiers.py +1 -1
- uncountable/types/recipe_inputs.py +1 -1
- uncountable/types/recipe_links.py +1 -1
- uncountable/types/recipe_metadata.py +1 -1
- uncountable/types/recipe_output_metadata.py +1 -1
- uncountable/types/recipe_tags.py +1 -1
- uncountable/types/recipe_workflow_steps.py +1 -1
- uncountable/types/recipes.py +1 -1
- uncountable/types/response.py +1 -1
- uncountable/types/units.py +1 -1
- uncountable/types/users.py +1 -1
- uncountable/types/workflows.py +1 -1
- {UncountablePythonSDK-0.0.38.dist-info → UncountablePythonSDK-0.0.39.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: UncountablePythonSDK
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.39
|
|
4
4
|
Summary: Uncountable SDK
|
|
5
5
|
Project-URL: Homepage, https://github.com/uncountableinc/uncountable-python-sdk
|
|
6
6
|
Project-URL: Repository, https://github.com/uncountableinc/uncountable-python-sdk.git
|
|
@@ -42,7 +42,7 @@ pkgs/type_spec/config.py,sha256=INfEiDcUsZFUKasHprsE6i33siPB0RnfmTKOsWcGnQ8,5043
|
|
|
42
42
|
pkgs/type_spec/emit_io_ts.py,sha256=Ghd8XYqyNYldHQDepwa9GLfHXcoi48ztBw84K28ETic,5707
|
|
43
43
|
pkgs/type_spec/emit_open_api.py,sha256=NVVXAvjPHC_MPqch_SMY6klj3kPnckOa7fJsb-ZsFTs,24371
|
|
44
44
|
pkgs/type_spec/emit_open_api_util.py,sha256=9tWLMT6NTeCa2caO8DdWo6aYoi0b4AEFiAXNaaQKJIs,2373
|
|
45
|
-
pkgs/type_spec/emit_python.py,sha256=
|
|
45
|
+
pkgs/type_spec/emit_python.py,sha256=uZ4lRRbYr9XcRDX307g5yUQyzs9xcAssbq6XVW55hc8,45177
|
|
46
46
|
pkgs/type_spec/emit_typescript.py,sha256=cdr5h8N70PuwORcvhURUujzwH9r1LVwJB8V2EoipGkw,17917
|
|
47
47
|
pkgs/type_spec/emit_typescript_util.py,sha256=sR7ys3Ilnh6SQiXJbfYk4pxfOu0bDjbUFTEYEW-ud6c,863
|
|
48
48
|
pkgs/type_spec/load_types.py,sha256=xEHwdB_miR3vNs161Oy1luafE0VC-yk9-utAyCJmbEo,3629
|
|
@@ -65,7 +65,7 @@ uncountable/__init__.py,sha256=8l8XWNCKsu7TG94c-xa2KHpDegvxDC2FyQISdWC763Y,89
|
|
|
65
65
|
uncountable/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
66
66
|
uncountable/core/__init__.py,sha256=RFv0kO6rKFf1PtBPu83hCGmxqkJamRtsgQ9_-ztw7tA,341
|
|
67
67
|
uncountable/core/async_batch.py,sha256=Zo02TICZ7AK81Qa02NQ8fp8uaijQph1FEta28K3cKb0,749
|
|
68
|
-
uncountable/core/client.py,sha256=
|
|
68
|
+
uncountable/core/client.py,sha256=50vR11GwwyTc3qOIahUxCJK77zCM7LOXwbZdHoZCZgY,10168
|
|
69
69
|
uncountable/core/file_upload.py,sha256=t4cutIFB5rNN2qVCx3H0HotSjCSJSxis2_QBarDuXyc,2833
|
|
70
70
|
uncountable/core/types.py,sha256=s2CjqYJpsmbC7xMwxxT7kJ_V9bwokrjjWVVjpMcQpKI,333
|
|
71
71
|
uncountable/integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -79,113 +79,115 @@ uncountable/integration/db/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJ
|
|
|
79
79
|
uncountable/integration/db/connect.py,sha256=YtQHJ1DBGPhxKFRCfiXqohOYUceKSxMVOJ88aPI48Ug,181
|
|
80
80
|
uncountable/integration/executors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
81
81
|
uncountable/integration/executors/script_executor.py,sha256=hM8E-aU8zyM6ZcBtqAqInKZ_BF93RLqEA0dU7y5FhWQ,841
|
|
82
|
-
uncountable/types/__init__.py,sha256=
|
|
83
|
-
uncountable/types/async_batch.py,sha256=
|
|
84
|
-
uncountable/types/async_batch_processor.py,sha256=
|
|
85
|
-
uncountable/types/base.py,sha256=
|
|
86
|
-
uncountable/types/calculations.py,sha256=
|
|
87
|
-
uncountable/types/chemical_structure.py,sha256=
|
|
88
|
-
uncountable/types/client_base.py,sha256=
|
|
89
|
-
uncountable/types/curves.py,sha256=
|
|
90
|
-
uncountable/types/entity.py,sha256=
|
|
91
|
-
uncountable/types/experiment_groups.py,sha256=
|
|
92
|
-
uncountable/types/field_values.py,sha256=
|
|
93
|
-
uncountable/types/fields.py,sha256=
|
|
94
|
-
uncountable/types/id_source.py,sha256=
|
|
95
|
-
uncountable/types/identifier.py,sha256=
|
|
96
|
-
uncountable/types/input_attributes.py,sha256=
|
|
97
|
-
uncountable/types/inputs.py,sha256=
|
|
98
|
-
uncountable/types/outputs.py,sha256=
|
|
99
|
-
uncountable/types/permissions.py,sha256=
|
|
100
|
-
uncountable/types/phases.py,sha256=
|
|
101
|
-
uncountable/types/post_base.py,sha256=
|
|
102
|
-
uncountable/types/recipe_identifiers.py,sha256=
|
|
103
|
-
uncountable/types/recipe_inputs.py,sha256=
|
|
104
|
-
uncountable/types/recipe_links.py,sha256=
|
|
105
|
-
uncountable/types/recipe_metadata.py,sha256=
|
|
106
|
-
uncountable/types/recipe_output_metadata.py,sha256=
|
|
107
|
-
uncountable/types/recipe_tags.py,sha256=
|
|
108
|
-
uncountable/types/recipe_workflow_steps.py,sha256=
|
|
109
|
-
uncountable/types/recipes.py,sha256=
|
|
110
|
-
uncountable/types/response.py,sha256=
|
|
111
|
-
uncountable/types/units.py,sha256=
|
|
112
|
-
uncountable/types/users.py,sha256=
|
|
113
|
-
uncountable/types/workflows.py,sha256=
|
|
82
|
+
uncountable/types/__init__.py,sha256=A2vOgaDMSJUtmQsihf3VJKmdrFl3eCN9yLgiF823Pgk,7713
|
|
83
|
+
uncountable/types/async_batch.py,sha256=ErGB_jCF1LQF5bwomvfWSJk5uiomoa6OY-ajx3mdaXk,1781
|
|
84
|
+
uncountable/types/async_batch_processor.py,sha256=frAwr4RUFza3onLO5xmeneR8rSDoIZTyO9m-2KtedQI,7471
|
|
85
|
+
uncountable/types/base.py,sha256=XXjZXexx0xWFUxMMhW8i9nIL6n8dsZVsHwdgnhZ0zJ4,2714
|
|
86
|
+
uncountable/types/calculations.py,sha256=W7OEDEQE5k3-5iw1026ZVVvSP68GRnpD63mWMT_JsbA,567
|
|
87
|
+
uncountable/types/chemical_structure.py,sha256=Qfeq0Iwgvd0Jq42fSsa5TPeeL_nH0FOctbmLGBlZqY4,763
|
|
88
|
+
uncountable/types/client_base.py,sha256=F5ur4iY5qjX-DZYzrs49wDDnbR40X1MeHN3GS_vs3Es,64544
|
|
89
|
+
uncountable/types/curves.py,sha256=OuSM9d12rnYVhkRAE1Zh4a7yNpKF-6q7nJj7EbPsz7c,1313
|
|
90
|
+
uncountable/types/entity.py,sha256=dbzG_mQvUsdasUc4irun3T00cK99kdNJDTk9PFh0HvM,11642
|
|
91
|
+
uncountable/types/experiment_groups.py,sha256=J6fI7B3ZvY8U0WDGp4hxgBB9W5JuvkaRkphUZJPygmg,604
|
|
92
|
+
uncountable/types/field_values.py,sha256=c8091h1I5QQFMfq4Tfo1KHg0W5okP3JYGMExpT2iSHw,1675
|
|
93
|
+
uncountable/types/fields.py,sha256=8xlJ4uPzu1Al2aLADc63Fc3oihV2h7K7hV6_qziiLpM,575
|
|
94
|
+
uncountable/types/id_source.py,sha256=NLnJf7SZJLS01wd4aflhdzufkMO7p0vzY2KHXQdC4-M,1346
|
|
95
|
+
uncountable/types/identifier.py,sha256=JnroIPBCl66a3vnDJ5052MKZIgoUgXnv2aS7kDCXA0Q,1460
|
|
96
|
+
uncountable/types/input_attributes.py,sha256=Kky2LQwNqTBp3Fn0oH4wRQJ7hIq5DjheGZoJUNbAWAg,831
|
|
97
|
+
uncountable/types/inputs.py,sha256=8UibnYdtigLEuc-ndkU_O7VXsvSmzUsgEz_C-JiZOuo,1622
|
|
98
|
+
uncountable/types/outputs.py,sha256=YsK9rP9DCEs1YK6LdleWdUlR44Fson1hJ3tKcJHKrSs,676
|
|
99
|
+
uncountable/types/permissions.py,sha256=i0vFwVvmmnInrA5qW8uuo0_tM6KYn3VYZ75d9084Vko,1625
|
|
100
|
+
uncountable/types/phases.py,sha256=Dj6KLZ9fKDkHDSPXz_p1ztTMPbU27aHufTntthCXEtE,555
|
|
101
|
+
uncountable/types/post_base.py,sha256=2et3TDnFChZcx0RWU-18RJHw9Yiyj2TJz-2tByHXwaI,770
|
|
102
|
+
uncountable/types/recipe_identifiers.py,sha256=FqbZDxU_hbQOrTDotly_K45lmp30A_4yn79VEwXNn3I,1773
|
|
103
|
+
uncountable/types/recipe_inputs.py,sha256=t5nFzuF1AU6SUHpya6xKHSlcckmt3XxAuk9ofjZ2oGU,746
|
|
104
|
+
uncountable/types/recipe_links.py,sha256=0u-Z61gL7eLMobLUAlU6owtcqF0j1EpuH2SXWSg6mIs,1411
|
|
105
|
+
uncountable/types/recipe_metadata.py,sha256=8B1jJmcHmGpzm_esegCB7_8T_dnGk_h2Q_nTkmNa5CM,1442
|
|
106
|
+
uncountable/types/recipe_output_metadata.py,sha256=mSCRkjsU4xjuGz7oOzNr0fmA2j1CYqg8ICaDUXRjb18,618
|
|
107
|
+
uncountable/types/recipe_tags.py,sha256=YwtDXkV9ShitmsMJsAF9ygQOqH-oPlPLjn6KEbLtpKY,586
|
|
108
|
+
uncountable/types/recipe_workflow_steps.py,sha256=jw9kyjWXWboKElxQLAr-wOYNqcJkNIqysJfQ-BCjMik,3002
|
|
109
|
+
uncountable/types/recipes.py,sha256=U1QxgZPGDYM7HfTm7Y401-FvAh5VPigd9b34b-3kQTA,554
|
|
110
|
+
uncountable/types/response.py,sha256=1vSfw7u5k5vrbQFQbVrT3JU7vkOHa86jY5T0kGVaHvY,625
|
|
111
|
+
uncountable/types/units.py,sha256=OXfqtShjiAbglgqsTar2TfW9d9SEcUJd2-4nbRtj99M,570
|
|
112
|
+
uncountable/types/users.py,sha256=Z-DRoyfFXeoPUFhPu6V_vXuxgiZIo-q3i_3xlt0nSIc,593
|
|
113
|
+
uncountable/types/workflows.py,sha256=3IaJOC8JPkGxqAcw0UAqMMT0Vp4qJsB1cjVX5lvm3Yk,830
|
|
114
114
|
uncountable/types/api/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
|
|
115
115
|
uncountable/types/api/batch/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
|
|
116
|
-
uncountable/types/api/batch/execute_batch.py,sha256=
|
|
117
|
-
uncountable/types/api/batch/execute_batch_load_async.py,sha256=
|
|
116
|
+
uncountable/types/api/batch/execute_batch.py,sha256=PiulMHjF6KQ6XvPYhkW20m1GaL2PjAwHtsGhSESf-0g,1701
|
|
117
|
+
uncountable/types/api/batch/execute_batch_load_async.py,sha256=zF6Y8wIffAfc_wESdCJbg9M8x_ZV1f8SAhOv-fxecz8,890
|
|
118
118
|
uncountable/types/api/chemical/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
|
|
119
|
-
uncountable/types/api/chemical/convert_chemical_formats.py,sha256=
|
|
119
|
+
uncountable/types/api/chemical/convert_chemical_formats.py,sha256=ra2OhLvK37JmuOp5KDzlr0fT5f-BT6Wu4yfsroNH-ig,1310
|
|
120
120
|
uncountable/types/api/entity/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
|
|
121
|
-
uncountable/types/api/entity/create_entities.py,sha256=
|
|
122
|
-
uncountable/types/api/entity/create_entity.py,sha256=
|
|
123
|
-
uncountable/types/api/entity/get_entities_data.py,sha256=
|
|
124
|
-
uncountable/types/api/entity/list_entities.py,sha256=
|
|
125
|
-
uncountable/types/api/entity/lock_entity.py,sha256=
|
|
126
|
-
uncountable/types/api/entity/resolve_entity_ids.py,sha256=
|
|
127
|
-
uncountable/types/api/entity/set_values.py,sha256=
|
|
128
|
-
uncountable/types/api/entity/transition_entity_phase.py,sha256=
|
|
129
|
-
uncountable/types/api/entity/unlock_entity.py,sha256=
|
|
121
|
+
uncountable/types/api/entity/create_entities.py,sha256=TPjOasIl5HqIFY4X1cJiOPKXMd4l9d9IzqV_K_Ajm58,1708
|
|
122
|
+
uncountable/types/api/entity/create_entity.py,sha256=5j6rWG_bHXXJJTVaaqEh3AHN2o3Bvai-IhYP0x3uv1c,1878
|
|
123
|
+
uncountable/types/api/entity/get_entities_data.py,sha256=kXmxjXj5zpVb-DmSv8TlTqaOVE_TQ3KaCLAZFkgwiMg,1175
|
|
124
|
+
uncountable/types/api/entity/list_entities.py,sha256=3nSX8so8Ns7hj_7oeonGJ1SY9r242YRrOKi7uAtVSXE,1702
|
|
125
|
+
uncountable/types/api/entity/lock_entity.py,sha256=qLE2eMbvkk56aqKnjasbh0L-ONzvkxdB65lk3JBnNsw,1034
|
|
126
|
+
uncountable/types/api/entity/resolve_entity_ids.py,sha256=EIJvNn0_21l6fEZrB4G9vvcSatRcyZu5PaaxN8AZiNg,1091
|
|
127
|
+
uncountable/types/api/entity/set_values.py,sha256=uEJORWJMDuLNpuovGhsxY5n9Kcg67Pqfyg4A6IaDRHA,963
|
|
128
|
+
uncountable/types/api/entity/transition_entity_phase.py,sha256=re3NoGL-xDdBy_uVrt4XsdbP-Bxmy4Duv4lZlR2pB1s,1808
|
|
129
|
+
uncountable/types/api/entity/unlock_entity.py,sha256=6gBKcy74OZlk6Gw8k00wGD83Wiq3ZFiBJ9QIGTeh6WM,983
|
|
130
|
+
uncountable/types/api/equipment/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
|
|
131
|
+
uncountable/types/api/equipment/associate_equipment_input.py,sha256=al6bo34GZv9OXqyX33Kbc9pVZN1VtldogLrh3gWoA-E,998
|
|
130
132
|
uncountable/types/api/field_options/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
|
|
131
|
-
uncountable/types/api/field_options/upsert_field_options.py,sha256=
|
|
133
|
+
uncountable/types/api/field_options/upsert_field_options.py,sha256=J4WwaSUsoNCNFT4DNjKJurKfCIeufB2C3KPcCacISck,1149
|
|
132
134
|
uncountable/types/api/id_source/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
|
|
133
|
-
uncountable/types/api/id_source/list_id_source.py,sha256=
|
|
134
|
-
uncountable/types/api/id_source/match_id_source.py,sha256=
|
|
135
|
+
uncountable/types/api/id_source/list_id_source.py,sha256=5yiQmRjKz9YQtKq7cbY5iA3b12Qdlcq79CpYA0_Sf9Y,1162
|
|
136
|
+
uncountable/types/api/id_source/match_id_source.py,sha256=ERmm_0qOxA4Si0fNeNY6uouoSIorHvZ07vNvrUSpkbw,1053
|
|
135
137
|
uncountable/types/api/input_groups/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
|
|
136
|
-
uncountable/types/api/input_groups/get_input_group_names.py,sha256=
|
|
138
|
+
uncountable/types/api/input_groups/get_input_group_names.py,sha256=BnvBn7J_faJB6-cr2PStui8m31ZMLA5ZvJ6kbkxyGOM,1038
|
|
137
139
|
uncountable/types/api/inputs/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
|
|
138
|
-
uncountable/types/api/inputs/create_inputs.py,sha256=
|
|
139
|
-
uncountable/types/api/inputs/get_input_data.py,sha256=
|
|
140
|
-
uncountable/types/api/inputs/get_input_names.py,sha256=
|
|
141
|
-
uncountable/types/api/inputs/get_inputs_data.py,sha256=
|
|
142
|
-
uncountable/types/api/inputs/set_input_attribute_values.py,sha256=
|
|
143
|
-
uncountable/types/api/inputs/set_input_category.py,sha256=
|
|
144
|
-
uncountable/types/api/inputs/set_input_subcategories.py,sha256=
|
|
145
|
-
uncountable/types/api/inputs/set_intermediate_type.py,sha256=
|
|
140
|
+
uncountable/types/api/inputs/create_inputs.py,sha256=t3YLB15VfI9PuIx66tuQVpEQQiHpTsK_WcGkzGzFfUo,1680
|
|
141
|
+
uncountable/types/api/inputs/get_input_data.py,sha256=RMX68UXqNI-2wT-O433Iq81MOrzpqubM4T53vVhB9R0,2183
|
|
142
|
+
uncountable/types/api/inputs/get_input_names.py,sha256=Qrr9t-mWg2VAzZbD2161d-aGJLP5yTMv-p25P2-SxWQ,1158
|
|
143
|
+
uncountable/types/api/inputs/get_inputs_data.py,sha256=5CxzNSILjW4Y-weeklvpywaHr3HudKDj2hJa5YJvgEc,1846
|
|
144
|
+
uncountable/types/api/inputs/set_input_attribute_values.py,sha256=Za67FqYyjxFYMC1pbJkl0bW3ZySNHjSnlMUJGXl-q9I,1346
|
|
145
|
+
uncountable/types/api/inputs/set_input_category.py,sha256=3W0UAl0cxJPWX4pVGps6fhU6NR1Y46K9UzYUbkIxtto,972
|
|
146
|
+
uncountable/types/api/inputs/set_input_subcategories.py,sha256=8uwzJ4rZ54NYpqGyLZ4x7mzv6DIGCWNXQrtgjd5cOCY,1009
|
|
147
|
+
uncountable/types/api/inputs/set_intermediate_type.py,sha256=sk2l628wx3hQaiHi3VAIQ0ERyaLF4bRScHUX07ExVt8,1114
|
|
146
148
|
uncountable/types/api/material_families/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
|
|
147
|
-
uncountable/types/api/material_families/update_entity_material_families.py,sha256=
|
|
149
|
+
uncountable/types/api/material_families/update_entity_material_families.py,sha256=m4xnxC7jT3xwO9aLVt1hIU6nj4tB1wV_kNNmGkTSmRE,1401
|
|
148
150
|
uncountable/types/api/outputs/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
|
|
149
|
-
uncountable/types/api/outputs/get_output_data.py,sha256=
|
|
150
|
-
uncountable/types/api/outputs/get_output_names.py,sha256=
|
|
151
|
-
uncountable/types/api/outputs/resolve_output_conditions.py,sha256=
|
|
151
|
+
uncountable/types/api/outputs/get_output_data.py,sha256=ZgpylOphvCdYAhMuCSnr-cRJTWvgLA0naDm1KTM34hQ,2245
|
|
152
|
+
uncountable/types/api/outputs/get_output_names.py,sha256=NqTjaiXwwq4P5dtnaGgnmtpZMR0Piv8xUsvjP1M9gK0,1091
|
|
153
|
+
uncountable/types/api/outputs/resolve_output_conditions.py,sha256=M33xy4I1G0gKKU42muHc9NrNYdGyCqBqcYcwY-NOwWk,1804
|
|
152
154
|
uncountable/types/api/permissions/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
|
|
153
|
-
uncountable/types/api/permissions/set_core_permissions.py,sha256=
|
|
155
|
+
uncountable/types/api/permissions/set_core_permissions.py,sha256=7FEVQTZJlAX4eW0mM6OrW7TODp0dsF7ZCmbwXxEV8Vk,2555
|
|
154
156
|
uncountable/types/api/project/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
|
|
155
|
-
uncountable/types/api/project/get_projects.py,sha256=
|
|
156
|
-
uncountable/types/api/project/get_projects_data.py,sha256=
|
|
157
|
+
uncountable/types/api/project/get_projects.py,sha256=HR0_eupxbgIT4eOZC0uT0sCnwvqsT6ZWG6xGlNxrX38,1240
|
|
158
|
+
uncountable/types/api/project/get_projects_data.py,sha256=bjdTtEtVc_bOoxuRoElTOLCs6tGPLM2D5jrjkVppK08,1496
|
|
157
159
|
uncountable/types/api/recipe_links/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
|
|
158
|
-
uncountable/types/api/recipe_links/create_recipe_link.py,sha256=
|
|
159
|
-
uncountable/types/api/recipe_links/remove_recipe_link.py,sha256=
|
|
160
|
+
uncountable/types/api/recipe_links/create_recipe_link.py,sha256=jMcUBL9NuoOpuWpiu-qJOSnKeIBLPX9C03WhwlmiZaE,1218
|
|
161
|
+
uncountable/types/api/recipe_links/remove_recipe_link.py,sha256=kKsekhdRV_fRwYeiCYZkUzJdNPPqPDdWI5rkteQkPSU,1204
|
|
160
162
|
uncountable/types/api/recipe_metadata/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
|
|
161
|
-
uncountable/types/api/recipe_metadata/get_recipe_metadata_data.py,sha256=
|
|
163
|
+
uncountable/types/api/recipe_metadata/get_recipe_metadata_data.py,sha256=e0VcDiD4DYeWM8i88fwbVS-ZCszIFlSbkdIJHimVEA0,1272
|
|
162
164
|
uncountable/types/api/recipes/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
|
|
163
|
-
uncountable/types/api/recipes/add_recipe_to_project.py,sha256=
|
|
164
|
-
uncountable/types/api/recipes/archive_recipes.py,sha256=
|
|
165
|
-
uncountable/types/api/recipes/associate_recipe_as_input.py,sha256=
|
|
166
|
-
uncountable/types/api/recipes/associate_recipe_as_lot.py,sha256=
|
|
167
|
-
uncountable/types/api/recipes/create_recipe.py,sha256=
|
|
168
|
-
uncountable/types/api/recipes/create_recipes.py,sha256=
|
|
169
|
-
uncountable/types/api/recipes/disassociate_recipe_as_input.py,sha256=
|
|
170
|
-
uncountable/types/api/recipes/edit_recipe_inputs.py,sha256=
|
|
171
|
-
uncountable/types/api/recipes/get_curve.py,sha256=
|
|
172
|
-
uncountable/types/api/recipes/get_recipe_calculations.py,sha256=
|
|
173
|
-
uncountable/types/api/recipes/get_recipe_links.py,sha256=
|
|
174
|
-
uncountable/types/api/recipes/get_recipe_names.py,sha256=
|
|
175
|
-
uncountable/types/api/recipes/get_recipe_output_metadata.py,sha256=
|
|
176
|
-
uncountable/types/api/recipes/get_recipes_data.py,sha256=
|
|
177
|
-
uncountable/types/api/recipes/lock_recipes.py,sha256=
|
|
178
|
-
uncountable/types/api/recipes/remove_recipe_from_project.py,sha256=
|
|
179
|
-
uncountable/types/api/recipes/set_recipe_inputs.py,sha256=
|
|
180
|
-
uncountable/types/api/recipes/set_recipe_metadata.py,sha256=
|
|
181
|
-
uncountable/types/api/recipes/set_recipe_output_annotations.py,sha256=
|
|
182
|
-
uncountable/types/api/recipes/set_recipe_outputs.py,sha256=
|
|
183
|
-
uncountable/types/api/recipes/set_recipe_tags.py,sha256=
|
|
184
|
-
uncountable/types/api/recipes/unarchive_recipes.py,sha256=
|
|
185
|
-
uncountable/types/api/recipes/unlock_recipes.py,sha256=
|
|
165
|
+
uncountable/types/api/recipes/add_recipe_to_project.py,sha256=S05ltS4gki4i4CiPTVhMKcW1Tv5J3K0lJ3TE5vIF-Vo,872
|
|
166
|
+
uncountable/types/api/recipes/archive_recipes.py,sha256=_49JFzMAzKqWrBSP0cL2BBJvwl1990EwJT_T2jhc9DE,857
|
|
167
|
+
uncountable/types/api/recipes/associate_recipe_as_input.py,sha256=5_sG2y2xg8uBmjqyQsoF3p9e5kvM0NyXRaCsIZpB4eo,1032
|
|
168
|
+
uncountable/types/api/recipes/associate_recipe_as_lot.py,sha256=eF5hN4aJ2h9N91H8BdoADKx5EmkEMHsIdOS7n9DpupQ,960
|
|
169
|
+
uncountable/types/api/recipes/create_recipe.py,sha256=jjpf5ZOsB9i3KNnFDD4ZCOUAv60uVitHpUTq46fgEO8,1425
|
|
170
|
+
uncountable/types/api/recipes/create_recipes.py,sha256=fQwkPhr0kF1ukw54L8ogeTkyj_7yKM7N3fblkWk2DDg,1549
|
|
171
|
+
uncountable/types/api/recipes/disassociate_recipe_as_input.py,sha256=E1wzJIlYqpM0RXsVxhl6AkAloUTSFsyI1tH0Au7GIj8,918
|
|
172
|
+
uncountable/types/api/recipes/edit_recipe_inputs.py,sha256=HDGgKneehsldTK8f5UoHqoKALFK9G8AsT28sCqaaSvY,5518
|
|
173
|
+
uncountable/types/api/recipes/get_curve.py,sha256=jDj8f2sBnfcGFsWcxgdTyaHvxY6-Q1h84l_j8YutXT0,944
|
|
174
|
+
uncountable/types/api/recipes/get_recipe_calculations.py,sha256=Wfx9yZo_wxBep-hESPvzuVf3-w_n8a8h5oqr7rpEqGM,1477
|
|
175
|
+
uncountable/types/api/recipes/get_recipe_links.py,sha256=h-2baQS_K22s-0DkyN6Q6utSpaDb5a-t9YvNcQ_LFa0,990
|
|
176
|
+
uncountable/types/api/recipes/get_recipe_names.py,sha256=ozjgaGFTGdo74BzLSvT6pc6E46dqdJkH68On_dR1fr4,991
|
|
177
|
+
uncountable/types/api/recipes/get_recipe_output_metadata.py,sha256=3bYk_xUeSiZhaLJ-yu-Qu6ARROQtggz71clLqsYzyaM,1469
|
|
178
|
+
uncountable/types/api/recipes/get_recipes_data.py,sha256=4dBULU0H34lHB-ffRIPC3mTrh2IPBGjdwAKxrhnOoSo,5434
|
|
179
|
+
uncountable/types/api/recipes/lock_recipes.py,sha256=KcAmqkS7XoLJ8cA11FDI4-eoDG_CFwNTtNSZo5QnBjU,1349
|
|
180
|
+
uncountable/types/api/recipes/remove_recipe_from_project.py,sha256=kJNzSpSS03Hx7LV0IgEtE1a38gVNDHkq5ENFQXUTkZE,877
|
|
181
|
+
uncountable/types/api/recipes/set_recipe_inputs.py,sha256=LzOVU1tqt3KcomeBX_fRcJSUmhkgQfC2a0E1Ptwq2BU,1431
|
|
182
|
+
uncountable/types/api/recipes/set_recipe_metadata.py,sha256=080f6bZtwvnYQy5u9MwQz9on9UAXc6WptY1PUqz61jU,938
|
|
183
|
+
uncountable/types/api/recipes/set_recipe_output_annotations.py,sha256=CO9DcjZDRFotGdbqcnw0oyZCFp8YvkD56G-PyOqIL8g,2895
|
|
184
|
+
uncountable/types/api/recipes/set_recipe_outputs.py,sha256=8y5DYDYAuSQSoQzAM1ju2I8eIo9OSd7UK19Pq52ftZQ,1727
|
|
185
|
+
uncountable/types/api/recipes/set_recipe_tags.py,sha256=X_3qvHYi2ofKv1U9i_H2TSeedQYooDSDANJaVMmJvn4,2458
|
|
186
|
+
uncountable/types/api/recipes/unarchive_recipes.py,sha256=5b6HM9TotEs_zwAyA_LVyIwWADGhYjERCsFHZ5__HXI,819
|
|
187
|
+
uncountable/types/api/recipes/unlock_recipes.py,sha256=3rllJ9vHZoOB-ZWtQ6AfHyyt4jBkaCwnl40vJdKv2Kk,1108
|
|
186
188
|
uncountable/types/api/triggers/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
|
|
187
|
-
uncountable/types/api/triggers/run_trigger.py,sha256=
|
|
188
|
-
UncountablePythonSDK-0.0.
|
|
189
|
-
UncountablePythonSDK-0.0.
|
|
190
|
-
UncountablePythonSDK-0.0.
|
|
191
|
-
UncountablePythonSDK-0.0.
|
|
189
|
+
uncountable/types/api/triggers/run_trigger.py,sha256=3_hgUD27DQV80xFVpvxNy2yHF6i4ej7AxVzS_upBLoQ,906
|
|
190
|
+
UncountablePythonSDK-0.0.39.dist-info/METADATA,sha256=wxWWiks9_yZP_NicluXnpRQDfHq84dTaikC51DMQNDY,1577
|
|
191
|
+
UncountablePythonSDK-0.0.39.dist-info/WHEEL,sha256=Wyh-_nZ0DJYolHNn1_hMa4lM7uDedD_RGVwbmTjyItk,91
|
|
192
|
+
UncountablePythonSDK-0.0.39.dist-info/top_level.txt,sha256=1UVGjAU-6hJY9qw2iJ7nCBeEwZ793AEN5ZfKX9A1uj4,31
|
|
193
|
+
UncountablePythonSDK-0.0.39.dist-info/RECORD,,
|
pkgs/type_spec/emit_python.py
CHANGED
|
@@ -11,7 +11,9 @@ INDENT = " "
|
|
|
11
11
|
LINE_BREAK = "\n"
|
|
12
12
|
MODIFY_NOTICE = "# DO NOT MODIFY -- This file is generated by type_spec\n"
|
|
13
13
|
# Turn excess line length warning and turn off ruff formatting
|
|
14
|
-
LINT_HEADER =
|
|
14
|
+
LINT_HEADER = (
|
|
15
|
+
"# flake8: noqa: F821\n# ruff: noqa: E402 Q003\n# fmt: off\n# isort: skip_file\n"
|
|
16
|
+
)
|
|
15
17
|
LINT_FOOTER = "# fmt: on\n"
|
|
16
18
|
ROUTE_NOTICE = """# Routes are generated from $endpoint specifications in the
|
|
17
19
|
# type_spec API YAML files. Refer to the section on endpoints in the type_spec/README"""
|
uncountable/core/client.py
CHANGED
uncountable/types/__init__.py
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
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 .api.recipes import add_recipe_to_project as add_recipe_to_project_t
|
|
7
7
|
from .api.recipes import archive_recipes as archive_recipes_t
|
|
8
|
+
from .api.equipment import associate_equipment_input as associate_equipment_input_t
|
|
8
9
|
from .api.recipes import associate_recipe_as_input as associate_recipe_as_input_t
|
|
9
10
|
from .api.recipes import associate_recipe_as_lot as associate_recipe_as_lot_t
|
|
10
11
|
from . import async_batch as async_batch_t
|
|
@@ -95,6 +96,7 @@ from . import workflows as workflows_t
|
|
|
95
96
|
__all__: list[str] = [
|
|
96
97
|
"add_recipe_to_project_t",
|
|
97
98
|
"archive_recipes_t",
|
|
99
|
+
"associate_equipment_input_t",
|
|
98
100
|
"associate_recipe_as_input_t",
|
|
99
101
|
"associate_recipe_as_lot_t",
|
|
100
102
|
"async_batch_t",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
2
|
+
# flake8: noqa: F821
|
|
3
|
+
# ruff: noqa: E402 Q003
|
|
4
|
+
# fmt: off
|
|
5
|
+
# isort: skip_file
|
|
6
|
+
from __future__ import annotations
|
|
7
|
+
import typing # noqa: F401
|
|
8
|
+
import datetime # noqa: F401
|
|
9
|
+
from decimal import Decimal # noqa: F401
|
|
10
|
+
from dataclasses import dataclass
|
|
11
|
+
from ... import async_batch as async_batch_t
|
|
12
|
+
from ... import base as base_t
|
|
13
|
+
from ... import identifier as identifier_t
|
|
14
|
+
|
|
15
|
+
__all__: list[str] = [
|
|
16
|
+
"Arguments",
|
|
17
|
+
"Data",
|
|
18
|
+
"ENDPOINT_METHOD",
|
|
19
|
+
"ENDPOINT_PATH",
|
|
20
|
+
]
|
|
21
|
+
|
|
22
|
+
ENDPOINT_METHOD = "POST"
|
|
23
|
+
ENDPOINT_PATH = "api/external/equipment/associate_equipment_input"
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
27
|
+
@dataclass(kw_only=True)
|
|
28
|
+
class Arguments:
|
|
29
|
+
equipment_key: identifier_t.IdentifierKey
|
|
30
|
+
material_family_ids: list[base_t.ObjectId]
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
34
|
+
@dataclass(kw_only=True)
|
|
35
|
+
class Data(async_batch_t.AsyncBatchActionReturn):
|
|
36
|
+
pass
|
|
37
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|