@lansweeper/data-platform-outbound-grpc 0.1.45 → 0.1.46
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 +12 -0
- package/gen-proto/outbound_pb.js +129 -33
- package/generated-go/outbound.pb.go +716 -693
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +6 -4
|
@@ -3354,6 +3354,16 @@ export class IpInfo extends jspb.Message {
|
|
|
3354
3354
|
getHostname(): string | undefined;
|
|
3355
3355
|
setHostname(value: string): IpInfo;
|
|
3356
3356
|
|
|
3357
|
+
hasTimezone(): boolean;
|
|
3358
|
+
clearTimezone(): void;
|
|
3359
|
+
getTimezone(): string | undefined;
|
|
3360
|
+
setTimezone(value: string): IpInfo;
|
|
3361
|
+
|
|
3362
|
+
hasContinentCode(): boolean;
|
|
3363
|
+
clearContinentCode(): void;
|
|
3364
|
+
getContinentCode(): string | undefined;
|
|
3365
|
+
setContinentCode(value: string): IpInfo;
|
|
3366
|
+
|
|
3357
3367
|
hasCountryCode(): boolean;
|
|
3358
3368
|
clearCountryCode(): void;
|
|
3359
3369
|
getCountryCode(): string | undefined;
|
|
@@ -3393,6 +3403,8 @@ export namespace IpInfo {
|
|
|
3393
3403
|
export type AsObject = {
|
|
3394
3404
|
address: string,
|
|
3395
3405
|
hostname?: string,
|
|
3406
|
+
timezone?: string,
|
|
3407
|
+
continentCode?: string,
|
|
3396
3408
|
countryCode?: string,
|
|
3397
3409
|
regionCode?: string,
|
|
3398
3410
|
countryCity?: string,
|
package/gen-proto/outbound_pb.js
CHANGED
|
@@ -27091,11 +27091,13 @@ proto.com.lansweeper.dp.outbound.v1.IpInfo.toObject = function(includeInstance,
|
|
|
27091
27091
|
var f, obj = {
|
|
27092
27092
|
address: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
27093
27093
|
hostname: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
27094
|
-
|
|
27094
|
+
timezone: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
27095
|
+
continentCode: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
27096
|
+
countryCode: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
27095
27097
|
regionCode: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
27096
|
-
countryCity: jspb.Message.getFieldWithDefault(msg,
|
|
27097
|
-
isp: jspb.Message.getFieldWithDefault(msg,
|
|
27098
|
-
organization: jspb.Message.getFieldWithDefault(msg,
|
|
27098
|
+
countryCity: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
27099
|
+
isp: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
|
27100
|
+
organization: jspb.Message.getFieldWithDefault(msg, 9, "")
|
|
27099
27101
|
};
|
|
27100
27102
|
|
|
27101
27103
|
if (includeInstance) {
|
|
@@ -27141,6 +27143,14 @@ proto.com.lansweeper.dp.outbound.v1.IpInfo.deserializeBinaryFromReader = functio
|
|
|
27141
27143
|
msg.setHostname(value);
|
|
27142
27144
|
break;
|
|
27143
27145
|
case 3:
|
|
27146
|
+
var value = /** @type {string} */ (reader.readString());
|
|
27147
|
+
msg.setTimezone(value);
|
|
27148
|
+
break;
|
|
27149
|
+
case 4:
|
|
27150
|
+
var value = /** @type {string} */ (reader.readString());
|
|
27151
|
+
msg.setContinentCode(value);
|
|
27152
|
+
break;
|
|
27153
|
+
case 5:
|
|
27144
27154
|
var value = /** @type {string} */ (reader.readString());
|
|
27145
27155
|
msg.setCountryCode(value);
|
|
27146
27156
|
break;
|
|
@@ -27148,15 +27158,15 @@ proto.com.lansweeper.dp.outbound.v1.IpInfo.deserializeBinaryFromReader = functio
|
|
|
27148
27158
|
var value = /** @type {string} */ (reader.readString());
|
|
27149
27159
|
msg.setRegionCode(value);
|
|
27150
27160
|
break;
|
|
27151
|
-
case
|
|
27161
|
+
case 7:
|
|
27152
27162
|
var value = /** @type {string} */ (reader.readString());
|
|
27153
27163
|
msg.setCountryCity(value);
|
|
27154
27164
|
break;
|
|
27155
|
-
case
|
|
27165
|
+
case 8:
|
|
27156
27166
|
var value = /** @type {string} */ (reader.readString());
|
|
27157
27167
|
msg.setIsp(value);
|
|
27158
27168
|
break;
|
|
27159
|
-
case
|
|
27169
|
+
case 9:
|
|
27160
27170
|
var value = /** @type {string} */ (reader.readString());
|
|
27161
27171
|
msg.setOrganization(value);
|
|
27162
27172
|
break;
|
|
@@ -27210,6 +27220,20 @@ proto.com.lansweeper.dp.outbound.v1.IpInfo.serializeBinaryToWriter = function(me
|
|
|
27210
27220
|
f
|
|
27211
27221
|
);
|
|
27212
27222
|
}
|
|
27223
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 4));
|
|
27224
|
+
if (f != null) {
|
|
27225
|
+
writer.writeString(
|
|
27226
|
+
4,
|
|
27227
|
+
f
|
|
27228
|
+
);
|
|
27229
|
+
}
|
|
27230
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 5));
|
|
27231
|
+
if (f != null) {
|
|
27232
|
+
writer.writeString(
|
|
27233
|
+
5,
|
|
27234
|
+
f
|
|
27235
|
+
);
|
|
27236
|
+
}
|
|
27213
27237
|
f = /** @type {string} */ (jspb.Message.getField(message, 6));
|
|
27214
27238
|
if (f != null) {
|
|
27215
27239
|
writer.writeString(
|
|
@@ -27217,24 +27241,24 @@ proto.com.lansweeper.dp.outbound.v1.IpInfo.serializeBinaryToWriter = function(me
|
|
|
27217
27241
|
f
|
|
27218
27242
|
);
|
|
27219
27243
|
}
|
|
27220
|
-
f = /** @type {string} */ (jspb.Message.getField(message,
|
|
27244
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 7));
|
|
27221
27245
|
if (f != null) {
|
|
27222
27246
|
writer.writeString(
|
|
27223
|
-
|
|
27247
|
+
7,
|
|
27224
27248
|
f
|
|
27225
27249
|
);
|
|
27226
27250
|
}
|
|
27227
|
-
f = /** @type {string} */ (jspb.Message.getField(message,
|
|
27251
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 8));
|
|
27228
27252
|
if (f != null) {
|
|
27229
27253
|
writer.writeString(
|
|
27230
|
-
|
|
27254
|
+
8,
|
|
27231
27255
|
f
|
|
27232
27256
|
);
|
|
27233
27257
|
}
|
|
27234
|
-
f = /** @type {string} */ (jspb.Message.getField(message,
|
|
27258
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 9));
|
|
27235
27259
|
if (f != null) {
|
|
27236
27260
|
writer.writeString(
|
|
27237
|
-
|
|
27261
|
+
9,
|
|
27238
27262
|
f
|
|
27239
27263
|
);
|
|
27240
27264
|
}
|
|
@@ -27296,10 +27320,10 @@ proto.com.lansweeper.dp.outbound.v1.IpInfo.prototype.hasHostname = function() {
|
|
|
27296
27320
|
|
|
27297
27321
|
|
|
27298
27322
|
/**
|
|
27299
|
-
* optional string
|
|
27323
|
+
* optional string timezone = 3;
|
|
27300
27324
|
* @return {string}
|
|
27301
27325
|
*/
|
|
27302
|
-
proto.com.lansweeper.dp.outbound.v1.IpInfo.prototype.
|
|
27326
|
+
proto.com.lansweeper.dp.outbound.v1.IpInfo.prototype.getTimezone = function() {
|
|
27303
27327
|
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
|
|
27304
27328
|
};
|
|
27305
27329
|
|
|
@@ -27308,7 +27332,7 @@ proto.com.lansweeper.dp.outbound.v1.IpInfo.prototype.getCountryCode = function()
|
|
|
27308
27332
|
* @param {string} value
|
|
27309
27333
|
* @return {!proto.com.lansweeper.dp.outbound.v1.IpInfo} returns this
|
|
27310
27334
|
*/
|
|
27311
|
-
proto.com.lansweeper.dp.outbound.v1.IpInfo.prototype.
|
|
27335
|
+
proto.com.lansweeper.dp.outbound.v1.IpInfo.prototype.setTimezone = function(value) {
|
|
27312
27336
|
return jspb.Message.setField(this, 3, value);
|
|
27313
27337
|
};
|
|
27314
27338
|
|
|
@@ -27317,7 +27341,7 @@ proto.com.lansweeper.dp.outbound.v1.IpInfo.prototype.setCountryCode = function(v
|
|
|
27317
27341
|
* Clears the field making it undefined.
|
|
27318
27342
|
* @return {!proto.com.lansweeper.dp.outbound.v1.IpInfo} returns this
|
|
27319
27343
|
*/
|
|
27320
|
-
proto.com.lansweeper.dp.outbound.v1.IpInfo.prototype.
|
|
27344
|
+
proto.com.lansweeper.dp.outbound.v1.IpInfo.prototype.clearTimezone = function() {
|
|
27321
27345
|
return jspb.Message.setField(this, 3, undefined);
|
|
27322
27346
|
};
|
|
27323
27347
|
|
|
@@ -27326,11 +27350,83 @@ proto.com.lansweeper.dp.outbound.v1.IpInfo.prototype.clearCountryCode = function
|
|
|
27326
27350
|
* Returns whether this field is set.
|
|
27327
27351
|
* @return {boolean}
|
|
27328
27352
|
*/
|
|
27329
|
-
proto.com.lansweeper.dp.outbound.v1.IpInfo.prototype.
|
|
27353
|
+
proto.com.lansweeper.dp.outbound.v1.IpInfo.prototype.hasTimezone = function() {
|
|
27330
27354
|
return jspb.Message.getField(this, 3) != null;
|
|
27331
27355
|
};
|
|
27332
27356
|
|
|
27333
27357
|
|
|
27358
|
+
/**
|
|
27359
|
+
* optional string continent_code = 4;
|
|
27360
|
+
* @return {string}
|
|
27361
|
+
*/
|
|
27362
|
+
proto.com.lansweeper.dp.outbound.v1.IpInfo.prototype.getContinentCode = function() {
|
|
27363
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
|
|
27364
|
+
};
|
|
27365
|
+
|
|
27366
|
+
|
|
27367
|
+
/**
|
|
27368
|
+
* @param {string} value
|
|
27369
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.IpInfo} returns this
|
|
27370
|
+
*/
|
|
27371
|
+
proto.com.lansweeper.dp.outbound.v1.IpInfo.prototype.setContinentCode = function(value) {
|
|
27372
|
+
return jspb.Message.setField(this, 4, value);
|
|
27373
|
+
};
|
|
27374
|
+
|
|
27375
|
+
|
|
27376
|
+
/**
|
|
27377
|
+
* Clears the field making it undefined.
|
|
27378
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.IpInfo} returns this
|
|
27379
|
+
*/
|
|
27380
|
+
proto.com.lansweeper.dp.outbound.v1.IpInfo.prototype.clearContinentCode = function() {
|
|
27381
|
+
return jspb.Message.setField(this, 4, undefined);
|
|
27382
|
+
};
|
|
27383
|
+
|
|
27384
|
+
|
|
27385
|
+
/**
|
|
27386
|
+
* Returns whether this field is set.
|
|
27387
|
+
* @return {boolean}
|
|
27388
|
+
*/
|
|
27389
|
+
proto.com.lansweeper.dp.outbound.v1.IpInfo.prototype.hasContinentCode = function() {
|
|
27390
|
+
return jspb.Message.getField(this, 4) != null;
|
|
27391
|
+
};
|
|
27392
|
+
|
|
27393
|
+
|
|
27394
|
+
/**
|
|
27395
|
+
* optional string country_code = 5;
|
|
27396
|
+
* @return {string}
|
|
27397
|
+
*/
|
|
27398
|
+
proto.com.lansweeper.dp.outbound.v1.IpInfo.prototype.getCountryCode = function() {
|
|
27399
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
|
|
27400
|
+
};
|
|
27401
|
+
|
|
27402
|
+
|
|
27403
|
+
/**
|
|
27404
|
+
* @param {string} value
|
|
27405
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.IpInfo} returns this
|
|
27406
|
+
*/
|
|
27407
|
+
proto.com.lansweeper.dp.outbound.v1.IpInfo.prototype.setCountryCode = function(value) {
|
|
27408
|
+
return jspb.Message.setField(this, 5, value);
|
|
27409
|
+
};
|
|
27410
|
+
|
|
27411
|
+
|
|
27412
|
+
/**
|
|
27413
|
+
* Clears the field making it undefined.
|
|
27414
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.IpInfo} returns this
|
|
27415
|
+
*/
|
|
27416
|
+
proto.com.lansweeper.dp.outbound.v1.IpInfo.prototype.clearCountryCode = function() {
|
|
27417
|
+
return jspb.Message.setField(this, 5, undefined);
|
|
27418
|
+
};
|
|
27419
|
+
|
|
27420
|
+
|
|
27421
|
+
/**
|
|
27422
|
+
* Returns whether this field is set.
|
|
27423
|
+
* @return {boolean}
|
|
27424
|
+
*/
|
|
27425
|
+
proto.com.lansweeper.dp.outbound.v1.IpInfo.prototype.hasCountryCode = function() {
|
|
27426
|
+
return jspb.Message.getField(this, 5) != null;
|
|
27427
|
+
};
|
|
27428
|
+
|
|
27429
|
+
|
|
27334
27430
|
/**
|
|
27335
27431
|
* optional string region_code = 6;
|
|
27336
27432
|
* @return {string}
|
|
@@ -27368,11 +27464,11 @@ proto.com.lansweeper.dp.outbound.v1.IpInfo.prototype.hasRegionCode = function()
|
|
|
27368
27464
|
|
|
27369
27465
|
|
|
27370
27466
|
/**
|
|
27371
|
-
* optional string country_city =
|
|
27467
|
+
* optional string country_city = 7;
|
|
27372
27468
|
* @return {string}
|
|
27373
27469
|
*/
|
|
27374
27470
|
proto.com.lansweeper.dp.outbound.v1.IpInfo.prototype.getCountryCity = function() {
|
|
27375
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
|
27471
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
|
|
27376
27472
|
};
|
|
27377
27473
|
|
|
27378
27474
|
|
|
@@ -27381,7 +27477,7 @@ proto.com.lansweeper.dp.outbound.v1.IpInfo.prototype.getCountryCity = function()
|
|
|
27381
27477
|
* @return {!proto.com.lansweeper.dp.outbound.v1.IpInfo} returns this
|
|
27382
27478
|
*/
|
|
27383
27479
|
proto.com.lansweeper.dp.outbound.v1.IpInfo.prototype.setCountryCity = function(value) {
|
|
27384
|
-
return jspb.Message.setField(this,
|
|
27480
|
+
return jspb.Message.setField(this, 7, value);
|
|
27385
27481
|
};
|
|
27386
27482
|
|
|
27387
27483
|
|
|
@@ -27390,7 +27486,7 @@ proto.com.lansweeper.dp.outbound.v1.IpInfo.prototype.setCountryCity = function(v
|
|
|
27390
27486
|
* @return {!proto.com.lansweeper.dp.outbound.v1.IpInfo} returns this
|
|
27391
27487
|
*/
|
|
27392
27488
|
proto.com.lansweeper.dp.outbound.v1.IpInfo.prototype.clearCountryCity = function() {
|
|
27393
|
-
return jspb.Message.setField(this,
|
|
27489
|
+
return jspb.Message.setField(this, 7, undefined);
|
|
27394
27490
|
};
|
|
27395
27491
|
|
|
27396
27492
|
|
|
@@ -27399,16 +27495,16 @@ proto.com.lansweeper.dp.outbound.v1.IpInfo.prototype.clearCountryCity = function
|
|
|
27399
27495
|
* @return {boolean}
|
|
27400
27496
|
*/
|
|
27401
27497
|
proto.com.lansweeper.dp.outbound.v1.IpInfo.prototype.hasCountryCity = function() {
|
|
27402
|
-
return jspb.Message.getField(this,
|
|
27498
|
+
return jspb.Message.getField(this, 7) != null;
|
|
27403
27499
|
};
|
|
27404
27500
|
|
|
27405
27501
|
|
|
27406
27502
|
/**
|
|
27407
|
-
* optional string isp =
|
|
27503
|
+
* optional string isp = 8;
|
|
27408
27504
|
* @return {string}
|
|
27409
27505
|
*/
|
|
27410
27506
|
proto.com.lansweeper.dp.outbound.v1.IpInfo.prototype.getIsp = function() {
|
|
27411
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
|
27507
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 8, ""));
|
|
27412
27508
|
};
|
|
27413
27509
|
|
|
27414
27510
|
|
|
@@ -27417,7 +27513,7 @@ proto.com.lansweeper.dp.outbound.v1.IpInfo.prototype.getIsp = function() {
|
|
|
27417
27513
|
* @return {!proto.com.lansweeper.dp.outbound.v1.IpInfo} returns this
|
|
27418
27514
|
*/
|
|
27419
27515
|
proto.com.lansweeper.dp.outbound.v1.IpInfo.prototype.setIsp = function(value) {
|
|
27420
|
-
return jspb.Message.setField(this,
|
|
27516
|
+
return jspb.Message.setField(this, 8, value);
|
|
27421
27517
|
};
|
|
27422
27518
|
|
|
27423
27519
|
|
|
@@ -27426,7 +27522,7 @@ proto.com.lansweeper.dp.outbound.v1.IpInfo.prototype.setIsp = function(value) {
|
|
|
27426
27522
|
* @return {!proto.com.lansweeper.dp.outbound.v1.IpInfo} returns this
|
|
27427
27523
|
*/
|
|
27428
27524
|
proto.com.lansweeper.dp.outbound.v1.IpInfo.prototype.clearIsp = function() {
|
|
27429
|
-
return jspb.Message.setField(this,
|
|
27525
|
+
return jspb.Message.setField(this, 8, undefined);
|
|
27430
27526
|
};
|
|
27431
27527
|
|
|
27432
27528
|
|
|
@@ -27435,16 +27531,16 @@ proto.com.lansweeper.dp.outbound.v1.IpInfo.prototype.clearIsp = function() {
|
|
|
27435
27531
|
* @return {boolean}
|
|
27436
27532
|
*/
|
|
27437
27533
|
proto.com.lansweeper.dp.outbound.v1.IpInfo.prototype.hasIsp = function() {
|
|
27438
|
-
return jspb.Message.getField(this,
|
|
27534
|
+
return jspb.Message.getField(this, 8) != null;
|
|
27439
27535
|
};
|
|
27440
27536
|
|
|
27441
27537
|
|
|
27442
27538
|
/**
|
|
27443
|
-
* optional string organization =
|
|
27539
|
+
* optional string organization = 9;
|
|
27444
27540
|
* @return {string}
|
|
27445
27541
|
*/
|
|
27446
27542
|
proto.com.lansweeper.dp.outbound.v1.IpInfo.prototype.getOrganization = function() {
|
|
27447
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
|
27543
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 9, ""));
|
|
27448
27544
|
};
|
|
27449
27545
|
|
|
27450
27546
|
|
|
@@ -27453,7 +27549,7 @@ proto.com.lansweeper.dp.outbound.v1.IpInfo.prototype.getOrganization = function(
|
|
|
27453
27549
|
* @return {!proto.com.lansweeper.dp.outbound.v1.IpInfo} returns this
|
|
27454
27550
|
*/
|
|
27455
27551
|
proto.com.lansweeper.dp.outbound.v1.IpInfo.prototype.setOrganization = function(value) {
|
|
27456
|
-
return jspb.Message.setField(this,
|
|
27552
|
+
return jspb.Message.setField(this, 9, value);
|
|
27457
27553
|
};
|
|
27458
27554
|
|
|
27459
27555
|
|
|
@@ -27462,7 +27558,7 @@ proto.com.lansweeper.dp.outbound.v1.IpInfo.prototype.setOrganization = function(
|
|
|
27462
27558
|
* @return {!proto.com.lansweeper.dp.outbound.v1.IpInfo} returns this
|
|
27463
27559
|
*/
|
|
27464
27560
|
proto.com.lansweeper.dp.outbound.v1.IpInfo.prototype.clearOrganization = function() {
|
|
27465
|
-
return jspb.Message.setField(this,
|
|
27561
|
+
return jspb.Message.setField(this, 9, undefined);
|
|
27466
27562
|
};
|
|
27467
27563
|
|
|
27468
27564
|
|
|
@@ -27471,7 +27567,7 @@ proto.com.lansweeper.dp.outbound.v1.IpInfo.prototype.clearOrganization = functio
|
|
|
27471
27567
|
* @return {boolean}
|
|
27472
27568
|
*/
|
|
27473
27569
|
proto.com.lansweeper.dp.outbound.v1.IpInfo.prototype.hasOrganization = function() {
|
|
27474
|
-
return jspb.Message.getField(this,
|
|
27570
|
+
return jspb.Message.getField(this, 9) != null;
|
|
27475
27571
|
};
|
|
27476
27572
|
|
|
27477
27573
|
|