@likec4/core 1.24.1 → 1.25.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@likec4/core",
3
- "version": "1.24.1",
3
+ "version": "1.25.0",
4
4
  "license": "MIT",
5
5
  "homepage": "https://likec4.dev",
6
6
  "author": "Denis Davydkov <denis@davydkov.com>",
@@ -79,7 +79,7 @@
79
79
  },
80
80
  "devDependencies": {
81
81
  "@dagrejs/dagre": "1.1.4",
82
- "@mantine/colors-generator": "7.17.0",
82
+ "@mantine/colors-generator": "7.17.1",
83
83
  "@types/natural-compare-lite": "^1.4.2",
84
84
  "@types/object-hash": "^3.0.6",
85
85
  "chroma-js": "^3.1.2",
@@ -96,7 +96,7 @@
96
96
  "typescript": "5.7.3",
97
97
  "unbuild": "^3.3.1",
98
98
  "vitest": "^3.0.6",
99
- "@likec4/tsconfig": "1.24.1"
99
+ "@likec4/tsconfig": "1.25.0"
100
100
  },
101
101
  "scripts": {
102
102
  "typecheck": "tsc --noEmit",
@@ -115,10 +115,12 @@ export {
115
115
  isKindEqual,
116
116
  isNotOperator,
117
117
  isOrOperator,
118
+ isParticipantOperator,
118
119
  isTagEqual,
119
120
  whereOperatorAsPredicate,
120
121
  } from './operators'
121
122
  export type {
123
+ AllNever,
122
124
  AndOperator,
123
125
  EqualOperator,
124
126
  Filterable,
@@ -126,6 +128,8 @@ export type {
126
128
  NotOperator,
127
129
  OperatorPredicate,
128
130
  OrOperator,
131
+ Participant,
132
+ ParticipantOperator,
129
133
  TagEqual,
130
134
  WhereOperator,
131
135
  } from './operators'
@@ -10,7 +10,7 @@ export type EqualOperator<V> = {
10
10
  neq: V
11
11
  }
12
12
 
13
- type AllNever = {
13
+ export type AllNever = {
14
14
  not?: never
15
15
  and?: never
16
16
  or?: never