boltz-api 0.35.2 → 0.36.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/package.json +1 -1
  3. package/resources/predictions/structure-and-binding.d.mts +44 -156
  4. package/resources/predictions/structure-and-binding.d.mts.map +1 -1
  5. package/resources/predictions/structure-and-binding.d.ts +44 -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 +70 -75
  16. package/resources/small-molecule/design.d.mts.map +1 -1
  17. package/resources/small-molecule/design.d.ts +70 -75
  18. package/resources/small-molecule/design.d.ts.map +1 -1
  19. package/resources/small-molecule/library-screen.d.mts +70 -75
  20. package/resources/small-molecule/library-screen.d.mts.map +1 -1
  21. package/resources/small-molecule/library-screen.d.ts +70 -75
  22. package/resources/small-molecule/library-screen.d.ts.map +1 -1
  23. package/src/resources/predictions/structure-and-binding.ts +48 -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 +80 -90
  27. package/src/resources/small-molecule/library-screen.ts +80 -90
  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
@@ -344,10 +344,10 @@ export declare namespace LibraryScreenRetrieveResponse {
344
344
  * Post-translational modifications. Optional; defaults to an empty list when
345
345
  * omitted.
346
346
  */
347
- modifications?: Array<ProteinEntityResponse.CcdModificationResponse | ProteinEntityResponse.SmilesModificationResponse>;
347
+ modifications?: Array<ProteinEntityResponse.Modification>;
348
348
  }
349
349
  namespace ProteinEntityResponse {
350
- interface CcdModificationResponse {
350
+ interface Modification {
351
351
  /**
352
352
  * 0-based index of the residue to modify
353
353
  */
@@ -359,17 +359,6 @@ export declare namespace LibraryScreenRetrieveResponse {
359
359
  */
360
360
  value: string;
361
361
  }
362
- interface SmilesModificationResponse {
363
- /**
364
- * 0-based index of the residue to modify
365
- */
366
- residue_index: number;
367
- type: 'smiles';
368
- /**
369
- * SMILES string for the modification
370
- */
371
- value: string;
372
- }
373
362
  }
374
363
  interface RnaEntityResponse {
375
364
  /**
@@ -388,10 +377,10 @@ export declare namespace LibraryScreenRetrieveResponse {
388
377
  /**
389
378
  * Chemical modifications. Optional; defaults to an empty list when omitted.
390
379
  */
391
- modifications?: Array<RnaEntityResponse.CcdModificationResponse | RnaEntityResponse.SmilesModificationResponse>;
380
+ modifications?: Array<RnaEntityResponse.Modification>;
392
381
  }
393
382
  namespace RnaEntityResponse {
394
- interface CcdModificationResponse {
383
+ interface Modification {
395
384
  /**
396
385
  * 0-based index of the residue to modify
397
386
  */
@@ -403,17 +392,6 @@ export declare namespace LibraryScreenRetrieveResponse {
403
392
  */
404
393
  value: string;
405
394
  }
406
- interface SmilesModificationResponse {
407
- /**
408
- * 0-based index of the residue to modify
409
- */
410
- residue_index: number;
411
- type: 'smiles';
412
- /**
413
- * SMILES string for the modification
414
- */
415
- value: string;
416
- }
417
395
  }
418
396
  interface DnaEntityResponse {
419
397
  /**
@@ -432,10 +410,10 @@ export declare namespace LibraryScreenRetrieveResponse {
432
410
  /**
433
411
  * Chemical modifications. Optional; defaults to an empty list when omitted.
434
412
  */
435
- modifications?: Array<DnaEntityResponse.CcdModificationResponse | DnaEntityResponse.SmilesModificationResponse>;
413
+ modifications?: Array<DnaEntityResponse.Modification>;
436
414
  }
437
415
  namespace DnaEntityResponse {
438
- interface CcdModificationResponse {
416
+ interface Modification {
439
417
  /**
440
418
  * 0-based index of the residue to modify
441
419
  */
@@ -447,17 +425,6 @@ export declare namespace LibraryScreenRetrieveResponse {
447
425
  */
448
426
  value: string;
449
427
  }
450
- interface SmilesModificationResponse {
451
- /**
452
- * 0-based index of the residue to modify
453
- */
454
- residue_index: number;
455
- type: 'smiles';
456
- /**
457
- * SMILES string for the modification
458
- */
459
- value: string;
460
- }
461
428
  }
462
429
  interface LigandCcdEntityResponse {
463
430
  /**
@@ -884,10 +851,10 @@ export declare namespace LibraryScreenListResultsResponse {
884
851
  * Post-translational modifications. Optional; defaults to an empty list when
885
852
  * omitted.
886
853
  */
887
- modifications?: Array<ProteinEntity.CcdModification | ProteinEntity.SmilesModification>;
854
+ modifications?: Array<ProteinEntity.Modification>;
888
855
  }
889
856
  namespace ProteinEntity {
890
- interface CcdModification {
857
+ interface Modification {
891
858
  /**
892
859
  * 0-based index of the residue to modify
893
860
  */
@@ -899,17 +866,6 @@ export declare namespace LibraryScreenListResultsResponse {
899
866
  */
900
867
  value: string;
901
868
  }
902
- interface SmilesModification {
903
- /**
904
- * 0-based index of the residue to modify
905
- */
906
- residue_index: number;
907
- type: 'smiles';
908
- /**
909
- * SMILES string for the modification
910
- */
911
- value: string;
912
- }
913
869
  }
914
870
  interface RnaEntity {
915
871
  /**
@@ -928,10 +884,10 @@ export declare namespace LibraryScreenListResultsResponse {
928
884
  /**
929
885
  * Chemical modifications. Optional; defaults to an empty list when omitted.
930
886
  */
931
- modifications?: Array<RnaEntity.CcdModification | RnaEntity.SmilesModification>;
887
+ modifications?: Array<RnaEntity.Modification>;
932
888
  }
933
889
  namespace RnaEntity {
934
- interface CcdModification {
890
+ interface Modification {
935
891
  /**
936
892
  * 0-based index of the residue to modify
937
893
  */
@@ -943,17 +899,6 @@ export declare namespace LibraryScreenListResultsResponse {
943
899
  */
944
900
  value: string;
945
901
  }
946
- interface SmilesModification {
947
- /**
948
- * 0-based index of the residue to modify
949
- */
950
- residue_index: number;
951
- type: 'smiles';
952
- /**
953
- * SMILES string for the modification
954
- */
955
- value: string;
956
- }
957
902
  }
958
903
  interface DnaEntity {
959
904
  /**
@@ -972,10 +917,10 @@ export declare namespace LibraryScreenListResultsResponse {
972
917
  /**
973
918
  * Chemical modifications. Optional; defaults to an empty list when omitted.
974
919
  */
975
- modifications?: Array<DnaEntity.CcdModification | DnaEntity.SmilesModification>;
920
+ modifications?: Array<DnaEntity.Modification>;
976
921
  }
977
922
  namespace DnaEntity {
978
- interface CcdModification {
923
+ interface Modification {
979
924
  /**
980
925
  * 0-based index of the residue to modify
981
926
  */
@@ -987,17 +932,6 @@ export declare namespace LibraryScreenListResultsResponse {
987
932
  */
988
933
  value: string;
989
934
  }
990
- interface SmilesModification {
991
- /**
992
- * 0-based index of the residue to modify
993
- */
994
- residue_index: number;
995
- type: 'smiles';
996
- /**
997
- * SMILES string for the modification
998
- */
999
- value: string;
1000
- }
1001
935
  }
1002
936
  interface LigandCcdEntity {
1003
937
  /**
@@ -1275,10 +1209,10 @@ export declare namespace LibraryScreenStartResponse {
1275
1209
  * Post-translational modifications. Optional; defaults to an empty list when
1276
1210
  * omitted.
1277
1211
  */
1278
- modifications?: Array<ProteinEntityResponse.CcdModificationResponse | ProteinEntityResponse.SmilesModificationResponse>;
1212
+ modifications?: Array<ProteinEntityResponse.Modification>;
1279
1213
  }
1280
1214
  namespace ProteinEntityResponse {
1281
- interface CcdModificationResponse {
1215
+ interface Modification {
1282
1216
  /**
1283
1217
  * 0-based index of the residue to modify
1284
1218
  */
@@ -1290,17 +1224,6 @@ export declare namespace LibraryScreenStartResponse {
1290
1224
  */
1291
1225
  value: string;
1292
1226
  }
1293
- interface SmilesModificationResponse {
1294
- /**
1295
- * 0-based index of the residue to modify
1296
- */
1297
- residue_index: number;
1298
- type: 'smiles';
1299
- /**
1300
- * SMILES string for the modification
1301
- */
1302
- value: string;
1303
- }
1304
1227
  }
1305
1228
  interface RnaEntityResponse {
1306
1229
  /**
@@ -1319,10 +1242,10 @@ export declare namespace LibraryScreenStartResponse {
1319
1242
  /**
1320
1243
  * Chemical modifications. Optional; defaults to an empty list when omitted.
1321
1244
  */
1322
- modifications?: Array<RnaEntityResponse.CcdModificationResponse | RnaEntityResponse.SmilesModificationResponse>;
1245
+ modifications?: Array<RnaEntityResponse.Modification>;
1323
1246
  }
1324
1247
  namespace RnaEntityResponse {
1325
- interface CcdModificationResponse {
1248
+ interface Modification {
1326
1249
  /**
1327
1250
  * 0-based index of the residue to modify
1328
1251
  */
@@ -1334,17 +1257,6 @@ export declare namespace LibraryScreenStartResponse {
1334
1257
  */
1335
1258
  value: string;
1336
1259
  }
1337
- interface SmilesModificationResponse {
1338
- /**
1339
- * 0-based index of the residue to modify
1340
- */
1341
- residue_index: number;
1342
- type: 'smiles';
1343
- /**
1344
- * SMILES string for the modification
1345
- */
1346
- value: string;
1347
- }
1348
1260
  }
1349
1261
  interface DnaEntityResponse {
1350
1262
  /**
@@ -1363,10 +1275,10 @@ export declare namespace LibraryScreenStartResponse {
1363
1275
  /**
1364
1276
  * Chemical modifications. Optional; defaults to an empty list when omitted.
1365
1277
  */
1366
- modifications?: Array<DnaEntityResponse.CcdModificationResponse | DnaEntityResponse.SmilesModificationResponse>;
1278
+ modifications?: Array<DnaEntityResponse.Modification>;
1367
1279
  }
1368
1280
  namespace DnaEntityResponse {
1369
- interface CcdModificationResponse {
1281
+ interface Modification {
1370
1282
  /**
1371
1283
  * 0-based index of the residue to modify
1372
1284
  */
@@ -1378,17 +1290,6 @@ export declare namespace LibraryScreenStartResponse {
1378
1290
  */
1379
1291
  value: string;
1380
1292
  }
1381
- interface SmilesModificationResponse {
1382
- /**
1383
- * 0-based index of the residue to modify
1384
- */
1385
- residue_index: number;
1386
- type: 'smiles';
1387
- /**
1388
- * SMILES string for the modification
1389
- */
1390
- value: string;
1391
- }
1392
1293
  }
1393
1294
  interface LigandCcdEntityResponse {
1394
1295
  /**
@@ -1826,10 +1727,10 @@ export declare namespace LibraryScreenStopResponse {
1826
1727
  * Post-translational modifications. Optional; defaults to an empty list when
1827
1728
  * omitted.
1828
1729
  */
1829
- modifications?: Array<ProteinEntityResponse.CcdModificationResponse | ProteinEntityResponse.SmilesModificationResponse>;
1730
+ modifications?: Array<ProteinEntityResponse.Modification>;
1830
1731
  }
1831
1732
  namespace ProteinEntityResponse {
1832
- interface CcdModificationResponse {
1733
+ interface Modification {
1833
1734
  /**
1834
1735
  * 0-based index of the residue to modify
1835
1736
  */
@@ -1841,17 +1742,6 @@ export declare namespace LibraryScreenStopResponse {
1841
1742
  */
1842
1743
  value: string;
1843
1744
  }
1844
- interface SmilesModificationResponse {
1845
- /**
1846
- * 0-based index of the residue to modify
1847
- */
1848
- residue_index: number;
1849
- type: 'smiles';
1850
- /**
1851
- * SMILES string for the modification
1852
- */
1853
- value: string;
1854
- }
1855
1745
  }
1856
1746
  interface RnaEntityResponse {
1857
1747
  /**
@@ -1870,10 +1760,10 @@ export declare namespace LibraryScreenStopResponse {
1870
1760
  /**
1871
1761
  * Chemical modifications. Optional; defaults to an empty list when omitted.
1872
1762
  */
1873
- modifications?: Array<RnaEntityResponse.CcdModificationResponse | RnaEntityResponse.SmilesModificationResponse>;
1763
+ modifications?: Array<RnaEntityResponse.Modification>;
1874
1764
  }
1875
1765
  namespace RnaEntityResponse {
1876
- interface CcdModificationResponse {
1766
+ interface Modification {
1877
1767
  /**
1878
1768
  * 0-based index of the residue to modify
1879
1769
  */
@@ -1885,17 +1775,6 @@ export declare namespace LibraryScreenStopResponse {
1885
1775
  */
1886
1776
  value: string;
1887
1777
  }
1888
- interface SmilesModificationResponse {
1889
- /**
1890
- * 0-based index of the residue to modify
1891
- */
1892
- residue_index: number;
1893
- type: 'smiles';
1894
- /**
1895
- * SMILES string for the modification
1896
- */
1897
- value: string;
1898
- }
1899
1778
  }
1900
1779
  interface DnaEntityResponse {
1901
1780
  /**
@@ -1914,10 +1793,10 @@ export declare namespace LibraryScreenStopResponse {
1914
1793
  /**
1915
1794
  * Chemical modifications. Optional; defaults to an empty list when omitted.
1916
1795
  */
1917
- modifications?: Array<DnaEntityResponse.CcdModificationResponse | DnaEntityResponse.SmilesModificationResponse>;
1796
+ modifications?: Array<DnaEntityResponse.Modification>;
1918
1797
  }
1919
1798
  namespace DnaEntityResponse {
1920
- interface CcdModificationResponse {
1799
+ interface Modification {
1921
1800
  /**
1922
1801
  * 0-based index of the residue to modify
1923
1802
  */
@@ -1929,17 +1808,6 @@ export declare namespace LibraryScreenStopResponse {
1929
1808
  */
1930
1809
  value: string;
1931
1810
  }
1932
- interface SmilesModificationResponse {
1933
- /**
1934
- * 0-based index of the residue to modify
1935
- */
1936
- residue_index: number;
1937
- type: 'smiles';
1938
- /**
1939
- * SMILES string for the modification
1940
- */
1941
- value: string;
1942
- }
1943
1811
  }
1944
1812
  interface LigandCcdEntityResponse {
1945
1813
  /**
@@ -2238,10 +2106,10 @@ export declare namespace LibraryScreenEstimateCostParams {
2238
2106
  * Post-translational modifications. Optional; defaults to an empty list when
2239
2107
  * omitted.
2240
2108
  */
2241
- modifications?: Array<ProteinEntity.CcdModification | ProteinEntity.SmilesModification>;
2109
+ modifications?: Array<ProteinEntity.Modification>;
2242
2110
  }
2243
2111
  namespace ProteinEntity {
2244
- interface CcdModification {
2112
+ interface Modification {
2245
2113
  /**
2246
2114
  * 0-based index of the residue to modify
2247
2115
  */
@@ -2253,17 +2121,6 @@ export declare namespace LibraryScreenEstimateCostParams {
2253
2121
  */
2254
2122
  value: string;
2255
2123
  }
2256
- interface SmilesModification {
2257
- /**
2258
- * 0-based index of the residue to modify
2259
- */
2260
- residue_index: number;
2261
- type: 'smiles';
2262
- /**
2263
- * SMILES string for the modification
2264
- */
2265
- value: string;
2266
- }
2267
2124
  }
2268
2125
  interface RnaEntity {
2269
2126
  /**
@@ -2282,10 +2139,10 @@ export declare namespace LibraryScreenEstimateCostParams {
2282
2139
  /**
2283
2140
  * Chemical modifications. Optional; defaults to an empty list when omitted.
2284
2141
  */
2285
- modifications?: Array<RnaEntity.CcdModification | RnaEntity.SmilesModification>;
2142
+ modifications?: Array<RnaEntity.Modification>;
2286
2143
  }
2287
2144
  namespace RnaEntity {
2288
- interface CcdModification {
2145
+ interface Modification {
2289
2146
  /**
2290
2147
  * 0-based index of the residue to modify
2291
2148
  */
@@ -2297,17 +2154,6 @@ export declare namespace LibraryScreenEstimateCostParams {
2297
2154
  */
2298
2155
  value: string;
2299
2156
  }
2300
- interface SmilesModification {
2301
- /**
2302
- * 0-based index of the residue to modify
2303
- */
2304
- residue_index: number;
2305
- type: 'smiles';
2306
- /**
2307
- * SMILES string for the modification
2308
- */
2309
- value: string;
2310
- }
2311
2157
  }
2312
2158
  interface DnaEntity {
2313
2159
  /**
@@ -2326,10 +2172,10 @@ export declare namespace LibraryScreenEstimateCostParams {
2326
2172
  /**
2327
2173
  * Chemical modifications. Optional; defaults to an empty list when omitted.
2328
2174
  */
2329
- modifications?: Array<DnaEntity.CcdModification | DnaEntity.SmilesModification>;
2175
+ modifications?: Array<DnaEntity.Modification>;
2330
2176
  }
2331
2177
  namespace DnaEntity {
2332
- interface CcdModification {
2178
+ interface Modification {
2333
2179
  /**
2334
2180
  * 0-based index of the residue to modify
2335
2181
  */
@@ -2341,17 +2187,6 @@ export declare namespace LibraryScreenEstimateCostParams {
2341
2187
  */
2342
2188
  value: string;
2343
2189
  }
2344
- interface SmilesModification {
2345
- /**
2346
- * 0-based index of the residue to modify
2347
- */
2348
- residue_index: number;
2349
- type: 'smiles';
2350
- /**
2351
- * SMILES string for the modification
2352
- */
2353
- value: string;
2354
- }
2355
2190
  }
2356
2191
  interface LigandCcdEntity {
2357
2192
  /**
@@ -2509,10 +2344,10 @@ export declare namespace LibraryScreenEstimateCostParams {
2509
2344
  * Post-translational modifications. Optional; defaults to an empty list when
2510
2345
  * omitted.
2511
2346
  */
2512
- modifications?: Array<ProteinEntity.CcdModification | ProteinEntity.SmilesModification>;
2347
+ modifications?: Array<ProteinEntity.Modification>;
2513
2348
  }
2514
2349
  namespace ProteinEntity {
2515
- interface CcdModification {
2350
+ interface Modification {
2516
2351
  /**
2517
2352
  * 0-based index of the residue to modify
2518
2353
  */
@@ -2524,17 +2359,6 @@ export declare namespace LibraryScreenEstimateCostParams {
2524
2359
  */
2525
2360
  value: string;
2526
2361
  }
2527
- interface SmilesModification {
2528
- /**
2529
- * 0-based index of the residue to modify
2530
- */
2531
- residue_index: number;
2532
- type: 'smiles';
2533
- /**
2534
- * SMILES string for the modification
2535
- */
2536
- value: string;
2537
- }
2538
2362
  }
2539
2363
  interface RnaEntity {
2540
2364
  /**
@@ -2553,10 +2377,10 @@ export declare namespace LibraryScreenEstimateCostParams {
2553
2377
  /**
2554
2378
  * Chemical modifications. Optional; defaults to an empty list when omitted.
2555
2379
  */
2556
- modifications?: Array<RnaEntity.CcdModification | RnaEntity.SmilesModification>;
2380
+ modifications?: Array<RnaEntity.Modification>;
2557
2381
  }
2558
2382
  namespace RnaEntity {
2559
- interface CcdModification {
2383
+ interface Modification {
2560
2384
  /**
2561
2385
  * 0-based index of the residue to modify
2562
2386
  */
@@ -2568,17 +2392,6 @@ export declare namespace LibraryScreenEstimateCostParams {
2568
2392
  */
2569
2393
  value: string;
2570
2394
  }
2571
- interface SmilesModification {
2572
- /**
2573
- * 0-based index of the residue to modify
2574
- */
2575
- residue_index: number;
2576
- type: 'smiles';
2577
- /**
2578
- * SMILES string for the modification
2579
- */
2580
- value: string;
2581
- }
2582
2395
  }
2583
2396
  interface DnaEntity {
2584
2397
  /**
@@ -2597,10 +2410,10 @@ export declare namespace LibraryScreenEstimateCostParams {
2597
2410
  /**
2598
2411
  * Chemical modifications. Optional; defaults to an empty list when omitted.
2599
2412
  */
2600
- modifications?: Array<DnaEntity.CcdModification | DnaEntity.SmilesModification>;
2413
+ modifications?: Array<DnaEntity.Modification>;
2601
2414
  }
2602
2415
  namespace DnaEntity {
2603
- interface CcdModification {
2416
+ interface Modification {
2604
2417
  /**
2605
2418
  * 0-based index of the residue to modify
2606
2419
  */
@@ -2612,17 +2425,6 @@ export declare namespace LibraryScreenEstimateCostParams {
2612
2425
  */
2613
2426
  value: string;
2614
2427
  }
2615
- interface SmilesModification {
2616
- /**
2617
- * 0-based index of the residue to modify
2618
- */
2619
- residue_index: number;
2620
- type: 'smiles';
2621
- /**
2622
- * SMILES string for the modification
2623
- */
2624
- value: string;
2625
- }
2626
2428
  }
2627
2429
  interface LigandCcdEntity {
2628
2430
  /**
@@ -2894,10 +2696,10 @@ export declare namespace LibraryScreenStartParams {
2894
2696
  * Post-translational modifications. Optional; defaults to an empty list when
2895
2697
  * omitted.
2896
2698
  */
2897
- modifications?: Array<ProteinEntity.CcdModification | ProteinEntity.SmilesModification>;
2699
+ modifications?: Array<ProteinEntity.Modification>;
2898
2700
  }
2899
2701
  namespace ProteinEntity {
2900
- interface CcdModification {
2702
+ interface Modification {
2901
2703
  /**
2902
2704
  * 0-based index of the residue to modify
2903
2705
  */
@@ -2909,17 +2711,6 @@ export declare namespace LibraryScreenStartParams {
2909
2711
  */
2910
2712
  value: string;
2911
2713
  }
2912
- interface SmilesModification {
2913
- /**
2914
- * 0-based index of the residue to modify
2915
- */
2916
- residue_index: number;
2917
- type: 'smiles';
2918
- /**
2919
- * SMILES string for the modification
2920
- */
2921
- value: string;
2922
- }
2923
2714
  }
2924
2715
  interface RnaEntity {
2925
2716
  /**
@@ -2938,10 +2729,10 @@ export declare namespace LibraryScreenStartParams {
2938
2729
  /**
2939
2730
  * Chemical modifications. Optional; defaults to an empty list when omitted.
2940
2731
  */
2941
- modifications?: Array<RnaEntity.CcdModification | RnaEntity.SmilesModification>;
2732
+ modifications?: Array<RnaEntity.Modification>;
2942
2733
  }
2943
2734
  namespace RnaEntity {
2944
- interface CcdModification {
2735
+ interface Modification {
2945
2736
  /**
2946
2737
  * 0-based index of the residue to modify
2947
2738
  */
@@ -2953,17 +2744,6 @@ export declare namespace LibraryScreenStartParams {
2953
2744
  */
2954
2745
  value: string;
2955
2746
  }
2956
- interface SmilesModification {
2957
- /**
2958
- * 0-based index of the residue to modify
2959
- */
2960
- residue_index: number;
2961
- type: 'smiles';
2962
- /**
2963
- * SMILES string for the modification
2964
- */
2965
- value: string;
2966
- }
2967
2747
  }
2968
2748
  interface DnaEntity {
2969
2749
  /**
@@ -2982,10 +2762,10 @@ export declare namespace LibraryScreenStartParams {
2982
2762
  /**
2983
2763
  * Chemical modifications. Optional; defaults to an empty list when omitted.
2984
2764
  */
2985
- modifications?: Array<DnaEntity.CcdModification | DnaEntity.SmilesModification>;
2765
+ modifications?: Array<DnaEntity.Modification>;
2986
2766
  }
2987
2767
  namespace DnaEntity {
2988
- interface CcdModification {
2768
+ interface Modification {
2989
2769
  /**
2990
2770
  * 0-based index of the residue to modify
2991
2771
  */
@@ -2997,17 +2777,6 @@ export declare namespace LibraryScreenStartParams {
2997
2777
  */
2998
2778
  value: string;
2999
2779
  }
3000
- interface SmilesModification {
3001
- /**
3002
- * 0-based index of the residue to modify
3003
- */
3004
- residue_index: number;
3005
- type: 'smiles';
3006
- /**
3007
- * SMILES string for the modification
3008
- */
3009
- value: string;
3010
- }
3011
2780
  }
3012
2781
  interface LigandCcdEntity {
3013
2782
  /**
@@ -3165,10 +2934,10 @@ export declare namespace LibraryScreenStartParams {
3165
2934
  * Post-translational modifications. Optional; defaults to an empty list when
3166
2935
  * omitted.
3167
2936
  */
3168
- modifications?: Array<ProteinEntity.CcdModification | ProteinEntity.SmilesModification>;
2937
+ modifications?: Array<ProteinEntity.Modification>;
3169
2938
  }
3170
2939
  namespace ProteinEntity {
3171
- interface CcdModification {
2940
+ interface Modification {
3172
2941
  /**
3173
2942
  * 0-based index of the residue to modify
3174
2943
  */
@@ -3180,17 +2949,6 @@ export declare namespace LibraryScreenStartParams {
3180
2949
  */
3181
2950
  value: string;
3182
2951
  }
3183
- interface SmilesModification {
3184
- /**
3185
- * 0-based index of the residue to modify
3186
- */
3187
- residue_index: number;
3188
- type: 'smiles';
3189
- /**
3190
- * SMILES string for the modification
3191
- */
3192
- value: string;
3193
- }
3194
2952
  }
3195
2953
  interface RnaEntity {
3196
2954
  /**
@@ -3209,10 +2967,10 @@ export declare namespace LibraryScreenStartParams {
3209
2967
  /**
3210
2968
  * Chemical modifications. Optional; defaults to an empty list when omitted.
3211
2969
  */
3212
- modifications?: Array<RnaEntity.CcdModification | RnaEntity.SmilesModification>;
2970
+ modifications?: Array<RnaEntity.Modification>;
3213
2971
  }
3214
2972
  namespace RnaEntity {
3215
- interface CcdModification {
2973
+ interface Modification {
3216
2974
  /**
3217
2975
  * 0-based index of the residue to modify
3218
2976
  */
@@ -3224,17 +2982,6 @@ export declare namespace LibraryScreenStartParams {
3224
2982
  */
3225
2983
  value: string;
3226
2984
  }
3227
- interface SmilesModification {
3228
- /**
3229
- * 0-based index of the residue to modify
3230
- */
3231
- residue_index: number;
3232
- type: 'smiles';
3233
- /**
3234
- * SMILES string for the modification
3235
- */
3236
- value: string;
3237
- }
3238
2985
  }
3239
2986
  interface DnaEntity {
3240
2987
  /**
@@ -3253,10 +3000,10 @@ export declare namespace LibraryScreenStartParams {
3253
3000
  /**
3254
3001
  * Chemical modifications. Optional; defaults to an empty list when omitted.
3255
3002
  */
3256
- modifications?: Array<DnaEntity.CcdModification | DnaEntity.SmilesModification>;
3003
+ modifications?: Array<DnaEntity.Modification>;
3257
3004
  }
3258
3005
  namespace DnaEntity {
3259
- interface CcdModification {
3006
+ interface Modification {
3260
3007
  /**
3261
3008
  * 0-based index of the residue to modify
3262
3009
  */
@@ -3268,17 +3015,6 @@ export declare namespace LibraryScreenStartParams {
3268
3015
  */
3269
3016
  value: string;
3270
3017
  }
3271
- interface SmilesModification {
3272
- /**
3273
- * 0-based index of the residue to modify
3274
- */
3275
- residue_index: number;
3276
- type: 'smiles';
3277
- /**
3278
- * SMILES string for the modification
3279
- */
3280
- value: string;
3281
- }
3282
3018
  }
3283
3019
  interface LigandCcdEntity {
3284
3020
  /**