@kanonak-protocol/types 3.58.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
- * Any version (*) - Accepts any version
6
+ * Exact version (=) - Requires exact version match
7
7
  */
8
- Any = 0,
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
- * Exact version (=) - Requires exact version match
18
+ * Any version (*) - Accepts any version
19
19
  */
20
- Exact = 3
20
+ Any = 3
21
21
  }
@@ -1 +1 @@
1
- var x=(m=>(m[m.Any=0]="Any",m[m.Compatible=1]="Compatible",m[m.Major=2]="Major",m[m.Exact=3]="Exact",m))(x||{});export{x as VersionOperator};
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kanonak-protocol/types",
3
- "version": "3.58.0",
3
+ "version": "3.60.0",
4
4
  "description": "Auto-generated TypeScript type definitions and interfaces for Kanonak Protocol (types-only package)",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",