boltz-api 0.39.3 → 0.41.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.
- package/CHANGELOG.md +16 -0
- package/package.json +1 -1
- package/resources/small-molecule/design.d.mts +80 -0
- package/resources/small-molecule/design.d.mts.map +1 -1
- package/resources/small-molecule/design.d.ts +80 -0
- package/resources/small-molecule/design.d.ts.map +1 -1
- package/resources/small-molecule/library-screen.d.mts +80 -0
- package/resources/small-molecule/library-screen.d.mts.map +1 -1
- package/resources/small-molecule/library-screen.d.ts +80 -0
- package/resources/small-molecule/library-screen.d.ts.map +1 -1
- package/src/resources/small-molecule/design.ts +100 -0
- package/src/resources/small-molecule/library-screen.ts +100 -0
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -300,6 +300,13 @@ 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
|
+
|
|
303
310
|
/**
|
|
304
311
|
* Reference ligands as SMILES strings that help the model identify the binding
|
|
305
312
|
* pocket. When omitted, a set of drug-like default ligands is used for pocket
|
|
@@ -591,6 +598,19 @@ export namespace LibraryScreenRetrieveResponse {
|
|
|
591
598
|
type: 'ligand_contact';
|
|
592
599
|
}
|
|
593
600
|
}
|
|
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
|
+
}
|
|
594
614
|
}
|
|
595
615
|
|
|
596
616
|
/**
|
|
@@ -1431,6 +1451,13 @@ export namespace LibraryScreenStartResponse {
|
|
|
1431
1451
|
*/
|
|
1432
1452
|
pocket_residues?: { [key: string]: Array<number> };
|
|
1433
1453
|
|
|
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
|
+
|
|
1434
1461
|
/**
|
|
1435
1462
|
* Reference ligands as SMILES strings that help the model identify the binding
|
|
1436
1463
|
* pocket. When omitted, a set of drug-like default ligands is used for pocket
|
|
@@ -1722,6 +1749,19 @@ export namespace LibraryScreenStartResponse {
|
|
|
1722
1749
|
type: 'ligand_contact';
|
|
1723
1750
|
}
|
|
1724
1751
|
}
|
|
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
|
+
}
|
|
1725
1765
|
}
|
|
1726
1766
|
|
|
1727
1767
|
/**
|
|
@@ -2235,6 +2275,13 @@ export namespace LibraryScreenStopResponse {
|
|
|
2235
2275
|
*/
|
|
2236
2276
|
pocket_residues?: { [key: string]: Array<number> };
|
|
2237
2277
|
|
|
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
|
+
|
|
2238
2285
|
/**
|
|
2239
2286
|
* Reference ligands as SMILES strings that help the model identify the binding
|
|
2240
2287
|
* pocket. When omitted, a set of drug-like default ligands is used for pocket
|
|
@@ -2526,6 +2573,19 @@ export namespace LibraryScreenStopResponse {
|
|
|
2526
2573
|
type: 'ligand_contact';
|
|
2527
2574
|
}
|
|
2528
2575
|
}
|
|
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
|
+
}
|
|
2529
2589
|
}
|
|
2530
2590
|
|
|
2531
2591
|
/**
|
|
@@ -2991,6 +3051,13 @@ export namespace LibraryScreenEstimateCostParams {
|
|
|
2991
3051
|
*/
|
|
2992
3052
|
pocket_residues?: { [key: string]: Array<number> };
|
|
2993
3053
|
|
|
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
|
+
|
|
2994
3061
|
/**
|
|
2995
3062
|
* Reference ligands as SMILES strings that help the model identify the binding
|
|
2996
3063
|
* pocket. When omitted, a set of drug-like default ligands is used for pocket
|
|
@@ -3278,6 +3345,19 @@ export namespace LibraryScreenEstimateCostParams {
|
|
|
3278
3345
|
type: 'ligand_contact';
|
|
3279
3346
|
}
|
|
3280
3347
|
}
|
|
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
|
+
}
|
|
3281
3361
|
}
|
|
3282
3362
|
|
|
3283
3363
|
/**
|
|
@@ -3694,6 +3774,13 @@ export namespace LibraryScreenStartParams {
|
|
|
3694
3774
|
*/
|
|
3695
3775
|
pocket_residues?: { [key: string]: Array<number> };
|
|
3696
3776
|
|
|
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
|
+
|
|
3697
3784
|
/**
|
|
3698
3785
|
* Reference ligands as SMILES strings that help the model identify the binding
|
|
3699
3786
|
* pocket. When omitted, a set of drug-like default ligands is used for pocket
|
|
@@ -3981,6 +4068,19 @@ export namespace LibraryScreenStartParams {
|
|
|
3981
4068
|
type: 'ligand_contact';
|
|
3982
4069
|
}
|
|
3983
4070
|
}
|
|
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
|
+
}
|
|
3984
4084
|
}
|
|
3985
4085
|
|
|
3986
4086
|
/**
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.41.0'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.41.0";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.41.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.41.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|