@gitpod/ide-metrics-api-grpcweb 0.0.1-pd-sf-error-report.6 → 0.0.1-release-2022.9.2.1
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/idemetrics_pb.d.ts +0 -8
- package/lib/idemetrics_pb.js +1 -61
- package/lib/index.js +1 -1
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
- package/pkg-yarn.lock +1 -1
- package/provenance-bundle.jsonl +2 -2
package/lib/idemetrics_pb.d.ts
CHANGED
@@ -110,12 +110,6 @@ export class ReportErrorRequest extends jspb.Message {
|
|
110
110
|
|
111
111
|
getPropertiesMap(): jspb.Map<string, string>;
|
112
112
|
clearPropertiesMap(): void;
|
113
|
-
getName(): string;
|
114
|
-
setName(value: string): void;
|
115
|
-
|
116
|
-
getMessage(): string;
|
117
|
-
setMessage(value: string): void;
|
118
|
-
|
119
113
|
serializeBinary(): Uint8Array;
|
120
114
|
toObject(includeInstance?: boolean): ReportErrorRequest.AsObject;
|
121
115
|
static toObject(includeInstance: boolean, msg: ReportErrorRequest): ReportErrorRequest.AsObject;
|
@@ -135,8 +129,6 @@ export namespace ReportErrorRequest {
|
|
135
129
|
workspaceId: string,
|
136
130
|
instanceId: string,
|
137
131
|
propertiesMap: Array<[string, string]>,
|
138
|
-
name: string,
|
139
|
-
message: string,
|
140
132
|
}
|
141
133
|
}
|
142
134
|
|
package/lib/idemetrics_pb.js
CHANGED
@@ -773,9 +773,7 @@ proto.ide_metrics_api.ReportErrorRequest.toObject = function(includeInstance, ms
|
|
773
773
|
userId: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
774
774
|
workspaceId: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
775
775
|
instanceId: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
776
|
-
propertiesMap: (f = msg.getPropertiesMap()) ? f.toObject(includeInstance, undefined) : []
|
777
|
-
name: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
778
|
-
message: jspb.Message.getFieldWithDefault(msg, 9, "")
|
776
|
+
propertiesMap: (f = msg.getPropertiesMap()) ? f.toObject(includeInstance, undefined) : []
|
779
777
|
};
|
780
778
|
|
781
779
|
if (includeInstance) {
|
@@ -842,14 +840,6 @@ proto.ide_metrics_api.ReportErrorRequest.deserializeBinaryFromReader = function(
|
|
842
840
|
jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readString, null, "", "");
|
843
841
|
});
|
844
842
|
break;
|
845
|
-
case 8:
|
846
|
-
var value = /** @type {string} */ (reader.readString());
|
847
|
-
msg.setName(value);
|
848
|
-
break;
|
849
|
-
case 9:
|
850
|
-
var value = /** @type {string} */ (reader.readString());
|
851
|
-
msg.setMessage(value);
|
852
|
-
break;
|
853
843
|
default:
|
854
844
|
reader.skipField();
|
855
845
|
break;
|
@@ -925,20 +915,6 @@ proto.ide_metrics_api.ReportErrorRequest.serializeBinaryToWriter = function(mess
|
|
925
915
|
if (f && f.getLength() > 0) {
|
926
916
|
f.serializeBinary(7, writer, jspb.BinaryWriter.prototype.writeString, jspb.BinaryWriter.prototype.writeString);
|
927
917
|
}
|
928
|
-
f = message.getName();
|
929
|
-
if (f.length > 0) {
|
930
|
-
writer.writeString(
|
931
|
-
8,
|
932
|
-
f
|
933
|
-
);
|
934
|
-
}
|
935
|
-
f = message.getMessage();
|
936
|
-
if (f.length > 0) {
|
937
|
-
writer.writeString(
|
938
|
-
9,
|
939
|
-
f
|
940
|
-
);
|
941
|
-
}
|
942
918
|
};
|
943
919
|
|
944
920
|
|
@@ -1072,42 +1048,6 @@ proto.ide_metrics_api.ReportErrorRequest.prototype.clearPropertiesMap = function
|
|
1072
1048
|
return this;};
|
1073
1049
|
|
1074
1050
|
|
1075
|
-
/**
|
1076
|
-
* optional string name = 8;
|
1077
|
-
* @return {string}
|
1078
|
-
*/
|
1079
|
-
proto.ide_metrics_api.ReportErrorRequest.prototype.getName = function() {
|
1080
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 8, ""));
|
1081
|
-
};
|
1082
|
-
|
1083
|
-
|
1084
|
-
/**
|
1085
|
-
* @param {string} value
|
1086
|
-
* @return {!proto.ide_metrics_api.ReportErrorRequest} returns this
|
1087
|
-
*/
|
1088
|
-
proto.ide_metrics_api.ReportErrorRequest.prototype.setName = function(value) {
|
1089
|
-
return jspb.Message.setProto3StringField(this, 8, value);
|
1090
|
-
};
|
1091
|
-
|
1092
|
-
|
1093
|
-
/**
|
1094
|
-
* optional string message = 9;
|
1095
|
-
* @return {string}
|
1096
|
-
*/
|
1097
|
-
proto.ide_metrics_api.ReportErrorRequest.prototype.getMessage = function() {
|
1098
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 9, ""));
|
1099
|
-
};
|
1100
|
-
|
1101
|
-
|
1102
|
-
/**
|
1103
|
-
* @param {string} value
|
1104
|
-
* @return {!proto.ide_metrics_api.ReportErrorRequest} returns this
|
1105
|
-
*/
|
1106
|
-
proto.ide_metrics_api.ReportErrorRequest.prototype.setMessage = function(value) {
|
1107
|
-
return jspb.Message.setProto3StringField(this, 9, value);
|
1108
|
-
};
|
1109
|
-
|
1110
|
-
|
1111
1051
|
|
1112
1052
|
|
1113
1053
|
|