@koda-sl/baker-cli 0.129.1-dev.972f3c9aa → 0.131.0-dev.597b50181
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 +96 -280
- package/dist/{chunk-J2LYFDVC.js → chunk-4QK7JC6O.js} +79 -5
- package/dist/chunk-4QK7JC6O.js.map +1 -0
- package/dist/cli.js +3050 -2299
- package/dist/cli.js.map +1 -1
- package/dist/engine/index.d.ts +10 -0
- package/dist/engine/index.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-J2LYFDVC.js.map +0 -1
package/dist/engine/index.d.ts
CHANGED
|
@@ -164,6 +164,16 @@ declare const CanvasSchema: z.ZodObject<{
|
|
|
164
164
|
node: z.ZodString;
|
|
165
165
|
span_s: z.ZodNumber;
|
|
166
166
|
}, z.core.$strip>>>;
|
|
167
|
+
graph_stats: z.ZodOptional<z.ZodObject<{
|
|
168
|
+
nodes_total: z.ZodNumber;
|
|
169
|
+
nodes_billable: z.ZodNumber;
|
|
170
|
+
node_types: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
171
|
+
scene_routes: z.ZodArray<z.ZodObject<{
|
|
172
|
+
scene: z.ZodNumber;
|
|
173
|
+
route: z.ZodString;
|
|
174
|
+
window_s: z.ZodNumber;
|
|
175
|
+
}, z.core.$strip>>;
|
|
176
|
+
}, z.core.$strict>>;
|
|
167
177
|
}, z.core.$strict>>;
|
|
168
178
|
}, z.core.$strict>>;
|
|
169
179
|
nodes: z.ZodArray<z.ZodObject<{
|
package/dist/engine/index.js
CHANGED
package/package.json
CHANGED