boltz-api 0.39.2 → 0.40.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 +108 -16
  4. package/resources/predictions/structure-and-binding.d.mts.map +1 -1
  5. package/resources/predictions/structure-and-binding.d.ts +108 -16
  6. package/resources/predictions/structure-and-binding.d.ts.map +1 -1
  7. package/resources/protein/design.d.mts +382 -44
  8. package/resources/protein/design.d.mts.map +1 -1
  9. package/resources/protein/design.d.ts +382 -44
  10. package/resources/protein/design.d.ts.map +1 -1
  11. package/resources/protein/library-screen.d.mts +216 -32
  12. package/resources/protein/library-screen.d.mts.map +1 -1
  13. package/resources/protein/library-screen.d.ts +216 -32
  14. package/resources/protein/library-screen.d.ts.map +1 -1
  15. package/resources/small-molecule/design.d.mts +85 -10
  16. package/resources/small-molecule/design.d.mts.map +1 -1
  17. package/resources/small-molecule/design.d.ts +85 -10
  18. package/resources/small-molecule/design.d.ts.map +1 -1
  19. package/resources/small-molecule/library-screen.d.mts +45 -10
  20. package/resources/small-molecule/library-screen.d.mts.map +1 -1
  21. package/resources/small-molecule/library-screen.d.ts +45 -10
  22. package/resources/small-molecule/library-screen.d.ts.map +1 -1
  23. package/src/resources/predictions/structure-and-binding.ts +108 -16
  24. package/src/resources/protein/design.ts +390 -44
  25. package/src/resources/protein/library-screen.ts +216 -32
  26. package/src/resources/small-molecule/design.ts +93 -10
  27. package/src/resources/small-molecule/library-screen.ts +45 -10
  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
@@ -440,19 +440,26 @@ export namespace LibraryScreenRetrieveResponse {
440
440
  cyclic?: boolean;
441
441
 
442
442
  /**
443
- * Post-translational modifications. Optional; defaults to an empty list when
444
- * omitted.
443
+ * CCD post-translational modifications. Optional; defaults to an empty list when
444
+ * omitted. SMILES modifications are not supported.
445
445
  */
446
446
  modifications?: Array<ProteinEntityResponse.Modification>;
447
447
  }
448
448
 
449
449
  export namespace ProteinEntityResponse {
450
+ /**
451
+ * Polymer residue modification. Only CCD codes are supported; SMILES modifications
452
+ * are not accepted.
453
+ */
450
454
  export interface Modification {
451
455
  /**
452
456
  * 0-based index of the residue to modify
453
457
  */
454
458
  residue_index: number;
455
459
 
460
+ /**
461
+ * Modification format. Only CCD polymer modifications are supported.
462
+ */
456
463
  type: 'ccd';
457
464
 
458
465
  /**
@@ -482,18 +489,26 @@ export namespace LibraryScreenRetrieveResponse {
482
489
  cyclic?: boolean;
483
490
 
484
491
  /**
485
- * Chemical modifications. Optional; defaults to an empty list when omitted.
492
+ * CCD chemical modifications. Optional; defaults to an empty list when omitted.
493
+ * SMILES modifications are not supported.
486
494
  */
487
495
  modifications?: Array<RnaEntityResponse.Modification>;
488
496
  }
489
497
 
490
498
  export namespace RnaEntityResponse {
499
+ /**
500
+ * Polymer residue modification. Only CCD codes are supported; SMILES modifications
501
+ * are not accepted.
502
+ */
491
503
  export interface Modification {
492
504
  /**
493
505
  * 0-based index of the residue to modify
494
506
  */
495
507
  residue_index: number;
496
508
 
509
+ /**
510
+ * Modification format. Only CCD polymer modifications are supported.
511
+ */
497
512
  type: 'ccd';
498
513
 
499
514
  /**
@@ -523,18 +538,26 @@ export namespace LibraryScreenRetrieveResponse {
523
538
  cyclic?: boolean;
524
539
 
525
540
  /**
526
- * Chemical modifications. Optional; defaults to an empty list when omitted.
541
+ * CCD chemical modifications. Optional; defaults to an empty list when omitted.
542
+ * SMILES modifications are not supported.
527
543
  */
528
544
  modifications?: Array<DnaEntityResponse.Modification>;
529
545
  }
530
546
 
531
547
  export namespace DnaEntityResponse {
548
+ /**
549
+ * Polymer residue modification. Only CCD codes are supported; SMILES modifications
550
+ * are not accepted.
551
+ */
532
552
  export interface Modification {
533
553
  /**
534
554
  * 0-based index of the residue to modify
535
555
  */
536
556
  residue_index: number;
537
557
 
558
+ /**
559
+ * Modification format. Only CCD polymer modifications are supported.
560
+ */
538
561
  type: 'ccd';
539
562
 
540
563
  /**
@@ -1077,19 +1100,26 @@ export namespace LibraryScreenListResultsResponse {
1077
1100
  cyclic?: boolean;
1078
1101
 
1079
1102
  /**
1080
- * Post-translational modifications. Optional; defaults to an empty list when
1081
- * omitted.
1103
+ * CCD post-translational modifications. Optional; defaults to an empty list when
1104
+ * omitted. SMILES modifications are not supported.
1082
1105
  */
1083
1106
  modifications?: Array<ProteinEntity.Modification>;
1084
1107
  }
1085
1108
 
1086
1109
  export namespace ProteinEntity {
1110
+ /**
1111
+ * Polymer residue modification. Only CCD codes are supported; SMILES modifications
1112
+ * are not accepted.
1113
+ */
1087
1114
  export interface Modification {
1088
1115
  /**
1089
1116
  * 0-based index of the residue to modify
1090
1117
  */
1091
1118
  residue_index: number;
1092
1119
 
1120
+ /**
1121
+ * Modification format. Only CCD polymer modifications are supported.
1122
+ */
1093
1123
  type: 'ccd';
1094
1124
 
1095
1125
  /**
@@ -1119,18 +1149,26 @@ export namespace LibraryScreenListResultsResponse {
1119
1149
  cyclic?: boolean;
1120
1150
 
1121
1151
  /**
1122
- * Chemical modifications. Optional; defaults to an empty list when omitted.
1152
+ * CCD chemical modifications. Optional; defaults to an empty list when omitted.
1153
+ * SMILES modifications are not supported.
1123
1154
  */
1124
1155
  modifications?: Array<RnaEntity.Modification>;
1125
1156
  }
1126
1157
 
1127
1158
  export namespace RnaEntity {
1159
+ /**
1160
+ * Polymer residue modification. Only CCD codes are supported; SMILES modifications
1161
+ * are not accepted.
1162
+ */
1128
1163
  export interface Modification {
1129
1164
  /**
1130
1165
  * 0-based index of the residue to modify
1131
1166
  */
1132
1167
  residue_index: number;
1133
1168
 
1169
+ /**
1170
+ * Modification format. Only CCD polymer modifications are supported.
1171
+ */
1134
1172
  type: 'ccd';
1135
1173
 
1136
1174
  /**
@@ -1160,18 +1198,26 @@ export namespace LibraryScreenListResultsResponse {
1160
1198
  cyclic?: boolean;
1161
1199
 
1162
1200
  /**
1163
- * Chemical modifications. Optional; defaults to an empty list when omitted.
1201
+ * CCD chemical modifications. Optional; defaults to an empty list when omitted.
1202
+ * SMILES modifications are not supported.
1164
1203
  */
1165
1204
  modifications?: Array<DnaEntity.Modification>;
1166
1205
  }
1167
1206
 
1168
1207
  export namespace DnaEntity {
1208
+ /**
1209
+ * Polymer residue modification. Only CCD codes are supported; SMILES modifications
1210
+ * are not accepted.
1211
+ */
1169
1212
  export interface Modification {
1170
1213
  /**
1171
1214
  * 0-based index of the residue to modify
1172
1215
  */
1173
1216
  residue_index: number;
1174
1217
 
1218
+ /**
1219
+ * Modification format. Only CCD polymer modifications are supported.
1220
+ */
1175
1221
  type: 'ccd';
1176
1222
 
1177
1223
  /**
@@ -1520,19 +1566,26 @@ export namespace LibraryScreenStartResponse {
1520
1566
  cyclic?: boolean;
1521
1567
 
1522
1568
  /**
1523
- * Post-translational modifications. Optional; defaults to an empty list when
1524
- * omitted.
1569
+ * CCD post-translational modifications. Optional; defaults to an empty list when
1570
+ * omitted. SMILES modifications are not supported.
1525
1571
  */
1526
1572
  modifications?: Array<ProteinEntityResponse.Modification>;
1527
1573
  }
1528
1574
 
1529
1575
  export namespace ProteinEntityResponse {
1576
+ /**
1577
+ * Polymer residue modification. Only CCD codes are supported; SMILES modifications
1578
+ * are not accepted.
1579
+ */
1530
1580
  export interface Modification {
1531
1581
  /**
1532
1582
  * 0-based index of the residue to modify
1533
1583
  */
1534
1584
  residue_index: number;
1535
1585
 
1586
+ /**
1587
+ * Modification format. Only CCD polymer modifications are supported.
1588
+ */
1536
1589
  type: 'ccd';
1537
1590
 
1538
1591
  /**
@@ -1562,18 +1615,26 @@ export namespace LibraryScreenStartResponse {
1562
1615
  cyclic?: boolean;
1563
1616
 
1564
1617
  /**
1565
- * Chemical modifications. Optional; defaults to an empty list when omitted.
1618
+ * CCD chemical modifications. Optional; defaults to an empty list when omitted.
1619
+ * SMILES modifications are not supported.
1566
1620
  */
1567
1621
  modifications?: Array<RnaEntityResponse.Modification>;
1568
1622
  }
1569
1623
 
1570
1624
  export namespace RnaEntityResponse {
1625
+ /**
1626
+ * Polymer residue modification. Only CCD codes are supported; SMILES modifications
1627
+ * are not accepted.
1628
+ */
1571
1629
  export interface Modification {
1572
1630
  /**
1573
1631
  * 0-based index of the residue to modify
1574
1632
  */
1575
1633
  residue_index: number;
1576
1634
 
1635
+ /**
1636
+ * Modification format. Only CCD polymer modifications are supported.
1637
+ */
1577
1638
  type: 'ccd';
1578
1639
 
1579
1640
  /**
@@ -1603,18 +1664,26 @@ export namespace LibraryScreenStartResponse {
1603
1664
  cyclic?: boolean;
1604
1665
 
1605
1666
  /**
1606
- * Chemical modifications. Optional; defaults to an empty list when omitted.
1667
+ * CCD chemical modifications. Optional; defaults to an empty list when omitted.
1668
+ * SMILES modifications are not supported.
1607
1669
  */
1608
1670
  modifications?: Array<DnaEntityResponse.Modification>;
1609
1671
  }
1610
1672
 
1611
1673
  export namespace DnaEntityResponse {
1674
+ /**
1675
+ * Polymer residue modification. Only CCD codes are supported; SMILES modifications
1676
+ * are not accepted.
1677
+ */
1612
1678
  export interface Modification {
1613
1679
  /**
1614
1680
  * 0-based index of the residue to modify
1615
1681
  */
1616
1682
  residue_index: number;
1617
1683
 
1684
+ /**
1685
+ * Modification format. Only CCD polymer modifications are supported.
1686
+ */
1618
1687
  type: 'ccd';
1619
1688
 
1620
1689
  /**
@@ -2158,19 +2227,26 @@ export namespace LibraryScreenStopResponse {
2158
2227
  cyclic?: boolean;
2159
2228
 
2160
2229
  /**
2161
- * Post-translational modifications. Optional; defaults to an empty list when
2162
- * omitted.
2230
+ * CCD post-translational modifications. Optional; defaults to an empty list when
2231
+ * omitted. SMILES modifications are not supported.
2163
2232
  */
2164
2233
  modifications?: Array<ProteinEntityResponse.Modification>;
2165
2234
  }
2166
2235
 
2167
2236
  export namespace ProteinEntityResponse {
2237
+ /**
2238
+ * Polymer residue modification. Only CCD codes are supported; SMILES modifications
2239
+ * are not accepted.
2240
+ */
2168
2241
  export interface Modification {
2169
2242
  /**
2170
2243
  * 0-based index of the residue to modify
2171
2244
  */
2172
2245
  residue_index: number;
2173
2246
 
2247
+ /**
2248
+ * Modification format. Only CCD polymer modifications are supported.
2249
+ */
2174
2250
  type: 'ccd';
2175
2251
 
2176
2252
  /**
@@ -2200,18 +2276,26 @@ export namespace LibraryScreenStopResponse {
2200
2276
  cyclic?: boolean;
2201
2277
 
2202
2278
  /**
2203
- * Chemical modifications. Optional; defaults to an empty list when omitted.
2279
+ * CCD chemical modifications. Optional; defaults to an empty list when omitted.
2280
+ * SMILES modifications are not supported.
2204
2281
  */
2205
2282
  modifications?: Array<RnaEntityResponse.Modification>;
2206
2283
  }
2207
2284
 
2208
2285
  export namespace RnaEntityResponse {
2286
+ /**
2287
+ * Polymer residue modification. Only CCD codes are supported; SMILES modifications
2288
+ * are not accepted.
2289
+ */
2209
2290
  export interface Modification {
2210
2291
  /**
2211
2292
  * 0-based index of the residue to modify
2212
2293
  */
2213
2294
  residue_index: number;
2214
2295
 
2296
+ /**
2297
+ * Modification format. Only CCD polymer modifications are supported.
2298
+ */
2215
2299
  type: 'ccd';
2216
2300
 
2217
2301
  /**
@@ -2241,18 +2325,26 @@ export namespace LibraryScreenStopResponse {
2241
2325
  cyclic?: boolean;
2242
2326
 
2243
2327
  /**
2244
- * Chemical modifications. Optional; defaults to an empty list when omitted.
2328
+ * CCD chemical modifications. Optional; defaults to an empty list when omitted.
2329
+ * SMILES modifications are not supported.
2245
2330
  */
2246
2331
  modifications?: Array<DnaEntityResponse.Modification>;
2247
2332
  }
2248
2333
 
2249
2334
  export namespace DnaEntityResponse {
2335
+ /**
2336
+ * Polymer residue modification. Only CCD codes are supported; SMILES modifications
2337
+ * are not accepted.
2338
+ */
2250
2339
  export interface Modification {
2251
2340
  /**
2252
2341
  * 0-based index of the residue to modify
2253
2342
  */
2254
2343
  residue_index: number;
2255
2344
 
2345
+ /**
2346
+ * Modification format. Only CCD polymer modifications are supported.
2347
+ */
2256
2348
  type: 'ccd';
2257
2349
 
2258
2350
  /**
@@ -2627,19 +2719,26 @@ export namespace LibraryScreenEstimateCostParams {
2627
2719
  cyclic?: boolean;
2628
2720
 
2629
2721
  /**
2630
- * Post-translational modifications. Optional; defaults to an empty list when
2631
- * omitted.
2722
+ * CCD post-translational modifications. Optional; defaults to an empty list when
2723
+ * omitted. SMILES modifications are not supported.
2632
2724
  */
2633
2725
  modifications?: Array<ProteinEntity.Modification>;
2634
2726
  }
2635
2727
 
2636
2728
  export namespace ProteinEntity {
2729
+ /**
2730
+ * Polymer residue modification. Only CCD codes are supported; SMILES modifications
2731
+ * are not accepted.
2732
+ */
2637
2733
  export interface Modification {
2638
2734
  /**
2639
2735
  * 0-based index of the residue to modify
2640
2736
  */
2641
2737
  residue_index: number;
2642
2738
 
2739
+ /**
2740
+ * Modification format. Only CCD polymer modifications are supported.
2741
+ */
2643
2742
  type: 'ccd';
2644
2743
 
2645
2744
  /**
@@ -2669,18 +2768,26 @@ export namespace LibraryScreenEstimateCostParams {
2669
2768
  cyclic?: boolean;
2670
2769
 
2671
2770
  /**
2672
- * Chemical modifications. Optional; defaults to an empty list when omitted.
2771
+ * CCD chemical modifications. Optional; defaults to an empty list when omitted.
2772
+ * SMILES modifications are not supported.
2673
2773
  */
2674
2774
  modifications?: Array<RnaEntity.Modification>;
2675
2775
  }
2676
2776
 
2677
2777
  export namespace RnaEntity {
2778
+ /**
2779
+ * Polymer residue modification. Only CCD codes are supported; SMILES modifications
2780
+ * are not accepted.
2781
+ */
2678
2782
  export interface Modification {
2679
2783
  /**
2680
2784
  * 0-based index of the residue to modify
2681
2785
  */
2682
2786
  residue_index: number;
2683
2787
 
2788
+ /**
2789
+ * Modification format. Only CCD polymer modifications are supported.
2790
+ */
2684
2791
  type: 'ccd';
2685
2792
 
2686
2793
  /**
@@ -2710,18 +2817,26 @@ export namespace LibraryScreenEstimateCostParams {
2710
2817
  cyclic?: boolean;
2711
2818
 
2712
2819
  /**
2713
- * Chemical modifications. Optional; defaults to an empty list when omitted.
2820
+ * CCD chemical modifications. Optional; defaults to an empty list when omitted.
2821
+ * SMILES modifications are not supported.
2714
2822
  */
2715
2823
  modifications?: Array<DnaEntity.Modification>;
2716
2824
  }
2717
2825
 
2718
2826
  export namespace DnaEntity {
2827
+ /**
2828
+ * Polymer residue modification. Only CCD codes are supported; SMILES modifications
2829
+ * are not accepted.
2830
+ */
2719
2831
  export interface Modification {
2720
2832
  /**
2721
2833
  * 0-based index of the residue to modify
2722
2834
  */
2723
2835
  residue_index: number;
2724
2836
 
2837
+ /**
2838
+ * Modification format. Only CCD polymer modifications are supported.
2839
+ */
2725
2840
  type: 'ccd';
2726
2841
 
2727
2842
  /**
@@ -2920,19 +3035,26 @@ export namespace LibraryScreenEstimateCostParams {
2920
3035
  cyclic?: boolean;
2921
3036
 
2922
3037
  /**
2923
- * Post-translational modifications. Optional; defaults to an empty list when
2924
- * omitted.
3038
+ * CCD post-translational modifications. Optional; defaults to an empty list when
3039
+ * omitted. SMILES modifications are not supported.
2925
3040
  */
2926
3041
  modifications?: Array<ProteinEntity.Modification>;
2927
3042
  }
2928
3043
 
2929
3044
  export namespace ProteinEntity {
3045
+ /**
3046
+ * Polymer residue modification. Only CCD codes are supported; SMILES modifications
3047
+ * are not accepted.
3048
+ */
2930
3049
  export interface Modification {
2931
3050
  /**
2932
3051
  * 0-based index of the residue to modify
2933
3052
  */
2934
3053
  residue_index: number;
2935
3054
 
3055
+ /**
3056
+ * Modification format. Only CCD polymer modifications are supported.
3057
+ */
2936
3058
  type: 'ccd';
2937
3059
 
2938
3060
  /**
@@ -2962,18 +3084,26 @@ export namespace LibraryScreenEstimateCostParams {
2962
3084
  cyclic?: boolean;
2963
3085
 
2964
3086
  /**
2965
- * Chemical modifications. Optional; defaults to an empty list when omitted.
3087
+ * CCD chemical modifications. Optional; defaults to an empty list when omitted.
3088
+ * SMILES modifications are not supported.
2966
3089
  */
2967
3090
  modifications?: Array<RnaEntity.Modification>;
2968
3091
  }
2969
3092
 
2970
3093
  export namespace RnaEntity {
3094
+ /**
3095
+ * Polymer residue modification. Only CCD codes are supported; SMILES modifications
3096
+ * are not accepted.
3097
+ */
2971
3098
  export interface Modification {
2972
3099
  /**
2973
3100
  * 0-based index of the residue to modify
2974
3101
  */
2975
3102
  residue_index: number;
2976
3103
 
3104
+ /**
3105
+ * Modification format. Only CCD polymer modifications are supported.
3106
+ */
2977
3107
  type: 'ccd';
2978
3108
 
2979
3109
  /**
@@ -3003,18 +3133,26 @@ export namespace LibraryScreenEstimateCostParams {
3003
3133
  cyclic?: boolean;
3004
3134
 
3005
3135
  /**
3006
- * Chemical modifications. Optional; defaults to an empty list when omitted.
3136
+ * CCD chemical modifications. Optional; defaults to an empty list when omitted.
3137
+ * SMILES modifications are not supported.
3007
3138
  */
3008
3139
  modifications?: Array<DnaEntity.Modification>;
3009
3140
  }
3010
3141
 
3011
3142
  export namespace DnaEntity {
3143
+ /**
3144
+ * Polymer residue modification. Only CCD codes are supported; SMILES modifications
3145
+ * are not accepted.
3146
+ */
3012
3147
  export interface Modification {
3013
3148
  /**
3014
3149
  * 0-based index of the residue to modify
3015
3150
  */
3016
3151
  residue_index: number;
3017
3152
 
3153
+ /**
3154
+ * Modification format. Only CCD polymer modifications are supported.
3155
+ */
3018
3156
  type: 'ccd';
3019
3157
 
3020
3158
  /**
@@ -3351,19 +3489,26 @@ export namespace LibraryScreenStartParams {
3351
3489
  cyclic?: boolean;
3352
3490
 
3353
3491
  /**
3354
- * Post-translational modifications. Optional; defaults to an empty list when
3355
- * omitted.
3492
+ * CCD post-translational modifications. Optional; defaults to an empty list when
3493
+ * omitted. SMILES modifications are not supported.
3356
3494
  */
3357
3495
  modifications?: Array<ProteinEntity.Modification>;
3358
3496
  }
3359
3497
 
3360
3498
  export namespace ProteinEntity {
3499
+ /**
3500
+ * Polymer residue modification. Only CCD codes are supported; SMILES modifications
3501
+ * are not accepted.
3502
+ */
3361
3503
  export interface Modification {
3362
3504
  /**
3363
3505
  * 0-based index of the residue to modify
3364
3506
  */
3365
3507
  residue_index: number;
3366
3508
 
3509
+ /**
3510
+ * Modification format. Only CCD polymer modifications are supported.
3511
+ */
3367
3512
  type: 'ccd';
3368
3513
 
3369
3514
  /**
@@ -3393,18 +3538,26 @@ export namespace LibraryScreenStartParams {
3393
3538
  cyclic?: boolean;
3394
3539
 
3395
3540
  /**
3396
- * Chemical modifications. Optional; defaults to an empty list when omitted.
3541
+ * CCD chemical modifications. Optional; defaults to an empty list when omitted.
3542
+ * SMILES modifications are not supported.
3397
3543
  */
3398
3544
  modifications?: Array<RnaEntity.Modification>;
3399
3545
  }
3400
3546
 
3401
3547
  export namespace RnaEntity {
3548
+ /**
3549
+ * Polymer residue modification. Only CCD codes are supported; SMILES modifications
3550
+ * are not accepted.
3551
+ */
3402
3552
  export interface Modification {
3403
3553
  /**
3404
3554
  * 0-based index of the residue to modify
3405
3555
  */
3406
3556
  residue_index: number;
3407
3557
 
3558
+ /**
3559
+ * Modification format. Only CCD polymer modifications are supported.
3560
+ */
3408
3561
  type: 'ccd';
3409
3562
 
3410
3563
  /**
@@ -3434,18 +3587,26 @@ export namespace LibraryScreenStartParams {
3434
3587
  cyclic?: boolean;
3435
3588
 
3436
3589
  /**
3437
- * Chemical modifications. Optional; defaults to an empty list when omitted.
3590
+ * CCD chemical modifications. Optional; defaults to an empty list when omitted.
3591
+ * SMILES modifications are not supported.
3438
3592
  */
3439
3593
  modifications?: Array<DnaEntity.Modification>;
3440
3594
  }
3441
3595
 
3442
3596
  export namespace DnaEntity {
3597
+ /**
3598
+ * Polymer residue modification. Only CCD codes are supported; SMILES modifications
3599
+ * are not accepted.
3600
+ */
3443
3601
  export interface Modification {
3444
3602
  /**
3445
3603
  * 0-based index of the residue to modify
3446
3604
  */
3447
3605
  residue_index: number;
3448
3606
 
3607
+ /**
3608
+ * Modification format. Only CCD polymer modifications are supported.
3609
+ */
3449
3610
  type: 'ccd';
3450
3611
 
3451
3612
  /**
@@ -3644,19 +3805,26 @@ export namespace LibraryScreenStartParams {
3644
3805
  cyclic?: boolean;
3645
3806
 
3646
3807
  /**
3647
- * Post-translational modifications. Optional; defaults to an empty list when
3648
- * omitted.
3808
+ * CCD post-translational modifications. Optional; defaults to an empty list when
3809
+ * omitted. SMILES modifications are not supported.
3649
3810
  */
3650
3811
  modifications?: Array<ProteinEntity.Modification>;
3651
3812
  }
3652
3813
 
3653
3814
  export namespace ProteinEntity {
3815
+ /**
3816
+ * Polymer residue modification. Only CCD codes are supported; SMILES modifications
3817
+ * are not accepted.
3818
+ */
3654
3819
  export interface Modification {
3655
3820
  /**
3656
3821
  * 0-based index of the residue to modify
3657
3822
  */
3658
3823
  residue_index: number;
3659
3824
 
3825
+ /**
3826
+ * Modification format. Only CCD polymer modifications are supported.
3827
+ */
3660
3828
  type: 'ccd';
3661
3829
 
3662
3830
  /**
@@ -3686,18 +3854,26 @@ export namespace LibraryScreenStartParams {
3686
3854
  cyclic?: boolean;
3687
3855
 
3688
3856
  /**
3689
- * Chemical modifications. Optional; defaults to an empty list when omitted.
3857
+ * CCD chemical modifications. Optional; defaults to an empty list when omitted.
3858
+ * SMILES modifications are not supported.
3690
3859
  */
3691
3860
  modifications?: Array<RnaEntity.Modification>;
3692
3861
  }
3693
3862
 
3694
3863
  export namespace RnaEntity {
3864
+ /**
3865
+ * Polymer residue modification. Only CCD codes are supported; SMILES modifications
3866
+ * are not accepted.
3867
+ */
3695
3868
  export interface Modification {
3696
3869
  /**
3697
3870
  * 0-based index of the residue to modify
3698
3871
  */
3699
3872
  residue_index: number;
3700
3873
 
3874
+ /**
3875
+ * Modification format. Only CCD polymer modifications are supported.
3876
+ */
3701
3877
  type: 'ccd';
3702
3878
 
3703
3879
  /**
@@ -3727,18 +3903,26 @@ export namespace LibraryScreenStartParams {
3727
3903
  cyclic?: boolean;
3728
3904
 
3729
3905
  /**
3730
- * Chemical modifications. Optional; defaults to an empty list when omitted.
3906
+ * CCD chemical modifications. Optional; defaults to an empty list when omitted.
3907
+ * SMILES modifications are not supported.
3731
3908
  */
3732
3909
  modifications?: Array<DnaEntity.Modification>;
3733
3910
  }
3734
3911
 
3735
3912
  export namespace DnaEntity {
3913
+ /**
3914
+ * Polymer residue modification. Only CCD codes are supported; SMILES modifications
3915
+ * are not accepted.
3916
+ */
3736
3917
  export interface Modification {
3737
3918
  /**
3738
3919
  * 0-based index of the residue to modify
3739
3920
  */
3740
3921
  residue_index: number;
3741
3922
 
3923
+ /**
3924
+ * Modification format. Only CCD polymer modifications are supported.
3925
+ */
3742
3926
  type: 'ccd';
3743
3927
 
3744
3928
  /**