boltz-api 0.43.0 → 0.44.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/package.json +1 -1
  3. package/resources/predictions/index.d.mts +1 -1
  4. package/resources/predictions/index.d.mts.map +1 -1
  5. package/resources/predictions/index.d.ts +1 -1
  6. package/resources/predictions/index.d.ts.map +1 -1
  7. package/resources/predictions/index.js.map +1 -1
  8. package/resources/predictions/index.mjs.map +1 -1
  9. package/resources/predictions/predictions.d.mts +2 -2
  10. package/resources/predictions/predictions.d.mts.map +1 -1
  11. package/resources/predictions/predictions.d.ts +2 -2
  12. package/resources/predictions/predictions.d.ts.map +1 -1
  13. package/resources/predictions/predictions.js.map +1 -1
  14. package/resources/predictions/predictions.mjs.map +1 -1
  15. package/resources/predictions/structure-and-binding.d.mts +597 -1
  16. package/resources/predictions/structure-and-binding.d.mts.map +1 -1
  17. package/resources/predictions/structure-and-binding.d.ts +597 -1
  18. package/resources/predictions/structure-and-binding.d.ts.map +1 -1
  19. package/resources/predictions/structure-and-binding.js +30 -0
  20. package/resources/predictions/structure-and-binding.js.map +1 -1
  21. package/resources/predictions/structure-and-binding.mjs +30 -0
  22. package/resources/predictions/structure-and-binding.mjs.map +1 -1
  23. package/resources/small-molecule/design.d.mts +11 -0
  24. package/resources/small-molecule/design.d.mts.map +1 -1
  25. package/resources/small-molecule/design.d.ts +11 -0
  26. package/resources/small-molecule/design.d.ts.map +1 -1
  27. package/resources/small-molecule/library-screen.d.mts +11 -0
  28. package/resources/small-molecule/library-screen.d.mts.map +1 -1
  29. package/resources/small-molecule/library-screen.d.ts +11 -0
  30. package/resources/small-molecule/library-screen.d.ts.map +1 -1
  31. package/src/resources/predictions/index.ts +2 -0
  32. package/src/resources/predictions/predictions.ts +4 -0
  33. package/src/resources/predictions/structure-and-binding.ts +731 -0
  34. package/src/resources/small-molecule/design.ts +14 -0
  35. package/src/resources/small-molecule/library-screen.ts +14 -0
  36. package/src/version.ts +1 -1
  37. package/version.d.mts +1 -1
  38. package/version.d.ts +1 -1
  39. package/version.js +1 -1
  40. package/version.mjs +1 -1
@@ -1143,6 +1143,8 @@ export namespace DesignListResultsResponse {
1143
1143
  archive: Artifacts.Archive;
1144
1144
 
1145
1145
  structure: Artifacts.Structure;
1146
+
1147
+ ligand_structure?: Artifacts.LigandStructure;
1146
1148
  }
1147
1149
 
1148
1150
  export namespace Artifacts {
@@ -1169,6 +1171,18 @@ export namespace DesignListResultsResponse {
1169
1171
  */
1170
1172
  url_expires_at: string;
1171
1173
  }
1174
+
1175
+ export interface LigandStructure {
1176
+ /**
1177
+ * URL to download the file
1178
+ */
1179
+ url: string;
1180
+
1181
+ /**
1182
+ * When the presigned URL expires
1183
+ */
1184
+ url_expires_at: string;
1185
+ }
1172
1186
  }
1173
1187
 
1174
1188
  /**
@@ -1182,6 +1182,8 @@ export namespace LibraryScreenListResultsResponse {
1182
1182
  archive: Artifacts.Archive;
1183
1183
 
1184
1184
  structure: Artifacts.Structure;
1185
+
1186
+ ligand_structure?: Artifacts.LigandStructure;
1185
1187
  }
1186
1188
 
1187
1189
  export namespace Artifacts {
@@ -1208,6 +1210,18 @@ export namespace LibraryScreenListResultsResponse {
1208
1210
  */
1209
1211
  url_expires_at: string;
1210
1212
  }
1213
+
1214
+ export interface LigandStructure {
1215
+ /**
1216
+ * URL to download the file
1217
+ */
1218
+ url: string;
1219
+
1220
+ /**
1221
+ * When the presigned URL expires
1222
+ */
1223
+ url_expires_at: string;
1224
+ }
1211
1225
  }
1212
1226
 
1213
1227
  /**
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '0.43.0'; // x-release-please-version
1
+ export const VERSION = '0.44.1'; // x-release-please-version
package/version.d.mts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.43.0";
1
+ export declare const VERSION = "0.44.1";
2
2
  //# sourceMappingURL=version.d.mts.map
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.43.0";
1
+ export declare const VERSION = "0.44.1";
2
2
  //# sourceMappingURL=version.d.ts.map
package/version.js CHANGED
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VERSION = void 0;
4
- exports.VERSION = '0.43.0'; // x-release-please-version
4
+ exports.VERSION = '0.44.1'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '0.43.0'; // x-release-please-version
1
+ export const VERSION = '0.44.1'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map