Skip to content

Commit 4674413

Browse files
committed
Bump version to 0.31.0rc0
1 parent f6d8d3b commit 4674413

File tree

50 files changed

+1224
-1348
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+1224
-1348
lines changed

src/viam/proto/app/__init__.py

Lines changed: 198 additions & 201 deletions
Large diffs are not rendered by default.

src/viam/proto/app/agent/__init__.py

Lines changed: 14 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,26 @@
1-
'''
1+
"""
22
@generated by Viam.
33
Do not edit manually!
4-
'''
5-
from ....gen.app.agent.v1.agent_grpc import (
6-
AgentDeviceServiceBase,
7-
AgentDeviceServiceStub,
8-
UnimplementedAgentDeviceServiceBase
9-
)
4+
"""
5+
6+
from ....gen.app.agent.v1.agent_grpc import AgentDeviceServiceBase, AgentDeviceServiceStub, UnimplementedAgentDeviceServiceBase
107
from ....gen.app.agent.v1.agent_pb2 import (
118
DeviceAgentConfigRequest,
129
DeviceAgentConfigResponse,
1310
DeviceSubsystemConfig,
1411
HostInfo,
1512
PackageFormat,
16-
SubsystemUpdateInfo
13+
SubsystemUpdateInfo,
1714
)
1815

1916
__all__ = [
20-
'AgentDeviceServiceBase',
21-
'AgentDeviceServiceStub',
22-
'UnimplementedAgentDeviceServiceBase',
23-
'DeviceAgentConfigRequest',
24-
'DeviceAgentConfigResponse',
25-
'DeviceSubsystemConfig',
26-
'HostInfo',
27-
'PackageFormat',
28-
'SubsystemUpdateInfo',
17+
"AgentDeviceServiceBase",
18+
"AgentDeviceServiceStub",
19+
"UnimplementedAgentDeviceServiceBase",
20+
"DeviceAgentConfigRequest",
21+
"DeviceAgentConfigResponse",
22+
"DeviceSubsystemConfig",
23+
"HostInfo",
24+
"PackageFormat",
25+
"SubsystemUpdateInfo",
2926
]

src/viam/proto/app/billing.py

Lines changed: 23 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
1-
'''
1+
"""
22
@generated by Viam.
33
Do not edit manually!
4-
'''
5-
from ...gen.app.v1.billing_grpc import (
6-
BillingServiceBase,
7-
BillingServiceStub,
8-
UnimplementedBillingServiceBase
9-
)
4+
"""
5+
6+
from ...gen.app.v1.billing_grpc import BillingServiceBase, BillingServiceStub, UnimplementedBillingServiceBase
107
from ...gen.app.v1.billing_pb2 import (
118
BillableResourceEvent,
129
GetCurrentMonthUsageRequest,
@@ -22,26 +19,26 @@
2219
PaymentMethodCard,
2320
PaymentMethodType,
2421
SendPaymentRequiredEmailRequest,
25-
SendPaymentRequiredEmailResponse
22+
SendPaymentRequiredEmailResponse,
2623
)
2724

2825
__all__ = [
29-
'BillingServiceBase',
30-
'BillingServiceStub',
31-
'UnimplementedBillingServiceBase',
32-
'BillableResourceEvent',
33-
'GetCurrentMonthUsageRequest',
34-
'GetCurrentMonthUsageResponse',
35-
'GetInvoicePdfRequest',
36-
'GetInvoicePdfResponse',
37-
'GetInvoicesSummaryRequest',
38-
'GetInvoicesSummaryResponse',
39-
'GetOrgBillingInformationRequest',
40-
'GetOrgBillingInformationResponse',
41-
'Invoice',
42-
'InvoiceSummary',
43-
'PaymentMethodCard',
44-
'PaymentMethodType',
45-
'SendPaymentRequiredEmailRequest',
46-
'SendPaymentRequiredEmailResponse',
26+
"BillingServiceBase",
27+
"BillingServiceStub",
28+
"UnimplementedBillingServiceBase",
29+
"BillableResourceEvent",
30+
"GetCurrentMonthUsageRequest",
31+
"GetCurrentMonthUsageResponse",
32+
"GetInvoicePdfRequest",
33+
"GetInvoicePdfResponse",
34+
"GetInvoicesSummaryRequest",
35+
"GetInvoicesSummaryResponse",
36+
"GetOrgBillingInformationRequest",
37+
"GetOrgBillingInformationResponse",
38+
"Invoice",
39+
"InvoiceSummary",
40+
"PaymentMethodCard",
41+
"PaymentMethodType",
42+
"SendPaymentRequiredEmailRequest",
43+
"SendPaymentRequiredEmailResponse",
4744
]
Lines changed: 25 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
1-
'''
1+
"""
22
@generated by Viam.
33
Do not edit manually!
4-
'''
5-
from ....gen.app.cloudslam.v1.cloud_slam_grpc import (
6-
CloudSLAMServiceBase,
7-
CloudSLAMServiceStub,
8-
UnimplementedCloudSLAMServiceBase
9-
)
4+
"""
5+
6+
from ....gen.app.cloudslam.v1.cloud_slam_grpc import CloudSLAMServiceBase, CloudSLAMServiceStub, UnimplementedCloudSLAMServiceBase
107
from ....gen.app.cloudslam.v1.cloud_slam_pb2 import (
118
CaptureInterval,
129
EndStatus,
@@ -24,28 +21,28 @@
2421
StartMappingSessionRequest,
2522
StartMappingSessionResponse,
2623
StopMappingSessionRequest,
27-
StopMappingSessionResponse
24+
StopMappingSessionResponse,
2825
)
2926

3027
__all__ = [
31-
'CloudSLAMServiceBase',
32-
'CloudSLAMServiceStub',
33-
'UnimplementedCloudSLAMServiceBase',
34-
'CaptureInterval',
35-
'EndStatus',
36-
'GetActiveMappingSessionsForRobotRequest',
37-
'GetActiveMappingSessionsForRobotResponse',
38-
'GetMappingSessionMetadataByIDRequest',
39-
'GetMappingSessionMetadataByIDResponse',
40-
'GetMappingSessionPointCloudRequest',
41-
'GetMappingSessionPointCloudResponse',
42-
'ListMappingSessionsRequest',
43-
'ListMappingSessionsResponse',
44-
'MappingMetadata',
45-
'Module',
46-
'SensorInfo',
47-
'StartMappingSessionRequest',
48-
'StartMappingSessionResponse',
49-
'StopMappingSessionRequest',
50-
'StopMappingSessionResponse',
28+
"CloudSLAMServiceBase",
29+
"CloudSLAMServiceStub",
30+
"UnimplementedCloudSLAMServiceBase",
31+
"CaptureInterval",
32+
"EndStatus",
33+
"GetActiveMappingSessionsForRobotRequest",
34+
"GetActiveMappingSessionsForRobotResponse",
35+
"GetMappingSessionMetadataByIDRequest",
36+
"GetMappingSessionMetadataByIDResponse",
37+
"GetMappingSessionPointCloudRequest",
38+
"GetMappingSessionPointCloudResponse",
39+
"ListMappingSessionsRequest",
40+
"ListMappingSessionsResponse",
41+
"MappingMetadata",
42+
"Module",
43+
"SensorInfo",
44+
"StartMappingSessionRequest",
45+
"StartMappingSessionResponse",
46+
"StopMappingSessionRequest",
47+
"StopMappingSessionResponse",
5148
]

src/viam/proto/app/data/__init__.py

Lines changed: 63 additions & 66 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
1-
'''
1+
"""
22
@generated by Viam.
33
Do not edit manually!
4-
'''
5-
from ....gen.app.data.v1.data_grpc import (
6-
DataServiceBase,
7-
DataServiceStub,
8-
UnimplementedDataServiceBase
9-
)
4+
"""
5+
6+
from ....gen.app.data.v1.data_grpc import DataServiceBase, DataServiceStub, UnimplementedDataServiceBase
107
from ....gen.app.data.v1.data_pb2 import (
118
AddBinaryDataToDatasetByIDsRequest,
129
AddBinaryDataToDatasetByIDsResponse,
@@ -62,66 +59,66 @@
6259
TagsFilter,
6360
TagsFilterType,
6461
UpdateBoundingBoxRequest,
65-
UpdateBoundingBoxResponse
62+
UpdateBoundingBoxResponse,
6663
)
6764

6865
__all__ = [
69-
'DataServiceBase',
70-
'DataServiceStub',
71-
'UnimplementedDataServiceBase',
72-
'AddBinaryDataToDatasetByIDsRequest',
73-
'AddBinaryDataToDatasetByIDsResponse',
74-
'AddBoundingBoxToImageByIDRequest',
75-
'AddBoundingBoxToImageByIDResponse',
76-
'AddTagsToBinaryDataByFilterRequest',
77-
'AddTagsToBinaryDataByFilterResponse',
78-
'AddTagsToBinaryDataByIDsRequest',
79-
'AddTagsToBinaryDataByIDsResponse',
80-
'Annotations',
81-
'BinaryData',
82-
'BinaryDataByFilterRequest',
83-
'BinaryDataByFilterResponse',
84-
'BinaryDataByIDsRequest',
85-
'BinaryDataByIDsResponse',
86-
'BinaryID',
87-
'BinaryMetadata',
88-
'BoundingBox',
89-
'BoundingBoxLabelsByFilterRequest',
90-
'BoundingBoxLabelsByFilterResponse',
91-
'CaptureInterval',
92-
'CaptureMetadata',
93-
'ConfigureDatabaseUserRequest',
94-
'ConfigureDatabaseUserResponse',
95-
'DataRequest',
96-
'DeleteBinaryDataByFilterRequest',
97-
'DeleteBinaryDataByFilterResponse',
98-
'DeleteBinaryDataByIDsRequest',
99-
'DeleteBinaryDataByIDsResponse',
100-
'DeleteTabularDataRequest',
101-
'DeleteTabularDataResponse',
102-
'Filter',
103-
'GetDatabaseConnectionRequest',
104-
'GetDatabaseConnectionResponse',
105-
'Order',
106-
'RemoveBinaryDataFromDatasetByIDsRequest',
107-
'RemoveBinaryDataFromDatasetByIDsResponse',
108-
'RemoveBoundingBoxFromImageByIDRequest',
109-
'RemoveBoundingBoxFromImageByIDResponse',
110-
'RemoveTagsFromBinaryDataByFilterRequest',
111-
'RemoveTagsFromBinaryDataByFilterResponse',
112-
'RemoveTagsFromBinaryDataByIDsRequest',
113-
'RemoveTagsFromBinaryDataByIDsResponse',
114-
'TabularData',
115-
'TabularDataByFilterRequest',
116-
'TabularDataByFilterResponse',
117-
'TabularDataByMQLRequest',
118-
'TabularDataByMQLResponse',
119-
'TabularDataBySQLRequest',
120-
'TabularDataBySQLResponse',
121-
'TagsByFilterRequest',
122-
'TagsByFilterResponse',
123-
'TagsFilter',
124-
'TagsFilterType',
125-
'UpdateBoundingBoxRequest',
126-
'UpdateBoundingBoxResponse',
66+
"DataServiceBase",
67+
"DataServiceStub",
68+
"UnimplementedDataServiceBase",
69+
"AddBinaryDataToDatasetByIDsRequest",
70+
"AddBinaryDataToDatasetByIDsResponse",
71+
"AddBoundingBoxToImageByIDRequest",
72+
"AddBoundingBoxToImageByIDResponse",
73+
"AddTagsToBinaryDataByFilterRequest",
74+
"AddTagsToBinaryDataByFilterResponse",
75+
"AddTagsToBinaryDataByIDsRequest",
76+
"AddTagsToBinaryDataByIDsResponse",
77+
"Annotations",
78+
"BinaryData",
79+
"BinaryDataByFilterRequest",
80+
"BinaryDataByFilterResponse",
81+
"BinaryDataByIDsRequest",
82+
"BinaryDataByIDsResponse",
83+
"BinaryID",
84+
"BinaryMetadata",
85+
"BoundingBox",
86+
"BoundingBoxLabelsByFilterRequest",
87+
"BoundingBoxLabelsByFilterResponse",
88+
"CaptureInterval",
89+
"CaptureMetadata",
90+
"ConfigureDatabaseUserRequest",
91+
"ConfigureDatabaseUserResponse",
92+
"DataRequest",
93+
"DeleteBinaryDataByFilterRequest",
94+
"DeleteBinaryDataByFilterResponse",
95+
"DeleteBinaryDataByIDsRequest",
96+
"DeleteBinaryDataByIDsResponse",
97+
"DeleteTabularDataRequest",
98+
"DeleteTabularDataResponse",
99+
"Filter",
100+
"GetDatabaseConnectionRequest",
101+
"GetDatabaseConnectionResponse",
102+
"Order",
103+
"RemoveBinaryDataFromDatasetByIDsRequest",
104+
"RemoveBinaryDataFromDatasetByIDsResponse",
105+
"RemoveBoundingBoxFromImageByIDRequest",
106+
"RemoveBoundingBoxFromImageByIDResponse",
107+
"RemoveTagsFromBinaryDataByFilterRequest",
108+
"RemoveTagsFromBinaryDataByFilterResponse",
109+
"RemoveTagsFromBinaryDataByIDsRequest",
110+
"RemoveTagsFromBinaryDataByIDsResponse",
111+
"TabularData",
112+
"TabularDataByFilterRequest",
113+
"TabularDataByFilterResponse",
114+
"TabularDataByMQLRequest",
115+
"TabularDataByMQLResponse",
116+
"TabularDataBySQLRequest",
117+
"TabularDataBySQLResponse",
118+
"TagsByFilterRequest",
119+
"TagsByFilterResponse",
120+
"TagsFilter",
121+
"TagsFilterType",
122+
"UpdateBoundingBoxRequest",
123+
"UpdateBoundingBoxResponse",
127124
]
Lines changed: 19 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
1-
'''
1+
"""
22
@generated by Viam.
33
Do not edit manually!
4-
'''
5-
from ....gen.app.dataset.v1.dataset_grpc import (
6-
DatasetServiceBase,
7-
DatasetServiceStub,
8-
UnimplementedDatasetServiceBase
9-
)
4+
"""
5+
6+
from ....gen.app.dataset.v1.dataset_grpc import DatasetServiceBase, DatasetServiceStub, UnimplementedDatasetServiceBase
107
from ....gen.app.dataset.v1.dataset_pb2 import (
118
CreateDatasetRequest,
129
CreateDatasetResponse,
@@ -18,22 +15,22 @@
1815
ListDatasetsByOrganizationIDRequest,
1916
ListDatasetsByOrganizationIDResponse,
2017
RenameDatasetRequest,
21-
RenameDatasetResponse
18+
RenameDatasetResponse,
2219
)
2320

2421
__all__ = [
25-
'DatasetServiceBase',
26-
'DatasetServiceStub',
27-
'UnimplementedDatasetServiceBase',
28-
'CreateDatasetRequest',
29-
'CreateDatasetResponse',
30-
'Dataset',
31-
'DeleteDatasetRequest',
32-
'DeleteDatasetResponse',
33-
'ListDatasetsByIDsRequest',
34-
'ListDatasetsByIDsResponse',
35-
'ListDatasetsByOrganizationIDRequest',
36-
'ListDatasetsByOrganizationIDResponse',
37-
'RenameDatasetRequest',
38-
'RenameDatasetResponse',
22+
"DatasetServiceBase",
23+
"DatasetServiceStub",
24+
"UnimplementedDatasetServiceBase",
25+
"CreateDatasetRequest",
26+
"CreateDatasetResponse",
27+
"Dataset",
28+
"DeleteDatasetRequest",
29+
"DeleteDatasetResponse",
30+
"ListDatasetsByIDsRequest",
31+
"ListDatasetsByIDsResponse",
32+
"ListDatasetsByOrganizationIDRequest",
33+
"ListDatasetsByOrganizationIDResponse",
34+
"RenameDatasetRequest",
35+
"RenameDatasetResponse",
3936
]

0 commit comments

Comments
 (0)