Skip to content

Commit

Permalink
[WORKFLOW] Updating protos from viamrobotics/api, commit: 87eaef661df…
Browse files Browse the repository at this point in the history
…7907b7be14ac345d057062222474b (#320)

Co-authored-by: viambot <[email protected]>
  • Loading branch information
github-actions[bot] and viambot authored Jan 3, 2025
1 parent 5eda81a commit 6e5830c
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
15 changes: 15 additions & 0 deletions lib/src/gen/app/v1/app.pb.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11004,6 +11004,7 @@ class Model extends $pb.GeneratedMessage {
$core.String? api,
$core.String? model,
$core.String? markdownDocumentation,
$core.String? description,
}) {
final $result = create();
if (api != null) {
Expand All @@ -11015,6 +11016,9 @@ class Model extends $pb.GeneratedMessage {
if (markdownDocumentation != null) {
$result.markdownDocumentation = markdownDocumentation;
}
if (description != null) {
$result.description = description;
}
return $result;
}
Model._() : super();
Expand All @@ -11025,6 +11029,7 @@ class Model extends $pb.GeneratedMessage {
..aOS(1, _omitFieldNames ? '' : 'api')
..aOS(2, _omitFieldNames ? '' : 'model')
..aOS(3, _omitFieldNames ? '' : 'markdownDocumentation')
..aOS(4, _omitFieldNames ? '' : 'description')
..hasRequiredFields = false
;

Expand Down Expand Up @@ -11078,6 +11083,16 @@ class Model extends $pb.GeneratedMessage {
$core.bool hasMarkdownDocumentation() => $_has(2);
@$pb.TagNumber(3)
void clearMarkdownDocumentation() => clearField(3);

/// A short description of the model that explains its purpose
@$pb.TagNumber(4)
$core.String get description => $_getSZ(3);
@$pb.TagNumber(4)
set description($core.String v) { $_setString(3, v); }
@$pb.TagNumber(4)
$core.bool hasDescription() => $_has(3);
@$pb.TagNumber(4)
void clearDescription() => clearField(4);
}

class ModuleFileInfo extends $pb.GeneratedMessage {
Expand Down
7 changes: 5 additions & 2 deletions lib/src/gen/app/v1/app.pbjson.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2729,17 +2729,20 @@ const Model$json = {
{'1': 'api', '3': 1, '4': 1, '5': 9, '10': 'api'},
{'1': 'model', '3': 2, '4': 1, '5': 9, '10': 'model'},
{'1': 'markdown_documentation', '3': 3, '4': 1, '5': 9, '9': 0, '10': 'markdownDocumentation', '17': true},
{'1': 'description', '3': 4, '4': 1, '5': 9, '9': 1, '10': 'description', '17': true},
],
'8': [
{'1': '_markdown_documentation'},
{'1': '_description'},
],
};

/// Descriptor for `Model`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List modelDescriptor = $convert.base64Decode(
'CgVNb2RlbBIQCgNhcGkYASABKAlSA2FwaRIUCgVtb2RlbBgCIAEoCVIFbW9kZWwSOgoWbWFya2'
'Rvd25fZG9jdW1lbnRhdGlvbhgDIAEoCUgAUhVtYXJrZG93bkRvY3VtZW50YXRpb26IAQFCGQoX'
'X21hcmtkb3duX2RvY3VtZW50YXRpb24=');
'Rvd25fZG9jdW1lbnRhdGlvbhgDIAEoCUgAUhVtYXJrZG93bkRvY3VtZW50YXRpb26IAQESJQoL'
'ZGVzY3JpcHRpb24YBCABKAlIAVILZGVzY3JpcHRpb26IAQFCGQoXX21hcmtkb3duX2RvY3VtZW'
'50YXRpb25CDgoMX2Rlc2NyaXB0aW9u');

@$core.Deprecated('Use moduleFileInfoDescriptor instead')
const ModuleFileInfo$json = {
Expand Down
2 changes: 1 addition & 1 deletion lib/src/utils.dart
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ extension GetReadingsResponseUtils on GetReadingsResponse {

String getVersionMetadata() {
const String sdkVersion = 'v0.0.31';
const String apiTag = 'v0.1.377';
const String apiTag = 'v0.1.378';

return 'flutter;$sdkVersion;$apiTag';
}

0 comments on commit 6e5830c

Please sign in to comment.