@parca/client
Advanced tools
Comparing version 0.16.58 to 0.16.59
@@ -6,2 +6,6 @@ # Change Log | ||
## 0.16.59 (2022-12-19) | ||
**Note:** Version bump only for package @parca/client | ||
## [0.16.58](https://github.com/parca-dev/parca/compare/@parca/client@0.16.57...@parca/client@0.16.58) (2022-12-12) | ||
@@ -8,0 +12,0 @@ |
@@ -366,2 +366,26 @@ import { ServiceType } from "@protobuf-ts/runtime-rpc"; | ||
notValidElf: boolean; | ||
/** | ||
* Whether the debuginfo contains dwarf information. | ||
* | ||
* @generated from protobuf field: bool has_dwarf = 2; | ||
*/ | ||
hasDwarf: boolean; | ||
/** | ||
* Whether the debuginfo contains Go's pclntab. | ||
* | ||
* @generated from protobuf field: bool has_go_pclntab = 3; | ||
*/ | ||
hasGoPclntab: boolean; | ||
/** | ||
* Whether the debuginfo contains symtab. | ||
* | ||
* @generated from protobuf field: bool has_symtab = 4; | ||
*/ | ||
hasSymtab: boolean; | ||
/** | ||
* Whether the debuginfo contains dynsym. | ||
* | ||
* @generated from protobuf field: bool has_dynsym = 5; | ||
*/ | ||
hasDynsym: boolean; | ||
} | ||
@@ -368,0 +392,0 @@ declare class ShouldInitiateUploadRequest$Type extends MessageType<ShouldInitiateUploadRequest> { |
@@ -768,7 +768,11 @@ // @generated by protobuf-ts 2.8.2 with parameter long_type_string,generate_dependencies | ||
super("parca.debuginfo.v1alpha1.DebuginfoQuality", [ | ||
{ no: 1, name: "not_valid_elf", kind: "scalar", T: 8 /*ScalarType.BOOL*/ } | ||
{ no: 1, name: "not_valid_elf", kind: "scalar", T: 8 /*ScalarType.BOOL*/ }, | ||
{ no: 2, name: "has_dwarf", kind: "scalar", T: 8 /*ScalarType.BOOL*/ }, | ||
{ no: 3, name: "has_go_pclntab", kind: "scalar", T: 8 /*ScalarType.BOOL*/ }, | ||
{ no: 4, name: "has_symtab", kind: "scalar", T: 8 /*ScalarType.BOOL*/ }, | ||
{ no: 5, name: "has_dynsym", kind: "scalar", T: 8 /*ScalarType.BOOL*/ } | ||
]); | ||
} | ||
create(value) { | ||
const message = { notValidElf: false }; | ||
const message = { notValidElf: false, hasDwarf: false, hasGoPclntab: false, hasSymtab: false, hasDynsym: false }; | ||
globalThis.Object.defineProperty(message, MESSAGE_TYPE, { enumerable: false, value: this }); | ||
@@ -787,2 +791,14 @@ if (value !== undefined) | ||
break; | ||
case /* bool has_dwarf */ 2: | ||
message.hasDwarf = reader.bool(); | ||
break; | ||
case /* bool has_go_pclntab */ 3: | ||
message.hasGoPclntab = reader.bool(); | ||
break; | ||
case /* bool has_symtab */ 4: | ||
message.hasSymtab = reader.bool(); | ||
break; | ||
case /* bool has_dynsym */ 5: | ||
message.hasDynsym = reader.bool(); | ||
break; | ||
default: | ||
@@ -803,2 +819,14 @@ let u = options.readUnknownField; | ||
writer.tag(1, WireType.Varint).bool(message.notValidElf); | ||
/* bool has_dwarf = 2; */ | ||
if (message.hasDwarf !== false) | ||
writer.tag(2, WireType.Varint).bool(message.hasDwarf); | ||
/* bool has_go_pclntab = 3; */ | ||
if (message.hasGoPclntab !== false) | ||
writer.tag(3, WireType.Varint).bool(message.hasGoPclntab); | ||
/* bool has_symtab = 4; */ | ||
if (message.hasSymtab !== false) | ||
writer.tag(4, WireType.Varint).bool(message.hasSymtab); | ||
/* bool has_dynsym = 5; */ | ||
if (message.hasDynsym !== false) | ||
writer.tag(5, WireType.Varint).bool(message.hasDynsym); | ||
let u = options.writeUnknownFields; | ||
@@ -805,0 +833,0 @@ if (u !== false) |
{ | ||
"name": "@parca/client", | ||
"version": "0.16.58", | ||
"version": "0.16.59", | ||
"description": "Parca API Client", | ||
@@ -26,3 +26,3 @@ "main": "dist/index.js", | ||
}, | ||
"gitHead": "5cb6f84f78525b2bffd1d498d99e83868d793333" | ||
"gitHead": "9e68d8aa4e98509fd0234cd70e882dd32c219d4d" | ||
} |
@@ -373,2 +373,26 @@ // @generated by protobuf-ts 2.8.2 with parameter long_type_string,generate_dependencies | ||
notValidElf: boolean; | ||
/** | ||
* Whether the debuginfo contains dwarf information. | ||
* | ||
* @generated from protobuf field: bool has_dwarf = 2; | ||
*/ | ||
hasDwarf: boolean; | ||
/** | ||
* Whether the debuginfo contains Go's pclntab. | ||
* | ||
* @generated from protobuf field: bool has_go_pclntab = 3; | ||
*/ | ||
hasGoPclntab: boolean; | ||
/** | ||
* Whether the debuginfo contains symtab. | ||
* | ||
* @generated from protobuf field: bool has_symtab = 4; | ||
*/ | ||
hasSymtab: boolean; | ||
/** | ||
* Whether the debuginfo contains dynsym. | ||
* | ||
* @generated from protobuf field: bool has_dynsym = 5; | ||
*/ | ||
hasDynsym: boolean; | ||
} | ||
@@ -1054,7 +1078,11 @@ // @generated message type with reflection information, may provide speed optimized methods | ||
super("parca.debuginfo.v1alpha1.DebuginfoQuality", [ | ||
{ no: 1, name: "not_valid_elf", kind: "scalar", T: 8 /*ScalarType.BOOL*/ } | ||
{ no: 1, name: "not_valid_elf", kind: "scalar", T: 8 /*ScalarType.BOOL*/ }, | ||
{ no: 2, name: "has_dwarf", kind: "scalar", T: 8 /*ScalarType.BOOL*/ }, | ||
{ no: 3, name: "has_go_pclntab", kind: "scalar", T: 8 /*ScalarType.BOOL*/ }, | ||
{ no: 4, name: "has_symtab", kind: "scalar", T: 8 /*ScalarType.BOOL*/ }, | ||
{ no: 5, name: "has_dynsym", kind: "scalar", T: 8 /*ScalarType.BOOL*/ } | ||
]); | ||
} | ||
create(value?: PartialMessage<DebuginfoQuality>): DebuginfoQuality { | ||
const message = { notValidElf: false }; | ||
const message = { notValidElf: false, hasDwarf: false, hasGoPclntab: false, hasSymtab: false, hasDynsym: false }; | ||
globalThis.Object.defineProperty(message, MESSAGE_TYPE, { enumerable: false, value: this }); | ||
@@ -1073,2 +1101,14 @@ if (value !== undefined) | ||
break; | ||
case /* bool has_dwarf */ 2: | ||
message.hasDwarf = reader.bool(); | ||
break; | ||
case /* bool has_go_pclntab */ 3: | ||
message.hasGoPclntab = reader.bool(); | ||
break; | ||
case /* bool has_symtab */ 4: | ||
message.hasSymtab = reader.bool(); | ||
break; | ||
case /* bool has_dynsym */ 5: | ||
message.hasDynsym = reader.bool(); | ||
break; | ||
default: | ||
@@ -1089,2 +1129,14 @@ let u = options.readUnknownField; | ||
writer.tag(1, WireType.Varint).bool(message.notValidElf); | ||
/* bool has_dwarf = 2; */ | ||
if (message.hasDwarf !== false) | ||
writer.tag(2, WireType.Varint).bool(message.hasDwarf); | ||
/* bool has_go_pclntab = 3; */ | ||
if (message.hasGoPclntab !== false) | ||
writer.tag(3, WireType.Varint).bool(message.hasGoPclntab); | ||
/* bool has_symtab = 4; */ | ||
if (message.hasSymtab !== false) | ||
writer.tag(4, WireType.Varint).bool(message.hasSymtab); | ||
/* bool has_dynsym = 5; */ | ||
if (message.hasDynsym !== false) | ||
writer.tag(5, WireType.Varint).bool(message.hasDynsym); | ||
let u = options.writeUnknownFields; | ||
@@ -1091,0 +1143,0 @@ if (u !== false) |
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
1408119
30030