boltz-api 0.45.1 → 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 +17 -0
- package/package.json +1 -1
- package/resources/predictions/adme.d.mts +94 -4
- package/resources/predictions/adme.d.mts.map +1 -1
- package/resources/predictions/adme.d.ts +94 -4
- package/resources/predictions/adme.d.ts.map +1 -1
- package/resources/predictions/adme.js +17 -0
- package/resources/predictions/adme.js.map +1 -1
- package/resources/predictions/adme.mjs +17 -0
- package/resources/predictions/adme.mjs.map +1 -1
- package/resources/predictions/index.d.mts +1 -1
- package/resources/predictions/index.d.mts.map +1 -1
- package/resources/predictions/index.d.ts +1 -1
- package/resources/predictions/index.d.ts.map +1 -1
- package/resources/predictions/index.js.map +1 -1
- package/resources/predictions/index.mjs.map +1 -1
- package/resources/predictions/predictions.d.mts +2 -2
- package/resources/predictions/predictions.d.mts.map +1 -1
- package/resources/predictions/predictions.d.ts +2 -2
- package/resources/predictions/predictions.d.ts.map +1 -1
- package/resources/predictions/predictions.js.map +1 -1
- package/resources/predictions/predictions.mjs.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 +118 -3
- package/src/resources/predictions/index.ts +2 -0
- package/src/resources/predictions/predictions.ts +4 -0
- 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,22 @@
|
|
|
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
|
+
|
|
12
|
+
## 0.46.0 (2026-06-15)
|
|
13
|
+
|
|
14
|
+
Full Changelog: [v0.45.1...v0.46.0](https://github.com/boltz-bio/boltz-api-typescript/compare/v0.45.1...v0.46.0)
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
* **compute-api:** add ADME estimate-cost endpoint ([a22380e](https://github.com/boltz-bio/boltz-api-typescript/commit/a22380e0752f502aeb4ee13af525501154f66cb2))
|
|
19
|
+
|
|
3
20
|
## 0.45.1 (2026-06-15)
|
|
4
21
|
|
|
5
22
|
Full Changelog: [v0.45.0...v0.45.1](https://github.com/boltz-bio/boltz-api-typescript/compare/v0.45.0...v0.45.1)
|
package/package.json
CHANGED
|
@@ -40,6 +40,21 @@ export declare class Adme extends APIResource {
|
|
|
40
40
|
* ```
|
|
41
41
|
*/
|
|
42
42
|
deleteData(id: string, options?: RequestOptions): APIPromise<AdmeDeleteDataResponse>;
|
|
43
|
+
/**
|
|
44
|
+
* Estimate the cost of an ADME prediction without creating any resource or
|
|
45
|
+
* consuming GPU.
|
|
46
|
+
*
|
|
47
|
+
* @example
|
|
48
|
+
* ```ts
|
|
49
|
+
* const response = await client.predictions.adme.estimateCost(
|
|
50
|
+
* {
|
|
51
|
+
* input: { molecules: [{ smiles: 'x' }] },
|
|
52
|
+
* model: 'adme-v1',
|
|
53
|
+
* },
|
|
54
|
+
* );
|
|
55
|
+
* ```
|
|
56
|
+
*/
|
|
57
|
+
estimateCost(body: AdmeEstimateCostParams, options?: RequestOptions): APIPromise<AdmeEstimateCostResponse>;
|
|
43
58
|
/**
|
|
44
59
|
* Submit a prediction job that returns Tier 1 ADME summary values for each
|
|
45
60
|
* requested molecule.
|
|
@@ -129,7 +144,8 @@ export declare namespace AdmeRetrieveResponse {
|
|
|
129
144
|
*/
|
|
130
145
|
interface Input {
|
|
131
146
|
/**
|
|
132
|
-
* 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.
|
|
133
149
|
*/
|
|
134
150
|
molecules: Array<Input.Molecule>;
|
|
135
151
|
}
|
|
@@ -305,6 +321,41 @@ export interface AdmeDeleteDataResponse {
|
|
|
305
321
|
*/
|
|
306
322
|
data_deleted_at: string;
|
|
307
323
|
}
|
|
324
|
+
/**
|
|
325
|
+
* Estimate response with monetary values encoded as decimal strings to preserve
|
|
326
|
+
* precision.
|
|
327
|
+
*/
|
|
328
|
+
export interface AdmeEstimateCostResponse {
|
|
329
|
+
/**
|
|
330
|
+
* Cost breakdown for the billed application.
|
|
331
|
+
*/
|
|
332
|
+
breakdown: AdmeEstimateCostResponse.Breakdown;
|
|
333
|
+
disclaimer: string;
|
|
334
|
+
/**
|
|
335
|
+
* Estimated total cost as a decimal string
|
|
336
|
+
*/
|
|
337
|
+
estimated_cost_usd: string;
|
|
338
|
+
}
|
|
339
|
+
export declare namespace AdmeEstimateCostResponse {
|
|
340
|
+
/**
|
|
341
|
+
* Cost breakdown for the billed application.
|
|
342
|
+
*/
|
|
343
|
+
interface Breakdown {
|
|
344
|
+
application: 'structure_and_binding' | 'small_molecule_design' | 'small_molecule_library_screen' | 'protein_design' | 'protein_redesign' | 'protein_library_screen' | 'adme';
|
|
345
|
+
/**
|
|
346
|
+
* Estimated cost per displayed unit as a decimal string, rounded up to 4 decimal
|
|
347
|
+
* places. This may include token-size multipliers or generation overhead;
|
|
348
|
+
* estimated_cost_usd is the authoritative total.
|
|
349
|
+
*/
|
|
350
|
+
cost_per_unit_usd: string;
|
|
351
|
+
/**
|
|
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.
|
|
355
|
+
*/
|
|
356
|
+
num_units: number;
|
|
357
|
+
}
|
|
358
|
+
}
|
|
308
359
|
export interface AdmeStartResponse {
|
|
309
360
|
/**
|
|
310
361
|
* Unique prediction identifier
|
|
@@ -379,7 +430,8 @@ export declare namespace AdmeStartResponse {
|
|
|
379
430
|
*/
|
|
380
431
|
interface Input {
|
|
381
432
|
/**
|
|
382
|
-
* 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.
|
|
383
435
|
*/
|
|
384
436
|
molecules: Array<Input.Molecule>;
|
|
385
437
|
}
|
|
@@ -497,6 +549,43 @@ export interface AdmeListParams extends CursorPageParams {
|
|
|
497
549
|
*/
|
|
498
550
|
workspace_id?: string;
|
|
499
551
|
}
|
|
552
|
+
export interface AdmeEstimateCostParams {
|
|
553
|
+
input: AdmeEstimateCostParams.Input;
|
|
554
|
+
/**
|
|
555
|
+
* Model to use for prediction
|
|
556
|
+
*/
|
|
557
|
+
model: 'adme-v1';
|
|
558
|
+
/**
|
|
559
|
+
* Client-provided key to prevent duplicate submissions on retries
|
|
560
|
+
*/
|
|
561
|
+
idempotency_key?: string;
|
|
562
|
+
/**
|
|
563
|
+
* Target workspace ID (admin keys only; ignored for workspace keys)
|
|
564
|
+
*/
|
|
565
|
+
workspace_id?: string;
|
|
566
|
+
}
|
|
567
|
+
export declare namespace AdmeEstimateCostParams {
|
|
568
|
+
interface Input {
|
|
569
|
+
/**
|
|
570
|
+
* Molecules to score (1-128 per request). Results are returned in the same order
|
|
571
|
+
* as this list.
|
|
572
|
+
*/
|
|
573
|
+
molecules: Array<Input.Molecule>;
|
|
574
|
+
}
|
|
575
|
+
namespace Input {
|
|
576
|
+
interface Molecule {
|
|
577
|
+
/**
|
|
578
|
+
* SMILES string of the molecule to predict ADME properties for.
|
|
579
|
+
*/
|
|
580
|
+
smiles: string;
|
|
581
|
+
/**
|
|
582
|
+
* Optional client-provided identifier. Returned as `external_id` in the matching
|
|
583
|
+
* output item.
|
|
584
|
+
*/
|
|
585
|
+
id?: string;
|
|
586
|
+
}
|
|
587
|
+
}
|
|
588
|
+
}
|
|
500
589
|
export interface AdmeStartParams {
|
|
501
590
|
input: AdmeStartParams.Input;
|
|
502
591
|
/**
|
|
@@ -515,7 +604,8 @@ export interface AdmeStartParams {
|
|
|
515
604
|
export declare namespace AdmeStartParams {
|
|
516
605
|
interface Input {
|
|
517
606
|
/**
|
|
518
|
-
* 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.
|
|
519
609
|
*/
|
|
520
610
|
molecules: Array<Input.Molecule>;
|
|
521
611
|
}
|
|
@@ -534,6 +624,6 @@ export declare namespace AdmeStartParams {
|
|
|
534
624
|
}
|
|
535
625
|
}
|
|
536
626
|
export declare namespace Adme {
|
|
537
|
-
export { type AdmeRetrieveResponse as AdmeRetrieveResponse, type AdmeListResponse as AdmeListResponse, type AdmeDeleteDataResponse as AdmeDeleteDataResponse, type AdmeStartResponse as AdmeStartResponse, type AdmeListResponsesCursorPage as AdmeListResponsesCursorPage, type AdmeRetrieveParams as AdmeRetrieveParams, type AdmeListParams as AdmeListParams, type AdmeStartParams as AdmeStartParams, };
|
|
627
|
+
export { type AdmeRetrieveResponse as AdmeRetrieveResponse, type AdmeListResponse as AdmeListResponse, type AdmeDeleteDataResponse as AdmeDeleteDataResponse, type AdmeEstimateCostResponse as AdmeEstimateCostResponse, type AdmeStartResponse as AdmeStartResponse, type AdmeListResponsesCursorPage as AdmeListResponsesCursorPage, type AdmeRetrieveParams as AdmeRetrieveParams, type AdmeListParams as AdmeListParams, type AdmeEstimateCostParams as AdmeEstimateCostParams, type AdmeStartParams as AdmeStartParams, };
|
|
538
628
|
}
|
|
539
629
|
//# sourceMappingURL=adme.d.mts.map
|
|
@@ -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;;;;;;;;;;;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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"}
|
|
@@ -40,6 +40,21 @@ export declare class Adme extends APIResource {
|
|
|
40
40
|
* ```
|
|
41
41
|
*/
|
|
42
42
|
deleteData(id: string, options?: RequestOptions): APIPromise<AdmeDeleteDataResponse>;
|
|
43
|
+
/**
|
|
44
|
+
* Estimate the cost of an ADME prediction without creating any resource or
|
|
45
|
+
* consuming GPU.
|
|
46
|
+
*
|
|
47
|
+
* @example
|
|
48
|
+
* ```ts
|
|
49
|
+
* const response = await client.predictions.adme.estimateCost(
|
|
50
|
+
* {
|
|
51
|
+
* input: { molecules: [{ smiles: 'x' }] },
|
|
52
|
+
* model: 'adme-v1',
|
|
53
|
+
* },
|
|
54
|
+
* );
|
|
55
|
+
* ```
|
|
56
|
+
*/
|
|
57
|
+
estimateCost(body: AdmeEstimateCostParams, options?: RequestOptions): APIPromise<AdmeEstimateCostResponse>;
|
|
43
58
|
/**
|
|
44
59
|
* Submit a prediction job that returns Tier 1 ADME summary values for each
|
|
45
60
|
* requested molecule.
|
|
@@ -129,7 +144,8 @@ export declare namespace AdmeRetrieveResponse {
|
|
|
129
144
|
*/
|
|
130
145
|
interface Input {
|
|
131
146
|
/**
|
|
132
|
-
* 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.
|
|
133
149
|
*/
|
|
134
150
|
molecules: Array<Input.Molecule>;
|
|
135
151
|
}
|
|
@@ -305,6 +321,41 @@ export interface AdmeDeleteDataResponse {
|
|
|
305
321
|
*/
|
|
306
322
|
data_deleted_at: string;
|
|
307
323
|
}
|
|
324
|
+
/**
|
|
325
|
+
* Estimate response with monetary values encoded as decimal strings to preserve
|
|
326
|
+
* precision.
|
|
327
|
+
*/
|
|
328
|
+
export interface AdmeEstimateCostResponse {
|
|
329
|
+
/**
|
|
330
|
+
* Cost breakdown for the billed application.
|
|
331
|
+
*/
|
|
332
|
+
breakdown: AdmeEstimateCostResponse.Breakdown;
|
|
333
|
+
disclaimer: string;
|
|
334
|
+
/**
|
|
335
|
+
* Estimated total cost as a decimal string
|
|
336
|
+
*/
|
|
337
|
+
estimated_cost_usd: string;
|
|
338
|
+
}
|
|
339
|
+
export declare namespace AdmeEstimateCostResponse {
|
|
340
|
+
/**
|
|
341
|
+
* Cost breakdown for the billed application.
|
|
342
|
+
*/
|
|
343
|
+
interface Breakdown {
|
|
344
|
+
application: 'structure_and_binding' | 'small_molecule_design' | 'small_molecule_library_screen' | 'protein_design' | 'protein_redesign' | 'protein_library_screen' | 'adme';
|
|
345
|
+
/**
|
|
346
|
+
* Estimated cost per displayed unit as a decimal string, rounded up to 4 decimal
|
|
347
|
+
* places. This may include token-size multipliers or generation overhead;
|
|
348
|
+
* estimated_cost_usd is the authoritative total.
|
|
349
|
+
*/
|
|
350
|
+
cost_per_unit_usd: string;
|
|
351
|
+
/**
|
|
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.
|
|
355
|
+
*/
|
|
356
|
+
num_units: number;
|
|
357
|
+
}
|
|
358
|
+
}
|
|
308
359
|
export interface AdmeStartResponse {
|
|
309
360
|
/**
|
|
310
361
|
* Unique prediction identifier
|
|
@@ -379,7 +430,8 @@ export declare namespace AdmeStartResponse {
|
|
|
379
430
|
*/
|
|
380
431
|
interface Input {
|
|
381
432
|
/**
|
|
382
|
-
* 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.
|
|
383
435
|
*/
|
|
384
436
|
molecules: Array<Input.Molecule>;
|
|
385
437
|
}
|
|
@@ -497,6 +549,43 @@ export interface AdmeListParams extends CursorPageParams {
|
|
|
497
549
|
*/
|
|
498
550
|
workspace_id?: string;
|
|
499
551
|
}
|
|
552
|
+
export interface AdmeEstimateCostParams {
|
|
553
|
+
input: AdmeEstimateCostParams.Input;
|
|
554
|
+
/**
|
|
555
|
+
* Model to use for prediction
|
|
556
|
+
*/
|
|
557
|
+
model: 'adme-v1';
|
|
558
|
+
/**
|
|
559
|
+
* Client-provided key to prevent duplicate submissions on retries
|
|
560
|
+
*/
|
|
561
|
+
idempotency_key?: string;
|
|
562
|
+
/**
|
|
563
|
+
* Target workspace ID (admin keys only; ignored for workspace keys)
|
|
564
|
+
*/
|
|
565
|
+
workspace_id?: string;
|
|
566
|
+
}
|
|
567
|
+
export declare namespace AdmeEstimateCostParams {
|
|
568
|
+
interface Input {
|
|
569
|
+
/**
|
|
570
|
+
* Molecules to score (1-128 per request). Results are returned in the same order
|
|
571
|
+
* as this list.
|
|
572
|
+
*/
|
|
573
|
+
molecules: Array<Input.Molecule>;
|
|
574
|
+
}
|
|
575
|
+
namespace Input {
|
|
576
|
+
interface Molecule {
|
|
577
|
+
/**
|
|
578
|
+
* SMILES string of the molecule to predict ADME properties for.
|
|
579
|
+
*/
|
|
580
|
+
smiles: string;
|
|
581
|
+
/**
|
|
582
|
+
* Optional client-provided identifier. Returned as `external_id` in the matching
|
|
583
|
+
* output item.
|
|
584
|
+
*/
|
|
585
|
+
id?: string;
|
|
586
|
+
}
|
|
587
|
+
}
|
|
588
|
+
}
|
|
500
589
|
export interface AdmeStartParams {
|
|
501
590
|
input: AdmeStartParams.Input;
|
|
502
591
|
/**
|
|
@@ -515,7 +604,8 @@ export interface AdmeStartParams {
|
|
|
515
604
|
export declare namespace AdmeStartParams {
|
|
516
605
|
interface Input {
|
|
517
606
|
/**
|
|
518
|
-
* 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.
|
|
519
609
|
*/
|
|
520
610
|
molecules: Array<Input.Molecule>;
|
|
521
611
|
}
|
|
@@ -534,6 +624,6 @@ export declare namespace AdmeStartParams {
|
|
|
534
624
|
}
|
|
535
625
|
}
|
|
536
626
|
export declare namespace Adme {
|
|
537
|
-
export { type AdmeRetrieveResponse as AdmeRetrieveResponse, type AdmeListResponse as AdmeListResponse, type AdmeDeleteDataResponse as AdmeDeleteDataResponse, type AdmeStartResponse as AdmeStartResponse, type AdmeListResponsesCursorPage as AdmeListResponsesCursorPage, type AdmeRetrieveParams as AdmeRetrieveParams, type AdmeListParams as AdmeListParams, type AdmeStartParams as AdmeStartParams, };
|
|
627
|
+
export { type AdmeRetrieveResponse as AdmeRetrieveResponse, type AdmeListResponse as AdmeListResponse, type AdmeDeleteDataResponse as AdmeDeleteDataResponse, type AdmeEstimateCostResponse as AdmeEstimateCostResponse, type AdmeStartResponse as AdmeStartResponse, type AdmeListResponsesCursorPage as AdmeListResponsesCursorPage, type AdmeRetrieveParams as AdmeRetrieveParams, type AdmeListParams as AdmeListParams, type AdmeEstimateCostParams as AdmeEstimateCostParams, type AdmeStartParams as AdmeStartParams, };
|
|
538
628
|
}
|
|
539
629
|
//# sourceMappingURL=adme.d.ts.map
|
|
@@ -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;;;;;;;;;;;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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"}
|
|
@@ -52,6 +52,23 @@ class Adme extends resource_1.APIResource {
|
|
|
52
52
|
deleteData(id, options) {
|
|
53
53
|
return this._client.post((0, path_1.path) `/compute/v1/predictions/adme/${id}/delete-data`, options);
|
|
54
54
|
}
|
|
55
|
+
/**
|
|
56
|
+
* Estimate the cost of an ADME prediction without creating any resource or
|
|
57
|
+
* consuming GPU.
|
|
58
|
+
*
|
|
59
|
+
* @example
|
|
60
|
+
* ```ts
|
|
61
|
+
* const response = await client.predictions.adme.estimateCost(
|
|
62
|
+
* {
|
|
63
|
+
* input: { molecules: [{ smiles: 'x' }] },
|
|
64
|
+
* model: 'adme-v1',
|
|
65
|
+
* },
|
|
66
|
+
* );
|
|
67
|
+
* ```
|
|
68
|
+
*/
|
|
69
|
+
estimateCost(body, options) {
|
|
70
|
+
return this._client.post('/compute/v1/predictions/adme/estimate-cost', { body, ...options });
|
|
71
|
+
}
|
|
55
72
|
/**
|
|
56
73
|
* Submit a prediction job that returns Tier 1 ADME summary values for each
|
|
57
74
|
* requested molecule.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"adme.js","sourceRoot":"","sources":["../../src/resources/predictions/adme.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,qDAAkD;AAElD,yDAAuF;AAEvF,uDAAiD;AAEjD;;GAEG;AACH,MAAa,IAAK,SAAQ,sBAAW;IACnC;;;;;;;OAOG;IACH,QAAQ,CACN,EAAU,EACV,QAA+C,EAAE,EACjD,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAA,WAAI,EAAA,gCAAgC,EAAE,EAAE,EAAE,EAAE,KAAK,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAC3F,CAAC;IAED;;;;;;;;;;OAUG;IACH,IAAI,CACF,QAA2C,EAAE,EAC7C,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,8BAA8B,EAAE,CAAA,uBAA4B,CAAA,EAAE;YAC3F,KAAK;YACL,GAAG,OAAO;SACX,CAAC,CAAC;IACL,CAAC;IAED;;;;;;;;;;;OAWG;IACH,UAAU,CAAC,EAAU,EAAE,OAAwB;QAC7C,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAA,WAAI,EAAA,gCAAgC,EAAE,cAAc,EAAE,OAAO,CAAC,CAAC;IAC1F,CAAC;IAED;;;;;;;;;;;OAWG;IACH,KAAK,CAAC,IAAqB,EAAE,OAAwB;QACnD,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,8BAA8B,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACjF,CAAC;CACF;
|
|
1
|
+
{"version":3,"file":"adme.js","sourceRoot":"","sources":["../../src/resources/predictions/adme.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,qDAAkD;AAElD,yDAAuF;AAEvF,uDAAiD;AAEjD;;GAEG;AACH,MAAa,IAAK,SAAQ,sBAAW;IACnC;;;;;;;OAOG;IACH,QAAQ,CACN,EAAU,EACV,QAA+C,EAAE,EACjD,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAA,WAAI,EAAA,gCAAgC,EAAE,EAAE,EAAE,EAAE,KAAK,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAC3F,CAAC;IAED;;;;;;;;;;OAUG;IACH,IAAI,CACF,QAA2C,EAAE,EAC7C,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,8BAA8B,EAAE,CAAA,uBAA4B,CAAA,EAAE;YAC3F,KAAK;YACL,GAAG,OAAO;SACX,CAAC,CAAC;IACL,CAAC;IAED;;;;;;;;;;;OAWG;IACH,UAAU,CAAC,EAAU,EAAE,OAAwB;QAC7C,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAA,WAAI,EAAA,gCAAgC,EAAE,cAAc,EAAE,OAAO,CAAC,CAAC;IAC1F,CAAC;IAED;;;;;;;;;;;;;OAaG;IACH,YAAY,CAAC,IAA4B,EAAE,OAAwB;QACjE,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,4CAA4C,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAC/F,CAAC;IAED;;;;;;;;;;;OAWG;IACH,KAAK,CAAC,IAAqB,EAAE,OAAwB;QACnD,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,8BAA8B,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACjF,CAAC;CACF;AAvFD,oBAuFC"}
|
|
@@ -49,6 +49,23 @@ export class Adme extends APIResource {
|
|
|
49
49
|
deleteData(id, options) {
|
|
50
50
|
return this._client.post(path `/compute/v1/predictions/adme/${id}/delete-data`, options);
|
|
51
51
|
}
|
|
52
|
+
/**
|
|
53
|
+
* Estimate the cost of an ADME prediction without creating any resource or
|
|
54
|
+
* consuming GPU.
|
|
55
|
+
*
|
|
56
|
+
* @example
|
|
57
|
+
* ```ts
|
|
58
|
+
* const response = await client.predictions.adme.estimateCost(
|
|
59
|
+
* {
|
|
60
|
+
* input: { molecules: [{ smiles: 'x' }] },
|
|
61
|
+
* model: 'adme-v1',
|
|
62
|
+
* },
|
|
63
|
+
* );
|
|
64
|
+
* ```
|
|
65
|
+
*/
|
|
66
|
+
estimateCost(body, options) {
|
|
67
|
+
return this._client.post('/compute/v1/predictions/adme/estimate-cost', { body, ...options });
|
|
68
|
+
}
|
|
52
69
|
/**
|
|
53
70
|
* Submit a prediction job that returns Tier 1 ADME summary values for each
|
|
54
71
|
* requested molecule.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"adme.mjs","sourceRoot":"","sources":["../../src/resources/predictions/adme.ts"],"names":[],"mappings":"AAAA,sFAAsF;AAEtF,OAAO,EAAE,WAAW,EAAE,gCAA4B;AAElD,OAAO,EAAE,UAAU,EAAsC,kCAA8B;AAEvF,OAAO,EAAE,IAAI,EAAE,sCAAkC;AAEjD;;GAEG;AACH,MAAM,OAAO,IAAK,SAAQ,WAAW;IACnC;;;;;;;OAOG;IACH,QAAQ,CACN,EAAU,EACV,QAA+C,EAAE,EACjD,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAA,gCAAgC,EAAE,EAAE,EAAE,EAAE,KAAK,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAC3F,CAAC;IAED;;;;;;;;;;OAUG;IACH,IAAI,CACF,QAA2C,EAAE,EAC7C,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,8BAA8B,EAAE,CAAA,UAA4B,CAAA,EAAE;YAC3F,KAAK;YACL,GAAG,OAAO;SACX,CAAC,CAAC;IACL,CAAC;IAED;;;;;;;;;;;OAWG;IACH,UAAU,CAAC,EAAU,EAAE,OAAwB;QAC7C,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAA,gCAAgC,EAAE,cAAc,EAAE,OAAO,CAAC,CAAC;IAC1F,CAAC;IAED;;;;;;;;;;;OAWG;IACH,KAAK,CAAC,IAAqB,EAAE,OAAwB;QACnD,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,8BAA8B,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACjF,CAAC;CACF"}
|
|
1
|
+
{"version":3,"file":"adme.mjs","sourceRoot":"","sources":["../../src/resources/predictions/adme.ts"],"names":[],"mappings":"AAAA,sFAAsF;AAEtF,OAAO,EAAE,WAAW,EAAE,gCAA4B;AAElD,OAAO,EAAE,UAAU,EAAsC,kCAA8B;AAEvF,OAAO,EAAE,IAAI,EAAE,sCAAkC;AAEjD;;GAEG;AACH,MAAM,OAAO,IAAK,SAAQ,WAAW;IACnC;;;;;;;OAOG;IACH,QAAQ,CACN,EAAU,EACV,QAA+C,EAAE,EACjD,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAA,gCAAgC,EAAE,EAAE,EAAE,EAAE,KAAK,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAC3F,CAAC;IAED;;;;;;;;;;OAUG;IACH,IAAI,CACF,QAA2C,EAAE,EAC7C,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,8BAA8B,EAAE,CAAA,UAA4B,CAAA,EAAE;YAC3F,KAAK;YACL,GAAG,OAAO;SACX,CAAC,CAAC;IACL,CAAC;IAED;;;;;;;;;;;OAWG;IACH,UAAU,CAAC,EAAU,EAAE,OAAwB;QAC7C,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAA,gCAAgC,EAAE,cAAc,EAAE,OAAO,CAAC,CAAC;IAC1F,CAAC;IAED;;;;;;;;;;;;;OAaG;IACH,YAAY,CAAC,IAA4B,EAAE,OAAwB;QACjE,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,4CAA4C,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAC/F,CAAC;IAED;;;;;;;;;;;OAWG;IACH,KAAK,CAAC,IAAqB,EAAE,OAAwB;QACnD,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,8BAA8B,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACjF,CAAC;CACF"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { Adme, type AdmeRetrieveResponse, type AdmeListResponse, type AdmeDeleteDataResponse, type AdmeStartResponse, type AdmeRetrieveParams, type AdmeListParams, type AdmeStartParams, type AdmeListResponsesCursorPage, } from "./adme.mjs";
|
|
1
|
+
export { Adme, type AdmeRetrieveResponse, type AdmeListResponse, type AdmeDeleteDataResponse, type AdmeEstimateCostResponse, type AdmeStartResponse, type AdmeRetrieveParams, type AdmeListParams, type AdmeEstimateCostParams, type AdmeStartParams, type AdmeListResponsesCursorPage, } from "./adme.mjs";
|
|
2
2
|
export { Predictions } from "./predictions.mjs";
|
|
3
3
|
export { StructureAndBinding, type StructureAndBindingRetrieveResponse, type StructureAndBindingListResponse, type StructureAndBindingDeleteDataResponse, type StructureAndBindingEstimateCostResponse, type StructureAndBindingStartResponse, type StructureAndBindingRetrieveParams, type StructureAndBindingListParams, type StructureAndBindingEstimateCostParams, type StructureAndBindingStartParams, type StructureAndBindingListResponsesCursorPage, } from "./structure-and-binding.mjs";
|
|
4
4
|
//# sourceMappingURL=index.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.mts","sourceRoot":"","sources":["../../src/resources/predictions/index.ts"],"names":[],"mappings":"AAEA,OAAO,EACL,IAAI,EACJ,KAAK,oBAAoB,EACzB,KAAK,gBAAgB,EACrB,KAAK,sBAAsB,EAC3B,KAAK,iBAAiB,EACtB,KAAK,kBAAkB,EACvB,KAAK,cAAc,EACnB,KAAK,eAAe,EACpB,KAAK,2BAA2B,GACjC,mBAAe;AAChB,OAAO,EAAE,WAAW,EAAE,0BAAsB;AAC5C,OAAO,EACL,mBAAmB,EACnB,KAAK,mCAAmC,EACxC,KAAK,+BAA+B,EACpC,KAAK,qCAAqC,EAC1C,KAAK,uCAAuC,EAC5C,KAAK,gCAAgC,EACrC,KAAK,iCAAiC,EACtC,KAAK,6BAA6B,EAClC,KAAK,qCAAqC,EAC1C,KAAK,8BAA8B,EACnC,KAAK,0CAA0C,GAChD,oCAAgC"}
|
|
1
|
+
{"version":3,"file":"index.d.mts","sourceRoot":"","sources":["../../src/resources/predictions/index.ts"],"names":[],"mappings":"AAEA,OAAO,EACL,IAAI,EACJ,KAAK,oBAAoB,EACzB,KAAK,gBAAgB,EACrB,KAAK,sBAAsB,EAC3B,KAAK,wBAAwB,EAC7B,KAAK,iBAAiB,EACtB,KAAK,kBAAkB,EACvB,KAAK,cAAc,EACnB,KAAK,sBAAsB,EAC3B,KAAK,eAAe,EACpB,KAAK,2BAA2B,GACjC,mBAAe;AAChB,OAAO,EAAE,WAAW,EAAE,0BAAsB;AAC5C,OAAO,EACL,mBAAmB,EACnB,KAAK,mCAAmC,EACxC,KAAK,+BAA+B,EACpC,KAAK,qCAAqC,EAC1C,KAAK,uCAAuC,EAC5C,KAAK,gCAAgC,EACrC,KAAK,iCAAiC,EACtC,KAAK,6BAA6B,EAClC,KAAK,qCAAqC,EAC1C,KAAK,8BAA8B,EACnC,KAAK,0CAA0C,GAChD,oCAAgC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { Adme, type AdmeRetrieveResponse, type AdmeListResponse, type AdmeDeleteDataResponse, type AdmeStartResponse, type AdmeRetrieveParams, type AdmeListParams, type AdmeStartParams, type AdmeListResponsesCursorPage, } from "./adme.js";
|
|
1
|
+
export { Adme, type AdmeRetrieveResponse, type AdmeListResponse, type AdmeDeleteDataResponse, type AdmeEstimateCostResponse, type AdmeStartResponse, type AdmeRetrieveParams, type AdmeListParams, type AdmeEstimateCostParams, type AdmeStartParams, type AdmeListResponsesCursorPage, } from "./adme.js";
|
|
2
2
|
export { Predictions } from "./predictions.js";
|
|
3
3
|
export { StructureAndBinding, type StructureAndBindingRetrieveResponse, type StructureAndBindingListResponse, type StructureAndBindingDeleteDataResponse, type StructureAndBindingEstimateCostResponse, type StructureAndBindingStartResponse, type StructureAndBindingRetrieveParams, type StructureAndBindingListParams, type StructureAndBindingEstimateCostParams, type StructureAndBindingStartParams, type StructureAndBindingListResponsesCursorPage, } from "./structure-and-binding.js";
|
|
4
4
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/resources/predictions/index.ts"],"names":[],"mappings":"AAEA,OAAO,EACL,IAAI,EACJ,KAAK,oBAAoB,EACzB,KAAK,gBAAgB,EACrB,KAAK,sBAAsB,EAC3B,KAAK,iBAAiB,EACtB,KAAK,kBAAkB,EACvB,KAAK,cAAc,EACnB,KAAK,eAAe,EACpB,KAAK,2BAA2B,GACjC,kBAAe;AAChB,OAAO,EAAE,WAAW,EAAE,yBAAsB;AAC5C,OAAO,EACL,mBAAmB,EACnB,KAAK,mCAAmC,EACxC,KAAK,+BAA+B,EACpC,KAAK,qCAAqC,EAC1C,KAAK,uCAAuC,EAC5C,KAAK,gCAAgC,EACrC,KAAK,iCAAiC,EACtC,KAAK,6BAA6B,EAClC,KAAK,qCAAqC,EAC1C,KAAK,8BAA8B,EACnC,KAAK,0CAA0C,GAChD,mCAAgC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/resources/predictions/index.ts"],"names":[],"mappings":"AAEA,OAAO,EACL,IAAI,EACJ,KAAK,oBAAoB,EACzB,KAAK,gBAAgB,EACrB,KAAK,sBAAsB,EAC3B,KAAK,wBAAwB,EAC7B,KAAK,iBAAiB,EACtB,KAAK,kBAAkB,EACvB,KAAK,cAAc,EACnB,KAAK,sBAAsB,EAC3B,KAAK,eAAe,EACpB,KAAK,2BAA2B,GACjC,kBAAe;AAChB,OAAO,EAAE,WAAW,EAAE,yBAAsB;AAC5C,OAAO,EACL,mBAAmB,EACnB,KAAK,mCAAmC,EACxC,KAAK,+BAA+B,EACpC,KAAK,qCAAqC,EAC1C,KAAK,uCAAuC,EAC5C,KAAK,gCAAgC,EACrC,KAAK,iCAAiC,EACtC,KAAK,6BAA6B,EAClC,KAAK,qCAAqC,EAC1C,KAAK,8BAA8B,EACnC,KAAK,0CAA0C,GAChD,mCAAgC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/resources/predictions/index.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/resources/predictions/index.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,kCAYgB;AAXd,4FAAA,IAAI,OAAA;AAYN,gDAA4C;AAAnC,0GAAA,WAAW,OAAA;AACpB,oEAYiC;AAX/B,4HAAA,mBAAmB,OAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","sourceRoot":"","sources":["../../src/resources/predictions/index.ts"],"names":[],"mappings":"AAAA,sFAAsF;AAEtF,OAAO,EACL,IAAI,
|
|
1
|
+
{"version":3,"file":"index.mjs","sourceRoot":"","sources":["../../src/resources/predictions/index.ts"],"names":[],"mappings":"AAAA,sFAAsF;AAEtF,OAAO,EACL,IAAI,GAWL,mBAAe;AAChB,OAAO,EAAE,WAAW,EAAE,0BAAsB;AAC5C,OAAO,EACL,mBAAmB,GAWpB,oCAAgC"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { APIResource } from "../../core/resource.mjs";
|
|
2
2
|
import * as AdmeAPI from "./adme.mjs";
|
|
3
|
-
import { Adme, AdmeDeleteDataResponse, AdmeListParams, AdmeListResponse, AdmeListResponsesCursorPage, AdmeRetrieveParams, AdmeRetrieveResponse, AdmeStartParams, AdmeStartResponse } from "./adme.mjs";
|
|
3
|
+
import { Adme, AdmeDeleteDataResponse, AdmeEstimateCostParams, AdmeEstimateCostResponse, AdmeListParams, AdmeListResponse, AdmeListResponsesCursorPage, AdmeRetrieveParams, AdmeRetrieveResponse, AdmeStartParams, AdmeStartResponse } from "./adme.mjs";
|
|
4
4
|
import * as StructureAndBindingAPI from "./structure-and-binding.mjs";
|
|
5
5
|
import { StructureAndBinding, StructureAndBindingDeleteDataResponse, StructureAndBindingEstimateCostParams, StructureAndBindingEstimateCostResponse, StructureAndBindingListParams, StructureAndBindingListResponse, StructureAndBindingListResponsesCursorPage, StructureAndBindingRetrieveParams, StructureAndBindingRetrieveResponse, StructureAndBindingStartParams, StructureAndBindingStartResponse } from "./structure-and-binding.mjs";
|
|
6
6
|
/**
|
|
@@ -12,6 +12,6 @@ export declare class Predictions extends APIResource {
|
|
|
12
12
|
}
|
|
13
13
|
export declare namespace Predictions {
|
|
14
14
|
export { StructureAndBinding as StructureAndBinding, type StructureAndBindingRetrieveResponse as StructureAndBindingRetrieveResponse, type StructureAndBindingListResponse as StructureAndBindingListResponse, type StructureAndBindingDeleteDataResponse as StructureAndBindingDeleteDataResponse, type StructureAndBindingEstimateCostResponse as StructureAndBindingEstimateCostResponse, type StructureAndBindingStartResponse as StructureAndBindingStartResponse, type StructureAndBindingListResponsesCursorPage as StructureAndBindingListResponsesCursorPage, type StructureAndBindingRetrieveParams as StructureAndBindingRetrieveParams, type StructureAndBindingListParams as StructureAndBindingListParams, type StructureAndBindingEstimateCostParams as StructureAndBindingEstimateCostParams, type StructureAndBindingStartParams as StructureAndBindingStartParams, };
|
|
15
|
-
export { Adme as Adme, type AdmeRetrieveResponse as AdmeRetrieveResponse, type AdmeListResponse as AdmeListResponse, type AdmeDeleteDataResponse as AdmeDeleteDataResponse, type AdmeStartResponse as AdmeStartResponse, type AdmeListResponsesCursorPage as AdmeListResponsesCursorPage, type AdmeRetrieveParams as AdmeRetrieveParams, type AdmeListParams as AdmeListParams, type AdmeStartParams as AdmeStartParams, };
|
|
15
|
+
export { Adme as Adme, type AdmeRetrieveResponse as AdmeRetrieveResponse, type AdmeListResponse as AdmeListResponse, type AdmeDeleteDataResponse as AdmeDeleteDataResponse, type AdmeEstimateCostResponse as AdmeEstimateCostResponse, type AdmeStartResponse as AdmeStartResponse, type AdmeListResponsesCursorPage as AdmeListResponsesCursorPage, type AdmeRetrieveParams as AdmeRetrieveParams, type AdmeListParams as AdmeListParams, type AdmeEstimateCostParams as AdmeEstimateCostParams, type AdmeStartParams as AdmeStartParams, };
|
|
16
16
|
}
|
|
17
17
|
//# sourceMappingURL=predictions.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"predictions.d.mts","sourceRoot":"","sources":["../../src/resources/predictions/predictions.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,gCAA4B;AAClD,OAAO,KAAK,OAAO,mBAAe;AAClC,OAAO,EACL,IAAI,EACJ,sBAAsB,EACtB,cAAc,EACd,gBAAgB,EAChB,2BAA2B,EAC3B,kBAAkB,EAClB,oBAAoB,EACpB,eAAe,EACf,iBAAiB,EAClB,mBAAe;AAChB,OAAO,KAAK,sBAAsB,oCAAgC;AAClE,OAAO,EACL,mBAAmB,EACnB,qCAAqC,EACrC,qCAAqC,EACrC,uCAAuC,EACvC,6BAA6B,EAC7B,+BAA+B,EAC/B,0CAA0C,EAC1C,iCAAiC,EACjC,mCAAmC,EACnC,8BAA8B,EAC9B,gCAAgC,EACjC,oCAAgC;AAEjC;;GAEG;AACH,qBAAa,WAAY,SAAQ,WAAW;IAC1C,mBAAmB,EAAE,sBAAsB,CAAC,mBAAmB,CACA;IAC/D,IAAI,EAAE,OAAO,CAAC,IAAI,CAAkC;CACrD;AAKD,MAAM,CAAC,OAAO,WAAW,WAAW,CAAC;IACnC,OAAO,EACL,mBAAmB,IAAI,mBAAmB,EAC1C,KAAK,mCAAmC,IAAI,mCAAmC,EAC/E,KAAK,+BAA+B,IAAI,+BAA+B,EACvE,KAAK,qCAAqC,IAAI,qCAAqC,EACnF,KAAK,uCAAuC,IAAI,uCAAuC,EACvF,KAAK,gCAAgC,IAAI,gCAAgC,EACzE,KAAK,0CAA0C,IAAI,0CAA0C,EAC7F,KAAK,iCAAiC,IAAI,iCAAiC,EAC3E,KAAK,6BAA6B,IAAI,6BAA6B,EACnE,KAAK,qCAAqC,IAAI,qCAAqC,EACnF,KAAK,8BAA8B,IAAI,8BAA8B,GACtE,CAAC;IAEF,OAAO,EACL,IAAI,IAAI,IAAI,EACZ,KAAK,oBAAoB,IAAI,oBAAoB,EACjD,KAAK,gBAAgB,IAAI,gBAAgB,EACzC,KAAK,sBAAsB,IAAI,sBAAsB,EACrD,KAAK,iBAAiB,IAAI,iBAAiB,EAC3C,KAAK,2BAA2B,IAAI,2BAA2B,EAC/D,KAAK,kBAAkB,IAAI,kBAAkB,EAC7C,KAAK,cAAc,IAAI,cAAc,EACrC,KAAK,eAAe,IAAI,eAAe,GACxC,CAAC;CACH"}
|
|
1
|
+
{"version":3,"file":"predictions.d.mts","sourceRoot":"","sources":["../../src/resources/predictions/predictions.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,gCAA4B;AAClD,OAAO,KAAK,OAAO,mBAAe;AAClC,OAAO,EACL,IAAI,EACJ,sBAAsB,EACtB,sBAAsB,EACtB,wBAAwB,EACxB,cAAc,EACd,gBAAgB,EAChB,2BAA2B,EAC3B,kBAAkB,EAClB,oBAAoB,EACpB,eAAe,EACf,iBAAiB,EAClB,mBAAe;AAChB,OAAO,KAAK,sBAAsB,oCAAgC;AAClE,OAAO,EACL,mBAAmB,EACnB,qCAAqC,EACrC,qCAAqC,EACrC,uCAAuC,EACvC,6BAA6B,EAC7B,+BAA+B,EAC/B,0CAA0C,EAC1C,iCAAiC,EACjC,mCAAmC,EACnC,8BAA8B,EAC9B,gCAAgC,EACjC,oCAAgC;AAEjC;;GAEG;AACH,qBAAa,WAAY,SAAQ,WAAW;IAC1C,mBAAmB,EAAE,sBAAsB,CAAC,mBAAmB,CACA;IAC/D,IAAI,EAAE,OAAO,CAAC,IAAI,CAAkC;CACrD;AAKD,MAAM,CAAC,OAAO,WAAW,WAAW,CAAC;IACnC,OAAO,EACL,mBAAmB,IAAI,mBAAmB,EAC1C,KAAK,mCAAmC,IAAI,mCAAmC,EAC/E,KAAK,+BAA+B,IAAI,+BAA+B,EACvE,KAAK,qCAAqC,IAAI,qCAAqC,EACnF,KAAK,uCAAuC,IAAI,uCAAuC,EACvF,KAAK,gCAAgC,IAAI,gCAAgC,EACzE,KAAK,0CAA0C,IAAI,0CAA0C,EAC7F,KAAK,iCAAiC,IAAI,iCAAiC,EAC3E,KAAK,6BAA6B,IAAI,6BAA6B,EACnE,KAAK,qCAAqC,IAAI,qCAAqC,EACnF,KAAK,8BAA8B,IAAI,8BAA8B,GACtE,CAAC;IAEF,OAAO,EACL,IAAI,IAAI,IAAI,EACZ,KAAK,oBAAoB,IAAI,oBAAoB,EACjD,KAAK,gBAAgB,IAAI,gBAAgB,EACzC,KAAK,sBAAsB,IAAI,sBAAsB,EACrD,KAAK,wBAAwB,IAAI,wBAAwB,EACzD,KAAK,iBAAiB,IAAI,iBAAiB,EAC3C,KAAK,2BAA2B,IAAI,2BAA2B,EAC/D,KAAK,kBAAkB,IAAI,kBAAkB,EAC7C,KAAK,cAAc,IAAI,cAAc,EACrC,KAAK,sBAAsB,IAAI,sBAAsB,EACrD,KAAK,eAAe,IAAI,eAAe,GACxC,CAAC;CACH"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { APIResource } from "../../core/resource.js";
|
|
2
2
|
import * as AdmeAPI from "./adme.js";
|
|
3
|
-
import { Adme, AdmeDeleteDataResponse, AdmeListParams, AdmeListResponse, AdmeListResponsesCursorPage, AdmeRetrieveParams, AdmeRetrieveResponse, AdmeStartParams, AdmeStartResponse } from "./adme.js";
|
|
3
|
+
import { Adme, AdmeDeleteDataResponse, AdmeEstimateCostParams, AdmeEstimateCostResponse, AdmeListParams, AdmeListResponse, AdmeListResponsesCursorPage, AdmeRetrieveParams, AdmeRetrieveResponse, AdmeStartParams, AdmeStartResponse } from "./adme.js";
|
|
4
4
|
import * as StructureAndBindingAPI from "./structure-and-binding.js";
|
|
5
5
|
import { StructureAndBinding, StructureAndBindingDeleteDataResponse, StructureAndBindingEstimateCostParams, StructureAndBindingEstimateCostResponse, StructureAndBindingListParams, StructureAndBindingListResponse, StructureAndBindingListResponsesCursorPage, StructureAndBindingRetrieveParams, StructureAndBindingRetrieveResponse, StructureAndBindingStartParams, StructureAndBindingStartResponse } from "./structure-and-binding.js";
|
|
6
6
|
/**
|
|
@@ -12,6 +12,6 @@ export declare class Predictions extends APIResource {
|
|
|
12
12
|
}
|
|
13
13
|
export declare namespace Predictions {
|
|
14
14
|
export { StructureAndBinding as StructureAndBinding, type StructureAndBindingRetrieveResponse as StructureAndBindingRetrieveResponse, type StructureAndBindingListResponse as StructureAndBindingListResponse, type StructureAndBindingDeleteDataResponse as StructureAndBindingDeleteDataResponse, type StructureAndBindingEstimateCostResponse as StructureAndBindingEstimateCostResponse, type StructureAndBindingStartResponse as StructureAndBindingStartResponse, type StructureAndBindingListResponsesCursorPage as StructureAndBindingListResponsesCursorPage, type StructureAndBindingRetrieveParams as StructureAndBindingRetrieveParams, type StructureAndBindingListParams as StructureAndBindingListParams, type StructureAndBindingEstimateCostParams as StructureAndBindingEstimateCostParams, type StructureAndBindingStartParams as StructureAndBindingStartParams, };
|
|
15
|
-
export { Adme as Adme, type AdmeRetrieveResponse as AdmeRetrieveResponse, type AdmeListResponse as AdmeListResponse, type AdmeDeleteDataResponse as AdmeDeleteDataResponse, type AdmeStartResponse as AdmeStartResponse, type AdmeListResponsesCursorPage as AdmeListResponsesCursorPage, type AdmeRetrieveParams as AdmeRetrieveParams, type AdmeListParams as AdmeListParams, type AdmeStartParams as AdmeStartParams, };
|
|
15
|
+
export { Adme as Adme, type AdmeRetrieveResponse as AdmeRetrieveResponse, type AdmeListResponse as AdmeListResponse, type AdmeDeleteDataResponse as AdmeDeleteDataResponse, type AdmeEstimateCostResponse as AdmeEstimateCostResponse, type AdmeStartResponse as AdmeStartResponse, type AdmeListResponsesCursorPage as AdmeListResponsesCursorPage, type AdmeRetrieveParams as AdmeRetrieveParams, type AdmeListParams as AdmeListParams, type AdmeEstimateCostParams as AdmeEstimateCostParams, type AdmeStartParams as AdmeStartParams, };
|
|
16
16
|
}
|
|
17
17
|
//# sourceMappingURL=predictions.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"predictions.d.ts","sourceRoot":"","sources":["../../src/resources/predictions/predictions.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,+BAA4B;AAClD,OAAO,KAAK,OAAO,kBAAe;AAClC,OAAO,EACL,IAAI,EACJ,sBAAsB,EACtB,cAAc,EACd,gBAAgB,EAChB,2BAA2B,EAC3B,kBAAkB,EAClB,oBAAoB,EACpB,eAAe,EACf,iBAAiB,EAClB,kBAAe;AAChB,OAAO,KAAK,sBAAsB,mCAAgC;AAClE,OAAO,EACL,mBAAmB,EACnB,qCAAqC,EACrC,qCAAqC,EACrC,uCAAuC,EACvC,6BAA6B,EAC7B,+BAA+B,EAC/B,0CAA0C,EAC1C,iCAAiC,EACjC,mCAAmC,EACnC,8BAA8B,EAC9B,gCAAgC,EACjC,mCAAgC;AAEjC;;GAEG;AACH,qBAAa,WAAY,SAAQ,WAAW;IAC1C,mBAAmB,EAAE,sBAAsB,CAAC,mBAAmB,CACA;IAC/D,IAAI,EAAE,OAAO,CAAC,IAAI,CAAkC;CACrD;AAKD,MAAM,CAAC,OAAO,WAAW,WAAW,CAAC;IACnC,OAAO,EACL,mBAAmB,IAAI,mBAAmB,EAC1C,KAAK,mCAAmC,IAAI,mCAAmC,EAC/E,KAAK,+BAA+B,IAAI,+BAA+B,EACvE,KAAK,qCAAqC,IAAI,qCAAqC,EACnF,KAAK,uCAAuC,IAAI,uCAAuC,EACvF,KAAK,gCAAgC,IAAI,gCAAgC,EACzE,KAAK,0CAA0C,IAAI,0CAA0C,EAC7F,KAAK,iCAAiC,IAAI,iCAAiC,EAC3E,KAAK,6BAA6B,IAAI,6BAA6B,EACnE,KAAK,qCAAqC,IAAI,qCAAqC,EACnF,KAAK,8BAA8B,IAAI,8BAA8B,GACtE,CAAC;IAEF,OAAO,EACL,IAAI,IAAI,IAAI,EACZ,KAAK,oBAAoB,IAAI,oBAAoB,EACjD,KAAK,gBAAgB,IAAI,gBAAgB,EACzC,KAAK,sBAAsB,IAAI,sBAAsB,EACrD,KAAK,iBAAiB,IAAI,iBAAiB,EAC3C,KAAK,2BAA2B,IAAI,2BAA2B,EAC/D,KAAK,kBAAkB,IAAI,kBAAkB,EAC7C,KAAK,cAAc,IAAI,cAAc,EACrC,KAAK,eAAe,IAAI,eAAe,GACxC,CAAC;CACH"}
|
|
1
|
+
{"version":3,"file":"predictions.d.ts","sourceRoot":"","sources":["../../src/resources/predictions/predictions.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,+BAA4B;AAClD,OAAO,KAAK,OAAO,kBAAe;AAClC,OAAO,EACL,IAAI,EACJ,sBAAsB,EACtB,sBAAsB,EACtB,wBAAwB,EACxB,cAAc,EACd,gBAAgB,EAChB,2BAA2B,EAC3B,kBAAkB,EAClB,oBAAoB,EACpB,eAAe,EACf,iBAAiB,EAClB,kBAAe;AAChB,OAAO,KAAK,sBAAsB,mCAAgC;AAClE,OAAO,EACL,mBAAmB,EACnB,qCAAqC,EACrC,qCAAqC,EACrC,uCAAuC,EACvC,6BAA6B,EAC7B,+BAA+B,EAC/B,0CAA0C,EAC1C,iCAAiC,EACjC,mCAAmC,EACnC,8BAA8B,EAC9B,gCAAgC,EACjC,mCAAgC;AAEjC;;GAEG;AACH,qBAAa,WAAY,SAAQ,WAAW;IAC1C,mBAAmB,EAAE,sBAAsB,CAAC,mBAAmB,CACA;IAC/D,IAAI,EAAE,OAAO,CAAC,IAAI,CAAkC;CACrD;AAKD,MAAM,CAAC,OAAO,WAAW,WAAW,CAAC;IACnC,OAAO,EACL,mBAAmB,IAAI,mBAAmB,EAC1C,KAAK,mCAAmC,IAAI,mCAAmC,EAC/E,KAAK,+BAA+B,IAAI,+BAA+B,EACvE,KAAK,qCAAqC,IAAI,qCAAqC,EACnF,KAAK,uCAAuC,IAAI,uCAAuC,EACvF,KAAK,gCAAgC,IAAI,gCAAgC,EACzE,KAAK,0CAA0C,IAAI,0CAA0C,EAC7F,KAAK,iCAAiC,IAAI,iCAAiC,EAC3E,KAAK,6BAA6B,IAAI,6BAA6B,EACnE,KAAK,qCAAqC,IAAI,qCAAqC,EACnF,KAAK,8BAA8B,IAAI,8BAA8B,GACtE,CAAC;IAEF,OAAO,EACL,IAAI,IAAI,IAAI,EACZ,KAAK,oBAAoB,IAAI,oBAAoB,EACjD,KAAK,gBAAgB,IAAI,gBAAgB,EACzC,KAAK,sBAAsB,IAAI,sBAAsB,EACrD,KAAK,wBAAwB,IAAI,wBAAwB,EACzD,KAAK,iBAAiB,IAAI,iBAAiB,EAC3C,KAAK,2BAA2B,IAAI,2BAA2B,EAC/D,KAAK,kBAAkB,IAAI,kBAAkB,EAC7C,KAAK,cAAc,IAAI,cAAc,EACrC,KAAK,sBAAsB,IAAI,sBAAsB,EACrD,KAAK,eAAe,IAAI,eAAe,GACxC,CAAC;CACH"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"predictions.js","sourceRoot":"","sources":["../../src/resources/predictions/predictions.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;;AAEtF,qDAAkD;AAClD,2DAAkC;AAClC,
|
|
1
|
+
{"version":3,"file":"predictions.js","sourceRoot":"","sources":["../../src/resources/predictions/predictions.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;;AAEtF,qDAAkD;AAClD,2DAAkC;AAClC,oCAYgB;AAChB,2FAAkE;AAClE,sEAYiC;AAEjC;;GAEG;AACH,MAAa,WAAY,SAAQ,sBAAW;IAA5C;;QACE,wBAAmB,GACjB,IAAI,sBAAsB,CAAC,mBAAmB,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAC/D,SAAI,GAAiB,IAAI,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;IACtD,CAAC;CAAA;AAJD,kCAIC;AAED,WAAW,CAAC,mBAAmB,GAAG,2CAAmB,CAAC;AACtD,WAAW,CAAC,IAAI,GAAG,WAAI,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"predictions.mjs","sourceRoot":"","sources":["../../src/resources/predictions/predictions.ts"],"names":[],"mappings":"AAAA,sFAAsF;AAEtF,OAAO,EAAE,WAAW,EAAE,gCAA4B;AAClD,OAAO,KAAK,OAAO,mBAAe;AAClC,OAAO,EACL,IAAI,
|
|
1
|
+
{"version":3,"file":"predictions.mjs","sourceRoot":"","sources":["../../src/resources/predictions/predictions.ts"],"names":[],"mappings":"AAAA,sFAAsF;AAEtF,OAAO,EAAE,WAAW,EAAE,gCAA4B;AAClD,OAAO,KAAK,OAAO,mBAAe;AAClC,OAAO,EACL,IAAI,GAWL,mBAAe;AAChB,OAAO,KAAK,sBAAsB,oCAAgC;AAClE,OAAO,EACL,mBAAmB,GAWpB,oCAAgC;AAEjC;;GAEG;AACH,MAAM,OAAO,WAAY,SAAQ,WAAW;IAA5C;;QACE,wBAAmB,GACjB,IAAI,sBAAsB,CAAC,mBAAmB,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAC/D,SAAI,GAAiB,IAAI,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;IACtD,CAAC;CAAA;AAED,WAAW,CAAC,mBAAmB,GAAG,mBAAmB,CAAC;AACtD,WAAW,CAAC,IAAI,GAAG,IAAI,CAAC"}
|
|
@@ -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
|
}
|
|
@@ -63,6 +63,24 @@ export class Adme extends APIResource {
|
|
|
63
63
|
return this._client.post(path`/compute/v1/predictions/adme/${id}/delete-data`, options);
|
|
64
64
|
}
|
|
65
65
|
|
|
66
|
+
/**
|
|
67
|
+
* Estimate the cost of an ADME prediction without creating any resource or
|
|
68
|
+
* consuming GPU.
|
|
69
|
+
*
|
|
70
|
+
* @example
|
|
71
|
+
* ```ts
|
|
72
|
+
* const response = await client.predictions.adme.estimateCost(
|
|
73
|
+
* {
|
|
74
|
+
* input: { molecules: [{ smiles: 'x' }] },
|
|
75
|
+
* model: 'adme-v1',
|
|
76
|
+
* },
|
|
77
|
+
* );
|
|
78
|
+
* ```
|
|
79
|
+
*/
|
|
80
|
+
estimateCost(body: AdmeEstimateCostParams, options?: RequestOptions): APIPromise<AdmeEstimateCostResponse> {
|
|
81
|
+
return this._client.post('/compute/v1/predictions/adme/estimate-cost', { body, ...options });
|
|
82
|
+
}
|
|
83
|
+
|
|
66
84
|
/**
|
|
67
85
|
* Submit a prediction job that returns Tier 1 ADME summary values for each
|
|
68
86
|
* requested molecule.
|
|
@@ -174,7 +192,8 @@ export namespace AdmeRetrieveResponse {
|
|
|
174
192
|
*/
|
|
175
193
|
export interface Input {
|
|
176
194
|
/**
|
|
177
|
-
* 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.
|
|
178
197
|
*/
|
|
179
198
|
molecules: Array<Input.Molecule>;
|
|
180
199
|
}
|
|
@@ -391,6 +410,54 @@ export interface AdmeDeleteDataResponse {
|
|
|
391
410
|
data_deleted_at: string;
|
|
392
411
|
}
|
|
393
412
|
|
|
413
|
+
/**
|
|
414
|
+
* Estimate response with monetary values encoded as decimal strings to preserve
|
|
415
|
+
* precision.
|
|
416
|
+
*/
|
|
417
|
+
export interface AdmeEstimateCostResponse {
|
|
418
|
+
/**
|
|
419
|
+
* Cost breakdown for the billed application.
|
|
420
|
+
*/
|
|
421
|
+
breakdown: AdmeEstimateCostResponse.Breakdown;
|
|
422
|
+
|
|
423
|
+
disclaimer: string;
|
|
424
|
+
|
|
425
|
+
/**
|
|
426
|
+
* Estimated total cost as a decimal string
|
|
427
|
+
*/
|
|
428
|
+
estimated_cost_usd: string;
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
export namespace AdmeEstimateCostResponse {
|
|
432
|
+
/**
|
|
433
|
+
* Cost breakdown for the billed application.
|
|
434
|
+
*/
|
|
435
|
+
export interface Breakdown {
|
|
436
|
+
application:
|
|
437
|
+
| 'structure_and_binding'
|
|
438
|
+
| 'small_molecule_design'
|
|
439
|
+
| 'small_molecule_library_screen'
|
|
440
|
+
| 'protein_design'
|
|
441
|
+
| 'protein_redesign'
|
|
442
|
+
| 'protein_library_screen'
|
|
443
|
+
| 'adme';
|
|
444
|
+
|
|
445
|
+
/**
|
|
446
|
+
* Estimated cost per displayed unit as a decimal string, rounded up to 4 decimal
|
|
447
|
+
* places. This may include token-size multipliers or generation overhead;
|
|
448
|
+
* estimated_cost_usd is the authoritative total.
|
|
449
|
+
*/
|
|
450
|
+
cost_per_unit_usd: string;
|
|
451
|
+
|
|
452
|
+
/**
|
|
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.
|
|
456
|
+
*/
|
|
457
|
+
num_units: number;
|
|
458
|
+
}
|
|
459
|
+
}
|
|
460
|
+
|
|
394
461
|
export interface AdmeStartResponse {
|
|
395
462
|
/**
|
|
396
463
|
* Unique prediction identifier
|
|
@@ -483,7 +550,8 @@ export namespace AdmeStartResponse {
|
|
|
483
550
|
*/
|
|
484
551
|
export interface Input {
|
|
485
552
|
/**
|
|
486
|
-
* 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.
|
|
487
555
|
*/
|
|
488
556
|
molecules: Array<Input.Molecule>;
|
|
489
557
|
}
|
|
@@ -625,6 +693,50 @@ export interface AdmeListParams extends CursorPageParams {
|
|
|
625
693
|
workspace_id?: string;
|
|
626
694
|
}
|
|
627
695
|
|
|
696
|
+
export interface AdmeEstimateCostParams {
|
|
697
|
+
input: AdmeEstimateCostParams.Input;
|
|
698
|
+
|
|
699
|
+
/**
|
|
700
|
+
* Model to use for prediction
|
|
701
|
+
*/
|
|
702
|
+
model: 'adme-v1';
|
|
703
|
+
|
|
704
|
+
/**
|
|
705
|
+
* Client-provided key to prevent duplicate submissions on retries
|
|
706
|
+
*/
|
|
707
|
+
idempotency_key?: string;
|
|
708
|
+
|
|
709
|
+
/**
|
|
710
|
+
* Target workspace ID (admin keys only; ignored for workspace keys)
|
|
711
|
+
*/
|
|
712
|
+
workspace_id?: string;
|
|
713
|
+
}
|
|
714
|
+
|
|
715
|
+
export namespace AdmeEstimateCostParams {
|
|
716
|
+
export interface Input {
|
|
717
|
+
/**
|
|
718
|
+
* Molecules to score (1-128 per request). Results are returned in the same order
|
|
719
|
+
* as this list.
|
|
720
|
+
*/
|
|
721
|
+
molecules: Array<Input.Molecule>;
|
|
722
|
+
}
|
|
723
|
+
|
|
724
|
+
export namespace Input {
|
|
725
|
+
export interface Molecule {
|
|
726
|
+
/**
|
|
727
|
+
* SMILES string of the molecule to predict ADME properties for.
|
|
728
|
+
*/
|
|
729
|
+
smiles: string;
|
|
730
|
+
|
|
731
|
+
/**
|
|
732
|
+
* Optional client-provided identifier. Returned as `external_id` in the matching
|
|
733
|
+
* output item.
|
|
734
|
+
*/
|
|
735
|
+
id?: string;
|
|
736
|
+
}
|
|
737
|
+
}
|
|
738
|
+
}
|
|
739
|
+
|
|
628
740
|
export interface AdmeStartParams {
|
|
629
741
|
input: AdmeStartParams.Input;
|
|
630
742
|
|
|
@@ -647,7 +759,8 @@ export interface AdmeStartParams {
|
|
|
647
759
|
export namespace AdmeStartParams {
|
|
648
760
|
export interface Input {
|
|
649
761
|
/**
|
|
650
|
-
* 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.
|
|
651
764
|
*/
|
|
652
765
|
molecules: Array<Input.Molecule>;
|
|
653
766
|
}
|
|
@@ -673,10 +786,12 @@ export declare namespace Adme {
|
|
|
673
786
|
type AdmeRetrieveResponse as AdmeRetrieveResponse,
|
|
674
787
|
type AdmeListResponse as AdmeListResponse,
|
|
675
788
|
type AdmeDeleteDataResponse as AdmeDeleteDataResponse,
|
|
789
|
+
type AdmeEstimateCostResponse as AdmeEstimateCostResponse,
|
|
676
790
|
type AdmeStartResponse as AdmeStartResponse,
|
|
677
791
|
type AdmeListResponsesCursorPage as AdmeListResponsesCursorPage,
|
|
678
792
|
type AdmeRetrieveParams as AdmeRetrieveParams,
|
|
679
793
|
type AdmeListParams as AdmeListParams,
|
|
794
|
+
type AdmeEstimateCostParams as AdmeEstimateCostParams,
|
|
680
795
|
type AdmeStartParams as AdmeStartParams,
|
|
681
796
|
};
|
|
682
797
|
}
|
|
@@ -5,9 +5,11 @@ export {
|
|
|
5
5
|
type AdmeRetrieveResponse,
|
|
6
6
|
type AdmeListResponse,
|
|
7
7
|
type AdmeDeleteDataResponse,
|
|
8
|
+
type AdmeEstimateCostResponse,
|
|
8
9
|
type AdmeStartResponse,
|
|
9
10
|
type AdmeRetrieveParams,
|
|
10
11
|
type AdmeListParams,
|
|
12
|
+
type AdmeEstimateCostParams,
|
|
11
13
|
type AdmeStartParams,
|
|
12
14
|
type AdmeListResponsesCursorPage,
|
|
13
15
|
} from './adme';
|
|
@@ -5,6 +5,8 @@ import * as AdmeAPI from './adme';
|
|
|
5
5
|
import {
|
|
6
6
|
Adme,
|
|
7
7
|
AdmeDeleteDataResponse,
|
|
8
|
+
AdmeEstimateCostParams,
|
|
9
|
+
AdmeEstimateCostResponse,
|
|
8
10
|
AdmeListParams,
|
|
9
11
|
AdmeListResponse,
|
|
10
12
|
AdmeListResponsesCursorPage,
|
|
@@ -60,10 +62,12 @@ export declare namespace Predictions {
|
|
|
60
62
|
type AdmeRetrieveResponse as AdmeRetrieveResponse,
|
|
61
63
|
type AdmeListResponse as AdmeListResponse,
|
|
62
64
|
type AdmeDeleteDataResponse as AdmeDeleteDataResponse,
|
|
65
|
+
type AdmeEstimateCostResponse as AdmeEstimateCostResponse,
|
|
63
66
|
type AdmeStartResponse as AdmeStartResponse,
|
|
64
67
|
type AdmeListResponsesCursorPage as AdmeListResponsesCursorPage,
|
|
65
68
|
type AdmeRetrieveParams as AdmeRetrieveParams,
|
|
66
69
|
type AdmeListParams as AdmeListParams,
|
|
70
|
+
type AdmeEstimateCostParams as AdmeEstimateCostParams,
|
|
67
71
|
type AdmeStartParams as AdmeStartParams,
|
|
68
72
|
};
|
|
69
73
|
}
|
|
@@ -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.
|
|
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.
|
|
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.
|
|
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.
|
|
1
|
+
export const VERSION = '0.46.1'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|