boltz-api 0.42.0 → 0.44.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.
@@ -310,13 +310,6 @@ export namespace DesignRetrieveResponse {
310
310
  */
311
311
  pocket_residues?: { [key: string]: Array<number> };
312
312
 
313
- /**
314
- * Precomputed affinity-pocket artifacts for this target. When provided,
315
- * small-molecule design/screen pipelines reuse this pocket and skip Compute
316
- * affinity pocket search.
317
- */
318
- precomputed_affinity_pocket?: Target.PrecomputedAffinityPocket;
319
-
320
313
  /**
321
314
  * Reference ligands as SMILES strings that help the model identify the binding
322
315
  * pocket. When omitted, a set of drug-like default ligands is used for pocket
@@ -608,19 +601,6 @@ export namespace DesignRetrieveResponse {
608
601
  type: 'ligand_contact';
609
602
  }
610
603
  }
611
-
612
- /**
613
- * Precomputed affinity-pocket artifacts for this target. When provided,
614
- * small-molecule design/screen pipelines reuse this pocket and skip Compute
615
- * affinity pocket search.
616
- */
617
- export interface PrecomputedAffinityPocket {
618
- method: 'reference_ligands' | 'residue_ids';
619
-
620
- pocket_file_url: string;
621
-
622
- structure_file_url: string;
623
- }
624
604
  }
625
605
 
626
606
  /**
@@ -1163,6 +1143,8 @@ export namespace DesignListResultsResponse {
1163
1143
  archive: Artifacts.Archive;
1164
1144
 
1165
1145
  structure: Artifacts.Structure;
1146
+
1147
+ ligand_structure?: Artifacts.LigandStructure;
1166
1148
  }
1167
1149
 
1168
1150
  export namespace Artifacts {
@@ -1189,6 +1171,18 @@ export namespace DesignListResultsResponse {
1189
1171
  */
1190
1172
  url_expires_at: string;
1191
1173
  }
1174
+
1175
+ export interface LigandStructure {
1176
+ /**
1177
+ * URL to download the file
1178
+ */
1179
+ url: string;
1180
+
1181
+ /**
1182
+ * When the presigned URL expires
1183
+ */
1184
+ url_expires_at: string;
1185
+ }
1192
1186
  }
1193
1187
 
1194
1188
  /**
@@ -1420,13 +1414,6 @@ export namespace DesignStartResponse {
1420
1414
  */
1421
1415
  pocket_residues?: { [key: string]: Array<number> };
1422
1416
 
1423
- /**
1424
- * Precomputed affinity-pocket artifacts for this target. When provided,
1425
- * small-molecule design/screen pipelines reuse this pocket and skip Compute
1426
- * affinity pocket search.
1427
- */
1428
- precomputed_affinity_pocket?: Target.PrecomputedAffinityPocket;
1429
-
1430
1417
  /**
1431
1418
  * Reference ligands as SMILES strings that help the model identify the binding
1432
1419
  * pocket. When omitted, a set of drug-like default ligands is used for pocket
@@ -1718,19 +1705,6 @@ export namespace DesignStartResponse {
1718
1705
  type: 'ligand_contact';
1719
1706
  }
1720
1707
  }
1721
-
1722
- /**
1723
- * Precomputed affinity-pocket artifacts for this target. When provided,
1724
- * small-molecule design/screen pipelines reuse this pocket and skip Compute
1725
- * affinity pocket search.
1726
- */
1727
- export interface PrecomputedAffinityPocket {
1728
- method: 'reference_ligands' | 'residue_ids';
1729
-
1730
- pocket_file_url: string;
1731
-
1732
- structure_file_url: string;
1733
- }
1734
1708
  }
1735
1709
 
1736
1710
  /**
@@ -2230,13 +2204,6 @@ export namespace DesignStopResponse {
2230
2204
  */
2231
2205
  pocket_residues?: { [key: string]: Array<number> };
2232
2206
 
2233
- /**
2234
- * Precomputed affinity-pocket artifacts for this target. When provided,
2235
- * small-molecule design/screen pipelines reuse this pocket and skip Compute
2236
- * affinity pocket search.
2237
- */
2238
- precomputed_affinity_pocket?: Target.PrecomputedAffinityPocket;
2239
-
2240
2207
  /**
2241
2208
  * Reference ligands as SMILES strings that help the model identify the binding
2242
2209
  * pocket. When omitted, a set of drug-like default ligands is used for pocket
@@ -2528,19 +2495,6 @@ export namespace DesignStopResponse {
2528
2495
  type: 'ligand_contact';
2529
2496
  }
2530
2497
  }
2531
-
2532
- /**
2533
- * Precomputed affinity-pocket artifacts for this target. When provided,
2534
- * small-molecule design/screen pipelines reuse this pocket and skip Compute
2535
- * affinity pocket search.
2536
- */
2537
- export interface PrecomputedAffinityPocket {
2538
- method: 'reference_ligands' | 'residue_ids';
2539
-
2540
- pocket_file_url: string;
2541
-
2542
- structure_file_url: string;
2543
- }
2544
2498
  }
2545
2499
 
2546
2500
  /**
@@ -2976,13 +2930,6 @@ export namespace DesignEstimateCostParams {
2976
2930
  */
2977
2931
  pocket_residues?: { [key: string]: Array<number> };
2978
2932
 
2979
- /**
2980
- * Precomputed affinity-pocket artifacts for this target. When provided,
2981
- * small-molecule design/screen pipelines reuse this pocket and skip Compute
2982
- * affinity pocket search.
2983
- */
2984
- precomputed_affinity_pocket?: Target.PrecomputedAffinityPocket;
2985
-
2986
2933
  /**
2987
2934
  * Reference ligands as SMILES strings that help the model identify the binding
2988
2935
  * pocket. When omitted, a set of drug-like default ligands is used for pocket
@@ -3270,19 +3217,6 @@ export namespace DesignEstimateCostParams {
3270
3217
  type: 'ligand_contact';
3271
3218
  }
3272
3219
  }
3273
-
3274
- /**
3275
- * Precomputed affinity-pocket artifacts for this target. When provided,
3276
- * small-molecule design/screen pipelines reuse this pocket and skip Compute
3277
- * affinity pocket search.
3278
- */
3279
- export interface PrecomputedAffinityPocket {
3280
- method: 'reference_ligands' | 'residue_ids';
3281
-
3282
- pocket_file_url: string;
3283
-
3284
- structure_file_url: string;
3285
- }
3286
3220
  }
3287
3221
 
3288
3222
  /**
@@ -3691,13 +3625,6 @@ export namespace DesignStartParams {
3691
3625
  */
3692
3626
  pocket_residues?: { [key: string]: Array<number> };
3693
3627
 
3694
- /**
3695
- * Precomputed affinity-pocket artifacts for this target. When provided,
3696
- * small-molecule design/screen pipelines reuse this pocket and skip Compute
3697
- * affinity pocket search.
3698
- */
3699
- precomputed_affinity_pocket?: Target.PrecomputedAffinityPocket;
3700
-
3701
3628
  /**
3702
3629
  * Reference ligands as SMILES strings that help the model identify the binding
3703
3630
  * pocket. When omitted, a set of drug-like default ligands is used for pocket
@@ -3985,19 +3912,6 @@ export namespace DesignStartParams {
3985
3912
  type: 'ligand_contact';
3986
3913
  }
3987
3914
  }
3988
-
3989
- /**
3990
- * Precomputed affinity-pocket artifacts for this target. When provided,
3991
- * small-molecule design/screen pipelines reuse this pocket and skip Compute
3992
- * affinity pocket search.
3993
- */
3994
- export interface PrecomputedAffinityPocket {
3995
- method: 'reference_ligands' | 'residue_ids';
3996
-
3997
- pocket_file_url: string;
3998
-
3999
- structure_file_url: string;
4000
- }
4001
3915
  }
4002
3916
 
4003
3917
  /**
@@ -300,13 +300,6 @@ export namespace LibraryScreenRetrieveResponse {
300
300
  */
301
301
  pocket_residues?: { [key: string]: Array<number> };
302
302
 
303
- /**
304
- * Precomputed affinity-pocket artifacts for this target. When provided,
305
- * small-molecule design/screen pipelines reuse this pocket and skip Compute
306
- * affinity pocket search.
307
- */
308
- precomputed_affinity_pocket?: Target.PrecomputedAffinityPocket;
309
-
310
303
  /**
311
304
  * Reference ligands as SMILES strings that help the model identify the binding
312
305
  * pocket. When omitted, a set of drug-like default ligands is used for pocket
@@ -598,19 +591,6 @@ export namespace LibraryScreenRetrieveResponse {
598
591
  type: 'ligand_contact';
599
592
  }
600
593
  }
601
-
602
- /**
603
- * Precomputed affinity-pocket artifacts for this target. When provided,
604
- * small-molecule design/screen pipelines reuse this pocket and skip Compute
605
- * affinity pocket search.
606
- */
607
- export interface PrecomputedAffinityPocket {
608
- method: 'reference_ligands' | 'residue_ids';
609
-
610
- pocket_file_url: string;
611
-
612
- structure_file_url: string;
613
- }
614
594
  }
615
595
 
616
596
  /**
@@ -1202,6 +1182,8 @@ export namespace LibraryScreenListResultsResponse {
1202
1182
  archive: Artifacts.Archive;
1203
1183
 
1204
1184
  structure: Artifacts.Structure;
1185
+
1186
+ ligand_structure?: Artifacts.LigandStructure;
1205
1187
  }
1206
1188
 
1207
1189
  export namespace Artifacts {
@@ -1228,6 +1210,18 @@ export namespace LibraryScreenListResultsResponse {
1228
1210
  */
1229
1211
  url_expires_at: string;
1230
1212
  }
1213
+
1214
+ export interface LigandStructure {
1215
+ /**
1216
+ * URL to download the file
1217
+ */
1218
+ url: string;
1219
+
1220
+ /**
1221
+ * When the presigned URL expires
1222
+ */
1223
+ url_expires_at: string;
1224
+ }
1231
1225
  }
1232
1226
 
1233
1227
  /**
@@ -1451,13 +1445,6 @@ export namespace LibraryScreenStartResponse {
1451
1445
  */
1452
1446
  pocket_residues?: { [key: string]: Array<number> };
1453
1447
 
1454
- /**
1455
- * Precomputed affinity-pocket artifacts for this target. When provided,
1456
- * small-molecule design/screen pipelines reuse this pocket and skip Compute
1457
- * affinity pocket search.
1458
- */
1459
- precomputed_affinity_pocket?: Target.PrecomputedAffinityPocket;
1460
-
1461
1448
  /**
1462
1449
  * Reference ligands as SMILES strings that help the model identify the binding
1463
1450
  * pocket. When omitted, a set of drug-like default ligands is used for pocket
@@ -1749,19 +1736,6 @@ export namespace LibraryScreenStartResponse {
1749
1736
  type: 'ligand_contact';
1750
1737
  }
1751
1738
  }
1752
-
1753
- /**
1754
- * Precomputed affinity-pocket artifacts for this target. When provided,
1755
- * small-molecule design/screen pipelines reuse this pocket and skip Compute
1756
- * affinity pocket search.
1757
- */
1758
- export interface PrecomputedAffinityPocket {
1759
- method: 'reference_ligands' | 'residue_ids';
1760
-
1761
- pocket_file_url: string;
1762
-
1763
- structure_file_url: string;
1764
- }
1765
1739
  }
1766
1740
 
1767
1741
  /**
@@ -2275,13 +2249,6 @@ export namespace LibraryScreenStopResponse {
2275
2249
  */
2276
2250
  pocket_residues?: { [key: string]: Array<number> };
2277
2251
 
2278
- /**
2279
- * Precomputed affinity-pocket artifacts for this target. When provided,
2280
- * small-molecule design/screen pipelines reuse this pocket and skip Compute
2281
- * affinity pocket search.
2282
- */
2283
- precomputed_affinity_pocket?: Target.PrecomputedAffinityPocket;
2284
-
2285
2252
  /**
2286
2253
  * Reference ligands as SMILES strings that help the model identify the binding
2287
2254
  * pocket. When omitted, a set of drug-like default ligands is used for pocket
@@ -2573,19 +2540,6 @@ export namespace LibraryScreenStopResponse {
2573
2540
  type: 'ligand_contact';
2574
2541
  }
2575
2542
  }
2576
-
2577
- /**
2578
- * Precomputed affinity-pocket artifacts for this target. When provided,
2579
- * small-molecule design/screen pipelines reuse this pocket and skip Compute
2580
- * affinity pocket search.
2581
- */
2582
- export interface PrecomputedAffinityPocket {
2583
- method: 'reference_ligands' | 'residue_ids';
2584
-
2585
- pocket_file_url: string;
2586
-
2587
- structure_file_url: string;
2588
- }
2589
2543
  }
2590
2544
 
2591
2545
  /**
@@ -3051,13 +3005,6 @@ export namespace LibraryScreenEstimateCostParams {
3051
3005
  */
3052
3006
  pocket_residues?: { [key: string]: Array<number> };
3053
3007
 
3054
- /**
3055
- * Precomputed affinity-pocket artifacts for this target. When provided,
3056
- * small-molecule design/screen pipelines reuse this pocket and skip Compute
3057
- * affinity pocket search.
3058
- */
3059
- precomputed_affinity_pocket?: Target.PrecomputedAffinityPocket;
3060
-
3061
3008
  /**
3062
3009
  * Reference ligands as SMILES strings that help the model identify the binding
3063
3010
  * pocket. When omitted, a set of drug-like default ligands is used for pocket
@@ -3345,19 +3292,6 @@ export namespace LibraryScreenEstimateCostParams {
3345
3292
  type: 'ligand_contact';
3346
3293
  }
3347
3294
  }
3348
-
3349
- /**
3350
- * Precomputed affinity-pocket artifacts for this target. When provided,
3351
- * small-molecule design/screen pipelines reuse this pocket and skip Compute
3352
- * affinity pocket search.
3353
- */
3354
- export interface PrecomputedAffinityPocket {
3355
- method: 'reference_ligands' | 'residue_ids';
3356
-
3357
- pocket_file_url: string;
3358
-
3359
- structure_file_url: string;
3360
- }
3361
3295
  }
3362
3296
 
3363
3297
  /**
@@ -3774,13 +3708,6 @@ export namespace LibraryScreenStartParams {
3774
3708
  */
3775
3709
  pocket_residues?: { [key: string]: Array<number> };
3776
3710
 
3777
- /**
3778
- * Precomputed affinity-pocket artifacts for this target. When provided,
3779
- * small-molecule design/screen pipelines reuse this pocket and skip Compute
3780
- * affinity pocket search.
3781
- */
3782
- precomputed_affinity_pocket?: Target.PrecomputedAffinityPocket;
3783
-
3784
3711
  /**
3785
3712
  * Reference ligands as SMILES strings that help the model identify the binding
3786
3713
  * pocket. When omitted, a set of drug-like default ligands is used for pocket
@@ -4068,19 +3995,6 @@ export namespace LibraryScreenStartParams {
4068
3995
  type: 'ligand_contact';
4069
3996
  }
4070
3997
  }
4071
-
4072
- /**
4073
- * Precomputed affinity-pocket artifacts for this target. When provided,
4074
- * small-molecule design/screen pipelines reuse this pocket and skip Compute
4075
- * affinity pocket search.
4076
- */
4077
- export interface PrecomputedAffinityPocket {
4078
- method: 'reference_ligands' | 'residue_ids';
4079
-
4080
- pocket_file_url: string;
4081
-
4082
- structure_file_url: string;
4083
- }
4084
3998
  }
4085
3999
 
4086
4000
  /**
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '0.42.0'; // x-release-please-version
1
+ export const VERSION = '0.44.0'; // x-release-please-version
package/version.d.mts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.42.0";
1
+ export declare const VERSION = "0.44.0";
2
2
  //# sourceMappingURL=version.d.mts.map
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.42.0";
1
+ export declare const VERSION = "0.44.0";
2
2
  //# sourceMappingURL=version.d.ts.map
package/version.js CHANGED
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VERSION = void 0;
4
- exports.VERSION = '0.42.0'; // x-release-please-version
4
+ exports.VERSION = '0.44.0'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '0.42.0'; // x-release-please-version
1
+ export const VERSION = '0.44.0'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map