|
1 | 1 | import json |
2 | 2 | from datetime import datetime |
3 | | -from typing import Any, AsyncIterator, List, Mapping, Optional, Tuple, Union, Literal |
| 3 | +from typing import Any, AsyncIterator, List, Literal, Mapping, Optional, Tuple, Union |
4 | 4 |
|
5 | 5 | from grpclib.client import Channel |
6 | 6 | from typing_extensions import Self |
|
25 | 25 | CreateLocationResponse, |
26 | 26 | CreateLocationSecretRequest, |
27 | 27 | CreateLocationSecretResponse, |
28 | | - CreateOrganizationInviteRequest, |
29 | | - CreateOrganizationInviteResponse, |
30 | 28 | CreateModuleRequest, |
31 | 29 | CreateModuleResponse, |
| 30 | + CreateOrganizationInviteRequest, |
| 31 | + CreateOrganizationInviteResponse, |
32 | 32 | CreateRobotPartSecretRequest, |
33 | 33 | CreateRobotPartSecretResponse, |
34 | 34 | DeleteFragmentRequest, |
|
120 | 120 | UpdateModuleResponse, |
121 | 121 | UpdateOrganizationInviteAuthorizationsRequest, |
122 | 122 | UpdateOrganizationInviteAuthorizationsResponse, |
| 123 | + UpdateOrganizationRequest, |
| 124 | + UpdateOrganizationResponse, |
123 | 125 | UpdateRobotPartRequest, |
124 | 126 | UpdateRobotPartResponse, |
125 | 127 | UpdateRobotRequest, |
126 | 128 | UpdateRobotResponse, |
127 | 129 | UploadModuleFileRequest, |
128 | | - UpdateOrganizationRequest, |
129 | | - UpdateOrganizationResponse, |
130 | 130 | Visibility, |
131 | 131 | ) |
132 | 132 | from viam.utils import datetime_to_timestamp, dict_to_struct, struct_to_dict |
|
0 commit comments