benchling-api-client 2.0.413__py3-none-any.whl → 2.0.415__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.
@@ -11,6 +11,7 @@ class FieldType(Enums.KnownString):
11
11
  CUSTOM_ENTITY_LINK = "custom_entity_link"
12
12
  ENTITY_LINK = "entity_link"
13
13
  MIXTURE_LINK = "mixture_link"
14
+ MOLECULE_LINK = "molecule_link"
14
15
  DROPDOWN = "dropdown"
15
16
  PART_LINK = "part_link"
16
17
  TRANSLATION_LINK = "translation_link"
@@ -20,6 +20,7 @@ class NucleotideTemplateAlignmentCreate:
20
20
  _template_sequence_id: str
21
21
  _algorithm: NucleotideAlignmentBaseAlgorithm
22
22
  _files: List[Union[NucleotideAlignmentBaseFilesItem, NucleotideAlignmentFile, UnknownType]]
23
+ _should_disable_circular_sequence_rotation: Union[Unset, bool] = False
23
24
  _clustalo_options: Union[Unset, NucleotideAlignmentBaseClustaloOptions] = UNSET
24
25
  _mafft_options: Union[Unset, NucleotideAlignmentBaseMafftOptions] = UNSET
25
26
  _name: Union[Unset, str] = UNSET
@@ -29,6 +30,11 @@ class NucleotideTemplateAlignmentCreate:
29
30
  fields.append("template_sequence_id={}".format(repr(self._template_sequence_id)))
30
31
  fields.append("algorithm={}".format(repr(self._algorithm)))
31
32
  fields.append("files={}".format(repr(self._files)))
33
+ fields.append(
34
+ "should_disable_circular_sequence_rotation={}".format(
35
+ repr(self._should_disable_circular_sequence_rotation)
36
+ )
37
+ )
32
38
  fields.append("clustalo_options={}".format(repr(self._clustalo_options)))
33
39
  fields.append("mafft_options={}".format(repr(self._mafft_options)))
34
40
  fields.append("name={}".format(repr(self._name)))
@@ -50,6 +56,7 @@ class NucleotideTemplateAlignmentCreate:
50
56
 
51
57
  files.append(files_item)
52
58
 
59
+ should_disable_circular_sequence_rotation = self._should_disable_circular_sequence_rotation
53
60
  clustalo_options: Union[Unset, Dict[str, Any]] = UNSET
54
61
  if not isinstance(self._clustalo_options, Unset):
55
62
  clustalo_options = self._clustalo_options.to_dict()
@@ -68,6 +75,8 @@ class NucleotideTemplateAlignmentCreate:
68
75
  field_dict["algorithm"] = algorithm
69
76
  if files is not UNSET:
70
77
  field_dict["files"] = files
78
+ if should_disable_circular_sequence_rotation is not UNSET:
79
+ field_dict["shouldDisableCircularSequenceRotation"] = should_disable_circular_sequence_rotation
71
80
  if clustalo_options is not UNSET:
72
81
  field_dict["clustaloOptions"] = clustalo_options
73
82
  if mafft_options is not UNSET:
@@ -152,6 +161,17 @@ class NucleotideTemplateAlignmentCreate:
152
161
  List[Union[NucleotideAlignmentBaseFilesItem, NucleotideAlignmentFile, UnknownType]], UNSET
153
162
  )
154
163
 
164
+ def get_should_disable_circular_sequence_rotation() -> Union[Unset, bool]:
165
+ should_disable_circular_sequence_rotation = d.pop("shouldDisableCircularSequenceRotation")
166
+ return should_disable_circular_sequence_rotation
167
+
168
+ try:
169
+ should_disable_circular_sequence_rotation = get_should_disable_circular_sequence_rotation()
170
+ except KeyError:
171
+ if strict:
172
+ raise
173
+ should_disable_circular_sequence_rotation = cast(Union[Unset, bool], UNSET)
174
+
155
175
  def get_clustalo_options() -> Union[Unset, NucleotideAlignmentBaseClustaloOptions]:
156
176
  clustalo_options: Union[Unset, Union[Unset, NucleotideAlignmentBaseClustaloOptions]] = UNSET
157
177
  _clustalo_options = d.pop("clustaloOptions")
@@ -199,6 +219,7 @@ class NucleotideTemplateAlignmentCreate:
199
219
  template_sequence_id=template_sequence_id,
200
220
  algorithm=algorithm,
201
221
  files=files,
222
+ should_disable_circular_sequence_rotation=should_disable_circular_sequence_rotation,
202
223
  clustalo_options=clustalo_options,
203
224
  mafft_options=mafft_options,
204
225
  name=name,
@@ -238,6 +259,21 @@ class NucleotideTemplateAlignmentCreate:
238
259
  ) -> None:
239
260
  self._files = value
240
261
 
262
+ @property
263
+ def should_disable_circular_sequence_rotation(self) -> bool:
264
+ """ Whether to disable circular sequence rotation. """
265
+ if isinstance(self._should_disable_circular_sequence_rotation, Unset):
266
+ raise NotPresentError(self, "should_disable_circular_sequence_rotation")
267
+ return self._should_disable_circular_sequence_rotation
268
+
269
+ @should_disable_circular_sequence_rotation.setter
270
+ def should_disable_circular_sequence_rotation(self, value: bool) -> None:
271
+ self._should_disable_circular_sequence_rotation = value
272
+
273
+ @should_disable_circular_sequence_rotation.deleter
274
+ def should_disable_circular_sequence_rotation(self) -> None:
275
+ self._should_disable_circular_sequence_rotation = UNSET
276
+
241
277
  @property
242
278
  def clustalo_options(self) -> NucleotideAlignmentBaseClustaloOptions:
243
279
  """ Options to pass to the ClustalO algorithm, only applicable for ClustalO. """
@@ -10,6 +10,7 @@ class SimpleFieldDefinitionType(Enums.KnownString):
10
10
  AA_SEQUENCE_LINK = "aa_sequence_link"
11
11
  CUSTOM_ENTITY_LINK = "custom_entity_link"
12
12
  MIXTURE_LINK = "mixture_link"
13
+ MOLECULE_LINK = "molecule_link"
13
14
  BLOB_LINK = "blob_link"
14
15
  TEXT = "text"
15
16
  LONG_TEXT = "long_text"
@@ -11,6 +11,7 @@ class AppConfigFieldType(Enums.KnownString):
11
11
  CUSTOM_ENTITY_LINK = "custom_entity_link"
12
12
  ENTITY_LINK = "entity_link"
13
13
  MIXTURE_LINK = "mixture_link"
14
+ MOLECULE_LINK = "molecule_link"
14
15
  DROPDOWN = "dropdown"
15
16
  PART_LINK = "part_link"
16
17
  TRANSLATION_LINK = "translation_link"
@@ -11,6 +11,7 @@ class FieldType(Enums.KnownString):
11
11
  CUSTOM_ENTITY_LINK = "custom_entity_link"
12
12
  ENTITY_LINK = "entity_link"
13
13
  MIXTURE_LINK = "mixture_link"
14
+ MOLECULE_LINK = "molecule_link"
14
15
  DROPDOWN = "dropdown"
15
16
  PART_LINK = "part_link"
16
17
  TRANSLATION_LINK = "translation_link"
@@ -2780,6 +2780,7 @@ components:
2780
2780
  - custom_entity_link
2781
2781
  - entity_link
2782
2782
  - mixture_link
2783
+ - molecule_link
2783
2784
  - dropdown
2784
2785
  - part_link
2785
2786
  - translation_link
@@ -5199,6 +5200,7 @@ components:
5199
5200
  - custom_entity_link
5200
5201
  - entity_link
5201
5202
  - mixture_link
5203
+ - molecule_link
5202
5204
  - dropdown
5203
5205
  - part_link
5204
5206
  - translation_link
@@ -11,6 +11,7 @@ class AppConfigFieldType(Enums.KnownString):
11
11
  CUSTOM_ENTITY_LINK = "custom_entity_link"
12
12
  ENTITY_LINK = "entity_link"
13
13
  MIXTURE_LINK = "mixture_link"
14
+ MOLECULE_LINK = "molecule_link"
14
15
  DROPDOWN = "dropdown"
15
16
  PART_LINK = "part_link"
16
17
  TRANSLATION_LINK = "translation_link"
@@ -11,6 +11,7 @@ class FieldType(Enums.KnownString):
11
11
  CUSTOM_ENTITY_LINK = "custom_entity_link"
12
12
  ENTITY_LINK = "entity_link"
13
13
  MIXTURE_LINK = "mixture_link"
14
+ MOLECULE_LINK = "molecule_link"
14
15
  DROPDOWN = "dropdown"
15
16
  PART_LINK = "part_link"
16
17
  TRANSLATION_LINK = "translation_link"
@@ -3021,6 +3021,7 @@ components:
3021
3021
  - custom_entity_link
3022
3022
  - entity_link
3023
3023
  - mixture_link
3024
+ - molecule_link
3024
3025
  - dropdown
3025
3026
  - part_link
3026
3027
  - translation_link
@@ -5423,6 +5424,7 @@ components:
5423
5424
  - custom_entity_link
5424
5425
  - entity_link
5425
5426
  - mixture_link
5427
+ - molecule_link
5426
5428
  - dropdown
5427
5429
  - part_link
5428
5430
  - translation_link
@@ -11,6 +11,7 @@ class FieldType(Enums.KnownString):
11
11
  CUSTOM_ENTITY_LINK = "custom_entity_link"
12
12
  ENTITY_LINK = "entity_link"
13
13
  MIXTURE_LINK = "mixture_link"
14
+ MOLECULE_LINK = "molecule_link"
14
15
  DROPDOWN = "dropdown"
15
16
  PART_LINK = "part_link"
16
17
  TRANSLATION_LINK = "translation_link"
@@ -20,6 +20,7 @@ class NucleotideTemplateAlignmentCreate:
20
20
  _template_sequence_id: str
21
21
  _algorithm: NucleotideAlignmentBaseAlgorithm
22
22
  _files: List[Union[NucleotideAlignmentBaseFilesItem, NucleotideAlignmentFile, UnknownType]]
23
+ _should_disable_circular_sequence_rotation: Union[Unset, bool] = False
23
24
  _clustalo_options: Union[Unset, NucleotideAlignmentBaseClustaloOptions] = UNSET
24
25
  _mafft_options: Union[Unset, NucleotideAlignmentBaseMafftOptions] = UNSET
25
26
  _name: Union[Unset, str] = UNSET
@@ -29,6 +30,11 @@ class NucleotideTemplateAlignmentCreate:
29
30
  fields.append("template_sequence_id={}".format(repr(self._template_sequence_id)))
30
31
  fields.append("algorithm={}".format(repr(self._algorithm)))
31
32
  fields.append("files={}".format(repr(self._files)))
33
+ fields.append(
34
+ "should_disable_circular_sequence_rotation={}".format(
35
+ repr(self._should_disable_circular_sequence_rotation)
36
+ )
37
+ )
32
38
  fields.append("clustalo_options={}".format(repr(self._clustalo_options)))
33
39
  fields.append("mafft_options={}".format(repr(self._mafft_options)))
34
40
  fields.append("name={}".format(repr(self._name)))
@@ -50,6 +56,7 @@ class NucleotideTemplateAlignmentCreate:
50
56
 
51
57
  files.append(files_item)
52
58
 
59
+ should_disable_circular_sequence_rotation = self._should_disable_circular_sequence_rotation
53
60
  clustalo_options: Union[Unset, Dict[str, Any]] = UNSET
54
61
  if not isinstance(self._clustalo_options, Unset):
55
62
  clustalo_options = self._clustalo_options.to_dict()
@@ -68,6 +75,8 @@ class NucleotideTemplateAlignmentCreate:
68
75
  field_dict["algorithm"] = algorithm
69
76
  if files is not UNSET:
70
77
  field_dict["files"] = files
78
+ if should_disable_circular_sequence_rotation is not UNSET:
79
+ field_dict["shouldDisableCircularSequenceRotation"] = should_disable_circular_sequence_rotation
71
80
  if clustalo_options is not UNSET:
72
81
  field_dict["clustaloOptions"] = clustalo_options
73
82
  if mafft_options is not UNSET:
@@ -152,6 +161,17 @@ class NucleotideTemplateAlignmentCreate:
152
161
  List[Union[NucleotideAlignmentBaseFilesItem, NucleotideAlignmentFile, UnknownType]], UNSET
153
162
  )
154
163
 
164
+ def get_should_disable_circular_sequence_rotation() -> Union[Unset, bool]:
165
+ should_disable_circular_sequence_rotation = d.pop("shouldDisableCircularSequenceRotation")
166
+ return should_disable_circular_sequence_rotation
167
+
168
+ try:
169
+ should_disable_circular_sequence_rotation = get_should_disable_circular_sequence_rotation()
170
+ except KeyError:
171
+ if strict:
172
+ raise
173
+ should_disable_circular_sequence_rotation = cast(Union[Unset, bool], UNSET)
174
+
155
175
  def get_clustalo_options() -> Union[Unset, NucleotideAlignmentBaseClustaloOptions]:
156
176
  clustalo_options: Union[Unset, Union[Unset, NucleotideAlignmentBaseClustaloOptions]] = UNSET
157
177
  _clustalo_options = d.pop("clustaloOptions")
@@ -199,6 +219,7 @@ class NucleotideTemplateAlignmentCreate:
199
219
  template_sequence_id=template_sequence_id,
200
220
  algorithm=algorithm,
201
221
  files=files,
222
+ should_disable_circular_sequence_rotation=should_disable_circular_sequence_rotation,
202
223
  clustalo_options=clustalo_options,
203
224
  mafft_options=mafft_options,
204
225
  name=name,
@@ -238,6 +259,21 @@ class NucleotideTemplateAlignmentCreate:
238
259
  ) -> None:
239
260
  self._files = value
240
261
 
262
+ @property
263
+ def should_disable_circular_sequence_rotation(self) -> bool:
264
+ """ Whether to disable circular sequence rotation. """
265
+ if isinstance(self._should_disable_circular_sequence_rotation, Unset):
266
+ raise NotPresentError(self, "should_disable_circular_sequence_rotation")
267
+ return self._should_disable_circular_sequence_rotation
268
+
269
+ @should_disable_circular_sequence_rotation.setter
270
+ def should_disable_circular_sequence_rotation(self, value: bool) -> None:
271
+ self._should_disable_circular_sequence_rotation = value
272
+
273
+ @should_disable_circular_sequence_rotation.deleter
274
+ def should_disable_circular_sequence_rotation(self) -> None:
275
+ self._should_disable_circular_sequence_rotation = UNSET
276
+
241
277
  @property
242
278
  def clustalo_options(self) -> NucleotideAlignmentBaseClustaloOptions:
243
279
  """ Options to pass to the ClustalO algorithm, only applicable for ClustalO. """
@@ -10,6 +10,7 @@ class SimpleFieldDefinitionType(Enums.KnownString):
10
10
  AA_SEQUENCE_LINK = "aa_sequence_link"
11
11
  CUSTOM_ENTITY_LINK = "custom_entity_link"
12
12
  MIXTURE_LINK = "mixture_link"
13
+ MOLECULE_LINK = "molecule_link"
13
14
  BLOB_LINK = "blob_link"
14
15
  TEXT = "text"
15
16
  LONG_TEXT = "long_text"
@@ -28485,6 +28485,7 @@ components:
28485
28485
  - custom_entity_link
28486
28486
  - entity_link
28487
28487
  - mixture_link
28488
+ - molecule_link
28488
28489
  - dropdown
28489
28490
  - part_link
28490
28491
  - translation_link
@@ -31064,6 +31065,10 @@ components:
31064
31065
  allOf:
31065
31066
  - $ref: '#/components/schemas/NucleotideAlignmentBase'
31066
31067
  - properties:
31068
+ shouldDisableCircularSequenceRotation:
31069
+ default: false
31070
+ description: Whether to disable circular sequence rotation.
31071
+ type: boolean
31067
31072
  templateSequenceId:
31068
31073
  example: seq_rXqq0IHU
31069
31074
  type: string
@@ -33430,6 +33435,7 @@ components:
33430
33435
  - aa_sequence_link
33431
33436
  - custom_entity_link
33432
33437
  - mixture_link
33438
+ - molecule_link
33433
33439
  - blob_link
33434
33440
  - text
33435
33441
  - long_text
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: benchling-api-client
3
- Version: 2.0.413
3
+ Version: 2.0.415
4
4
  Summary: Autogenerated Python client from OpenAPI Python Client generator
5
5
  License: Apache-2.0
6
6
  Author: Benchling Support
@@ -1067,7 +1067,7 @@ benchling_api_client/models/field.py,sha256=EL03QUvdb4m5wK9OleHL09K-2US2o4jgQlwK
1067
1067
  benchling_api_client/models/field_app_config_item.py,sha256=3GPvmhlHyLslLnDm-X8AkapCB1lZeZflqQcjbPSnCXA,16288
1068
1068
  benchling_api_client/models/field_app_config_item_type.py,sha256=av67f9F__-vLGO5kY7qBR5RICoaDuE40F0saQVLlY58,671
1069
1069
  benchling_api_client/models/field_definition.py,sha256=g-9e04DcQ2sfU4g2UcZulC5_WUZ57ZwOThlLVp-4uaA,7919
1070
- benchling_api_client/models/field_type.py,sha256=CguIQcWdmidmXQ0SgJH0CKlqf4DH2VSHqf77eC0dWmc,1340
1070
+ benchling_api_client/models/field_type.py,sha256=eJyIW7RBZj9vFZGnC_v8aHTC0G4pvRHx0b6ytCXEOV0,1376
1071
1071
  benchling_api_client/models/field_value.py,sha256=yz3dfNpK8neSc69zY4kuu28II1mL0W3fnJqagFCfEsY,1469
1072
1072
  benchling_api_client/models/field_value_with_resolution.py,sha256=9fsZjDE3ipb3kTI5j7KkSMQPN4pcOuZD9T2zoc8uV7I,145
1073
1073
  benchling_api_client/models/field_with_resolution.py,sha256=nFnwtT5dMS8m8aFEbZJrjEmsgItCujtchJSnBk_eGok,9977
@@ -1301,7 +1301,7 @@ benchling_api_client/models/nucleotide_alignments_paginated_list.py,sha256=tx_hG
1301
1301
  benchling_api_client/models/nucleotide_consensus_alignment_create.py,sha256=-cOi_wDzzU7W_QAWgRL_809U3b3oP33tzfbg7RrhtEo,12234
1302
1302
  benchling_api_client/models/nucleotide_consensus_alignment_create_new_sequence.py,sha256=R10DdXsC5ZXMLS8waeigjiECAtN71K3gTlJBLfJs8K4,2832
1303
1303
  benchling_api_client/models/nucleotide_sequence_part.py,sha256=ZZVlZSeFZNBaelWYEbMv3W21O920fSxtlPXeytia5t4,4475
1304
- benchling_api_client/models/nucleotide_template_alignment_create.py,sha256=JNfZhZribNV5zAQrJSFVNZ9JdGUZpXbVERbjWRogMLw,10557
1304
+ benchling_api_client/models/nucleotide_template_alignment_create.py,sha256=IeoPCwIjyr70dBMmSm0yfaixTI3hswWMZ7q0NnbOWxk,12464
1305
1305
  benchling_api_client/models/o_auth_bad_request_error.py,sha256=04nNeqMhUoPYzYYXwrY-olOriFmgeQauW4DK1HTk3jw,3072
1306
1306
  benchling_api_client/models/o_auth_bad_request_error_error.py,sha256=TU1o0VajknbuPOP6QS0yWl5F2okhknHqa0-L7G_WTvA,5059
1307
1307
  benchling_api_client/models/o_auth_bad_request_error_error_type.py,sha256=epf0Y9ss38dN2A_uHKI3vIlbwqptROdHkT9E1ilreYc,864
@@ -1493,7 +1493,7 @@ benchling_api_client/models/selector_input_ui_block_update.py,sha256=-7xXYrhpW7U
1493
1493
  benchling_api_client/models/sequence_feature_base.py,sha256=QhQYnqL-UPKBlFCQYkBLqrjnm8vKQ3--sS8gSM9QxVo,6114
1494
1494
  benchling_api_client/models/sequence_feature_custom_field.py,sha256=lUf6C4kyGzqUoo5ZbiFrnvGSrBYHmpUIjJjBxUt-oJc,3646
1495
1495
  benchling_api_client/models/simple_field_definition.py,sha256=P-JzWJDmSKjd4P0hoO6eIH3hBez3Zk4fYVHT5DS4cI0,8105
1496
- benchling_api_client/models/simple_field_definition_type.py,sha256=AX0qlX9qYy4_YbX2neqkANnDztyXWHQDyHY9umxqR84,992
1496
+ benchling_api_client/models/simple_field_definition_type.py,sha256=mrir-kh78mviovyx7_r9hJEQgTvuGH-3r86mvAkUzyY,1028
1497
1497
  benchling_api_client/models/simple_note_part.py,sha256=5DrvS9YGcgx_zFdf9ERU_0VmewMLl-yiaaEz7feuc_0,6766
1498
1498
  benchling_api_client/models/simple_note_part_type.py,sha256=CgiiCnwo2Ws9AsYoWlwiXnG7ktaj38szFxfxOgzny8s,731
1499
1499
  benchling_api_client/models/stage_entry.py,sha256=7YoxbgNhHxybSnRq7BT1Jf5_aSvkSpGMMmpTta7f9UE,19475
@@ -1756,7 +1756,7 @@ benchling_api_client/v2/alpha/models/app_canvas_note_part.py,sha256=5sx6zOLGZTVn
1756
1756
  benchling_api_client/v2/alpha/models/app_canvas_note_part_type.py,sha256=N9Bbm0DWmGsLtqSIYMY-ghVduRUDgnBAwh8xdsxCwnw,676
1757
1757
  benchling_api_client/v2/alpha/models/app_collaborator.py,sha256=2nmvOFDTKORdjx6DEPVnLMI-4YigeTK0i29EPZpWEn4,5394
1758
1758
  benchling_api_client/v2/alpha/models/app_collaborator_type.py,sha256=r3tzMOHqFCmi1YCpCP8fTiKzaXammHurW3QodxOnC1g,652
1759
- benchling_api_client/v2/alpha/models/app_config_field_type.py,sha256=W_764nTyuhjPLM7nm9CJcLb4cIC7l5KnhJnaZD6RXsI,1351
1759
+ benchling_api_client/v2/alpha/models/app_config_field_type.py,sha256=tlon9dA8JdP3iXPOcMiAuKBza866yo6GGXNp8J2fdRc,1387
1760
1760
  benchling_api_client/v2/alpha/models/app_summary.py,sha256=s_Pw-ZKNfeKMpfwXtow8N3qhK_hVKDfT44I3OGTu4Rk,4069
1761
1761
  benchling_api_client/v2/alpha/models/archive_record.py,sha256=wV7kI6dYDvwlYbzpRxKvw9_TlHJasqwAyiJQnPfKWyk,2549
1762
1762
  benchling_api_client/v2/alpha/models/assay_fields_create.py,sha256=Z1sliF9cDmGlq1O0aBxe9zKbJ_qfEmDxZiKnwmmRnog,1514
@@ -1939,7 +1939,7 @@ benchling_api_client/v2/alpha/models/field_definition.py,sha256=hR4rYPXSWaXOPiVZ
1939
1939
  benchling_api_client/v2/alpha/models/field_definitions_manifest.py,sha256=FhPmLnj8_p8NxtP3lnmSXHpKBvl9r8H0r8qid2duzc0,7108
1940
1940
  benchling_api_client/v2/alpha/models/field_summary.py,sha256=Xmv8Fp_X7UEcBEXB0JnKdpJfB9huyTkbZSUwDyl1rFI,19292
1941
1941
  benchling_api_client/v2/alpha/models/field_summary_link.py,sha256=co78gRk9Jb92mHKwcXqTWXqQg7EyxLmTypCcxm42JCw,1508
1942
- benchling_api_client/v2/alpha/models/field_type.py,sha256=CguIQcWdmidmXQ0SgJH0CKlqf4DH2VSHqf77eC0dWmc,1340
1942
+ benchling_api_client/v2/alpha/models/field_type.py,sha256=eJyIW7RBZj9vFZGnC_v8aHTC0G4pvRHx0b6ytCXEOV0,1376
1943
1943
  benchling_api_client/v2/alpha/models/field_value.py,sha256=yz3dfNpK8neSc69zY4kuu28II1mL0W3fnJqagFCfEsY,1469
1944
1944
  benchling_api_client/v2/alpha/models/fields.py,sha256=WzexBGS3cI6oPFv_EaCHMjLh60eBtRDqoB5VSWETaZc,1794
1945
1945
  benchling_api_client/v2/alpha/models/finalized_assembly.py,sha256=18aMFhFxmae54v0MRa1uBFnuv8N1fDfWnnYfBPZvdoM,12457
@@ -2118,7 +2118,7 @@ benchling_api_client/v2/alpha/models/user_validation_validation_status.py,sha256
2118
2118
  benchling_api_client/v2/alpha/models/workflow_task_schema_dependency.py,sha256=yVI3BdgsL8w4eoTPSlzZwA_4RJd4Igt4xnbOPc862zo,8226
2119
2119
  benchling_api_client/v2/alpha/models/workflow_task_schema_dependency_output.py,sha256=VSUorIgg3VetmPLa-HNpviFZ2MEuLC35Klj1mdujzRo,3838
2120
2120
  benchling_api_client/v2/alpha/models/workflow_task_schema_dependency_type.py,sha256=mi7_dLXJ5p5o_QS2dfq4J2UwT2TOTKeh0prqgP4aS7Y,781
2121
- benchling_api_client/v2/alpha/openapi.yaml,sha256=f5Q5Mol5SpsN1wNV2yQiCq0sBcUI278C08REyAOhXts,225193
2121
+ benchling_api_client/v2/alpha/openapi.yaml,sha256=H90TG8VmU0H0NmxWavjpunwNiS52YOdE_NqpKjB_zsQ,225237
2122
2122
  benchling_api_client/v2/alpha/types.py,sha256=nCpxtn44qMDpuS_jcdbjhJlZFvRrXEUEVEDN471GrH8,244
2123
2123
  benchling_api_client/v2/auth/__init__.py,sha256=N4pJYVUnTLzg5HO9ZldHaI-Am97i6AOCdQS0M5QcVpA,120
2124
2124
  benchling_api_client/v2/auth/api_key_auth.py,sha256=_z7albjrstwL675sSoPrPSG7VG1F8pz0ktbzdF2D2w8,627
@@ -2209,7 +2209,7 @@ benchling_api_client/v2/beta/models/app_canvas_note_part.py,sha256=eE97n3Ah8lh10
2209
2209
  benchling_api_client/v2/beta/models/app_canvas_note_part_type.py,sha256=N9Bbm0DWmGsLtqSIYMY-ghVduRUDgnBAwh8xdsxCwnw,676
2210
2210
  benchling_api_client/v2/beta/models/app_collaborator.py,sha256=2nmvOFDTKORdjx6DEPVnLMI-4YigeTK0i29EPZpWEn4,5394
2211
2211
  benchling_api_client/v2/beta/models/app_collaborator_type.py,sha256=r3tzMOHqFCmi1YCpCP8fTiKzaXammHurW3QodxOnC1g,652
2212
- benchling_api_client/v2/beta/models/app_config_field_type.py,sha256=W_764nTyuhjPLM7nm9CJcLb4cIC7l5KnhJnaZD6RXsI,1351
2212
+ benchling_api_client/v2/beta/models/app_config_field_type.py,sha256=tlon9dA8JdP3iXPOcMiAuKBza866yo6GGXNp8J2fdRc,1387
2213
2213
  benchling_api_client/v2/beta/models/app_summary.py,sha256=s_Pw-ZKNfeKMpfwXtow8N3qhK_hVKDfT44I3OGTu4Rk,4069
2214
2214
  benchling_api_client/v2/beta/models/archive_record.py,sha256=wV7kI6dYDvwlYbzpRxKvw9_TlHJasqwAyiJQnPfKWyk,2549
2215
2215
  benchling_api_client/v2/beta/models/archive_record_set.py,sha256=_kg1FHgllxrh7T1B7spNQOwDc2apaG12_ng7Nj7G7X4,689
@@ -2350,7 +2350,7 @@ benchling_api_client/v2/beta/models/external_file_note_part_type.py,sha256=yihcS
2350
2350
  benchling_api_client/v2/beta/models/field.py,sha256=EL03QUvdb4m5wK9OleHL09K-2US2o4jgQlwKyL-cJ-Q,9887
2351
2351
  benchling_api_client/v2/beta/models/field_constraints_mixin.py,sha256=nER2CEiyPh-c7riUo_86wg6Vrf1FkAVaqwJabpkeeB4,5202
2352
2352
  benchling_api_client/v2/beta/models/field_definitions_manifest.py,sha256=FhPmLnj8_p8NxtP3lnmSXHpKBvl9r8H0r8qid2duzc0,7108
2353
- benchling_api_client/v2/beta/models/field_type.py,sha256=CguIQcWdmidmXQ0SgJH0CKlqf4DH2VSHqf77eC0dWmc,1340
2353
+ benchling_api_client/v2/beta/models/field_type.py,sha256=eJyIW7RBZj9vFZGnC_v8aHTC0G4pvRHx0b6ytCXEOV0,1376
2354
2354
  benchling_api_client/v2/beta/models/field_value.py,sha256=yz3dfNpK8neSc69zY4kuu28II1mL0W3fnJqagFCfEsY,1469
2355
2355
  benchling_api_client/v2/beta/models/field_value_with_resolution.py,sha256=9fsZjDE3ipb3kTI5j7KkSMQPN4pcOuZD9T2zoc8uV7I,145
2356
2356
  benchling_api_client/v2/beta/models/field_with_resolution.py,sha256=nFnwtT5dMS8m8aFEbZJrjEmsgItCujtchJSnBk_eGok,9977
@@ -2516,7 +2516,7 @@ benchling_api_client/v2/beta/models/worksheet_review_changes.py,sha256=0MmkysLeA
2516
2516
  benchling_api_client/v2/beta/models/worksheet_review_changes_by_id.py,sha256=UgTNMq3Q_ZcIumMhd8irgQAZjXCFFQeE33b_WiiYgDU,3344
2517
2517
  benchling_api_client/v2/beta/models/worksheet_review_changes_review_record.py,sha256=vYjl1dskegWel0XUx2d0UEFhM5pQ_FKjGZNwKkYTHbQ,6202
2518
2518
  benchling_api_client/v2/beta/models/worksheet_review_changes_review_record_status.py,sha256=9VKJkUCQCFCdkJnV8-JLRQObhO0cTJf2ZeZnBIEyPFA,1093
2519
- benchling_api_client/v2/beta/openapi.yaml,sha256=AGn3IC1U2ghV8wZwRpGPSHIex3ZFwoGE-DIS2UQf0h4,243204
2519
+ benchling_api_client/v2/beta/openapi.yaml,sha256=4WIv9dA2HrdKdcD-aFt9zcfQs2nBubRdnZLqndlpWIU,243248
2520
2520
  benchling_api_client/v2/beta/types.py,sha256=nCpxtn44qMDpuS_jcdbjhJlZFvRrXEUEVEDN471GrH8,244
2521
2521
  benchling_api_client/v2/client.py,sha256=-6Yzio8p22BaTJ_BEInEoUzmh4afxXlwceNFtn1vBLc,2241
2522
2522
  benchling_api_client/v2/extensions.py,sha256=4TSjnmlUquvmBu8up1vPXutEInf-oXDSZ58ciyBW7_E,1996
@@ -3588,7 +3588,7 @@ benchling_api_client/v2/stable/models/field.py,sha256=EL03QUvdb4m5wK9OleHL09K-2U
3588
3588
  benchling_api_client/v2/stable/models/field_app_config_item.py,sha256=3GPvmhlHyLslLnDm-X8AkapCB1lZeZflqQcjbPSnCXA,16288
3589
3589
  benchling_api_client/v2/stable/models/field_app_config_item_type.py,sha256=av67f9F__-vLGO5kY7qBR5RICoaDuE40F0saQVLlY58,671
3590
3590
  benchling_api_client/v2/stable/models/field_definition.py,sha256=g-9e04DcQ2sfU4g2UcZulC5_WUZ57ZwOThlLVp-4uaA,7919
3591
- benchling_api_client/v2/stable/models/field_type.py,sha256=CguIQcWdmidmXQ0SgJH0CKlqf4DH2VSHqf77eC0dWmc,1340
3591
+ benchling_api_client/v2/stable/models/field_type.py,sha256=eJyIW7RBZj9vFZGnC_v8aHTC0G4pvRHx0b6ytCXEOV0,1376
3592
3592
  benchling_api_client/v2/stable/models/field_value.py,sha256=yz3dfNpK8neSc69zY4kuu28II1mL0W3fnJqagFCfEsY,1469
3593
3593
  benchling_api_client/v2/stable/models/field_value_with_resolution.py,sha256=9fsZjDE3ipb3kTI5j7KkSMQPN4pcOuZD9T2zoc8uV7I,145
3594
3594
  benchling_api_client/v2/stable/models/field_with_resolution.py,sha256=nFnwtT5dMS8m8aFEbZJrjEmsgItCujtchJSnBk_eGok,9977
@@ -3822,7 +3822,7 @@ benchling_api_client/v2/stable/models/nucleotide_alignments_paginated_list.py,sh
3822
3822
  benchling_api_client/v2/stable/models/nucleotide_consensus_alignment_create.py,sha256=-cOi_wDzzU7W_QAWgRL_809U3b3oP33tzfbg7RrhtEo,12234
3823
3823
  benchling_api_client/v2/stable/models/nucleotide_consensus_alignment_create_new_sequence.py,sha256=R10DdXsC5ZXMLS8waeigjiECAtN71K3gTlJBLfJs8K4,2832
3824
3824
  benchling_api_client/v2/stable/models/nucleotide_sequence_part.py,sha256=ZZVlZSeFZNBaelWYEbMv3W21O920fSxtlPXeytia5t4,4475
3825
- benchling_api_client/v2/stable/models/nucleotide_template_alignment_create.py,sha256=JNfZhZribNV5zAQrJSFVNZ9JdGUZpXbVERbjWRogMLw,10557
3825
+ benchling_api_client/v2/stable/models/nucleotide_template_alignment_create.py,sha256=IeoPCwIjyr70dBMmSm0yfaixTI3hswWMZ7q0NnbOWxk,12464
3826
3826
  benchling_api_client/v2/stable/models/o_auth_bad_request_error.py,sha256=04nNeqMhUoPYzYYXwrY-olOriFmgeQauW4DK1HTk3jw,3072
3827
3827
  benchling_api_client/v2/stable/models/o_auth_bad_request_error_error.py,sha256=TU1o0VajknbuPOP6QS0yWl5F2okhknHqa0-L7G_WTvA,5059
3828
3828
  benchling_api_client/v2/stable/models/o_auth_bad_request_error_error_type.py,sha256=epf0Y9ss38dN2A_uHKI3vIlbwqptROdHkT9E1ilreYc,864
@@ -4014,7 +4014,7 @@ benchling_api_client/v2/stable/models/selector_input_ui_block_update.py,sha256=-
4014
4014
  benchling_api_client/v2/stable/models/sequence_feature_base.py,sha256=QhQYnqL-UPKBlFCQYkBLqrjnm8vKQ3--sS8gSM9QxVo,6114
4015
4015
  benchling_api_client/v2/stable/models/sequence_feature_custom_field.py,sha256=lUf6C4kyGzqUoo5ZbiFrnvGSrBYHmpUIjJjBxUt-oJc,3646
4016
4016
  benchling_api_client/v2/stable/models/simple_field_definition.py,sha256=P-JzWJDmSKjd4P0hoO6eIH3hBez3Zk4fYVHT5DS4cI0,8105
4017
- benchling_api_client/v2/stable/models/simple_field_definition_type.py,sha256=AX0qlX9qYy4_YbX2neqkANnDztyXWHQDyHY9umxqR84,992
4017
+ benchling_api_client/v2/stable/models/simple_field_definition_type.py,sha256=mrir-kh78mviovyx7_r9hJEQgTvuGH-3r86mvAkUzyY,1028
4018
4018
  benchling_api_client/v2/stable/models/simple_note_part.py,sha256=5DrvS9YGcgx_zFdf9ERU_0VmewMLl-yiaaEz7feuc_0,6766
4019
4019
  benchling_api_client/v2/stable/models/simple_note_part_type.py,sha256=CgiiCnwo2Ws9AsYoWlwiXnG7ktaj38szFxfxOgzny8s,731
4020
4020
  benchling_api_client/v2/stable/models/stage_entry.py,sha256=7YoxbgNhHxybSnRq7BT1Jf5_aSvkSpGMMmpTta7f9UE,19475
@@ -4199,7 +4199,7 @@ benchling_api_client/v2/stable/models/worksheet_review_changes_review_record.py,
4199
4199
  benchling_api_client/v2/stable/models/worksheet_review_changes_review_record_status.py,sha256=9VKJkUCQCFCdkJnV8-JLRQObhO0cTJf2ZeZnBIEyPFA,1093
4200
4200
  benchling_api_client/v2/stable/models/worksheet_updated_review_snapshot_beta_event.py,sha256=omW47Bd5ghtsrw7DNYNsnMX_k7xw7JyJOJzw4FWn0oA,12046
4201
4201
  benchling_api_client/v2/stable/models/worksheet_updated_review_snapshot_beta_event_event_type.py,sha256=sjbdp-hm8WO8sTocFgmYd_9zt6PpJdZz5tgws0W2cEg,898
4202
- benchling_api_client/v2/stable/openapi.yaml,sha256=uhkL-R9xrGhfP-1GE45gAGt-KbMEZdF4VsfM0fTAOxk,1138219
4202
+ benchling_api_client/v2/stable/openapi.yaml,sha256=aOC2TGNUxZOs8oQ15rDrvIFL6RuRFt-JT45cySNp2Q0,1138443
4203
4203
  benchling_api_client/v2/stable/types.py,sha256=nCpxtn44qMDpuS_jcdbjhJlZFvRrXEUEVEDN471GrH8,244
4204
4204
  benchling_api_client/v2/types.py,sha256=SkWwIlK-UbP10AeiC1VeIQ_1HwALN65zpQyXPc0qDFs,1169
4205
4205
  benchling_api_client/webhooks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -4513,7 +4513,7 @@ benchling_api_client/webhooks/v0/stable/models/workflow_task_updated_status_webh
4513
4513
  benchling_api_client/webhooks/v0/stable/openapi.yaml,sha256=Gvlve51cLq7Ws8ll_8Nx-6SGXuYEb8TWCoWzfg_YGnA,39400
4514
4514
  benchling_api_client/webhooks/v0/stable/types.py,sha256=nCpxtn44qMDpuS_jcdbjhJlZFvRrXEUEVEDN471GrH8,244
4515
4515
  benchling_api_client/webhooks/v0/types.py,sha256=SkWwIlK-UbP10AeiC1VeIQ_1HwALN65zpQyXPc0qDFs,1169
4516
- benchling_api_client-2.0.413.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
4517
- benchling_api_client-2.0.413.dist-info/METADATA,sha256=6mTBg6SAmaaMwlD4elS_MHqAo6Z6sFasBnP4A2KgRYo,1253
4518
- benchling_api_client-2.0.413.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
4519
- benchling_api_client-2.0.413.dist-info/RECORD,,
4516
+ benchling_api_client-2.0.415.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
4517
+ benchling_api_client-2.0.415.dist-info/METADATA,sha256=V3Fegl9v6DOeBXWWv0IWvEAbR_0hN5QM7QEE0KTH01Y,1253
4518
+ benchling_api_client-2.0.415.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
4519
+ benchling_api_client-2.0.415.dist-info/RECORD,,