@qbraid-core/ibm-cloud 0.10.0 → 0.10.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.
@@ -2,4 +2,5 @@
2
2
  * @module ibm-cloud
3
3
  */
4
4
  export { IBMCloudClient } from './client';
5
+ export { IBMConfigManager } from './config';
5
6
  export type { APIErrorResponse, Job, JobMetrics, JobList, DeviceProperties, DeviceErrors, DeviceStatus, DeviceConfiguration, } from './types';
package/dist/src/index.js CHANGED
@@ -2,10 +2,12 @@
2
2
  // Copyright (c) 2025, qBraid Development Team
3
3
  // All rights reserved.
4
4
  Object.defineProperty(exports, "__esModule", { value: true });
5
- exports.IBMCloudClient = void 0;
5
+ exports.IBMConfigManager = exports.IBMCloudClient = void 0;
6
6
  /**
7
7
  * @module ibm-cloud
8
8
  */
9
9
  var client_1 = require("./client");
10
10
  Object.defineProperty(exports, "IBMCloudClient", { enumerable: true, get: function () { return client_1.IBMCloudClient; } });
11
+ var config_1 = require("./config");
12
+ Object.defineProperty(exports, "IBMConfigManager", { enumerable: true, get: function () { return config_1.IBMConfigManager; } });
11
13
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";AAAA,8CAA8C;AAC9C,uBAAuB;;;AAEvB;;GAEG;AACH,mCAA0C;AAAjC,wGAAA,cAAc,OAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";AAAA,8CAA8C;AAC9C,uBAAuB;;;AAEvB;;GAEG;AACH,mCAA0C;AAAjC,wGAAA,cAAc,OAAA;AACvB,mCAA4C;AAAnC,0GAAA,gBAAgB,OAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qbraid-core/ibm-cloud",
3
- "version": "0.10.0",
3
+ "version": "0.10.1",
4
4
  "main": "dist/src/index.js",
5
5
  "types": "dist/src/index.d.ts",
6
6
  "description": "Client for interacting with IBM's Qiskit Runtime Service via the IBM Cloud API.",
@@ -31,7 +31,7 @@
31
31
  "homepage": "https://qbraid.github.io/qbraid-core-js/modules/ibm-cloud.html",
32
32
  "dependencies": {
33
33
  "axios": "^1.8.2",
34
- "@qbraid-core/base": "0.10.0"
34
+ "@qbraid-core/base": "0.10.1"
35
35
  },
36
36
  "scripts": {
37
37
  "clean": "rimraf dist tsconfig.tsbuildinfo src/*.js",