Skip to content

Commit

Permalink
[WORKFLOW] Updating protos from viamrobotics/api, commit: b4e63186486…
Browse files Browse the repository at this point in the history
…4758702d4a832c7adaebafff326c9
  • Loading branch information
viambot authored Oct 31, 2023
1 parent 6f22cd6 commit 03c6d16
Show file tree
Hide file tree
Showing 9 changed files with 642 additions and 11 deletions.
84 changes: 84 additions & 0 deletions lib/src/gen/app/mltraining/v1/ml_training.pb.dart
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ class SubmitTrainingJobRequest extends $pb.GeneratedMessage {
..aOS(4, _omitFieldNames ? '' : 'modelVersion')
..e<ModelType>(5, _omitFieldNames ? '' : 'modelType', $pb.PbFieldType.OE, defaultOrMaker: ModelType.MODEL_TYPE_UNSPECIFIED, valueOf: ModelType.valueOf, enumValues: ModelType.values)
..pPS(6, _omitFieldNames ? '' : 'tags')
..aOS(7, _omitFieldNames ? '' : 'datasetId')
..hasRequiredFields = false
;

Expand Down Expand Up @@ -106,6 +107,15 @@ class SubmitTrainingJobRequest extends $pb.GeneratedMessage {

@$pb.TagNumber(6)
$core.List<$core.String> get tags => $_getList(5);

@$pb.TagNumber(7)
$core.String get datasetId => $_getSZ(6);
@$pb.TagNumber(7)
set datasetId($core.String v) { $_setString(6, v); }
@$pb.TagNumber(7)
$core.bool hasDatasetId() => $_has(6);
@$pb.TagNumber(7)
void clearDatasetId() => clearField(7);
}

class SubmitTrainingJobResponse extends $pb.GeneratedMessage {
Expand Down Expand Up @@ -508,6 +518,80 @@ class CancelTrainingJobResponse extends $pb.GeneratedMessage {
static CancelTrainingJobResponse? _defaultInstance;
}

class DeleteCompletedTrainingJobRequest extends $pb.GeneratedMessage {
factory DeleteCompletedTrainingJobRequest() => create();
DeleteCompletedTrainingJobRequest._() : super();
factory DeleteCompletedTrainingJobRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory DeleteCompletedTrainingJobRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);

static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteCompletedTrainingJobRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'viam.app.mltraining.v1'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'id')
..hasRequiredFields = false
;

@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
DeleteCompletedTrainingJobRequest clone() => DeleteCompletedTrainingJobRequest()..mergeFromMessage(this);
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
DeleteCompletedTrainingJobRequest copyWith(void Function(DeleteCompletedTrainingJobRequest) updates) => super.copyWith((message) => updates(message as DeleteCompletedTrainingJobRequest)) as DeleteCompletedTrainingJobRequest;

$pb.BuilderInfo get info_ => _i;

@$core.pragma('dart2js:noInline')
static DeleteCompletedTrainingJobRequest create() => DeleteCompletedTrainingJobRequest._();
DeleteCompletedTrainingJobRequest createEmptyInstance() => create();
static $pb.PbList<DeleteCompletedTrainingJobRequest> createRepeated() => $pb.PbList<DeleteCompletedTrainingJobRequest>();
@$core.pragma('dart2js:noInline')
static DeleteCompletedTrainingJobRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeleteCompletedTrainingJobRequest>(create);
static DeleteCompletedTrainingJobRequest? _defaultInstance;

@$pb.TagNumber(1)
$core.String get id => $_getSZ(0);
@$pb.TagNumber(1)
set id($core.String v) { $_setString(0, v); }
@$pb.TagNumber(1)
$core.bool hasId() => $_has(0);
@$pb.TagNumber(1)
void clearId() => clearField(1);
}

class DeleteCompletedTrainingJobResponse extends $pb.GeneratedMessage {
factory DeleteCompletedTrainingJobResponse() => create();
DeleteCompletedTrainingJobResponse._() : super();
factory DeleteCompletedTrainingJobResponse.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory DeleteCompletedTrainingJobResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);

static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteCompletedTrainingJobResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'viam.app.mltraining.v1'), createEmptyInstance: create)
..hasRequiredFields = false
;

@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
DeleteCompletedTrainingJobResponse clone() => DeleteCompletedTrainingJobResponse()..mergeFromMessage(this);
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
DeleteCompletedTrainingJobResponse copyWith(void Function(DeleteCompletedTrainingJobResponse) updates) => super.copyWith((message) => updates(message as DeleteCompletedTrainingJobResponse)) as DeleteCompletedTrainingJobResponse;

$pb.BuilderInfo get info_ => _i;

@$core.pragma('dart2js:noInline')
static DeleteCompletedTrainingJobResponse create() => DeleteCompletedTrainingJobResponse._();
DeleteCompletedTrainingJobResponse createEmptyInstance() => create();
static $pb.PbList<DeleteCompletedTrainingJobResponse> createRepeated() => $pb.PbList<DeleteCompletedTrainingJobResponse>();
@$core.pragma('dart2js:noInline')
static DeleteCompletedTrainingJobResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeleteCompletedTrainingJobResponse>(create);
static DeleteCompletedTrainingJobResponse? _defaultInstance;
}


const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
20 changes: 20 additions & 0 deletions lib/src/gen/app/mltraining/v1/ml_training.pbgrpc.dart
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ class MLTrainingServiceClient extends $grpc.Client {
'/viam.app.mltraining.v1.MLTrainingService/CancelTrainingJob',
($1.CancelTrainingJobRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $1.CancelTrainingJobResponse.fromBuffer(value));
static final _$deleteCompletedTrainingJob = $grpc.ClientMethod<$1.DeleteCompletedTrainingJobRequest, $1.DeleteCompletedTrainingJobResponse>(
'/viam.app.mltraining.v1.MLTrainingService/DeleteCompletedTrainingJob',
($1.DeleteCompletedTrainingJobRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $1.DeleteCompletedTrainingJobResponse.fromBuffer(value));

MLTrainingServiceClient($grpc.ClientChannel channel,
{$grpc.CallOptions? options,
Expand All @@ -59,6 +63,10 @@ class MLTrainingServiceClient extends $grpc.Client {
$grpc.ResponseFuture<$1.CancelTrainingJobResponse> cancelTrainingJob($1.CancelTrainingJobRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$cancelTrainingJob, request, options: options);
}

$grpc.ResponseFuture<$1.DeleteCompletedTrainingJobResponse> deleteCompletedTrainingJob($1.DeleteCompletedTrainingJobRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$deleteCompletedTrainingJob, request, options: options);
}
}

@$pb.GrpcServiceName('viam.app.mltraining.v1.MLTrainingService')
Expand Down Expand Up @@ -94,6 +102,13 @@ abstract class MLTrainingServiceBase extends $grpc.Service {
false,
($core.List<$core.int> value) => $1.CancelTrainingJobRequest.fromBuffer(value),
($1.CancelTrainingJobResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$1.DeleteCompletedTrainingJobRequest, $1.DeleteCompletedTrainingJobResponse>(
'DeleteCompletedTrainingJob',
deleteCompletedTrainingJob_Pre,
false,
false,
($core.List<$core.int> value) => $1.DeleteCompletedTrainingJobRequest.fromBuffer(value),
($1.DeleteCompletedTrainingJobResponse value) => value.writeToBuffer()));
}

$async.Future<$1.SubmitTrainingJobResponse> submitTrainingJob_Pre($grpc.ServiceCall call, $async.Future<$1.SubmitTrainingJobRequest> request) async {
Expand All @@ -112,8 +127,13 @@ abstract class MLTrainingServiceBase extends $grpc.Service {
return cancelTrainingJob(call, await request);
}

$async.Future<$1.DeleteCompletedTrainingJobResponse> deleteCompletedTrainingJob_Pre($grpc.ServiceCall call, $async.Future<$1.DeleteCompletedTrainingJobRequest> request) async {
return deleteCompletedTrainingJob(call, await request);
}

$async.Future<$1.SubmitTrainingJobResponse> submitTrainingJob($grpc.ServiceCall call, $1.SubmitTrainingJobRequest request);
$async.Future<$1.GetTrainingJobResponse> getTrainingJob($grpc.ServiceCall call, $1.GetTrainingJobRequest request);
$async.Future<$1.ListTrainingJobsResponse> listTrainingJobs($grpc.ServiceCall call, $1.ListTrainingJobsRequest request);
$async.Future<$1.CancelTrainingJobResponse> cancelTrainingJob($grpc.ServiceCall call, $1.CancelTrainingJobRequest request);
$async.Future<$1.DeleteCompletedTrainingJobResponse> deleteCompletedTrainingJob($grpc.ServiceCall call, $1.DeleteCompletedTrainingJobRequest request);
}
39 changes: 31 additions & 8 deletions lib/src/gen/app/mltraining/v1/ml_training.pbjson.dart
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ const SubmitTrainingJobRequest$json = {
'1': 'SubmitTrainingJobRequest',
'2': [
{'1': 'filter', '3': 1, '4': 1, '5': 11, '6': '.viam.app.data.v1.Filter', '8': {}, '10': 'filter'},
{'1': 'dataset_id', '3': 7, '4': 1, '5': 9, '8': {}, '10': 'datasetId'},
{'1': 'organization_id', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'organizationId'},
{'1': 'model_name', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'modelName'},
{'1': 'model_version', '3': 4, '4': 1, '5': 9, '8': {}, '10': 'modelVersion'},
Expand All @@ -69,14 +70,15 @@ const SubmitTrainingJobRequest$json = {
final $typed_data.Uint8List submitTrainingJobRequestDescriptor = $convert.base64Decode(
'ChhTdWJtaXRUcmFpbmluZ0pvYlJlcXVlc3QSUgoGZmlsdGVyGAEgASgLMhgudmlhbS5hcHAuZG'
'F0YS52MS5GaWx0ZXJCIJqEngMbYnNvbjoiZmlsdGVyIiBqc29uOiJmaWx0ZXIiUgZmaWx0ZXIS'
'WwoPb3JnYW5pemF0aW9uX2lkGAIgASgJQjKahJ4DLWJzb246Im9yZ2FuaXphdGlvbl9pZCIgan'
'Nvbjoib3JnYW5pemF0aW9uX2lkIlIOb3JnYW5pemF0aW9uSWQSRwoKbW9kZWxfbmFtZRgDIAEo'
'CUIomoSeAyNic29uOiJtb2RlbF9uYW1lIiBqc29uOiJtb2RlbF9uYW1lIlIJbW9kZWxOYW1lEl'
'MKDW1vZGVsX3ZlcnNpb24YBCABKAlCLpqEngMpYnNvbjoibW9kZWxfdmVyc2lvbiIganNvbjoi'
'bW9kZWxfdmVyc2lvbiJSDG1vZGVsVmVyc2lvbhJqCgptb2RlbF90eXBlGAUgASgOMiEudmlhbS'
'5hcHAubWx0cmFpbmluZy52MS5Nb2RlbFR5cGVCKJqEngMjYnNvbjoibW9kZWxfdHlwZSIganNv'
'bjoibW9kZWxfdHlwZSJSCW1vZGVsVHlwZRIwCgR0YWdzGAYgAygJQhyahJ4DF2Jzb246InRhZ3'
'MiIGpzb246InRhZ3MiUgR0YWdz');
'RwoKZGF0YXNldF9pZBgHIAEoCUIomoSeAyNic29uOiJkYXRhc2V0X2lkIiBqc29uOiJkYXRhc2'
'V0X2lkIlIJZGF0YXNldElkElsKD29yZ2FuaXphdGlvbl9pZBgCIAEoCUIymoSeAy1ic29uOiJv'
'cmdhbml6YXRpb25faWQiIGpzb246Im9yZ2FuaXphdGlvbl9pZCJSDm9yZ2FuaXphdGlvbklkEk'
'cKCm1vZGVsX25hbWUYAyABKAlCKJqEngMjYnNvbjoibW9kZWxfbmFtZSIganNvbjoibW9kZWxf'
'bmFtZSJSCW1vZGVsTmFtZRJTCg1tb2RlbF92ZXJzaW9uGAQgASgJQi6ahJ4DKWJzb246Im1vZG'
'VsX3ZlcnNpb24iIGpzb246Im1vZGVsX3ZlcnNpb24iUgxtb2RlbFZlcnNpb24SagoKbW9kZWxf'
'dHlwZRgFIAEoDjIhLnZpYW0uYXBwLm1sdHJhaW5pbmcudjEuTW9kZWxUeXBlQiiahJ4DI2Jzb2'
'46Im1vZGVsX3R5cGUiIGpzb246Im1vZGVsX3R5cGUiUgltb2RlbFR5cGUSMAoEdGFncxgGIAMo'
'CUIcmoSeAxdic29uOiJ0YWdzIiBqc29uOiJ0YWdzIlIEdGFncw==');

@$core.Deprecated('Use submitTrainingJobResponseDescriptor instead')
const SubmitTrainingJobResponse$json = {
Expand Down Expand Up @@ -198,3 +200,24 @@ const CancelTrainingJobResponse$json = {
final $typed_data.Uint8List cancelTrainingJobResponseDescriptor = $convert.base64Decode(
'ChlDYW5jZWxUcmFpbmluZ0pvYlJlc3BvbnNl');

@$core.Deprecated('Use deleteCompletedTrainingJobRequestDescriptor instead')
const DeleteCompletedTrainingJobRequest$json = {
'1': 'DeleteCompletedTrainingJobRequest',
'2': [
{'1': 'id', '3': 1, '4': 1, '5': 9, '10': 'id'},
],
};

/// Descriptor for `DeleteCompletedTrainingJobRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List deleteCompletedTrainingJobRequestDescriptor = $convert.base64Decode(
'CiFEZWxldGVDb21wbGV0ZWRUcmFpbmluZ0pvYlJlcXVlc3QSDgoCaWQYASABKAlSAmlk');

@$core.Deprecated('Use deleteCompletedTrainingJobResponseDescriptor instead')
const DeleteCompletedTrainingJobResponse$json = {
'1': 'DeleteCompletedTrainingJobResponse',
};

/// Descriptor for `DeleteCompletedTrainingJobResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List deleteCompletedTrainingJobResponseDescriptor = $convert.base64Decode(
'CiJEZWxldGVDb21wbGV0ZWRUcmFpbmluZ0pvYlJlc3BvbnNl');

66 changes: 66 additions & 0 deletions lib/src/gen/app/v1/robot.pb.dart
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,48 @@ class LocationSecret extends $pb.GeneratedMessage {
void clearSecret() => clearField(2);
}

class AppValidationStatus extends $pb.GeneratedMessage {
factory AppValidationStatus() => create();
AppValidationStatus._() : super();
factory AppValidationStatus.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory AppValidationStatus.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);

static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppValidationStatus', package: const $pb.PackageName(_omitMessageNames ? '' : 'viam.app.v1'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'error')
..hasRequiredFields = false
;

@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
AppValidationStatus clone() => AppValidationStatus()..mergeFromMessage(this);
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
AppValidationStatus copyWith(void Function(AppValidationStatus) updates) => super.copyWith((message) => updates(message as AppValidationStatus)) as AppValidationStatus;

$pb.BuilderInfo get info_ => _i;

@$core.pragma('dart2js:noInline')
static AppValidationStatus create() => AppValidationStatus._();
AppValidationStatus createEmptyInstance() => create();
static $pb.PbList<AppValidationStatus> createRepeated() => $pb.PbList<AppValidationStatus>();
@$core.pragma('dart2js:noInline')
static AppValidationStatus getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppValidationStatus>(create);
static AppValidationStatus? _defaultInstance;

@$pb.TagNumber(1)
$core.String get error => $_getSZ(0);
@$pb.TagNumber(1)
set error($core.String v) { $_setString(0, v); }
@$pb.TagNumber(1)
$core.bool hasError() => $_has(0);
@$pb.TagNumber(1)
void clearError() => clearField(1);
}

class CloudConfig extends $pb.GeneratedMessage {
factory CloudConfig() => create();
CloudConfig._() : super();
Expand Down Expand Up @@ -2383,6 +2425,7 @@ class ModuleConfig extends $pb.GeneratedMessage {
..aOS(4, _omitFieldNames ? '' : 'type')
..aOS(5, _omitFieldNames ? '' : 'moduleId')
..m<$core.String, $core.String>(6, _omitFieldNames ? '' : 'env', entryClassName: 'ModuleConfig.EnvEntry', keyFieldType: $pb.PbFieldType.OS, valueFieldType: $pb.PbFieldType.OS, packageName: const $pb.PackageName('viam.app.v1'))
..aOM<AppValidationStatus>(7, _omitFieldNames ? '' : 'status', subBuilder: AppValidationStatus.create)
..hasRequiredFields = false
;

Expand Down Expand Up @@ -2454,6 +2497,17 @@ class ModuleConfig extends $pb.GeneratedMessage {

@$pb.TagNumber(6)
$core.Map<$core.String, $core.String> get env => $_getMap(5);

@$pb.TagNumber(7)
AppValidationStatus get status => $_getN(6);
@$pb.TagNumber(7)
set status(AppValidationStatus v) { setField(7, v); }
@$pb.TagNumber(7)
$core.bool hasStatus() => $_has(6);
@$pb.TagNumber(7)
void clearStatus() => clearField(7);
@$pb.TagNumber(7)
AppValidationStatus ensureStatus() => $_ensure(6);
}

class PackageConfig extends $pb.GeneratedMessage {
Expand All @@ -2467,6 +2521,7 @@ class PackageConfig extends $pb.GeneratedMessage {
..aOS(2, _omitFieldNames ? '' : 'package')
..aOS(3, _omitFieldNames ? '' : 'version')
..aOS(4, _omitFieldNames ? '' : 'type')
..aOM<AppValidationStatus>(7, _omitFieldNames ? '' : 'status', subBuilder: AppValidationStatus.create)
..hasRequiredFields = false
;

Expand Down Expand Up @@ -2526,6 +2581,17 @@ class PackageConfig extends $pb.GeneratedMessage {
$core.bool hasType() => $_has(3);
@$pb.TagNumber(4)
void clearType() => clearField(4);

@$pb.TagNumber(7)
AppValidationStatus get status => $_getN(4);
@$pb.TagNumber(7)
set status(AppValidationStatus v) { setField(7, v); }
@$pb.TagNumber(7)
$core.bool hasStatus() => $_has(4);
@$pb.TagNumber(7)
void clearStatus() => clearField(7);
@$pb.TagNumber(7)
AppValidationStatus ensureStatus() => $_ensure(4);
}


Expand Down
22 changes: 19 additions & 3 deletions lib/src/gen/app/v1/robot.pbjson.dart
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,18 @@ final $typed_data.Uint8List locationSecretDescriptor = $convert.base64Decode(
'Cg5Mb2NhdGlvblNlY3JldBIOCgJpZBgBIAEoCVICaWQSFgoGc2VjcmV0GAIgASgJUgZzZWNyZX'
'Q=');

@$core.Deprecated('Use appValidationStatusDescriptor instead')
const AppValidationStatus$json = {
'1': 'AppValidationStatus',
'2': [
{'1': 'error', '3': 1, '4': 1, '5': 9, '10': 'error'},
],
};

/// Descriptor for `AppValidationStatus`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appValidationStatusDescriptor = $convert.base64Decode(
'ChNBcHBWYWxpZGF0aW9uU3RhdHVzEhQKBWVycm9yGAEgASgJUgVlcnJvcg==');

@$core.Deprecated('Use cloudConfigDescriptor instead')
const CloudConfig$json = {
'1': 'CloudConfig',
Expand Down Expand Up @@ -641,6 +653,7 @@ const ModuleConfig$json = {
{'1': 'type', '3': 4, '4': 1, '5': 9, '10': 'type'},
{'1': 'module_id', '3': 5, '4': 1, '5': 9, '10': 'moduleId'},
{'1': 'env', '3': 6, '4': 3, '5': 11, '6': '.viam.app.v1.ModuleConfig.EnvEntry', '10': 'env'},
{'1': 'status', '3': 7, '4': 1, '5': 11, '6': '.viam.app.v1.AppValidationStatus', '10': 'status'},
],
'3': [ModuleConfig_EnvEntry$json],
};
Expand All @@ -660,8 +673,9 @@ final $typed_data.Uint8List moduleConfigDescriptor = $convert.base64Decode(
'CgxNb2R1bGVDb25maWcSEgoEbmFtZRgBIAEoCVIEbmFtZRISCgRwYXRoGAIgASgJUgRwYXRoEh'
'sKCWxvZ19sZXZlbBgDIAEoCVIIbG9nTGV2ZWwSEgoEdHlwZRgEIAEoCVIEdHlwZRIbCgltb2R1'
'bGVfaWQYBSABKAlSCG1vZHVsZUlkEjQKA2VudhgGIAMoCzIiLnZpYW0uYXBwLnYxLk1vZHVsZU'
'NvbmZpZy5FbnZFbnRyeVIDZW52GjYKCEVudkVudHJ5EhAKA2tleRgBIAEoCVIDa2V5EhQKBXZh'
'bHVlGAIgASgJUgV2YWx1ZToCOAE=');
'NvbmZpZy5FbnZFbnRyeVIDZW52EjgKBnN0YXR1cxgHIAEoCzIgLnZpYW0uYXBwLnYxLkFwcFZh'
'bGlkYXRpb25TdGF0dXNSBnN0YXR1cxo2CghFbnZFbnRyeRIQCgNrZXkYASABKAlSA2tleRIUCg'
'V2YWx1ZRgCIAEoCVIFdmFsdWU6AjgB');

@$core.Deprecated('Use packageConfigDescriptor instead')
const PackageConfig$json = {
Expand All @@ -671,11 +685,13 @@ const PackageConfig$json = {
{'1': 'package', '3': 2, '4': 1, '5': 9, '10': 'package'},
{'1': 'version', '3': 3, '4': 1, '5': 9, '10': 'version'},
{'1': 'type', '3': 4, '4': 1, '5': 9, '10': 'type'},
{'1': 'status', '3': 7, '4': 1, '5': 11, '6': '.viam.app.v1.AppValidationStatus', '10': 'status'},
],
};

/// Descriptor for `PackageConfig`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List packageConfigDescriptor = $convert.base64Decode(
'Cg1QYWNrYWdlQ29uZmlnEhIKBG5hbWUYASABKAlSBG5hbWUSGAoHcGFja2FnZRgCIAEoCVIHcG'
'Fja2FnZRIYCgd2ZXJzaW9uGAMgASgJUgd2ZXJzaW9uEhIKBHR5cGUYBCABKAlSBHR5cGU=');
'Fja2FnZRIYCgd2ZXJzaW9uGAMgASgJUgd2ZXJzaW9uEhIKBHR5cGUYBCABKAlSBHR5cGUSOAoG'
'c3RhdHVzGAcgASgLMiAudmlhbS5hcHAudjEuQXBwVmFsaWRhdGlvblN0YXR1c1IGc3RhdHVz');

Loading

0 comments on commit 03c6d16

Please # to comment.