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.
- package/CHANGELOG.md +17 -0
- package/package.json +1 -1
- package/resources/predictions/index.d.mts +1 -1
- package/resources/predictions/index.d.mts.map +1 -1
- package/resources/predictions/index.d.ts +1 -1
- package/resources/predictions/index.d.ts.map +1 -1
- package/resources/predictions/index.js.map +1 -1
- package/resources/predictions/index.mjs.map +1 -1
- package/resources/predictions/predictions.d.mts +2 -2
- package/resources/predictions/predictions.d.mts.map +1 -1
- package/resources/predictions/predictions.d.ts +2 -2
- package/resources/predictions/predictions.d.ts.map +1 -1
- package/resources/predictions/predictions.js.map +1 -1
- package/resources/predictions/predictions.mjs.map +1 -1
- package/resources/predictions/structure-and-binding.d.mts +597 -1
- package/resources/predictions/structure-and-binding.d.mts.map +1 -1
- package/resources/predictions/structure-and-binding.d.ts +597 -1
- package/resources/predictions/structure-and-binding.d.ts.map +1 -1
- package/resources/predictions/structure-and-binding.js +30 -0
- package/resources/predictions/structure-and-binding.js.map +1 -1
- package/resources/predictions/structure-and-binding.mjs +30 -0
- package/resources/predictions/structure-and-binding.mjs.map +1 -1
- package/resources/small-molecule/design.d.mts +11 -0
- package/resources/small-molecule/design.d.mts.map +1 -1
- package/resources/small-molecule/design.d.ts +11 -0
- package/resources/small-molecule/design.d.ts.map +1 -1
- package/resources/small-molecule/library-screen.d.mts +11 -0
- package/resources/small-molecule/library-screen.d.mts.map +1 -1
- package/resources/small-molecule/library-screen.d.ts +11 -0
- package/resources/small-molecule/library-screen.d.ts.map +1 -1
- package/src/resources/predictions/index.ts +2 -0
- package/src/resources/predictions/predictions.ts +4 -0
- package/src/resources/predictions/structure-and-binding.ts +731 -0
- package/src/resources/small-molecule/design.ts +14 -0
- package/src/resources/small-molecule/library-screen.ts +14 -0
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- 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.
|
|
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.
|
|
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.
|
|
1
|
+
export declare const VERSION = "0.44.1";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.44.1'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|