@kanonak-protocol/types 3.59.0 → 3.60.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.
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export declare enum VersionOperator {
|
|
5
5
|
/**
|
|
6
|
-
*
|
|
6
|
+
* Exact version (=) - Requires exact version match
|
|
7
7
|
*/
|
|
8
|
-
|
|
8
|
+
Exact = 0,
|
|
9
9
|
/**
|
|
10
10
|
* Compatible version (~) - Accepts patch and minor updates
|
|
11
11
|
*/
|
|
@@ -15,7 +15,7 @@ export declare enum VersionOperator {
|
|
|
15
15
|
*/
|
|
16
16
|
Major = 2,
|
|
17
17
|
/**
|
|
18
|
-
*
|
|
18
|
+
* Any version (*) - Accepts any version
|
|
19
19
|
*/
|
|
20
|
-
|
|
20
|
+
Any = 3
|
|
21
21
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
var x=(m=>(m[m.
|
|
1
|
+
var x=(m=>(m[m.Exact=0]="Exact",m[m.Compatible=1]="Compatible",m[m.Major=2]="Major",m[m.Any=3]="Any",m))(x||{});export{x as VersionOperator};
|
package/package.json
CHANGED