@lansweeper/data-platform-outbound-grpc 0.1.95 → 0.1.96
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +197 -0
- package/gen-proto/outbound_pb.js +1613 -2
- package/generated-go/outbound.pb.go +4246 -3775
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +35 -0
|
@@ -5037,6 +5037,11 @@ export class Driver extends jspb.Message {
|
|
|
5037
5037
|
getWinPrinter(): WindowsPrinterDriver | undefined;
|
|
5038
5038
|
setWinPrinter(value?: WindowsPrinterDriver): Driver;
|
|
5039
5039
|
|
|
5040
|
+
hasMacKernelExtension(): boolean;
|
|
5041
|
+
clearMacKernelExtension(): void;
|
|
5042
|
+
getMacKernelExtension(): MacOsKernelExtension | undefined;
|
|
5043
|
+
setMacKernelExtension(value?: MacOsKernelExtension): Driver;
|
|
5044
|
+
|
|
5040
5045
|
hasName(): boolean;
|
|
5041
5046
|
clearName(): void;
|
|
5042
5047
|
getName(): string | undefined;
|
|
@@ -5064,6 +5069,7 @@ export namespace Driver {
|
|
|
5064
5069
|
winSys?: WindowsSystemDriver.AsObject,
|
|
5065
5070
|
winPnp?: WindowsPnpSignedDriver.AsObject,
|
|
5066
5071
|
winPrinter?: WindowsPrinterDriver.AsObject,
|
|
5072
|
+
macKernelExtension?: MacOsKernelExtension.AsObject,
|
|
5067
5073
|
name?: string,
|
|
5068
5074
|
description?: string,
|
|
5069
5075
|
}
|
|
@@ -5073,6 +5079,7 @@ export namespace Driver {
|
|
|
5073
5079
|
WIN_SYS = 1,
|
|
5074
5080
|
WIN_PNP = 2,
|
|
5075
5081
|
WIN_PRINTER = 3,
|
|
5082
|
+
MAC_KERNEL_EXTENSION = 4,
|
|
5076
5083
|
}
|
|
5077
5084
|
|
|
5078
5085
|
}
|
|
@@ -5458,6 +5465,196 @@ export namespace WindowsPrinterDriver {
|
|
|
5458
5465
|
}
|
|
5459
5466
|
}
|
|
5460
5467
|
|
|
5468
|
+
export class MacOsKernelExtension extends jspb.Message {
|
|
5469
|
+
|
|
5470
|
+
hasName(): boolean;
|
|
5471
|
+
clearName(): void;
|
|
5472
|
+
getName(): string | undefined;
|
|
5473
|
+
setName(value: string): MacOsKernelExtension;
|
|
5474
|
+
|
|
5475
|
+
hasHas64BitIntelCode(): boolean;
|
|
5476
|
+
clearHas64BitIntelCode(): void;
|
|
5477
|
+
getHas64BitIntelCode(): string | undefined;
|
|
5478
|
+
setHas64BitIntelCode(value: string): MacOsKernelExtension;
|
|
5479
|
+
clearArchitecturesList(): void;
|
|
5480
|
+
getArchitecturesList(): Array<string>;
|
|
5481
|
+
setArchitecturesList(value: Array<string>): MacOsKernelExtension;
|
|
5482
|
+
addArchitectures(value: string, index?: number): string;
|
|
5483
|
+
|
|
5484
|
+
hasBundleId(): boolean;
|
|
5485
|
+
clearBundleId(): void;
|
|
5486
|
+
getBundleId(): string | undefined;
|
|
5487
|
+
setBundleId(value: string): MacOsKernelExtension;
|
|
5488
|
+
|
|
5489
|
+
hasDependencies(): boolean;
|
|
5490
|
+
clearDependencies(): void;
|
|
5491
|
+
getDependencies(): string | undefined;
|
|
5492
|
+
setDependencies(value: string): MacOsKernelExtension;
|
|
5493
|
+
clearDependencyErrorsList(): void;
|
|
5494
|
+
getDependencyErrorsList(): Array<KernelExtensionErrorType>;
|
|
5495
|
+
setDependencyErrorsList(value: Array<KernelExtensionErrorType>): MacOsKernelExtension;
|
|
5496
|
+
addDependencyErrors(value?: KernelExtensionErrorType, index?: number): KernelExtensionErrorType;
|
|
5497
|
+
|
|
5498
|
+
hasInfo(): boolean;
|
|
5499
|
+
clearInfo(): void;
|
|
5500
|
+
getInfo(): string | undefined;
|
|
5501
|
+
setInfo(value: string): MacOsKernelExtension;
|
|
5502
|
+
|
|
5503
|
+
hasLastModified(): boolean;
|
|
5504
|
+
clearLastModified(): void;
|
|
5505
|
+
getLastModified(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
5506
|
+
setLastModified(value?: google_protobuf_timestamp_pb.Timestamp): MacOsKernelExtension;
|
|
5507
|
+
|
|
5508
|
+
hasLoadAddress(): boolean;
|
|
5509
|
+
clearLoadAddress(): void;
|
|
5510
|
+
getLoadAddress(): string | undefined;
|
|
5511
|
+
setLoadAddress(value: string): MacOsKernelExtension;
|
|
5512
|
+
|
|
5513
|
+
hasLoadable(): boolean;
|
|
5514
|
+
clearLoadable(): void;
|
|
5515
|
+
getLoadable(): string | undefined;
|
|
5516
|
+
setLoadable(value: string): MacOsKernelExtension;
|
|
5517
|
+
|
|
5518
|
+
hasLoaded(): boolean;
|
|
5519
|
+
clearLoaded(): void;
|
|
5520
|
+
getLoaded(): string | undefined;
|
|
5521
|
+
setLoaded(value: string): MacOsKernelExtension;
|
|
5522
|
+
|
|
5523
|
+
hasNotarized(): boolean;
|
|
5524
|
+
clearNotarized(): void;
|
|
5525
|
+
getNotarized(): string | undefined;
|
|
5526
|
+
setNotarized(value: string): MacOsKernelExtension;
|
|
5527
|
+
|
|
5528
|
+
hasObtainedFrom(): boolean;
|
|
5529
|
+
clearObtainedFrom(): void;
|
|
5530
|
+
getObtainedFrom(): string | undefined;
|
|
5531
|
+
setObtainedFrom(value: string): MacOsKernelExtension;
|
|
5532
|
+
|
|
5533
|
+
hasPathLocation(): boolean;
|
|
5534
|
+
clearPathLocation(): void;
|
|
5535
|
+
getPathLocation(): string | undefined;
|
|
5536
|
+
setPathLocation(value: string): MacOsKernelExtension;
|
|
5537
|
+
|
|
5538
|
+
hasRuntimeEnvironment(): boolean;
|
|
5539
|
+
clearRuntimeEnvironment(): void;
|
|
5540
|
+
getRuntimeEnvironment(): string | undefined;
|
|
5541
|
+
setRuntimeEnvironment(value: string): MacOsKernelExtension;
|
|
5542
|
+
|
|
5543
|
+
hasSignedBy(): boolean;
|
|
5544
|
+
clearSignedBy(): void;
|
|
5545
|
+
getSignedBy(): string | undefined;
|
|
5546
|
+
setSignedBy(value: string): MacOsKernelExtension;
|
|
5547
|
+
|
|
5548
|
+
hasSigningErrors(): boolean;
|
|
5549
|
+
clearSigningErrors(): void;
|
|
5550
|
+
getSigningErrors(): string | undefined;
|
|
5551
|
+
setSigningErrors(value: string): MacOsKernelExtension;
|
|
5552
|
+
clearValidityErrorsList(): void;
|
|
5553
|
+
getValidityErrorsList(): Array<KernelExtensionErrorType>;
|
|
5554
|
+
setValidityErrorsList(value: Array<KernelExtensionErrorType>): MacOsKernelExtension;
|
|
5555
|
+
addValidityErrors(value?: KernelExtensionErrorType, index?: number): KernelExtensionErrorType;
|
|
5556
|
+
|
|
5557
|
+
hasVersion(): boolean;
|
|
5558
|
+
clearVersion(): void;
|
|
5559
|
+
getVersion(): string | undefined;
|
|
5560
|
+
setVersion(value: string): MacOsKernelExtension;
|
|
5561
|
+
|
|
5562
|
+
hasVersionKext(): boolean;
|
|
5563
|
+
clearVersionKext(): void;
|
|
5564
|
+
getVersionKext(): string | undefined;
|
|
5565
|
+
setVersionKext(value: string): MacOsKernelExtension;
|
|
5566
|
+
|
|
5567
|
+
serializeBinary(): Uint8Array;
|
|
5568
|
+
toObject(includeInstance?: boolean): MacOsKernelExtension.AsObject;
|
|
5569
|
+
static toObject(includeInstance: boolean, msg: MacOsKernelExtension): MacOsKernelExtension.AsObject;
|
|
5570
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5571
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5572
|
+
static serializeBinaryToWriter(message: MacOsKernelExtension, writer: jspb.BinaryWriter): void;
|
|
5573
|
+
static deserializeBinary(bytes: Uint8Array): MacOsKernelExtension;
|
|
5574
|
+
static deserializeBinaryFromReader(message: MacOsKernelExtension, reader: jspb.BinaryReader): MacOsKernelExtension;
|
|
5575
|
+
}
|
|
5576
|
+
|
|
5577
|
+
export namespace MacOsKernelExtension {
|
|
5578
|
+
export type AsObject = {
|
|
5579
|
+
name?: string,
|
|
5580
|
+
has64BitIntelCode?: string,
|
|
5581
|
+
architecturesList: Array<string>,
|
|
5582
|
+
bundleId?: string,
|
|
5583
|
+
dependencies?: string,
|
|
5584
|
+
dependencyErrorsList: Array<KernelExtensionErrorType.AsObject>,
|
|
5585
|
+
info?: string,
|
|
5586
|
+
lastModified?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
5587
|
+
loadAddress?: string,
|
|
5588
|
+
loadable?: string,
|
|
5589
|
+
loaded?: string,
|
|
5590
|
+
notarized?: string,
|
|
5591
|
+
obtainedFrom?: string,
|
|
5592
|
+
pathLocation?: string,
|
|
5593
|
+
runtimeEnvironment?: string,
|
|
5594
|
+
signedBy?: string,
|
|
5595
|
+
signingErrors?: string,
|
|
5596
|
+
validityErrorsList: Array<KernelExtensionErrorType.AsObject>,
|
|
5597
|
+
version?: string,
|
|
5598
|
+
versionKext?: string,
|
|
5599
|
+
}
|
|
5600
|
+
}
|
|
5601
|
+
|
|
5602
|
+
export class KernelExtensionErrorType extends jspb.Message {
|
|
5603
|
+
|
|
5604
|
+
hasErrorType(): boolean;
|
|
5605
|
+
clearErrorType(): void;
|
|
5606
|
+
getErrorType(): string | undefined;
|
|
5607
|
+
setErrorType(value: string): KernelExtensionErrorType;
|
|
5608
|
+
clearErrorsList(): void;
|
|
5609
|
+
getErrorsList(): Array<KernelExtensionError>;
|
|
5610
|
+
setErrorsList(value: Array<KernelExtensionError>): KernelExtensionErrorType;
|
|
5611
|
+
addErrors(value?: KernelExtensionError, index?: number): KernelExtensionError;
|
|
5612
|
+
|
|
5613
|
+
serializeBinary(): Uint8Array;
|
|
5614
|
+
toObject(includeInstance?: boolean): KernelExtensionErrorType.AsObject;
|
|
5615
|
+
static toObject(includeInstance: boolean, msg: KernelExtensionErrorType): KernelExtensionErrorType.AsObject;
|
|
5616
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5617
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5618
|
+
static serializeBinaryToWriter(message: KernelExtensionErrorType, writer: jspb.BinaryWriter): void;
|
|
5619
|
+
static deserializeBinary(bytes: Uint8Array): KernelExtensionErrorType;
|
|
5620
|
+
static deserializeBinaryFromReader(message: KernelExtensionErrorType, reader: jspb.BinaryReader): KernelExtensionErrorType;
|
|
5621
|
+
}
|
|
5622
|
+
|
|
5623
|
+
export namespace KernelExtensionErrorType {
|
|
5624
|
+
export type AsObject = {
|
|
5625
|
+
errorType?: string,
|
|
5626
|
+
errorsList: Array<KernelExtensionError.AsObject>,
|
|
5627
|
+
}
|
|
5628
|
+
}
|
|
5629
|
+
|
|
5630
|
+
export class KernelExtensionError extends jspb.Message {
|
|
5631
|
+
|
|
5632
|
+
hasErrorDescription(): boolean;
|
|
5633
|
+
clearErrorDescription(): void;
|
|
5634
|
+
getErrorDescription(): string | undefined;
|
|
5635
|
+
setErrorDescription(value: string): KernelExtensionError;
|
|
5636
|
+
clearValuesList(): void;
|
|
5637
|
+
getValuesList(): Array<string>;
|
|
5638
|
+
setValuesList(value: Array<string>): KernelExtensionError;
|
|
5639
|
+
addValues(value: string, index?: number): string;
|
|
5640
|
+
|
|
5641
|
+
serializeBinary(): Uint8Array;
|
|
5642
|
+
toObject(includeInstance?: boolean): KernelExtensionError.AsObject;
|
|
5643
|
+
static toObject(includeInstance: boolean, msg: KernelExtensionError): KernelExtensionError.AsObject;
|
|
5644
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5645
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5646
|
+
static serializeBinaryToWriter(message: KernelExtensionError, writer: jspb.BinaryWriter): void;
|
|
5647
|
+
static deserializeBinary(bytes: Uint8Array): KernelExtensionError;
|
|
5648
|
+
static deserializeBinaryFromReader(message: KernelExtensionError, reader: jspb.BinaryReader): KernelExtensionError;
|
|
5649
|
+
}
|
|
5650
|
+
|
|
5651
|
+
export namespace KernelExtensionError {
|
|
5652
|
+
export type AsObject = {
|
|
5653
|
+
errorDescription?: string,
|
|
5654
|
+
valuesList: Array<string>,
|
|
5655
|
+
}
|
|
5656
|
+
}
|
|
5657
|
+
|
|
5461
5658
|
export class SoundCard extends jspb.Message {
|
|
5462
5659
|
|
|
5463
5660
|
hasCaption(): boolean;
|