@flowcore/sdk 1.5.0 → 1.6.0
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 +7 -0
- package/esm/mod.d.ts +2 -1
- package/esm/mod.d.ts.map +1 -1
- package/esm/mod.js +2 -1
- package/package.json +1 -1
- package/script/mod.d.ts +2 -1
- package/script/mod.d.ts.map +1 -1
- package/script/mod.js +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.6.0](https://github.com/flowcore-io/flowcore-sdk/compare/v1.5.0...v1.6.0) (2024-12-31)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **exports:** :technologist: export parsed helper method ([4f781bc](https://github.com/flowcore-io/flowcore-sdk/commit/4f781bcf1ca0169f8b8b4361b201e2f38ea61d7c))
|
|
9
|
+
|
|
3
10
|
## [1.5.0](https://github.com/flowcore-io/flowcore-sdk/compare/v1.4.5...v1.5.0) (2024-12-19)
|
|
4
11
|
|
|
5
12
|
|
package/esm/mod.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from "./commands/index.js";
|
|
2
|
-
export * from "./common/flowcore-client.js";
|
|
3
2
|
export * from "./common/command.js";
|
|
3
|
+
export * from "./common/flowcore-client.js";
|
|
4
4
|
export * from "./contracts/index.js";
|
|
5
5
|
export * from "./exceptions/index.js";
|
|
6
|
+
export * from "./utils/parse-response-helper.js";
|
|
6
7
|
//# sourceMappingURL=mod.d.ts.map
|
package/esm/mod.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mod.d.ts","sourceRoot":"","sources":["../src/mod.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAA;AACnC,cAAc,
|
|
1
|
+
{"version":3,"file":"mod.d.ts","sourceRoot":"","sources":["../src/mod.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAA;AACnC,cAAc,qBAAqB,CAAA;AACnC,cAAc,6BAA6B,CAAA;AAC3C,cAAc,sBAAsB,CAAA;AACpC,cAAc,uBAAuB,CAAA;AACrC,cAAc,kCAAkC,CAAA"}
|
package/esm/mod.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * from "./commands/index.js";
|
|
2
|
-
export * from "./common/flowcore-client.js";
|
|
3
2
|
export * from "./common/command.js";
|
|
3
|
+
export * from "./common/flowcore-client.js";
|
|
4
4
|
export * from "./contracts/index.js";
|
|
5
5
|
export * from "./exceptions/index.js";
|
|
6
|
+
export * from "./utils/parse-response-helper.js";
|
package/package.json
CHANGED
package/script/mod.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from "./commands/index.js";
|
|
2
|
-
export * from "./common/flowcore-client.js";
|
|
3
2
|
export * from "./common/command.js";
|
|
3
|
+
export * from "./common/flowcore-client.js";
|
|
4
4
|
export * from "./contracts/index.js";
|
|
5
5
|
export * from "./exceptions/index.js";
|
|
6
|
+
export * from "./utils/parse-response-helper.js";
|
|
6
7
|
//# sourceMappingURL=mod.d.ts.map
|
package/script/mod.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mod.d.ts","sourceRoot":"","sources":["../src/mod.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAA;AACnC,cAAc,
|
|
1
|
+
{"version":3,"file":"mod.d.ts","sourceRoot":"","sources":["../src/mod.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAA;AACnC,cAAc,qBAAqB,CAAA;AACnC,cAAc,6BAA6B,CAAA;AAC3C,cAAc,sBAAsB,CAAA;AACpC,cAAc,uBAAuB,CAAA;AACrC,cAAc,kCAAkC,CAAA"}
|
package/script/mod.js
CHANGED
|
@@ -15,7 +15,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./commands/index.js"), exports);
|
|
18
|
-
__exportStar(require("./common/flowcore-client.js"), exports);
|
|
19
18
|
__exportStar(require("./common/command.js"), exports);
|
|
19
|
+
__exportStar(require("./common/flowcore-client.js"), exports);
|
|
20
20
|
__exportStar(require("./contracts/index.js"), exports);
|
|
21
21
|
__exportStar(require("./exceptions/index.js"), exports);
|
|
22
|
+
__exportStar(require("./utils/parse-response-helper.js"), exports);
|