@lansweeper/multitenant-api-grpc 0.4.66 → 0.4.67
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/multitenant_pb.d.ts +3 -0
- package/gen-proto/multitenant_pb.js +31 -1
- package/generated-go/multitenant.pb.go +615 -604
- package/package.json +2 -2
- package/proto/multitenant.proto +2 -1
|
@@ -2477,6 +2477,8 @@ export class SiteHierarchyIdsItem extends jspb.Message {
|
|
|
2477
2477
|
setParentId(value: string): SiteHierarchyIdsItem;
|
|
2478
2478
|
getIsCustomerAccount(): boolean;
|
|
2479
2479
|
setIsCustomerAccount(value: boolean): SiteHierarchyIdsItem;
|
|
2480
|
+
getSkipHivemindExport(): boolean;
|
|
2481
|
+
setSkipHivemindExport(value: boolean): SiteHierarchyIdsItem;
|
|
2480
2482
|
|
|
2481
2483
|
serializeBinary(): Uint8Array;
|
|
2482
2484
|
toObject(includeInstance?: boolean): SiteHierarchyIdsItem.AsObject;
|
|
@@ -2494,6 +2496,7 @@ export namespace SiteHierarchyIdsItem {
|
|
|
2494
2496
|
parentType: SiteHierarchyIdsItem.ParentType,
|
|
2495
2497
|
parentId: string,
|
|
2496
2498
|
isCustomerAccount: boolean,
|
|
2499
|
+
skipHivemindExport: boolean,
|
|
2497
2500
|
}
|
|
2498
2501
|
|
|
2499
2502
|
export enum ParentType {
|
|
@@ -20279,7 +20279,8 @@ proto.lansweeper.multitenant.v1.SiteHierarchyIdsItem.toObject = function(include
|
|
|
20279
20279
|
siteId: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
20280
20280
|
parentType: jspb.Message.getFieldWithDefault(msg, 2, 0),
|
|
20281
20281
|
parentId: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
20282
|
-
isCustomerAccount: jspb.Message.getBooleanFieldWithDefault(msg, 4, false)
|
|
20282
|
+
isCustomerAccount: jspb.Message.getBooleanFieldWithDefault(msg, 4, false),
|
|
20283
|
+
skipHivemindExport: jspb.Message.getBooleanFieldWithDefault(msg, 5, false)
|
|
20283
20284
|
};
|
|
20284
20285
|
|
|
20285
20286
|
if (includeInstance) {
|
|
@@ -20332,6 +20333,10 @@ proto.lansweeper.multitenant.v1.SiteHierarchyIdsItem.deserializeBinaryFromReader
|
|
|
20332
20333
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
20333
20334
|
msg.setIsCustomerAccount(value);
|
|
20334
20335
|
break;
|
|
20336
|
+
case 5:
|
|
20337
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
20338
|
+
msg.setSkipHivemindExport(value);
|
|
20339
|
+
break;
|
|
20335
20340
|
default:
|
|
20336
20341
|
reader.skipField();
|
|
20337
20342
|
break;
|
|
@@ -20389,6 +20394,13 @@ proto.lansweeper.multitenant.v1.SiteHierarchyIdsItem.serializeBinaryToWriter = f
|
|
|
20389
20394
|
f
|
|
20390
20395
|
);
|
|
20391
20396
|
}
|
|
20397
|
+
f = message.getSkipHivemindExport();
|
|
20398
|
+
if (f) {
|
|
20399
|
+
writer.writeBool(
|
|
20400
|
+
5,
|
|
20401
|
+
f
|
|
20402
|
+
);
|
|
20403
|
+
}
|
|
20392
20404
|
};
|
|
20393
20405
|
|
|
20394
20406
|
|
|
@@ -20474,6 +20486,24 @@ proto.lansweeper.multitenant.v1.SiteHierarchyIdsItem.prototype.setIsCustomerAcco
|
|
|
20474
20486
|
};
|
|
20475
20487
|
|
|
20476
20488
|
|
|
20489
|
+
/**
|
|
20490
|
+
* optional bool skip_hivemind_export = 5;
|
|
20491
|
+
* @return {boolean}
|
|
20492
|
+
*/
|
|
20493
|
+
proto.lansweeper.multitenant.v1.SiteHierarchyIdsItem.prototype.getSkipHivemindExport = function() {
|
|
20494
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 5, false));
|
|
20495
|
+
};
|
|
20496
|
+
|
|
20497
|
+
|
|
20498
|
+
/**
|
|
20499
|
+
* @param {boolean} value
|
|
20500
|
+
* @return {!proto.lansweeper.multitenant.v1.SiteHierarchyIdsItem} returns this
|
|
20501
|
+
*/
|
|
20502
|
+
proto.lansweeper.multitenant.v1.SiteHierarchyIdsItem.prototype.setSkipHivemindExport = function(value) {
|
|
20503
|
+
return jspb.Message.setProto3BooleanField(this, 5, value);
|
|
20504
|
+
};
|
|
20505
|
+
|
|
20506
|
+
|
|
20477
20507
|
|
|
20478
20508
|
|
|
20479
20509
|
|