Skip to content

Commit

Permalink
feat(*): new data model, with nodes and ports
Browse files Browse the repository at this point in the history
  • Loading branch information
hishamhm committed Oct 31, 2024
1 parent 7ec7f03 commit 423da0e
Show file tree
Hide file tree
Showing 13 changed files with 1,502 additions and 352 deletions.
31 changes: 27 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,5 @@ jaq-interpret = "1.2.1"
jaq-parse = "1.0.2"
jaq-core = "1.2.1"
jaq-std = "1.2.1"
derivative = "2.2.0"

14 changes: 12 additions & 2 deletions datakit.meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,19 @@
"type": { "type": "string" },
"name": { "type": "string" },
"input": { "type": "string" },
"inputs": { "type": "array", "items": { "type": "string" } },
"inputs": {
"oneOf": [
{ "type": "array", "items": { "type": "string" } },
{ "type": "object", "additionalProperties": { "type": "string" } }
]
},
"output": { "type": "string" },
"outputs": { "type": "array", "items": { "type": "string" } }
"outputs": {
"oneOf": [
{ "type": "array", "items": { "type": "string" } },
{ "type": "object", "additionalProperties": { "type": "string" } }
]
}
}
}
}
Expand Down
Loading

0 comments on commit 423da0e

Please sign in to comment.