@lansweeper/multitenant-api-grpc 0.4.72 → 0.4.73
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/.ignorecompat +0 -0
- package/CHANGELOG.md +8 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/multitenant_pb.d.ts +4 -4
- package/gen-proto/multitenant_pb.js +12 -12
- package/generated-go/multitenant.pb.go +643 -643
- package/package.json +2 -2
- package/proto/multitenant.proto +1 -1
|
@@ -2650,9 +2650,9 @@ export class GetSitesIdsWithFederationResponse extends jspb.Message {
|
|
|
2650
2650
|
getCount(): number;
|
|
2651
2651
|
setCount(value: number): GetSitesIdsWithFederationResponse;
|
|
2652
2652
|
clearItemsList(): void;
|
|
2653
|
-
getItemsList(): Array<
|
|
2654
|
-
setItemsList(value: Array<
|
|
2655
|
-
addItems(value?:
|
|
2653
|
+
getItemsList(): Array<SitesIdsWithFederationItem>;
|
|
2654
|
+
setItemsList(value: Array<SitesIdsWithFederationItem>): GetSitesIdsWithFederationResponse;
|
|
2655
|
+
addItems(value?: SitesIdsWithFederationItem, index?: number): SitesIdsWithFederationItem;
|
|
2656
2656
|
|
|
2657
2657
|
hasPageInfo(): boolean;
|
|
2658
2658
|
clearPageInfo(): void;
|
|
@@ -2672,7 +2672,7 @@ export class GetSitesIdsWithFederationResponse extends jspb.Message {
|
|
|
2672
2672
|
export namespace GetSitesIdsWithFederationResponse {
|
|
2673
2673
|
export type AsObject = {
|
|
2674
2674
|
count: number,
|
|
2675
|
-
itemsList: Array<
|
|
2675
|
+
itemsList: Array<SitesIdsWithFederationItem.AsObject>,
|
|
2676
2676
|
pageInfo?: SitesIdsWithFederationPageInfo.AsObject,
|
|
2677
2677
|
}
|
|
2678
2678
|
}
|
|
@@ -21728,7 +21728,7 @@ proto.lansweeper.multitenant.v1.GetSitesIdsWithFederationResponse.toObject = fun
|
|
|
21728
21728
|
var f, obj = {
|
|
21729
21729
|
count: jspb.Message.getFieldWithDefault(msg, 1, 0),
|
|
21730
21730
|
itemsList: jspb.Message.toObjectList(msg.getItemsList(),
|
|
21731
|
-
proto.lansweeper.multitenant.v1.
|
|
21731
|
+
proto.lansweeper.multitenant.v1.SitesIdsWithFederationItem.toObject, includeInstance),
|
|
21732
21732
|
pageInfo: (f = msg.getPageInfo()) && proto.lansweeper.multitenant.v1.SitesIdsWithFederationPageInfo.toObject(includeInstance, f)
|
|
21733
21733
|
};
|
|
21734
21734
|
|
|
@@ -21771,8 +21771,8 @@ proto.lansweeper.multitenant.v1.GetSitesIdsWithFederationResponse.deserializeBin
|
|
|
21771
21771
|
msg.setCount(value);
|
|
21772
21772
|
break;
|
|
21773
21773
|
case 2:
|
|
21774
|
-
var value = new proto.lansweeper.multitenant.v1.
|
|
21775
|
-
reader.readMessage(value,proto.lansweeper.multitenant.v1.
|
|
21774
|
+
var value = new proto.lansweeper.multitenant.v1.SitesIdsWithFederationItem;
|
|
21775
|
+
reader.readMessage(value,proto.lansweeper.multitenant.v1.SitesIdsWithFederationItem.deserializeBinaryFromReader);
|
|
21776
21776
|
msg.addItems(value);
|
|
21777
21777
|
break;
|
|
21778
21778
|
case 3:
|
|
@@ -21821,7 +21821,7 @@ proto.lansweeper.multitenant.v1.GetSitesIdsWithFederationResponse.serializeBinar
|
|
|
21821
21821
|
writer.writeRepeatedMessage(
|
|
21822
21822
|
2,
|
|
21823
21823
|
f,
|
|
21824
|
-
proto.lansweeper.multitenant.v1.
|
|
21824
|
+
proto.lansweeper.multitenant.v1.SitesIdsWithFederationItem.serializeBinaryToWriter
|
|
21825
21825
|
);
|
|
21826
21826
|
}
|
|
21827
21827
|
f = message.getPageInfo();
|
|
@@ -21854,17 +21854,17 @@ proto.lansweeper.multitenant.v1.GetSitesIdsWithFederationResponse.prototype.setC
|
|
|
21854
21854
|
|
|
21855
21855
|
|
|
21856
21856
|
/**
|
|
21857
|
-
* repeated
|
|
21858
|
-
* @return {!Array<!proto.lansweeper.multitenant.v1.
|
|
21857
|
+
* repeated SitesIdsWithFederationItem items = 2;
|
|
21858
|
+
* @return {!Array<!proto.lansweeper.multitenant.v1.SitesIdsWithFederationItem>}
|
|
21859
21859
|
*/
|
|
21860
21860
|
proto.lansweeper.multitenant.v1.GetSitesIdsWithFederationResponse.prototype.getItemsList = function() {
|
|
21861
|
-
return /** @type{!Array<!proto.lansweeper.multitenant.v1.
|
|
21862
|
-
jspb.Message.getRepeatedWrapperField(this, proto.lansweeper.multitenant.v1.
|
|
21861
|
+
return /** @type{!Array<!proto.lansweeper.multitenant.v1.SitesIdsWithFederationItem>} */ (
|
|
21862
|
+
jspb.Message.getRepeatedWrapperField(this, proto.lansweeper.multitenant.v1.SitesIdsWithFederationItem, 2));
|
|
21863
21863
|
};
|
|
21864
21864
|
|
|
21865
21865
|
|
|
21866
21866
|
/**
|
|
21867
|
-
* @param {!Array<!proto.lansweeper.multitenant.v1.
|
|
21867
|
+
* @param {!Array<!proto.lansweeper.multitenant.v1.SitesIdsWithFederationItem>} value
|
|
21868
21868
|
* @return {!proto.lansweeper.multitenant.v1.GetSitesIdsWithFederationResponse} returns this
|
|
21869
21869
|
*/
|
|
21870
21870
|
proto.lansweeper.multitenant.v1.GetSitesIdsWithFederationResponse.prototype.setItemsList = function(value) {
|
|
@@ -21873,12 +21873,12 @@ proto.lansweeper.multitenant.v1.GetSitesIdsWithFederationResponse.prototype.setI
|
|
|
21873
21873
|
|
|
21874
21874
|
|
|
21875
21875
|
/**
|
|
21876
|
-
* @param {!proto.lansweeper.multitenant.v1.
|
|
21876
|
+
* @param {!proto.lansweeper.multitenant.v1.SitesIdsWithFederationItem=} opt_value
|
|
21877
21877
|
* @param {number=} opt_index
|
|
21878
|
-
* @return {!proto.lansweeper.multitenant.v1.
|
|
21878
|
+
* @return {!proto.lansweeper.multitenant.v1.SitesIdsWithFederationItem}
|
|
21879
21879
|
*/
|
|
21880
21880
|
proto.lansweeper.multitenant.v1.GetSitesIdsWithFederationResponse.prototype.addItems = function(opt_value, opt_index) {
|
|
21881
|
-
return jspb.Message.addToRepeatedWrapperField(this, 2, opt_value, proto.lansweeper.multitenant.v1.
|
|
21881
|
+
return jspb.Message.addToRepeatedWrapperField(this, 2, opt_value, proto.lansweeper.multitenant.v1.SitesIdsWithFederationItem, opt_index);
|
|
21882
21882
|
};
|
|
21883
21883
|
|
|
21884
21884
|
|