trilean 0.0.0 → 1.0.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/LICENSE +21 -0
- package/README.md +634 -0
- package/dist/computed-value.cjs +71 -0
- package/dist/computed-value.d.cts +43 -0
- package/dist/computed-value.d.ts +43 -0
- package/dist/computed-value.js +65 -0
- package/dist/derived-aggregates.cjs +74 -0
- package/dist/derived-aggregates.d.cts +12 -0
- package/dist/derived-aggregates.d.ts +12 -0
- package/dist/derived-aggregates.js +70 -0
- package/dist/derived-connectives.cjs +40 -0
- package/dist/derived-connectives.d.cts +17 -0
- package/dist/derived-connectives.d.ts +17 -0
- package/dist/derived-connectives.js +31 -0
- package/dist/evaluation.cjs +39 -0
- package/dist/evaluation.d.cts +29 -0
- package/dist/evaluation.d.ts +29 -0
- package/dist/evaluation.js +35 -0
- package/dist/evaluator.cjs +482 -0
- package/dist/evaluator.d.cts +18 -0
- package/dist/evaluator.d.ts +18 -0
- package/dist/evaluator.js +479 -0
- package/dist/functions.cjs +5 -0
- package/dist/functions.d.cts +11 -0
- package/dist/functions.d.ts +11 -0
- package/dist/functions.js +4 -0
- package/dist/index.cjs +69 -0
- package/dist/index.d.cts +10 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.js +9 -0
- package/dist/json-value-B1Hjjjri.d.cts +11 -0
- package/dist/json-value-B1Hjjjri.d.ts +11 -0
- package/dist/json-value.cjs +13 -0
- package/dist/json-value.d.cts +2 -0
- package/dist/json-value.d.ts +2 -0
- package/dist/json-value.js +12 -0
- package/dist/resolvers.cjs +0 -0
- package/dist/resolvers.d.cts +28 -0
- package/dist/resolvers.d.ts +28 -0
- package/dist/resolvers.js +0 -0
- package/dist/tree.cjs +289 -0
- package/dist/tree.d.cts +368 -0
- package/dist/tree.d.ts +368 -0
- package/dist/tree.js +257 -0
- package/package.json +114 -2
- package/schemas/trilean.schema.json +1 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
//#region src/json-value.d.ts
|
|
3
|
+
/**
|
|
4
|
+
* A JSON value with no further meaning imposed by this schema -- used for every opaque payload (reference keys, table identifiers, collection references, delegation payloads). "Opaque" means "uninterpreted by this package", not "untyped" -- every one of these must still be plain, serialisable JSON.
|
|
5
|
+
*/
|
|
6
|
+
type JsonValue = string | number | boolean | null | JsonValue[] | {
|
|
7
|
+
[key: string]: JsonValue;
|
|
8
|
+
};
|
|
9
|
+
declare const JsonValueSchema: z.ZodType<JsonValue>;
|
|
10
|
+
//#endregion
|
|
11
|
+
export { JsonValueSchema as n, JsonValue as t };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
//#region src/json-value.d.ts
|
|
3
|
+
/**
|
|
4
|
+
* A JSON value with no further meaning imposed by this schema -- used for every opaque payload (reference keys, table identifiers, collection references, delegation payloads). "Opaque" means "uninterpreted by this package", not "untyped" -- every one of these must still be plain, serialisable JSON.
|
|
5
|
+
*/
|
|
6
|
+
type JsonValue = string | number | boolean | null | JsonValue[] | {
|
|
7
|
+
[key: string]: JsonValue;
|
|
8
|
+
};
|
|
9
|
+
declare const JsonValueSchema: z.ZodType<JsonValue>;
|
|
10
|
+
//#endregion
|
|
11
|
+
export { JsonValueSchema as n, JsonValue as t };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
2
|
+
let zod = require("zod");
|
|
3
|
+
//#region src/json-value.ts
|
|
4
|
+
const JsonValueSchema = zod.z.lazy(() => zod.z.union([
|
|
5
|
+
zod.z.string(),
|
|
6
|
+
zod.z.number(),
|
|
7
|
+
zod.z.boolean(),
|
|
8
|
+
zod.z.null(),
|
|
9
|
+
zod.z.array(JsonValueSchema),
|
|
10
|
+
zod.z.record(zod.z.string(), JsonValueSchema)
|
|
11
|
+
]));
|
|
12
|
+
//#endregion
|
|
13
|
+
exports.JsonValueSchema = JsonValueSchema;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
//#region src/json-value.ts
|
|
3
|
+
const JsonValueSchema = z.lazy(() => z.union([
|
|
4
|
+
z.string(),
|
|
5
|
+
z.number(),
|
|
6
|
+
z.boolean(),
|
|
7
|
+
z.null(),
|
|
8
|
+
z.array(JsonValueSchema),
|
|
9
|
+
z.record(z.string(), JsonValueSchema)
|
|
10
|
+
]));
|
|
11
|
+
//#endregion
|
|
12
|
+
export { JsonValueSchema };
|
|
File without changes
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { ComputedValue } from "./computed-value.cjs";
|
|
2
|
+
import { t as JsonValue } from "./json-value-B1Hjjjri.cjs";
|
|
3
|
+
//#region src/resolvers.d.ts
|
|
4
|
+
/**
|
|
5
|
+
* An opaque, purely in-process value supplied by the caller, never itself part of the serialised tree and never required to be JSON-serialisable. Descending into a `fold` or a quantifier replaces the context for the sub-node's evaluation with the single resolved item.
|
|
6
|
+
*/
|
|
7
|
+
type EvaluationContext = unknown;
|
|
8
|
+
type Resolution = {
|
|
9
|
+
found: true;
|
|
10
|
+
value: ComputedValue;
|
|
11
|
+
} | {
|
|
12
|
+
found: false;
|
|
13
|
+
};
|
|
14
|
+
/**
|
|
15
|
+
* Three independent points of extension, each supplied separately by the embedding consumer, each treated as pure data to hand over -- never as resolver logic living inside the schema itself. Plain TypeScript interfaces, not Zod schemas: resolvers are never serialised, only ever supplied in-process at evaluation time.
|
|
16
|
+
*/
|
|
17
|
+
interface Resolvers {
|
|
18
|
+
/** Resolver 1 -- a single opaque key to a single value (`reference`). */
|
|
19
|
+
resolveValue: (key: JsonValue, context: EvaluationContext) => Promise<Resolution>;
|
|
20
|
+
/** Resolver 2 -- an opaque table identifier plus computed keys to a single value (`lookup`). */
|
|
21
|
+
resolveLookup: (table: JsonValue, keys: readonly ComputedValue[], context: EvaluationContext) => Promise<Resolution>;
|
|
22
|
+
/** Resolver 3 -- an opaque collection reference to a concrete list of items (`fold`/`some`/`every`). Always returns the full candidate list; narrowing which items participate is handled uniformly, after resolution, by each node's own `filter`. */
|
|
23
|
+
resolveCollection: (collection: JsonValue, context: EvaluationContext) => Promise<unknown[]>;
|
|
24
|
+
/** Optional, separate from the three core contracts -- see the `delegate` node kind. */
|
|
25
|
+
resolveDelegate?: (system: string, payload: JsonValue, context: EvaluationContext) => Promise<Resolution>;
|
|
26
|
+
}
|
|
27
|
+
//#endregion
|
|
28
|
+
export { EvaluationContext, Resolution, Resolvers };
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { ComputedValue } from "./computed-value.js";
|
|
2
|
+
import { t as JsonValue } from "./json-value-B1Hjjjri.js";
|
|
3
|
+
//#region src/resolvers.d.ts
|
|
4
|
+
/**
|
|
5
|
+
* An opaque, purely in-process value supplied by the caller, never itself part of the serialised tree and never required to be JSON-serialisable. Descending into a `fold` or a quantifier replaces the context for the sub-node's evaluation with the single resolved item.
|
|
6
|
+
*/
|
|
7
|
+
type EvaluationContext = unknown;
|
|
8
|
+
type Resolution = {
|
|
9
|
+
found: true;
|
|
10
|
+
value: ComputedValue;
|
|
11
|
+
} | {
|
|
12
|
+
found: false;
|
|
13
|
+
};
|
|
14
|
+
/**
|
|
15
|
+
* Three independent points of extension, each supplied separately by the embedding consumer, each treated as pure data to hand over -- never as resolver logic living inside the schema itself. Plain TypeScript interfaces, not Zod schemas: resolvers are never serialised, only ever supplied in-process at evaluation time.
|
|
16
|
+
*/
|
|
17
|
+
interface Resolvers {
|
|
18
|
+
/** Resolver 1 -- a single opaque key to a single value (`reference`). */
|
|
19
|
+
resolveValue: (key: JsonValue, context: EvaluationContext) => Promise<Resolution>;
|
|
20
|
+
/** Resolver 2 -- an opaque table identifier plus computed keys to a single value (`lookup`). */
|
|
21
|
+
resolveLookup: (table: JsonValue, keys: readonly ComputedValue[], context: EvaluationContext) => Promise<Resolution>;
|
|
22
|
+
/** Resolver 3 -- an opaque collection reference to a concrete list of items (`fold`/`some`/`every`). Always returns the full candidate list; narrowing which items participate is handled uniformly, after resolution, by each node's own `filter`. */
|
|
23
|
+
resolveCollection: (collection: JsonValue, context: EvaluationContext) => Promise<unknown[]>;
|
|
24
|
+
/** Optional, separate from the three core contracts -- see the `delegate` node kind. */
|
|
25
|
+
resolveDelegate?: (system: string, payload: JsonValue, context: EvaluationContext) => Promise<Resolution>;
|
|
26
|
+
}
|
|
27
|
+
//#endregion
|
|
28
|
+
export { EvaluationContext, Resolution, Resolvers };
|
|
File without changes
|
package/dist/tree.cjs
ADDED
|
@@ -0,0 +1,289 @@
|
|
|
1
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
2
|
+
const require_computed_value = require("./computed-value.cjs");
|
|
3
|
+
const require_json_value = require("./json-value.cjs");
|
|
4
|
+
let zod = require("zod");
|
|
5
|
+
//#region src/tree.ts
|
|
6
|
+
const ComparisonOperatorSchema = zod.z.enum([
|
|
7
|
+
"gt",
|
|
8
|
+
"gte",
|
|
9
|
+
"lt",
|
|
10
|
+
"lte",
|
|
11
|
+
"eq",
|
|
12
|
+
"neq"
|
|
13
|
+
]);
|
|
14
|
+
const TextComparisonOperatorSchema = zod.z.enum([
|
|
15
|
+
"equals",
|
|
16
|
+
"notEquals",
|
|
17
|
+
"matches",
|
|
18
|
+
"notMatches"
|
|
19
|
+
]);
|
|
20
|
+
const MembershipOperatorSchema = zod.z.enum(["in", "notIn"]);
|
|
21
|
+
const ArithmeticOperatorSchema = zod.z.enum([
|
|
22
|
+
"add",
|
|
23
|
+
"subtract",
|
|
24
|
+
"multiply",
|
|
25
|
+
"divide",
|
|
26
|
+
"power",
|
|
27
|
+
"modulo"
|
|
28
|
+
]);
|
|
29
|
+
const NotNodeSchema = zod.z.object({
|
|
30
|
+
kind: zod.z.literal("not"),
|
|
31
|
+
get operand() {
|
|
32
|
+
return PredicateNodeSchema;
|
|
33
|
+
}
|
|
34
|
+
});
|
|
35
|
+
const AndNodeSchema = zod.z.object({
|
|
36
|
+
kind: zod.z.literal("and"),
|
|
37
|
+
get left() {
|
|
38
|
+
return PredicateNodeSchema;
|
|
39
|
+
},
|
|
40
|
+
get right() {
|
|
41
|
+
return PredicateNodeSchema;
|
|
42
|
+
}
|
|
43
|
+
});
|
|
44
|
+
const OrNodeSchema = zod.z.object({
|
|
45
|
+
kind: zod.z.literal("or"),
|
|
46
|
+
get left() {
|
|
47
|
+
return PredicateNodeSchema;
|
|
48
|
+
},
|
|
49
|
+
get right() {
|
|
50
|
+
return PredicateNodeSchema;
|
|
51
|
+
}
|
|
52
|
+
});
|
|
53
|
+
const AllOfNodeSchema = zod.z.object({
|
|
54
|
+
kind: zod.z.literal("allOf"),
|
|
55
|
+
get operands() {
|
|
56
|
+
return zod.z.array(PredicateNodeSchema);
|
|
57
|
+
}
|
|
58
|
+
});
|
|
59
|
+
const AnyOfNodeSchema = zod.z.object({
|
|
60
|
+
kind: zod.z.literal("anyOf"),
|
|
61
|
+
get operands() {
|
|
62
|
+
return zod.z.array(PredicateNodeSchema);
|
|
63
|
+
}
|
|
64
|
+
});
|
|
65
|
+
const CompareNodeSchema = zod.z.object({
|
|
66
|
+
kind: zod.z.literal("compare"),
|
|
67
|
+
op: ComparisonOperatorSchema,
|
|
68
|
+
get left() {
|
|
69
|
+
return ExpressionNodeSchema;
|
|
70
|
+
},
|
|
71
|
+
get right() {
|
|
72
|
+
return ExpressionNodeSchema;
|
|
73
|
+
}
|
|
74
|
+
});
|
|
75
|
+
const TextCompareNodeSchema = zod.z.object({
|
|
76
|
+
kind: zod.z.literal("textCompare"),
|
|
77
|
+
op: TextComparisonOperatorSchema,
|
|
78
|
+
get left() {
|
|
79
|
+
return ExpressionNodeSchema;
|
|
80
|
+
},
|
|
81
|
+
get right() {
|
|
82
|
+
return ExpressionNodeSchema;
|
|
83
|
+
}
|
|
84
|
+
});
|
|
85
|
+
const MemberOfNodeSchema = zod.z.object({
|
|
86
|
+
kind: zod.z.literal("memberOf"),
|
|
87
|
+
op: MembershipOperatorSchema,
|
|
88
|
+
get operand() {
|
|
89
|
+
return ExpressionNodeSchema;
|
|
90
|
+
},
|
|
91
|
+
get candidates() {
|
|
92
|
+
return zod.z.array(ExpressionNodeSchema);
|
|
93
|
+
}
|
|
94
|
+
});
|
|
95
|
+
const ExistsNodeSchema = zod.z.object({
|
|
96
|
+
kind: zod.z.literal("exists"),
|
|
97
|
+
get operand() {
|
|
98
|
+
return ExpressionNodeSchema;
|
|
99
|
+
}
|
|
100
|
+
});
|
|
101
|
+
const SomeNodeSchema = zod.z.object({
|
|
102
|
+
kind: zod.z.literal("some"),
|
|
103
|
+
collection: require_json_value.JsonValueSchema,
|
|
104
|
+
get item() {
|
|
105
|
+
return PredicateNodeSchema;
|
|
106
|
+
},
|
|
107
|
+
get filter() {
|
|
108
|
+
return PredicateNodeSchema.optional();
|
|
109
|
+
}
|
|
110
|
+
});
|
|
111
|
+
const EveryNodeSchema = zod.z.object({
|
|
112
|
+
kind: zod.z.literal("every"),
|
|
113
|
+
collection: require_json_value.JsonValueSchema,
|
|
114
|
+
get item() {
|
|
115
|
+
return PredicateNodeSchema;
|
|
116
|
+
},
|
|
117
|
+
get filter() {
|
|
118
|
+
return PredicateNodeSchema.optional();
|
|
119
|
+
}
|
|
120
|
+
});
|
|
121
|
+
const PredicateNodeSchema = zod.z.discriminatedUnion("kind", [
|
|
122
|
+
NotNodeSchema,
|
|
123
|
+
AndNodeSchema,
|
|
124
|
+
OrNodeSchema,
|
|
125
|
+
AllOfNodeSchema,
|
|
126
|
+
AnyOfNodeSchema,
|
|
127
|
+
CompareNodeSchema,
|
|
128
|
+
TextCompareNodeSchema,
|
|
129
|
+
MemberOfNodeSchema,
|
|
130
|
+
ExistsNodeSchema,
|
|
131
|
+
SomeNodeSchema,
|
|
132
|
+
EveryNodeSchema
|
|
133
|
+
]);
|
|
134
|
+
const NumberLiteralNodeSchema = zod.z.object({
|
|
135
|
+
kind: zod.z.literal("numberLiteral"),
|
|
136
|
+
value: zod.z.number(),
|
|
137
|
+
unit: require_computed_value.UnitSchema.optional()
|
|
138
|
+
});
|
|
139
|
+
const TextLiteralNodeSchema = zod.z.object({
|
|
140
|
+
kind: zod.z.literal("textLiteral"),
|
|
141
|
+
value: zod.z.string()
|
|
142
|
+
});
|
|
143
|
+
const InstantLiteralNodeSchema = zod.z.object({
|
|
144
|
+
kind: zod.z.literal("instantLiteral"),
|
|
145
|
+
/** ISO-8601 timestamp. */
|
|
146
|
+
value: zod.z.string()
|
|
147
|
+
});
|
|
148
|
+
const DurationLiteralNodeSchema = zod.z.object({
|
|
149
|
+
kind: zod.z.literal("durationLiteral"),
|
|
150
|
+
value: zod.z.number(),
|
|
151
|
+
unit: require_computed_value.DurationUnitSchema
|
|
152
|
+
});
|
|
153
|
+
const ReferenceNodeSchema = zod.z.object({
|
|
154
|
+
kind: zod.z.literal("reference"),
|
|
155
|
+
key: require_json_value.JsonValueSchema,
|
|
156
|
+
unit: require_computed_value.UnitSchema.optional()
|
|
157
|
+
});
|
|
158
|
+
const ArithmeticNodeSchema = zod.z.object({
|
|
159
|
+
kind: zod.z.literal("arithmetic"),
|
|
160
|
+
op: ArithmeticOperatorSchema,
|
|
161
|
+
get left() {
|
|
162
|
+
return ExpressionNodeSchema;
|
|
163
|
+
},
|
|
164
|
+
get right() {
|
|
165
|
+
return ExpressionNodeSchema;
|
|
166
|
+
}
|
|
167
|
+
});
|
|
168
|
+
const NegateNodeSchema = zod.z.object({
|
|
169
|
+
kind: zod.z.literal("negate"),
|
|
170
|
+
get operand() {
|
|
171
|
+
return ExpressionNodeSchema;
|
|
172
|
+
}
|
|
173
|
+
});
|
|
174
|
+
const CallNodeSchema = zod.z.object({
|
|
175
|
+
kind: zod.z.literal("call"),
|
|
176
|
+
fn: zod.z.string(),
|
|
177
|
+
get args() {
|
|
178
|
+
return zod.z.array(ExpressionNodeSchema);
|
|
179
|
+
}
|
|
180
|
+
});
|
|
181
|
+
const LookupNodeSchema = zod.z.object({
|
|
182
|
+
kind: zod.z.literal("lookup"),
|
|
183
|
+
table: require_json_value.JsonValueSchema,
|
|
184
|
+
get keys() {
|
|
185
|
+
return zod.z.array(ExpressionNodeSchema);
|
|
186
|
+
}
|
|
187
|
+
});
|
|
188
|
+
const ConditionalCaseSchema = zod.z.object({
|
|
189
|
+
get when() {
|
|
190
|
+
return PredicateNodeSchema;
|
|
191
|
+
},
|
|
192
|
+
get then() {
|
|
193
|
+
return ExpressionNodeSchema;
|
|
194
|
+
}
|
|
195
|
+
});
|
|
196
|
+
const ConditionalNodeSchema = zod.z.object({
|
|
197
|
+
kind: zod.z.literal("conditional"),
|
|
198
|
+
get cases() {
|
|
199
|
+
return zod.z.array(ConditionalCaseSchema);
|
|
200
|
+
},
|
|
201
|
+
get fallback() {
|
|
202
|
+
return ExpressionNodeSchema;
|
|
203
|
+
}
|
|
204
|
+
});
|
|
205
|
+
const FoldCombinerSchema = zod.z.discriminatedUnion("mode", [
|
|
206
|
+
zod.z.object({
|
|
207
|
+
mode: zod.z.literal("max"),
|
|
208
|
+
get item() {
|
|
209
|
+
return ExpressionNodeSchema;
|
|
210
|
+
}
|
|
211
|
+
}),
|
|
212
|
+
zod.z.object({
|
|
213
|
+
mode: zod.z.literal("min"),
|
|
214
|
+
get item() {
|
|
215
|
+
return ExpressionNodeSchema;
|
|
216
|
+
}
|
|
217
|
+
}),
|
|
218
|
+
zod.z.object({
|
|
219
|
+
mode: zod.z.literal("reduce"),
|
|
220
|
+
get initial() {
|
|
221
|
+
return ExpressionNodeSchema;
|
|
222
|
+
},
|
|
223
|
+
get combine() {
|
|
224
|
+
return ExpressionNodeSchema;
|
|
225
|
+
}
|
|
226
|
+
})
|
|
227
|
+
]);
|
|
228
|
+
const FoldNodeSchema = zod.z.object({
|
|
229
|
+
kind: zod.z.literal("fold"),
|
|
230
|
+
collection: require_json_value.JsonValueSchema,
|
|
231
|
+
get filter() {
|
|
232
|
+
return PredicateNodeSchema.optional();
|
|
233
|
+
},
|
|
234
|
+
combiner: FoldCombinerSchema
|
|
235
|
+
});
|
|
236
|
+
const AccumulatorNodeSchema = zod.z.object({ kind: zod.z.literal("accumulator") });
|
|
237
|
+
const DelegateNodeSchema = zod.z.object({
|
|
238
|
+
kind: zod.z.literal("delegate"),
|
|
239
|
+
system: zod.z.string(),
|
|
240
|
+
payload: require_json_value.JsonValueSchema
|
|
241
|
+
});
|
|
242
|
+
const ExpressionNodeSchema = zod.z.discriminatedUnion("kind", [
|
|
243
|
+
NumberLiteralNodeSchema,
|
|
244
|
+
TextLiteralNodeSchema,
|
|
245
|
+
InstantLiteralNodeSchema,
|
|
246
|
+
DurationLiteralNodeSchema,
|
|
247
|
+
ReferenceNodeSchema,
|
|
248
|
+
ArithmeticNodeSchema,
|
|
249
|
+
NegateNodeSchema,
|
|
250
|
+
CallNodeSchema,
|
|
251
|
+
LookupNodeSchema,
|
|
252
|
+
ConditionalNodeSchema,
|
|
253
|
+
FoldNodeSchema,
|
|
254
|
+
AccumulatorNodeSchema,
|
|
255
|
+
DelegateNodeSchema
|
|
256
|
+
]);
|
|
257
|
+
//#endregion
|
|
258
|
+
exports.AccumulatorNodeSchema = AccumulatorNodeSchema;
|
|
259
|
+
exports.AllOfNodeSchema = AllOfNodeSchema;
|
|
260
|
+
exports.AndNodeSchema = AndNodeSchema;
|
|
261
|
+
exports.AnyOfNodeSchema = AnyOfNodeSchema;
|
|
262
|
+
exports.ArithmeticNodeSchema = ArithmeticNodeSchema;
|
|
263
|
+
exports.ArithmeticOperatorSchema = ArithmeticOperatorSchema;
|
|
264
|
+
exports.CallNodeSchema = CallNodeSchema;
|
|
265
|
+
exports.CompareNodeSchema = CompareNodeSchema;
|
|
266
|
+
exports.ComparisonOperatorSchema = ComparisonOperatorSchema;
|
|
267
|
+
exports.ConditionalCaseSchema = ConditionalCaseSchema;
|
|
268
|
+
exports.ConditionalNodeSchema = ConditionalNodeSchema;
|
|
269
|
+
exports.DelegateNodeSchema = DelegateNodeSchema;
|
|
270
|
+
exports.DurationLiteralNodeSchema = DurationLiteralNodeSchema;
|
|
271
|
+
exports.EveryNodeSchema = EveryNodeSchema;
|
|
272
|
+
exports.ExistsNodeSchema = ExistsNodeSchema;
|
|
273
|
+
exports.ExpressionNodeSchema = ExpressionNodeSchema;
|
|
274
|
+
exports.FoldCombinerSchema = FoldCombinerSchema;
|
|
275
|
+
exports.FoldNodeSchema = FoldNodeSchema;
|
|
276
|
+
exports.InstantLiteralNodeSchema = InstantLiteralNodeSchema;
|
|
277
|
+
exports.LookupNodeSchema = LookupNodeSchema;
|
|
278
|
+
exports.MemberOfNodeSchema = MemberOfNodeSchema;
|
|
279
|
+
exports.MembershipOperatorSchema = MembershipOperatorSchema;
|
|
280
|
+
exports.NegateNodeSchema = NegateNodeSchema;
|
|
281
|
+
exports.NotNodeSchema = NotNodeSchema;
|
|
282
|
+
exports.NumberLiteralNodeSchema = NumberLiteralNodeSchema;
|
|
283
|
+
exports.OrNodeSchema = OrNodeSchema;
|
|
284
|
+
exports.PredicateNodeSchema = PredicateNodeSchema;
|
|
285
|
+
exports.ReferenceNodeSchema = ReferenceNodeSchema;
|
|
286
|
+
exports.SomeNodeSchema = SomeNodeSchema;
|
|
287
|
+
exports.TextCompareNodeSchema = TextCompareNodeSchema;
|
|
288
|
+
exports.TextComparisonOperatorSchema = TextComparisonOperatorSchema;
|
|
289
|
+
exports.TextLiteralNodeSchema = TextLiteralNodeSchema;
|