@pumped-fn/core-next 0.5.65 → 0.5.67
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 +14 -0
- package/dist/{chunk-Cl8Af3a2.js → chunk-CTAAG5j7.js} +3 -1
- package/dist/index.cjs +301 -365
- package/dist/index.d.cts +71 -90
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.ts +71 -90
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +288 -350
- package/dist/index.js.map +1 -1
- package/docs/accessor.md +257 -0
- package/docs/api.md +325 -0
- package/docs/authoring.md +2 -0
- package/docs/concepts.md +284 -0
- package/docs/configuration.md +490 -0
- package/docs/{llm.md → core.md} +144 -221
- package/docs/extension.md +396 -4
- package/docs/flow.md +309 -29
- package/docs/index.md +130 -133
- package/docs/meta.md +198 -48
- package/docs/patterns/examples.md +1053 -0
- package/docs/testing.md +845 -0
- package/docs/troubleshooting.md +400 -0
- package/package.json +3 -4
- package/docs/plugin.md +0 -710
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @pumped-fn/core-next
|
|
2
2
|
|
|
3
|
+
## 0.5.67
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`ab870ee`](https://github.com/pumped-fn/pumped-fn/commit/ab870ee31e3d3c8565b02498566208b096cc991c) Thanks [@lagz0ne](https://github.com/lagz0ne)! - chore: bring back is\* api
|
|
8
|
+
|
|
9
|
+
- [`e5d33df`](https://github.com/pumped-fn/pumped-fn/commit/e5d33dfe593d9a7057c59bffa5553839cec0d9f0) Thanks [@lagz0ne](https://github.com/lagz0ne)! - improve the flow aapi
|
|
10
|
+
|
|
11
|
+
## 0.5.66
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [`1d3e85b`](https://github.com/pumped-fn/pumped-fn/commit/1d3e85ba3ea2aff508634d30aff3647be40784aa) Thanks [@lagz0ne](https://github.com/lagz0ne)! - expose executor reference to extension on pod resolve, so extension can extract the config from that
|
|
16
|
+
|
|
3
17
|
## 0.5.65
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
//#region rolldown:runtime
|
|
2
2
|
var __defProp = Object.defineProperty;
|
|
3
|
-
var __export = (
|
|
3
|
+
var __export = (all) => {
|
|
4
|
+
let target = {};
|
|
4
5
|
for (var name in all) __defProp(target, name, {
|
|
5
6
|
get: all[name],
|
|
6
7
|
enumerable: true
|
|
7
8
|
});
|
|
9
|
+
return target;
|
|
8
10
|
};
|
|
9
11
|
|
|
10
12
|
//#endregion
|