@finnair/v-validation
Advanced tools
Comparing version 3.1.0 to 4.0.0
@@ -6,2 +6,10 @@ # Change Log | ||
# [4.0.0](https://github.com/finnair/v-validation/compare/v3.2.0...v4.0.0) (2022-11-07) | ||
**Note:** Version bump only for package @finnair/v-validation | ||
# [3.1.0](https://github.com/finnair/v-validation/compare/v3.0.0...v3.1.0) (2022-10-24) | ||
@@ -8,0 +16,0 @@ |
@@ -1,10 +0,1 @@ | ||
declare class A { | ||
private readonly a; | ||
constructor(a: string); | ||
getA(): string; | ||
} | ||
declare class B extends A { | ||
readonly b: string; | ||
constructor(a: string, b: string); | ||
} | ||
declare const b: B; | ||
export {}; |
"use strict"; | ||
class A { | ||
constructor(a) { | ||
this.a = a; | ||
} | ||
getA() { | ||
return this.a; | ||
} | ||
} | ||
class B extends A { | ||
constructor(a, b) { | ||
super(a); | ||
this.b = b; | ||
} | ||
} | ||
const b = new B('a', 'b'); | ||
console.log(b); | ||
b['a'] = 'not allowed'; | ||
console.log(b.getA()); | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
const path_1 = require("@finnair/path"); | ||
let array = [1, 2, 3, 4]; // [1, undefined] | ||
// $[1] = undefined | ||
// $[2] = undefined | ||
path_1.Path.of(1).set(array, undefined); |
{ | ||
"name": "@finnair/v-validation", | ||
"version": "3.1.0", | ||
"version": "4.0.0", | ||
"private": false, | ||
@@ -27,3 +27,3 @@ "description": "V-validation core package", | ||
"dependencies": { | ||
"@finnair/path": "^3.1.0", | ||
"@finnair/path": "^4.0.0", | ||
"@types/deep-equal": "1.0.1", | ||
@@ -34,3 +34,3 @@ "@types/uuid-validate": "0.0.1", | ||
}, | ||
"gitHead": "5182a63fa61cc1f5c8991e1482c5bbffe14798c3" | ||
"gitHead": "d6540b51c4f1c57563602f66bd3157637703529b" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
135252
2246
+ Added@finnair/path@4.0.0(transitive)
- Removed@finnair/path@3.1.0(transitive)
Updated@finnair/path@^4.0.0