@lansweeper/data-platform-outbound-grpc 0.1.88 → 0.1.89

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.
@@ -1045,11 +1045,10 @@ export class OtModule extends jspb.Message {
1045
1045
  clearComponentType(): void;
1046
1046
  getComponentType(): string | undefined;
1047
1047
  setComponentType(value: string): OtModule;
1048
-
1049
- hasBusConfig(): boolean;
1050
- clearBusConfig(): void;
1051
- getBusConfig(): OtBusConfig | undefined;
1052
- setBusConfig(value?: OtBusConfig): OtModule;
1048
+ clearBusConfigList(): void;
1049
+ getBusConfigList(): Array<OtBusConfig>;
1050
+ setBusConfigList(value: Array<OtBusConfig>): OtModule;
1051
+ addBusConfig(value?: OtBusConfig, index?: number): OtBusConfig;
1053
1052
  getIsMainModule(): boolean;
1054
1053
  setIsMainModule(value: boolean): OtModule;
1055
1054
 
@@ -1096,7 +1095,7 @@ export class OtModule extends jspb.Message {
1096
1095
  export namespace OtModule {
1097
1096
  export type AsObject = {
1098
1097
  componentType?: string,
1099
- busConfig?: OtBusConfig.AsObject,
1098
+ busConfigList: Array<OtBusConfig.AsObject>,
1100
1099
  isMainModule: boolean,
1101
1100
  partNumber?: string,
1102
1101
  extInfoList: Array<OtModuleExtInfo.AsObject>,
@@ -1136,6 +1135,11 @@ export class OtBusConfig extends jspb.Message {
1136
1135
  getWidth(): number | undefined;
1137
1136
  setWidth(value: number): OtBusConfig;
1138
1137
 
1138
+ hasIsMainModule(): boolean;
1139
+ clearIsMainModule(): void;
1140
+ getIsMainModule(): boolean | undefined;
1141
+ setIsMainModule(value: boolean): OtBusConfig;
1142
+
1139
1143
  serializeBinary(): Uint8Array;
1140
1144
  toObject(includeInstance?: boolean): OtBusConfig.AsObject;
1141
1145
  static toObject(includeInstance: boolean, msg: OtBusConfig): OtBusConfig.AsObject;
@@ -1155,6 +1159,7 @@ export namespace OtBusConfig {
1155
1159
  startIndex: number,
1156
1160
  position?: number,
1157
1161
  width?: number,
1162
+ isMainModule?: boolean,
1158
1163
  }
1159
1164
  }
1160
1165
 
@@ -8953,6 +8958,10 @@ export class SoftwareInventory extends jspb.Message {
8953
8958
  getSoftwareList(): Array<Software>;
8954
8959
  setSoftwareList(value: Array<Software>): SoftwareInventory;
8955
8960
  addSoftware(value?: Software, index?: number): Software;
8961
+ clearEventLogList(): void;
8962
+ getEventLogList(): Array<SoftwareChangeEvent>;
8963
+ setEventLogList(value: Array<SoftwareChangeEvent>): SoftwareInventory;
8964
+ addEventLog(value?: SoftwareChangeEvent, index?: number): SoftwareChangeEvent;
8956
8965
 
8957
8966
  serializeBinary(): Uint8Array;
8958
8967
  toObject(includeInstance?: boolean): SoftwareInventory.AsObject;
@@ -8968,6 +8977,7 @@ export namespace SoftwareInventory {
8968
8977
  export type AsObject = {
8969
8978
  timestamp?: google_protobuf_timestamp_pb.Timestamp.AsObject,
8970
8979
  softwareList: Array<Software.AsObject>,
8980
+ eventLogList: Array<SoftwareChangeEvent.AsObject>,
8971
8981
  }
8972
8982
  }
8973
8983
 
@@ -9200,6 +9210,57 @@ export namespace RawSoftware {
9200
9210
  }
9201
9211
  }
9202
9212
 
9213
+ export class SoftwareChangeEvent extends jspb.Message {
9214
+ getEventType(): SoftwareChangeEvent.EventType;
9215
+ setEventType(value: SoftwareChangeEvent.EventType): SoftwareChangeEvent;
9216
+
9217
+ hasStart(): boolean;
9218
+ clearStart(): void;
9219
+ getStart(): google_protobuf_timestamp_pb.Timestamp | undefined;
9220
+ setStart(value?: google_protobuf_timestamp_pb.Timestamp): SoftwareChangeEvent;
9221
+
9222
+ hasEnd(): boolean;
9223
+ clearEnd(): void;
9224
+ getEnd(): google_protobuf_timestamp_pb.Timestamp | undefined;
9225
+ setEnd(value?: google_protobuf_timestamp_pb.Timestamp): SoftwareChangeEvent;
9226
+
9227
+ hasSoftware(): boolean;
9228
+ clearSoftware(): void;
9229
+ getSoftware(): Software | undefined;
9230
+ setSoftware(value?: Software): SoftwareChangeEvent;
9231
+
9232
+ hasPrevSoftware(): boolean;
9233
+ clearPrevSoftware(): void;
9234
+ getPrevSoftware(): Software | undefined;
9235
+ setPrevSoftware(value?: Software): SoftwareChangeEvent;
9236
+
9237
+ serializeBinary(): Uint8Array;
9238
+ toObject(includeInstance?: boolean): SoftwareChangeEvent.AsObject;
9239
+ static toObject(includeInstance: boolean, msg: SoftwareChangeEvent): SoftwareChangeEvent.AsObject;
9240
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
9241
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
9242
+ static serializeBinaryToWriter(message: SoftwareChangeEvent, writer: jspb.BinaryWriter): void;
9243
+ static deserializeBinary(bytes: Uint8Array): SoftwareChangeEvent;
9244
+ static deserializeBinaryFromReader(message: SoftwareChangeEvent, reader: jspb.BinaryReader): SoftwareChangeEvent;
9245
+ }
9246
+
9247
+ export namespace SoftwareChangeEvent {
9248
+ export type AsObject = {
9249
+ eventType: SoftwareChangeEvent.EventType,
9250
+ start?: google_protobuf_timestamp_pb.Timestamp.AsObject,
9251
+ end?: google_protobuf_timestamp_pb.Timestamp.AsObject,
9252
+ software?: Software.AsObject,
9253
+ prevSoftware?: Software.AsObject,
9254
+ }
9255
+
9256
+ export enum EventType {
9257
+ INSTALL = 0,
9258
+ UNINSTALL = 1,
9259
+ UPDATE = 2,
9260
+ }
9261
+
9262
+ }
9263
+
9203
9264
  export class CatalogBrand extends jspb.Message {
9204
9265
  getId(): number;
9205
9266
  setId(value: number): CatalogBrand;