|
|
@ -42,6 +42,8 @@ enum EdgeVersion { |
|
|
V_3_8_0 = 8; |
|
|
V_3_8_0 = 8; |
|
|
V_3_9_0 = 9; |
|
|
V_3_9_0 = 9; |
|
|
V_4_0_0 = 10; |
|
|
V_4_0_0 = 10; |
|
|
|
|
|
|
|
|
|
|
|
V_LATEST = 999; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
@ -303,8 +305,9 @@ message NotificationTemplateUpdateMsg { |
|
|
optional string entity = 4; |
|
|
optional string entity = 4; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
// deprecated |
|
|
// DEPRECATED. FOR REMOVAL |
|
|
message RuleChainMetadataRequestMsg { |
|
|
message RuleChainMetadataRequestMsg { |
|
|
|
|
|
option deprecated = true; |
|
|
int64 ruleChainIdMSB = 1; |
|
|
int64 ruleChainIdMSB = 1; |
|
|
int64 ruleChainIdLSB = 2; |
|
|
int64 ruleChainIdLSB = 2; |
|
|
} |
|
|
} |
|
|
@ -322,22 +325,30 @@ message RelationRequestMsg { |
|
|
string entityType = 3; |
|
|
string entityType = 3; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// DEPRECATED. FOR REMOVAL |
|
|
message UserCredentialsRequestMsg { |
|
|
message UserCredentialsRequestMsg { |
|
|
|
|
|
option deprecated = true; |
|
|
int64 userIdMSB = 1; |
|
|
int64 userIdMSB = 1; |
|
|
int64 userIdLSB = 2; |
|
|
int64 userIdLSB = 2; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// DEPRECATED. FOR REMOVAL |
|
|
message DeviceCredentialsRequestMsg { |
|
|
message DeviceCredentialsRequestMsg { |
|
|
|
|
|
option deprecated = true; |
|
|
int64 deviceIdMSB = 1; |
|
|
int64 deviceIdMSB = 1; |
|
|
int64 deviceIdLSB = 2; |
|
|
int64 deviceIdLSB = 2; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// DEPRECATED. FOR REMOVAL |
|
|
message WidgetBundleTypesRequestMsg { |
|
|
message WidgetBundleTypesRequestMsg { |
|
|
|
|
|
option deprecated = true; |
|
|
int64 widgetBundleIdMSB = 1; |
|
|
int64 widgetBundleIdMSB = 1; |
|
|
int64 widgetBundleIdLSB = 2; |
|
|
int64 widgetBundleIdLSB = 2; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// DEPRECATED. FOR REMOVAL |
|
|
message EntityViewsRequestMsg { |
|
|
message EntityViewsRequestMsg { |
|
|
|
|
|
option deprecated = true; |
|
|
int64 entityIdMSB = 1; |
|
|
int64 entityIdMSB = 1; |
|
|
int64 entityIdLSB = 2; |
|
|
int64 entityIdLSB = 2; |
|
|
string entityType = 3; |
|
|
string entityType = 3; |
|
|
@ -395,14 +406,14 @@ message UplinkMsg { |
|
|
repeated DeviceCredentialsUpdateMsg deviceCredentialsUpdateMsg = 4; |
|
|
repeated DeviceCredentialsUpdateMsg deviceCredentialsUpdateMsg = 4; |
|
|
repeated AlarmUpdateMsg alarmUpdateMsg = 5; |
|
|
repeated AlarmUpdateMsg alarmUpdateMsg = 5; |
|
|
repeated RelationUpdateMsg relationUpdateMsg = 6; |
|
|
repeated RelationUpdateMsg relationUpdateMsg = 6; |
|
|
repeated RuleChainMetadataRequestMsg ruleChainMetadataRequestMsg = 7; // deprecated |
|
|
repeated RuleChainMetadataRequestMsg ruleChainMetadataRequestMsg = 7 [deprecated = true]; |
|
|
repeated AttributesRequestMsg attributesRequestMsg = 8; |
|
|
repeated AttributesRequestMsg attributesRequestMsg = 8; |
|
|
repeated RelationRequestMsg relationRequestMsg = 9; |
|
|
repeated RelationRequestMsg relationRequestMsg = 9; |
|
|
repeated UserCredentialsRequestMsg userCredentialsRequestMsg = 10; |
|
|
repeated UserCredentialsRequestMsg userCredentialsRequestMsg = 10 [deprecated = true]; |
|
|
repeated DeviceCredentialsRequestMsg deviceCredentialsRequestMsg = 11; |
|
|
repeated DeviceCredentialsRequestMsg deviceCredentialsRequestMsg = 11 [deprecated = true]; |
|
|
repeated DeviceRpcCallMsg deviceRpcCallMsg = 12; |
|
|
repeated DeviceRpcCallMsg deviceRpcCallMsg = 12; |
|
|
repeated WidgetBundleTypesRequestMsg widgetBundleTypesRequestMsg = 14; |
|
|
repeated WidgetBundleTypesRequestMsg widgetBundleTypesRequestMsg = 14 [deprecated = true]; |
|
|
repeated EntityViewsRequestMsg entityViewsRequestMsg = 15; |
|
|
repeated EntityViewsRequestMsg entityViewsRequestMsg = 15 [deprecated = true]; |
|
|
repeated AssetUpdateMsg assetUpdateMsg = 16; |
|
|
repeated AssetUpdateMsg assetUpdateMsg = 16; |
|
|
repeated DashboardUpdateMsg dashboardUpdateMsg = 17; |
|
|
repeated DashboardUpdateMsg dashboardUpdateMsg = 17; |
|
|
repeated EntityViewUpdateMsg entityViewUpdateMsg = 18; |
|
|
repeated EntityViewUpdateMsg entityViewUpdateMsg = 18; |
|
|
@ -430,7 +441,7 @@ message DownlinkMsg { |
|
|
int32 downlinkMsgId = 1; |
|
|
int32 downlinkMsgId = 1; |
|
|
SyncCompletedMsg syncCompletedMsg = 2; |
|
|
SyncCompletedMsg syncCompletedMsg = 2; |
|
|
repeated EntityDataProto entityData = 3; |
|
|
repeated EntityDataProto entityData = 3; |
|
|
repeated DeviceCredentialsRequestMsg deviceCredentialsRequestMsg = 4; |
|
|
repeated DeviceCredentialsRequestMsg deviceCredentialsRequestMsg = 4 [deprecated = true]; |
|
|
repeated DeviceUpdateMsg deviceUpdateMsg = 5; |
|
|
repeated DeviceUpdateMsg deviceUpdateMsg = 5; |
|
|
repeated DeviceProfileUpdateMsg deviceProfileUpdateMsg = 6; |
|
|
repeated DeviceProfileUpdateMsg deviceProfileUpdateMsg = 6; |
|
|
repeated DeviceCredentialsUpdateMsg deviceCredentialsUpdateMsg = 7; |
|
|
repeated DeviceCredentialsUpdateMsg deviceCredentialsUpdateMsg = 7; |
|
|
|