@outputai/cli 0.1.4-dev.0 → 0.1.5-next.24b9996.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.
@@ -81,7 +81,7 @@ services:
81
81
  condition: service_healthy
82
82
  worker:
83
83
  condition: service_healthy
84
- image: outputai/api:${OUTPUT_API_VERSION:-0.1.3}
84
+ image: outputai/api:${OUTPUT_API_VERSION:-0.1.4}
85
85
  init: true
86
86
  networks:
87
87
  - main
@@ -1,3 +1,3 @@
1
1
  {
2
- "framework": "0.1.3"
2
+ "framework": "0.1.4"
3
3
  }
@@ -338,11 +338,11 @@ const buildDebugTreeLines = (node, depth, isLast, prefix) => {
338
338
  const indent = isRoot ? '' : prefix + connector;
339
339
  const lines = [indent + getDebugNodeInfo(node)];
340
340
  const detailPrefix = isRoot ? ' ' : prefix + (isLast ? TREE_CHARS.DETAIL_LAST : TREE_CHARS.DETAIL_BRANCH);
341
- if (typeof node === 'object' && node !== null) {
341
+ if (typeof node === 'object') {
342
342
  lines.push(...getDebugNodeDetails(node, detailPrefix));
343
343
  }
344
344
  const childPrefix = isRoot ? '' : prefix + (isLast ? TREE_CHARS.SPACE : TREE_CHARS.VERTICAL);
345
- if (typeof node === 'object' && node !== null) {
345
+ if (typeof node === 'object') {
346
346
  const debugNode = node;
347
347
  if (Array.isArray(debugNode.children)) {
348
348
  debugNode.children.forEach((child, i) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@outputai/cli",
3
- "version": "0.1.4-dev.0",
3
+ "version": "0.1.5-next.24b9996.0",
4
4
  "description": "CLI for Output.ai workflow generation",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -33,9 +33,9 @@
33
33
  "log-update": "7.2.0",
34
34
  "semver": "7.7.4",
35
35
  "yaml": "^2.7.1",
36
- "@outputai/credentials": "0.1.4-dev.0",
37
- "@outputai/evals": "0.1.4-dev.0",
38
- "@outputai/llm": "0.1.4-dev.0"
36
+ "@outputai/evals": "0.1.5-next.24b9996.0",
37
+ "@outputai/llm": "0.1.5-next.24b9996.0",
38
+ "@outputai/credentials": "0.1.5-next.24b9996.0"
39
39
  },
40
40
  "devDependencies": {
41
41
  "@types/cli-progress": "3.11.6",