@lansweeper/multitenant-api-grpc 0.4.39 → 0.4.41
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 +16 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/limits/limits_pb.d.ts +83 -0
- package/gen-proto/limits/limits_pb.js +657 -1
- package/package.json +2 -2
- package/proto/limits/limits.proto +16 -1
- package/proto/multitenant.proto +1 -1
- package/.ignorecompat +0 -0
|
@@ -41,6 +41,77 @@ export namespace CalculateRiskInsights {
|
|
|
41
41
|
}
|
|
42
42
|
}
|
|
43
43
|
|
|
44
|
+
export class BaseLimit extends jspb.Message {
|
|
45
|
+
getValue(): boolean;
|
|
46
|
+
setValue(value: boolean): BaseLimit;
|
|
47
|
+
clearAllowedList(): void;
|
|
48
|
+
getAllowedList(): Array<string>;
|
|
49
|
+
setAllowedList(value: Array<string>): BaseLimit;
|
|
50
|
+
addAllowed(value: string, index?: number): string;
|
|
51
|
+
|
|
52
|
+
serializeBinary(): Uint8Array;
|
|
53
|
+
toObject(includeInstance?: boolean): BaseLimit.AsObject;
|
|
54
|
+
static toObject(includeInstance: boolean, msg: BaseLimit): BaseLimit.AsObject;
|
|
55
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
56
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
57
|
+
static serializeBinaryToWriter(message: BaseLimit, writer: jspb.BinaryWriter): void;
|
|
58
|
+
static deserializeBinary(bytes: Uint8Array): BaseLimit;
|
|
59
|
+
static deserializeBinaryFromReader(message: BaseLimit, reader: jspb.BinaryReader): BaseLimit;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
export namespace BaseLimit {
|
|
63
|
+
export type AsObject = {
|
|
64
|
+
value: boolean,
|
|
65
|
+
allowedList: Array<string>,
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
export class RiskInsights extends jspb.Message {
|
|
70
|
+
|
|
71
|
+
hasViewAssets(): boolean;
|
|
72
|
+
clearViewAssets(): void;
|
|
73
|
+
getViewAssets(): BaseLimit | undefined;
|
|
74
|
+
setViewAssets(value?: BaseLimit): RiskInsights;
|
|
75
|
+
|
|
76
|
+
serializeBinary(): Uint8Array;
|
|
77
|
+
toObject(includeInstance?: boolean): RiskInsights.AsObject;
|
|
78
|
+
static toObject(includeInstance: boolean, msg: RiskInsights): RiskInsights.AsObject;
|
|
79
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
80
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
81
|
+
static serializeBinaryToWriter(message: RiskInsights, writer: jspb.BinaryWriter): void;
|
|
82
|
+
static deserializeBinary(bytes: Uint8Array): RiskInsights;
|
|
83
|
+
static deserializeBinaryFromReader(message: RiskInsights, reader: jspb.BinaryReader): RiskInsights;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
export namespace RiskInsights {
|
|
87
|
+
export type AsObject = {
|
|
88
|
+
viewAssets?: BaseLimit.AsObject,
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
export class Assets extends jspb.Message {
|
|
93
|
+
|
|
94
|
+
hasViewRiskInsights(): boolean;
|
|
95
|
+
clearViewRiskInsights(): void;
|
|
96
|
+
getViewRiskInsights(): BaseLimit | undefined;
|
|
97
|
+
setViewRiskInsights(value?: BaseLimit): Assets;
|
|
98
|
+
|
|
99
|
+
serializeBinary(): Uint8Array;
|
|
100
|
+
toObject(includeInstance?: boolean): Assets.AsObject;
|
|
101
|
+
static toObject(includeInstance: boolean, msg: Assets): Assets.AsObject;
|
|
102
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
103
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
104
|
+
static serializeBinaryToWriter(message: Assets, writer: jspb.BinaryWriter): void;
|
|
105
|
+
static deserializeBinary(bytes: Uint8Array): Assets;
|
|
106
|
+
static deserializeBinaryFromReader(message: Assets, reader: jspb.BinaryReader): Assets;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
export namespace Assets {
|
|
110
|
+
export type AsObject = {
|
|
111
|
+
viewRiskInsights?: BaseLimit.AsObject,
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
|
|
44
115
|
export class SiteLimits extends jspb.Message {
|
|
45
116
|
getTier(): SiteLimitsTiers;
|
|
46
117
|
setTier(value: SiteLimitsTiers): SiteLimits;
|
|
@@ -50,6 +121,16 @@ export class SiteLimits extends jspb.Message {
|
|
|
50
121
|
getCalculateRiskInsights(): CalculateRiskInsights | undefined;
|
|
51
122
|
setCalculateRiskInsights(value?: CalculateRiskInsights): SiteLimits;
|
|
52
123
|
|
|
124
|
+
hasRiskInsights(): boolean;
|
|
125
|
+
clearRiskInsights(): void;
|
|
126
|
+
getRiskInsights(): RiskInsights | undefined;
|
|
127
|
+
setRiskInsights(value?: RiskInsights): SiteLimits;
|
|
128
|
+
|
|
129
|
+
hasAssets(): boolean;
|
|
130
|
+
clearAssets(): void;
|
|
131
|
+
getAssets(): Assets | undefined;
|
|
132
|
+
setAssets(value?: Assets): SiteLimits;
|
|
133
|
+
|
|
53
134
|
serializeBinary(): Uint8Array;
|
|
54
135
|
toObject(includeInstance?: boolean): SiteLimits.AsObject;
|
|
55
136
|
static toObject(includeInstance: boolean, msg: SiteLimits): SiteLimits.AsObject;
|
|
@@ -64,6 +145,8 @@ export namespace SiteLimits {
|
|
|
64
145
|
export type AsObject = {
|
|
65
146
|
tier: SiteLimitsTiers,
|
|
66
147
|
calculateRiskInsights?: CalculateRiskInsights.AsObject,
|
|
148
|
+
riskInsights?: RiskInsights.AsObject,
|
|
149
|
+
assets?: Assets.AsObject,
|
|
67
150
|
}
|
|
68
151
|
}
|
|
69
152
|
|