@teamkeel/functions-runtime 0.421.1 → 0.421.2
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/index.cjs +2 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +23 -14
- package/dist/index.d.ts +23 -14
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -2880,7 +2880,8 @@ var print = /* @__PURE__ */ __name(async (options) => {
|
|
|
2880
2880
|
return {
|
|
2881
2881
|
type: d.type,
|
|
2882
2882
|
name: d.name,
|
|
2883
|
-
data: Array.isArray(d.data) ? d.data : [d.data]
|
|
2883
|
+
data: Array.isArray(d.data) ? d.data : [d.data],
|
|
2884
|
+
printer: d.printer
|
|
2884
2885
|
};
|
|
2885
2886
|
}
|
|
2886
2887
|
return null;
|