@dcl/protocol 1.0.0-3605882850.commit-092c285 → 1.0.0-3678623066.commit-a335c0a
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.
|
@@ -51,8 +51,6 @@ export interface SystemInfoReportRequest {
|
|
|
51
51
|
processorType: string;
|
|
52
52
|
processorCount: number;
|
|
53
53
|
systemMemorySize: number;
|
|
54
|
-
/** TODO: remove useBinaryTransform after ECS7 is fully in prod */
|
|
55
|
-
useBinaryTransform: boolean;
|
|
56
54
|
}
|
|
57
55
|
|
|
58
56
|
export interface SystemInfoReportResponse {
|
|
@@ -496,7 +494,6 @@ function createBaseSystemInfoReportRequest(): SystemInfoReportRequest {
|
|
|
496
494
|
processorType: "",
|
|
497
495
|
processorCount: 0,
|
|
498
496
|
systemMemorySize: 0,
|
|
499
|
-
useBinaryTransform: false,
|
|
500
497
|
};
|
|
501
498
|
}
|
|
502
499
|
|
|
@@ -520,9 +517,6 @@ export const SystemInfoReportRequest = {
|
|
|
520
517
|
if (message.systemMemorySize !== 0) {
|
|
521
518
|
writer.uint32(53).fixed32(message.systemMemorySize);
|
|
522
519
|
}
|
|
523
|
-
if (message.useBinaryTransform === true) {
|
|
524
|
-
writer.uint32(56).bool(message.useBinaryTransform);
|
|
525
|
-
}
|
|
526
520
|
return writer;
|
|
527
521
|
},
|
|
528
522
|
|
|
@@ -551,9 +545,6 @@ export const SystemInfoReportRequest = {
|
|
|
551
545
|
case 6:
|
|
552
546
|
message.systemMemorySize = reader.fixed32();
|
|
553
547
|
break;
|
|
554
|
-
case 7:
|
|
555
|
-
message.useBinaryTransform = reader.bool();
|
|
556
|
-
break;
|
|
557
548
|
default:
|
|
558
549
|
reader.skipType(tag & 7);
|
|
559
550
|
break;
|
|
@@ -570,7 +561,6 @@ export const SystemInfoReportRequest = {
|
|
|
570
561
|
processorType: isSet(object.processorType) ? String(object.processorType) : "",
|
|
571
562
|
processorCount: isSet(object.processorCount) ? Number(object.processorCount) : 0,
|
|
572
563
|
systemMemorySize: isSet(object.systemMemorySize) ? Number(object.systemMemorySize) : 0,
|
|
573
|
-
useBinaryTransform: isSet(object.useBinaryTransform) ? Boolean(object.useBinaryTransform) : false,
|
|
574
564
|
};
|
|
575
565
|
},
|
|
576
566
|
|
|
@@ -582,7 +572,6 @@ export const SystemInfoReportRequest = {
|
|
|
582
572
|
message.processorType !== undefined && (obj.processorType = message.processorType);
|
|
583
573
|
message.processorCount !== undefined && (obj.processorCount = Math.round(message.processorCount));
|
|
584
574
|
message.systemMemorySize !== undefined && (obj.systemMemorySize = Math.round(message.systemMemorySize));
|
|
585
|
-
message.useBinaryTransform !== undefined && (obj.useBinaryTransform = message.useBinaryTransform);
|
|
586
575
|
return obj;
|
|
587
576
|
},
|
|
588
577
|
|
|
@@ -594,7 +583,6 @@ export const SystemInfoReportRequest = {
|
|
|
594
583
|
message.processorType = object.processorType ?? "";
|
|
595
584
|
message.processorCount = object.processorCount ?? 0;
|
|
596
585
|
message.systemMemorySize = object.systemMemorySize ?? 0;
|
|
597
|
-
message.useBinaryTransform = object.useBinaryTransform ?? false;
|
|
598
586
|
return message;
|
|
599
587
|
},
|
|
600
588
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dcl/protocol",
|
|
3
|
-
"version": "1.0.0-
|
|
3
|
+
"version": "1.0.0-3678623066.commit-a335c0a",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -25,5 +25,5 @@
|
|
|
25
25
|
"out-ts",
|
|
26
26
|
"public"
|
|
27
27
|
],
|
|
28
|
-
"commit": "
|
|
28
|
+
"commit": "a335c0a78d221b2cd5ced50d5dbafcd678a225cd"
|
|
29
29
|
}
|
|
@@ -39,9 +39,6 @@ message SystemInfoReportRequest {
|
|
|
39
39
|
string processor_type = 4;
|
|
40
40
|
fixed32 processor_count = 5;
|
|
41
41
|
fixed32 system_memory_size = 6;
|
|
42
|
-
|
|
43
|
-
// TODO: remove useBinaryTransform after ECS7 is fully in prod
|
|
44
|
-
bool use_binary_transform = 7;
|
|
45
42
|
}
|
|
46
43
|
|
|
47
44
|
message SystemInfoReportResponse {}
|