boltz-api 0.46.0 → 0.46.1
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 +9 -0
- package/package.json +1 -1
- package/resources/predictions/adme.d.mts +11 -7
- package/resources/predictions/adme.d.mts.map +1 -1
- package/resources/predictions/adme.d.ts +11 -7
- package/resources/predictions/adme.d.ts.map +1 -1
- package/resources/predictions/structure-and-binding.d.mts +7 -7
- package/resources/predictions/structure-and-binding.d.ts +7 -7
- package/resources/protein/design.d.mts +3 -3
- package/resources/protein/design.d.ts +3 -3
- package/resources/protein/library-screen.d.mts +3 -3
- package/resources/protein/library-screen.d.ts +3 -3
- package/resources/small-molecule/design.d.mts +3 -3
- package/resources/small-molecule/design.d.ts +3 -3
- package/resources/small-molecule/library-screen.d.mts +3 -3
- package/resources/small-molecule/library-screen.d.ts +3 -3
- package/src/resources/predictions/adme.ts +11 -7
- package/src/resources/predictions/structure-and-binding.ts +7 -7
- package/src/resources/protein/design.ts +3 -3
- package/src/resources/protein/library-screen.ts +3 -3
- package/src/resources/small-molecule/design.ts +3 -3
- package/src/resources/small-molecule/library-screen.ts +3 -3
- 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
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.46.1 (2026-06-16)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.46.0...v0.46.1](https://github.com/boltz-bio/boltz-api-typescript/compare/v0.46.0...v0.46.1)
|
|
6
|
+
|
|
7
|
+
### Documentation
|
|
8
|
+
|
|
9
|
+
* **api:** fix runnable predictions example + document request limits ([6ba9e6d](https://github.com/boltz-bio/boltz-api-typescript/commit/6ba9e6d40b477dc0df50856a3c17c5a4d902a6ad))
|
|
10
|
+
* **api:** use ASCII hyphens in limit descriptions ([fff995e](https://github.com/boltz-bio/boltz-api-typescript/commit/fff995e02086a309d863350b74880b3734f1049e))
|
|
11
|
+
|
|
3
12
|
## 0.46.0 (2026-06-15)
|
|
4
13
|
|
|
5
14
|
Full Changelog: [v0.45.1...v0.46.0](https://github.com/boltz-bio/boltz-api-typescript/compare/v0.45.1...v0.46.0)
|
package/package.json
CHANGED
|
@@ -144,7 +144,8 @@ export declare namespace AdmeRetrieveResponse {
|
|
|
144
144
|
*/
|
|
145
145
|
interface Input {
|
|
146
146
|
/**
|
|
147
|
-
* Molecules to score. Results are returned in the same order
|
|
147
|
+
* Molecules to score (1-128 per request). Results are returned in the same order
|
|
148
|
+
* as this list.
|
|
148
149
|
*/
|
|
149
150
|
molecules: Array<Input.Molecule>;
|
|
150
151
|
}
|
|
@@ -348,9 +349,9 @@ export declare namespace AdmeEstimateCostResponse {
|
|
|
348
349
|
*/
|
|
349
350
|
cost_per_unit_usd: string;
|
|
350
351
|
/**
|
|
351
|
-
* Number of units
|
|
352
|
-
*
|
|
353
|
-
*
|
|
352
|
+
* Number of billable units in the estimate. The unit depends on the endpoint:
|
|
353
|
+
* samples for structure-and-binding, molecules for ADME, and requested proteins or
|
|
354
|
+
* molecules for design/screen endpoints.
|
|
354
355
|
*/
|
|
355
356
|
num_units: number;
|
|
356
357
|
}
|
|
@@ -429,7 +430,8 @@ export declare namespace AdmeStartResponse {
|
|
|
429
430
|
*/
|
|
430
431
|
interface Input {
|
|
431
432
|
/**
|
|
432
|
-
* Molecules to score. Results are returned in the same order
|
|
433
|
+
* Molecules to score (1-128 per request). Results are returned in the same order
|
|
434
|
+
* as this list.
|
|
433
435
|
*/
|
|
434
436
|
molecules: Array<Input.Molecule>;
|
|
435
437
|
}
|
|
@@ -565,7 +567,8 @@ export interface AdmeEstimateCostParams {
|
|
|
565
567
|
export declare namespace AdmeEstimateCostParams {
|
|
566
568
|
interface Input {
|
|
567
569
|
/**
|
|
568
|
-
* Molecules to score. Results are returned in the same order
|
|
570
|
+
* Molecules to score (1-128 per request). Results are returned in the same order
|
|
571
|
+
* as this list.
|
|
569
572
|
*/
|
|
570
573
|
molecules: Array<Input.Molecule>;
|
|
571
574
|
}
|
|
@@ -601,7 +604,8 @@ export interface AdmeStartParams {
|
|
|
601
604
|
export declare namespace AdmeStartParams {
|
|
602
605
|
interface Input {
|
|
603
606
|
/**
|
|
604
|
-
* Molecules to score. Results are returned in the same order
|
|
607
|
+
* Molecules to score (1-128 per request). Results are returned in the same order
|
|
608
|
+
* as this list.
|
|
605
609
|
*/
|
|
606
610
|
molecules: Array<Input.Molecule>;
|
|
607
611
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"adme.d.mts","sourceRoot":"","sources":["../../src/resources/predictions/adme.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,gCAA4B;AAClD,OAAO,EAAE,UAAU,EAAE,mCAA+B;AACpD,OAAO,EAAE,UAAU,EAAE,KAAK,gBAAgB,EAAE,WAAW,EAAE,kCAA8B;AACvF,OAAO,EAAE,cAAc,EAAE,2CAAuC;AAGhE;;GAEG;AACH,qBAAa,IAAK,SAAQ,WAAW;IACnC;;;;;;;OAOG;IACH,QAAQ,CACN,EAAE,EAAE,MAAM,EACV,KAAK,GAAE,kBAAkB,GAAG,IAAI,GAAG,SAAc,EACjD,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,oBAAoB,CAAC;IAInC;;;;;;;;;;OAUG;IACH,IAAI,CACF,KAAK,GAAE,cAAc,GAAG,IAAI,GAAG,SAAc,EAC7C,OAAO,CAAC,EAAE,cAAc,GACvB,WAAW,CAAC,2BAA2B,EAAE,gBAAgB,CAAC;IAO7D;;;;;;;;;;;OAWG;IACH,UAAU,CAAC,EAAE,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,sBAAsB,CAAC;IAIpF;;;;;;;;;;;;;OAaG;IACH,YAAY,CAAC,IAAI,EAAE,sBAAsB,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,wBAAwB,CAAC;IAI1G;;;;;;;;;;;OAWG;IACH,KAAK,CAAC,IAAI,EAAE,eAAe,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,iBAAiB,CAAC;CAGtF;AAED,MAAM,MAAM,2BAA2B,GAAG,UAAU,CAAC,gBAAgB,CAAC,CAAC;AAEvE,MAAM,WAAW,oBAAoB;IACnC;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IAEX,YAAY,EAAE,MAAM,GAAG,IAAI,CAAC;IAE5B,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,eAAe,EAAE,MAAM,GAAG,IAAI,CAAC;IAE/B;;OAEG;IACH,KAAK,EAAE,oBAAoB,CAAC,KAAK,GAAG,IAAI,CAAC;IAEzC;;;OAGG;IACH,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IAE1B;;OAEG;IACH,KAAK,EAAE,oBAAoB,CAAC,KAAK,GAAG,IAAI,CAAC;IAEzC;;OAEG;IACH,QAAQ,EAAE,OAAO,CAAC;IAElB;;OAEG;IACH,KAAK,EAAE,SAAS,CAAC;IAEjB;;OAEG;IACH,MAAM,EAAE,oBAAoB,CAAC,MAAM,GAAG,IAAI,CAAC;IAE3C,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IAE1B,MAAM,EAAE,SAAS,GAAG,SAAS,GAAG,WAAW,GAAG,QAAQ,CAAC;IAEvD;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAEhB;;OAEG;IACH,YAAY,EAAE,MAAM,CAAC;IAErB;;OAEG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;CAC1B;AAED,yBAAiB,oBAAoB,CAAC;IACpC;;OAEG;IACH,UAAiB,KAAK;QACpB;;WAEG;QACH,IAAI,EAAE,MAAM,CAAC;QAEb;;WAEG;QACH,OAAO,EAAE,MAAM,CAAC;QAEhB;;WAEG;QACH,OAAO,CAAC,EAAE,OAAO,CAAC;KACnB;IAED;;OAEG;IACH,UAAiB,KAAK;QACpB
|
|
1
|
+
{"version":3,"file":"adme.d.mts","sourceRoot":"","sources":["../../src/resources/predictions/adme.ts"],"names":[],"mappings":"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"}
|
|
@@ -144,7 +144,8 @@ export declare namespace AdmeRetrieveResponse {
|
|
|
144
144
|
*/
|
|
145
145
|
interface Input {
|
|
146
146
|
/**
|
|
147
|
-
* Molecules to score. Results are returned in the same order
|
|
147
|
+
* Molecules to score (1-128 per request). Results are returned in the same order
|
|
148
|
+
* as this list.
|
|
148
149
|
*/
|
|
149
150
|
molecules: Array<Input.Molecule>;
|
|
150
151
|
}
|
|
@@ -348,9 +349,9 @@ export declare namespace AdmeEstimateCostResponse {
|
|
|
348
349
|
*/
|
|
349
350
|
cost_per_unit_usd: string;
|
|
350
351
|
/**
|
|
351
|
-
* Number of units
|
|
352
|
-
*
|
|
353
|
-
*
|
|
352
|
+
* Number of billable units in the estimate. The unit depends on the endpoint:
|
|
353
|
+
* samples for structure-and-binding, molecules for ADME, and requested proteins or
|
|
354
|
+
* molecules for design/screen endpoints.
|
|
354
355
|
*/
|
|
355
356
|
num_units: number;
|
|
356
357
|
}
|
|
@@ -429,7 +430,8 @@ export declare namespace AdmeStartResponse {
|
|
|
429
430
|
*/
|
|
430
431
|
interface Input {
|
|
431
432
|
/**
|
|
432
|
-
* Molecules to score. Results are returned in the same order
|
|
433
|
+
* Molecules to score (1-128 per request). Results are returned in the same order
|
|
434
|
+
* as this list.
|
|
433
435
|
*/
|
|
434
436
|
molecules: Array<Input.Molecule>;
|
|
435
437
|
}
|
|
@@ -565,7 +567,8 @@ export interface AdmeEstimateCostParams {
|
|
|
565
567
|
export declare namespace AdmeEstimateCostParams {
|
|
566
568
|
interface Input {
|
|
567
569
|
/**
|
|
568
|
-
* Molecules to score. Results are returned in the same order
|
|
570
|
+
* Molecules to score (1-128 per request). Results are returned in the same order
|
|
571
|
+
* as this list.
|
|
569
572
|
*/
|
|
570
573
|
molecules: Array<Input.Molecule>;
|
|
571
574
|
}
|
|
@@ -601,7 +604,8 @@ export interface AdmeStartParams {
|
|
|
601
604
|
export declare namespace AdmeStartParams {
|
|
602
605
|
interface Input {
|
|
603
606
|
/**
|
|
604
|
-
* Molecules to score. Results are returned in the same order
|
|
607
|
+
* Molecules to score (1-128 per request). Results are returned in the same order
|
|
608
|
+
* as this list.
|
|
605
609
|
*/
|
|
606
610
|
molecules: Array<Input.Molecule>;
|
|
607
611
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"adme.d.ts","sourceRoot":"","sources":["../../src/resources/predictions/adme.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,+BAA4B;AAClD,OAAO,EAAE,UAAU,EAAE,kCAA+B;AACpD,OAAO,EAAE,UAAU,EAAE,KAAK,gBAAgB,EAAE,WAAW,EAAE,iCAA8B;AACvF,OAAO,EAAE,cAAc,EAAE,0CAAuC;AAGhE;;GAEG;AACH,qBAAa,IAAK,SAAQ,WAAW;IACnC;;;;;;;OAOG;IACH,QAAQ,CACN,EAAE,EAAE,MAAM,EACV,KAAK,GAAE,kBAAkB,GAAG,IAAI,GAAG,SAAc,EACjD,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,oBAAoB,CAAC;IAInC;;;;;;;;;;OAUG;IACH,IAAI,CACF,KAAK,GAAE,cAAc,GAAG,IAAI,GAAG,SAAc,EAC7C,OAAO,CAAC,EAAE,cAAc,GACvB,WAAW,CAAC,2BAA2B,EAAE,gBAAgB,CAAC;IAO7D;;;;;;;;;;;OAWG;IACH,UAAU,CAAC,EAAE,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,sBAAsB,CAAC;IAIpF;;;;;;;;;;;;;OAaG;IACH,YAAY,CAAC,IAAI,EAAE,sBAAsB,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,wBAAwB,CAAC;IAI1G;;;;;;;;;;;OAWG;IACH,KAAK,CAAC,IAAI,EAAE,eAAe,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,iBAAiB,CAAC;CAGtF;AAED,MAAM,MAAM,2BAA2B,GAAG,UAAU,CAAC,gBAAgB,CAAC,CAAC;AAEvE,MAAM,WAAW,oBAAoB;IACnC;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IAEX,YAAY,EAAE,MAAM,GAAG,IAAI,CAAC;IAE5B,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,eAAe,EAAE,MAAM,GAAG,IAAI,CAAC;IAE/B;;OAEG;IACH,KAAK,EAAE,oBAAoB,CAAC,KAAK,GAAG,IAAI,CAAC;IAEzC;;;OAGG;IACH,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IAE1B;;OAEG;IACH,KAAK,EAAE,oBAAoB,CAAC,KAAK,GAAG,IAAI,CAAC;IAEzC;;OAEG;IACH,QAAQ,EAAE,OAAO,CAAC;IAElB;;OAEG;IACH,KAAK,EAAE,SAAS,CAAC;IAEjB;;OAEG;IACH,MAAM,EAAE,oBAAoB,CAAC,MAAM,GAAG,IAAI,CAAC;IAE3C,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IAE1B,MAAM,EAAE,SAAS,GAAG,SAAS,GAAG,WAAW,GAAG,QAAQ,CAAC;IAEvD;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAEhB;;OAEG;IACH,YAAY,EAAE,MAAM,CAAC;IAErB;;OAEG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;CAC1B;AAED,yBAAiB,oBAAoB,CAAC;IACpC;;OAEG;IACH,UAAiB,KAAK;QACpB;;WAEG;QACH,IAAI,EAAE,MAAM,CAAC;QAEb;;WAEG;QACH,OAAO,EAAE,MAAM,CAAC;QAEhB;;WAEG;QACH,OAAO,CAAC,EAAE,OAAO,CAAC;KACnB;IAED;;OAEG;IACH,UAAiB,KAAK;QACpB
|
|
1
|
+
{"version":3,"file":"adme.d.ts","sourceRoot":"","sources":["../../src/resources/predictions/adme.ts"],"names":[],"mappings":"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"}
|
|
@@ -186,7 +186,7 @@ export declare namespace StructureAndBindingRetrieveResponse {
|
|
|
186
186
|
constraints?: Array<Input.PocketConstraintResponse | Input.ContactConstraintResponse>;
|
|
187
187
|
model_options?: Input.ModelOptions;
|
|
188
188
|
/**
|
|
189
|
-
* Number of structure samples to generate
|
|
189
|
+
* Number of structure samples to generate (1-10)
|
|
190
190
|
*/
|
|
191
191
|
num_samples?: number;
|
|
192
192
|
/**
|
|
@@ -920,9 +920,9 @@ export declare namespace StructureAndBindingEstimateCostResponse {
|
|
|
920
920
|
*/
|
|
921
921
|
cost_per_unit_usd: string;
|
|
922
922
|
/**
|
|
923
|
-
* Number of units
|
|
924
|
-
*
|
|
925
|
-
*
|
|
923
|
+
* Number of billable units in the estimate. The unit depends on the endpoint:
|
|
924
|
+
* samples for structure-and-binding, molecules for ADME, and requested proteins or
|
|
925
|
+
* molecules for design/screen endpoints.
|
|
926
926
|
*/
|
|
927
927
|
num_units: number;
|
|
928
928
|
}
|
|
@@ -1018,7 +1018,7 @@ export declare namespace StructureAndBindingStartResponse {
|
|
|
1018
1018
|
constraints?: Array<Input.PocketConstraintResponse | Input.ContactConstraintResponse>;
|
|
1019
1019
|
model_options?: Input.ModelOptions;
|
|
1020
1020
|
/**
|
|
1021
|
-
* Number of structure samples to generate
|
|
1021
|
+
* Number of structure samples to generate (1-10)
|
|
1022
1022
|
*/
|
|
1023
1023
|
num_samples?: number;
|
|
1024
1024
|
/**
|
|
@@ -1701,7 +1701,7 @@ export declare namespace StructureAndBindingEstimateCostParams {
|
|
|
1701
1701
|
constraints?: Array<Input.PocketConstraint | Input.ContactConstraint>;
|
|
1702
1702
|
model_options?: Input.ModelOptions;
|
|
1703
1703
|
/**
|
|
1704
|
-
* Number of structure samples to generate
|
|
1704
|
+
* Number of structure samples to generate (1-10)
|
|
1705
1705
|
*/
|
|
1706
1706
|
num_samples?: number;
|
|
1707
1707
|
/**
|
|
@@ -2216,7 +2216,7 @@ export declare namespace StructureAndBindingStartParams {
|
|
|
2216
2216
|
constraints?: Array<Input.PocketConstraint | Input.ContactConstraint>;
|
|
2217
2217
|
model_options?: Input.ModelOptions;
|
|
2218
2218
|
/**
|
|
2219
|
-
* Number of structure samples to generate
|
|
2219
|
+
* Number of structure samples to generate (1-10)
|
|
2220
2220
|
*/
|
|
2221
2221
|
num_samples?: number;
|
|
2222
2222
|
/**
|
|
@@ -186,7 +186,7 @@ export declare namespace StructureAndBindingRetrieveResponse {
|
|
|
186
186
|
constraints?: Array<Input.PocketConstraintResponse | Input.ContactConstraintResponse>;
|
|
187
187
|
model_options?: Input.ModelOptions;
|
|
188
188
|
/**
|
|
189
|
-
* Number of structure samples to generate
|
|
189
|
+
* Number of structure samples to generate (1-10)
|
|
190
190
|
*/
|
|
191
191
|
num_samples?: number;
|
|
192
192
|
/**
|
|
@@ -920,9 +920,9 @@ export declare namespace StructureAndBindingEstimateCostResponse {
|
|
|
920
920
|
*/
|
|
921
921
|
cost_per_unit_usd: string;
|
|
922
922
|
/**
|
|
923
|
-
* Number of units
|
|
924
|
-
*
|
|
925
|
-
*
|
|
923
|
+
* Number of billable units in the estimate. The unit depends on the endpoint:
|
|
924
|
+
* samples for structure-and-binding, molecules for ADME, and requested proteins or
|
|
925
|
+
* molecules for design/screen endpoints.
|
|
926
926
|
*/
|
|
927
927
|
num_units: number;
|
|
928
928
|
}
|
|
@@ -1018,7 +1018,7 @@ export declare namespace StructureAndBindingStartResponse {
|
|
|
1018
1018
|
constraints?: Array<Input.PocketConstraintResponse | Input.ContactConstraintResponse>;
|
|
1019
1019
|
model_options?: Input.ModelOptions;
|
|
1020
1020
|
/**
|
|
1021
|
-
* Number of structure samples to generate
|
|
1021
|
+
* Number of structure samples to generate (1-10)
|
|
1022
1022
|
*/
|
|
1023
1023
|
num_samples?: number;
|
|
1024
1024
|
/**
|
|
@@ -1701,7 +1701,7 @@ export declare namespace StructureAndBindingEstimateCostParams {
|
|
|
1701
1701
|
constraints?: Array<Input.PocketConstraint | Input.ContactConstraint>;
|
|
1702
1702
|
model_options?: Input.ModelOptions;
|
|
1703
1703
|
/**
|
|
1704
|
-
* Number of structure samples to generate
|
|
1704
|
+
* Number of structure samples to generate (1-10)
|
|
1705
1705
|
*/
|
|
1706
1706
|
num_samples?: number;
|
|
1707
1707
|
/**
|
|
@@ -2216,7 +2216,7 @@ export declare namespace StructureAndBindingStartParams {
|
|
|
2216
2216
|
constraints?: Array<Input.PocketConstraint | Input.ContactConstraint>;
|
|
2217
2217
|
model_options?: Input.ModelOptions;
|
|
2218
2218
|
/**
|
|
2219
|
-
* Number of structure samples to generate
|
|
2219
|
+
* Number of structure samples to generate (1-10)
|
|
2220
2220
|
*/
|
|
2221
2221
|
num_samples?: number;
|
|
2222
2222
|
/**
|
|
@@ -1323,9 +1323,9 @@ export declare namespace DesignEstimateCostResponse {
|
|
|
1323
1323
|
*/
|
|
1324
1324
|
cost_per_unit_usd: string;
|
|
1325
1325
|
/**
|
|
1326
|
-
* Number of units
|
|
1327
|
-
*
|
|
1328
|
-
*
|
|
1326
|
+
* Number of billable units in the estimate. The unit depends on the endpoint:
|
|
1327
|
+
* samples for structure-and-binding, molecules for ADME, and requested proteins or
|
|
1328
|
+
* molecules for design/screen endpoints.
|
|
1329
1329
|
*/
|
|
1330
1330
|
num_units: number;
|
|
1331
1331
|
}
|
|
@@ -1323,9 +1323,9 @@ export declare namespace DesignEstimateCostResponse {
|
|
|
1323
1323
|
*/
|
|
1324
1324
|
cost_per_unit_usd: string;
|
|
1325
1325
|
/**
|
|
1326
|
-
* Number of units
|
|
1327
|
-
*
|
|
1328
|
-
*
|
|
1326
|
+
* Number of billable units in the estimate. The unit depends on the endpoint:
|
|
1327
|
+
* samples for structure-and-binding, molecules for ADME, and requested proteins or
|
|
1328
|
+
* molecules for design/screen endpoints.
|
|
1329
1329
|
*/
|
|
1330
1330
|
num_units: number;
|
|
1331
1331
|
}
|
|
@@ -810,9 +810,9 @@ export declare namespace LibraryScreenEstimateCostResponse {
|
|
|
810
810
|
*/
|
|
811
811
|
cost_per_unit_usd: string;
|
|
812
812
|
/**
|
|
813
|
-
* Number of units
|
|
814
|
-
*
|
|
815
|
-
*
|
|
813
|
+
* Number of billable units in the estimate. The unit depends on the endpoint:
|
|
814
|
+
* samples for structure-and-binding, molecules for ADME, and requested proteins or
|
|
815
|
+
* molecules for design/screen endpoints.
|
|
816
816
|
*/
|
|
817
817
|
num_units: number;
|
|
818
818
|
}
|
|
@@ -810,9 +810,9 @@ export declare namespace LibraryScreenEstimateCostResponse {
|
|
|
810
810
|
*/
|
|
811
811
|
cost_per_unit_usd: string;
|
|
812
812
|
/**
|
|
813
|
-
* Number of units
|
|
814
|
-
*
|
|
815
|
-
*
|
|
813
|
+
* Number of billable units in the estimate. The unit depends on the endpoint:
|
|
814
|
+
* samples for structure-and-binding, molecules for ADME, and requested proteins or
|
|
815
|
+
* molecules for design/screen endpoints.
|
|
816
816
|
*/
|
|
817
817
|
num_units: number;
|
|
818
818
|
}
|
|
@@ -885,9 +885,9 @@ export declare namespace DesignEstimateCostResponse {
|
|
|
885
885
|
*/
|
|
886
886
|
cost_per_unit_usd: string;
|
|
887
887
|
/**
|
|
888
|
-
* Number of units
|
|
889
|
-
*
|
|
890
|
-
*
|
|
888
|
+
* Number of billable units in the estimate. The unit depends on the endpoint:
|
|
889
|
+
* samples for structure-and-binding, molecules for ADME, and requested proteins or
|
|
890
|
+
* molecules for design/screen endpoints.
|
|
891
891
|
*/
|
|
892
892
|
num_units: number;
|
|
893
893
|
}
|
|
@@ -885,9 +885,9 @@ export declare namespace DesignEstimateCostResponse {
|
|
|
885
885
|
*/
|
|
886
886
|
cost_per_unit_usd: string;
|
|
887
887
|
/**
|
|
888
|
-
* Number of units
|
|
889
|
-
*
|
|
890
|
-
*
|
|
888
|
+
* Number of billable units in the estimate. The unit depends on the endpoint:
|
|
889
|
+
* samples for structure-and-binding, molecules for ADME, and requested proteins or
|
|
890
|
+
* molecules for design/screen endpoints.
|
|
891
891
|
*/
|
|
892
892
|
num_units: number;
|
|
893
893
|
}
|
|
@@ -911,9 +911,9 @@ export declare namespace LibraryScreenEstimateCostResponse {
|
|
|
911
911
|
*/
|
|
912
912
|
cost_per_unit_usd: string;
|
|
913
913
|
/**
|
|
914
|
-
* Number of units
|
|
915
|
-
*
|
|
916
|
-
*
|
|
914
|
+
* Number of billable units in the estimate. The unit depends on the endpoint:
|
|
915
|
+
* samples for structure-and-binding, molecules for ADME, and requested proteins or
|
|
916
|
+
* molecules for design/screen endpoints.
|
|
917
917
|
*/
|
|
918
918
|
num_units: number;
|
|
919
919
|
}
|
|
@@ -911,9 +911,9 @@ export declare namespace LibraryScreenEstimateCostResponse {
|
|
|
911
911
|
*/
|
|
912
912
|
cost_per_unit_usd: string;
|
|
913
913
|
/**
|
|
914
|
-
* Number of units
|
|
915
|
-
*
|
|
916
|
-
*
|
|
914
|
+
* Number of billable units in the estimate. The unit depends on the endpoint:
|
|
915
|
+
* samples for structure-and-binding, molecules for ADME, and requested proteins or
|
|
916
|
+
* molecules for design/screen endpoints.
|
|
917
917
|
*/
|
|
918
918
|
num_units: number;
|
|
919
919
|
}
|
|
@@ -192,7 +192,8 @@ export namespace AdmeRetrieveResponse {
|
|
|
192
192
|
*/
|
|
193
193
|
export interface Input {
|
|
194
194
|
/**
|
|
195
|
-
* Molecules to score. Results are returned in the same order
|
|
195
|
+
* Molecules to score (1-128 per request). Results are returned in the same order
|
|
196
|
+
* as this list.
|
|
196
197
|
*/
|
|
197
198
|
molecules: Array<Input.Molecule>;
|
|
198
199
|
}
|
|
@@ -449,9 +450,9 @@ export namespace AdmeEstimateCostResponse {
|
|
|
449
450
|
cost_per_unit_usd: string;
|
|
450
451
|
|
|
451
452
|
/**
|
|
452
|
-
* Number of units
|
|
453
|
-
*
|
|
454
|
-
*
|
|
453
|
+
* Number of billable units in the estimate. The unit depends on the endpoint:
|
|
454
|
+
* samples for structure-and-binding, molecules for ADME, and requested proteins or
|
|
455
|
+
* molecules for design/screen endpoints.
|
|
455
456
|
*/
|
|
456
457
|
num_units: number;
|
|
457
458
|
}
|
|
@@ -549,7 +550,8 @@ export namespace AdmeStartResponse {
|
|
|
549
550
|
*/
|
|
550
551
|
export interface Input {
|
|
551
552
|
/**
|
|
552
|
-
* Molecules to score. Results are returned in the same order
|
|
553
|
+
* Molecules to score (1-128 per request). Results are returned in the same order
|
|
554
|
+
* as this list.
|
|
553
555
|
*/
|
|
554
556
|
molecules: Array<Input.Molecule>;
|
|
555
557
|
}
|
|
@@ -713,7 +715,8 @@ export interface AdmeEstimateCostParams {
|
|
|
713
715
|
export namespace AdmeEstimateCostParams {
|
|
714
716
|
export interface Input {
|
|
715
717
|
/**
|
|
716
|
-
* Molecules to score. Results are returned in the same order
|
|
718
|
+
* Molecules to score (1-128 per request). Results are returned in the same order
|
|
719
|
+
* as this list.
|
|
717
720
|
*/
|
|
718
721
|
molecules: Array<Input.Molecule>;
|
|
719
722
|
}
|
|
@@ -756,7 +759,8 @@ export interface AdmeStartParams {
|
|
|
756
759
|
export namespace AdmeStartParams {
|
|
757
760
|
export interface Input {
|
|
758
761
|
/**
|
|
759
|
-
* Molecules to score. Results are returned in the same order
|
|
762
|
+
* Molecules to score (1-128 per request). Results are returned in the same order
|
|
763
|
+
* as this list.
|
|
760
764
|
*/
|
|
761
765
|
molecules: Array<Input.Molecule>;
|
|
762
766
|
}
|
|
@@ -255,7 +255,7 @@ export namespace StructureAndBindingRetrieveResponse {
|
|
|
255
255
|
model_options?: Input.ModelOptions;
|
|
256
256
|
|
|
257
257
|
/**
|
|
258
|
-
* Number of structure samples to generate
|
|
258
|
+
* Number of structure samples to generate (1-10)
|
|
259
259
|
*/
|
|
260
260
|
num_samples?: number;
|
|
261
261
|
|
|
@@ -1158,9 +1158,9 @@ export namespace StructureAndBindingEstimateCostResponse {
|
|
|
1158
1158
|
cost_per_unit_usd: string;
|
|
1159
1159
|
|
|
1160
1160
|
/**
|
|
1161
|
-
* Number of units
|
|
1162
|
-
*
|
|
1163
|
-
*
|
|
1161
|
+
* Number of billable units in the estimate. The unit depends on the endpoint:
|
|
1162
|
+
* samples for structure-and-binding, molecules for ADME, and requested proteins or
|
|
1163
|
+
* molecules for design/screen endpoints.
|
|
1164
1164
|
*/
|
|
1165
1165
|
num_units: number;
|
|
1166
1166
|
}
|
|
@@ -1286,7 +1286,7 @@ export namespace StructureAndBindingStartResponse {
|
|
|
1286
1286
|
model_options?: Input.ModelOptions;
|
|
1287
1287
|
|
|
1288
1288
|
/**
|
|
1289
|
-
* Number of structure samples to generate
|
|
1289
|
+
* Number of structure samples to generate (1-10)
|
|
1290
1290
|
*/
|
|
1291
1291
|
num_samples?: number;
|
|
1292
1292
|
|
|
@@ -2124,7 +2124,7 @@ export namespace StructureAndBindingEstimateCostParams {
|
|
|
2124
2124
|
model_options?: Input.ModelOptions;
|
|
2125
2125
|
|
|
2126
2126
|
/**
|
|
2127
|
-
* Number of structure samples to generate
|
|
2127
|
+
* Number of structure samples to generate (1-10)
|
|
2128
2128
|
*/
|
|
2129
2129
|
num_samples?: number;
|
|
2130
2130
|
|
|
@@ -2749,7 +2749,7 @@ export namespace StructureAndBindingStartParams {
|
|
|
2749
2749
|
model_options?: Input.ModelOptions;
|
|
2750
2750
|
|
|
2751
2751
|
/**
|
|
2752
|
-
* Number of structure samples to generate
|
|
2752
|
+
* Number of structure samples to generate (1-10)
|
|
2753
2753
|
*/
|
|
2754
2754
|
num_samples?: number;
|
|
2755
2755
|
|
|
@@ -1638,9 +1638,9 @@ export namespace DesignEstimateCostResponse {
|
|
|
1638
1638
|
cost_per_unit_usd: string;
|
|
1639
1639
|
|
|
1640
1640
|
/**
|
|
1641
|
-
* Number of units
|
|
1642
|
-
*
|
|
1643
|
-
*
|
|
1641
|
+
* Number of billable units in the estimate. The unit depends on the endpoint:
|
|
1642
|
+
* samples for structure-and-binding, molecules for ADME, and requested proteins or
|
|
1643
|
+
* molecules for design/screen endpoints.
|
|
1644
1644
|
*/
|
|
1645
1645
|
num_units: number;
|
|
1646
1646
|
}
|
|
@@ -1019,9 +1019,9 @@ export namespace LibraryScreenEstimateCostResponse {
|
|
|
1019
1019
|
cost_per_unit_usd: string;
|
|
1020
1020
|
|
|
1021
1021
|
/**
|
|
1022
|
-
* Number of units
|
|
1023
|
-
*
|
|
1024
|
-
*
|
|
1022
|
+
* Number of billable units in the estimate. The unit depends on the endpoint:
|
|
1023
|
+
* samples for structure-and-binding, molecules for ADME, and requested proteins or
|
|
1024
|
+
* molecules for design/screen endpoints.
|
|
1025
1025
|
*/
|
|
1026
1026
|
num_units: number;
|
|
1027
1027
|
}
|
|
@@ -1116,9 +1116,9 @@ export namespace DesignEstimateCostResponse {
|
|
|
1116
1116
|
cost_per_unit_usd: string;
|
|
1117
1117
|
|
|
1118
1118
|
/**
|
|
1119
|
-
* Number of units
|
|
1120
|
-
*
|
|
1121
|
-
*
|
|
1119
|
+
* Number of billable units in the estimate. The unit depends on the endpoint:
|
|
1120
|
+
* samples for structure-and-binding, molecules for ADME, and requested proteins or
|
|
1121
|
+
* molecules for design/screen endpoints.
|
|
1122
1122
|
*/
|
|
1123
1123
|
num_units: number;
|
|
1124
1124
|
}
|
|
@@ -1150,9 +1150,9 @@ export namespace LibraryScreenEstimateCostResponse {
|
|
|
1150
1150
|
cost_per_unit_usd: string;
|
|
1151
1151
|
|
|
1152
1152
|
/**
|
|
1153
|
-
* Number of units
|
|
1154
|
-
*
|
|
1155
|
-
*
|
|
1153
|
+
* Number of billable units in the estimate. The unit depends on the endpoint:
|
|
1154
|
+
* samples for structure-and-binding, molecules for ADME, and requested proteins or
|
|
1155
|
+
* molecules for design/screen endpoints.
|
|
1156
1156
|
*/
|
|
1157
1157
|
num_units: number;
|
|
1158
1158
|
}
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.46.
|
|
1
|
+
export const VERSION = '0.46.1'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.46.
|
|
1
|
+
export declare const VERSION = "0.46.1";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.46.
|
|
1
|
+
export declare const VERSION = "0.46.1";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.46.
|
|
1
|
+
export const VERSION = '0.46.1'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|