@tsed/formio 8.6.0 → 8.7.0

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.
@@ -81,7 +81,9 @@ export declare class FormioAuthService {
81
81
  */
82
82
  createUser<User = any>(user: Partial<FormioSubmission<User>>): Promise<import("@tsed/mongoose").MongooseMergedDocument<import("mongoose").Document<unknown, any, any> & FormioSubmission<any> & import("@tsed/mongoose").MongooseDocumentMethods<FormioSubmission<any>>> & Required<{
83
83
  _id: string;
84
- }>>;
84
+ }> & {
85
+ __v: number;
86
+ }>;
85
87
  /**
86
88
  * Update user submission in formio
87
89
  * @param user
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@tsed/formio",
3
3
  "description": "Formio package for Ts.ED framework",
4
4
  "type": "module",
5
- "version": "8.6.0",
5
+ "version": "8.7.0",
6
6
  "keywords": [
7
7
  "Formio",
8
8
  "Ts.ED",
@@ -28,32 +28,32 @@
28
28
  "barrels": "barrels",
29
29
  "start": "ts-node test/app/index.ts",
30
30
  "test": "vitest run",
31
- "build:ts": "tsc --build tsconfig.json",
31
+ "build:ts": "tsc --build tsconfig.esm.json",
32
32
  "test:ci": "vitest run --coverage.thresholds.autoUpdate=true"
33
33
  },
34
34
  "dependencies": {
35
- "@tsed/formio-types": "8.6.0",
36
- "@tsed/normalize-path": "8.6.0",
35
+ "@tsed/formio-types": "8.7.0",
36
+ "@tsed/normalize-path": "8.7.0",
37
37
  "tslib": "2.7.0"
38
38
  },
39
39
  "devDependencies": {
40
- "@tsed/barrels": "8.6.0",
41
- "@tsed/core": "8.6.0",
42
- "@tsed/di": "8.6.0",
43
- "@tsed/mongoose": "8.6.0",
44
- "@tsed/platform-http": "8.6.0",
45
- "@tsed/typescript": "8.6.0",
40
+ "@tsed/barrels": "8.7.0",
41
+ "@tsed/core": "8.7.0",
42
+ "@tsed/di": "8.7.0",
43
+ "@tsed/mongoose": "8.7.0",
44
+ "@tsed/platform-http": "8.7.0",
45
+ "@tsed/typescript": "8.7.0",
46
46
  "@types/async": "3.2.24",
47
47
  "eslint": "9.12.0",
48
48
  "express": "^4.21.0",
49
49
  "formio": "4.2.5",
50
50
  "mongodb": "^6.9.0",
51
- "mongoose": "8.9.5",
51
+ "mongoose": "8.12.2",
52
52
  "typescript": "5.4.5",
53
- "vitest": "2.1.2"
53
+ "vitest": "3.0.9"
54
54
  },
55
55
  "peerDependencies": {
56
- "@tsed/platform-http": ">=8.6.0",
56
+ "@tsed/platform-http": ">=8.7.0",
57
57
  "express": "^4.17.1",
58
58
  "formio": ">=2.0.0",
59
59
  "lodash": "^4.17.21",
package/vitest.config.mts CHANGED
@@ -10,10 +10,10 @@ export default defineConfig(
10
10
  coverage: {
11
11
  ...presets.test.coverage,
12
12
  thresholds: {
13
- statements: 95.76,
14
- branches: 96.66,
15
- functions: 96.85,
16
- lines: 95.76
13
+ statements: 0,
14
+ branches: 0,
15
+ functions: 0,
16
+ lines: 0
17
17
  }
18
18
  }
19
19
  }