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
@@ -543,14 +543,11 @@ export namespace DesignRetrieveResponse {
543
543
  /**
544
544
  * Optional polymer modifications. Defaults to [] when omitted.
545
545
  */
546
- modifications?: Array<
547
- | DesignedProteinEntityResponse.CcdModificationResponse
548
- | DesignedProteinEntityResponse.SmilesModificationResponse
549
- >;
546
+ modifications?: Array<DesignedProteinEntityResponse.Modification>;
550
547
  }
551
548
 
552
549
  export namespace DesignedProteinEntityResponse {
553
- export interface CcdModificationResponse {
550
+ export interface Modification {
554
551
  /**
555
552
  * 0-based index of the residue to modify
556
553
  */
@@ -564,20 +561,6 @@ export namespace DesignRetrieveResponse {
564
561
  */
565
562
  value: string;
566
563
  }
567
-
568
- export interface SmilesModificationResponse {
569
- /**
570
- * 0-based index of the residue to modify
571
- */
572
- residue_index: number;
573
-
574
- type: 'smiles';
575
-
576
- /**
577
- * SMILES string for the modification
578
- */
579
- value: string;
580
- }
581
564
  }
582
565
 
583
566
  /**
@@ -604,14 +587,11 @@ export namespace DesignRetrieveResponse {
604
587
  /**
605
588
  * Optional polymer modifications. Defaults to [] when omitted.
606
589
  */
607
- modifications?: Array<
608
- | FixedProteinEntityResponse.CcdModificationResponse
609
- | FixedProteinEntityResponse.SmilesModificationResponse
610
- >;
590
+ modifications?: Array<FixedProteinEntityResponse.Modification>;
611
591
  }
612
592
 
613
593
  export namespace FixedProteinEntityResponse {
614
- export interface CcdModificationResponse {
594
+ export interface Modification {
615
595
  /**
616
596
  * 0-based index of the residue to modify
617
597
  */
@@ -625,20 +605,6 @@ export namespace DesignRetrieveResponse {
625
605
  */
626
606
  value: string;
627
607
  }
628
-
629
- export interface SmilesModificationResponse {
630
- /**
631
- * 0-based index of the residue to modify
632
- */
633
- residue_index: number;
634
-
635
- type: 'smiles';
636
-
637
- /**
638
- * SMILES string for the modification
639
- */
640
- value: string;
641
- }
642
608
  }
643
609
 
644
610
  export interface FixedRnaEntityResponse {
@@ -662,13 +628,11 @@ export namespace DesignRetrieveResponse {
662
628
  /**
663
629
  * Optional polymer modifications. Defaults to [] when omitted.
664
630
  */
665
- modifications?: Array<
666
- FixedRnaEntityResponse.CcdModificationResponse | FixedRnaEntityResponse.SmilesModificationResponse
667
- >;
631
+ modifications?: Array<FixedRnaEntityResponse.Modification>;
668
632
  }
669
633
 
670
634
  export namespace FixedRnaEntityResponse {
671
- export interface CcdModificationResponse {
635
+ export interface Modification {
672
636
  /**
673
637
  * 0-based index of the residue to modify
674
638
  */
@@ -682,20 +646,6 @@ export namespace DesignRetrieveResponse {
682
646
  */
683
647
  value: string;
684
648
  }
685
-
686
- export interface SmilesModificationResponse {
687
- /**
688
- * 0-based index of the residue to modify
689
- */
690
- residue_index: number;
691
-
692
- type: 'smiles';
693
-
694
- /**
695
- * SMILES string for the modification
696
- */
697
- value: string;
698
- }
699
649
  }
700
650
 
701
651
  export interface FixedDnaEntityResponse {
@@ -719,13 +669,11 @@ export namespace DesignRetrieveResponse {
719
669
  /**
720
670
  * Optional polymer modifications. Defaults to [] when omitted.
721
671
  */
722
- modifications?: Array<
723
- FixedDnaEntityResponse.CcdModificationResponse | FixedDnaEntityResponse.SmilesModificationResponse
724
- >;
672
+ modifications?: Array<FixedDnaEntityResponse.Modification>;
725
673
  }
726
674
 
727
675
  export namespace FixedDnaEntityResponse {
728
- export interface CcdModificationResponse {
676
+ export interface Modification {
729
677
  /**
730
678
  * 0-based index of the residue to modify
731
679
  */
@@ -739,20 +687,6 @@ export namespace DesignRetrieveResponse {
739
687
  */
740
688
  value: string;
741
689
  }
742
-
743
- export interface SmilesModificationResponse {
744
- /**
745
- * 0-based index of the residue to modify
746
- */
747
- residue_index: number;
748
-
749
- type: 'smiles';
750
-
751
- /**
752
- * SMILES string for the modification
753
- */
754
- value: string;
755
- }
756
690
  }
757
691
 
758
692
  export interface FixedLigandSmilesEntityResponse {
@@ -1105,13 +1039,11 @@ export namespace DesignRetrieveResponse {
1105
1039
  * Post-translational modifications. Optional; defaults to an empty list when
1106
1040
  * omitted.
1107
1041
  */
1108
- modifications?: Array<
1109
- ProteinEntityResponse.CcdModificationResponse | ProteinEntityResponse.SmilesModificationResponse
1110
- >;
1042
+ modifications?: Array<ProteinEntityResponse.Modification>;
1111
1043
  }
1112
1044
 
1113
1045
  export namespace ProteinEntityResponse {
1114
- export interface CcdModificationResponse {
1046
+ export interface Modification {
1115
1047
  /**
1116
1048
  * 0-based index of the residue to modify
1117
1049
  */
@@ -1125,20 +1057,6 @@ export namespace DesignRetrieveResponse {
1125
1057
  */
1126
1058
  value: string;
1127
1059
  }
1128
-
1129
- export interface SmilesModificationResponse {
1130
- /**
1131
- * 0-based index of the residue to modify
1132
- */
1133
- residue_index: number;
1134
-
1135
- type: 'smiles';
1136
-
1137
- /**
1138
- * SMILES string for the modification
1139
- */
1140
- value: string;
1141
- }
1142
1060
  }
1143
1061
 
1144
1062
  export interface RnaEntityResponse {
@@ -1162,13 +1080,11 @@ export namespace DesignRetrieveResponse {
1162
1080
  /**
1163
1081
  * Chemical modifications. Optional; defaults to an empty list when omitted.
1164
1082
  */
1165
- modifications?: Array<
1166
- RnaEntityResponse.CcdModificationResponse | RnaEntityResponse.SmilesModificationResponse
1167
- >;
1083
+ modifications?: Array<RnaEntityResponse.Modification>;
1168
1084
  }
1169
1085
 
1170
1086
  export namespace RnaEntityResponse {
1171
- export interface CcdModificationResponse {
1087
+ export interface Modification {
1172
1088
  /**
1173
1089
  * 0-based index of the residue to modify
1174
1090
  */
@@ -1182,20 +1098,6 @@ export namespace DesignRetrieveResponse {
1182
1098
  */
1183
1099
  value: string;
1184
1100
  }
1185
-
1186
- export interface SmilesModificationResponse {
1187
- /**
1188
- * 0-based index of the residue to modify
1189
- */
1190
- residue_index: number;
1191
-
1192
- type: 'smiles';
1193
-
1194
- /**
1195
- * SMILES string for the modification
1196
- */
1197
- value: string;
1198
- }
1199
1101
  }
1200
1102
 
1201
1103
  export interface DnaEntityResponse {
@@ -1219,13 +1121,11 @@ export namespace DesignRetrieveResponse {
1219
1121
  /**
1220
1122
  * Chemical modifications. Optional; defaults to an empty list when omitted.
1221
1123
  */
1222
- modifications?: Array<
1223
- DnaEntityResponse.CcdModificationResponse | DnaEntityResponse.SmilesModificationResponse
1224
- >;
1124
+ modifications?: Array<DnaEntityResponse.Modification>;
1225
1125
  }
1226
1126
 
1227
1127
  export namespace DnaEntityResponse {
1228
- export interface CcdModificationResponse {
1128
+ export interface Modification {
1229
1129
  /**
1230
1130
  * 0-based index of the residue to modify
1231
1131
  */
@@ -1239,20 +1139,6 @@ export namespace DesignRetrieveResponse {
1239
1139
  */
1240
1140
  value: string;
1241
1141
  }
1242
-
1243
- export interface SmilesModificationResponse {
1244
- /**
1245
- * 0-based index of the residue to modify
1246
- */
1247
- residue_index: number;
1248
-
1249
- type: 'smiles';
1250
-
1251
- /**
1252
- * SMILES string for the modification
1253
- */
1254
- value: string;
1255
- }
1256
1142
  }
1257
1143
 
1258
1144
  export interface LigandCcdEntityResponse {
@@ -1774,11 +1660,11 @@ export namespace DesignListResultsResponse {
1774
1660
  * Post-translational modifications. Optional; defaults to an empty list when
1775
1661
  * omitted.
1776
1662
  */
1777
- modifications?: Array<ProteinEntity.CcdModification | ProteinEntity.SmilesModification>;
1663
+ modifications?: Array<ProteinEntity.Modification>;
1778
1664
  }
1779
1665
 
1780
1666
  export namespace ProteinEntity {
1781
- export interface CcdModification {
1667
+ export interface Modification {
1782
1668
  /**
1783
1669
  * 0-based index of the residue to modify
1784
1670
  */
@@ -1792,20 +1678,6 @@ export namespace DesignListResultsResponse {
1792
1678
  */
1793
1679
  value: string;
1794
1680
  }
1795
-
1796
- export interface SmilesModification {
1797
- /**
1798
- * 0-based index of the residue to modify
1799
- */
1800
- residue_index: number;
1801
-
1802
- type: 'smiles';
1803
-
1804
- /**
1805
- * SMILES string for the modification
1806
- */
1807
- value: string;
1808
- }
1809
1681
  }
1810
1682
 
1811
1683
  export interface RnaEntity {
@@ -1829,11 +1701,11 @@ export namespace DesignListResultsResponse {
1829
1701
  /**
1830
1702
  * Chemical modifications. Optional; defaults to an empty list when omitted.
1831
1703
  */
1832
- modifications?: Array<RnaEntity.CcdModification | RnaEntity.SmilesModification>;
1704
+ modifications?: Array<RnaEntity.Modification>;
1833
1705
  }
1834
1706
 
1835
1707
  export namespace RnaEntity {
1836
- export interface CcdModification {
1708
+ export interface Modification {
1837
1709
  /**
1838
1710
  * 0-based index of the residue to modify
1839
1711
  */
@@ -1847,20 +1719,6 @@ export namespace DesignListResultsResponse {
1847
1719
  */
1848
1720
  value: string;
1849
1721
  }
1850
-
1851
- export interface SmilesModification {
1852
- /**
1853
- * 0-based index of the residue to modify
1854
- */
1855
- residue_index: number;
1856
-
1857
- type: 'smiles';
1858
-
1859
- /**
1860
- * SMILES string for the modification
1861
- */
1862
- value: string;
1863
- }
1864
1722
  }
1865
1723
 
1866
1724
  export interface DnaEntity {
@@ -1884,11 +1742,11 @@ export namespace DesignListResultsResponse {
1884
1742
  /**
1885
1743
  * Chemical modifications. Optional; defaults to an empty list when omitted.
1886
1744
  */
1887
- modifications?: Array<DnaEntity.CcdModification | DnaEntity.SmilesModification>;
1745
+ modifications?: Array<DnaEntity.Modification>;
1888
1746
  }
1889
1747
 
1890
1748
  export namespace DnaEntity {
1891
- export interface CcdModification {
1749
+ export interface Modification {
1892
1750
  /**
1893
1751
  * 0-based index of the residue to modify
1894
1752
  */
@@ -1902,20 +1760,6 @@ export namespace DesignListResultsResponse {
1902
1760
  */
1903
1761
  value: string;
1904
1762
  }
1905
-
1906
- export interface SmilesModification {
1907
- /**
1908
- * 0-based index of the residue to modify
1909
- */
1910
- residue_index: number;
1911
-
1912
- type: 'smiles';
1913
-
1914
- /**
1915
- * SMILES string for the modification
1916
- */
1917
- value: string;
1918
- }
1919
1763
  }
1920
1764
 
1921
1765
  export interface LigandCcdEntity {
@@ -2364,14 +2208,11 @@ export namespace DesignStartResponse {
2364
2208
  /**
2365
2209
  * Optional polymer modifications. Defaults to [] when omitted.
2366
2210
  */
2367
- modifications?: Array<
2368
- | DesignedProteinEntityResponse.CcdModificationResponse
2369
- | DesignedProteinEntityResponse.SmilesModificationResponse
2370
- >;
2211
+ modifications?: Array<DesignedProteinEntityResponse.Modification>;
2371
2212
  }
2372
2213
 
2373
2214
  export namespace DesignedProteinEntityResponse {
2374
- export interface CcdModificationResponse {
2215
+ export interface Modification {
2375
2216
  /**
2376
2217
  * 0-based index of the residue to modify
2377
2218
  */
@@ -2385,20 +2226,6 @@ export namespace DesignStartResponse {
2385
2226
  */
2386
2227
  value: string;
2387
2228
  }
2388
-
2389
- export interface SmilesModificationResponse {
2390
- /**
2391
- * 0-based index of the residue to modify
2392
- */
2393
- residue_index: number;
2394
-
2395
- type: 'smiles';
2396
-
2397
- /**
2398
- * SMILES string for the modification
2399
- */
2400
- value: string;
2401
- }
2402
2229
  }
2403
2230
 
2404
2231
  /**
@@ -2425,14 +2252,11 @@ export namespace DesignStartResponse {
2425
2252
  /**
2426
2253
  * Optional polymer modifications. Defaults to [] when omitted.
2427
2254
  */
2428
- modifications?: Array<
2429
- | FixedProteinEntityResponse.CcdModificationResponse
2430
- | FixedProteinEntityResponse.SmilesModificationResponse
2431
- >;
2255
+ modifications?: Array<FixedProteinEntityResponse.Modification>;
2432
2256
  }
2433
2257
 
2434
2258
  export namespace FixedProteinEntityResponse {
2435
- export interface CcdModificationResponse {
2259
+ export interface Modification {
2436
2260
  /**
2437
2261
  * 0-based index of the residue to modify
2438
2262
  */
@@ -2446,20 +2270,6 @@ export namespace DesignStartResponse {
2446
2270
  */
2447
2271
  value: string;
2448
2272
  }
2449
-
2450
- export interface SmilesModificationResponse {
2451
- /**
2452
- * 0-based index of the residue to modify
2453
- */
2454
- residue_index: number;
2455
-
2456
- type: 'smiles';
2457
-
2458
- /**
2459
- * SMILES string for the modification
2460
- */
2461
- value: string;
2462
- }
2463
2273
  }
2464
2274
 
2465
2275
  export interface FixedRnaEntityResponse {
@@ -2483,13 +2293,11 @@ export namespace DesignStartResponse {
2483
2293
  /**
2484
2294
  * Optional polymer modifications. Defaults to [] when omitted.
2485
2295
  */
2486
- modifications?: Array<
2487
- FixedRnaEntityResponse.CcdModificationResponse | FixedRnaEntityResponse.SmilesModificationResponse
2488
- >;
2296
+ modifications?: Array<FixedRnaEntityResponse.Modification>;
2489
2297
  }
2490
2298
 
2491
2299
  export namespace FixedRnaEntityResponse {
2492
- export interface CcdModificationResponse {
2300
+ export interface Modification {
2493
2301
  /**
2494
2302
  * 0-based index of the residue to modify
2495
2303
  */
@@ -2503,20 +2311,6 @@ export namespace DesignStartResponse {
2503
2311
  */
2504
2312
  value: string;
2505
2313
  }
2506
-
2507
- export interface SmilesModificationResponse {
2508
- /**
2509
- * 0-based index of the residue to modify
2510
- */
2511
- residue_index: number;
2512
-
2513
- type: 'smiles';
2514
-
2515
- /**
2516
- * SMILES string for the modification
2517
- */
2518
- value: string;
2519
- }
2520
2314
  }
2521
2315
 
2522
2316
  export interface FixedDnaEntityResponse {
@@ -2540,13 +2334,11 @@ export namespace DesignStartResponse {
2540
2334
  /**
2541
2335
  * Optional polymer modifications. Defaults to [] when omitted.
2542
2336
  */
2543
- modifications?: Array<
2544
- FixedDnaEntityResponse.CcdModificationResponse | FixedDnaEntityResponse.SmilesModificationResponse
2545
- >;
2337
+ modifications?: Array<FixedDnaEntityResponse.Modification>;
2546
2338
  }
2547
2339
 
2548
2340
  export namespace FixedDnaEntityResponse {
2549
- export interface CcdModificationResponse {
2341
+ export interface Modification {
2550
2342
  /**
2551
2343
  * 0-based index of the residue to modify
2552
2344
  */
@@ -2560,20 +2352,6 @@ export namespace DesignStartResponse {
2560
2352
  */
2561
2353
  value: string;
2562
2354
  }
2563
-
2564
- export interface SmilesModificationResponse {
2565
- /**
2566
- * 0-based index of the residue to modify
2567
- */
2568
- residue_index: number;
2569
-
2570
- type: 'smiles';
2571
-
2572
- /**
2573
- * SMILES string for the modification
2574
- */
2575
- value: string;
2576
- }
2577
2355
  }
2578
2356
 
2579
2357
  export interface FixedLigandSmilesEntityResponse {
@@ -2926,13 +2704,11 @@ export namespace DesignStartResponse {
2926
2704
  * Post-translational modifications. Optional; defaults to an empty list when
2927
2705
  * omitted.
2928
2706
  */
2929
- modifications?: Array<
2930
- ProteinEntityResponse.CcdModificationResponse | ProteinEntityResponse.SmilesModificationResponse
2931
- >;
2707
+ modifications?: Array<ProteinEntityResponse.Modification>;
2932
2708
  }
2933
2709
 
2934
2710
  export namespace ProteinEntityResponse {
2935
- export interface CcdModificationResponse {
2711
+ export interface Modification {
2936
2712
  /**
2937
2713
  * 0-based index of the residue to modify
2938
2714
  */
@@ -2946,20 +2722,6 @@ export namespace DesignStartResponse {
2946
2722
  */
2947
2723
  value: string;
2948
2724
  }
2949
-
2950
- export interface SmilesModificationResponse {
2951
- /**
2952
- * 0-based index of the residue to modify
2953
- */
2954
- residue_index: number;
2955
-
2956
- type: 'smiles';
2957
-
2958
- /**
2959
- * SMILES string for the modification
2960
- */
2961
- value: string;
2962
- }
2963
2725
  }
2964
2726
 
2965
2727
  export interface RnaEntityResponse {
@@ -2983,13 +2745,11 @@ export namespace DesignStartResponse {
2983
2745
  /**
2984
2746
  * Chemical modifications. Optional; defaults to an empty list when omitted.
2985
2747
  */
2986
- modifications?: Array<
2987
- RnaEntityResponse.CcdModificationResponse | RnaEntityResponse.SmilesModificationResponse
2988
- >;
2748
+ modifications?: Array<RnaEntityResponse.Modification>;
2989
2749
  }
2990
2750
 
2991
2751
  export namespace RnaEntityResponse {
2992
- export interface CcdModificationResponse {
2752
+ export interface Modification {
2993
2753
  /**
2994
2754
  * 0-based index of the residue to modify
2995
2755
  */
@@ -3003,20 +2763,6 @@ export namespace DesignStartResponse {
3003
2763
  */
3004
2764
  value: string;
3005
2765
  }
3006
-
3007
- export interface SmilesModificationResponse {
3008
- /**
3009
- * 0-based index of the residue to modify
3010
- */
3011
- residue_index: number;
3012
-
3013
- type: 'smiles';
3014
-
3015
- /**
3016
- * SMILES string for the modification
3017
- */
3018
- value: string;
3019
- }
3020
2766
  }
3021
2767
 
3022
2768
  export interface DnaEntityResponse {
@@ -3040,13 +2786,11 @@ export namespace DesignStartResponse {
3040
2786
  /**
3041
2787
  * Chemical modifications. Optional; defaults to an empty list when omitted.
3042
2788
  */
3043
- modifications?: Array<
3044
- DnaEntityResponse.CcdModificationResponse | DnaEntityResponse.SmilesModificationResponse
3045
- >;
2789
+ modifications?: Array<DnaEntityResponse.Modification>;
3046
2790
  }
3047
2791
 
3048
2792
  export namespace DnaEntityResponse {
3049
- export interface CcdModificationResponse {
2793
+ export interface Modification {
3050
2794
  /**
3051
2795
  * 0-based index of the residue to modify
3052
2796
  */
@@ -3060,20 +2804,6 @@ export namespace DesignStartResponse {
3060
2804
  */
3061
2805
  value: string;
3062
2806
  }
3063
-
3064
- export interface SmilesModificationResponse {
3065
- /**
3066
- * 0-based index of the residue to modify
3067
- */
3068
- residue_index: number;
3069
-
3070
- type: 'smiles';
3071
-
3072
- /**
3073
- * SMILES string for the modification
3074
- */
3075
- value: string;
3076
- }
3077
2807
  }
3078
2808
 
3079
2809
  export interface LigandCcdEntityResponse {
@@ -3712,14 +3442,11 @@ export namespace DesignStopResponse {
3712
3442
  /**
3713
3443
  * Optional polymer modifications. Defaults to [] when omitted.
3714
3444
  */
3715
- modifications?: Array<
3716
- | DesignedProteinEntityResponse.CcdModificationResponse
3717
- | DesignedProteinEntityResponse.SmilesModificationResponse
3718
- >;
3445
+ modifications?: Array<DesignedProteinEntityResponse.Modification>;
3719
3446
  }
3720
3447
 
3721
3448
  export namespace DesignedProteinEntityResponse {
3722
- export interface CcdModificationResponse {
3449
+ export interface Modification {
3723
3450
  /**
3724
3451
  * 0-based index of the residue to modify
3725
3452
  */
@@ -3733,20 +3460,6 @@ export namespace DesignStopResponse {
3733
3460
  */
3734
3461
  value: string;
3735
3462
  }
3736
-
3737
- export interface SmilesModificationResponse {
3738
- /**
3739
- * 0-based index of the residue to modify
3740
- */
3741
- residue_index: number;
3742
-
3743
- type: 'smiles';
3744
-
3745
- /**
3746
- * SMILES string for the modification
3747
- */
3748
- value: string;
3749
- }
3750
3463
  }
3751
3464
 
3752
3465
  /**
@@ -3773,14 +3486,11 @@ export namespace DesignStopResponse {
3773
3486
  /**
3774
3487
  * Optional polymer modifications. Defaults to [] when omitted.
3775
3488
  */
3776
- modifications?: Array<
3777
- | FixedProteinEntityResponse.CcdModificationResponse
3778
- | FixedProteinEntityResponse.SmilesModificationResponse
3779
- >;
3489
+ modifications?: Array<FixedProteinEntityResponse.Modification>;
3780
3490
  }
3781
3491
 
3782
3492
  export namespace FixedProteinEntityResponse {
3783
- export interface CcdModificationResponse {
3493
+ export interface Modification {
3784
3494
  /**
3785
3495
  * 0-based index of the residue to modify
3786
3496
  */
@@ -3794,20 +3504,6 @@ export namespace DesignStopResponse {
3794
3504
  */
3795
3505
  value: string;
3796
3506
  }
3797
-
3798
- export interface SmilesModificationResponse {
3799
- /**
3800
- * 0-based index of the residue to modify
3801
- */
3802
- residue_index: number;
3803
-
3804
- type: 'smiles';
3805
-
3806
- /**
3807
- * SMILES string for the modification
3808
- */
3809
- value: string;
3810
- }
3811
3507
  }
3812
3508
 
3813
3509
  export interface FixedRnaEntityResponse {
@@ -3831,13 +3527,11 @@ export namespace DesignStopResponse {
3831
3527
  /**
3832
3528
  * Optional polymer modifications. Defaults to [] when omitted.
3833
3529
  */
3834
- modifications?: Array<
3835
- FixedRnaEntityResponse.CcdModificationResponse | FixedRnaEntityResponse.SmilesModificationResponse
3836
- >;
3530
+ modifications?: Array<FixedRnaEntityResponse.Modification>;
3837
3531
  }
3838
3532
 
3839
3533
  export namespace FixedRnaEntityResponse {
3840
- export interface CcdModificationResponse {
3534
+ export interface Modification {
3841
3535
  /**
3842
3536
  * 0-based index of the residue to modify
3843
3537
  */
@@ -3851,20 +3545,6 @@ export namespace DesignStopResponse {
3851
3545
  */
3852
3546
  value: string;
3853
3547
  }
3854
-
3855
- export interface SmilesModificationResponse {
3856
- /**
3857
- * 0-based index of the residue to modify
3858
- */
3859
- residue_index: number;
3860
-
3861
- type: 'smiles';
3862
-
3863
- /**
3864
- * SMILES string for the modification
3865
- */
3866
- value: string;
3867
- }
3868
3548
  }
3869
3549
 
3870
3550
  export interface FixedDnaEntityResponse {
@@ -3888,13 +3568,11 @@ export namespace DesignStopResponse {
3888
3568
  /**
3889
3569
  * Optional polymer modifications. Defaults to [] when omitted.
3890
3570
  */
3891
- modifications?: Array<
3892
- FixedDnaEntityResponse.CcdModificationResponse | FixedDnaEntityResponse.SmilesModificationResponse
3893
- >;
3571
+ modifications?: Array<FixedDnaEntityResponse.Modification>;
3894
3572
  }
3895
3573
 
3896
3574
  export namespace FixedDnaEntityResponse {
3897
- export interface CcdModificationResponse {
3575
+ export interface Modification {
3898
3576
  /**
3899
3577
  * 0-based index of the residue to modify
3900
3578
  */
@@ -3908,20 +3586,6 @@ export namespace DesignStopResponse {
3908
3586
  */
3909
3587
  value: string;
3910
3588
  }
3911
-
3912
- export interface SmilesModificationResponse {
3913
- /**
3914
- * 0-based index of the residue to modify
3915
- */
3916
- residue_index: number;
3917
-
3918
- type: 'smiles';
3919
-
3920
- /**
3921
- * SMILES string for the modification
3922
- */
3923
- value: string;
3924
- }
3925
3589
  }
3926
3590
 
3927
3591
  export interface FixedLigandSmilesEntityResponse {
@@ -4274,13 +3938,11 @@ export namespace DesignStopResponse {
4274
3938
  * Post-translational modifications. Optional; defaults to an empty list when
4275
3939
  * omitted.
4276
3940
  */
4277
- modifications?: Array<
4278
- ProteinEntityResponse.CcdModificationResponse | ProteinEntityResponse.SmilesModificationResponse
4279
- >;
3941
+ modifications?: Array<ProteinEntityResponse.Modification>;
4280
3942
  }
4281
3943
 
4282
3944
  export namespace ProteinEntityResponse {
4283
- export interface CcdModificationResponse {
3945
+ export interface Modification {
4284
3946
  /**
4285
3947
  * 0-based index of the residue to modify
4286
3948
  */
@@ -4294,20 +3956,6 @@ export namespace DesignStopResponse {
4294
3956
  */
4295
3957
  value: string;
4296
3958
  }
4297
-
4298
- export interface SmilesModificationResponse {
4299
- /**
4300
- * 0-based index of the residue to modify
4301
- */
4302
- residue_index: number;
4303
-
4304
- type: 'smiles';
4305
-
4306
- /**
4307
- * SMILES string for the modification
4308
- */
4309
- value: string;
4310
- }
4311
3959
  }
4312
3960
 
4313
3961
  export interface RnaEntityResponse {
@@ -4331,13 +3979,11 @@ export namespace DesignStopResponse {
4331
3979
  /**
4332
3980
  * Chemical modifications. Optional; defaults to an empty list when omitted.
4333
3981
  */
4334
- modifications?: Array<
4335
- RnaEntityResponse.CcdModificationResponse | RnaEntityResponse.SmilesModificationResponse
4336
- >;
3982
+ modifications?: Array<RnaEntityResponse.Modification>;
4337
3983
  }
4338
3984
 
4339
3985
  export namespace RnaEntityResponse {
4340
- export interface CcdModificationResponse {
3986
+ export interface Modification {
4341
3987
  /**
4342
3988
  * 0-based index of the residue to modify
4343
3989
  */
@@ -4351,20 +3997,6 @@ export namespace DesignStopResponse {
4351
3997
  */
4352
3998
  value: string;
4353
3999
  }
4354
-
4355
- export interface SmilesModificationResponse {
4356
- /**
4357
- * 0-based index of the residue to modify
4358
- */
4359
- residue_index: number;
4360
-
4361
- type: 'smiles';
4362
-
4363
- /**
4364
- * SMILES string for the modification
4365
- */
4366
- value: string;
4367
- }
4368
4000
  }
4369
4001
 
4370
4002
  export interface DnaEntityResponse {
@@ -4388,13 +4020,11 @@ export namespace DesignStopResponse {
4388
4020
  /**
4389
4021
  * Chemical modifications. Optional; defaults to an empty list when omitted.
4390
4022
  */
4391
- modifications?: Array<
4392
- DnaEntityResponse.CcdModificationResponse | DnaEntityResponse.SmilesModificationResponse
4393
- >;
4023
+ modifications?: Array<DnaEntityResponse.Modification>;
4394
4024
  }
4395
4025
 
4396
4026
  export namespace DnaEntityResponse {
4397
- export interface CcdModificationResponse {
4027
+ export interface Modification {
4398
4028
  /**
4399
4029
  * 0-based index of the residue to modify
4400
4030
  */
@@ -4408,20 +4038,6 @@ export namespace DesignStopResponse {
4408
4038
  */
4409
4039
  value: string;
4410
4040
  }
4411
-
4412
- export interface SmilesModificationResponse {
4413
- /**
4414
- * 0-based index of the residue to modify
4415
- */
4416
- residue_index: number;
4417
-
4418
- type: 'smiles';
4419
-
4420
- /**
4421
- * SMILES string for the modification
4422
- */
4423
- value: string;
4424
- }
4425
4041
  }
4426
4042
 
4427
4043
  export interface LigandCcdEntityResponse {
@@ -5007,11 +4623,11 @@ export namespace DesignEstimateCostParams {
5007
4623
  /**
5008
4624
  * Optional polymer modifications. Defaults to [] when omitted.
5009
4625
  */
5010
- modifications?: Array<DesignedProteinEntity.CcdModification | DesignedProteinEntity.SmilesModification>;
4626
+ modifications?: Array<DesignedProteinEntity.Modification>;
5011
4627
  }
5012
4628
 
5013
4629
  export namespace DesignedProteinEntity {
5014
- export interface CcdModification {
4630
+ export interface Modification {
5015
4631
  /**
5016
4632
  * 0-based index of the residue to modify
5017
4633
  */
@@ -5025,20 +4641,6 @@ export namespace DesignEstimateCostParams {
5025
4641
  */
5026
4642
  value: string;
5027
4643
  }
5028
-
5029
- export interface SmilesModification {
5030
- /**
5031
- * 0-based index of the residue to modify
5032
- */
5033
- residue_index: number;
5034
-
5035
- type: 'smiles';
5036
-
5037
- /**
5038
- * SMILES string for the modification
5039
- */
5040
- value: string;
5041
- }
5042
4644
  }
5043
4645
 
5044
4646
  /**
@@ -5065,11 +4667,11 @@ export namespace DesignEstimateCostParams {
5065
4667
  /**
5066
4668
  * Optional polymer modifications. Defaults to [] when omitted.
5067
4669
  */
5068
- modifications?: Array<FixedProteinEntity.CcdModification | FixedProteinEntity.SmilesModification>;
4670
+ modifications?: Array<FixedProteinEntity.Modification>;
5069
4671
  }
5070
4672
 
5071
4673
  export namespace FixedProteinEntity {
5072
- export interface CcdModification {
4674
+ export interface Modification {
5073
4675
  /**
5074
4676
  * 0-based index of the residue to modify
5075
4677
  */
@@ -5083,20 +4685,6 @@ export namespace DesignEstimateCostParams {
5083
4685
  */
5084
4686
  value: string;
5085
4687
  }
5086
-
5087
- export interface SmilesModification {
5088
- /**
5089
- * 0-based index of the residue to modify
5090
- */
5091
- residue_index: number;
5092
-
5093
- type: 'smiles';
5094
-
5095
- /**
5096
- * SMILES string for the modification
5097
- */
5098
- value: string;
5099
- }
5100
4688
  }
5101
4689
 
5102
4690
  export interface FixedRnaEntity {
@@ -5120,11 +4708,11 @@ export namespace DesignEstimateCostParams {
5120
4708
  /**
5121
4709
  * Optional polymer modifications. Defaults to [] when omitted.
5122
4710
  */
5123
- modifications?: Array<FixedRnaEntity.CcdModification | FixedRnaEntity.SmilesModification>;
4711
+ modifications?: Array<FixedRnaEntity.Modification>;
5124
4712
  }
5125
4713
 
5126
4714
  export namespace FixedRnaEntity {
5127
- export interface CcdModification {
4715
+ export interface Modification {
5128
4716
  /**
5129
4717
  * 0-based index of the residue to modify
5130
4718
  */
@@ -5138,20 +4726,6 @@ export namespace DesignEstimateCostParams {
5138
4726
  */
5139
4727
  value: string;
5140
4728
  }
5141
-
5142
- export interface SmilesModification {
5143
- /**
5144
- * 0-based index of the residue to modify
5145
- */
5146
- residue_index: number;
5147
-
5148
- type: 'smiles';
5149
-
5150
- /**
5151
- * SMILES string for the modification
5152
- */
5153
- value: string;
5154
- }
5155
4729
  }
5156
4730
 
5157
4731
  export interface FixedDnaEntity {
@@ -5175,11 +4749,11 @@ export namespace DesignEstimateCostParams {
5175
4749
  /**
5176
4750
  * Optional polymer modifications. Defaults to [] when omitted.
5177
4751
  */
5178
- modifications?: Array<FixedDnaEntity.CcdModification | FixedDnaEntity.SmilesModification>;
4752
+ modifications?: Array<FixedDnaEntity.Modification>;
5179
4753
  }
5180
4754
 
5181
4755
  export namespace FixedDnaEntity {
5182
- export interface CcdModification {
4756
+ export interface Modification {
5183
4757
  /**
5184
4758
  * 0-based index of the residue to modify
5185
4759
  */
@@ -5193,20 +4767,6 @@ export namespace DesignEstimateCostParams {
5193
4767
  */
5194
4768
  value: string;
5195
4769
  }
5196
-
5197
- export interface SmilesModification {
5198
- /**
5199
- * 0-based index of the residue to modify
5200
- */
5201
- residue_index: number;
5202
-
5203
- type: 'smiles';
5204
-
5205
- /**
5206
- * SMILES string for the modification
5207
- */
5208
- value: string;
5209
- }
5210
4770
  }
5211
4771
 
5212
4772
  export interface FixedLigandSmilesEntity {
@@ -5569,11 +5129,11 @@ export namespace DesignEstimateCostParams {
5569
5129
  * Post-translational modifications. Optional; defaults to an empty list when
5570
5130
  * omitted.
5571
5131
  */
5572
- modifications?: Array<ProteinEntity.CcdModification | ProteinEntity.SmilesModification>;
5132
+ modifications?: Array<ProteinEntity.Modification>;
5573
5133
  }
5574
5134
 
5575
5135
  export namespace ProteinEntity {
5576
- export interface CcdModification {
5136
+ export interface Modification {
5577
5137
  /**
5578
5138
  * 0-based index of the residue to modify
5579
5139
  */
@@ -5587,20 +5147,6 @@ export namespace DesignEstimateCostParams {
5587
5147
  */
5588
5148
  value: string;
5589
5149
  }
5590
-
5591
- export interface SmilesModification {
5592
- /**
5593
- * 0-based index of the residue to modify
5594
- */
5595
- residue_index: number;
5596
-
5597
- type: 'smiles';
5598
-
5599
- /**
5600
- * SMILES string for the modification
5601
- */
5602
- value: string;
5603
- }
5604
5150
  }
5605
5151
 
5606
5152
  export interface RnaEntity {
@@ -5624,11 +5170,11 @@ export namespace DesignEstimateCostParams {
5624
5170
  /**
5625
5171
  * Chemical modifications. Optional; defaults to an empty list when omitted.
5626
5172
  */
5627
- modifications?: Array<RnaEntity.CcdModification | RnaEntity.SmilesModification>;
5173
+ modifications?: Array<RnaEntity.Modification>;
5628
5174
  }
5629
5175
 
5630
5176
  export namespace RnaEntity {
5631
- export interface CcdModification {
5177
+ export interface Modification {
5632
5178
  /**
5633
5179
  * 0-based index of the residue to modify
5634
5180
  */
@@ -5642,20 +5188,6 @@ export namespace DesignEstimateCostParams {
5642
5188
  */
5643
5189
  value: string;
5644
5190
  }
5645
-
5646
- export interface SmilesModification {
5647
- /**
5648
- * 0-based index of the residue to modify
5649
- */
5650
- residue_index: number;
5651
-
5652
- type: 'smiles';
5653
-
5654
- /**
5655
- * SMILES string for the modification
5656
- */
5657
- value: string;
5658
- }
5659
5191
  }
5660
5192
 
5661
5193
  export interface DnaEntity {
@@ -5679,11 +5211,11 @@ export namespace DesignEstimateCostParams {
5679
5211
  /**
5680
5212
  * Chemical modifications. Optional; defaults to an empty list when omitted.
5681
5213
  */
5682
- modifications?: Array<DnaEntity.CcdModification | DnaEntity.SmilesModification>;
5214
+ modifications?: Array<DnaEntity.Modification>;
5683
5215
  }
5684
5216
 
5685
5217
  export namespace DnaEntity {
5686
- export interface CcdModification {
5218
+ export interface Modification {
5687
5219
  /**
5688
5220
  * 0-based index of the residue to modify
5689
5221
  */
@@ -5697,20 +5229,6 @@ export namespace DesignEstimateCostParams {
5697
5229
  */
5698
5230
  value: string;
5699
5231
  }
5700
-
5701
- export interface SmilesModification {
5702
- /**
5703
- * 0-based index of the residue to modify
5704
- */
5705
- residue_index: number;
5706
-
5707
- type: 'smiles';
5708
-
5709
- /**
5710
- * SMILES string for the modification
5711
- */
5712
- value: string;
5713
- }
5714
5232
  }
5715
5233
 
5716
5234
  export interface LigandCcdEntity {
@@ -6265,11 +5783,11 @@ export namespace DesignStartParams {
6265
5783
  /**
6266
5784
  * Optional polymer modifications. Defaults to [] when omitted.
6267
5785
  */
6268
- modifications?: Array<DesignedProteinEntity.CcdModification | DesignedProteinEntity.SmilesModification>;
5786
+ modifications?: Array<DesignedProteinEntity.Modification>;
6269
5787
  }
6270
5788
 
6271
5789
  export namespace DesignedProteinEntity {
6272
- export interface CcdModification {
5790
+ export interface Modification {
6273
5791
  /**
6274
5792
  * 0-based index of the residue to modify
6275
5793
  */
@@ -6283,20 +5801,6 @@ export namespace DesignStartParams {
6283
5801
  */
6284
5802
  value: string;
6285
5803
  }
6286
-
6287
- export interface SmilesModification {
6288
- /**
6289
- * 0-based index of the residue to modify
6290
- */
6291
- residue_index: number;
6292
-
6293
- type: 'smiles';
6294
-
6295
- /**
6296
- * SMILES string for the modification
6297
- */
6298
- value: string;
6299
- }
6300
5804
  }
6301
5805
 
6302
5806
  /**
@@ -6323,11 +5827,11 @@ export namespace DesignStartParams {
6323
5827
  /**
6324
5828
  * Optional polymer modifications. Defaults to [] when omitted.
6325
5829
  */
6326
- modifications?: Array<FixedProteinEntity.CcdModification | FixedProteinEntity.SmilesModification>;
5830
+ modifications?: Array<FixedProteinEntity.Modification>;
6327
5831
  }
6328
5832
 
6329
5833
  export namespace FixedProteinEntity {
6330
- export interface CcdModification {
5834
+ export interface Modification {
6331
5835
  /**
6332
5836
  * 0-based index of the residue to modify
6333
5837
  */
@@ -6341,20 +5845,6 @@ export namespace DesignStartParams {
6341
5845
  */
6342
5846
  value: string;
6343
5847
  }
6344
-
6345
- export interface SmilesModification {
6346
- /**
6347
- * 0-based index of the residue to modify
6348
- */
6349
- residue_index: number;
6350
-
6351
- type: 'smiles';
6352
-
6353
- /**
6354
- * SMILES string for the modification
6355
- */
6356
- value: string;
6357
- }
6358
5848
  }
6359
5849
 
6360
5850
  export interface FixedRnaEntity {
@@ -6378,11 +5868,11 @@ export namespace DesignStartParams {
6378
5868
  /**
6379
5869
  * Optional polymer modifications. Defaults to [] when omitted.
6380
5870
  */
6381
- modifications?: Array<FixedRnaEntity.CcdModification | FixedRnaEntity.SmilesModification>;
5871
+ modifications?: Array<FixedRnaEntity.Modification>;
6382
5872
  }
6383
5873
 
6384
5874
  export namespace FixedRnaEntity {
6385
- export interface CcdModification {
5875
+ export interface Modification {
6386
5876
  /**
6387
5877
  * 0-based index of the residue to modify
6388
5878
  */
@@ -6396,20 +5886,6 @@ export namespace DesignStartParams {
6396
5886
  */
6397
5887
  value: string;
6398
5888
  }
6399
-
6400
- export interface SmilesModification {
6401
- /**
6402
- * 0-based index of the residue to modify
6403
- */
6404
- residue_index: number;
6405
-
6406
- type: 'smiles';
6407
-
6408
- /**
6409
- * SMILES string for the modification
6410
- */
6411
- value: string;
6412
- }
6413
5889
  }
6414
5890
 
6415
5891
  export interface FixedDnaEntity {
@@ -6433,11 +5909,11 @@ export namespace DesignStartParams {
6433
5909
  /**
6434
5910
  * Optional polymer modifications. Defaults to [] when omitted.
6435
5911
  */
6436
- modifications?: Array<FixedDnaEntity.CcdModification | FixedDnaEntity.SmilesModification>;
5912
+ modifications?: Array<FixedDnaEntity.Modification>;
6437
5913
  }
6438
5914
 
6439
5915
  export namespace FixedDnaEntity {
6440
- export interface CcdModification {
5916
+ export interface Modification {
6441
5917
  /**
6442
5918
  * 0-based index of the residue to modify
6443
5919
  */
@@ -6451,20 +5927,6 @@ export namespace DesignStartParams {
6451
5927
  */
6452
5928
  value: string;
6453
5929
  }
6454
-
6455
- export interface SmilesModification {
6456
- /**
6457
- * 0-based index of the residue to modify
6458
- */
6459
- residue_index: number;
6460
-
6461
- type: 'smiles';
6462
-
6463
- /**
6464
- * SMILES string for the modification
6465
- */
6466
- value: string;
6467
- }
6468
5930
  }
6469
5931
 
6470
5932
  export interface FixedLigandSmilesEntity {
@@ -6827,11 +6289,11 @@ export namespace DesignStartParams {
6827
6289
  * Post-translational modifications. Optional; defaults to an empty list when
6828
6290
  * omitted.
6829
6291
  */
6830
- modifications?: Array<ProteinEntity.CcdModification | ProteinEntity.SmilesModification>;
6292
+ modifications?: Array<ProteinEntity.Modification>;
6831
6293
  }
6832
6294
 
6833
6295
  export namespace ProteinEntity {
6834
- export interface CcdModification {
6296
+ export interface Modification {
6835
6297
  /**
6836
6298
  * 0-based index of the residue to modify
6837
6299
  */
@@ -6845,20 +6307,6 @@ export namespace DesignStartParams {
6845
6307
  */
6846
6308
  value: string;
6847
6309
  }
6848
-
6849
- export interface SmilesModification {
6850
- /**
6851
- * 0-based index of the residue to modify
6852
- */
6853
- residue_index: number;
6854
-
6855
- type: 'smiles';
6856
-
6857
- /**
6858
- * SMILES string for the modification
6859
- */
6860
- value: string;
6861
- }
6862
6310
  }
6863
6311
 
6864
6312
  export interface RnaEntity {
@@ -6882,11 +6330,11 @@ export namespace DesignStartParams {
6882
6330
  /**
6883
6331
  * Chemical modifications. Optional; defaults to an empty list when omitted.
6884
6332
  */
6885
- modifications?: Array<RnaEntity.CcdModification | RnaEntity.SmilesModification>;
6333
+ modifications?: Array<RnaEntity.Modification>;
6886
6334
  }
6887
6335
 
6888
6336
  export namespace RnaEntity {
6889
- export interface CcdModification {
6337
+ export interface Modification {
6890
6338
  /**
6891
6339
  * 0-based index of the residue to modify
6892
6340
  */
@@ -6900,20 +6348,6 @@ export namespace DesignStartParams {
6900
6348
  */
6901
6349
  value: string;
6902
6350
  }
6903
-
6904
- export interface SmilesModification {
6905
- /**
6906
- * 0-based index of the residue to modify
6907
- */
6908
- residue_index: number;
6909
-
6910
- type: 'smiles';
6911
-
6912
- /**
6913
- * SMILES string for the modification
6914
- */
6915
- value: string;
6916
- }
6917
6351
  }
6918
6352
 
6919
6353
  export interface DnaEntity {
@@ -6937,11 +6371,11 @@ export namespace DesignStartParams {
6937
6371
  /**
6938
6372
  * Chemical modifications. Optional; defaults to an empty list when omitted.
6939
6373
  */
6940
- modifications?: Array<DnaEntity.CcdModification | DnaEntity.SmilesModification>;
6374
+ modifications?: Array<DnaEntity.Modification>;
6941
6375
  }
6942
6376
 
6943
6377
  export namespace DnaEntity {
6944
- export interface CcdModification {
6378
+ export interface Modification {
6945
6379
  /**
6946
6380
  * 0-based index of the residue to modify
6947
6381
  */
@@ -6955,20 +6389,6 @@ export namespace DesignStartParams {
6955
6389
  */
6956
6390
  value: string;
6957
6391
  }
6958
-
6959
- export interface SmilesModification {
6960
- /**
6961
- * 0-based index of the residue to modify
6962
- */
6963
- residue_index: number;
6964
-
6965
- type: 'smiles';
6966
-
6967
- /**
6968
- * SMILES string for the modification
6969
- */
6970
- value: string;
6971
- }
6972
6392
  }
6973
6393
 
6974
6394
  export interface LigandCcdEntity {