@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.
- package/dist/src/client.js +1 -1
- package/dist/src/index.d.ts +1 -1
- package/dist/src/index.js +1 -3
- package/package.json +1 -1
package/dist/src/client.js
CHANGED
package/dist/src/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Main CloudGlue client class and configuration types
|
|
3
3
|
*/
|
|
4
|
-
export
|
|
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
|
-
|
|
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
|