benchling-sdk 1.13.0a2__tar.gz → 1.14.0__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 (120) hide show
  1. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/PKG-INFO +2 -2
  2. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/benchling.py +30 -6
  3. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/models/__init__.py +164 -44
  4. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/models/webhooks/v0/__init__.py +4 -0
  5. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/base_service.py +7 -0
  6. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/stable/aa_sequence_service.py +14 -0
  7. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/stable/dna_sequence_service.py +14 -0
  8. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/stable/entry_service.py +23 -0
  9. benchling_sdk-1.14.0/benchling_sdk/services/v2/stable/workflow_flowchart_config_version_service.py +32 -0
  10. benchling_sdk-1.14.0/benchling_sdk/services/v2/stable/workflow_flowchart_service.py +85 -0
  11. benchling_sdk-1.14.0/benchling_sdk/services/v2/v2_alpha_service.py +53 -0
  12. benchling_sdk-1.14.0/benchling_sdk/services/v2/v2_beta_service.py +137 -0
  13. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/v2_stable_service.py +165 -335
  14. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2_service.py +17 -11
  15. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/pyproject.toml +2 -2
  16. benchling_sdk-1.13.0a2/benchling_sdk/services/v2/alpha/v2_alpha_dna_sequence_service.py +0 -32
  17. benchling_sdk-1.13.0a2/benchling_sdk/services/v2/beta/v2_beta_aa_sequence_service.py +0 -33
  18. benchling_sdk-1.13.0a2/benchling_sdk/services/v2/v2_alpha_service.py +0 -73
  19. benchling_sdk-1.13.0a2/benchling_sdk/services/v2/v2_beta_service.py +0 -182
  20. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/LICENSE +0 -0
  21. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/README.md +0 -0
  22. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/__init__.py +0 -0
  23. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/apps/__init__.py +0 -0
  24. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/apps/canvas/__init__.py +0 -0
  25. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/apps/canvas/errors.py +0 -0
  26. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/apps/canvas/framework.py +0 -0
  27. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/apps/canvas/types.py +0 -0
  28. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/apps/config/__init__.py +0 -0
  29. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/apps/config/cryptography_helpers.py +0 -0
  30. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/apps/config/decryption_provider.py +0 -0
  31. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/apps/config/errors.py +0 -0
  32. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/apps/config/framework.py +0 -0
  33. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/apps/config/helpers.py +0 -0
  34. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/apps/config/mock_config.py +0 -0
  35. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/apps/config/types.py +0 -0
  36. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/apps/framework.py +0 -0
  37. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/apps/helpers/__init__.py +0 -0
  38. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/apps/helpers/manifest_helpers.py +0 -0
  39. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/apps/helpers/webhook_helpers.py +0 -0
  40. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/apps/status/__init__.py +0 -0
  41. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/apps/status/errors.py +0 -0
  42. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/apps/status/framework.py +0 -0
  43. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/apps/status/helpers.py +0 -0
  44. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/apps/status/types.py +0 -0
  45. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/apps/types.py +0 -0
  46. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/auth/__init__.py +0 -0
  47. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/auth/api_key_auth.py +0 -0
  48. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/auth/bearer_token_auth.py +0 -0
  49. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/auth/client_credentials_oauth2.py +0 -0
  50. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/docs/__init__.py +0 -0
  51. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/docs/__main__.py +0 -0
  52. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/errors.py +0 -0
  53. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/helpers/__init__.py +0 -0
  54. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/helpers/client_helpers.py +0 -0
  55. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/helpers/constants.py +0 -0
  56. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/helpers/decorators.py +0 -0
  57. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/helpers/file_helpers.py +0 -0
  58. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/helpers/logging_helpers.py +0 -0
  59. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/helpers/package_helpers.py +0 -0
  60. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/helpers/pagination_helpers.py +0 -0
  61. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/helpers/response_helpers.py +0 -0
  62. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/helpers/retry_helpers.py +0 -0
  63. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/helpers/serialization_helpers.py +0 -0
  64. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/helpers/transaction_manager.py +0 -0
  65. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/models/webhooks/__init__.py +0 -0
  66. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/py.typed +0 -0
  67. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/__init__.py +0 -0
  68. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/__init__.py +0 -0
  69. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/alpha/__init__.py +0 -0
  70. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/alpha/v2_alpha_app_service.py +0 -0
  71. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/beta/__init__.py +0 -0
  72. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/beta/v2_beta_app_service.py +0 -0
  73. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/beta/v2_beta_collaboration_service.py +0 -0
  74. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/beta/v2_beta_data_frame_service.py +0 -0
  75. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/beta/v2_beta_entry_service.py +0 -0
  76. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/beta/v2_beta_folder_service.py +0 -0
  77. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/beta/v2_beta_project_service.py +0 -0
  78. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/beta/v2_beta_worklist_service.py +0 -0
  79. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/stable/__init__.py +0 -0
  80. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/stable/api_service.py +0 -0
  81. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/stable/app_service.py +0 -0
  82. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/stable/assay_result_service.py +0 -0
  83. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/stable/assay_run_service.py +0 -0
  84. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/stable/blob_service.py +0 -0
  85. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/stable/box_service.py +0 -0
  86. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/stable/container_service.py +0 -0
  87. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/stable/custom_entity_service.py +0 -0
  88. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/stable/custom_notation_service.py +0 -0
  89. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/stable/dna_alignments_service.py +0 -0
  90. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/stable/dna_oligo_service.py +0 -0
  91. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/stable/dropdown_service.py +0 -0
  92. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/stable/entity_service.py +0 -0
  93. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/stable/event_service.py +0 -0
  94. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/stable/export_service.py +0 -0
  95. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/stable/feature_library_service.py +0 -0
  96. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/stable/folder_service.py +0 -0
  97. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/stable/inventory_service.py +0 -0
  98. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/stable/lab_automation_service.py +0 -0
  99. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/stable/label_template_service.py +0 -0
  100. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/stable/location_service.py +0 -0
  101. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/stable/mixture_service.py +0 -0
  102. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/stable/molecule_service.py +0 -0
  103. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/stable/nucleotide_alignments_service.py +0 -0
  104. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/stable/oligo_service.py +0 -0
  105. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/stable/organization_service.py +0 -0
  106. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/stable/plate_service.py +0 -0
  107. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/stable/printer_service.py +0 -0
  108. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/stable/project_service.py +0 -0
  109. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/stable/registry_service.py +0 -0
  110. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/stable/request_service.py +0 -0
  111. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/stable/rna_oligo_service.py +0 -0
  112. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/stable/rna_sequence_service.py +0 -0
  113. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/stable/schema_service.py +0 -0
  114. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/stable/task_service.py +0 -0
  115. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/stable/team_service.py +0 -0
  116. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/stable/user_service.py +0 -0
  117. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/stable/warehouse_service.py +0 -0
  118. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/stable/workflow_output_service.py +0 -0
  119. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/stable/workflow_task_group_service.py +0 -0
  120. {benchling_sdk-1.13.0a2 → benchling_sdk-1.14.0}/benchling_sdk/services/v2/stable/workflow_task_service.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: benchling-sdk
3
- Version: 1.13.0a2
3
+ Version: 1.14.0
4
4
  Summary: SDK for interacting with the Benchling Platform.
5
5
  License: Apache-2.0
6
6
  Author: Benchling Support
@@ -17,7 +17,7 @@ Provides-Extra: python-jose
17
17
  Requires-Dist: PyYAML (>=6.0,<7.0)
18
18
  Requires-Dist: attrs (>=20.1.0,<23)
19
19
  Requires-Dist: backoff (>=1.10.0,<2.0.0)
20
- Requires-Dist: benchling-api-client (==2.0.303)
20
+ Requires-Dist: benchling-api-client (==2.0.307)
21
21
  Requires-Dist: certifi (>=2022.12.7)
22
22
  Requires-Dist: cryptography (>=42.0.0) ; extra == "cryptography"
23
23
  Requires-Dist: dataclasses-json (>=0.5.2,<0.6.0)
@@ -1,6 +1,7 @@
1
1
  """Provides the Benchling class, which is the main interface for accessing Benchling's API functionality."""
2
2
  from __future__ import annotations
3
3
 
4
+ from functools import cached_property
4
5
  import re
5
6
  from typing import Optional, Protocol, TYPE_CHECKING
6
7
  import urllib.parse
@@ -53,6 +54,10 @@ if TYPE_CHECKING:
53
54
  from benchling_sdk.services.v2.stable.team_service import TeamService
54
55
  from benchling_sdk.services.v2.stable.user_service import UserService
55
56
  from benchling_sdk.services.v2.stable.warehouse_service import WarehouseService
57
+ from benchling_sdk.services.v2.stable.workflow_flowchart_config_version_service import (
58
+ WorkflowFlowchartConfigVersionService,
59
+ )
60
+ from benchling_sdk.services.v2.stable.workflow_flowchart_service import WorkflowFlowchartService
56
61
  from benchling_sdk.services.v2.stable.workflow_output_service import WorkflowOutputService
57
62
  from benchling_sdk.services.v2.stable.workflow_task_group_service import WorkflowTaskGroupService
58
63
  from benchling_sdk.services.v2.stable.workflow_task_service import WorkflowTaskService
@@ -154,19 +159,16 @@ class Benchling(object):
154
159
  """
155
160
  return self._client
156
161
 
157
- @property
162
+ @cached_property
158
163
  def v2(self) -> V2Service:
159
164
  """
160
165
  V2.
161
166
 
162
167
  Namespace containing support for the V2 Benchling API.
163
168
  """
164
- if self._v2_service is None:
165
- from benchling_sdk.services.v2_service import V2Service
166
-
167
- self._v2_service = V2Service(self._client, retry_strategy=self._retry_strategy)
169
+ from benchling_sdk.services.v2_service import V2Service
168
170
 
169
- return self._v2_service
171
+ return V2Service(self._client, retry_strategy=self._retry_strategy)
170
172
 
171
173
  # ------------------------------------------------------------------------------------
172
174
  # Kept for compatibility and ease of access. New services should be added in services.v2.stable and
@@ -674,6 +676,28 @@ class Benchling(object):
674
676
  """
675
677
  return self.v2.stable.warehouse
676
678
 
679
+ @property
680
+ def workflow_flowcharts(self) -> WorkflowFlowchartService:
681
+ """
682
+ Workflow Flowcharts.
683
+
684
+ Workflow flowcharts represent the nodes and edges that a flowchart is comprised of.
685
+
686
+ See https://benchling.com/api/reference#/Workflow%20Flowcharts
687
+ """
688
+ return self.v2.stable.workflow_flowcharts
689
+
690
+ @property
691
+ def workflow_flowchart_config_versions(self) -> WorkflowFlowchartConfigVersionService:
692
+ """
693
+ Workflow Flowchart Config Versions.
694
+
695
+ Workflow flowchart config versions are versioned graphs of flowchart configurations.
696
+
697
+ See https://benchling.com/api/reference#/Workflow%20Flowchart%20Config%20Versions
698
+ """
699
+ return self.v2.stable.workflow_flowchart_config_versions
700
+
677
701
  @property
678
702
  def workflow_outputs(self) -> WorkflowOutputService:
679
703
  """
@@ -218,18 +218,10 @@ __all__ = [
218
218
  "BaseSearchInputUIBlock",
219
219
  "BaseSelectorInputUIBlock",
220
220
  "Batch",
221
- "BatchCreate",
222
221
  "BatchOrInaccessibleResource",
223
222
  "BatchSchema",
224
223
  "BatchSchemasList",
225
224
  "BatchSchemasPaginatedList",
226
- "BatchUpdate",
227
- "BatchesArchivalChange",
228
- "BatchesArchive",
229
- "BatchesArchiveReason",
230
- "BatchesBulkGet",
231
- "BatchesPaginatedList",
232
- "BatchesUnarchive",
233
225
  "BenchlingApp",
234
226
  "BenchlingAppCreate",
235
227
  "BenchlingAppDefinitionSummary",
@@ -305,6 +297,9 @@ __all__ = [
305
297
  "ButtonUiBlockCreate",
306
298
  "ButtonUiBlockType",
307
299
  "ButtonUiBlockUpdate",
300
+ "ChartNotePart",
301
+ "ChartNotePartChart",
302
+ "ChartNotePartType",
308
303
  "CheckboxNotePart",
309
304
  "CheckboxNotePartType",
310
305
  "CheckoutRecord",
@@ -385,7 +380,6 @@ __all__ = [
385
380
  "DateAppConfigItemType",
386
381
  "DatetimeAppConfigItem",
387
382
  "DatetimeAppConfigItemType",
388
- "DefaultConcentrationSummary",
389
383
  "DeprecatedAutomationOutputProcessorsPaginatedList",
390
384
  "DeprecatedContainerVolumeForInput",
391
385
  "DeprecatedContainerVolumeForInputUnits",
@@ -509,6 +503,7 @@ __all__ = [
509
503
  "EntryTableRow",
510
504
  "EntryTemplate",
511
505
  "EntryTemplateDay",
506
+ "EntryTemplateUpdate",
512
507
  "EntryTemplatesPaginatedList",
513
508
  "EntryUpdate",
514
509
  "EntryUpdatedFieldsEvent",
@@ -592,6 +587,12 @@ __all__ = [
592
587
  "IntegerFieldDefinition",
593
588
  "IntegerFieldDefinitionType",
594
589
  "InteractiveUiBlock",
590
+ "InventoryContainerTableNotePart",
591
+ "InventoryContainerTableNotePartMode",
592
+ "InventoryContainerTableNotePartType",
593
+ "InventoryPlateTableNotePart",
594
+ "InventoryPlateTableNotePartMode",
595
+ "InventoryPlateTableNotePartType",
595
596
  "JsonAppConfigItem",
596
597
  "JsonAppConfigItemType",
597
598
  "LabAutomationBenchlingAppError",
@@ -621,7 +622,6 @@ __all__ = [
621
622
  "ListAppConfigurationItemsSort",
622
623
  "ListAppSessionsSort",
623
624
  "ListAssayResultsSort",
624
- "ListBatchesSort",
625
625
  "ListBenchlingAppsSort",
626
626
  "ListBoxesSort",
627
627
  "ListCodonUsageTablesSort",
@@ -650,6 +650,7 @@ __all__ = [
650
650
  "ListRNASequencesSort",
651
651
  "ListTeamsSort",
652
652
  "ListUsersSort",
653
+ "ListWorkflowFlowchartsSort",
653
654
  "ListWorkflowTasksScheduledOn",
654
655
  "Location",
655
656
  "LocationCreate",
@@ -729,7 +730,11 @@ __all__ = [
729
730
  "NucleotideAlignment",
730
731
  "NucleotideAlignmentBase",
731
732
  "NucleotideAlignmentBaseAlgorithm",
733
+ "NucleotideAlignmentBaseClustaloOptions",
732
734
  "NucleotideAlignmentBaseFilesItem",
735
+ "NucleotideAlignmentBaseMafftOptions",
736
+ "NucleotideAlignmentBaseMafftOptionsAdjustDirection",
737
+ "NucleotideAlignmentBaseMafftOptionsStrategy",
733
738
  "NucleotideAlignmentFile",
734
739
  "NucleotideAlignmentSummary",
735
740
  "NucleotideAlignmentsPaginatedList",
@@ -990,7 +995,16 @@ __all__ = [
990
995
  "Well",
991
996
  "WellOrInaccessibleResource",
992
997
  "WellResourceType",
998
+ "WorkflowEndNodeDetails",
999
+ "WorkflowFlowchart",
1000
+ "WorkflowFlowchartConfigSummary",
1001
+ "WorkflowFlowchartConfigVersion",
1002
+ "WorkflowFlowchartEdgeConfig",
1003
+ "WorkflowFlowchartNodeConfig",
1004
+ "WorkflowFlowchartNodeConfigNodeType",
1005
+ "WorkflowFlowchartPaginatedList",
993
1006
  "WorkflowList",
1007
+ "WorkflowNodeTaskGroupSummary",
994
1008
  "WorkflowOutput",
995
1009
  "WorkflowOutputArchiveReason",
996
1010
  "WorkflowOutputBulkCreate",
@@ -998,6 +1012,7 @@ __all__ = [
998
1012
  "WorkflowOutputCreate",
999
1013
  "WorkflowOutputCreatedEvent",
1000
1014
  "WorkflowOutputCreatedEventEventType",
1015
+ "WorkflowOutputNodeDetails",
1001
1016
  "WorkflowOutputSchema",
1002
1017
  "WorkflowOutputSummary",
1003
1018
  "WorkflowOutputUpdate",
@@ -1011,6 +1026,9 @@ __all__ = [
1011
1026
  "WorkflowOutputsPaginatedList",
1012
1027
  "WorkflowOutputsUnarchive",
1013
1028
  "WorkflowPatch",
1029
+ "WorkflowRootNodeDetails",
1030
+ "WorkflowRouterFunction",
1031
+ "WorkflowRouterNodeDetails",
1014
1032
  "WorkflowSample",
1015
1033
  "WorkflowSampleList",
1016
1034
  "WorkflowStage",
@@ -1045,6 +1063,7 @@ __all__ = [
1045
1063
  "WorkflowTaskGroupsArchive",
1046
1064
  "WorkflowTaskGroupsPaginatedList",
1047
1065
  "WorkflowTaskGroupsUnarchive",
1066
+ "WorkflowTaskNodeDetails",
1048
1067
  "WorkflowTaskSchema",
1049
1068
  "WorkflowTaskSchemaBase",
1050
1069
  "WorkflowTaskSchemaExecutionType",
@@ -1284,18 +1303,10 @@ if TYPE_CHECKING:
1284
1303
  import benchling_api_client.v2.stable.models.base_search_input_ui_block
1285
1304
  import benchling_api_client.v2.stable.models.base_selector_input_ui_block
1286
1305
  import benchling_api_client.v2.stable.models.batch
1287
- import benchling_api_client.v2.stable.models.batch_create
1288
1306
  import benchling_api_client.v2.stable.models.batch_or_inaccessible_resource
1289
1307
  import benchling_api_client.v2.stable.models.batch_schema
1290
1308
  import benchling_api_client.v2.stable.models.batch_schemas_list
1291
1309
  import benchling_api_client.v2.stable.models.batch_schemas_paginated_list
1292
- import benchling_api_client.v2.stable.models.batch_update
1293
- import benchling_api_client.v2.stable.models.batches_archival_change
1294
- import benchling_api_client.v2.stable.models.batches_archive
1295
- import benchling_api_client.v2.stable.models.batches_archive_reason
1296
- import benchling_api_client.v2.stable.models.batches_bulk_get
1297
- import benchling_api_client.v2.stable.models.batches_paginated_list
1298
- import benchling_api_client.v2.stable.models.batches_unarchive
1299
1310
  import benchling_api_client.v2.stable.models.benchling_app
1300
1311
  import benchling_api_client.v2.stable.models.benchling_app_create
1301
1312
  import benchling_api_client.v2.stable.models.benchling_app_definition_summary
@@ -1371,6 +1382,9 @@ if TYPE_CHECKING:
1371
1382
  import benchling_api_client.v2.stable.models.button_ui_block_create
1372
1383
  import benchling_api_client.v2.stable.models.button_ui_block_type
1373
1384
  import benchling_api_client.v2.stable.models.button_ui_block_update
1385
+ import benchling_api_client.v2.stable.models.chart_note_part
1386
+ import benchling_api_client.v2.stable.models.chart_note_part_chart
1387
+ import benchling_api_client.v2.stable.models.chart_note_part_type
1374
1388
  import benchling_api_client.v2.stable.models.checkbox_note_part
1375
1389
  import benchling_api_client.v2.stable.models.checkbox_note_part_type
1376
1390
  import benchling_api_client.v2.stable.models.checkout_record
@@ -1451,7 +1465,6 @@ if TYPE_CHECKING:
1451
1465
  import benchling_api_client.v2.stable.models.date_app_config_item_type
1452
1466
  import benchling_api_client.v2.stable.models.datetime_app_config_item
1453
1467
  import benchling_api_client.v2.stable.models.datetime_app_config_item_type
1454
- import benchling_api_client.v2.stable.models.default_concentration_summary
1455
1468
  import benchling_api_client.v2.stable.models.deprecated_automation_output_processors_paginated_list
1456
1469
  import benchling_api_client.v2.stable.models.deprecated_container_volume_for_input
1457
1470
  import benchling_api_client.v2.stable.models.deprecated_container_volume_for_input_units
@@ -1575,6 +1588,7 @@ if TYPE_CHECKING:
1575
1588
  import benchling_api_client.v2.stable.models.entry_table_row
1576
1589
  import benchling_api_client.v2.stable.models.entry_template
1577
1590
  import benchling_api_client.v2.stable.models.entry_template_day
1591
+ import benchling_api_client.v2.stable.models.entry_template_update
1578
1592
  import benchling_api_client.v2.stable.models.entry_templates_paginated_list
1579
1593
  import benchling_api_client.v2.stable.models.entry_update
1580
1594
  import benchling_api_client.v2.stable.models.entry_updated_fields_event
@@ -1658,6 +1672,12 @@ if TYPE_CHECKING:
1658
1672
  import benchling_api_client.v2.stable.models.integer_field_definition
1659
1673
  import benchling_api_client.v2.stable.models.integer_field_definition_type
1660
1674
  import benchling_api_client.v2.stable.models.interactive_ui_block
1675
+ import benchling_api_client.v2.stable.models.inventory_container_table_note_part
1676
+ import benchling_api_client.v2.stable.models.inventory_container_table_note_part_mode
1677
+ import benchling_api_client.v2.stable.models.inventory_container_table_note_part_type
1678
+ import benchling_api_client.v2.stable.models.inventory_plate_table_note_part
1679
+ import benchling_api_client.v2.stable.models.inventory_plate_table_note_part_mode
1680
+ import benchling_api_client.v2.stable.models.inventory_plate_table_note_part_type
1661
1681
  import benchling_api_client.v2.stable.models.json_app_config_item
1662
1682
  import benchling_api_client.v2.stable.models.json_app_config_item_type
1663
1683
  import benchling_api_client.v2.stable.models.lab_automation_benchling_app_error
@@ -1687,7 +1707,6 @@ if TYPE_CHECKING:
1687
1707
  import benchling_api_client.v2.stable.models.list_app_configuration_items_sort
1688
1708
  import benchling_api_client.v2.stable.models.list_app_sessions_sort
1689
1709
  import benchling_api_client.v2.stable.models.list_assay_results_sort
1690
- import benchling_api_client.v2.stable.models.list_batches_sort
1691
1710
  import benchling_api_client.v2.stable.models.list_benchling_apps_sort
1692
1711
  import benchling_api_client.v2.stable.models.list_boxes_sort
1693
1712
  import benchling_api_client.v2.stable.models.list_codon_usage_tables_sort
@@ -1716,6 +1735,7 @@ if TYPE_CHECKING:
1716
1735
  import benchling_api_client.v2.stable.models.list_rna_sequences_sort
1717
1736
  import benchling_api_client.v2.stable.models.list_teams_sort
1718
1737
  import benchling_api_client.v2.stable.models.list_users_sort
1738
+ import benchling_api_client.v2.stable.models.list_workflow_flowcharts_sort
1719
1739
  import benchling_api_client.v2.stable.models.list_workflow_tasks_scheduled_on
1720
1740
  import benchling_api_client.v2.stable.models.location
1721
1741
  import benchling_api_client.v2.stable.models.location_create
@@ -1795,7 +1815,11 @@ if TYPE_CHECKING:
1795
1815
  import benchling_api_client.v2.stable.models.nucleotide_alignment
1796
1816
  import benchling_api_client.v2.stable.models.nucleotide_alignment_base
1797
1817
  import benchling_api_client.v2.stable.models.nucleotide_alignment_base_algorithm
1818
+ import benchling_api_client.v2.stable.models.nucleotide_alignment_base_clustalo_options
1798
1819
  import benchling_api_client.v2.stable.models.nucleotide_alignment_base_files_item
1820
+ import benchling_api_client.v2.stable.models.nucleotide_alignment_base_mafft_options
1821
+ import benchling_api_client.v2.stable.models.nucleotide_alignment_base_mafft_options_adjust_direction
1822
+ import benchling_api_client.v2.stable.models.nucleotide_alignment_base_mafft_options_strategy
1799
1823
  import benchling_api_client.v2.stable.models.nucleotide_alignment_file
1800
1824
  import benchling_api_client.v2.stable.models.nucleotide_alignment_summary
1801
1825
  import benchling_api_client.v2.stable.models.nucleotide_alignments_paginated_list
@@ -2056,7 +2080,16 @@ if TYPE_CHECKING:
2056
2080
  import benchling_api_client.v2.stable.models.well
2057
2081
  import benchling_api_client.v2.stable.models.well_or_inaccessible_resource
2058
2082
  import benchling_api_client.v2.stable.models.well_resource_type
2083
+ import benchling_api_client.v2.stable.models.workflow_end_node_details
2084
+ import benchling_api_client.v2.stable.models.workflow_flowchart
2085
+ import benchling_api_client.v2.stable.models.workflow_flowchart_config_summary
2086
+ import benchling_api_client.v2.stable.models.workflow_flowchart_config_version
2087
+ import benchling_api_client.v2.stable.models.workflow_flowchart_edge_config
2088
+ import benchling_api_client.v2.stable.models.workflow_flowchart_node_config
2089
+ import benchling_api_client.v2.stable.models.workflow_flowchart_node_config_node_type
2090
+ import benchling_api_client.v2.stable.models.workflow_flowchart_paginated_list
2059
2091
  import benchling_api_client.v2.stable.models.workflow_list
2092
+ import benchling_api_client.v2.stable.models.workflow_node_task_group_summary
2060
2093
  import benchling_api_client.v2.stable.models.workflow_output
2061
2094
  import benchling_api_client.v2.stable.models.workflow_output_archive_reason
2062
2095
  import benchling_api_client.v2.stable.models.workflow_output_bulk_create
@@ -2064,6 +2097,7 @@ if TYPE_CHECKING:
2064
2097
  import benchling_api_client.v2.stable.models.workflow_output_create
2065
2098
  import benchling_api_client.v2.stable.models.workflow_output_created_event
2066
2099
  import benchling_api_client.v2.stable.models.workflow_output_created_event_event_type
2100
+ import benchling_api_client.v2.stable.models.workflow_output_node_details
2067
2101
  import benchling_api_client.v2.stable.models.workflow_output_schema
2068
2102
  import benchling_api_client.v2.stable.models.workflow_output_summary
2069
2103
  import benchling_api_client.v2.stable.models.workflow_output_update
@@ -2077,6 +2111,9 @@ if TYPE_CHECKING:
2077
2111
  import benchling_api_client.v2.stable.models.workflow_outputs_paginated_list
2078
2112
  import benchling_api_client.v2.stable.models.workflow_outputs_unarchive
2079
2113
  import benchling_api_client.v2.stable.models.workflow_patch
2114
+ import benchling_api_client.v2.stable.models.workflow_root_node_details
2115
+ import benchling_api_client.v2.stable.models.workflow_router_function
2116
+ import benchling_api_client.v2.stable.models.workflow_router_node_details
2080
2117
  import benchling_api_client.v2.stable.models.workflow_sample
2081
2118
  import benchling_api_client.v2.stable.models.workflow_sample_list
2082
2119
  import benchling_api_client.v2.stable.models.workflow_stage
@@ -2111,6 +2148,7 @@ if TYPE_CHECKING:
2111
2148
  import benchling_api_client.v2.stable.models.workflow_task_groups_archive
2112
2149
  import benchling_api_client.v2.stable.models.workflow_task_groups_paginated_list
2113
2150
  import benchling_api_client.v2.stable.models.workflow_task_groups_unarchive
2151
+ import benchling_api_client.v2.stable.models.workflow_task_node_details
2114
2152
  import benchling_api_client.v2.stable.models.workflow_task_schema
2115
2153
  import benchling_api_client.v2.stable.models.workflow_task_schema_base
2116
2154
  import benchling_api_client.v2.stable.models.workflow_task_schema_execution_type
@@ -2622,7 +2660,6 @@ if TYPE_CHECKING:
2622
2660
  benchling_api_client.v2.stable.models.base_selector_input_ui_block.BaseSelectorInputUIBlock
2623
2661
  )
2624
2662
  Batch = benchling_api_client.v2.stable.models.batch.Batch
2625
- BatchCreate = benchling_api_client.v2.stable.models.batch_create.BatchCreate
2626
2663
  BatchOrInaccessibleResource = (
2627
2664
  benchling_api_client.v2.stable.models.batch_or_inaccessible_resource.BatchOrInaccessibleResource
2628
2665
  )
@@ -2631,15 +2668,6 @@ if TYPE_CHECKING:
2631
2668
  BatchSchemasPaginatedList = (
2632
2669
  benchling_api_client.v2.stable.models.batch_schemas_paginated_list.BatchSchemasPaginatedList
2633
2670
  )
2634
- BatchUpdate = benchling_api_client.v2.stable.models.batch_update.BatchUpdate
2635
- BatchesArchivalChange = (
2636
- benchling_api_client.v2.stable.models.batches_archival_change.BatchesArchivalChange
2637
- )
2638
- BatchesArchive = benchling_api_client.v2.stable.models.batches_archive.BatchesArchive
2639
- BatchesArchiveReason = benchling_api_client.v2.stable.models.batches_archive_reason.BatchesArchiveReason
2640
- BatchesBulkGet = benchling_api_client.v2.stable.models.batches_bulk_get.BatchesBulkGet
2641
- BatchesPaginatedList = benchling_api_client.v2.stable.models.batches_paginated_list.BatchesPaginatedList
2642
- BatchesUnarchive = benchling_api_client.v2.stable.models.batches_unarchive.BatchesUnarchive
2643
2671
  BenchlingApp = benchling_api_client.v2.stable.models.benchling_app.BenchlingApp
2644
2672
  BenchlingAppCreate = benchling_api_client.v2.stable.models.benchling_app_create.BenchlingAppCreate
2645
2673
  BenchlingAppDefinitionSummary = (
@@ -2801,6 +2829,9 @@ if TYPE_CHECKING:
2801
2829
  ButtonUiBlockCreate = benchling_api_client.v2.stable.models.button_ui_block_create.ButtonUiBlockCreate
2802
2830
  ButtonUiBlockType = benchling_api_client.v2.stable.models.button_ui_block_type.ButtonUiBlockType
2803
2831
  ButtonUiBlockUpdate = benchling_api_client.v2.stable.models.button_ui_block_update.ButtonUiBlockUpdate
2832
+ ChartNotePart = benchling_api_client.v2.stable.models.chart_note_part.ChartNotePart
2833
+ ChartNotePartChart = benchling_api_client.v2.stable.models.chart_note_part_chart.ChartNotePartChart
2834
+ ChartNotePartType = benchling_api_client.v2.stable.models.chart_note_part_type.ChartNotePartType
2804
2835
  CheckboxNotePart = benchling_api_client.v2.stable.models.checkbox_note_part.CheckboxNotePart
2805
2836
  CheckboxNotePartType = benchling_api_client.v2.stable.models.checkbox_note_part_type.CheckboxNotePartType
2806
2837
  CheckoutRecord = benchling_api_client.v2.stable.models.checkout_record.CheckoutRecord
@@ -2965,9 +2996,6 @@ if TYPE_CHECKING:
2965
2996
  DatetimeAppConfigItemType = (
2966
2997
  benchling_api_client.v2.stable.models.datetime_app_config_item_type.DatetimeAppConfigItemType
2967
2998
  )
2968
- DefaultConcentrationSummary = (
2969
- benchling_api_client.v2.stable.models.default_concentration_summary.DefaultConcentrationSummary
2970
- )
2971
2999
  DeprecatedAutomationOutputProcessorsPaginatedList = (
2972
3000
  benchling_api_client.v2.stable.models.deprecated_automation_output_processors_paginated_list.DeprecatedAutomationOutputProcessorsPaginatedList
2973
3001
  )
@@ -3229,6 +3257,7 @@ if TYPE_CHECKING:
3229
3257
  EntryTableRow = benchling_api_client.v2.stable.models.entry_table_row.EntryTableRow
3230
3258
  EntryTemplate = benchling_api_client.v2.stable.models.entry_template.EntryTemplate
3231
3259
  EntryTemplateDay = benchling_api_client.v2.stable.models.entry_template_day.EntryTemplateDay
3260
+ EntryTemplateUpdate = benchling_api_client.v2.stable.models.entry_template_update.EntryTemplateUpdate
3232
3261
  EntryTemplatesPaginatedList = (
3233
3262
  benchling_api_client.v2.stable.models.entry_templates_paginated_list.EntryTemplatesPaginatedList
3234
3263
  )
@@ -3386,6 +3415,24 @@ if TYPE_CHECKING:
3386
3415
  benchling_api_client.v2.stable.models.integer_field_definition_type.IntegerFieldDefinitionType
3387
3416
  )
3388
3417
  InteractiveUiBlock = benchling_api_client.v2.stable.models.interactive_ui_block.InteractiveUiBlock
3418
+ InventoryContainerTableNotePart = (
3419
+ benchling_api_client.v2.stable.models.inventory_container_table_note_part.InventoryContainerTableNotePart
3420
+ )
3421
+ InventoryContainerTableNotePartMode = (
3422
+ benchling_api_client.v2.stable.models.inventory_container_table_note_part_mode.InventoryContainerTableNotePartMode
3423
+ )
3424
+ InventoryContainerTableNotePartType = (
3425
+ benchling_api_client.v2.stable.models.inventory_container_table_note_part_type.InventoryContainerTableNotePartType
3426
+ )
3427
+ InventoryPlateTableNotePart = (
3428
+ benchling_api_client.v2.stable.models.inventory_plate_table_note_part.InventoryPlateTableNotePart
3429
+ )
3430
+ InventoryPlateTableNotePartMode = (
3431
+ benchling_api_client.v2.stable.models.inventory_plate_table_note_part_mode.InventoryPlateTableNotePartMode
3432
+ )
3433
+ InventoryPlateTableNotePartType = (
3434
+ benchling_api_client.v2.stable.models.inventory_plate_table_note_part_type.InventoryPlateTableNotePartType
3435
+ )
3389
3436
  JsonAppConfigItem = benchling_api_client.v2.stable.models.json_app_config_item.JsonAppConfigItem
3390
3437
  JsonAppConfigItemType = (
3391
3438
  benchling_api_client.v2.stable.models.json_app_config_item_type.JsonAppConfigItemType
@@ -3449,7 +3496,6 @@ if TYPE_CHECKING:
3449
3496
  )
3450
3497
  ListAppSessionsSort = benchling_api_client.v2.stable.models.list_app_sessions_sort.ListAppSessionsSort
3451
3498
  ListAssayResultsSort = benchling_api_client.v2.stable.models.list_assay_results_sort.ListAssayResultsSort
3452
- ListBatchesSort = benchling_api_client.v2.stable.models.list_batches_sort.ListBatchesSort
3453
3499
  ListBenchlingAppsSort = (
3454
3500
  benchling_api_client.v2.stable.models.list_benchling_apps_sort.ListBenchlingAppsSort
3455
3501
  )
@@ -3498,6 +3544,9 @@ if TYPE_CHECKING:
3498
3544
  ListRNASequencesSort = benchling_api_client.v2.stable.models.list_rna_sequences_sort.ListRNASequencesSort
3499
3545
  ListTeamsSort = benchling_api_client.v2.stable.models.list_teams_sort.ListTeamsSort
3500
3546
  ListUsersSort = benchling_api_client.v2.stable.models.list_users_sort.ListUsersSort
3547
+ ListWorkflowFlowchartsSort = (
3548
+ benchling_api_client.v2.stable.models.list_workflow_flowcharts_sort.ListWorkflowFlowchartsSort
3549
+ )
3501
3550
  ListWorkflowTasksScheduledOn = (
3502
3551
  benchling_api_client.v2.stable.models.list_workflow_tasks_scheduled_on.ListWorkflowTasksScheduledOn
3503
3552
  )
@@ -3651,9 +3700,21 @@ if TYPE_CHECKING:
3651
3700
  NucleotideAlignmentBaseAlgorithm = (
3652
3701
  benchling_api_client.v2.stable.models.nucleotide_alignment_base_algorithm.NucleotideAlignmentBaseAlgorithm
3653
3702
  )
3703
+ NucleotideAlignmentBaseClustaloOptions = (
3704
+ benchling_api_client.v2.stable.models.nucleotide_alignment_base_clustalo_options.NucleotideAlignmentBaseClustaloOptions
3705
+ )
3654
3706
  NucleotideAlignmentBaseFilesItem = (
3655
3707
  benchling_api_client.v2.stable.models.nucleotide_alignment_base_files_item.NucleotideAlignmentBaseFilesItem
3656
3708
  )
3709
+ NucleotideAlignmentBaseMafftOptions = (
3710
+ benchling_api_client.v2.stable.models.nucleotide_alignment_base_mafft_options.NucleotideAlignmentBaseMafftOptions
3711
+ )
3712
+ NucleotideAlignmentBaseMafftOptionsAdjustDirection = (
3713
+ benchling_api_client.v2.stable.models.nucleotide_alignment_base_mafft_options_adjust_direction.NucleotideAlignmentBaseMafftOptionsAdjustDirection
3714
+ )
3715
+ NucleotideAlignmentBaseMafftOptionsStrategy = (
3716
+ benchling_api_client.v2.stable.models.nucleotide_alignment_base_mafft_options_strategy.NucleotideAlignmentBaseMafftOptionsStrategy
3717
+ )
3657
3718
  NucleotideAlignmentFile = (
3658
3719
  benchling_api_client.v2.stable.models.nucleotide_alignment_file.NucleotideAlignmentFile
3659
3720
  )
@@ -4174,7 +4235,32 @@ if TYPE_CHECKING:
4174
4235
  benchling_api_client.v2.stable.models.well_or_inaccessible_resource.WellOrInaccessibleResource
4175
4236
  )
4176
4237
  WellResourceType = benchling_api_client.v2.stable.models.well_resource_type.WellResourceType
4238
+ WorkflowEndNodeDetails = (
4239
+ benchling_api_client.v2.stable.models.workflow_end_node_details.WorkflowEndNodeDetails
4240
+ )
4241
+ WorkflowFlowchart = benchling_api_client.v2.stable.models.workflow_flowchart.WorkflowFlowchart
4242
+ WorkflowFlowchartConfigSummary = (
4243
+ benchling_api_client.v2.stable.models.workflow_flowchart_config_summary.WorkflowFlowchartConfigSummary
4244
+ )
4245
+ WorkflowFlowchartConfigVersion = (
4246
+ benchling_api_client.v2.stable.models.workflow_flowchart_config_version.WorkflowFlowchartConfigVersion
4247
+ )
4248
+ WorkflowFlowchartEdgeConfig = (
4249
+ benchling_api_client.v2.stable.models.workflow_flowchart_edge_config.WorkflowFlowchartEdgeConfig
4250
+ )
4251
+ WorkflowFlowchartNodeConfig = (
4252
+ benchling_api_client.v2.stable.models.workflow_flowchart_node_config.WorkflowFlowchartNodeConfig
4253
+ )
4254
+ WorkflowFlowchartNodeConfigNodeType = (
4255
+ benchling_api_client.v2.stable.models.workflow_flowchart_node_config_node_type.WorkflowFlowchartNodeConfigNodeType
4256
+ )
4257
+ WorkflowFlowchartPaginatedList = (
4258
+ benchling_api_client.v2.stable.models.workflow_flowchart_paginated_list.WorkflowFlowchartPaginatedList
4259
+ )
4177
4260
  WorkflowList = benchling_api_client.v2.stable.models.workflow_list.WorkflowList
4261
+ WorkflowNodeTaskGroupSummary = (
4262
+ benchling_api_client.v2.stable.models.workflow_node_task_group_summary.WorkflowNodeTaskGroupSummary
4263
+ )
4178
4264
  WorkflowOutput = benchling_api_client.v2.stable.models.workflow_output.WorkflowOutput
4179
4265
  WorkflowOutputArchiveReason = (
4180
4266
  benchling_api_client.v2.stable.models.workflow_output_archive_reason.WorkflowOutputArchiveReason
@@ -4192,6 +4278,9 @@ if TYPE_CHECKING:
4192
4278
  WorkflowOutputCreatedEventEventType = (
4193
4279
  benchling_api_client.v2.stable.models.workflow_output_created_event_event_type.WorkflowOutputCreatedEventEventType
4194
4280
  )
4281
+ WorkflowOutputNodeDetails = (
4282
+ benchling_api_client.v2.stable.models.workflow_output_node_details.WorkflowOutputNodeDetails
4283
+ )
4195
4284
  WorkflowOutputSchema = benchling_api_client.v2.stable.models.workflow_output_schema.WorkflowOutputSchema
4196
4285
  WorkflowOutputSummary = (
4197
4286
  benchling_api_client.v2.stable.models.workflow_output_summary.WorkflowOutputSummary
@@ -4225,6 +4314,15 @@ if TYPE_CHECKING:
4225
4314
  benchling_api_client.v2.stable.models.workflow_outputs_unarchive.WorkflowOutputsUnarchive
4226
4315
  )
4227
4316
  WorkflowPatch = benchling_api_client.v2.stable.models.workflow_patch.WorkflowPatch
4317
+ WorkflowRootNodeDetails = (
4318
+ benchling_api_client.v2.stable.models.workflow_root_node_details.WorkflowRootNodeDetails
4319
+ )
4320
+ WorkflowRouterFunction = (
4321
+ benchling_api_client.v2.stable.models.workflow_router_function.WorkflowRouterFunction
4322
+ )
4323
+ WorkflowRouterNodeDetails = (
4324
+ benchling_api_client.v2.stable.models.workflow_router_node_details.WorkflowRouterNodeDetails
4325
+ )
4228
4326
  WorkflowSample = benchling_api_client.v2.stable.models.workflow_sample.WorkflowSample
4229
4327
  WorkflowSampleList = benchling_api_client.v2.stable.models.workflow_sample_list.WorkflowSampleList
4230
4328
  WorkflowStage = benchling_api_client.v2.stable.models.workflow_stage.WorkflowStage
@@ -4307,6 +4405,9 @@ if TYPE_CHECKING:
4307
4405
  WorkflowTaskGroupsUnarchive = (
4308
4406
  benchling_api_client.v2.stable.models.workflow_task_groups_unarchive.WorkflowTaskGroupsUnarchive
4309
4407
  )
4408
+ WorkflowTaskNodeDetails = (
4409
+ benchling_api_client.v2.stable.models.workflow_task_node_details.WorkflowTaskNodeDetails
4410
+ )
4310
4411
  WorkflowTaskSchema = benchling_api_client.v2.stable.models.workflow_task_schema.WorkflowTaskSchema
4311
4412
  WorkflowTaskSchemaBase = (
4312
4413
  benchling_api_client.v2.stable.models.workflow_task_schema_base.WorkflowTaskSchemaBase
@@ -4590,18 +4691,10 @@ else:
4590
4691
  "BaseSearchInputUIBlock": "benchling_api_client.v2.stable.models.base_search_input_ui_block",
4591
4692
  "BaseSelectorInputUIBlock": "benchling_api_client.v2.stable.models.base_selector_input_ui_block",
4592
4693
  "Batch": "benchling_api_client.v2.stable.models.batch",
4593
- "BatchCreate": "benchling_api_client.v2.stable.models.batch_create",
4594
4694
  "BatchOrInaccessibleResource": "benchling_api_client.v2.stable.models.batch_or_inaccessible_resource",
4595
4695
  "BatchSchema": "benchling_api_client.v2.stable.models.batch_schema",
4596
4696
  "BatchSchemasList": "benchling_api_client.v2.stable.models.batch_schemas_list",
4597
4697
  "BatchSchemasPaginatedList": "benchling_api_client.v2.stable.models.batch_schemas_paginated_list",
4598
- "BatchUpdate": "benchling_api_client.v2.stable.models.batch_update",
4599
- "BatchesArchivalChange": "benchling_api_client.v2.stable.models.batches_archival_change",
4600
- "BatchesArchive": "benchling_api_client.v2.stable.models.batches_archive",
4601
- "BatchesArchiveReason": "benchling_api_client.v2.stable.models.batches_archive_reason",
4602
- "BatchesBulkGet": "benchling_api_client.v2.stable.models.batches_bulk_get",
4603
- "BatchesPaginatedList": "benchling_api_client.v2.stable.models.batches_paginated_list",
4604
- "BatchesUnarchive": "benchling_api_client.v2.stable.models.batches_unarchive",
4605
4698
  "BenchlingApp": "benchling_api_client.v2.stable.models.benchling_app",
4606
4699
  "BenchlingAppCreate": "benchling_api_client.v2.stable.models.benchling_app_create",
4607
4700
  "BenchlingAppDefinitionSummary": "benchling_api_client.v2.stable.models.benchling_app_definition_summary",
@@ -4677,6 +4770,9 @@ else:
4677
4770
  "ButtonUiBlockCreate": "benchling_api_client.v2.stable.models.button_ui_block_create",
4678
4771
  "ButtonUiBlockType": "benchling_api_client.v2.stable.models.button_ui_block_type",
4679
4772
  "ButtonUiBlockUpdate": "benchling_api_client.v2.stable.models.button_ui_block_update",
4773
+ "ChartNotePart": "benchling_api_client.v2.stable.models.chart_note_part",
4774
+ "ChartNotePartChart": "benchling_api_client.v2.stable.models.chart_note_part_chart",
4775
+ "ChartNotePartType": "benchling_api_client.v2.stable.models.chart_note_part_type",
4680
4776
  "CheckboxNotePart": "benchling_api_client.v2.stable.models.checkbox_note_part",
4681
4777
  "CheckboxNotePartType": "benchling_api_client.v2.stable.models.checkbox_note_part_type",
4682
4778
  "CheckoutRecord": "benchling_api_client.v2.stable.models.checkout_record",
@@ -4757,7 +4853,6 @@ else:
4757
4853
  "DateAppConfigItemType": "benchling_api_client.v2.stable.models.date_app_config_item_type",
4758
4854
  "DatetimeAppConfigItem": "benchling_api_client.v2.stable.models.datetime_app_config_item",
4759
4855
  "DatetimeAppConfigItemType": "benchling_api_client.v2.stable.models.datetime_app_config_item_type",
4760
- "DefaultConcentrationSummary": "benchling_api_client.v2.stable.models.default_concentration_summary",
4761
4856
  "DeprecatedAutomationOutputProcessorsPaginatedList": "benchling_api_client.v2.stable.models.deprecated_automation_output_processors_paginated_list",
4762
4857
  "DeprecatedContainerVolumeForInput": "benchling_api_client.v2.stable.models.deprecated_container_volume_for_input",
4763
4858
  "DeprecatedContainerVolumeForInputUnits": "benchling_api_client.v2.stable.models.deprecated_container_volume_for_input_units",
@@ -4881,6 +4976,7 @@ else:
4881
4976
  "EntryTableRow": "benchling_api_client.v2.stable.models.entry_table_row",
4882
4977
  "EntryTemplate": "benchling_api_client.v2.stable.models.entry_template",
4883
4978
  "EntryTemplateDay": "benchling_api_client.v2.stable.models.entry_template_day",
4979
+ "EntryTemplateUpdate": "benchling_api_client.v2.stable.models.entry_template_update",
4884
4980
  "EntryTemplatesPaginatedList": "benchling_api_client.v2.stable.models.entry_templates_paginated_list",
4885
4981
  "EntryUpdate": "benchling_api_client.v2.stable.models.entry_update",
4886
4982
  "EntryUpdatedFieldsEvent": "benchling_api_client.v2.stable.models.entry_updated_fields_event",
@@ -4964,6 +5060,12 @@ else:
4964
5060
  "IntegerFieldDefinition": "benchling_api_client.v2.stable.models.integer_field_definition",
4965
5061
  "IntegerFieldDefinitionType": "benchling_api_client.v2.stable.models.integer_field_definition_type",
4966
5062
  "InteractiveUiBlock": "benchling_api_client.v2.stable.models.interactive_ui_block",
5063
+ "InventoryContainerTableNotePart": "benchling_api_client.v2.stable.models.inventory_container_table_note_part",
5064
+ "InventoryContainerTableNotePartMode": "benchling_api_client.v2.stable.models.inventory_container_table_note_part_mode",
5065
+ "InventoryContainerTableNotePartType": "benchling_api_client.v2.stable.models.inventory_container_table_note_part_type",
5066
+ "InventoryPlateTableNotePart": "benchling_api_client.v2.stable.models.inventory_plate_table_note_part",
5067
+ "InventoryPlateTableNotePartMode": "benchling_api_client.v2.stable.models.inventory_plate_table_note_part_mode",
5068
+ "InventoryPlateTableNotePartType": "benchling_api_client.v2.stable.models.inventory_plate_table_note_part_type",
4967
5069
  "JsonAppConfigItem": "benchling_api_client.v2.stable.models.json_app_config_item",
4968
5070
  "JsonAppConfigItemType": "benchling_api_client.v2.stable.models.json_app_config_item_type",
4969
5071
  "LabAutomationBenchlingAppError": "benchling_api_client.v2.stable.models.lab_automation_benchling_app_error",
@@ -4993,7 +5095,6 @@ else:
4993
5095
  "ListAppConfigurationItemsSort": "benchling_api_client.v2.stable.models.list_app_configuration_items_sort",
4994
5096
  "ListAppSessionsSort": "benchling_api_client.v2.stable.models.list_app_sessions_sort",
4995
5097
  "ListAssayResultsSort": "benchling_api_client.v2.stable.models.list_assay_results_sort",
4996
- "ListBatchesSort": "benchling_api_client.v2.stable.models.list_batches_sort",
4997
5098
  "ListBenchlingAppsSort": "benchling_api_client.v2.stable.models.list_benchling_apps_sort",
4998
5099
  "ListBoxesSort": "benchling_api_client.v2.stable.models.list_boxes_sort",
4999
5100
  "ListCodonUsageTablesSort": "benchling_api_client.v2.stable.models.list_codon_usage_tables_sort",
@@ -5022,6 +5123,7 @@ else:
5022
5123
  "ListRNASequencesSort": "benchling_api_client.v2.stable.models.list_rna_sequences_sort",
5023
5124
  "ListTeamsSort": "benchling_api_client.v2.stable.models.list_teams_sort",
5024
5125
  "ListUsersSort": "benchling_api_client.v2.stable.models.list_users_sort",
5126
+ "ListWorkflowFlowchartsSort": "benchling_api_client.v2.stable.models.list_workflow_flowcharts_sort",
5025
5127
  "ListWorkflowTasksScheduledOn": "benchling_api_client.v2.stable.models.list_workflow_tasks_scheduled_on",
5026
5128
  "Location": "benchling_api_client.v2.stable.models.location",
5027
5129
  "LocationCreate": "benchling_api_client.v2.stable.models.location_create",
@@ -5101,7 +5203,11 @@ else:
5101
5203
  "NucleotideAlignment": "benchling_api_client.v2.stable.models.nucleotide_alignment",
5102
5204
  "NucleotideAlignmentBase": "benchling_api_client.v2.stable.models.nucleotide_alignment_base",
5103
5205
  "NucleotideAlignmentBaseAlgorithm": "benchling_api_client.v2.stable.models.nucleotide_alignment_base_algorithm",
5206
+ "NucleotideAlignmentBaseClustaloOptions": "benchling_api_client.v2.stable.models.nucleotide_alignment_base_clustalo_options",
5104
5207
  "NucleotideAlignmentBaseFilesItem": "benchling_api_client.v2.stable.models.nucleotide_alignment_base_files_item",
5208
+ "NucleotideAlignmentBaseMafftOptions": "benchling_api_client.v2.stable.models.nucleotide_alignment_base_mafft_options",
5209
+ "NucleotideAlignmentBaseMafftOptionsAdjustDirection": "benchling_api_client.v2.stable.models.nucleotide_alignment_base_mafft_options_adjust_direction",
5210
+ "NucleotideAlignmentBaseMafftOptionsStrategy": "benchling_api_client.v2.stable.models.nucleotide_alignment_base_mafft_options_strategy",
5105
5211
  "NucleotideAlignmentFile": "benchling_api_client.v2.stable.models.nucleotide_alignment_file",
5106
5212
  "NucleotideAlignmentSummary": "benchling_api_client.v2.stable.models.nucleotide_alignment_summary",
5107
5213
  "NucleotideAlignmentsPaginatedList": "benchling_api_client.v2.stable.models.nucleotide_alignments_paginated_list",
@@ -5362,7 +5468,16 @@ else:
5362
5468
  "Well": "benchling_api_client.v2.stable.models.well",
5363
5469
  "WellOrInaccessibleResource": "benchling_api_client.v2.stable.models.well_or_inaccessible_resource",
5364
5470
  "WellResourceType": "benchling_api_client.v2.stable.models.well_resource_type",
5471
+ "WorkflowEndNodeDetails": "benchling_api_client.v2.stable.models.workflow_end_node_details",
5472
+ "WorkflowFlowchart": "benchling_api_client.v2.stable.models.workflow_flowchart",
5473
+ "WorkflowFlowchartConfigSummary": "benchling_api_client.v2.stable.models.workflow_flowchart_config_summary",
5474
+ "WorkflowFlowchartConfigVersion": "benchling_api_client.v2.stable.models.workflow_flowchart_config_version",
5475
+ "WorkflowFlowchartEdgeConfig": "benchling_api_client.v2.stable.models.workflow_flowchart_edge_config",
5476
+ "WorkflowFlowchartNodeConfig": "benchling_api_client.v2.stable.models.workflow_flowchart_node_config",
5477
+ "WorkflowFlowchartNodeConfigNodeType": "benchling_api_client.v2.stable.models.workflow_flowchart_node_config_node_type",
5478
+ "WorkflowFlowchartPaginatedList": "benchling_api_client.v2.stable.models.workflow_flowchart_paginated_list",
5365
5479
  "WorkflowList": "benchling_api_client.v2.stable.models.workflow_list",
5480
+ "WorkflowNodeTaskGroupSummary": "benchling_api_client.v2.stable.models.workflow_node_task_group_summary",
5366
5481
  "WorkflowOutput": "benchling_api_client.v2.stable.models.workflow_output",
5367
5482
  "WorkflowOutputArchiveReason": "benchling_api_client.v2.stable.models.workflow_output_archive_reason",
5368
5483
  "WorkflowOutputBulkCreate": "benchling_api_client.v2.stable.models.workflow_output_bulk_create",
@@ -5370,6 +5485,7 @@ else:
5370
5485
  "WorkflowOutputCreate": "benchling_api_client.v2.stable.models.workflow_output_create",
5371
5486
  "WorkflowOutputCreatedEvent": "benchling_api_client.v2.stable.models.workflow_output_created_event",
5372
5487
  "WorkflowOutputCreatedEventEventType": "benchling_api_client.v2.stable.models.workflow_output_created_event_event_type",
5488
+ "WorkflowOutputNodeDetails": "benchling_api_client.v2.stable.models.workflow_output_node_details",
5373
5489
  "WorkflowOutputSchema": "benchling_api_client.v2.stable.models.workflow_output_schema",
5374
5490
  "WorkflowOutputSummary": "benchling_api_client.v2.stable.models.workflow_output_summary",
5375
5491
  "WorkflowOutputUpdate": "benchling_api_client.v2.stable.models.workflow_output_update",
@@ -5383,6 +5499,9 @@ else:
5383
5499
  "WorkflowOutputsPaginatedList": "benchling_api_client.v2.stable.models.workflow_outputs_paginated_list",
5384
5500
  "WorkflowOutputsUnarchive": "benchling_api_client.v2.stable.models.workflow_outputs_unarchive",
5385
5501
  "WorkflowPatch": "benchling_api_client.v2.stable.models.workflow_patch",
5502
+ "WorkflowRootNodeDetails": "benchling_api_client.v2.stable.models.workflow_root_node_details",
5503
+ "WorkflowRouterFunction": "benchling_api_client.v2.stable.models.workflow_router_function",
5504
+ "WorkflowRouterNodeDetails": "benchling_api_client.v2.stable.models.workflow_router_node_details",
5386
5505
  "WorkflowSample": "benchling_api_client.v2.stable.models.workflow_sample",
5387
5506
  "WorkflowSampleList": "benchling_api_client.v2.stable.models.workflow_sample_list",
5388
5507
  "WorkflowStage": "benchling_api_client.v2.stable.models.workflow_stage",
@@ -5417,6 +5536,7 @@ else:
5417
5536
  "WorkflowTaskGroupsArchive": "benchling_api_client.v2.stable.models.workflow_task_groups_archive",
5418
5537
  "WorkflowTaskGroupsPaginatedList": "benchling_api_client.v2.stable.models.workflow_task_groups_paginated_list",
5419
5538
  "WorkflowTaskGroupsUnarchive": "benchling_api_client.v2.stable.models.workflow_task_groups_unarchive",
5539
+ "WorkflowTaskNodeDetails": "benchling_api_client.v2.stable.models.workflow_task_node_details",
5420
5540
  "WorkflowTaskSchema": "benchling_api_client.v2.stable.models.workflow_task_schema",
5421
5541
  "WorkflowTaskSchemaBase": "benchling_api_client.v2.stable.models.workflow_task_schema_base",
5422
5542
  "WorkflowTaskSchemaExecutionType": "benchling_api_client.v2.stable.models.workflow_task_schema_execution_type",