@lansweeper/data-platform-outbound-grpc 0.1.61 → 0.1.63
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/outbound_pb.d.ts +455 -0
- package/gen-proto/outbound_pb.js +3704 -73
- package/generated-go/outbound.pb.go +10389 -9302
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +117 -1
|
@@ -564,6 +564,23 @@ export class Asset extends jspb.Message {
|
|
|
564
564
|
clearLastUser(): void;
|
|
565
565
|
getLastUser(): LastUser | undefined;
|
|
566
566
|
setLastUser(value?: LastUser): Asset;
|
|
567
|
+
clearUserList(): void;
|
|
568
|
+
getUserList(): Array<UserAccount>;
|
|
569
|
+
setUserList(value: Array<UserAccount>): Asset;
|
|
570
|
+
addUser(value?: UserAccount, index?: number): UserAccount;
|
|
571
|
+
clearUserGroupList(): void;
|
|
572
|
+
getUserGroupList(): Array<UserGroup>;
|
|
573
|
+
setUserGroupList(value: Array<UserGroup>): Asset;
|
|
574
|
+
addUserGroup(value?: UserGroup, index?: number): UserGroup;
|
|
575
|
+
clearUserInGroupList(): void;
|
|
576
|
+
getUserInGroupList(): Array<UserInGroup>;
|
|
577
|
+
setUserInGroupList(value: Array<UserInGroup>): Asset;
|
|
578
|
+
addUserInGroup(value?: UserInGroup, index?: number): UserInGroup;
|
|
579
|
+
|
|
580
|
+
hasInternetExplorer(): boolean;
|
|
581
|
+
clearInternetExplorer(): void;
|
|
582
|
+
getInternetExplorer(): InternetExplorer | undefined;
|
|
583
|
+
setInternetExplorer(value?: InternetExplorer): Asset;
|
|
567
584
|
|
|
568
585
|
hasOtModule(): boolean;
|
|
569
586
|
clearOtModule(): void;
|
|
@@ -651,6 +668,10 @@ export namespace Asset {
|
|
|
651
668
|
runningProcessList: Array<RunningProcess.AsObject>,
|
|
652
669
|
sharedResourceList: Array<SharedResource.AsObject>,
|
|
653
670
|
lastUser?: LastUser.AsObject,
|
|
671
|
+
userList: Array<UserAccount.AsObject>,
|
|
672
|
+
userGroupList: Array<UserGroup.AsObject>,
|
|
673
|
+
userInGroupList: Array<UserInGroup.AsObject>,
|
|
674
|
+
internetExplorer?: InternetExplorer.AsObject,
|
|
654
675
|
otModule?: OtModule.AsObject,
|
|
655
676
|
cloud?: CloudEntity.AsObject,
|
|
656
677
|
}
|
|
@@ -1058,6 +1079,440 @@ export namespace LastUser {
|
|
|
1058
1079
|
}
|
|
1059
1080
|
}
|
|
1060
1081
|
|
|
1082
|
+
export class UserAccount extends jspb.Message {
|
|
1083
|
+
|
|
1084
|
+
hasName(): boolean;
|
|
1085
|
+
clearName(): void;
|
|
1086
|
+
getName(): string | undefined;
|
|
1087
|
+
setName(value: string): UserAccount;
|
|
1088
|
+
|
|
1089
|
+
hasDomain(): boolean;
|
|
1090
|
+
clearDomain(): void;
|
|
1091
|
+
getDomain(): string | undefined;
|
|
1092
|
+
setDomain(value: string): UserAccount;
|
|
1093
|
+
|
|
1094
|
+
hasCaption(): boolean;
|
|
1095
|
+
clearCaption(): void;
|
|
1096
|
+
getCaption(): string | undefined;
|
|
1097
|
+
setCaption(value: string): UserAccount;
|
|
1098
|
+
|
|
1099
|
+
hasDescription(): boolean;
|
|
1100
|
+
clearDescription(): void;
|
|
1101
|
+
getDescription(): string | undefined;
|
|
1102
|
+
setDescription(value: string): UserAccount;
|
|
1103
|
+
|
|
1104
|
+
hasFullName(): boolean;
|
|
1105
|
+
clearFullName(): void;
|
|
1106
|
+
getFullName(): string | undefined;
|
|
1107
|
+
setFullName(value: string): UserAccount;
|
|
1108
|
+
|
|
1109
|
+
hasAccountType(): boolean;
|
|
1110
|
+
clearAccountType(): void;
|
|
1111
|
+
getAccountType(): MappedValue | undefined;
|
|
1112
|
+
setAccountType(value?: MappedValue): UserAccount;
|
|
1113
|
+
|
|
1114
|
+
hasSid(): boolean;
|
|
1115
|
+
clearSid(): void;
|
|
1116
|
+
getSid(): string | undefined;
|
|
1117
|
+
setSid(value: string): UserAccount;
|
|
1118
|
+
|
|
1119
|
+
hasSidType(): boolean;
|
|
1120
|
+
clearSidType(): void;
|
|
1121
|
+
getSidType(): MappedValue | undefined;
|
|
1122
|
+
setSidType(value?: MappedValue): UserAccount;
|
|
1123
|
+
|
|
1124
|
+
hasLocalAccount(): boolean;
|
|
1125
|
+
clearLocalAccount(): void;
|
|
1126
|
+
getLocalAccount(): boolean | undefined;
|
|
1127
|
+
setLocalAccount(value: boolean): UserAccount;
|
|
1128
|
+
|
|
1129
|
+
hasDisabled(): boolean;
|
|
1130
|
+
clearDisabled(): void;
|
|
1131
|
+
getDisabled(): boolean | undefined;
|
|
1132
|
+
setDisabled(value: boolean): UserAccount;
|
|
1133
|
+
|
|
1134
|
+
hasLockout(): boolean;
|
|
1135
|
+
clearLockout(): void;
|
|
1136
|
+
getLockout(): boolean | undefined;
|
|
1137
|
+
setLockout(value: boolean): UserAccount;
|
|
1138
|
+
|
|
1139
|
+
hasPasswordChangeable(): boolean;
|
|
1140
|
+
clearPasswordChangeable(): void;
|
|
1141
|
+
getPasswordChangeable(): boolean | undefined;
|
|
1142
|
+
setPasswordChangeable(value: boolean): UserAccount;
|
|
1143
|
+
|
|
1144
|
+
hasPasswordExpires(): boolean;
|
|
1145
|
+
clearPasswordExpires(): void;
|
|
1146
|
+
getPasswordExpires(): boolean | undefined;
|
|
1147
|
+
setPasswordExpires(value: boolean): UserAccount;
|
|
1148
|
+
|
|
1149
|
+
hasPasswordRequired(): boolean;
|
|
1150
|
+
clearPasswordRequired(): void;
|
|
1151
|
+
getPasswordRequired(): boolean | undefined;
|
|
1152
|
+
setPasswordRequired(value: boolean): UserAccount;
|
|
1153
|
+
|
|
1154
|
+
hasStatus(): boolean;
|
|
1155
|
+
clearStatus(): void;
|
|
1156
|
+
getStatus(): string | undefined;
|
|
1157
|
+
setStatus(value: string): UserAccount;
|
|
1158
|
+
|
|
1159
|
+
hasUserId(): boolean;
|
|
1160
|
+
clearUserId(): void;
|
|
1161
|
+
getUserId(): number | undefined;
|
|
1162
|
+
setUserId(value: number): UserAccount;
|
|
1163
|
+
|
|
1164
|
+
hasGroupId(): boolean;
|
|
1165
|
+
clearGroupId(): void;
|
|
1166
|
+
getGroupId(): number | undefined;
|
|
1167
|
+
setGroupId(value: number): UserAccount;
|
|
1168
|
+
|
|
1169
|
+
hasHomeDirectory(): boolean;
|
|
1170
|
+
clearHomeDirectory(): void;
|
|
1171
|
+
getHomeDirectory(): string | undefined;
|
|
1172
|
+
setHomeDirectory(value: string): UserAccount;
|
|
1173
|
+
|
|
1174
|
+
hasLoginShell(): boolean;
|
|
1175
|
+
clearLoginShell(): void;
|
|
1176
|
+
getLoginShell(): string | undefined;
|
|
1177
|
+
setLoginShell(value: string): UserAccount;
|
|
1178
|
+
|
|
1179
|
+
serializeBinary(): Uint8Array;
|
|
1180
|
+
toObject(includeInstance?: boolean): UserAccount.AsObject;
|
|
1181
|
+
static toObject(includeInstance: boolean, msg: UserAccount): UserAccount.AsObject;
|
|
1182
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1183
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1184
|
+
static serializeBinaryToWriter(message: UserAccount, writer: jspb.BinaryWriter): void;
|
|
1185
|
+
static deserializeBinary(bytes: Uint8Array): UserAccount;
|
|
1186
|
+
static deserializeBinaryFromReader(message: UserAccount, reader: jspb.BinaryReader): UserAccount;
|
|
1187
|
+
}
|
|
1188
|
+
|
|
1189
|
+
export namespace UserAccount {
|
|
1190
|
+
export type AsObject = {
|
|
1191
|
+
name?: string,
|
|
1192
|
+
domain?: string,
|
|
1193
|
+
caption?: string,
|
|
1194
|
+
description?: string,
|
|
1195
|
+
fullName?: string,
|
|
1196
|
+
accountType?: MappedValue.AsObject,
|
|
1197
|
+
sid?: string,
|
|
1198
|
+
sidType?: MappedValue.AsObject,
|
|
1199
|
+
localAccount?: boolean,
|
|
1200
|
+
disabled?: boolean,
|
|
1201
|
+
lockout?: boolean,
|
|
1202
|
+
passwordChangeable?: boolean,
|
|
1203
|
+
passwordExpires?: boolean,
|
|
1204
|
+
passwordRequired?: boolean,
|
|
1205
|
+
status?: string,
|
|
1206
|
+
userId?: number,
|
|
1207
|
+
groupId?: number,
|
|
1208
|
+
homeDirectory?: string,
|
|
1209
|
+
loginShell?: string,
|
|
1210
|
+
}
|
|
1211
|
+
}
|
|
1212
|
+
|
|
1213
|
+
export class UserGroup extends jspb.Message {
|
|
1214
|
+
|
|
1215
|
+
hasName(): boolean;
|
|
1216
|
+
clearName(): void;
|
|
1217
|
+
getName(): string | undefined;
|
|
1218
|
+
setName(value: string): UserGroup;
|
|
1219
|
+
|
|
1220
|
+
hasCaption(): boolean;
|
|
1221
|
+
clearCaption(): void;
|
|
1222
|
+
getCaption(): string | undefined;
|
|
1223
|
+
setCaption(value: string): UserGroup;
|
|
1224
|
+
|
|
1225
|
+
hasDescription(): boolean;
|
|
1226
|
+
clearDescription(): void;
|
|
1227
|
+
getDescription(): string | undefined;
|
|
1228
|
+
setDescription(value: string): UserGroup;
|
|
1229
|
+
|
|
1230
|
+
hasDomain(): boolean;
|
|
1231
|
+
clearDomain(): void;
|
|
1232
|
+
getDomain(): string | undefined;
|
|
1233
|
+
setDomain(value: string): UserGroup;
|
|
1234
|
+
|
|
1235
|
+
hasSid(): boolean;
|
|
1236
|
+
clearSid(): void;
|
|
1237
|
+
getSid(): string | undefined;
|
|
1238
|
+
setSid(value: string): UserGroup;
|
|
1239
|
+
|
|
1240
|
+
hasLocalAccount(): boolean;
|
|
1241
|
+
clearLocalAccount(): void;
|
|
1242
|
+
getLocalAccount(): boolean | undefined;
|
|
1243
|
+
setLocalAccount(value: boolean): UserGroup;
|
|
1244
|
+
|
|
1245
|
+
hasGroupId(): boolean;
|
|
1246
|
+
clearGroupId(): void;
|
|
1247
|
+
getGroupId(): number | undefined;
|
|
1248
|
+
setGroupId(value: number): UserGroup;
|
|
1249
|
+
|
|
1250
|
+
hasType(): boolean;
|
|
1251
|
+
clearType(): void;
|
|
1252
|
+
getType(): string | undefined;
|
|
1253
|
+
setType(value: string): UserGroup;
|
|
1254
|
+
|
|
1255
|
+
serializeBinary(): Uint8Array;
|
|
1256
|
+
toObject(includeInstance?: boolean): UserGroup.AsObject;
|
|
1257
|
+
static toObject(includeInstance: boolean, msg: UserGroup): UserGroup.AsObject;
|
|
1258
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1259
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1260
|
+
static serializeBinaryToWriter(message: UserGroup, writer: jspb.BinaryWriter): void;
|
|
1261
|
+
static deserializeBinary(bytes: Uint8Array): UserGroup;
|
|
1262
|
+
static deserializeBinaryFromReader(message: UserGroup, reader: jspb.BinaryReader): UserGroup;
|
|
1263
|
+
}
|
|
1264
|
+
|
|
1265
|
+
export namespace UserGroup {
|
|
1266
|
+
export type AsObject = {
|
|
1267
|
+
name?: string,
|
|
1268
|
+
caption?: string,
|
|
1269
|
+
description?: string,
|
|
1270
|
+
domain?: string,
|
|
1271
|
+
sid?: string,
|
|
1272
|
+
localAccount?: boolean,
|
|
1273
|
+
groupId?: number,
|
|
1274
|
+
type?: string,
|
|
1275
|
+
}
|
|
1276
|
+
}
|
|
1277
|
+
|
|
1278
|
+
export class UserInGroup extends jspb.Message {
|
|
1279
|
+
|
|
1280
|
+
hasGroupName(): boolean;
|
|
1281
|
+
clearGroupName(): void;
|
|
1282
|
+
getGroupName(): string | undefined;
|
|
1283
|
+
setGroupName(value: string): UserInGroup;
|
|
1284
|
+
|
|
1285
|
+
hasUserName(): boolean;
|
|
1286
|
+
clearUserName(): void;
|
|
1287
|
+
getUserName(): string | undefined;
|
|
1288
|
+
setUserName(value: string): UserInGroup;
|
|
1289
|
+
|
|
1290
|
+
hasUserDomainName(): boolean;
|
|
1291
|
+
clearUserDomainName(): void;
|
|
1292
|
+
getUserDomainName(): string | undefined;
|
|
1293
|
+
setUserDomainName(value: string): UserInGroup;
|
|
1294
|
+
|
|
1295
|
+
hasAccountType(): boolean;
|
|
1296
|
+
clearAccountType(): void;
|
|
1297
|
+
getAccountType(): string | undefined;
|
|
1298
|
+
setAccountType(value: string): UserInGroup;
|
|
1299
|
+
|
|
1300
|
+
hasIsAdminGroup(): boolean;
|
|
1301
|
+
clearIsAdminGroup(): void;
|
|
1302
|
+
getIsAdminGroup(): boolean | undefined;
|
|
1303
|
+
setIsAdminGroup(value: boolean): UserInGroup;
|
|
1304
|
+
|
|
1305
|
+
serializeBinary(): Uint8Array;
|
|
1306
|
+
toObject(includeInstance?: boolean): UserInGroup.AsObject;
|
|
1307
|
+
static toObject(includeInstance: boolean, msg: UserInGroup): UserInGroup.AsObject;
|
|
1308
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1309
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1310
|
+
static serializeBinaryToWriter(message: UserInGroup, writer: jspb.BinaryWriter): void;
|
|
1311
|
+
static deserializeBinary(bytes: Uint8Array): UserInGroup;
|
|
1312
|
+
static deserializeBinaryFromReader(message: UserInGroup, reader: jspb.BinaryReader): UserInGroup;
|
|
1313
|
+
}
|
|
1314
|
+
|
|
1315
|
+
export namespace UserInGroup {
|
|
1316
|
+
export type AsObject = {
|
|
1317
|
+
groupName?: string,
|
|
1318
|
+
userName?: string,
|
|
1319
|
+
userDomainName?: string,
|
|
1320
|
+
accountType?: string,
|
|
1321
|
+
isAdminGroup?: boolean,
|
|
1322
|
+
}
|
|
1323
|
+
}
|
|
1324
|
+
|
|
1325
|
+
export class InternetExplorer extends jspb.Message {
|
|
1326
|
+
clearActiveXList(): void;
|
|
1327
|
+
getActiveXList(): Array<InternetExplorer.ActiveX>;
|
|
1328
|
+
setActiveXList(value: Array<InternetExplorer.ActiveX>): InternetExplorer;
|
|
1329
|
+
addActiveX(value?: InternetExplorer.ActiveX, index?: number): InternetExplorer.ActiveX;
|
|
1330
|
+
clearBarList(): void;
|
|
1331
|
+
getBarList(): Array<InternetExplorer.BrowserObject>;
|
|
1332
|
+
setBarList(value: Array<InternetExplorer.BrowserObject>): InternetExplorer;
|
|
1333
|
+
addBar(value?: InternetExplorer.BrowserObject, index?: number): InternetExplorer.BrowserObject;
|
|
1334
|
+
clearBrowserObjectList(): void;
|
|
1335
|
+
getBrowserObjectList(): Array<InternetExplorer.BrowserObject>;
|
|
1336
|
+
setBrowserObjectList(value: Array<InternetExplorer.BrowserObject>): InternetExplorer;
|
|
1337
|
+
addBrowserObject(value?: InternetExplorer.BrowserObject, index?: number): InternetExplorer.BrowserObject;
|
|
1338
|
+
clearExtensionList(): void;
|
|
1339
|
+
getExtensionList(): Array<InternetExplorer.Extension>;
|
|
1340
|
+
setExtensionList(value: Array<InternetExplorer.Extension>): InternetExplorer;
|
|
1341
|
+
addExtension$(value?: InternetExplorer.Extension, index?: number): InternetExplorer.Extension;
|
|
1342
|
+
|
|
1343
|
+
serializeBinary(): Uint8Array;
|
|
1344
|
+
toObject(includeInstance?: boolean): InternetExplorer.AsObject;
|
|
1345
|
+
static toObject(includeInstance: boolean, msg: InternetExplorer): InternetExplorer.AsObject;
|
|
1346
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1347
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1348
|
+
static serializeBinaryToWriter(message: InternetExplorer, writer: jspb.BinaryWriter): void;
|
|
1349
|
+
static deserializeBinary(bytes: Uint8Array): InternetExplorer;
|
|
1350
|
+
static deserializeBinaryFromReader(message: InternetExplorer, reader: jspb.BinaryReader): InternetExplorer;
|
|
1351
|
+
}
|
|
1352
|
+
|
|
1353
|
+
export namespace InternetExplorer {
|
|
1354
|
+
export type AsObject = {
|
|
1355
|
+
activeXList: Array<InternetExplorer.ActiveX.AsObject>,
|
|
1356
|
+
barList: Array<InternetExplorer.BrowserObject.AsObject>,
|
|
1357
|
+
browserObjectList: Array<InternetExplorer.BrowserObject.AsObject>,
|
|
1358
|
+
extensionList: Array<InternetExplorer.Extension.AsObject>,
|
|
1359
|
+
}
|
|
1360
|
+
|
|
1361
|
+
|
|
1362
|
+
export class ActiveX extends jspb.Message {
|
|
1363
|
+
|
|
1364
|
+
hasControl(): boolean;
|
|
1365
|
+
clearControl(): void;
|
|
1366
|
+
getControl(): string | undefined;
|
|
1367
|
+
setControl(value: string): ActiveX;
|
|
1368
|
+
|
|
1369
|
+
hasCodeBase(): boolean;
|
|
1370
|
+
clearCodeBase(): void;
|
|
1371
|
+
getCodeBase(): string | undefined;
|
|
1372
|
+
setCodeBase(value: string): ActiveX;
|
|
1373
|
+
|
|
1374
|
+
hasInfo(): boolean;
|
|
1375
|
+
clearInfo(): void;
|
|
1376
|
+
getInfo(): string | undefined;
|
|
1377
|
+
setInfo(value: string): ActiveX;
|
|
1378
|
+
|
|
1379
|
+
hasOsd(): boolean;
|
|
1380
|
+
clearOsd(): void;
|
|
1381
|
+
getOsd(): string | undefined;
|
|
1382
|
+
setOsd(value: string): ActiveX;
|
|
1383
|
+
|
|
1384
|
+
serializeBinary(): Uint8Array;
|
|
1385
|
+
toObject(includeInstance?: boolean): ActiveX.AsObject;
|
|
1386
|
+
static toObject(includeInstance: boolean, msg: ActiveX): ActiveX.AsObject;
|
|
1387
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1388
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1389
|
+
static serializeBinaryToWriter(message: ActiveX, writer: jspb.BinaryWriter): void;
|
|
1390
|
+
static deserializeBinary(bytes: Uint8Array): ActiveX;
|
|
1391
|
+
static deserializeBinaryFromReader(message: ActiveX, reader: jspb.BinaryReader): ActiveX;
|
|
1392
|
+
}
|
|
1393
|
+
|
|
1394
|
+
export namespace ActiveX {
|
|
1395
|
+
export type AsObject = {
|
|
1396
|
+
control?: string,
|
|
1397
|
+
codeBase?: string,
|
|
1398
|
+
info?: string,
|
|
1399
|
+
osd?: string,
|
|
1400
|
+
}
|
|
1401
|
+
}
|
|
1402
|
+
|
|
1403
|
+
export class Extension extends jspb.Message {
|
|
1404
|
+
|
|
1405
|
+
hasControl(): boolean;
|
|
1406
|
+
clearControl(): void;
|
|
1407
|
+
getControl(): string | undefined;
|
|
1408
|
+
setControl(value: string): Extension;
|
|
1409
|
+
|
|
1410
|
+
hasButtonText(): boolean;
|
|
1411
|
+
clearButtonText(): void;
|
|
1412
|
+
getButtonText(): string | undefined;
|
|
1413
|
+
setButtonText(value: string): Extension;
|
|
1414
|
+
|
|
1415
|
+
hasClsId(): boolean;
|
|
1416
|
+
clearClsId(): void;
|
|
1417
|
+
getClsId(): string | undefined;
|
|
1418
|
+
setClsId(value: string): Extension;
|
|
1419
|
+
|
|
1420
|
+
hasDefaultVisible(): boolean;
|
|
1421
|
+
clearDefaultVisible(): void;
|
|
1422
|
+
getDefaultVisible(): string | undefined;
|
|
1423
|
+
setDefaultVisible(value: string): Extension;
|
|
1424
|
+
|
|
1425
|
+
hasExec(): boolean;
|
|
1426
|
+
clearExec(): void;
|
|
1427
|
+
getExec(): string | undefined;
|
|
1428
|
+
setExec(value: string): Extension;
|
|
1429
|
+
|
|
1430
|
+
hasHotIcon(): boolean;
|
|
1431
|
+
clearHotIcon(): void;
|
|
1432
|
+
getHotIcon(): string | undefined;
|
|
1433
|
+
setHotIcon(value: string): Extension;
|
|
1434
|
+
|
|
1435
|
+
hasIcon(): boolean;
|
|
1436
|
+
clearIcon(): void;
|
|
1437
|
+
getIcon(): string | undefined;
|
|
1438
|
+
setIcon(value: string): Extension;
|
|
1439
|
+
|
|
1440
|
+
hasMenuText(): boolean;
|
|
1441
|
+
clearMenuText(): void;
|
|
1442
|
+
getMenuText(): string | undefined;
|
|
1443
|
+
setMenuText(value: string): Extension;
|
|
1444
|
+
|
|
1445
|
+
hasTooltip(): boolean;
|
|
1446
|
+
clearTooltip(): void;
|
|
1447
|
+
getTooltip(): string | undefined;
|
|
1448
|
+
setTooltip(value: string): Extension;
|
|
1449
|
+
|
|
1450
|
+
serializeBinary(): Uint8Array;
|
|
1451
|
+
toObject(includeInstance?: boolean): Extension.AsObject;
|
|
1452
|
+
static toObject(includeInstance: boolean, msg: Extension): Extension.AsObject;
|
|
1453
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1454
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1455
|
+
static serializeBinaryToWriter(message: Extension, writer: jspb.BinaryWriter): void;
|
|
1456
|
+
static deserializeBinary(bytes: Uint8Array): Extension;
|
|
1457
|
+
static deserializeBinaryFromReader(message: Extension, reader: jspb.BinaryReader): Extension;
|
|
1458
|
+
}
|
|
1459
|
+
|
|
1460
|
+
export namespace Extension {
|
|
1461
|
+
export type AsObject = {
|
|
1462
|
+
control?: string,
|
|
1463
|
+
buttonText?: string,
|
|
1464
|
+
clsId?: string,
|
|
1465
|
+
defaultVisible?: string,
|
|
1466
|
+
exec?: string,
|
|
1467
|
+
hotIcon?: string,
|
|
1468
|
+
icon?: string,
|
|
1469
|
+
menuText?: string,
|
|
1470
|
+
tooltip?: string,
|
|
1471
|
+
}
|
|
1472
|
+
}
|
|
1473
|
+
|
|
1474
|
+
export class BrowserObject extends jspb.Message {
|
|
1475
|
+
getControl(): string;
|
|
1476
|
+
setControl(value: string): BrowserObject;
|
|
1477
|
+
|
|
1478
|
+
serializeBinary(): Uint8Array;
|
|
1479
|
+
toObject(includeInstance?: boolean): BrowserObject.AsObject;
|
|
1480
|
+
static toObject(includeInstance: boolean, msg: BrowserObject): BrowserObject.AsObject;
|
|
1481
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1482
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1483
|
+
static serializeBinaryToWriter(message: BrowserObject, writer: jspb.BinaryWriter): void;
|
|
1484
|
+
static deserializeBinary(bytes: Uint8Array): BrowserObject;
|
|
1485
|
+
static deserializeBinaryFromReader(message: BrowserObject, reader: jspb.BinaryReader): BrowserObject;
|
|
1486
|
+
}
|
|
1487
|
+
|
|
1488
|
+
export namespace BrowserObject {
|
|
1489
|
+
export type AsObject = {
|
|
1490
|
+
control: string,
|
|
1491
|
+
}
|
|
1492
|
+
}
|
|
1493
|
+
|
|
1494
|
+
export class BarInfo extends jspb.Message {
|
|
1495
|
+
getControl(): string;
|
|
1496
|
+
setControl(value: string): BarInfo;
|
|
1497
|
+
|
|
1498
|
+
serializeBinary(): Uint8Array;
|
|
1499
|
+
toObject(includeInstance?: boolean): BarInfo.AsObject;
|
|
1500
|
+
static toObject(includeInstance: boolean, msg: BarInfo): BarInfo.AsObject;
|
|
1501
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1502
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1503
|
+
static serializeBinaryToWriter(message: BarInfo, writer: jspb.BinaryWriter): void;
|
|
1504
|
+
static deserializeBinary(bytes: Uint8Array): BarInfo;
|
|
1505
|
+
static deserializeBinaryFromReader(message: BarInfo, reader: jspb.BinaryReader): BarInfo;
|
|
1506
|
+
}
|
|
1507
|
+
|
|
1508
|
+
export namespace BarInfo {
|
|
1509
|
+
export type AsObject = {
|
|
1510
|
+
control: string,
|
|
1511
|
+
}
|
|
1512
|
+
}
|
|
1513
|
+
|
|
1514
|
+
}
|
|
1515
|
+
|
|
1061
1516
|
export class HardwareInfo extends jspb.Message {
|
|
1062
1517
|
|
|
1063
1518
|
hasTypeId(): boolean;
|