@brandboostinggmbh/observable-workflows 0.13.1 → 0.13.3

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 +2 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -894,10 +894,11 @@ const createLogAccessor = (context) => {
894
894
  const result = await context.D1.prepare(
895
895
  /* sql */
896
896
  `
897
- SELECT DISTINCT key, valueType FROM PropertiesTable
897
+ SELECT DISTINCT key, valueType FROM WorkflowProperties
898
898
  WHERE tenantId = ? AND (? IS NULL OR instanceId = ?)
899
899
  `
900
900
  ).bind(context.tenantId, instanceId ?? null, instanceId ?? null).all();
901
+ console.log(`debug getPropertiesKeys: ${JSON.stringify(result)}`);
901
902
  if (!result.results) return [];
902
903
  return result.results.map((row) => ({
903
904
  key: row.key,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brandboostinggmbh/observable-workflows",
3
- "version": "0.13.1",
3
+ "version": "0.13.3",
4
4
  "description": "My awesome typescript library",
5
5
  "type": "module",
6
6
  "license": "MIT",