@decaf-ts/decorator-validation 1.11.6 → 1.11.7
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/lib/esm/index.d.ts +1 -1
- package/lib/esm/index.js +1 -1
- package/lib/esm/model/types.d.ts +2 -2
- package/lib/index.cjs +1 -1
- package/lib/index.d.ts +1 -1
- package/lib/model/types.d.ts +2 -2
- package/package.json +1 -1
package/lib/esm/index.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ export * from "./model";
|
|
|
10
10
|
* @const VERSION
|
|
11
11
|
* @memberOf module:decorator-validation
|
|
12
12
|
*/
|
|
13
|
-
export declare const VERSION = "1.11.
|
|
13
|
+
export declare const VERSION = "1.11.6";
|
|
14
14
|
/**
|
|
15
15
|
* @description Current version of the reflection package
|
|
16
16
|
* @summary Stores the semantic version number of the package
|
package/lib/esm/index.js
CHANGED
|
@@ -18,7 +18,7 @@ export * from "./model/index.js";
|
|
|
18
18
|
* @const VERSION
|
|
19
19
|
* @memberOf module:decorator-validation
|
|
20
20
|
*/
|
|
21
|
-
export const VERSION = "1.11.
|
|
21
|
+
export const VERSION = "1.11.6";
|
|
22
22
|
/**
|
|
23
23
|
* @description Current version of the reflection package
|
|
24
24
|
* @summary Stores the semantic version number of the package
|
package/lib/esm/model/types.d.ts
CHANGED
|
@@ -92,7 +92,7 @@ export interface Serializable {
|
|
|
92
92
|
* @return {string} - The serialized string representation
|
|
93
93
|
* @method
|
|
94
94
|
*/
|
|
95
|
-
serialize(): string;
|
|
95
|
+
serialize(...args: any[]): string;
|
|
96
96
|
}
|
|
97
97
|
/**
|
|
98
98
|
* @description Interface for objects that can generate a hash representation
|
|
@@ -108,7 +108,7 @@ export interface Hashable {
|
|
|
108
108
|
* @return {string} - Hash value representing the object
|
|
109
109
|
* @method
|
|
110
110
|
*/
|
|
111
|
-
hash(): string;
|
|
111
|
+
hash(...args: any[]): string;
|
|
112
112
|
}
|
|
113
113
|
/**
|
|
114
114
|
* @description Interface for objects that can be compared with other objects
|
package/lib/index.cjs
CHANGED
|
@@ -35,7 +35,7 @@ __exportStar(require("./model/index.cjs"), exports);
|
|
|
35
35
|
* @const VERSION
|
|
36
36
|
* @memberOf module:decorator-validation
|
|
37
37
|
*/
|
|
38
|
-
exports.VERSION = "1.11.
|
|
38
|
+
exports.VERSION = "1.11.6";
|
|
39
39
|
/**
|
|
40
40
|
* @description Current version of the reflection package
|
|
41
41
|
* @summary Stores the semantic version number of the package
|
package/lib/index.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ export * from "./model";
|
|
|
10
10
|
* @const VERSION
|
|
11
11
|
* @memberOf module:decorator-validation
|
|
12
12
|
*/
|
|
13
|
-
export declare const VERSION = "1.11.
|
|
13
|
+
export declare const VERSION = "1.11.6";
|
|
14
14
|
/**
|
|
15
15
|
* @description Current version of the reflection package
|
|
16
16
|
* @summary Stores the semantic version number of the package
|
package/lib/model/types.d.ts
CHANGED
|
@@ -92,7 +92,7 @@ export interface Serializable {
|
|
|
92
92
|
* @return {string} - The serialized string representation
|
|
93
93
|
* @method
|
|
94
94
|
*/
|
|
95
|
-
serialize(): string;
|
|
95
|
+
serialize(...args: any[]): string;
|
|
96
96
|
}
|
|
97
97
|
/**
|
|
98
98
|
* @description Interface for objects that can generate a hash representation
|
|
@@ -108,7 +108,7 @@ export interface Hashable {
|
|
|
108
108
|
* @return {string} - Hash value representing the object
|
|
109
109
|
* @method
|
|
110
110
|
*/
|
|
111
|
-
hash(): string;
|
|
111
|
+
hash(...args: any[]): string;
|
|
112
112
|
}
|
|
113
113
|
/**
|
|
114
114
|
* @description Interface for objects that can be compared with other objects
|