@karmaniverous/jeeves-meta 0.7.0 → 0.9.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/README.md +2 -1
- package/dist/cli/jeeves-meta/index.js +175 -8562
- package/dist/index.d.ts +3 -0
- package/dist/index.js +175 -8562
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -125,6 +125,7 @@ type MetaError = z.infer<typeof metaErrorSchema>;
|
|
|
125
125
|
declare const metaJsonSchema: z.ZodObject<{
|
|
126
126
|
_id: z.ZodUUID;
|
|
127
127
|
_steer: z.ZodOptional<z.ZodString>;
|
|
128
|
+
_crossRefs: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
128
129
|
_architect: z.ZodOptional<z.ZodString>;
|
|
129
130
|
_builder: z.ZodOptional<z.ZodString>;
|
|
130
131
|
_critic: z.ZodOptional<z.ZodString>;
|
|
@@ -253,6 +254,8 @@ interface MetaContext {
|
|
|
253
254
|
deltaFiles: string[];
|
|
254
255
|
/** Child _content outputs, keyed by relative path. */
|
|
255
256
|
childMetas: Record<string, unknown>;
|
|
257
|
+
/** Cross-referenced meta _content outputs, keyed by owner path. */
|
|
258
|
+
crossRefMetas: Record<string, unknown>;
|
|
256
259
|
/** _content from the last cycle, or null on first run. */
|
|
257
260
|
previousContent: string | null;
|
|
258
261
|
/** _feedback from the last cycle, or null on first run. */
|