chore(proto): regenerate hub stubs for StoreEntry.source (22)
Signed-off-by: flemming-it <stefan.a.flemming@googlemail.com>
This commit is contained in:
parent
9fea05df76
commit
0d2e939867
2 changed files with 18 additions and 1 deletions
|
|
@ -3988,6 +3988,7 @@ class StoreEntry extends $pb.GeneratedMessage {
|
|||
$core.String? kind,
|
||||
$core.String? provider,
|
||||
$core.String? sourceKind,
|
||||
$core.String? source,
|
||||
}) {
|
||||
final result = create();
|
||||
if (name != null) result.name = name;
|
||||
|
|
@ -4013,6 +4014,7 @@ class StoreEntry extends $pb.GeneratedMessage {
|
|||
if (kind != null) result.kind = kind;
|
||||
if (provider != null) result.provider = provider;
|
||||
if (sourceKind != null) result.sourceKind = sourceKind;
|
||||
if (source != null) result.source = source;
|
||||
return result;
|
||||
}
|
||||
|
||||
|
|
@ -4050,6 +4052,7 @@ class StoreEntry extends $pb.GeneratedMessage {
|
|||
..aOS(19, _omitFieldNames ? '' : 'kind')
|
||||
..aOS(20, _omitFieldNames ? '' : 'provider')
|
||||
..aOS(21, _omitFieldNames ? '' : 'sourceKind')
|
||||
..aOS(22, _omitFieldNames ? '' : 'source')
|
||||
..hasRequiredFields = false;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
|
|
@ -4271,6 +4274,19 @@ class StoreEntry extends $pb.GeneratedMessage {
|
|||
$core.bool hasSourceKind() => $_has(20);
|
||||
@$pb.TagNumber(21)
|
||||
void clearSourceKind() => $_clearField(21);
|
||||
|
||||
/// Name of the store this entry was loaded from: "bundled" for the
|
||||
/// built-in seed, otherwise the operator-added store's name. Distinct
|
||||
/// from source_kind (the transport) — this is the ORIGIN store. Studio
|
||||
/// groups modules by it and shows a "from <store>" label.
|
||||
@$pb.TagNumber(22)
|
||||
$core.String get source => $_getSZ(21);
|
||||
@$pb.TagNumber(22)
|
||||
set source($core.String value) => $_setString(21, value);
|
||||
@$pb.TagNumber(22)
|
||||
$core.bool hasSource() => $_has(21);
|
||||
@$pb.TagNumber(22)
|
||||
void clearSource() => $_clearField(22);
|
||||
}
|
||||
|
||||
class ChannelStatusResponse extends $pb.GeneratedMessage {
|
||||
|
|
|
|||
|
|
@ -1077,6 +1077,7 @@ const StoreEntry$json = {
|
|||
{'1': 'kind', '3': 19, '4': 1, '5': 9, '10': 'kind'},
|
||||
{'1': 'provider', '3': 20, '4': 1, '5': 9, '10': 'provider'},
|
||||
{'1': 'source_kind', '3': 21, '4': 1, '5': 9, '10': 'sourceKind'},
|
||||
{'1': 'source', '3': 22, '4': 1, '5': 9, '10': 'source'},
|
||||
],
|
||||
};
|
||||
|
||||
|
|
@ -1094,7 +1095,7 @@ final $typed_data.Uint8List storeEntryDescriptor = $convert.base64Decode(
|
|||
'9uX3VybBgQIAEoCVIHaWNvblVybBInCg9zY3JlZW5zaG90X3VybHMYESADKAlSDnNjcmVlbnNo'
|
||||
'b3RVcmxzEhkKCGRvY3NfdXJsGBIgASgJUgdkb2NzVXJsEhIKBGtpbmQYEyABKAlSBGtpbmQSGg'
|
||||
'oIcHJvdmlkZXIYFCABKAlSCHByb3ZpZGVyEh8KC3NvdXJjZV9raW5kGBUgASgJUgpzb3VyY2VL'
|
||||
'aW5k');
|
||||
'aW5kEhYKBnNvdXJjZRgWIAEoCVIGc291cmNl');
|
||||
|
||||
@$core.Deprecated('Use channelStatusResponseDescriptor instead')
|
||||
const ChannelStatusResponse$json = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue