@nocobase/plugin-error-handler 0.9.3-alpha.1 → 0.9.4-alpha.2

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.
@@ -0,0 +1,7 @@
1
+ declare const _default: {
2
+ "unique violation": string;
3
+ "notNull violation": string;
4
+ "Validation error": string;
5
+ "notNull Violation": string;
6
+ };
7
+ export default _default;
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var _default = {
8
+ "unique violation": "{{field}} debe ser único",
9
+ "notNull violation": "notNull violación",
10
+ "Validation error": "{{field}} error de validación",
11
+ "notNull Violation": "{{field}} no puede ser null"
12
+ };
13
+ exports.default = _default;
package/package.json CHANGED
@@ -1,18 +1,18 @@
1
1
  {
2
2
  "name": "@nocobase/plugin-error-handler",
3
- "version": "0.9.3-alpha.1",
3
+ "version": "0.9.4-alpha.2",
4
4
  "description": "",
5
5
  "license": "AGPL-3.0",
6
6
  "main": "./lib/index.js",
7
7
  "types": "./lib/index.d.ts",
8
8
  "dependencies": {
9
9
  "@formily/json-schema": "^2.0.15",
10
- "@nocobase/server": "0.9.3-alpha.1"
10
+ "@nocobase/server": "0.9.4-alpha.2"
11
11
  },
12
12
  "repository": {
13
13
  "type": "git",
14
14
  "url": "git+https://github.com/nocobase/nocobase.git",
15
15
  "directory": "packages/plugin-error-handler"
16
16
  },
17
- "gitHead": "24979bc561537c0b84469c161eeef1a6de4c4684"
17
+ "gitHead": "2bc19a85bf9425aa220b6c467315c8087f333a7e"
18
18
  }
@@ -0,0 +1,6 @@
1
+ export default {
2
+ "unique violation": "{{field}} debe ser único",
3
+ "notNull violation": "notNull violación",
4
+ "Validation error": "{{field}} error de validación",
5
+ "notNull Violation": "{{field}} no puede ser null"
6
+ };