@budibase/worker 2.21.2 → 2.21.4

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@budibase/worker",
3
3
  "email": "hi@budibase.com",
4
- "version": "2.21.2",
4
+ "version": "2.21.4",
5
5
  "description": "Budibase background service",
6
6
  "main": "src/index.ts",
7
7
  "repository": {
@@ -37,10 +37,10 @@
37
37
  "author": "Budibase",
38
38
  "license": "GPL-3.0",
39
39
  "dependencies": {
40
- "@budibase/backend-core": "2.21.2",
41
- "@budibase/pro": "2.21.2",
42
- "@budibase/string-templates": "2.21.2",
43
- "@budibase/types": "2.21.2",
40
+ "@budibase/backend-core": "2.21.4",
41
+ "@budibase/pro": "2.21.4",
42
+ "@budibase/string-templates": "2.21.4",
43
+ "@budibase/types": "2.21.4",
44
44
  "@koa/router": "8.0.8",
45
45
  "@techpass/passport-openidconnect": "0.3.2",
46
46
  "@types/global-agent": "2.1.1",
@@ -108,5 +108,5 @@
108
108
  }
109
109
  }
110
110
  },
111
- "gitHead": "f73632c2cceded7fe9b4b7bd9c6b0d9d7beac8ec"
111
+ "gitHead": "d2d0f85a7981f8813929a100066ffe49beff00fd"
112
112
  }
@@ -147,7 +147,7 @@ describe("/api/global/groups", () => {
147
147
 
148
148
  await Promise.all(
149
149
  Array.from({ length: 30 }).map(async (_, i) => {
150
- const email = `user${i}@${generator.domain()}`
150
+ const email = `user${i}@example.com`
151
151
  const user = await config.api.users.saveUser({
152
152
  ...structures.users.user(),
153
153
  email,
@@ -26,6 +26,7 @@ export const buildSelfSaveValidation = () => {
26
26
  firstName: OPTIONAL_STRING,
27
27
  lastName: OPTIONAL_STRING,
28
28
  onboardedAt: Joi.string().optional(),
29
+ tours: Joi.object().optional(),
29
30
  }
30
31
  return auth.joiValidator.body(Joi.object(schema).required().unknown(false))
31
32
  }