@lansweeper/multitenant-api-grpc 0.4.48 → 0.4.49
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 +979 -967
- package/package.json +2 -2
- package/proto/multitenant.proto +1 -0
|
@@ -294,6 +294,8 @@ export class ListProfilesByAccountIdRequest extends jspb.Message {
|
|
|
294
294
|
setAccountId(value: string): ListProfilesByAccountIdRequest;
|
|
295
295
|
getIncludeBlocks(): boolean;
|
|
296
296
|
setIncludeBlocks(value: boolean): ListProfilesByAccountIdRequest;
|
|
297
|
+
getBeingOwnerOrAdministrator(): boolean;
|
|
298
|
+
setBeingOwnerOrAdministrator(value: boolean): ListProfilesByAccountIdRequest;
|
|
297
299
|
|
|
298
300
|
serializeBinary(): Uint8Array;
|
|
299
301
|
toObject(includeInstance?: boolean): ListProfilesByAccountIdRequest.AsObject;
|
|
@@ -309,6 +311,7 @@ export namespace ListProfilesByAccountIdRequest {
|
|
|
309
311
|
export type AsObject = {
|
|
310
312
|
accountId: string,
|
|
311
313
|
includeBlocks: boolean,
|
|
314
|
+
beingOwnerOrAdministrator: boolean,
|
|
312
315
|
}
|
|
313
316
|
}
|
|
314
317
|
|
|
@@ -4184,7 +4184,8 @@ proto.lansweeper.multitenant.v1.ListProfilesByAccountIdRequest.prototype.toObjec
|
|
|
4184
4184
|
proto.lansweeper.multitenant.v1.ListProfilesByAccountIdRequest.toObject = function(includeInstance, msg) {
|
|
4185
4185
|
var f, obj = {
|
|
4186
4186
|
accountId: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
4187
|
-
includeBlocks: jspb.Message.getBooleanFieldWithDefault(msg, 2, false)
|
|
4187
|
+
includeBlocks: jspb.Message.getBooleanFieldWithDefault(msg, 2, false),
|
|
4188
|
+
beingOwnerOrAdministrator: jspb.Message.getBooleanFieldWithDefault(msg, 3, false)
|
|
4188
4189
|
};
|
|
4189
4190
|
|
|
4190
4191
|
if (includeInstance) {
|
|
@@ -4229,6 +4230,10 @@ proto.lansweeper.multitenant.v1.ListProfilesByAccountIdRequest.deserializeBinary
|
|
|
4229
4230
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
4230
4231
|
msg.setIncludeBlocks(value);
|
|
4231
4232
|
break;
|
|
4233
|
+
case 3:
|
|
4234
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
4235
|
+
msg.setBeingOwnerOrAdministrator(value);
|
|
4236
|
+
break;
|
|
4232
4237
|
default:
|
|
4233
4238
|
reader.skipField();
|
|
4234
4239
|
break;
|
|
@@ -4272,6 +4277,13 @@ proto.lansweeper.multitenant.v1.ListProfilesByAccountIdRequest.serializeBinaryTo
|
|
|
4272
4277
|
f
|
|
4273
4278
|
);
|
|
4274
4279
|
}
|
|
4280
|
+
f = message.getBeingOwnerOrAdministrator();
|
|
4281
|
+
if (f) {
|
|
4282
|
+
writer.writeBool(
|
|
4283
|
+
3,
|
|
4284
|
+
f
|
|
4285
|
+
);
|
|
4286
|
+
}
|
|
4275
4287
|
};
|
|
4276
4288
|
|
|
4277
4289
|
|
|
@@ -4311,6 +4323,24 @@ proto.lansweeper.multitenant.v1.ListProfilesByAccountIdRequest.prototype.setIncl
|
|
|
4311
4323
|
};
|
|
4312
4324
|
|
|
4313
4325
|
|
|
4326
|
+
/**
|
|
4327
|
+
* optional bool being_owner_or_administrator = 3;
|
|
4328
|
+
* @return {boolean}
|
|
4329
|
+
*/
|
|
4330
|
+
proto.lansweeper.multitenant.v1.ListProfilesByAccountIdRequest.prototype.getBeingOwnerOrAdministrator = function() {
|
|
4331
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 3, false));
|
|
4332
|
+
};
|
|
4333
|
+
|
|
4334
|
+
|
|
4335
|
+
/**
|
|
4336
|
+
* @param {boolean} value
|
|
4337
|
+
* @return {!proto.lansweeper.multitenant.v1.ListProfilesByAccountIdRequest} returns this
|
|
4338
|
+
*/
|
|
4339
|
+
proto.lansweeper.multitenant.v1.ListProfilesByAccountIdRequest.prototype.setBeingOwnerOrAdministrator = function(value) {
|
|
4340
|
+
return jspb.Message.setProto3BooleanField(this, 3, value);
|
|
4341
|
+
};
|
|
4342
|
+
|
|
4343
|
+
|
|
4314
4344
|
|
|
4315
4345
|
/**
|
|
4316
4346
|
* List of repeated fields within this message type.
|