Socket
Socket
Sign inDemoInstall

@parca/client

Package Overview
Dependencies
Maintainers
4
Versions
106
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@parca/client - npm Package Compare versions

Comparing version 0.12.5 to 0.12.6

12

CHANGELOG.md

@@ -6,2 +6,14 @@ # Change Log

## [0.12.6](https://github.com/parca-dev/parca/compare/ui-v0.12.5...ui-v0.12.6) (2022-03-24)
## [0.12.4](https://github.com/parca-dev/parca/compare/ui-v0.12.3...ui-v0.12.4) (2022-03-23)
**Note:** Version bump only for package @parca/client
## [0.12.5](https://github.com/parca-dev/parca/compare/ui-v0.12.4...ui-v0.12.5) (2022-03-24)

@@ -8,0 +20,0 @@

4

package.json
{
"name": "@parca/client",
"version": "0.12.5",
"version": "0.12.6",
"description": "Parca API Client",

@@ -24,3 +24,3 @@ "main": "src/index.ts",

},
"gitHead": "beba5e0938216b286c0de9639b96b88eb8420c06"
"gitHead": "5ac2cede2384a48df3df2615bcccfaaf0f4933f5"
}

@@ -10,2 +10,5 @@ // package: parca.debuginfo.v1alpha1

getHash(): string;
setHash(value: string): void;
serializeBinary(): Uint8Array;

@@ -24,2 +27,3 @@ toObject(includeInstance?: boolean): ExistsRequest.AsObject;

buildId: string,
hash: string,
}

@@ -89,2 +93,5 @@ }

getHash(): string;
setHash(value: string): void;
serializeBinary(): Uint8Array;

@@ -103,2 +110,3 @@ toObject(includeInstance?: boolean): UploadInfo.AsObject;

buildId: string,
hash: string,
}

@@ -105,0 +113,0 @@ }

@@ -167,3 +167,4 @@ // source: parca/debuginfo/v1alpha1/debuginfo.proto

var f, obj = {
buildId: jspb.Message.getFieldWithDefault(msg, 1, "")
buildId: jspb.Message.getFieldWithDefault(msg, 1, ""),
hash: jspb.Message.getFieldWithDefault(msg, 2, "")
};

@@ -209,2 +210,6 @@

break;
case 2:
var value = /** @type {string} */ (reader.readString());
msg.setHash(value);
break;
default:

@@ -246,2 +251,9 @@ reader.skipField();

}
f = message.getHash();
if (f.length > 0) {
writer.writeString(
2,
f
);
}
};

@@ -268,5 +280,23 @@

/**
* optional string hash = 2;
* @return {string}
*/
proto.parca.debuginfo.v1alpha1.ExistsRequest.prototype.getHash = function() {
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
};
/**
* @param {string} value
* @return {!proto.parca.debuginfo.v1alpha1.ExistsRequest} returns this
*/
proto.parca.debuginfo.v1alpha1.ExistsRequest.prototype.setHash = function(value) {
return jspb.Message.setProto3StringField(this, 2, value);
};
if (jspb.Message.GENERATE_TO_OBJECT) {

@@ -680,3 +710,4 @@ /**

var f, obj = {
buildId: jspb.Message.getFieldWithDefault(msg, 1, "")
buildId: jspb.Message.getFieldWithDefault(msg, 1, ""),
hash: jspb.Message.getFieldWithDefault(msg, 2, "")
};

@@ -722,2 +753,6 @@

break;
case 2:
var value = /** @type {string} */ (reader.readString());
msg.setHash(value);
break;
default:

@@ -759,2 +794,9 @@ reader.skipField();

}
f = message.getHash();
if (f.length > 0) {
writer.writeString(
2,
f
);
}
};

@@ -781,5 +823,23 @@

/**
* optional string hash = 2;
* @return {string}
*/
proto.parca.debuginfo.v1alpha1.UploadInfo.prototype.getHash = function() {
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
};
/**
* @param {string} value
* @return {!proto.parca.debuginfo.v1alpha1.UploadInfo} returns this
*/
proto.parca.debuginfo.v1alpha1.UploadInfo.prototype.setHash = function(value) {
return jspb.Message.setProto3StringField(this, 2, value);
};
if (jspb.Message.GENERATE_TO_OBJECT) {

@@ -786,0 +846,0 @@ /**

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc