boltz-api 0.35.2 → 0.35.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/package.json +1 -1
  3. package/resources/predictions/structure-and-binding.d.mts +24 -156
  4. package/resources/predictions/structure-and-binding.d.mts.map +1 -1
  5. package/resources/predictions/structure-and-binding.d.ts +24 -156
  6. package/resources/predictions/structure-and-binding.d.ts.map +1 -1
  7. package/resources/protein/design.d.mts +76 -494
  8. package/resources/protein/design.d.mts.map +1 -1
  9. package/resources/protein/design.d.ts +76 -494
  10. package/resources/protein/design.d.ts.map +1 -1
  11. package/resources/protein/library-screen.d.mts +48 -312
  12. package/resources/protein/library-screen.d.mts.map +1 -1
  13. package/resources/protein/library-screen.d.ts +48 -312
  14. package/resources/protein/library-screen.d.ts.map +1 -1
  15. package/resources/small-molecule/design.d.mts +10 -65
  16. package/resources/small-molecule/design.d.mts.map +1 -1
  17. package/resources/small-molecule/design.d.ts +10 -65
  18. package/resources/small-molecule/design.d.ts.map +1 -1
  19. package/resources/small-molecule/library-screen.d.mts +10 -65
  20. package/resources/small-molecule/library-screen.d.mts.map +1 -1
  21. package/resources/small-molecule/library-screen.d.ts +10 -65
  22. package/resources/small-molecule/library-screen.d.ts.map +1 -1
  23. package/src/resources/predictions/structure-and-binding.ts +24 -204
  24. package/src/resources/protein/design.ts +76 -656
  25. package/src/resources/protein/library-screen.ts +48 -402
  26. package/src/resources/small-molecule/design.ts +10 -80
  27. package/src/resources/small-molecule/library-screen.ts +10 -80
  28. package/src/version.ts +1 -1
  29. package/version.d.mts +1 -1
  30. package/version.d.ts +1 -1
  31. package/version.js +1 -1
  32. package/version.mjs +1 -1
@@ -341,11 +341,11 @@ export namespace DesignRetrieveResponse {
341
341
  * Post-translational modifications. Optional; defaults to an empty list when
342
342
  * omitted.
343
343
  */
344
- modifications?: Array<Entity.CcdModificationResponse | Entity.SmilesModificationResponse>;
344
+ modifications?: Array<Entity.Modification>;
345
345
  }
346
346
 
347
347
  export namespace Entity {
348
- export interface CcdModificationResponse {
348
+ export interface Modification {
349
349
  /**
350
350
  * 0-based index of the residue to modify
351
351
  */
@@ -359,20 +359,6 @@ export namespace DesignRetrieveResponse {
359
359
  */
360
360
  value: string;
361
361
  }
362
-
363
- export interface SmilesModificationResponse {
364
- /**
365
- * 0-based index of the residue to modify
366
- */
367
- residue_index: number;
368
-
369
- type: 'smiles';
370
-
371
- /**
372
- * SMILES string for the modification
373
- */
374
- value: string;
375
- }
376
362
  }
377
363
 
378
364
  /**
@@ -1431,11 +1417,11 @@ export namespace DesignStartResponse {
1431
1417
  * Post-translational modifications. Optional; defaults to an empty list when
1432
1418
  * omitted.
1433
1419
  */
1434
- modifications?: Array<Entity.CcdModificationResponse | Entity.SmilesModificationResponse>;
1420
+ modifications?: Array<Entity.Modification>;
1435
1421
  }
1436
1422
 
1437
1423
  export namespace Entity {
1438
- export interface CcdModificationResponse {
1424
+ export interface Modification {
1439
1425
  /**
1440
1426
  * 0-based index of the residue to modify
1441
1427
  */
@@ -1449,20 +1435,6 @@ export namespace DesignStartResponse {
1449
1435
  */
1450
1436
  value: string;
1451
1437
  }
1452
-
1453
- export interface SmilesModificationResponse {
1454
- /**
1455
- * 0-based index of the residue to modify
1456
- */
1457
- residue_index: number;
1458
-
1459
- type: 'smiles';
1460
-
1461
- /**
1462
- * SMILES string for the modification
1463
- */
1464
- value: string;
1465
- }
1466
1438
  }
1467
1439
 
1468
1440
  /**
@@ -2222,11 +2194,11 @@ export namespace DesignStopResponse {
2222
2194
  * Post-translational modifications. Optional; defaults to an empty list when
2223
2195
  * omitted.
2224
2196
  */
2225
- modifications?: Array<Entity.CcdModificationResponse | Entity.SmilesModificationResponse>;
2197
+ modifications?: Array<Entity.Modification>;
2226
2198
  }
2227
2199
 
2228
2200
  export namespace Entity {
2229
- export interface CcdModificationResponse {
2201
+ export interface Modification {
2230
2202
  /**
2231
2203
  * 0-based index of the residue to modify
2232
2204
  */
@@ -2240,20 +2212,6 @@ export namespace DesignStopResponse {
2240
2212
  */
2241
2213
  value: string;
2242
2214
  }
2243
-
2244
- export interface SmilesModificationResponse {
2245
- /**
2246
- * 0-based index of the residue to modify
2247
- */
2248
- residue_index: number;
2249
-
2250
- type: 'smiles';
2251
-
2252
- /**
2253
- * SMILES string for the modification
2254
- */
2255
- value: string;
2256
- }
2257
2215
  }
2258
2216
 
2259
2217
  /**
@@ -2949,11 +2907,11 @@ export namespace DesignEstimateCostParams {
2949
2907
  * Post-translational modifications. Optional; defaults to an empty list when
2950
2908
  * omitted.
2951
2909
  */
2952
- modifications?: Array<Entity.CcdModification | Entity.SmilesModification>;
2910
+ modifications?: Array<Entity.Modification>;
2953
2911
  }
2954
2912
 
2955
2913
  export namespace Entity {
2956
- export interface CcdModification {
2914
+ export interface Modification {
2957
2915
  /**
2958
2916
  * 0-based index of the residue to modify
2959
2917
  */
@@ -2967,20 +2925,6 @@ export namespace DesignEstimateCostParams {
2967
2925
  */
2968
2926
  value: string;
2969
2927
  }
2970
-
2971
- export interface SmilesModification {
2972
- /**
2973
- * 0-based index of the residue to modify
2974
- */
2975
- residue_index: number;
2976
-
2977
- type: 'smiles';
2978
-
2979
- /**
2980
- * SMILES string for the modification
2981
- */
2982
- value: string;
2983
- }
2984
2928
  }
2985
2929
 
2986
2930
  /**
@@ -3645,11 +3589,11 @@ export namespace DesignStartParams {
3645
3589
  * Post-translational modifications. Optional; defaults to an empty list when
3646
3590
  * omitted.
3647
3591
  */
3648
- modifications?: Array<Entity.CcdModification | Entity.SmilesModification>;
3592
+ modifications?: Array<Entity.Modification>;
3649
3593
  }
3650
3594
 
3651
3595
  export namespace Entity {
3652
- export interface CcdModification {
3596
+ export interface Modification {
3653
3597
  /**
3654
3598
  * 0-based index of the residue to modify
3655
3599
  */
@@ -3663,20 +3607,6 @@ export namespace DesignStartParams {
3663
3607
  */
3664
3608
  value: string;
3665
3609
  }
3666
-
3667
- export interface SmilesModification {
3668
- /**
3669
- * 0-based index of the residue to modify
3670
- */
3671
- residue_index: number;
3672
-
3673
- type: 'smiles';
3674
-
3675
- /**
3676
- * SMILES string for the modification
3677
- */
3678
- value: string;
3679
- }
3680
3610
  }
3681
3611
 
3682
3612
  /**
@@ -331,11 +331,11 @@ export namespace LibraryScreenRetrieveResponse {
331
331
  * Post-translational modifications. Optional; defaults to an empty list when
332
332
  * omitted.
333
333
  */
334
- modifications?: Array<Entity.CcdModificationResponse | Entity.SmilesModificationResponse>;
334
+ modifications?: Array<Entity.Modification>;
335
335
  }
336
336
 
337
337
  export namespace Entity {
338
- export interface CcdModificationResponse {
338
+ export interface Modification {
339
339
  /**
340
340
  * 0-based index of the residue to modify
341
341
  */
@@ -349,20 +349,6 @@ export namespace LibraryScreenRetrieveResponse {
349
349
  */
350
350
  value: string;
351
351
  }
352
-
353
- export interface SmilesModificationResponse {
354
- /**
355
- * 0-based index of the residue to modify
356
- */
357
- residue_index: number;
358
-
359
- type: 'smiles';
360
-
361
- /**
362
- * SMILES string for the modification
363
- */
364
- value: string;
365
- }
366
352
  }
367
353
 
368
354
  /**
@@ -1462,11 +1448,11 @@ export namespace LibraryScreenStartResponse {
1462
1448
  * Post-translational modifications. Optional; defaults to an empty list when
1463
1449
  * omitted.
1464
1450
  */
1465
- modifications?: Array<Entity.CcdModificationResponse | Entity.SmilesModificationResponse>;
1451
+ modifications?: Array<Entity.Modification>;
1466
1452
  }
1467
1453
 
1468
1454
  export namespace Entity {
1469
- export interface CcdModificationResponse {
1455
+ export interface Modification {
1470
1456
  /**
1471
1457
  * 0-based index of the residue to modify
1472
1458
  */
@@ -1480,20 +1466,6 @@ export namespace LibraryScreenStartResponse {
1480
1466
  */
1481
1467
  value: string;
1482
1468
  }
1483
-
1484
- export interface SmilesModificationResponse {
1485
- /**
1486
- * 0-based index of the residue to modify
1487
- */
1488
- residue_index: number;
1489
-
1490
- type: 'smiles';
1491
-
1492
- /**
1493
- * SMILES string for the modification
1494
- */
1495
- value: string;
1496
- }
1497
1469
  }
1498
1470
 
1499
1471
  /**
@@ -2267,11 +2239,11 @@ export namespace LibraryScreenStopResponse {
2267
2239
  * Post-translational modifications. Optional; defaults to an empty list when
2268
2240
  * omitted.
2269
2241
  */
2270
- modifications?: Array<Entity.CcdModificationResponse | Entity.SmilesModificationResponse>;
2242
+ modifications?: Array<Entity.Modification>;
2271
2243
  }
2272
2244
 
2273
2245
  export namespace Entity {
2274
- export interface CcdModificationResponse {
2246
+ export interface Modification {
2275
2247
  /**
2276
2248
  * 0-based index of the residue to modify
2277
2249
  */
@@ -2285,20 +2257,6 @@ export namespace LibraryScreenStopResponse {
2285
2257
  */
2286
2258
  value: string;
2287
2259
  }
2288
-
2289
- export interface SmilesModificationResponse {
2290
- /**
2291
- * 0-based index of the residue to modify
2292
- */
2293
- residue_index: number;
2294
-
2295
- type: 'smiles';
2296
-
2297
- /**
2298
- * SMILES string for the modification
2299
- */
2300
- value: string;
2301
- }
2302
2260
  }
2303
2261
 
2304
2262
  /**
@@ -3024,11 +2982,11 @@ export namespace LibraryScreenEstimateCostParams {
3024
2982
  * Post-translational modifications. Optional; defaults to an empty list when
3025
2983
  * omitted.
3026
2984
  */
3027
- modifications?: Array<Entity.CcdModification | Entity.SmilesModification>;
2985
+ modifications?: Array<Entity.Modification>;
3028
2986
  }
3029
2987
 
3030
2988
  export namespace Entity {
3031
- export interface CcdModification {
2989
+ export interface Modification {
3032
2990
  /**
3033
2991
  * 0-based index of the residue to modify
3034
2992
  */
@@ -3042,20 +3000,6 @@ export namespace LibraryScreenEstimateCostParams {
3042
3000
  */
3043
3001
  value: string;
3044
3002
  }
3045
-
3046
- export interface SmilesModification {
3047
- /**
3048
- * 0-based index of the residue to modify
3049
- */
3050
- residue_index: number;
3051
-
3052
- type: 'smiles';
3053
-
3054
- /**
3055
- * SMILES string for the modification
3056
- */
3057
- value: string;
3058
- }
3059
3003
  }
3060
3004
 
3061
3005
  /**
@@ -3728,11 +3672,11 @@ export namespace LibraryScreenStartParams {
3728
3672
  * Post-translational modifications. Optional; defaults to an empty list when
3729
3673
  * omitted.
3730
3674
  */
3731
- modifications?: Array<Entity.CcdModification | Entity.SmilesModification>;
3675
+ modifications?: Array<Entity.Modification>;
3732
3676
  }
3733
3677
 
3734
3678
  export namespace Entity {
3735
- export interface CcdModification {
3679
+ export interface Modification {
3736
3680
  /**
3737
3681
  * 0-based index of the residue to modify
3738
3682
  */
@@ -3746,20 +3690,6 @@ export namespace LibraryScreenStartParams {
3746
3690
  */
3747
3691
  value: string;
3748
3692
  }
3749
-
3750
- export interface SmilesModification {
3751
- /**
3752
- * 0-based index of the residue to modify
3753
- */
3754
- residue_index: number;
3755
-
3756
- type: 'smiles';
3757
-
3758
- /**
3759
- * SMILES string for the modification
3760
- */
3761
- value: string;
3762
- }
3763
3693
  }
3764
3694
 
3765
3695
  /**
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '0.35.2'; // x-release-please-version
1
+ export const VERSION = '0.35.3'; // x-release-please-version
package/version.d.mts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.35.2";
1
+ export declare const VERSION = "0.35.3";
2
2
  //# sourceMappingURL=version.d.mts.map
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.35.2";
1
+ export declare const VERSION = "0.35.3";
2
2
  //# sourceMappingURL=version.d.ts.map
package/version.js CHANGED
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VERSION = void 0;
4
- exports.VERSION = '0.35.2'; // x-release-please-version
4
+ exports.VERSION = '0.35.3'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '0.35.2'; // x-release-please-version
1
+ export const VERSION = '0.35.3'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map