@lansweeper/data-platform-outbound-grpc 0.1.16 → 0.1.17
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/CHANGELOG.md +8 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +10 -5
- package/gen-proto/outbound_pb.js +105 -63
- package/generated-go/outbound.pb.go +1006 -996
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +4 -2
package/java.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lansweeper/data-platform-outbound-grpc",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.17",
|
|
4
4
|
"description": "Data Platform Outbound gRPC",
|
|
5
5
|
"main": "gen-proto/index.js",
|
|
6
6
|
"types": "gen-proto/index.d.ts",
|
|
@@ -9,5 +9,5 @@
|
|
|
9
9
|
"@grpc/grpc-js": "^1.5.1",
|
|
10
10
|
"google-protobuf": "^3.17.0"
|
|
11
11
|
},
|
|
12
|
-
"gitHead": "
|
|
12
|
+
"gitHead": "6cdd8b69bef457b1d8caffdaaf5b603632904530"
|
|
13
13
|
}
|
package/proto/outbound.proto
CHANGED
|
@@ -116,6 +116,8 @@ message Asset {
|
|
|
116
116
|
*/
|
|
117
117
|
repeated string source_tag = 12;
|
|
118
118
|
|
|
119
|
+
repeated string tag = 14;
|
|
120
|
+
|
|
119
121
|
CoreFields core = 6;
|
|
120
122
|
|
|
121
123
|
optional HardwareInfo hw = 7;
|
|
@@ -126,6 +128,8 @@ message Asset {
|
|
|
126
128
|
|
|
127
129
|
optional NetworkInterfaces network_interfaces = 11;
|
|
128
130
|
|
|
131
|
+
repeated OperatingSystemPatch os_patch = 13;
|
|
132
|
+
|
|
129
133
|
// Reconciliation future
|
|
130
134
|
//string entry_state = 2; // GOLDEN | ALIAS
|
|
131
135
|
//string master_type = 3; // NULL | ENGINE | USER
|
|
@@ -213,8 +217,6 @@ message OperatingSystemInfo {
|
|
|
213
217
|
|
|
214
218
|
optional int32 rank = 8;
|
|
215
219
|
|
|
216
|
-
repeated OperatingSystemPatch patch = 9;
|
|
217
|
-
|
|
218
220
|
oneof raw {
|
|
219
221
|
WindowsRawOperatingSystemInfo windows = 32;
|
|
220
222
|
}
|