@lansweeper/data-platform-outbound-grpc 0.1.106 → 0.1.107
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 +71 -0
- package/gen-proto/outbound_pb.js +532 -2
- package/generated-go/outbound.pb.go +4277 -4062
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +12 -0
|
@@ -5167,6 +5167,36 @@ export class Driver extends jspb.Message {
|
|
|
5167
5167
|
getMacKernelExtension(): MacOsKernelExtension | undefined;
|
|
5168
5168
|
setMacKernelExtension(value?: MacOsKernelExtension): Driver;
|
|
5169
5169
|
|
|
5170
|
+
hasMacImageCaptureDevices(): boolean;
|
|
5171
|
+
clearMacImageCaptureDevices(): void;
|
|
5172
|
+
getMacImageCaptureDevices(): MacPrinterSoftwareItem | undefined;
|
|
5173
|
+
setMacImageCaptureDevices(value?: MacPrinterSoftwareItem): Driver;
|
|
5174
|
+
|
|
5175
|
+
hasMacImageCaptureSupport(): boolean;
|
|
5176
|
+
clearMacImageCaptureSupport(): void;
|
|
5177
|
+
getMacImageCaptureSupport(): MacPrinterSoftwareItem | undefined;
|
|
5178
|
+
setMacImageCaptureSupport(value?: MacPrinterSoftwareItem): Driver;
|
|
5179
|
+
|
|
5180
|
+
hasMacLibraryExtensions(): boolean;
|
|
5181
|
+
clearMacLibraryExtensions(): void;
|
|
5182
|
+
getMacLibraryExtensions(): MacPrinterSoftwareItem | undefined;
|
|
5183
|
+
setMacLibraryExtensions(value?: MacPrinterSoftwareItem): Driver;
|
|
5184
|
+
|
|
5185
|
+
hasMacPpds(): boolean;
|
|
5186
|
+
clearMacPpds(): void;
|
|
5187
|
+
getMacPpds(): MacPrinterSoftwareItem | undefined;
|
|
5188
|
+
setMacPpds(value?: MacPrinterSoftwareItem): Driver;
|
|
5189
|
+
|
|
5190
|
+
hasMacPrinters(): boolean;
|
|
5191
|
+
clearMacPrinters(): void;
|
|
5192
|
+
getMacPrinters(): MacPrinterSoftwareItem | undefined;
|
|
5193
|
+
setMacPrinters(value?: MacPrinterSoftwareItem): Driver;
|
|
5194
|
+
|
|
5195
|
+
hasMacSystemLibraryExtensions(): boolean;
|
|
5196
|
+
clearMacSystemLibraryExtensions(): void;
|
|
5197
|
+
getMacSystemLibraryExtensions(): MacPrinterSoftwareItem | undefined;
|
|
5198
|
+
setMacSystemLibraryExtensions(value?: MacPrinterSoftwareItem): Driver;
|
|
5199
|
+
|
|
5170
5200
|
hasName(): boolean;
|
|
5171
5201
|
clearName(): void;
|
|
5172
5202
|
getName(): string | undefined;
|
|
@@ -5195,6 +5225,12 @@ export namespace Driver {
|
|
|
5195
5225
|
winPnp?: WindowsPnpSignedDriver.AsObject,
|
|
5196
5226
|
winPrinter?: WindowsPrinterDriver.AsObject,
|
|
5197
5227
|
macKernelExtension?: MacOsKernelExtension.AsObject,
|
|
5228
|
+
macImageCaptureDevices?: MacPrinterSoftwareItem.AsObject,
|
|
5229
|
+
macImageCaptureSupport?: MacPrinterSoftwareItem.AsObject,
|
|
5230
|
+
macLibraryExtensions?: MacPrinterSoftwareItem.AsObject,
|
|
5231
|
+
macPpds?: MacPrinterSoftwareItem.AsObject,
|
|
5232
|
+
macPrinters?: MacPrinterSoftwareItem.AsObject,
|
|
5233
|
+
macSystemLibraryExtensions?: MacPrinterSoftwareItem.AsObject,
|
|
5198
5234
|
name?: string,
|
|
5199
5235
|
description?: string,
|
|
5200
5236
|
}
|
|
@@ -5205,6 +5241,12 @@ export namespace Driver {
|
|
|
5205
5241
|
WIN_PNP = 2,
|
|
5206
5242
|
WIN_PRINTER = 3,
|
|
5207
5243
|
MAC_KERNEL_EXTENSION = 4,
|
|
5244
|
+
MAC_IMAGE_CAPTURE_DEVICES = 5,
|
|
5245
|
+
MAC_IMAGE_CAPTURE_SUPPORT = 6,
|
|
5246
|
+
MAC_LIBRARY_EXTENSIONS = 7,
|
|
5247
|
+
MAC_PPDS = 8,
|
|
5248
|
+
MAC_PRINTERS = 9,
|
|
5249
|
+
MAC_SYSTEM_LIBRARY_EXTENSIONS = 10,
|
|
5208
5250
|
}
|
|
5209
5251
|
|
|
5210
5252
|
}
|
|
@@ -10231,6 +10273,35 @@ export namespace ComputerMacOsFramework {
|
|
|
10231
10273
|
}
|
|
10232
10274
|
}
|
|
10233
10275
|
|
|
10276
|
+
export class MacPrinterSoftwareItem extends jspb.Message {
|
|
10277
|
+
|
|
10278
|
+
hasInfoPath(): boolean;
|
|
10279
|
+
clearInfoPath(): void;
|
|
10280
|
+
getInfoPath(): string | undefined;
|
|
10281
|
+
setInfoPath(value: string): MacPrinterSoftwareItem;
|
|
10282
|
+
|
|
10283
|
+
hasInfoVersion(): boolean;
|
|
10284
|
+
clearInfoVersion(): void;
|
|
10285
|
+
getInfoVersion(): string | undefined;
|
|
10286
|
+
setInfoVersion(value: string): MacPrinterSoftwareItem;
|
|
10287
|
+
|
|
10288
|
+
serializeBinary(): Uint8Array;
|
|
10289
|
+
toObject(includeInstance?: boolean): MacPrinterSoftwareItem.AsObject;
|
|
10290
|
+
static toObject(includeInstance: boolean, msg: MacPrinterSoftwareItem): MacPrinterSoftwareItem.AsObject;
|
|
10291
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
10292
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
10293
|
+
static serializeBinaryToWriter(message: MacPrinterSoftwareItem, writer: jspb.BinaryWriter): void;
|
|
10294
|
+
static deserializeBinary(bytes: Uint8Array): MacPrinterSoftwareItem;
|
|
10295
|
+
static deserializeBinaryFromReader(message: MacPrinterSoftwareItem, reader: jspb.BinaryReader): MacPrinterSoftwareItem;
|
|
10296
|
+
}
|
|
10297
|
+
|
|
10298
|
+
export namespace MacPrinterSoftwareItem {
|
|
10299
|
+
export type AsObject = {
|
|
10300
|
+
infoPath?: string,
|
|
10301
|
+
infoVersion?: string,
|
|
10302
|
+
}
|
|
10303
|
+
}
|
|
10304
|
+
|
|
10234
10305
|
export class MappedValue extends jspb.Message {
|
|
10235
10306
|
getValue(): number;
|
|
10236
10307
|
setValue(value: number): MappedValue;
|
package/gen-proto/outbound_pb.js
CHANGED
|
@@ -117,6 +117,7 @@ goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.MacComputerBattery', null
|
|
|
117
117
|
goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.MacNetworkVolume', null, global);
|
|
118
118
|
goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.MacOperatingSystemInfo', null, global);
|
|
119
119
|
goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.MacOsKernelExtension', null, global);
|
|
120
|
+
goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem', null, global);
|
|
120
121
|
goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.MacRegionalRecoveryOsSettings', null, global);
|
|
121
122
|
goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.MacRegionalSystemSettings', null, global);
|
|
122
123
|
goog.exportSymbol('proto.com.lansweeper.dp.outbound.v1.MacRegionalUserSettings', null, global);
|
|
@@ -3322,6 +3323,27 @@ if (goog.DEBUG && !COMPILED) {
|
|
|
3322
3323
|
*/
|
|
3323
3324
|
proto.com.lansweeper.dp.outbound.v1.ComputerMacOsFramework.displayName = 'proto.com.lansweeper.dp.outbound.v1.ComputerMacOsFramework';
|
|
3324
3325
|
}
|
|
3326
|
+
/**
|
|
3327
|
+
* Generated by JsPbCodeGenerator.
|
|
3328
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
3329
|
+
* server response, or constructed directly in Javascript. The array is used
|
|
3330
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
|
3331
|
+
* If no data is provided, the constructed object will be empty, but still
|
|
3332
|
+
* valid.
|
|
3333
|
+
* @extends {jspb.Message}
|
|
3334
|
+
* @constructor
|
|
3335
|
+
*/
|
|
3336
|
+
proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem = function(opt_data) {
|
|
3337
|
+
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
3338
|
+
};
|
|
3339
|
+
goog.inherits(proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem, jspb.Message);
|
|
3340
|
+
if (goog.DEBUG && !COMPILED) {
|
|
3341
|
+
/**
|
|
3342
|
+
* @public
|
|
3343
|
+
* @override
|
|
3344
|
+
*/
|
|
3345
|
+
proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem.displayName = 'proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem';
|
|
3346
|
+
}
|
|
3325
3347
|
/**
|
|
3326
3348
|
* Generated by JsPbCodeGenerator.
|
|
3327
3349
|
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
@@ -43477,7 +43499,7 @@ proto.com.lansweeper.dp.outbound.v1.WindowsOsRecovery.prototype.hasMiniDumpDirec
|
|
|
43477
43499
|
* @private {!Array<!Array<number>>}
|
|
43478
43500
|
* @const
|
|
43479
43501
|
*/
|
|
43480
|
-
proto.com.lansweeper.dp.outbound.v1.Driver.oneofGroups_ = [[1,2,3,4]];
|
|
43502
|
+
proto.com.lansweeper.dp.outbound.v1.Driver.oneofGroups_ = [[1,2,3,4,5,6,7,8,9,10]];
|
|
43481
43503
|
|
|
43482
43504
|
/**
|
|
43483
43505
|
* @enum {number}
|
|
@@ -43487,7 +43509,13 @@ proto.com.lansweeper.dp.outbound.v1.Driver.DriverCase = {
|
|
|
43487
43509
|
WIN_SYS: 1,
|
|
43488
43510
|
WIN_PNP: 2,
|
|
43489
43511
|
WIN_PRINTER: 3,
|
|
43490
|
-
MAC_KERNEL_EXTENSION: 4
|
|
43512
|
+
MAC_KERNEL_EXTENSION: 4,
|
|
43513
|
+
MAC_IMAGE_CAPTURE_DEVICES: 5,
|
|
43514
|
+
MAC_IMAGE_CAPTURE_SUPPORT: 6,
|
|
43515
|
+
MAC_LIBRARY_EXTENSIONS: 7,
|
|
43516
|
+
MAC_PPDS: 8,
|
|
43517
|
+
MAC_PRINTERS: 9,
|
|
43518
|
+
MAC_SYSTEM_LIBRARY_EXTENSIONS: 10
|
|
43491
43519
|
};
|
|
43492
43520
|
|
|
43493
43521
|
/**
|
|
@@ -43532,6 +43560,12 @@ proto.com.lansweeper.dp.outbound.v1.Driver.toObject = function(includeInstance,
|
|
|
43532
43560
|
winPnp: (f = msg.getWinPnp()) && proto.com.lansweeper.dp.outbound.v1.WindowsPnpSignedDriver.toObject(includeInstance, f),
|
|
43533
43561
|
winPrinter: (f = msg.getWinPrinter()) && proto.com.lansweeper.dp.outbound.v1.WindowsPrinterDriver.toObject(includeInstance, f),
|
|
43534
43562
|
macKernelExtension: (f = msg.getMacKernelExtension()) && proto.com.lansweeper.dp.outbound.v1.MacOsKernelExtension.toObject(includeInstance, f),
|
|
43563
|
+
macImageCaptureDevices: (f = msg.getMacImageCaptureDevices()) && proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem.toObject(includeInstance, f),
|
|
43564
|
+
macImageCaptureSupport: (f = msg.getMacImageCaptureSupport()) && proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem.toObject(includeInstance, f),
|
|
43565
|
+
macLibraryExtensions: (f = msg.getMacLibraryExtensions()) && proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem.toObject(includeInstance, f),
|
|
43566
|
+
macPpds: (f = msg.getMacPpds()) && proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem.toObject(includeInstance, f),
|
|
43567
|
+
macPrinters: (f = msg.getMacPrinters()) && proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem.toObject(includeInstance, f),
|
|
43568
|
+
macSystemLibraryExtensions: (f = msg.getMacSystemLibraryExtensions()) && proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem.toObject(includeInstance, f),
|
|
43535
43569
|
name: jspb.Message.getFieldWithDefault(msg, 100, ""),
|
|
43536
43570
|
description: jspb.Message.getFieldWithDefault(msg, 101, "")
|
|
43537
43571
|
};
|
|
@@ -43590,6 +43624,36 @@ proto.com.lansweeper.dp.outbound.v1.Driver.deserializeBinaryFromReader = functio
|
|
|
43590
43624
|
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.MacOsKernelExtension.deserializeBinaryFromReader);
|
|
43591
43625
|
msg.setMacKernelExtension(value);
|
|
43592
43626
|
break;
|
|
43627
|
+
case 5:
|
|
43628
|
+
var value = new proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem;
|
|
43629
|
+
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem.deserializeBinaryFromReader);
|
|
43630
|
+
msg.setMacImageCaptureDevices(value);
|
|
43631
|
+
break;
|
|
43632
|
+
case 6:
|
|
43633
|
+
var value = new proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem;
|
|
43634
|
+
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem.deserializeBinaryFromReader);
|
|
43635
|
+
msg.setMacImageCaptureSupport(value);
|
|
43636
|
+
break;
|
|
43637
|
+
case 7:
|
|
43638
|
+
var value = new proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem;
|
|
43639
|
+
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem.deserializeBinaryFromReader);
|
|
43640
|
+
msg.setMacLibraryExtensions(value);
|
|
43641
|
+
break;
|
|
43642
|
+
case 8:
|
|
43643
|
+
var value = new proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem;
|
|
43644
|
+
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem.deserializeBinaryFromReader);
|
|
43645
|
+
msg.setMacPpds(value);
|
|
43646
|
+
break;
|
|
43647
|
+
case 9:
|
|
43648
|
+
var value = new proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem;
|
|
43649
|
+
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem.deserializeBinaryFromReader);
|
|
43650
|
+
msg.setMacPrinters(value);
|
|
43651
|
+
break;
|
|
43652
|
+
case 10:
|
|
43653
|
+
var value = new proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem;
|
|
43654
|
+
reader.readMessage(value,proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem.deserializeBinaryFromReader);
|
|
43655
|
+
msg.setMacSystemLibraryExtensions(value);
|
|
43656
|
+
break;
|
|
43593
43657
|
case 100:
|
|
43594
43658
|
var value = /** @type {string} */ (reader.readString());
|
|
43595
43659
|
msg.setName(value);
|
|
@@ -43659,6 +43723,54 @@ proto.com.lansweeper.dp.outbound.v1.Driver.serializeBinaryToWriter = function(me
|
|
|
43659
43723
|
proto.com.lansweeper.dp.outbound.v1.MacOsKernelExtension.serializeBinaryToWriter
|
|
43660
43724
|
);
|
|
43661
43725
|
}
|
|
43726
|
+
f = message.getMacImageCaptureDevices();
|
|
43727
|
+
if (f != null) {
|
|
43728
|
+
writer.writeMessage(
|
|
43729
|
+
5,
|
|
43730
|
+
f,
|
|
43731
|
+
proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem.serializeBinaryToWriter
|
|
43732
|
+
);
|
|
43733
|
+
}
|
|
43734
|
+
f = message.getMacImageCaptureSupport();
|
|
43735
|
+
if (f != null) {
|
|
43736
|
+
writer.writeMessage(
|
|
43737
|
+
6,
|
|
43738
|
+
f,
|
|
43739
|
+
proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem.serializeBinaryToWriter
|
|
43740
|
+
);
|
|
43741
|
+
}
|
|
43742
|
+
f = message.getMacLibraryExtensions();
|
|
43743
|
+
if (f != null) {
|
|
43744
|
+
writer.writeMessage(
|
|
43745
|
+
7,
|
|
43746
|
+
f,
|
|
43747
|
+
proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem.serializeBinaryToWriter
|
|
43748
|
+
);
|
|
43749
|
+
}
|
|
43750
|
+
f = message.getMacPpds();
|
|
43751
|
+
if (f != null) {
|
|
43752
|
+
writer.writeMessage(
|
|
43753
|
+
8,
|
|
43754
|
+
f,
|
|
43755
|
+
proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem.serializeBinaryToWriter
|
|
43756
|
+
);
|
|
43757
|
+
}
|
|
43758
|
+
f = message.getMacPrinters();
|
|
43759
|
+
if (f != null) {
|
|
43760
|
+
writer.writeMessage(
|
|
43761
|
+
9,
|
|
43762
|
+
f,
|
|
43763
|
+
proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem.serializeBinaryToWriter
|
|
43764
|
+
);
|
|
43765
|
+
}
|
|
43766
|
+
f = message.getMacSystemLibraryExtensions();
|
|
43767
|
+
if (f != null) {
|
|
43768
|
+
writer.writeMessage(
|
|
43769
|
+
10,
|
|
43770
|
+
f,
|
|
43771
|
+
proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem.serializeBinaryToWriter
|
|
43772
|
+
);
|
|
43773
|
+
}
|
|
43662
43774
|
f = /** @type {string} */ (jspb.Message.getField(message, 100));
|
|
43663
43775
|
if (f != null) {
|
|
43664
43776
|
writer.writeString(
|
|
@@ -43824,6 +43936,228 @@ proto.com.lansweeper.dp.outbound.v1.Driver.prototype.hasMacKernelExtension = fun
|
|
|
43824
43936
|
};
|
|
43825
43937
|
|
|
43826
43938
|
|
|
43939
|
+
/**
|
|
43940
|
+
* optional MacPrinterSoftwareItem mac_image_capture_devices = 5;
|
|
43941
|
+
* @return {?proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem}
|
|
43942
|
+
*/
|
|
43943
|
+
proto.com.lansweeper.dp.outbound.v1.Driver.prototype.getMacImageCaptureDevices = function() {
|
|
43944
|
+
return /** @type{?proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem} */ (
|
|
43945
|
+
jspb.Message.getWrapperField(this, proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem, 5));
|
|
43946
|
+
};
|
|
43947
|
+
|
|
43948
|
+
|
|
43949
|
+
/**
|
|
43950
|
+
* @param {?proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem|undefined} value
|
|
43951
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.Driver} returns this
|
|
43952
|
+
*/
|
|
43953
|
+
proto.com.lansweeper.dp.outbound.v1.Driver.prototype.setMacImageCaptureDevices = function(value) {
|
|
43954
|
+
return jspb.Message.setOneofWrapperField(this, 5, proto.com.lansweeper.dp.outbound.v1.Driver.oneofGroups_[0], value);
|
|
43955
|
+
};
|
|
43956
|
+
|
|
43957
|
+
|
|
43958
|
+
/**
|
|
43959
|
+
* Clears the message field making it undefined.
|
|
43960
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.Driver} returns this
|
|
43961
|
+
*/
|
|
43962
|
+
proto.com.lansweeper.dp.outbound.v1.Driver.prototype.clearMacImageCaptureDevices = function() {
|
|
43963
|
+
return this.setMacImageCaptureDevices(undefined);
|
|
43964
|
+
};
|
|
43965
|
+
|
|
43966
|
+
|
|
43967
|
+
/**
|
|
43968
|
+
* Returns whether this field is set.
|
|
43969
|
+
* @return {boolean}
|
|
43970
|
+
*/
|
|
43971
|
+
proto.com.lansweeper.dp.outbound.v1.Driver.prototype.hasMacImageCaptureDevices = function() {
|
|
43972
|
+
return jspb.Message.getField(this, 5) != null;
|
|
43973
|
+
};
|
|
43974
|
+
|
|
43975
|
+
|
|
43976
|
+
/**
|
|
43977
|
+
* optional MacPrinterSoftwareItem mac_image_capture_support = 6;
|
|
43978
|
+
* @return {?proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem}
|
|
43979
|
+
*/
|
|
43980
|
+
proto.com.lansweeper.dp.outbound.v1.Driver.prototype.getMacImageCaptureSupport = function() {
|
|
43981
|
+
return /** @type{?proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem} */ (
|
|
43982
|
+
jspb.Message.getWrapperField(this, proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem, 6));
|
|
43983
|
+
};
|
|
43984
|
+
|
|
43985
|
+
|
|
43986
|
+
/**
|
|
43987
|
+
* @param {?proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem|undefined} value
|
|
43988
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.Driver} returns this
|
|
43989
|
+
*/
|
|
43990
|
+
proto.com.lansweeper.dp.outbound.v1.Driver.prototype.setMacImageCaptureSupport = function(value) {
|
|
43991
|
+
return jspb.Message.setOneofWrapperField(this, 6, proto.com.lansweeper.dp.outbound.v1.Driver.oneofGroups_[0], value);
|
|
43992
|
+
};
|
|
43993
|
+
|
|
43994
|
+
|
|
43995
|
+
/**
|
|
43996
|
+
* Clears the message field making it undefined.
|
|
43997
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.Driver} returns this
|
|
43998
|
+
*/
|
|
43999
|
+
proto.com.lansweeper.dp.outbound.v1.Driver.prototype.clearMacImageCaptureSupport = function() {
|
|
44000
|
+
return this.setMacImageCaptureSupport(undefined);
|
|
44001
|
+
};
|
|
44002
|
+
|
|
44003
|
+
|
|
44004
|
+
/**
|
|
44005
|
+
* Returns whether this field is set.
|
|
44006
|
+
* @return {boolean}
|
|
44007
|
+
*/
|
|
44008
|
+
proto.com.lansweeper.dp.outbound.v1.Driver.prototype.hasMacImageCaptureSupport = function() {
|
|
44009
|
+
return jspb.Message.getField(this, 6) != null;
|
|
44010
|
+
};
|
|
44011
|
+
|
|
44012
|
+
|
|
44013
|
+
/**
|
|
44014
|
+
* optional MacPrinterSoftwareItem mac_library_extensions = 7;
|
|
44015
|
+
* @return {?proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem}
|
|
44016
|
+
*/
|
|
44017
|
+
proto.com.lansweeper.dp.outbound.v1.Driver.prototype.getMacLibraryExtensions = function() {
|
|
44018
|
+
return /** @type{?proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem} */ (
|
|
44019
|
+
jspb.Message.getWrapperField(this, proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem, 7));
|
|
44020
|
+
};
|
|
44021
|
+
|
|
44022
|
+
|
|
44023
|
+
/**
|
|
44024
|
+
* @param {?proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem|undefined} value
|
|
44025
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.Driver} returns this
|
|
44026
|
+
*/
|
|
44027
|
+
proto.com.lansweeper.dp.outbound.v1.Driver.prototype.setMacLibraryExtensions = function(value) {
|
|
44028
|
+
return jspb.Message.setOneofWrapperField(this, 7, proto.com.lansweeper.dp.outbound.v1.Driver.oneofGroups_[0], value);
|
|
44029
|
+
};
|
|
44030
|
+
|
|
44031
|
+
|
|
44032
|
+
/**
|
|
44033
|
+
* Clears the message field making it undefined.
|
|
44034
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.Driver} returns this
|
|
44035
|
+
*/
|
|
44036
|
+
proto.com.lansweeper.dp.outbound.v1.Driver.prototype.clearMacLibraryExtensions = function() {
|
|
44037
|
+
return this.setMacLibraryExtensions(undefined);
|
|
44038
|
+
};
|
|
44039
|
+
|
|
44040
|
+
|
|
44041
|
+
/**
|
|
44042
|
+
* Returns whether this field is set.
|
|
44043
|
+
* @return {boolean}
|
|
44044
|
+
*/
|
|
44045
|
+
proto.com.lansweeper.dp.outbound.v1.Driver.prototype.hasMacLibraryExtensions = function() {
|
|
44046
|
+
return jspb.Message.getField(this, 7) != null;
|
|
44047
|
+
};
|
|
44048
|
+
|
|
44049
|
+
|
|
44050
|
+
/**
|
|
44051
|
+
* optional MacPrinterSoftwareItem mac_ppds = 8;
|
|
44052
|
+
* @return {?proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem}
|
|
44053
|
+
*/
|
|
44054
|
+
proto.com.lansweeper.dp.outbound.v1.Driver.prototype.getMacPpds = function() {
|
|
44055
|
+
return /** @type{?proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem} */ (
|
|
44056
|
+
jspb.Message.getWrapperField(this, proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem, 8));
|
|
44057
|
+
};
|
|
44058
|
+
|
|
44059
|
+
|
|
44060
|
+
/**
|
|
44061
|
+
* @param {?proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem|undefined} value
|
|
44062
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.Driver} returns this
|
|
44063
|
+
*/
|
|
44064
|
+
proto.com.lansweeper.dp.outbound.v1.Driver.prototype.setMacPpds = function(value) {
|
|
44065
|
+
return jspb.Message.setOneofWrapperField(this, 8, proto.com.lansweeper.dp.outbound.v1.Driver.oneofGroups_[0], value);
|
|
44066
|
+
};
|
|
44067
|
+
|
|
44068
|
+
|
|
44069
|
+
/**
|
|
44070
|
+
* Clears the message field making it undefined.
|
|
44071
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.Driver} returns this
|
|
44072
|
+
*/
|
|
44073
|
+
proto.com.lansweeper.dp.outbound.v1.Driver.prototype.clearMacPpds = function() {
|
|
44074
|
+
return this.setMacPpds(undefined);
|
|
44075
|
+
};
|
|
44076
|
+
|
|
44077
|
+
|
|
44078
|
+
/**
|
|
44079
|
+
* Returns whether this field is set.
|
|
44080
|
+
* @return {boolean}
|
|
44081
|
+
*/
|
|
44082
|
+
proto.com.lansweeper.dp.outbound.v1.Driver.prototype.hasMacPpds = function() {
|
|
44083
|
+
return jspb.Message.getField(this, 8) != null;
|
|
44084
|
+
};
|
|
44085
|
+
|
|
44086
|
+
|
|
44087
|
+
/**
|
|
44088
|
+
* optional MacPrinterSoftwareItem mac_printers = 9;
|
|
44089
|
+
* @return {?proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem}
|
|
44090
|
+
*/
|
|
44091
|
+
proto.com.lansweeper.dp.outbound.v1.Driver.prototype.getMacPrinters = function() {
|
|
44092
|
+
return /** @type{?proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem} */ (
|
|
44093
|
+
jspb.Message.getWrapperField(this, proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem, 9));
|
|
44094
|
+
};
|
|
44095
|
+
|
|
44096
|
+
|
|
44097
|
+
/**
|
|
44098
|
+
* @param {?proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem|undefined} value
|
|
44099
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.Driver} returns this
|
|
44100
|
+
*/
|
|
44101
|
+
proto.com.lansweeper.dp.outbound.v1.Driver.prototype.setMacPrinters = function(value) {
|
|
44102
|
+
return jspb.Message.setOneofWrapperField(this, 9, proto.com.lansweeper.dp.outbound.v1.Driver.oneofGroups_[0], value);
|
|
44103
|
+
};
|
|
44104
|
+
|
|
44105
|
+
|
|
44106
|
+
/**
|
|
44107
|
+
* Clears the message field making it undefined.
|
|
44108
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.Driver} returns this
|
|
44109
|
+
*/
|
|
44110
|
+
proto.com.lansweeper.dp.outbound.v1.Driver.prototype.clearMacPrinters = function() {
|
|
44111
|
+
return this.setMacPrinters(undefined);
|
|
44112
|
+
};
|
|
44113
|
+
|
|
44114
|
+
|
|
44115
|
+
/**
|
|
44116
|
+
* Returns whether this field is set.
|
|
44117
|
+
* @return {boolean}
|
|
44118
|
+
*/
|
|
44119
|
+
proto.com.lansweeper.dp.outbound.v1.Driver.prototype.hasMacPrinters = function() {
|
|
44120
|
+
return jspb.Message.getField(this, 9) != null;
|
|
44121
|
+
};
|
|
44122
|
+
|
|
44123
|
+
|
|
44124
|
+
/**
|
|
44125
|
+
* optional MacPrinterSoftwareItem mac_system_library_extensions = 10;
|
|
44126
|
+
* @return {?proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem}
|
|
44127
|
+
*/
|
|
44128
|
+
proto.com.lansweeper.dp.outbound.v1.Driver.prototype.getMacSystemLibraryExtensions = function() {
|
|
44129
|
+
return /** @type{?proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem} */ (
|
|
44130
|
+
jspb.Message.getWrapperField(this, proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem, 10));
|
|
44131
|
+
};
|
|
44132
|
+
|
|
44133
|
+
|
|
44134
|
+
/**
|
|
44135
|
+
* @param {?proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem|undefined} value
|
|
44136
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.Driver} returns this
|
|
44137
|
+
*/
|
|
44138
|
+
proto.com.lansweeper.dp.outbound.v1.Driver.prototype.setMacSystemLibraryExtensions = function(value) {
|
|
44139
|
+
return jspb.Message.setOneofWrapperField(this, 10, proto.com.lansweeper.dp.outbound.v1.Driver.oneofGroups_[0], value);
|
|
44140
|
+
};
|
|
44141
|
+
|
|
44142
|
+
|
|
44143
|
+
/**
|
|
44144
|
+
* Clears the message field making it undefined.
|
|
44145
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.Driver} returns this
|
|
44146
|
+
*/
|
|
44147
|
+
proto.com.lansweeper.dp.outbound.v1.Driver.prototype.clearMacSystemLibraryExtensions = function() {
|
|
44148
|
+
return this.setMacSystemLibraryExtensions(undefined);
|
|
44149
|
+
};
|
|
44150
|
+
|
|
44151
|
+
|
|
44152
|
+
/**
|
|
44153
|
+
* Returns whether this field is set.
|
|
44154
|
+
* @return {boolean}
|
|
44155
|
+
*/
|
|
44156
|
+
proto.com.lansweeper.dp.outbound.v1.Driver.prototype.hasMacSystemLibraryExtensions = function() {
|
|
44157
|
+
return jspb.Message.getField(this, 10) != null;
|
|
44158
|
+
};
|
|
44159
|
+
|
|
44160
|
+
|
|
43827
44161
|
/**
|
|
43828
44162
|
* optional string name = 100;
|
|
43829
44163
|
* @return {string}
|
|
@@ -82297,6 +82631,202 @@ proto.com.lansweeper.dp.outbound.v1.ComputerMacOsFramework.prototype.hasVersion
|
|
|
82297
82631
|
|
|
82298
82632
|
|
|
82299
82633
|
|
|
82634
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
82635
|
+
/**
|
|
82636
|
+
* Creates an object representation of this proto.
|
|
82637
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
82638
|
+
* Optional fields that are not set will be set to undefined.
|
|
82639
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
82640
|
+
* For the list of reserved names please see:
|
|
82641
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
82642
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
82643
|
+
* JSPB instance for transitional soy proto support:
|
|
82644
|
+
* http://goto/soy-param-migration
|
|
82645
|
+
* @return {!Object}
|
|
82646
|
+
*/
|
|
82647
|
+
proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem.prototype.toObject = function(opt_includeInstance) {
|
|
82648
|
+
return proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem.toObject(opt_includeInstance, this);
|
|
82649
|
+
};
|
|
82650
|
+
|
|
82651
|
+
|
|
82652
|
+
/**
|
|
82653
|
+
* Static version of the {@see toObject} method.
|
|
82654
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
82655
|
+
* the JSPB instance for transitional soy proto support:
|
|
82656
|
+
* http://goto/soy-param-migration
|
|
82657
|
+
* @param {!proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem} msg The msg instance to transform.
|
|
82658
|
+
* @return {!Object}
|
|
82659
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
82660
|
+
*/
|
|
82661
|
+
proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem.toObject = function(includeInstance, msg) {
|
|
82662
|
+
var f, obj = {
|
|
82663
|
+
infoPath: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
82664
|
+
infoVersion: jspb.Message.getFieldWithDefault(msg, 2, "")
|
|
82665
|
+
};
|
|
82666
|
+
|
|
82667
|
+
if (includeInstance) {
|
|
82668
|
+
obj.$jspbMessageInstance = msg;
|
|
82669
|
+
}
|
|
82670
|
+
return obj;
|
|
82671
|
+
};
|
|
82672
|
+
}
|
|
82673
|
+
|
|
82674
|
+
|
|
82675
|
+
/**
|
|
82676
|
+
* Deserializes binary data (in protobuf wire format).
|
|
82677
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
82678
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem}
|
|
82679
|
+
*/
|
|
82680
|
+
proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem.deserializeBinary = function(bytes) {
|
|
82681
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
82682
|
+
var msg = new proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem;
|
|
82683
|
+
return proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem.deserializeBinaryFromReader(msg, reader);
|
|
82684
|
+
};
|
|
82685
|
+
|
|
82686
|
+
|
|
82687
|
+
/**
|
|
82688
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
82689
|
+
* given reader into the given message object.
|
|
82690
|
+
* @param {!proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem} msg The message object to deserialize into.
|
|
82691
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
82692
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem}
|
|
82693
|
+
*/
|
|
82694
|
+
proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem.deserializeBinaryFromReader = function(msg, reader) {
|
|
82695
|
+
while (reader.nextField()) {
|
|
82696
|
+
if (reader.isEndGroup()) {
|
|
82697
|
+
break;
|
|
82698
|
+
}
|
|
82699
|
+
var field = reader.getFieldNumber();
|
|
82700
|
+
switch (field) {
|
|
82701
|
+
case 1:
|
|
82702
|
+
var value = /** @type {string} */ (reader.readString());
|
|
82703
|
+
msg.setInfoPath(value);
|
|
82704
|
+
break;
|
|
82705
|
+
case 2:
|
|
82706
|
+
var value = /** @type {string} */ (reader.readString());
|
|
82707
|
+
msg.setInfoVersion(value);
|
|
82708
|
+
break;
|
|
82709
|
+
default:
|
|
82710
|
+
reader.skipField();
|
|
82711
|
+
break;
|
|
82712
|
+
}
|
|
82713
|
+
}
|
|
82714
|
+
return msg;
|
|
82715
|
+
};
|
|
82716
|
+
|
|
82717
|
+
|
|
82718
|
+
/**
|
|
82719
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
82720
|
+
* @return {!Uint8Array}
|
|
82721
|
+
*/
|
|
82722
|
+
proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem.prototype.serializeBinary = function() {
|
|
82723
|
+
var writer = new jspb.BinaryWriter();
|
|
82724
|
+
proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem.serializeBinaryToWriter(this, writer);
|
|
82725
|
+
return writer.getResultBuffer();
|
|
82726
|
+
};
|
|
82727
|
+
|
|
82728
|
+
|
|
82729
|
+
/**
|
|
82730
|
+
* Serializes the given message to binary data (in protobuf wire
|
|
82731
|
+
* format), writing to the given BinaryWriter.
|
|
82732
|
+
* @param {!proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem} message
|
|
82733
|
+
* @param {!jspb.BinaryWriter} writer
|
|
82734
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
82735
|
+
*/
|
|
82736
|
+
proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem.serializeBinaryToWriter = function(message, writer) {
|
|
82737
|
+
var f = undefined;
|
|
82738
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 1));
|
|
82739
|
+
if (f != null) {
|
|
82740
|
+
writer.writeString(
|
|
82741
|
+
1,
|
|
82742
|
+
f
|
|
82743
|
+
);
|
|
82744
|
+
}
|
|
82745
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 2));
|
|
82746
|
+
if (f != null) {
|
|
82747
|
+
writer.writeString(
|
|
82748
|
+
2,
|
|
82749
|
+
f
|
|
82750
|
+
);
|
|
82751
|
+
}
|
|
82752
|
+
};
|
|
82753
|
+
|
|
82754
|
+
|
|
82755
|
+
/**
|
|
82756
|
+
* optional string info_path = 1;
|
|
82757
|
+
* @return {string}
|
|
82758
|
+
*/
|
|
82759
|
+
proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem.prototype.getInfoPath = function() {
|
|
82760
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
|
|
82761
|
+
};
|
|
82762
|
+
|
|
82763
|
+
|
|
82764
|
+
/**
|
|
82765
|
+
* @param {string} value
|
|
82766
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem} returns this
|
|
82767
|
+
*/
|
|
82768
|
+
proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem.prototype.setInfoPath = function(value) {
|
|
82769
|
+
return jspb.Message.setField(this, 1, value);
|
|
82770
|
+
};
|
|
82771
|
+
|
|
82772
|
+
|
|
82773
|
+
/**
|
|
82774
|
+
* Clears the field making it undefined.
|
|
82775
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem} returns this
|
|
82776
|
+
*/
|
|
82777
|
+
proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem.prototype.clearInfoPath = function() {
|
|
82778
|
+
return jspb.Message.setField(this, 1, undefined);
|
|
82779
|
+
};
|
|
82780
|
+
|
|
82781
|
+
|
|
82782
|
+
/**
|
|
82783
|
+
* Returns whether this field is set.
|
|
82784
|
+
* @return {boolean}
|
|
82785
|
+
*/
|
|
82786
|
+
proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem.prototype.hasInfoPath = function() {
|
|
82787
|
+
return jspb.Message.getField(this, 1) != null;
|
|
82788
|
+
};
|
|
82789
|
+
|
|
82790
|
+
|
|
82791
|
+
/**
|
|
82792
|
+
* optional string info_version = 2;
|
|
82793
|
+
* @return {string}
|
|
82794
|
+
*/
|
|
82795
|
+
proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem.prototype.getInfoVersion = function() {
|
|
82796
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
|
|
82797
|
+
};
|
|
82798
|
+
|
|
82799
|
+
|
|
82800
|
+
/**
|
|
82801
|
+
* @param {string} value
|
|
82802
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem} returns this
|
|
82803
|
+
*/
|
|
82804
|
+
proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem.prototype.setInfoVersion = function(value) {
|
|
82805
|
+
return jspb.Message.setField(this, 2, value);
|
|
82806
|
+
};
|
|
82807
|
+
|
|
82808
|
+
|
|
82809
|
+
/**
|
|
82810
|
+
* Clears the field making it undefined.
|
|
82811
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem} returns this
|
|
82812
|
+
*/
|
|
82813
|
+
proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem.prototype.clearInfoVersion = function() {
|
|
82814
|
+
return jspb.Message.setField(this, 2, undefined);
|
|
82815
|
+
};
|
|
82816
|
+
|
|
82817
|
+
|
|
82818
|
+
/**
|
|
82819
|
+
* Returns whether this field is set.
|
|
82820
|
+
* @return {boolean}
|
|
82821
|
+
*/
|
|
82822
|
+
proto.com.lansweeper.dp.outbound.v1.MacPrinterSoftwareItem.prototype.hasInfoVersion = function() {
|
|
82823
|
+
return jspb.Message.getField(this, 2) != null;
|
|
82824
|
+
};
|
|
82825
|
+
|
|
82826
|
+
|
|
82827
|
+
|
|
82828
|
+
|
|
82829
|
+
|
|
82300
82830
|
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
82301
82831
|
/**
|
|
82302
82832
|
* Creates an object representation of this proto.
|