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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/proto/link.proto +5 -5
package/package.json CHANGED
@@ -34,5 +34,5 @@
34
34
  "deprecated": false,
35
35
  "description": "![image](https://user-images.githubusercontent.com/104391124/282268780-cbbc1ee6-8d97-4d80-b896-66ae3eb723dd.png)",
36
36
  "name": "pathchain",
37
- "version": "1.0.53"
37
+ "version": "1.0.54"
38
38
  }
package/proto/link.proto CHANGED
@@ -1,11 +1,11 @@
1
1
  syntax = "proto3";
2
2
 
3
- message nodelink {
3
+ message link {
4
4
  required string register = 1;
5
5
  required string author = 2;
6
- required string ancestor = 3;
7
- required string prev = 4;
8
- required string next = 5;
9
- required string target = 6;
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
  }