@brandboostinggmbh/observable-workflows 0.19.0-beta.2 → 0.19.0-beta.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 +8 -0
  2. package/package.json +3 -2
package/dist/index.js CHANGED
@@ -274,6 +274,14 @@ async function createIndexes(db) {
274
274
  name: "idx_workflows_tenant_starttime",
275
275
  sql: `CREATE INDEX idx_workflows_tenant_starttime ON WorkflowTable (tenantId, startTime DESC)`
276
276
  },
277
+ {
278
+ name: "idx_workflows_tenant_workflowtype",
279
+ sql: `CREATE INDEX idx_workflows_tenant_workflowtype ON WorkflowTable (tenantId, workflowType)`
280
+ },
281
+ {
282
+ name: "idx_workflows_tenant_type_starttime",
283
+ sql: `CREATE INDEX idx_workflows_tenant_type_starttime ON WorkflowTable (tenantId, workflowType, startTime DESC)`
284
+ },
277
285
  {
278
286
  name: "idx_workflows_instance_id",
279
287
  sql: `CREATE INDEX idx_workflows_instance_id ON WorkflowTable (instanceId)`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brandboostinggmbh/observable-workflows",
3
- "version": "0.19.0-beta.2",
3
+ "version": "0.19.0-beta.3",
4
4
  "description": "My awesome typescript library",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -53,6 +53,7 @@
53
53
  "test": "vitest run",
54
54
  "typecheck": "tsc --noEmit",
55
55
  "format": "prettier --cache --write .",
56
- "release": "bumpp && pnpm publish"
56
+ "release": "bumpp && pnpm publish",
57
+ "release:beta": "bumpp --preid beta && pnpm publish --tag beta"
57
58
  }
58
59
  }