@lansweeper/discovery-sensor-proto 2.32.0 → 2.33.0
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.
|
@@ -133,68 +133,68 @@ export namespace OtScanConfigData {
|
|
|
133
133
|
}
|
|
134
134
|
}
|
|
135
135
|
|
|
136
|
-
export class
|
|
136
|
+
export class BusConfigData extends jspb.Message {
|
|
137
137
|
clearEntriesList(): void;
|
|
138
|
-
getEntriesList(): Array<
|
|
139
|
-
setEntriesList(value: Array<
|
|
140
|
-
addEntries(value?:
|
|
138
|
+
getEntriesList(): Array<BusConfig>;
|
|
139
|
+
setEntriesList(value: Array<BusConfig>): BusConfigData;
|
|
140
|
+
addEntries(value?: BusConfig, index?: number): BusConfig;
|
|
141
141
|
|
|
142
142
|
serializeBinary(): Uint8Array;
|
|
143
|
-
toObject(includeInstance?: boolean):
|
|
144
|
-
static toObject(includeInstance: boolean, msg:
|
|
143
|
+
toObject(includeInstance?: boolean): BusConfigData.AsObject;
|
|
144
|
+
static toObject(includeInstance: boolean, msg: BusConfigData): BusConfigData.AsObject;
|
|
145
145
|
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
146
146
|
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
147
|
-
static serializeBinaryToWriter(message:
|
|
148
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
149
|
-
static deserializeBinaryFromReader(message:
|
|
147
|
+
static serializeBinaryToWriter(message: BusConfigData, writer: jspb.BinaryWriter): void;
|
|
148
|
+
static deserializeBinary(bytes: Uint8Array): BusConfigData;
|
|
149
|
+
static deserializeBinaryFromReader(message: BusConfigData, reader: jspb.BinaryReader): BusConfigData;
|
|
150
150
|
}
|
|
151
151
|
|
|
152
|
-
export namespace
|
|
152
|
+
export namespace BusConfigData {
|
|
153
153
|
export type AsObject = {
|
|
154
|
-
entriesList: Array<
|
|
154
|
+
entriesList: Array<BusConfig.AsObject>,
|
|
155
155
|
}
|
|
156
156
|
}
|
|
157
157
|
|
|
158
|
-
export class
|
|
158
|
+
export class BusConfig extends jspb.Message {
|
|
159
|
+
getIndex(): number;
|
|
160
|
+
setIndex(value: number): BusConfig;
|
|
159
161
|
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
clearRackName(): void;
|
|
167
|
-
getRackName(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
168
|
-
setRackName(value?: google_protobuf_wrappers_pb.StringValue): RackConfig;
|
|
169
|
-
getRackSize(): number;
|
|
170
|
-
setRackSize(value: number): RackConfig;
|
|
162
|
+
hasName(): boolean;
|
|
163
|
+
clearName(): void;
|
|
164
|
+
getName(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
165
|
+
setName(value?: google_protobuf_wrappers_pb.StringValue): BusConfig;
|
|
166
|
+
getMaxSize(): number;
|
|
167
|
+
setMaxSize(value: number): BusConfig;
|
|
171
168
|
clearModulesList(): void;
|
|
172
169
|
getModulesList(): Array<ModuleData>;
|
|
173
|
-
setModulesList(value: Array<ModuleData>):
|
|
170
|
+
setModulesList(value: Array<ModuleData>): BusConfig;
|
|
174
171
|
addModules(value?: ModuleData, index?: number): ModuleData;
|
|
175
172
|
|
|
176
173
|
hasType(): boolean;
|
|
177
174
|
clearType(): void;
|
|
178
175
|
getType(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
179
|
-
setType(value?: google_protobuf_wrappers_pb.StringValue):
|
|
176
|
+
setType(value?: google_protobuf_wrappers_pb.StringValue): BusConfig;
|
|
177
|
+
getModuleStartIndex(): number;
|
|
178
|
+
setModuleStartIndex(value: number): BusConfig;
|
|
180
179
|
|
|
181
180
|
serializeBinary(): Uint8Array;
|
|
182
|
-
toObject(includeInstance?: boolean):
|
|
183
|
-
static toObject(includeInstance: boolean, msg:
|
|
181
|
+
toObject(includeInstance?: boolean): BusConfig.AsObject;
|
|
182
|
+
static toObject(includeInstance: boolean, msg: BusConfig): BusConfig.AsObject;
|
|
184
183
|
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
185
184
|
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
186
|
-
static serializeBinaryToWriter(message:
|
|
187
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
188
|
-
static deserializeBinaryFromReader(message:
|
|
185
|
+
static serializeBinaryToWriter(message: BusConfig, writer: jspb.BinaryWriter): void;
|
|
186
|
+
static deserializeBinary(bytes: Uint8Array): BusConfig;
|
|
187
|
+
static deserializeBinaryFromReader(message: BusConfig, reader: jspb.BinaryReader): BusConfig;
|
|
189
188
|
}
|
|
190
189
|
|
|
191
|
-
export namespace
|
|
190
|
+
export namespace BusConfig {
|
|
192
191
|
export type AsObject = {
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
192
|
+
index: number,
|
|
193
|
+
name?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
194
|
+
maxSize: number,
|
|
196
195
|
modulesList: Array<ModuleData.AsObject>,
|
|
197
196
|
type?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
197
|
+
moduleStartIndex: number,
|
|
198
198
|
}
|
|
199
199
|
}
|
|
200
200
|
|
|
@@ -231,26 +231,29 @@ export class ModuleData extends jspb.Message {
|
|
|
231
231
|
clearFirmware(): void;
|
|
232
232
|
getFirmware(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
233
233
|
setFirmware(value?: google_protobuf_wrappers_pb.StringValue): ModuleData;
|
|
234
|
-
getPartNumber(): string;
|
|
235
|
-
setPartNumber(value: string): ModuleData;
|
|
236
234
|
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
235
|
+
hasPartNumber(): boolean;
|
|
236
|
+
clearPartNumber(): void;
|
|
237
|
+
getPartNumber(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
238
|
+
setPartNumber(value?: google_protobuf_wrappers_pb.StringValue): ModuleData;
|
|
241
239
|
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
240
|
+
hasPositionInBusConfig(): boolean;
|
|
241
|
+
clearPositionInBusConfig(): void;
|
|
242
|
+
getPositionInBusConfig(): google_protobuf_wrappers_pb.UInt32Value | undefined;
|
|
243
|
+
setPositionInBusConfig(value?: google_protobuf_wrappers_pb.UInt32Value): ModuleData;
|
|
244
|
+
|
|
245
|
+
hasWidth(): boolean;
|
|
246
|
+
clearWidth(): void;
|
|
247
|
+
getWidth(): google_protobuf_wrappers_pb.UInt32Value | undefined;
|
|
248
|
+
setWidth(value?: google_protobuf_wrappers_pb.UInt32Value): ModuleData;
|
|
246
249
|
clearExtendedInformationList(): void;
|
|
247
250
|
getExtendedInformationList(): Array<ModuleExtendedInformation>;
|
|
248
251
|
setExtendedInformationList(value: Array<ModuleExtendedInformation>): ModuleData;
|
|
249
252
|
addExtendedInformation(value?: ModuleExtendedInformation, index?: number): ModuleExtendedInformation;
|
|
250
253
|
clearBusConfigList(): void;
|
|
251
|
-
getBusConfigList(): Array<
|
|
252
|
-
setBusConfigList(value: Array<
|
|
253
|
-
addBusConfig(value?:
|
|
254
|
+
getBusConfigList(): Array<BusConfig>;
|
|
255
|
+
setBusConfigList(value: Array<BusConfig>): ModuleData;
|
|
256
|
+
addBusConfig(value?: BusConfig, index?: number): BusConfig;
|
|
254
257
|
|
|
255
258
|
serializeBinary(): Uint8Array;
|
|
256
259
|
toObject(includeInstance?: boolean): ModuleData.AsObject;
|
|
@@ -271,11 +274,11 @@ export namespace ModuleData {
|
|
|
271
274
|
serialNumber?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
272
275
|
model?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
273
276
|
firmware?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
274
|
-
partNumber
|
|
275
|
-
|
|
276
|
-
|
|
277
|
+
partNumber?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
278
|
+
positionInBusConfig?: google_protobuf_wrappers_pb.UInt32Value.AsObject,
|
|
279
|
+
width?: google_protobuf_wrappers_pb.UInt32Value.AsObject,
|
|
277
280
|
extendedInformationList: Array<ModuleExtendedInformation.AsObject>,
|
|
278
|
-
busConfigList: Array<
|
|
281
|
+
busConfigList: Array<BusConfig.AsObject>,
|
|
279
282
|
}
|
|
280
283
|
}
|
|
281
284
|
|