@telorun/analyzer 0.71.0 → 0.73.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/dist/analyzer.d.ts.map +1 -1
- package/dist/analyzer.js +92 -15
- package/dist/builtins.d.ts.map +1 -1
- package/dist/builtins.js +71 -97
- package/dist/catch-scope.d.ts +72 -0
- package/dist/catch-scope.d.ts.map +1 -0
- package/dist/catch-scope.js +102 -0
- package/dist/cel-scope-query.d.ts.map +1 -1
- package/dist/cel-scope-query.js +32 -11
- package/dist/cel-scope.d.ts.map +1 -1
- package/dist/cel-scope.js +1 -0
- package/dist/deprecation.d.ts +21 -0
- package/dist/deprecation.d.ts.map +1 -0
- package/dist/deprecation.js +26 -0
- package/dist/eval-paths.d.ts +36 -5
- package/dist/eval-paths.d.ts.map +1 -1
- package/dist/eval-paths.js +47 -6
- package/dist/extends-resolution.d.ts +12 -0
- package/dist/extends-resolution.d.ts.map +1 -1
- package/dist/extends-resolution.js +23 -0
- package/dist/index.d.ts +4 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -2
- package/dist/manifest-visitor.d.ts +17 -1
- package/dist/manifest-visitor.d.ts.map +1 -1
- package/dist/manifest-visitor.js +5 -1
- package/dist/migrations/report.d.ts +1 -1
- package/dist/migrations/report.d.ts.map +1 -1
- package/dist/migrations/report.js +5 -0
- package/dist/nearest-name.d.ts +22 -0
- package/dist/nearest-name.d.ts.map +1 -0
- package/dist/nearest-name.js +43 -0
- package/dist/ref-slot.d.ts +15 -0
- package/dist/ref-slot.d.ts.map +1 -1
- package/dist/ref-slot.js +7 -0
- package/dist/release/destinations.d.ts +59 -0
- package/dist/release/destinations.d.ts.map +1 -0
- package/dist/release/destinations.js +75 -0
- package/dist/release/index.d.ts +6 -2
- package/dist/release/index.d.ts.map +1 -1
- package/dist/release/index.js +3 -1
- package/dist/release/ledger.d.ts +20 -11
- package/dist/release/ledger.d.ts.map +1 -1
- package/dist/release/ledger.js +43 -14
- package/dist/release/release-plan.d.ts +3 -2
- package/dist/release/release-plan.d.ts.map +1 -1
- package/dist/release/release-plan.js +12 -19
- package/dist/release/workspace-config.d.ts +114 -34
- package/dist/release/workspace-config.d.ts.map +1 -1
- package/dist/release/workspace-config.js +322 -38
- package/dist/release/workspace-schema.d.ts +41 -0
- package/dist/release/workspace-schema.d.ts.map +1 -0
- package/dist/release/workspace-schema.js +77 -0
- package/dist/resolve-throws-union.d.ts +29 -1
- package/dist/resolve-throws-union.d.ts.map +1 -1
- package/dist/resolve-throws-union.js +111 -16
- package/dist/schema-compat.d.ts.map +1 -1
- package/dist/schema-compat.js +13 -1
- package/dist/schema-error-report.d.ts +7 -0
- package/dist/schema-error-report.d.ts.map +1 -1
- package/dist/schema-error-report.js +57 -8
- package/dist/schema-keywords.d.ts.map +1 -1
- package/dist/schema-keywords.js +3 -1
- package/dist/schema-walk.d.ts +27 -0
- package/dist/schema-walk.d.ts.map +1 -1
- package/dist/schema-walk.js +44 -0
- package/dist/telo-version.d.ts +1 -1
- package/dist/telo-version.js +1 -1
- package/dist/template-body.d.ts +10 -0
- package/dist/template-body.d.ts.map +1 -1
- package/dist/template-body.js +25 -0
- package/dist/types.d.ts +17 -0
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js +11 -0
- package/dist/validate-cel-context.d.ts +23 -8
- package/dist/validate-cel-context.d.ts.map +1 -1
- package/dist/validate-cel-context.js +48 -16
- package/dist/validate-exports.d.ts +28 -0
- package/dist/validate-exports.d.ts.map +1 -0
- package/dist/validate-exports.js +146 -0
- package/dist/validate-extends.d.ts.map +1 -1
- package/dist/validate-extends.js +37 -1
- package/dist/validate-identifier-names.d.ts +2 -2
- package/dist/validate-identifier-names.d.ts.map +1 -1
- package/dist/validate-identifier-names.js +22 -7
- package/dist/validate-provider-coherence.d.ts +4 -8
- package/dist/validate-provider-coherence.d.ts.map +1 -1
- package/dist/validate-provider-coherence.js +12 -123
- package/dist/validate-ref-slots.d.ts +1 -1
- package/dist/validate-ref-slots.d.ts.map +1 -1
- package/dist/validate-ref-slots.js +34 -0
- package/dist/validate-references.d.ts.map +1 -1
- package/dist/validate-references.js +168 -63
- package/dist/validate-template-body.d.ts +36 -0
- package/dist/validate-template-body.d.ts.map +1 -0
- package/dist/validate-template-body.js +246 -0
- package/dist/validate-throws-coverage.d.ts.map +1 -1
- package/dist/validate-throws-coverage.js +236 -85
- package/package.json +3 -2
- package/src/analyzer.ts +118 -12
- package/src/builtins.ts +85 -97
- package/src/catch-scope.ts +157 -0
- package/src/cel-scope-query.ts +28 -9
- package/src/cel-scope.ts +1 -0
- package/src/deprecation.ts +36 -0
- package/src/eval-paths.ts +53 -6
- package/src/extends-resolution.ts +24 -0
- package/src/index.ts +9 -1
- package/src/manifest-visitor.ts +19 -2
- package/src/migrations/report.ts +5 -1
- package/src/nearest-name.ts +47 -0
- package/src/ref-slot.ts +19 -0
- package/src/release/destinations.ts +105 -0
- package/src/release/index.ts +33 -2
- package/src/release/ledger.ts +51 -21
- package/src/release/release-plan.ts +16 -26
- package/src/release/workspace-config.ts +483 -47
- package/src/release/workspace-schema.ts +99 -0
- package/src/resolve-throws-union.ts +139 -21
- package/src/schema-compat.ts +13 -0
- package/src/schema-error-report.ts +66 -10
- package/src/schema-keywords.ts +4 -1
- package/src/schema-walk.ts +56 -0
- package/src/telo-version.ts +1 -1
- package/src/template-body.ts +25 -0
- package/src/types.ts +18 -0
- package/src/validate-cel-context.ts +57 -16
- package/src/validate-exports.ts +185 -0
- package/src/validate-extends.ts +43 -0
- package/src/validate-identifier-names.ts +28 -9
- package/src/validate-provider-coherence.ts +17 -127
- package/src/validate-ref-slots.ts +41 -1
- package/src/validate-references.ts +174 -63
- package/src/validate-template-body.ts +274 -0
- package/src/validate-throws-coverage.ts +333 -92
- package/dist/validate-template-dispatch.d.ts +0 -27
- package/dist/validate-template-dispatch.d.ts.map +0 -1
- package/dist/validate-template-dispatch.js +0 -95
- package/src/validate-template-dispatch.ts +0 -99
|
@@ -0,0 +1,246 @@
|
|
|
1
|
+
import { nearestName } from "./nearest-name.js";
|
|
2
|
+
import { isRefSentinel, isTaggedSentinel } from "@telorun/templating";
|
|
3
|
+
import { refSentinelTarget } from "./ref-sentinel-target.js";
|
|
4
|
+
import { isRefEntry, resolveFieldEntries, satisfiesValueBranch } from "./reference-field-map.js";
|
|
5
|
+
import { templateBodies } from "./template-body.js";
|
|
6
|
+
import { DiagnosticSeverity, DiagnosticTag } from "./types.js";
|
|
7
|
+
const SOURCE = "telo-analyzer";
|
|
8
|
+
/** The four slots a `Telo.Definition` names its dispatch target in.
|
|
9
|
+
*
|
|
10
|
+
* WHAT THE TARGET'S CAPABILITY IS IS DELIBERATELY NOT CHECKED. The kernel tests
|
|
11
|
+
* METHOD PRESENCE at dispatch (`entry.instance?.invoke`), so a declared
|
|
12
|
+
* capability says nothing about whether a dispatch works — the same structural
|
|
13
|
+
* -versus-nominal split that keeps `use` uncross-constrained against a slot's
|
|
14
|
+
* target. A check here read `Run.Sequence`'s `capability: Telo.Runnable` and
|
|
15
|
+
* rejected `Ai.Buffered`, a shipping module whose sequence implements `invoke()`
|
|
16
|
+
* over an inputs/outputs contract and dispatches correctly. Trimming the refused
|
|
17
|
+
* set would only move that: any controller may expose a method its capability
|
|
18
|
+
* does not name, and a template body is exactly where that is done on purpose. */
|
|
19
|
+
const DISPATCH_SLOTS = ["invoke", "run", "provide", "mount"];
|
|
20
|
+
/**
|
|
21
|
+
* A TEMPLATE BODY IS WRITTEN LIKE EVERY OTHER MANIFEST, AND CHECKED LIKE ONE.
|
|
22
|
+
*
|
|
23
|
+
* A `Telo.Definition` is in both reference skip sets — its body holds
|
|
24
|
+
* declarations of OTHER kinds, and its dispatch slots carry no `x-telo-ref` — so
|
|
25
|
+
* no reference pass reached it, and each rule about it was added per construct:
|
|
26
|
+
* `provide:` and `mount:` had a target check for the `{ kind, name }` object
|
|
27
|
+
* form, `!ref` had one that switched itself off for any definition with a
|
|
28
|
+
* CEL-named entry, and `invoke:` / `run:` had none. What was tagged was caught
|
|
29
|
+
* and what was a plain name was resolved by the kernel alone. This pass is the
|
|
30
|
+
* one reader of a body's reference surface, and it rests on one spelling:
|
|
31
|
+
*
|
|
32
|
+
* - every `resources:` entry is named by a LITERAL (`TEMPLATE_ENTRY_NAME_DYNAMIC`).
|
|
33
|
+
* Each instance of a template owns its children in a child context of its
|
|
34
|
+
* own, so a per-instance suffix (`self.name + '-query'`) buys nothing — and a
|
|
35
|
+
* `!ref` is looked up verbatim, so a CEL-named sibling is one nothing can name;
|
|
36
|
+
* - a dispatch slot is `!ref <entry>` naming an entry
|
|
37
|
+
* (`TEMPLATE_DISPATCH_UNKNOWN`); the legacy spellings are deprecated rather
|
|
38
|
+
* than refused, since published artifacts carry them. What the target's
|
|
39
|
+
* CAPABILITY is stays unchecked — see `DISPATCH_SLOTS`;
|
|
40
|
+
* - a reference slot INSIDE an entry follows the rule every other slot does —
|
|
41
|
+
* `!ref` or an inline declaration, never `{ kind, name }` or a bare string
|
|
42
|
+
* (`INVALID_REFERENCE_FORM`) — and a bare `!ref` names a sibling or a
|
|
43
|
+
* resource of the defining module (`TEMPLATE_REF_UNKNOWN`). Slots are found
|
|
44
|
+
* through the nested kind's own field map, resolved in the DEFINING module's
|
|
45
|
+
* alias scope, since that is where the body's kinds are written.
|
|
46
|
+
*
|
|
47
|
+
* Entry-module-scoped, like every other declaration check: a published
|
|
48
|
+
* dependency's template body is not the consumer's to fix. Browser-safe.
|
|
49
|
+
*/
|
|
50
|
+
export function validateTemplateBody(manifests, registry, aliases, aliasesByModule, rootModules) {
|
|
51
|
+
const out = [];
|
|
52
|
+
const scopes = { aliasesByModule, rootModules };
|
|
53
|
+
// A definition forwarded from an imported library is that library's to fix;
|
|
54
|
+
// the imports name them (the `validate-extends` rule).
|
|
55
|
+
const importedModules = new Set();
|
|
56
|
+
// Every named instance, by declaring module — what a body's bare `!ref` may
|
|
57
|
+
// reach beside its siblings. A manifest with no stamp belongs to the entry.
|
|
58
|
+
const instancesByModule = new Map();
|
|
59
|
+
for (const m of manifests) {
|
|
60
|
+
const name = m.metadata?.name;
|
|
61
|
+
if (typeof name !== "string")
|
|
62
|
+
continue;
|
|
63
|
+
if (m.kind === "Telo.Import") {
|
|
64
|
+
const resolved = m.metadata.resolvedModuleName;
|
|
65
|
+
if (resolved)
|
|
66
|
+
importedModules.add(resolved);
|
|
67
|
+
continue;
|
|
68
|
+
}
|
|
69
|
+
if (m.kind === "Telo.Definition" || m.kind === "Telo.Abstract")
|
|
70
|
+
continue;
|
|
71
|
+
if (m.kind === "Telo.Library" || m.kind === "Telo.Application")
|
|
72
|
+
continue;
|
|
73
|
+
const mod = m.metadata?.module;
|
|
74
|
+
let set = instancesByModule.get(mod);
|
|
75
|
+
if (!set)
|
|
76
|
+
instancesByModule.set(mod, (set = new Set()));
|
|
77
|
+
set.add(name);
|
|
78
|
+
}
|
|
79
|
+
for (const m of manifests) {
|
|
80
|
+
if (m.kind !== "Telo.Definition")
|
|
81
|
+
continue;
|
|
82
|
+
const meta = m.metadata;
|
|
83
|
+
const name = meta?.name;
|
|
84
|
+
if (!name)
|
|
85
|
+
continue;
|
|
86
|
+
if (meta?.module && importedModules.has(meta.module))
|
|
87
|
+
continue;
|
|
88
|
+
const bodies = m.resources;
|
|
89
|
+
const resourceRef = { kind: m.kind, name };
|
|
90
|
+
const filePath = meta?.source;
|
|
91
|
+
const label = `${m.kind}/${name}`;
|
|
92
|
+
const report = (code, path, message, fix) => out.push({
|
|
93
|
+
severity: DiagnosticSeverity.Error,
|
|
94
|
+
code,
|
|
95
|
+
source: SOURCE,
|
|
96
|
+
message: `${label}: ${message}`,
|
|
97
|
+
data: {
|
|
98
|
+
resource: resourceRef,
|
|
99
|
+
filePath,
|
|
100
|
+
path,
|
|
101
|
+
...(fix ? { fix: { replacement: fix } } : {}),
|
|
102
|
+
},
|
|
103
|
+
});
|
|
104
|
+
/** A spelling the kernel still READS. Warning-grade because refusing it
|
|
105
|
+
* would break every app pinning a version that carries it, and tagged so an
|
|
106
|
+
* editor strikes it through rather than merely colouring it — the
|
|
107
|
+
* `DEPRECATED_KIND` shape, for the same reason. */
|
|
108
|
+
const deprecate = (code, path, message) => out.push({
|
|
109
|
+
severity: DiagnosticSeverity.Warning,
|
|
110
|
+
code,
|
|
111
|
+
source: SOURCE,
|
|
112
|
+
message: `${label}: ${message}`,
|
|
113
|
+
tags: [DiagnosticTag.Deprecated],
|
|
114
|
+
data: { resource: resourceRef, filePath, path },
|
|
115
|
+
});
|
|
116
|
+
const entries = Array.isArray(bodies) ? bodies : [];
|
|
117
|
+
const siblings = [];
|
|
118
|
+
let anyDynamic = false;
|
|
119
|
+
entries.forEach((entry, i) => {
|
|
120
|
+
const entryName = entry?.metadata?.name;
|
|
121
|
+
if (typeof entryName === "string" && !entryName.includes("${{")) {
|
|
122
|
+
siblings.push(entryName);
|
|
123
|
+
return;
|
|
124
|
+
}
|
|
125
|
+
if (entryName === undefined)
|
|
126
|
+
return;
|
|
127
|
+
anyDynamic = true;
|
|
128
|
+
deprecate("DEPRECATED_TEMPLATE_ENTRY_NAME", `resources[${i}].metadata.name`, `a 'resources:' entry named by ${describeDynamic(entryName)} is deprecated — name it ` +
|
|
129
|
+
`with a literal and dispatch to it with '!ref'. Each instance of a template owns its ` +
|
|
130
|
+
`children in a child context of its own, so a per-instance suffix buys nothing, and a ` +
|
|
131
|
+
`'!ref' is looked up verbatim, so nothing can name a computed entry. While one is ` +
|
|
132
|
+
`present the target checks below are switched off for this kind.`);
|
|
133
|
+
});
|
|
134
|
+
// Siblings PLUS the declaring module's own resources, because that is what
|
|
135
|
+
// the runtime resolves at a reference slot: a body's `!ref` is stamped
|
|
136
|
+
// `{kind, name}` with an empty kind for a non-sibling, and Phase-5 injection
|
|
137
|
+
// dispatches by NAME and recovers the kind from the instance it finds — so
|
|
138
|
+
// `client: !ref moduleClient` in a body reaches the module-level client and
|
|
139
|
+
// works. (A step's `invoke:` is a different path that does NOT: see the
|
|
140
|
+
// `resources` note in `validate-template-body`'s own tests.)
|
|
141
|
+
const reachable = new Set([
|
|
142
|
+
...siblings,
|
|
143
|
+
...(instancesByModule.get(meta?.module) ?? []),
|
|
144
|
+
]);
|
|
145
|
+
// --- dispatch slots ---
|
|
146
|
+
for (const slot of DISPATCH_SLOTS) {
|
|
147
|
+
const value = m[slot];
|
|
148
|
+
if (value == null)
|
|
149
|
+
continue;
|
|
150
|
+
if (!isRefSentinel(value)) {
|
|
151
|
+
deprecate("DEPRECATED_TEMPLATE_DISPATCH_FORM", slot, `'${slot}:' written as ${describeDispatchValue(value)} is deprecated — ` +
|
|
152
|
+
`write '!ref <entry>', the spelling every other reference uses. ` +
|
|
153
|
+
`Available: ${siblings.join(", ") || "(none)"}.`);
|
|
154
|
+
continue;
|
|
155
|
+
}
|
|
156
|
+
const source = value.source;
|
|
157
|
+
const target = source.startsWith("Self.") ? source.slice("Self.".length) : source;
|
|
158
|
+
if (siblings.includes(target))
|
|
159
|
+
continue;
|
|
160
|
+
// A dynamic sibling has already been reported, and might be the one
|
|
161
|
+
// meant — a second diagnostic about the same line would be noise.
|
|
162
|
+
if (anyDynamic)
|
|
163
|
+
continue;
|
|
164
|
+
const suggestion = nearestName(target, siblings);
|
|
165
|
+
report("TEMPLATE_DISPATCH_UNKNOWN", slot, `'${slot}: !ref ${source}' names no entry in 'resources:'. ` +
|
|
166
|
+
`Available: ${siblings.join(", ") || "(none)"}.` +
|
|
167
|
+
(suggestion ? ` Did you mean '${suggestion}'?` : ""), suggestion);
|
|
168
|
+
}
|
|
169
|
+
// --- reference slots inside each entry ---
|
|
170
|
+
for (const body of templateBodies(m, registry, aliases, scopes)) {
|
|
171
|
+
const kind = body.manifest.kind;
|
|
172
|
+
const fieldMap = registry.expandedFieldMapForResource({ ...body.manifest, metadata: { ...(body.manifest.metadata ?? {}), module: meta?.module } }, aliases, aliasesByModule);
|
|
173
|
+
if (!fieldMap)
|
|
174
|
+
continue;
|
|
175
|
+
for (const [fieldPath, entry] of fieldMap) {
|
|
176
|
+
if (!isRefEntry(entry))
|
|
177
|
+
continue;
|
|
178
|
+
for (const site of resolveFieldEntries(body.manifest, fieldPath)) {
|
|
179
|
+
const value = site.value;
|
|
180
|
+
if (value == null)
|
|
181
|
+
continue;
|
|
182
|
+
const path = `${body.prefix}.${site.path}`;
|
|
183
|
+
if (isTaggedSentinel(value)) {
|
|
184
|
+
const target = refSentinelTarget(value);
|
|
185
|
+
if (!target)
|
|
186
|
+
continue;
|
|
187
|
+
const { alias, name: refName } = target;
|
|
188
|
+
if (alias && alias !== "Self")
|
|
189
|
+
continue;
|
|
190
|
+
if (reachable.has(refName))
|
|
191
|
+
continue;
|
|
192
|
+
const suggestion = nearestName(refName, [...reachable]);
|
|
193
|
+
report("TEMPLATE_REF_UNKNOWN", path, `'${site.path}: !ref ${value.source}' on the ${kind} entry names no sibling ` +
|
|
194
|
+
`'resources:' entry and no resource of this module. ` +
|
|
195
|
+
`Siblings: ${siblings.filter((s) => s !== body.manifest.metadata?.name).join(", ") || "(none)"}.` +
|
|
196
|
+
(suggestion ? ` Did you mean '${suggestion}'?` : ""), suggestion);
|
|
197
|
+
continue;
|
|
198
|
+
}
|
|
199
|
+
const hasValueBranch = (entry.valueBranches?.length ?? 0) > 0;
|
|
200
|
+
if (hasValueBranch && typeof value !== "object")
|
|
201
|
+
continue;
|
|
202
|
+
if (satisfiesValueBranch(value, entry.valueBranches, registry))
|
|
203
|
+
continue;
|
|
204
|
+
if (typeof value === "string") {
|
|
205
|
+
if (value.includes("${{"))
|
|
206
|
+
continue;
|
|
207
|
+
report("INVALID_REFERENCE_FORM", path, `string reference at '${site.path}' on the ${kind} entry → '${value}' is not ` +
|
|
208
|
+
`supported; write it as '!ref ${value}'`);
|
|
209
|
+
continue;
|
|
210
|
+
}
|
|
211
|
+
if (value && typeof value === "object" && !Array.isArray(value)) {
|
|
212
|
+
const obj = value;
|
|
213
|
+
if (typeof obj.kind === "string" && obj.name !== undefined) {
|
|
214
|
+
report("INVALID_REFERENCE_FORM", path, `object reference '{ kind, name }' at '${site.path}' on the ${kind} entry is ` +
|
|
215
|
+
`not supported; write it as '!ref ${describeRefName(obj.name)}'`);
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
return out;
|
|
223
|
+
}
|
|
224
|
+
function describeDynamic(name) {
|
|
225
|
+
if (isTaggedSentinel(name))
|
|
226
|
+
return `the expression '${name.source}'`;
|
|
227
|
+
if (typeof name === "string")
|
|
228
|
+
return `the template '${name}'`;
|
|
229
|
+
return `a ${typeof name}`;
|
|
230
|
+
}
|
|
231
|
+
function describeDispatchValue(value) {
|
|
232
|
+
if (isTaggedSentinel(value))
|
|
233
|
+
return `a '!${value.engine}' expression`;
|
|
234
|
+
if (typeof value === "string")
|
|
235
|
+
return `the string '${value}'`;
|
|
236
|
+
if (value && typeof value === "object" && "name" in value)
|
|
237
|
+
return "the '{ kind, name }' object form";
|
|
238
|
+
return `a ${typeof value}`;
|
|
239
|
+
}
|
|
240
|
+
function describeRefName(name) {
|
|
241
|
+
if (typeof name === "string")
|
|
242
|
+
return name;
|
|
243
|
+
if (isTaggedSentinel(name))
|
|
244
|
+
return "<entry>";
|
|
245
|
+
return String(name);
|
|
246
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"validate-throws-coverage.d.ts","sourceRoot":"","sources":["../src/validate-throws-coverage.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAW,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAEjE,OAAO,
|
|
1
|
+
{"version":3,"file":"validate-throws-coverage.d.ts","sourceRoot":"","sources":["../src/validate-throws-coverage.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAW,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAEjE,OAAO,EAIL,KAAK,gBAAgB,EACtB,MAAM,cAAc,CAAC;AACtB,OAAO,EAA0B,KAAK,aAAa,EAAE,MAAM,qBAAqB,CAAC;AACjF,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,0BAA0B,CAAC;AAenE,OAAO,EAAsB,KAAK,kBAAkB,EAAE,MAAM,YAAY,CAAC;AA4kBzE,oDAAoD;AACpD,wBAAgB,sBAAsB,CACpC,SAAS,EAAE,gBAAgB,EAAE,EAC7B,IAAI,EAAE,kBAAkB,EACxB,OAAO,EAAE,aAAa,EACtB,GAAG,EAAE,WAAW,EAChB,eAAe,GAAE,GAAG,CAAC,MAAM,EAAE,aAAa,CAAa,EACvD,WAAW,GAAE,GAAG,CAAC,MAAM,CAAa;AACpC;;+BAE+B;AAC/B,eAAe,GAAE,GAAG,CAAC,MAAM,EAAE,gBAAgB,EAAE,CAAa,GAC3D,kBAAkB,EAAE,CAsLtB"}
|