boltz-api 0.44.0 → 0.45.0

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 (70) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/client.d.mts +2 -2
  3. package/client.d.ts +2 -2
  4. package/client.js +2 -2
  5. package/client.mjs +2 -2
  6. package/package.json +1 -1
  7. package/resources/admin/workspaces.d.mts +1 -1
  8. package/resources/admin/workspaces.d.ts +1 -1
  9. package/resources/admin/workspaces.js +1 -1
  10. package/resources/admin/workspaces.mjs +1 -1
  11. package/resources/predictions/index.d.mts +1 -1
  12. package/resources/predictions/index.d.mts.map +1 -1
  13. package/resources/predictions/index.d.ts +1 -1
  14. package/resources/predictions/index.d.ts.map +1 -1
  15. package/resources/predictions/index.js.map +1 -1
  16. package/resources/predictions/index.mjs.map +1 -1
  17. package/resources/predictions/predictions.d.mts +2 -2
  18. package/resources/predictions/predictions.d.mts.map +1 -1
  19. package/resources/predictions/predictions.d.ts +2 -2
  20. package/resources/predictions/predictions.d.ts.map +1 -1
  21. package/resources/predictions/predictions.js.map +1 -1
  22. package/resources/predictions/predictions.mjs.map +1 -1
  23. package/resources/predictions/structure-and-binding.d.mts +553 -1
  24. package/resources/predictions/structure-and-binding.d.mts.map +1 -1
  25. package/resources/predictions/structure-and-binding.d.ts +553 -1
  26. package/resources/predictions/structure-and-binding.d.ts.map +1 -1
  27. package/resources/predictions/structure-and-binding.js +30 -0
  28. package/resources/predictions/structure-and-binding.js.map +1 -1
  29. package/resources/predictions/structure-and-binding.mjs +30 -0
  30. package/resources/predictions/structure-and-binding.mjs.map +1 -1
  31. package/resources/protein/design.d.mts +87 -50
  32. package/resources/protein/design.d.mts.map +1 -1
  33. package/resources/protein/design.d.ts +87 -50
  34. package/resources/protein/design.d.ts.map +1 -1
  35. package/resources/protein/library-screen.d.mts +62 -30
  36. package/resources/protein/library-screen.d.mts.map +1 -1
  37. package/resources/protein/library-screen.d.ts +62 -30
  38. package/resources/protein/library-screen.d.ts.map +1 -1
  39. package/resources/protein/protein.d.mts +1 -1
  40. package/resources/protein/protein.d.ts +1 -1
  41. package/resources/protein/protein.js +1 -1
  42. package/resources/protein/protein.mjs +1 -1
  43. package/resources/small-molecule/design.d.mts +52 -20
  44. package/resources/small-molecule/design.d.mts.map +1 -1
  45. package/resources/small-molecule/design.d.ts +52 -20
  46. package/resources/small-molecule/design.d.ts.map +1 -1
  47. package/resources/small-molecule/library-screen.d.mts +52 -20
  48. package/resources/small-molecule/library-screen.d.mts.map +1 -1
  49. package/resources/small-molecule/library-screen.d.ts +52 -20
  50. package/resources/small-molecule/library-screen.d.ts.map +1 -1
  51. package/resources/small-molecule/small-molecule.d.mts +1 -1
  52. package/resources/small-molecule/small-molecule.d.ts +1 -1
  53. package/resources/small-molecule/small-molecule.js +1 -1
  54. package/resources/small-molecule/small-molecule.mjs +1 -1
  55. package/src/client.ts +2 -2
  56. package/src/resources/admin/workspaces.ts +1 -1
  57. package/src/resources/predictions/index.ts +2 -0
  58. package/src/resources/predictions/predictions.ts +4 -0
  59. package/src/resources/predictions/structure-and-binding.ts +675 -0
  60. package/src/resources/protein/design.ts +95 -50
  61. package/src/resources/protein/library-screen.ts +70 -30
  62. package/src/resources/protein/protein.ts +1 -1
  63. package/src/resources/small-molecule/design.ts +60 -20
  64. package/src/resources/small-molecule/library-screen.ts +60 -20
  65. package/src/resources/small-molecule/small-molecule.ts +1 -1
  66. package/src/version.ts +1 -1
  67. package/version.d.mts +1 -1
  68. package/version.d.ts +1 -1
  69. package/version.js +1 -1
  70. package/version.mjs +1 -1
@@ -184,7 +184,7 @@ export type DesignListResponsesCursorPage = CursorPage<DesignListResponse>;
184
184
  export type DesignListResultsResponsesCursorPage = CursorPage<DesignListResultsResponse>;
185
185
 
186
186
  /**
187
- * A protein design engine run that generates novel protein binders
187
+ * A protein design pipeline run that generates novel protein binders
188
188
  */
189
189
  export interface DesignRetrieveResponse {
190
190
  /**
@@ -203,14 +203,14 @@ export interface DesignRetrieveResponse {
203
203
  data_deleted_at: string | null;
204
204
 
205
205
  /**
206
- * Engine used for protein design
206
+ * @deprecated Use pipeline instead.
207
207
  */
208
- engine: 'boltz-protein-design';
208
+ engine: 'boltzprot';
209
209
 
210
210
  /**
211
- * Engine version used for protein design
211
+ * @deprecated Use pipeline_version instead.
212
212
  */
213
- engine_version: string;
213
+ engine_version: '1.0';
214
214
 
215
215
  error: DesignRetrieveResponse.Error | null;
216
216
 
@@ -224,6 +224,16 @@ export interface DesignRetrieveResponse {
224
224
  */
225
225
  livemode: boolean;
226
226
 
227
+ /**
228
+ * Pipeline used for protein design
229
+ */
230
+ pipeline: 'boltzprot';
231
+
232
+ /**
233
+ * Pipeline version used for protein design
234
+ */
235
+ pipeline_version: '1.0';
236
+
227
237
  progress: DesignRetrieveResponse.Progress | null;
228
238
 
229
239
  started_at: string | null;
@@ -301,14 +311,15 @@ export namespace DesignRetrieveResponse {
301
311
  * Binder specification starting from an existing 3D structure. Upload a CIF/PDB
302
312
  * file and select which chains to include, which residues to keep, and which
303
313
  * regions to redesign. Only chains included in chain_selection are part of the
304
- * engine run.
314
+ * pipeline run.
305
315
  */
306
316
  export interface StructureTemplateBinderSpecResponse {
307
317
  /**
308
318
  * Chains selected from the uploaded binder structure, keyed by chain ID. Only
309
- * chains listed here are included in the engine run — any chains omitted from this
310
- * mapping are ignored. Each value defines which residues to keep (crop_residues).
311
- * Omit design_motifs to include the chain as fixed scaffold context.
319
+ * chains listed here are included in the pipeline run — any chains omitted from
320
+ * this mapping are ignored. Each value defines which residues to keep
321
+ * (crop_residues). Omit design_motifs to include the chain as fixed scaffold
322
+ * context.
312
323
  */
313
324
  chain_selection: {
314
325
  [key: string]:
@@ -926,7 +937,7 @@ export namespace DesignRetrieveResponse {
926
937
  export interface StructureTemplateTargetResponse {
927
938
  /**
928
939
  * Chains selected from the uploaded structure, keyed by chain ID. Only chains
929
- * listed here are included in the engine run — any chains omitted from this
940
+ * listed here are included in the pipeline run — any chains omitted from this
930
941
  * mapping are ignored. Each value defines which residues to keep, which are
931
942
  * epitope residues, which are non-binding residues, and which are flexible.
932
943
  */
@@ -951,7 +962,7 @@ export namespace DesignRetrieveResponse {
951
962
 
952
963
  /**
953
964
  * 0-indexed residue indices to retain from this chain, or 'all' to keep all
954
- * residues. Residues not listed are excluded from the engine run.
965
+ * residues. Residues not listed are excluded from the pipeline run.
955
966
  */
956
967
  crop_residues: Array<number> | 'all';
957
968
 
@@ -1473,7 +1484,7 @@ export namespace DesignRetrieveResponse {
1473
1484
  }
1474
1485
 
1475
1486
  /**
1476
- * Summary of a protein design engine run (excludes input)
1487
+ * Summary of a protein design pipeline run (excludes input)
1477
1488
  */
1478
1489
  export interface DesignListResponse {
1479
1490
  /**
@@ -1492,14 +1503,14 @@ export interface DesignListResponse {
1492
1503
  data_deleted_at: string | null;
1493
1504
 
1494
1505
  /**
1495
- * Engine used for protein design
1506
+ * @deprecated Use pipeline instead.
1496
1507
  */
1497
- engine: 'boltz-protein-design';
1508
+ engine: 'boltzprot';
1498
1509
 
1499
1510
  /**
1500
- * Engine version used for protein design
1511
+ * @deprecated Use pipeline_version instead.
1501
1512
  */
1502
- engine_version: string;
1513
+ engine_version: '1.0';
1503
1514
 
1504
1515
  error: DesignListResponse.Error | null;
1505
1516
 
@@ -1508,6 +1519,16 @@ export interface DesignListResponse {
1508
1519
  */
1509
1520
  livemode: boolean;
1510
1521
 
1522
+ /**
1523
+ * Pipeline used for protein design
1524
+ */
1525
+ pipeline: 'boltzprot';
1526
+
1527
+ /**
1528
+ * Pipeline version used for protein design
1529
+ */
1530
+ pipeline_version: '1.0';
1531
+
1511
1532
  progress: DesignListResponse.Progress | null;
1512
1533
 
1513
1534
  started_at: string | null;
@@ -1928,7 +1949,7 @@ export namespace DesignListResultsResponse {
1928
1949
  }
1929
1950
 
1930
1951
  /**
1931
- * A protein design engine run that generates novel protein binders
1952
+ * A protein design pipeline run that generates novel protein binders
1932
1953
  */
1933
1954
  export interface DesignStartResponse {
1934
1955
  /**
@@ -1947,14 +1968,14 @@ export interface DesignStartResponse {
1947
1968
  data_deleted_at: string | null;
1948
1969
 
1949
1970
  /**
1950
- * Engine used for protein design
1971
+ * @deprecated Use pipeline instead.
1951
1972
  */
1952
- engine: 'boltz-protein-design';
1973
+ engine: 'boltzprot';
1953
1974
 
1954
1975
  /**
1955
- * Engine version used for protein design
1976
+ * @deprecated Use pipeline_version instead.
1956
1977
  */
1957
- engine_version: string;
1978
+ engine_version: '1.0';
1958
1979
 
1959
1980
  error: DesignStartResponse.Error | null;
1960
1981
 
@@ -1968,6 +1989,16 @@ export interface DesignStartResponse {
1968
1989
  */
1969
1990
  livemode: boolean;
1970
1991
 
1992
+ /**
1993
+ * Pipeline used for protein design
1994
+ */
1995
+ pipeline: 'boltzprot';
1996
+
1997
+ /**
1998
+ * Pipeline version used for protein design
1999
+ */
2000
+ pipeline_version: '1.0';
2001
+
1971
2002
  progress: DesignStartResponse.Progress | null;
1972
2003
 
1973
2004
  started_at: string | null;
@@ -2045,14 +2076,15 @@ export namespace DesignStartResponse {
2045
2076
  * Binder specification starting from an existing 3D structure. Upload a CIF/PDB
2046
2077
  * file and select which chains to include, which residues to keep, and which
2047
2078
  * regions to redesign. Only chains included in chain_selection are part of the
2048
- * engine run.
2079
+ * pipeline run.
2049
2080
  */
2050
2081
  export interface StructureTemplateBinderSpecResponse {
2051
2082
  /**
2052
2083
  * Chains selected from the uploaded binder structure, keyed by chain ID. Only
2053
- * chains listed here are included in the engine run — any chains omitted from this
2054
- * mapping are ignored. Each value defines which residues to keep (crop_residues).
2055
- * Omit design_motifs to include the chain as fixed scaffold context.
2084
+ * chains listed here are included in the pipeline run — any chains omitted from
2085
+ * this mapping are ignored. Each value defines which residues to keep
2086
+ * (crop_residues). Omit design_motifs to include the chain as fixed scaffold
2087
+ * context.
2056
2088
  */
2057
2089
  chain_selection: {
2058
2090
  [key: string]:
@@ -2670,7 +2702,7 @@ export namespace DesignStartResponse {
2670
2702
  export interface StructureTemplateTargetResponse {
2671
2703
  /**
2672
2704
  * Chains selected from the uploaded structure, keyed by chain ID. Only chains
2673
- * listed here are included in the engine run — any chains omitted from this
2705
+ * listed here are included in the pipeline run — any chains omitted from this
2674
2706
  * mapping are ignored. Each value defines which residues to keep, which are
2675
2707
  * epitope residues, which are non-binding residues, and which are flexible.
2676
2708
  */
@@ -2695,7 +2727,7 @@ export namespace DesignStartResponse {
2695
2727
 
2696
2728
  /**
2697
2729
  * 0-indexed residue indices to retain from this chain, or 'all' to keep all
2698
- * residues. Residues not listed are excluded from the engine run.
2730
+ * residues. Residues not listed are excluded from the pipeline run.
2699
2731
  */
2700
2732
  crop_residues: Array<number> | 'all';
2701
2733
 
@@ -3217,7 +3249,7 @@ export namespace DesignStartResponse {
3217
3249
  }
3218
3250
 
3219
3251
  /**
3220
- * A protein design engine run that generates novel protein binders
3252
+ * A protein design pipeline run that generates novel protein binders
3221
3253
  */
3222
3254
  export interface DesignStopResponse {
3223
3255
  /**
@@ -3236,14 +3268,14 @@ export interface DesignStopResponse {
3236
3268
  data_deleted_at: string | null;
3237
3269
 
3238
3270
  /**
3239
- * Engine used for protein design
3271
+ * @deprecated Use pipeline instead.
3240
3272
  */
3241
- engine: 'boltz-protein-design';
3273
+ engine: 'boltzprot';
3242
3274
 
3243
3275
  /**
3244
- * Engine version used for protein design
3276
+ * @deprecated Use pipeline_version instead.
3245
3277
  */
3246
- engine_version: string;
3278
+ engine_version: '1.0';
3247
3279
 
3248
3280
  error: DesignStopResponse.Error | null;
3249
3281
 
@@ -3257,6 +3289,16 @@ export interface DesignStopResponse {
3257
3289
  */
3258
3290
  livemode: boolean;
3259
3291
 
3292
+ /**
3293
+ * Pipeline used for protein design
3294
+ */
3295
+ pipeline: 'boltzprot';
3296
+
3297
+ /**
3298
+ * Pipeline version used for protein design
3299
+ */
3300
+ pipeline_version: '1.0';
3301
+
3260
3302
  progress: DesignStopResponse.Progress | null;
3261
3303
 
3262
3304
  started_at: string | null;
@@ -3334,14 +3376,15 @@ export namespace DesignStopResponse {
3334
3376
  * Binder specification starting from an existing 3D structure. Upload a CIF/PDB
3335
3377
  * file and select which chains to include, which residues to keep, and which
3336
3378
  * regions to redesign. Only chains included in chain_selection are part of the
3337
- * engine run.
3379
+ * pipeline run.
3338
3380
  */
3339
3381
  export interface StructureTemplateBinderSpecResponse {
3340
3382
  /**
3341
3383
  * Chains selected from the uploaded binder structure, keyed by chain ID. Only
3342
- * chains listed here are included in the engine run — any chains omitted from this
3343
- * mapping are ignored. Each value defines which residues to keep (crop_residues).
3344
- * Omit design_motifs to include the chain as fixed scaffold context.
3384
+ * chains listed here are included in the pipeline run — any chains omitted from
3385
+ * this mapping are ignored. Each value defines which residues to keep
3386
+ * (crop_residues). Omit design_motifs to include the chain as fixed scaffold
3387
+ * context.
3345
3388
  */
3346
3389
  chain_selection: {
3347
3390
  [key: string]:
@@ -3959,7 +4002,7 @@ export namespace DesignStopResponse {
3959
4002
  export interface StructureTemplateTargetResponse {
3960
4003
  /**
3961
4004
  * Chains selected from the uploaded structure, keyed by chain ID. Only chains
3962
- * listed here are included in the engine run — any chains omitted from this
4005
+ * listed here are included in the pipeline run — any chains omitted from this
3963
4006
  * mapping are ignored. Each value defines which residues to keep, which are
3964
4007
  * epitope residues, which are non-binding residues, and which are flexible.
3965
4008
  */
@@ -3984,7 +4027,7 @@ export namespace DesignStopResponse {
3984
4027
 
3985
4028
  /**
3986
4029
  * 0-indexed residue indices to retain from this chain, or 'all' to keep all
3987
- * residues. Residues not listed are excluded from the engine run.
4030
+ * residues. Residues not listed are excluded from the pipeline run.
3988
4031
  */
3989
4032
  crop_residues: Array<number> | 'all';
3990
4033
 
@@ -4559,14 +4602,15 @@ export namespace DesignEstimateCostParams {
4559
4602
  * Binder specification starting from an existing 3D structure. Upload a CIF/PDB
4560
4603
  * file and select which chains to include, which residues to keep, and which
4561
4604
  * regions to redesign. Only chains included in chain_selection are part of the
4562
- * engine run.
4605
+ * pipeline run.
4563
4606
  */
4564
4607
  export interface StructureTemplateBinderSpec {
4565
4608
  /**
4566
4609
  * Chains selected from the uploaded binder structure, keyed by chain ID. Only
4567
- * chains listed here are included in the engine run — any chains omitted from this
4568
- * mapping are ignored. Each value defines which residues to keep (crop_residues).
4569
- * Omit design_motifs to include the chain as fixed scaffold context.
4610
+ * chains listed here are included in the pipeline run — any chains omitted from
4611
+ * this mapping are ignored. Each value defines which residues to keep
4612
+ * (crop_residues). Omit design_motifs to include the chain as fixed scaffold
4613
+ * context.
4570
4614
  */
4571
4615
  chain_selection: {
4572
4616
  [key: string]:
@@ -5195,7 +5239,7 @@ export namespace DesignEstimateCostParams {
5195
5239
  export interface StructureTemplateTarget {
5196
5240
  /**
5197
5241
  * Chains selected from the uploaded structure, keyed by chain ID. Only chains
5198
- * listed here are included in the engine run — any chains omitted from this
5242
+ * listed here are included in the pipeline run — any chains omitted from this
5199
5243
  * mapping are ignored. Each value defines which residues to keep, which are
5200
5244
  * epitope residues, which are non-binding residues, and which are flexible.
5201
5245
  */
@@ -5224,7 +5268,7 @@ export namespace DesignEstimateCostParams {
5224
5268
 
5225
5269
  /**
5226
5270
  * 0-indexed residue indices to retain from this chain, or 'all' to keep all
5227
- * residues. Residues not listed are excluded from the engine run.
5271
+ * residues. Residues not listed are excluded from the pipeline run.
5228
5272
  */
5229
5273
  crop_residues: Array<number> | 'all';
5230
5274
 
@@ -5774,14 +5818,15 @@ export namespace DesignStartParams {
5774
5818
  * Binder specification starting from an existing 3D structure. Upload a CIF/PDB
5775
5819
  * file and select which chains to include, which residues to keep, and which
5776
5820
  * regions to redesign. Only chains included in chain_selection are part of the
5777
- * engine run.
5821
+ * pipeline run.
5778
5822
  */
5779
5823
  export interface StructureTemplateBinderSpec {
5780
5824
  /**
5781
5825
  * Chains selected from the uploaded binder structure, keyed by chain ID. Only
5782
- * chains listed here are included in the engine run — any chains omitted from this
5783
- * mapping are ignored. Each value defines which residues to keep (crop_residues).
5784
- * Omit design_motifs to include the chain as fixed scaffold context.
5826
+ * chains listed here are included in the pipeline run — any chains omitted from
5827
+ * this mapping are ignored. Each value defines which residues to keep
5828
+ * (crop_residues). Omit design_motifs to include the chain as fixed scaffold
5829
+ * context.
5785
5830
  */
5786
5831
  chain_selection: {
5787
5832
  [key: string]:
@@ -6410,7 +6455,7 @@ export namespace DesignStartParams {
6410
6455
  export interface StructureTemplateTarget {
6411
6456
  /**
6412
6457
  * Chains selected from the uploaded structure, keyed by chain ID. Only chains
6413
- * listed here are included in the engine run — any chains omitted from this
6458
+ * listed here are included in the pipeline run — any chains omitted from this
6414
6459
  * mapping are ignored. Each value defines which residues to keep, which are
6415
6460
  * epitope residues, which are non-binding residues, and which are flexible.
6416
6461
  */
@@ -6439,7 +6484,7 @@ export namespace DesignStartParams {
6439
6484
 
6440
6485
  /**
6441
6486
  * 0-indexed residue indices to retain from this chain, or 'all' to keep all
6442
- * residues. Residues not listed are excluded from the engine run.
6487
+ * residues. Residues not listed are excluded from the pipeline run.
6443
6488
  */
6444
6489
  crop_residues: Array<number> | 'all';
6445
6490
 
@@ -189,7 +189,7 @@ export type LibraryScreenListResponsesCursorPage = CursorPage<LibraryScreenListR
189
189
  export type LibraryScreenListResultsResponsesCursorPage = CursorPage<LibraryScreenListResultsResponse>;
190
190
 
191
191
  /**
192
- * A protein library screening engine run
192
+ * A protein library screening pipeline run
193
193
  */
194
194
  export interface LibraryScreenRetrieveResponse {
195
195
  /**
@@ -208,14 +208,14 @@ export interface LibraryScreenRetrieveResponse {
208
208
  data_deleted_at: string | null;
209
209
 
210
210
  /**
211
- * Engine used for protein library screen
211
+ * @deprecated Use pipeline instead.
212
212
  */
213
- engine: 'boltz-protein-screen';
213
+ engine: 'boltzprot';
214
214
 
215
215
  /**
216
- * Engine version used for protein library screen
216
+ * @deprecated Use pipeline_version instead.
217
217
  */
218
- engine_version: string;
218
+ engine_version: '1.0';
219
219
 
220
220
  error: LibraryScreenRetrieveResponse.Error | null;
221
221
 
@@ -229,6 +229,16 @@ export interface LibraryScreenRetrieveResponse {
229
229
  */
230
230
  livemode: boolean;
231
231
 
232
+ /**
233
+ * Pipeline used for protein library screen
234
+ */
235
+ pipeline: 'boltzprot';
236
+
237
+ /**
238
+ * Pipeline version used for protein library screen
239
+ */
240
+ pipeline_version: '1.0';
241
+
232
242
  progress: LibraryScreenRetrieveResponse.Progress | null;
233
243
 
234
244
  started_at: string | null;
@@ -298,7 +308,7 @@ export namespace LibraryScreenRetrieveResponse {
298
308
  export interface StructureTemplateTargetResponse {
299
309
  /**
300
310
  * Chains selected from the uploaded structure, keyed by chain ID. Only chains
301
- * listed here are included in the engine run — any chains omitted from this
311
+ * listed here are included in the pipeline run — any chains omitted from this
302
312
  * mapping are ignored. Each value defines which residues to keep, which are
303
313
  * epitope residues, which are non-binding residues, and which are flexible.
304
314
  */
@@ -323,7 +333,7 @@ export namespace LibraryScreenRetrieveResponse {
323
333
 
324
334
  /**
325
335
  * 0-indexed residue indices to retain from this chain, or 'all' to keep all
326
- * residues. Residues not listed are excluded from the engine run.
336
+ * residues. Residues not listed are excluded from the pipeline run.
327
337
  */
328
338
  crop_residues: Array<number> | 'all';
329
339
 
@@ -850,7 +860,7 @@ export namespace LibraryScreenRetrieveResponse {
850
860
  }
851
861
 
852
862
  /**
853
- * Summary of a protein library screening engine run (excludes input)
863
+ * Summary of a protein library screening pipeline run (excludes input)
854
864
  */
855
865
  export interface LibraryScreenListResponse {
856
866
  /**
@@ -869,14 +879,14 @@ export interface LibraryScreenListResponse {
869
879
  data_deleted_at: string | null;
870
880
 
871
881
  /**
872
- * Engine used for protein library screen
882
+ * @deprecated Use pipeline instead.
873
883
  */
874
- engine: 'boltz-protein-screen';
884
+ engine: 'boltzprot';
875
885
 
876
886
  /**
877
- * Engine version used for protein library screen
887
+ * @deprecated Use pipeline_version instead.
878
888
  */
879
- engine_version: string;
889
+ engine_version: '1.0';
880
890
 
881
891
  error: LibraryScreenListResponse.Error | null;
882
892
 
@@ -885,6 +895,16 @@ export interface LibraryScreenListResponse {
885
895
  */
886
896
  livemode: boolean;
887
897
 
898
+ /**
899
+ * Pipeline used for protein library screen
900
+ */
901
+ pipeline: 'boltzprot';
902
+
903
+ /**
904
+ * Pipeline version used for protein library screen
905
+ */
906
+ pipeline_version: '1.0';
907
+
888
908
  progress: LibraryScreenListResponse.Progress | null;
889
909
 
890
910
  started_at: string | null;
@@ -1315,7 +1335,7 @@ export namespace LibraryScreenListResultsResponse {
1315
1335
  }
1316
1336
 
1317
1337
  /**
1318
- * A protein library screening engine run
1338
+ * A protein library screening pipeline run
1319
1339
  */
1320
1340
  export interface LibraryScreenStartResponse {
1321
1341
  /**
@@ -1334,14 +1354,14 @@ export interface LibraryScreenStartResponse {
1334
1354
  data_deleted_at: string | null;
1335
1355
 
1336
1356
  /**
1337
- * Engine used for protein library screen
1357
+ * @deprecated Use pipeline instead.
1338
1358
  */
1339
- engine: 'boltz-protein-screen';
1359
+ engine: 'boltzprot';
1340
1360
 
1341
1361
  /**
1342
- * Engine version used for protein library screen
1362
+ * @deprecated Use pipeline_version instead.
1343
1363
  */
1344
- engine_version: string;
1364
+ engine_version: '1.0';
1345
1365
 
1346
1366
  error: LibraryScreenStartResponse.Error | null;
1347
1367
 
@@ -1355,6 +1375,16 @@ export interface LibraryScreenStartResponse {
1355
1375
  */
1356
1376
  livemode: boolean;
1357
1377
 
1378
+ /**
1379
+ * Pipeline used for protein library screen
1380
+ */
1381
+ pipeline: 'boltzprot';
1382
+
1383
+ /**
1384
+ * Pipeline version used for protein library screen
1385
+ */
1386
+ pipeline_version: '1.0';
1387
+
1358
1388
  progress: LibraryScreenStartResponse.Progress | null;
1359
1389
 
1360
1390
  started_at: string | null;
@@ -1424,7 +1454,7 @@ export namespace LibraryScreenStartResponse {
1424
1454
  export interface StructureTemplateTargetResponse {
1425
1455
  /**
1426
1456
  * Chains selected from the uploaded structure, keyed by chain ID. Only chains
1427
- * listed here are included in the engine run — any chains omitted from this
1457
+ * listed here are included in the pipeline run — any chains omitted from this
1428
1458
  * mapping are ignored. Each value defines which residues to keep, which are
1429
1459
  * epitope residues, which are non-binding residues, and which are flexible.
1430
1460
  */
@@ -1449,7 +1479,7 @@ export namespace LibraryScreenStartResponse {
1449
1479
 
1450
1480
  /**
1451
1481
  * 0-indexed residue indices to retain from this chain, or 'all' to keep all
1452
- * residues. Residues not listed are excluded from the engine run.
1482
+ * residues. Residues not listed are excluded from the pipeline run.
1453
1483
  */
1454
1484
  crop_residues: Array<number> | 'all';
1455
1485
 
@@ -1976,7 +2006,7 @@ export namespace LibraryScreenStartResponse {
1976
2006
  }
1977
2007
 
1978
2008
  /**
1979
- * A protein library screening engine run
2009
+ * A protein library screening pipeline run
1980
2010
  */
1981
2011
  export interface LibraryScreenStopResponse {
1982
2012
  /**
@@ -1995,14 +2025,14 @@ export interface LibraryScreenStopResponse {
1995
2025
  data_deleted_at: string | null;
1996
2026
 
1997
2027
  /**
1998
- * Engine used for protein library screen
2028
+ * @deprecated Use pipeline instead.
1999
2029
  */
2000
- engine: 'boltz-protein-screen';
2030
+ engine: 'boltzprot';
2001
2031
 
2002
2032
  /**
2003
- * Engine version used for protein library screen
2033
+ * @deprecated Use pipeline_version instead.
2004
2034
  */
2005
- engine_version: string;
2035
+ engine_version: '1.0';
2006
2036
 
2007
2037
  error: LibraryScreenStopResponse.Error | null;
2008
2038
 
@@ -2016,6 +2046,16 @@ export interface LibraryScreenStopResponse {
2016
2046
  */
2017
2047
  livemode: boolean;
2018
2048
 
2049
+ /**
2050
+ * Pipeline used for protein library screen
2051
+ */
2052
+ pipeline: 'boltzprot';
2053
+
2054
+ /**
2055
+ * Pipeline version used for protein library screen
2056
+ */
2057
+ pipeline_version: '1.0';
2058
+
2019
2059
  progress: LibraryScreenStopResponse.Progress | null;
2020
2060
 
2021
2061
  started_at: string | null;
@@ -2085,7 +2125,7 @@ export namespace LibraryScreenStopResponse {
2085
2125
  export interface StructureTemplateTargetResponse {
2086
2126
  /**
2087
2127
  * Chains selected from the uploaded structure, keyed by chain ID. Only chains
2088
- * listed here are included in the engine run — any chains omitted from this
2128
+ * listed here are included in the pipeline run — any chains omitted from this
2089
2129
  * mapping are ignored. Each value defines which residues to keep, which are
2090
2130
  * epitope residues, which are non-binding residues, and which are flexible.
2091
2131
  */
@@ -2110,7 +2150,7 @@ export namespace LibraryScreenStopResponse {
2110
2150
 
2111
2151
  /**
2112
2152
  * 0-indexed residue indices to retain from this chain, or 'all' to keep all
2113
- * residues. Residues not listed are excluded from the engine run.
2153
+ * residues. Residues not listed are excluded from the pipeline run.
2114
2154
  */
2115
2155
  crop_residues: Array<number> | 'all';
2116
2156
 
@@ -2883,7 +2923,7 @@ export namespace LibraryScreenEstimateCostParams {
2883
2923
  export interface StructureTemplateTarget {
2884
2924
  /**
2885
2925
  * Chains selected from the uploaded structure, keyed by chain ID. Only chains
2886
- * listed here are included in the engine run — any chains omitted from this
2926
+ * listed here are included in the pipeline run — any chains omitted from this
2887
2927
  * mapping are ignored. Each value defines which residues to keep, which are
2888
2928
  * epitope residues, which are non-binding residues, and which are flexible.
2889
2929
  */
@@ -2912,7 +2952,7 @@ export namespace LibraryScreenEstimateCostParams {
2912
2952
 
2913
2953
  /**
2914
2954
  * 0-indexed residue indices to retain from this chain, or 'all' to keep all
2915
- * residues. Residues not listed are excluded from the engine run.
2955
+ * residues. Residues not listed are excluded from the pipeline run.
2916
2956
  */
2917
2957
  crop_residues: Array<number> | 'all';
2918
2958
 
@@ -3653,7 +3693,7 @@ export namespace LibraryScreenStartParams {
3653
3693
  export interface StructureTemplateTarget {
3654
3694
  /**
3655
3695
  * Chains selected from the uploaded structure, keyed by chain ID. Only chains
3656
- * listed here are included in the engine run — any chains omitted from this
3696
+ * listed here are included in the pipeline run — any chains omitted from this
3657
3697
  * mapping are ignored. Each value defines which residues to keep, which are
3658
3698
  * epitope residues, which are non-binding residues, and which are flexible.
3659
3699
  */
@@ -3682,7 +3722,7 @@ export namespace LibraryScreenStartParams {
3682
3722
 
3683
3723
  /**
3684
3724
  * 0-indexed residue indices to retain from this chain, or 'all' to keep all
3685
- * residues. Residues not listed are excluded from the engine run.
3725
+ * residues. Residues not listed are excluded from the pipeline run.
3686
3726
  */
3687
3727
  crop_residues: Array<number> | 'all';
3688
3728
 
@@ -39,7 +39,7 @@ import {
39
39
  } from './library-screen';
40
40
 
41
41
  /**
42
- * Protein Engine — design novel protein binders and screen protein libraries against targets. Includes de novo protein design and library screening.
42
+ * Protein Pipeline — design novel protein binders and screen protein libraries against targets. Includes de novo protein design and library screening.
43
43
  */
44
44
  export class Protein extends APIResource {
45
45
  design: DesignAPI.Design = new DesignAPI.Design(this._client);