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.2 to 0.12.5

8

CHANGELOG.md

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

## [0.12.5](https://github.com/parca-dev/parca/compare/ui-v0.12.4...ui-v0.12.5) (2022-03-24)
**Note:** Version bump only for package @parca/client
## [0.12.2](https://github.com/parca-dev/parca/compare/ui-v0.12.1...ui-v0.12.2) (2022-03-14)

@@ -8,0 +16,0 @@

4

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

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

},
"gitHead": "55e2a33548e27fdb1efb8bb0a1598084e0d5ddf1"
"gitHead": "beba5e0938216b286c0de9639b96b88eb8420c06"
}

@@ -16,2 +16,5 @@ // package: parca.profilestore.v1alpha1

getNormalized(): boolean;
setNormalized(value: boolean): void;
serializeBinary(): Uint8Array;

@@ -31,2 +34,3 @@ toObject(includeInstance?: boolean): WriteRawRequest.AsObject;

seriesList: Array<RawProfileSeries.AsObject>,
normalized: boolean,
}

@@ -33,0 +37,0 @@ }

@@ -199,3 +199,4 @@ // source: parca/profilestore/v1alpha1/profilestore.proto

seriesList: jspb.Message.toObjectList(msg.getSeriesList(),
proto.parca.profilestore.v1alpha1.RawProfileSeries.toObject, includeInstance)
proto.parca.profilestore.v1alpha1.RawProfileSeries.toObject, includeInstance),
normalized: jspb.Message.getBooleanFieldWithDefault(msg, 3, false)
};

@@ -246,2 +247,6 @@

break;
case 3:
var value = /** @type {boolean} */ (reader.readBool());
msg.setNormalized(value);
break;
default:

@@ -291,2 +296,9 @@ reader.skipField();

}
f = message.getNormalized();
if (f) {
writer.writeBool(
3,
f
);
}
};

@@ -351,5 +363,23 @@

/**
* optional bool normalized = 3;
* @return {boolean}
*/
proto.parca.profilestore.v1alpha1.WriteRawRequest.prototype.getNormalized = function() {
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 3, false));
};
/**
* @param {boolean} value
* @return {!proto.parca.profilestore.v1alpha1.WriteRawRequest} returns this
*/
proto.parca.profilestore.v1alpha1.WriteRawRequest.prototype.setNormalized = function(value) {
return jspb.Message.setProto3BooleanField(this, 3, value);
};
if (jspb.Message.GENERATE_TO_OBJECT) {

@@ -356,0 +386,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