@brandboostinggmbh/observable-workflows 0.11.4 → 0.11.5

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.
Files changed (2) hide show
  1. package/dist/index.js +0 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -745,9 +745,7 @@ const createLogAccessor = (context) => {
745
745
  }
746
746
  const listWorkflows = async (limit, offset, filter) => {
747
747
  const { sql, bindings } = buildFilteredWorkflowQuery(filter);
748
- console.log("executing listWorkflows with SQL", sql);
749
748
  const result = await context.D1.prepare(sql).bind(...bindings, limit, offset).all();
750
- console.log("listWorkflows finished. Processing results...");
751
749
  if (result.results) {
752
750
  const workflows = await Promise.all(result.results.map((row) => workflowTableRowToWorkflowRun(row, internalSerializer, context.externalBlobStorage)));
753
751
  return workflows;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brandboostinggmbh/observable-workflows",
3
- "version": "0.11.4",
3
+ "version": "0.11.5",
4
4
  "description": "My awesome typescript library",
5
5
  "type": "module",
6
6
  "license": "MIT",