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.

Files changed (98) hide show
  1. {UncountablePythonSDK-0.0.38.dist-info → UncountablePythonSDK-0.0.39.dist-info}/METADATA +1 -1
  2. {UncountablePythonSDK-0.0.38.dist-info → UncountablePythonSDK-0.0.39.dist-info}/RECORD +98 -96
  3. {UncountablePythonSDK-0.0.38.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 +1 -1
  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.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.38
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=zP3AWJ5u0vzDcnvzSehCUgvXM0J9ZUtfLBVHerW6_wI,45164
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=lKg_58RSjKwGqDNOT2HYZXvJ4mGmxjVK4AtzlJAxIJ8,10159
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=5JfNm2Ldg-uhqdeek31q80XgYJWhupJ4SfphzQ55hlw,7589
83
- uncountable/types/async_batch.py,sha256=tD_ncDOEGwoxIQwgqqm2cHFA71chc8sPGwnJA9feNC8,1706
84
- uncountable/types/async_batch_processor.py,sha256=eNXKPOh-sCiarPvreLDEu4XbieWLe_5KXmiY984eZ5I,6083
85
- uncountable/types/base.py,sha256=w3BRf8SAvYPlKrcJtJcQ_WhCU3A9zy0VuRTRWRFKVUA,2709
86
- uncountable/types/calculations.py,sha256=16J-KKMp-I8ZQUkYNmKCHfAn6DGb99cFinALcDIdGHY,562
87
- uncountable/types/chemical_structure.py,sha256=zQKl53DGtQQONIUHFXuwjWLQaG7FPZY7x6SBSOzkGV0,758
88
- uncountable/types/client_base.py,sha256=9urQDmyM-VOhNVCYn3f6oE_cHAwdLAJ7bTgEwfisVTk,63523
89
- uncountable/types/curves.py,sha256=qYyRntMmFNonEwTrGhquMLbgMqjyP1moQflNTP0FMec,1308
90
- uncountable/types/entity.py,sha256=NjMZrqBwQ7sZe_oUuJqy9IEG7dWZmFMkQQXJ0_odcnA,11637
91
- uncountable/types/experiment_groups.py,sha256=ZBEk06F4n98Jz3oEA09WaDmw5rqPs7iVAm_Ysr4gc_o,599
92
- uncountable/types/field_values.py,sha256=2unBAeBqQPqLQKaL6nGpnDDksZ-5MZepgEF3sgy6oOk,1670
93
- uncountable/types/fields.py,sha256=eGtZ6axTYGFxLmPAyri2LwlcR4SZ2sX2c6QDX0ybKz0,570
94
- uncountable/types/id_source.py,sha256=Y3suURq3L1SahZ2oHPD986SU0l3Ik-ZzH38aQKgc1Fg,1341
95
- uncountable/types/identifier.py,sha256=94-O3H_qNrA48tf3srwPwdu8HURkLl7_-88kUnwElZg,1455
96
- uncountable/types/input_attributes.py,sha256=u-JABoZ-Ij1Ynq5g6MxOgRdQeYbM7OnGP2q_N7KuVdw,826
97
- uncountable/types/inputs.py,sha256=KoJGGxvwqQy8Eiw5X6PVUsEHQABYMtCj40PwtECDeIc,1617
98
- uncountable/types/outputs.py,sha256=hSUlu41sisYKIZpPrj1G1DRfKm6hsKNcd1eNKFYb-4w,671
99
- uncountable/types/permissions.py,sha256=VVLnukQ4RbApFdE0sgWDZxnrRCV6gOtXxq6yM5GxQlk,1620
100
- uncountable/types/phases.py,sha256=eaqwQlSRC2Ug7YFL0gqLbg3wDDHeRvBOhcABG7khW8c,550
101
- uncountable/types/post_base.py,sha256=xLBoQAQouP1kKq7RNYt6XHLeCT-y-cJscR6HfPMdquU,765
102
- uncountable/types/recipe_identifiers.py,sha256=uJ_1xRSYa02AwGi0gxDHqoQoI0tu1KW5AzTAXwnr9Nc,1768
103
- uncountable/types/recipe_inputs.py,sha256=OPEZUa1PUcQidcvRygHZguK199V7KfRF1IMwj3Vw9N4,741
104
- uncountable/types/recipe_links.py,sha256=RldSV7SdeBYa0bx02DzMg4jfPdgrlMRE40T16Fdy8u4,1406
105
- uncountable/types/recipe_metadata.py,sha256=cebGg_lJzqZzGnKnDgmuQFrw4Xhoz6HEiGM6G0az120,1437
106
- uncountable/types/recipe_output_metadata.py,sha256=XJA8R1r4NTzyR_DhMkmH4ZtYD-vqpvBMji9Be8OcFmo,613
107
- uncountable/types/recipe_tags.py,sha256=lYpksHAxXCcIjZKR7JoZOTH2cBSovwxZaHwjZy_yqiQ,581
108
- uncountable/types/recipe_workflow_steps.py,sha256=ZMZI6SteOTVSolhPPZsSqU139i4NYFc1ACbS1rSBLJQ,2997
109
- uncountable/types/recipes.py,sha256=tY8MNmQiky94eIFOxSLyflXVno3pfDygxJ6WPqJlyDU,549
110
- uncountable/types/response.py,sha256=ZI0CG7ZxBM2k5_W-6mNMU3UlB0p1i-0nrwOvsMaS-vU,620
111
- uncountable/types/units.py,sha256=_kZ7KkXIbRiY2fOdkTsbJBpWRah5TCC2WWiG05e-1DA,565
112
- uncountable/types/users.py,sha256=SUjNHBDcImKnnE7IN096Wfr1fmjNjCkQ7yQgKUPffz8,588
113
- uncountable/types/workflows.py,sha256=JJKM0SeDqAMA2oxwzlG1c1FxeSBI7E49duoITcUrEZo,825
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=cCZo_akwJR4_ET6oOBChdlrCQlxUw8V9i8tDpv7JTIc,1696
117
- uncountable/types/api/batch/execute_batch_load_async.py,sha256=dcdGFibO8fUDpC__X7Euvgs1EL1nGaNMTjb_QH-06do,885
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=COGzkfpTL_Ermg2cbasoVKGAxDAtJaTFay18IZtrWCA,1305
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=vzo5hS1qcmjQdfyCMarSu8MRcRGSiholOVSCfjXlA1k,1703
122
- uncountable/types/api/entity/create_entity.py,sha256=ausozCQ3qPM9YUQ87bOTCKOm-zkhn4CSLJr9jLc9n2U,1873
123
- uncountable/types/api/entity/get_entities_data.py,sha256=XjrJGZucIn1TYUlDLRnRA0JTQw-vXHIAT-m0H9hk37A,1170
124
- uncountable/types/api/entity/list_entities.py,sha256=nsOs5qsHNJFBDH1UK1Vk2IJGPY5rx764Xnn-FFLUg_A,1697
125
- uncountable/types/api/entity/lock_entity.py,sha256=SbRaKDbJfoPD9uVYiGlnrsPF_HZ_6m0hPAlalZwGyag,1029
126
- uncountable/types/api/entity/resolve_entity_ids.py,sha256=AidGpPmI9ATDv0E7vd9LDOl3n3beGxUlRojh5uZrkl4,1086
127
- uncountable/types/api/entity/set_values.py,sha256=LcYrKQm5ItYLK1Vx7rRq5i6jkMLDhfEBhF0FD1GowQs,958
128
- uncountable/types/api/entity/transition_entity_phase.py,sha256=kSRtj7aCReXnS1mWecd0W8N9aC_ahZZxdiQNC6taqF4,1803
129
- uncountable/types/api/entity/unlock_entity.py,sha256=7KVzm1SYkRlRMqvH4aaMWs5R9GaM0Q4ZfGjoZXUE1SU,978
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=xYtC68AabmTrYn_yV19C91yZv9tfohaRxmvCjMQ5vy8,1144
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=S_NdAd1FIgMtCfpRK9bs4ZIJH7HdyHWImD1qiPuAKMg,1157
134
- uncountable/types/api/id_source/match_id_source.py,sha256=6aaAXcuOIy0FqKw0CK4xde8o9YmryDNhX46WUEnMrRk,1048
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=LdHWWEfVNGys6Tudienjich56Zz4bj7uXznpyYitCYA,1033
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=ykXjqKoE8WOy5N47jcjDVzSdiZx9GlB0FcTyuJdn8FU,1675
139
- uncountable/types/api/inputs/get_input_data.py,sha256=RrgmS4QORMrm1HTNey-A3zzCdYdkmTbokVYPTI_bjPo,2178
140
- uncountable/types/api/inputs/get_input_names.py,sha256=8vUA9maZdogngeYbr-DpifNrokJ16BgDN5LQvTrEvSc,1153
141
- uncountable/types/api/inputs/get_inputs_data.py,sha256=sqZ6xEjzQqRQYMaKXLGWR8WPhWbO6J6zZT8zSTEer84,1841
142
- uncountable/types/api/inputs/set_input_attribute_values.py,sha256=yvWgIVzl818ewhUA4v3ldSBfmZKngdWTtFn7fqk-dOE,1341
143
- uncountable/types/api/inputs/set_input_category.py,sha256=ymjMoIiWTtygwI67aVgcw6FyjWW31zBxZb78-YTNs1Y,967
144
- uncountable/types/api/inputs/set_input_subcategories.py,sha256=hRS1FcFWPaenO_08Ihtfy_v7MUbpiFefdK2AMv16HaI,1004
145
- uncountable/types/api/inputs/set_intermediate_type.py,sha256=tbN3vJ0559eMKZh0kXio1nI1zxWKhZy4bZRI2LOVlGc,1109
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=h-vkua57yCNSO6P1akIxmmaFdwzOXPxm2s3Xt6x1c7c,1396
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=vlWDHhMUVMoHZSdN778-puOvmu7uGlDE3cQwKfYd1iI,2240
150
- uncountable/types/api/outputs/get_output_names.py,sha256=Id_ApombSzzFdq5rD4uOfWIKzthic6KBAeyqcrhsx18,1086
151
- uncountable/types/api/outputs/resolve_output_conditions.py,sha256=XZqUseXcGhApHmPm-2u7a37Y4blLRxoPoLhvYlBfCpI,1799
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=jn70a4sWf45cv1OPkrNb1UBSv4atifL-VTCZB8DK3zY,2550
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=dMPq8CHxE4k1Vs42TmC4dp9b1jYp0TPlkICacAqrwXQ,1235
156
- uncountable/types/api/project/get_projects_data.py,sha256=HtUI5YN7S24v7o2VvNBWZkYFnGjFqJzBNoV0ojRx39E,1491
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=1Ok6XMGFKBIPV-uRsjvclEMCcAqyNVyrVLASLaJ8UrU,1213
159
- uncountable/types/api/recipe_links/remove_recipe_link.py,sha256=S_6YYaxawmv28WCJx70vE2C2I_vkCVnOwCCYLywUK6c,1199
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=el6Pn5XqExX66ZEEHM8CHPxnyXSMZPdfdvLBz86sAVY,1267
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=YSVxZ_tDBsyNlxCiqHF2E8pQXRjfq46X6QwoZmkbWWk,867
164
- uncountable/types/api/recipes/archive_recipes.py,sha256=XFCqBa90bG4Tpxu6fhUqzl7PWlY35bbzOmJf5EOviRM,852
165
- uncountable/types/api/recipes/associate_recipe_as_input.py,sha256=Kd0ySjIL4TZKR0QVVjlIUwUSjefZ6VmVw82HV-Yofbg,1027
166
- uncountable/types/api/recipes/associate_recipe_as_lot.py,sha256=bTYjbnY3B7GKz4MV4UGn7vPjaqMkAfUTio8872d4iws,955
167
- uncountable/types/api/recipes/create_recipe.py,sha256=jizKdsc761zrJXOi0xlmge7-Z9QlzRQdbLNtUoVLQCI,1420
168
- uncountable/types/api/recipes/create_recipes.py,sha256=qwIYa8hfcjY7_VOFt9lxmVtJ-HOJqQN3GDNSbZsRCZU,1544
169
- uncountable/types/api/recipes/disassociate_recipe_as_input.py,sha256=L25fpiK1Y5PByPVVgsZy9t4podz3xSSLIwKHj8CUrSg,913
170
- uncountable/types/api/recipes/edit_recipe_inputs.py,sha256=iUbbMASOVN2m7ywEeaLoEaJOkceoyjLzaRuMeoEFS_0,5513
171
- uncountable/types/api/recipes/get_curve.py,sha256=UIWfpqtU5sQokaxwYfQFNFl6HMyzWEF_Sjd8UMz0U88,939
172
- uncountable/types/api/recipes/get_recipe_calculations.py,sha256=eQmkdZzCEuq8S2f_kf_7GPvDLX1pTnY1CRmkK0SkMCI,1472
173
- uncountable/types/api/recipes/get_recipe_links.py,sha256=hk5dfQjv7yU2r-S9b8vwWEJLPHqU0-M6SFiTLMR3fVk,985
174
- uncountable/types/api/recipes/get_recipe_names.py,sha256=uCpXZq5oWjr9a_Vf-yYPaVS72XOlLHgAlju6KHeQ3UA,986
175
- uncountable/types/api/recipes/get_recipe_output_metadata.py,sha256=L9s2ykPP4pd02Pc98LDisY8bgV8CToS6t6fXKTWqGRw,1464
176
- uncountable/types/api/recipes/get_recipes_data.py,sha256=nX4sCRY_RxztVqV-DGVpAvpayy6pn6cumS2pD1xmC5k,5429
177
- uncountable/types/api/recipes/lock_recipes.py,sha256=9s6ISt0EIA7bx3QBSm53gNxRlfmK1iwBaqRTJl2u_d8,1344
178
- uncountable/types/api/recipes/remove_recipe_from_project.py,sha256=cr-VnqgBNek_WInmJln0UBn1GHMNQtRw3gsFTY_G91M,872
179
- uncountable/types/api/recipes/set_recipe_inputs.py,sha256=lFVfv-o_O5wHuMZdH63qlG4exFTlJM078oSAtb3XNxA,1426
180
- uncountable/types/api/recipes/set_recipe_metadata.py,sha256=Ba6ttd1JuS_Ypt-KpckSviWtOcQ-OTdTEJiaSYyoQL8,933
181
- uncountable/types/api/recipes/set_recipe_output_annotations.py,sha256=8JSWlHcPOJfqjjmIxNbJYlJipXaLNsmYqUXi6JM6uEo,2890
182
- uncountable/types/api/recipes/set_recipe_outputs.py,sha256=VfUL59O21qPrgD7qQ9t5OVSGcGZ2r17lW_yEzuUkrtw,1722
183
- uncountable/types/api/recipes/set_recipe_tags.py,sha256=U710hgq9-t6QZGRB-ZGHskpt4iXwYEjIRb67eh3P518,2453
184
- uncountable/types/api/recipes/unarchive_recipes.py,sha256=WcwFYbBsX2SKXnoBQ8locnRn7Bj1rHdtrURQVOfqgfU,814
185
- uncountable/types/api/recipes/unlock_recipes.py,sha256=m_CC9LZW7GRVrAu9uwDTTgEZr63-dOSduBAI5Ciud2I,1103
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=9m9M8-nlGB_sAU2Qm2lWugp4h4Osqj6QpjNfU8osd1U,901
188
- UncountablePythonSDK-0.0.38.dist-info/METADATA,sha256=JNH2Bj5C8pcbAOM9uGBcWUEZ4DHrvvigkSkT9c4oSjo,1577
189
- UncountablePythonSDK-0.0.38.dist-info/WHEEL,sha256=-oYQCr74JF3a37z2nRlQays_SX2MqOANoqVjBBAP2yE,91
190
- UncountablePythonSDK-0.0.38.dist-info/top_level.txt,sha256=1UVGjAU-6hJY9qw2iJ7nCBeEwZ793AEN5ZfKX9A1uj4,31
191
- UncountablePythonSDK-0.0.38.dist-info/RECORD,,
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,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (71.0.3)
2
+ Generator: setuptools (71.1.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -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 = "# flake8: noqa: F821\n# ruff: noqa: E402\n# fmt: off\n# isort: skip_file\n"
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"""
@@ -25,7 +25,7 @@ UNC_SDK_VERSION_HEADER = "X-UNC-SDK-VERSION"
25
25
 
26
26
 
27
27
  try:
28
- __version__ = version("uncountable")
28
+ __version__ = version("UncountablePythonSDK")
29
29
  except PackageNotFoundError:
30
30
  __version__ = "unknown"
31
31
 
@@ -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",
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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