@aviaryhq/cloudglue-js 0.2.3 → 0.2.4

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.
@@ -442,7 +442,7 @@ class CloudGlue {
442
442
  headers: {
443
443
  Authorization: `Bearer ${this.apiKey}`,
444
444
  'x-sdk-client': 'cloudglue-js',
445
- 'x-sdk-version': '0.2.3',
445
+ 'x-sdk-version': '0.2.4',
446
446
  },
447
447
  baseURL: this.baseUrl,
448
448
  timeout: this.timeout,
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * Main CloudGlue client class and configuration types
3
3
  */
4
- export { CloudGlue, type CloudGlueConfig, type CloudGlueError, type Filter, type ListFilesParams } from './client';
4
+ export * from './client';
5
5
  /**
6
6
  * Generated API clients for advanced usage
7
7
  * These provide direct access to the underlying API endpoints
package/dist/src/index.js CHANGED
@@ -14,12 +14,10 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
- exports.CloudGlue = void 0;
18
17
  /**
19
18
  * Main CloudGlue client class and configuration types
20
19
  */
21
- var client_1 = require("./client");
22
- Object.defineProperty(exports, "CloudGlue", { enumerable: true, get: function () { return client_1.CloudGlue; } });
20
+ __exportStar(require("./client"), exports);
23
21
  /**
24
22
  * Generated API clients for advanced usage
25
23
  * These provide direct access to the underlying API endpoints
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aviaryhq/cloudglue-js",
3
- "version": "0.2.3",
3
+ "version": "0.2.4",
4
4
  "description": "Cloudglue API client for Node.js",
5
5
  "main": "dist/src/index.js",
6
6
  "types": "dist/src/index.d.ts",