@rsdk/validation.class-validator 5.0.0-next.2 → 5.0.0-next.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/CHANGELOG.md +14 -0
- package/dist/pipe.d.ts +2 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,20 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [5.0.0-next.4](https://github.com/R-Vision/rsdk/compare/v5.0.0-next.3...v5.0.0-next.4) (2024-07-11)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @rsdk/validation.class-validator
|
|
9
|
+
|
|
10
|
+
## [5.0.0-next.3](https://github.com/R-Vision/rsdk/compare/v5.0.0-next.2...v5.0.0-next.3) (2024-07-11)
|
|
11
|
+
|
|
12
|
+
### ⚠ BREAKING CHANGES
|
|
13
|
+
|
|
14
|
+
* generalize tracing headers (#247)
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
* generalize tracing headers ([#247](https://github.com/R-Vision/rsdk/issues/247)) ([cee2ea6](https://github.com/R-Vision/rsdk/commit/cee2ea65c964705faf133397e285c051672c7512)), closes [#2](https://github.com/R-Vision/rsdk/issues/2) [#3](https://github.com/R-Vision/rsdk/issues/3) [#4](https://github.com/R-Vision/rsdk/issues/4) [#5](https://github.com/R-Vision/rsdk/issues/5)
|
|
19
|
+
|
|
6
20
|
## [5.0.0-next.2](https://github.com/R-Vision/rsdk/compare/v5.0.0-next.1...v5.0.0-next.2) (2024-07-10)
|
|
7
21
|
|
|
8
22
|
**Note:** Version bump only for package @rsdk/validation.class-validator
|
package/dist/pipe.d.ts
CHANGED
|
@@ -12,8 +12,8 @@ type Overrider = (globalOptions?: PlatformValidationPipeOptions) => PlatformVali
|
|
|
12
12
|
* - exceptionFactory задана в соответствии с требованиями платформы
|
|
13
13
|
*/
|
|
14
14
|
export declare class ClassValidatorPipe implements PipeTransform {
|
|
15
|
-
readonly options?: PlatformValidationPipeOptions | Overrider | undefined;
|
|
16
|
-
constructor(options?: PlatformValidationPipeOptions | Overrider | undefined);
|
|
15
|
+
readonly options?: (PlatformValidationPipeOptions | Overrider) | undefined;
|
|
16
|
+
constructor(options?: (PlatformValidationPipeOptions | Overrider) | undefined);
|
|
17
17
|
transform(value: any, metadata: ArgumentMetadata): Promise<any>;
|
|
18
18
|
private getOptions;
|
|
19
19
|
private exceptionFactory;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rsdk/validation.class-validator",
|
|
3
|
-
"version": "5.0.0-next.
|
|
3
|
+
"version": "5.0.0-next.4",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -15,9 +15,9 @@
|
|
|
15
15
|
"@nestjs/core": "^10.0.0",
|
|
16
16
|
"@rsdk/common": "*",
|
|
17
17
|
"@rsdk/core": "*",
|
|
18
|
-
"class-transformer": "^0.5.
|
|
18
|
+
"class-transformer": "^0.5.1",
|
|
19
19
|
"class-validator": "^0.14.1",
|
|
20
20
|
"rxjs": "^7.8.1"
|
|
21
21
|
},
|
|
22
|
-
"gitHead": "
|
|
22
|
+
"gitHead": "8f0a0ae9d8d01ef98ce95cb4aa1c28638f376b69"
|
|
23
23
|
}
|