@lansweeper/data-platform-outbound-grpc 0.1.103 → 0.1.104
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 +61 -0
- package/gen-proto/outbound_pb.js +506 -1
- package/generated-go/outbound.pb.go +1340 -1182
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +18 -0
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.104",
|
|
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": "1c7b31a1c3325d9f7f84d1e4c2b987392cf15907"
|
|
13
13
|
}
|
package/proto/outbound.proto
CHANGED
|
@@ -188,6 +188,8 @@ message Asset {
|
|
|
188
188
|
optional NetworkProtocols network_protocols = 76;
|
|
189
189
|
optional PortScan port_scan = 77;
|
|
190
190
|
|
|
191
|
+
repeated WarrantyInfo warranty_info = 81;
|
|
192
|
+
|
|
191
193
|
// list of deprecated fields, now moved to computer message
|
|
192
194
|
reserved 9, 26, 13, 37, 15, 18, 19, 21, 24, 25, 27, 30, 28, 29, 31;
|
|
193
195
|
|
|
@@ -200,6 +202,7 @@ message Asset {
|
|
|
200
202
|
repeated AssetChangeEvent change_log = 80;
|
|
201
203
|
}
|
|
202
204
|
|
|
205
|
+
|
|
203
206
|
/**
|
|
204
207
|
* Asset change event log.
|
|
205
208
|
*/
|
|
@@ -212,6 +215,21 @@ message AssetChangeEvent {
|
|
|
212
215
|
}
|
|
213
216
|
}
|
|
214
217
|
|
|
218
|
+
/**
|
|
219
|
+
* Warranty information.
|
|
220
|
+
*/
|
|
221
|
+
message WarrantyInfo {
|
|
222
|
+
google.protobuf.Timestamp timestamp = 1;
|
|
223
|
+
optional google.protobuf.Timestamp start_date = 2;
|
|
224
|
+
optional google.protobuf.Timestamp end_date = 3;
|
|
225
|
+
optional google.protobuf.Timestamp ship_date = 4;
|
|
226
|
+
|
|
227
|
+
optional string service_type = 5;
|
|
228
|
+
optional string purchase_country = 6;
|
|
229
|
+
|
|
230
|
+
bool is_reliable = 7; // from is_silly
|
|
231
|
+
}
|
|
232
|
+
|
|
215
233
|
/**
|
|
216
234
|
* Computer message keeping all sections of asset.computer.
|
|
217
235
|
*/
|