@qbraid-core/jobs 0.12.4 → 0.12.6
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/dist/src/index.d.ts +1 -1
- package/dist/src/types.d.ts +5 -0
- package/package.json +2 -2
package/dist/src/index.d.ts
CHANGED
|
@@ -4,4 +4,4 @@
|
|
|
4
4
|
export { QuantumJobsClient, QuantumJobsClientV1 } from './client';
|
|
5
5
|
export type { Tag, TimeStamps, JobQueryParams, QuantumJobData, QuantumJobResponse, DeleteSingleJobResponse, DeleteMultipleJobsResponse, CancelResponse, } from './types';
|
|
6
6
|
export { JobStatus, JobStatusGroup } from './types';
|
|
7
|
-
export type { ExperimentType, Vendor, Provider, ProgramFormat, S3Destination, TimeStampsV1, Program, ProgramData, JobBase, JobResult, JobRequest, RuntimeJob, PlatformJob, JobQueryParamsV1, DeleteJobResponseV1, DeleteMultipleJobsResponseV1, QuantumJobsResponseV1, CancelJobResponseV1, } from './types';
|
|
7
|
+
export type { ExperimentType, Vendor, Provider, ProgramFormat, S3Destination, GCSDestination, TimeStampsV1, Program, ProgramData, JobBase, JobResult, JobRequest, RuntimeJob, PlatformJob, JobQueryParamsV1, DeleteJobResponseV1, DeleteMultipleJobsResponseV1, QuantumJobsResponseV1, CancelJobResponseV1, } from './types';
|
package/dist/src/types.d.ts
CHANGED
|
@@ -115,6 +115,10 @@ export interface S3Destination {
|
|
|
115
115
|
bucket: string;
|
|
116
116
|
directory: string;
|
|
117
117
|
}
|
|
118
|
+
export interface GCSDestination {
|
|
119
|
+
bucket: string;
|
|
120
|
+
directory: string;
|
|
121
|
+
}
|
|
118
122
|
/**
|
|
119
123
|
* Model for capturing time-related information in a job.
|
|
120
124
|
*/
|
|
@@ -179,6 +183,7 @@ export interface PlatformJob extends RuntimeJob {
|
|
|
179
183
|
providerId: string;
|
|
180
184
|
error?: string | null;
|
|
181
185
|
s3Destination: S3Destination;
|
|
186
|
+
gcsDestination: GCSDestination;
|
|
182
187
|
device: {
|
|
183
188
|
name: string;
|
|
184
189
|
status: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qbraid-core/jobs",
|
|
3
3
|
"description": "Client for the qBraid Quantum Jobs service.",
|
|
4
|
-
"version": "0.12.
|
|
4
|
+
"version": "0.12.6",
|
|
5
5
|
"main": "dist/src/index.js",
|
|
6
6
|
"types": "dist/src/index.d.ts",
|
|
7
7
|
"author": "qBraid Development Team",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {},
|
|
39
39
|
"peerDependencies": {
|
|
40
|
-
"@qbraid-core/base": "0.12.
|
|
40
|
+
"@qbraid-core/base": "0.12.6"
|
|
41
41
|
},
|
|
42
42
|
"scripts": {
|
|
43
43
|
"clean": "rimraf dist tsconfig.tsbuildinfo src/*.d.ts src/*.js",
|