@parca/client
Advanced tools
Comparing version 0.16.84 to 0.16.85
@@ -6,2 +6,6 @@ # Change Log | ||
## [0.16.85](https://github.com/parca-dev/parca/compare/@parca/client@0.16.84...@parca/client@0.16.85) (2023-08-23) | ||
**Note:** Version bump only for package @parca/client | ||
## [0.16.84](https://github.com/parca-dev/parca/compare/@parca/client@0.16.83...@parca/client@0.16.84) (2023-08-16) | ||
@@ -8,0 +12,0 @@ |
@@ -373,2 +373,8 @@ import { ServiceType } from "@protobuf-ts/runtime-rpc"; | ||
groupBy?: GroupBy; | ||
/** | ||
* source information about the source requested, required if source report is requested | ||
* | ||
* @generated from protobuf field: optional parca.query.v1alpha1.SourceReference source_reference = 9; | ||
*/ | ||
sourceReference?: SourceReference; | ||
} | ||
@@ -442,5 +448,36 @@ /** | ||
*/ | ||
FLAMEGRAPH_ARROW = 5 | ||
FLAMEGRAPH_ARROW = 5, | ||
/** | ||
* REPORT_TYPE_SOURCE contains source code annotated with profiling information | ||
* | ||
* @generated from protobuf enum value: REPORT_TYPE_SOURCE = 6; | ||
*/ | ||
SOURCE = 6 | ||
} | ||
/** | ||
* SourceReference contains a reference to source code. | ||
* | ||
* @generated from protobuf message parca.query.v1alpha1.SourceReference | ||
*/ | ||
export interface SourceReference { | ||
/** | ||
* The build ID to request the source of. | ||
* | ||
* @generated from protobuf field: string build_id = 1; | ||
*/ | ||
buildId: string; | ||
/** | ||
* The filename requested. | ||
* | ||
* @generated from protobuf field: string filename = 2; | ||
*/ | ||
filename: string; | ||
/** | ||
* Whether to perform a full query or just retrieve the source. | ||
* | ||
* @generated from protobuf field: bool source_only = 3; | ||
*/ | ||
sourceOnly: boolean; | ||
} | ||
/** | ||
* GroupBy encapsulates the repeated fields to group by | ||
@@ -657,2 +694,21 @@ * | ||
/** | ||
* Source is the result of the source report type. | ||
* | ||
* @generated from protobuf message parca.query.v1alpha1.Source | ||
*/ | ||
export interface Source { | ||
/** | ||
* An arrow record that contains a row per source code line with value and diff columns for flat and cumulative. | ||
* | ||
* @generated from protobuf field: bytes record = 1; | ||
*/ | ||
record: Uint8Array; | ||
/** | ||
* The actual source file content. | ||
* | ||
* @generated from protobuf field: string source = 2; | ||
*/ | ||
source: string; | ||
} | ||
/** | ||
* FlamegraphRootNode is a root node of a flame graph | ||
@@ -932,2 +988,10 @@ * | ||
} | { | ||
oneofKind: "source"; | ||
/** | ||
* source is the source report type result | ||
* | ||
* @generated from protobuf field: parca.query.v1alpha1.Source source = 12; | ||
*/ | ||
source: Source; | ||
} | { | ||
oneofKind: undefined; | ||
@@ -1245,2 +1309,12 @@ }; | ||
export declare const QueryRequest: QueryRequest$Type; | ||
declare class SourceReference$Type extends MessageType<SourceReference> { | ||
constructor(); | ||
create(value?: PartialMessage<SourceReference>): SourceReference; | ||
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: SourceReference): SourceReference; | ||
internalBinaryWrite(message: SourceReference, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; | ||
} | ||
/** | ||
* @generated MessageType for protobuf message parca.query.v1alpha1.SourceReference | ||
*/ | ||
export declare const SourceReference: SourceReference$Type; | ||
declare class GroupBy$Type extends MessageType<GroupBy> { | ||
@@ -1306,2 +1380,12 @@ constructor(); | ||
export declare const FlamegraphArrow: FlamegraphArrow$Type; | ||
declare class Source$Type extends MessageType<Source> { | ||
constructor(); | ||
create(value?: PartialMessage<Source>): Source; | ||
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: Source): Source; | ||
internalBinaryWrite(message: Source, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; | ||
} | ||
/** | ||
* @generated MessageType for protobuf message parca.query.v1alpha1.Source | ||
*/ | ||
export declare const Source: Source$Type; | ||
declare class FlamegraphRootNode$Type extends MessageType<FlamegraphRootNode> { | ||
@@ -1308,0 +1392,0 @@ constructor(); |
{ | ||
"name": "@parca/client", | ||
"version": "0.16.84", | ||
"version": "0.16.85", | ||
"description": "Parca API Client", | ||
@@ -26,3 +26,3 @@ "main": "dist/index.js", | ||
}, | ||
"gitHead": "6538c664fe7a5cb4a41f599c999d272ed0423da4" | ||
"gitHead": "18567fe5daa44cf7a7f214124e01178a82b1e5a1" | ||
} |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1511335
32363