fix: add involves edge from task to agent:nomos at creation
Some checks failed
ci / build-test (push) Has been cancelled
ci / docker-build (push) Has been cancelled
ci / web (push) Has been cancelled
Desktop App / Build Linux (amd64) (push) Has been cancelled
Desktop App / Attach to Release (push) Has been cancelled

Plus sync vendor directory for Docker build compatibility.
This commit is contained in:
2026-08-11 22:03:12 +02:00
parent 7d6a3320d4
commit febc153b7f
3384 changed files with 945212 additions and 2 deletions

52
vendor/github.com/apapsch/go-jsonmerge/v2/doc.go generated vendored Normal file
View File

@@ -0,0 +1,52 @@
// Package jsonmerge helps mergeing JSON objects
//
// For example you have this documents:
//
// original.json
// {
// "number": 1,
// "string": "value",
// "object": {
// "number": 1,
// "string": "value",
// "nested object": {
// "number": 2
// },
// "array": [1, 2, 3],
// "partial_array": [1, 2, 3]
// }
// }
//
// patch.json
// {
// "number": 2,
// "string": "value1",
// "nonexitent": "woot",
// "object": {
// "number": 3,
// "string": "value2",
// "nested object": {
// "number": 4
// },
// "array": [3, 2, 1],
// "partial_array": {
// "1": 4
// }
// }
// }
//
// After merge you will have this result:
// {
// "number": 2,
// "string": "value1",
// "object": {
// "number": 3,
// "string": "value2",
// "nested object": {
// "number": 4
// },
// "array": [3, 2, 1],
// "partial_array": [1, 4, 3]
// }
// }
package jsonmerge