@stamhoofd/backend 2.137.0 → 2.137.1

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@stamhoofd/backend",
3
- "version": "2.137.0",
3
+ "version": "2.137.1",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "exports": {
@@ -58,20 +58,20 @@
58
58
  "@simonbackx/simple-endpoints": "1.21.1",
59
59
  "@simonbackx/simple-errors": "1.5.0",
60
60
  "@simonbackx/simple-logging": "1.0.1",
61
- "@stamhoofd/backend-env": "2.137.0",
62
- "@stamhoofd/backend-i18n": "2.137.0",
63
- "@stamhoofd/backend-middleware": "2.137.0",
64
- "@stamhoofd/crons": "2.137.0",
65
- "@stamhoofd/email": "2.137.0",
66
- "@stamhoofd/excel-writer": "2.137.0",
67
- "@stamhoofd/logging": "2.137.0",
68
- "@stamhoofd/models": "2.137.0",
69
- "@stamhoofd/object-differ": "2.137.0",
70
- "@stamhoofd/queues": "2.137.0",
71
- "@stamhoofd/sql": "2.137.0",
72
- "@stamhoofd/structures": "2.137.0",
73
- "@stamhoofd/types": "2.137.0",
74
- "@stamhoofd/utility": "2.137.0",
61
+ "@stamhoofd/backend-env": "2.137.1",
62
+ "@stamhoofd/backend-i18n": "2.137.1",
63
+ "@stamhoofd/backend-middleware": "2.137.1",
64
+ "@stamhoofd/crons": "2.137.1",
65
+ "@stamhoofd/email": "2.137.1",
66
+ "@stamhoofd/excel-writer": "2.137.1",
67
+ "@stamhoofd/logging": "2.137.1",
68
+ "@stamhoofd/models": "2.137.1",
69
+ "@stamhoofd/object-differ": "2.137.1",
70
+ "@stamhoofd/queues": "2.137.1",
71
+ "@stamhoofd/sql": "2.137.1",
72
+ "@stamhoofd/structures": "2.137.1",
73
+ "@stamhoofd/types": "2.137.1",
74
+ "@stamhoofd/utility": "2.137.1",
75
75
  "archiver": "7.0.1",
76
76
  "axios": "1.18.0",
77
77
  "base-x": "3.0.11",
@@ -93,7 +93,7 @@
93
93
  "uuid": "14.0.0"
94
94
  },
95
95
  "devDependencies": {
96
- "@stamhoofd/test-utils": "2.137.0",
96
+ "@stamhoofd/test-utils": "2.137.1",
97
97
  "@types/cookie": "0.6.0",
98
98
  "@types/luxon": "3.7.1",
99
99
  "@types/mailparser": "3.4.6",
@@ -108,5 +108,5 @@
108
108
  "publishConfig": {
109
109
  "access": "public"
110
110
  },
111
- "gitHead": "f327bce84bd0c5ca7160e3e71ad03700d520b086"
111
+ "gitHead": "951f73f30cf648612da5e4ff22d9db19f5a8f31e"
112
112
  }
@@ -522,7 +522,9 @@ export const memberFilterCompilers: SQLFilterDefinitions = {
522
522
  throw new SimpleError({
523
523
  code: 'permission_denied',
524
524
  message: 'No permissions to filter on record ' + key,
525
- human: result.record ? $t(`%1Bc`, { recordName: result.record.name }) : $t(`Je hebt niet voldoende toegangsrechten om te filteren op dit gegevensveld`),
525
+ human: result.record
526
+ ? $t(`%1Bc`, { recordName: result.record.name })
527
+ : $t(`%Zg6`),
526
528
  statusCode: 400,
527
529
  });
528
530
  }