+4
server/handle_repo_apply_writes.go
+4
server/handle_repo_apply_writes.go
+2
-1
server/repo.go
+2
-1
server/repo.go
···
83
83
}
84
84
85
85
type ApplyWriteResult struct {
86
+
Type string `json:"$type,omitempty"`
86
87
Uri string `json:"uri"`
87
88
Cid string `json:"cid"`
88
-
Commit *RepoCommit `json:"commit"`
89
+
Commit *RepoCommit `json:"commit,omitempty"`
89
90
ValidationStatus *string `json:"validationStatus"`
90
91
}
91
92