@thisisagile/easy-test 11.0.0 → 11.2.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.
@@ -37,3 +37,6 @@ export declare type UseCase = {
37
37
  export declare type Tester = {
38
38
  url: string;
39
39
  };
40
+ export declare type CreateMutable<T> = {
41
+ -readonly [P in keyof T]: T[P];
42
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thisisagile/easy-test",
3
- "version": "11.0.0",
3
+ "version": "11.2.0",
4
4
  "description": "Straightforward library for testing microservices built with @thisisagile/easy",
5
5
  "author": "Sander Hoogendoorn",
6
6
  "license": "MIT",
@@ -39,8 +39,8 @@
39
39
  "@jest/expect-utils": "^28.1.0",
40
40
  "@types/jest": "^27.5.1",
41
41
  "@types/node": "^17.0.35",
42
- "expect": "28.1.0",
43
- "jest": "28.1.0",
42
+ "expect": "^28.1.0",
43
+ "jest": "^28.1.0",
44
44
  "jest-junit": "^13.2.0",
45
45
  "jest-sonar-reporter": "^2.0.0",
46
46
  "ts-jest": "^28.0.3"
@@ -29,3 +29,5 @@ export type Query = Text;
29
29
  export type UseCase = { app: { id: Text }; id: Text };
30
30
 
31
31
  export type Tester = { url: string };
32
+
33
+ export type CreateMutable<T> = { -readonly [P in keyof T]: T[P] };