Skip to content

Commit 633ab12

Browse files
committed
Add ExitProvisioning(), agent_version field
1 parent 2cd1ac1 commit 633ab12

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

proto/viam/provisioning/v1/provisioning.proto

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,16 @@ service ProvisioningService {
1717

1818
// GetNetworkList is to retrieve the list of networks that are visible to the smart machine.
1919
rpc GetNetworkList(GetNetworkListRequest) returns (GetNetworkListResponse);
20+
21+
// ExitProvisioning is called when "done" with all other calls.
22+
// It causes the device to exit provisioning mode to try any newly added wifi networks and resume normal operation.
23+
rpc ExitProvisioning(ExitProvisioningRequest) returns (ExitProvisioningResponse);
2024
}
2125

26+
message ExitProvisioningRequest {}
27+
28+
message ExitProvisioningResponse {}
29+
2230
message GetSmartMachineStatusRequest {}
2331

2432
message GetSmartMachineStatusResponse {
@@ -27,6 +35,7 @@ message GetSmartMachineStatusResponse {
2735
bool is_online = 3;
2836
NetworkInfo latest_connection_attempt = 4;
2937
repeated string errors = 5;
38+
string agent_version = 6;
3039
}
3140

3241
message SetNetworkCredentialsRequest {

0 commit comments

Comments
 (0)