pathchain 1.0.53 → 1.0.54
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/package.json +1 -1
- package/proto/link.proto +5 -5
package/package.json
CHANGED
package/proto/link.proto
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
syntax = "proto3";
|
|
2
2
|
|
|
3
|
-
message
|
|
3
|
+
message link {
|
|
4
4
|
required string register = 1;
|
|
5
5
|
required string author = 2;
|
|
6
|
-
required string
|
|
7
|
-
required string
|
|
8
|
-
required string
|
|
9
|
-
required string
|
|
6
|
+
required string prev = 3;
|
|
7
|
+
required string next = 4;
|
|
8
|
+
required string target = 5;
|
|
9
|
+
required string ancestor = 6;
|
|
10
10
|
required string tag = 7;
|
|
11
11
|
}
|