Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Automated Protos Update #301

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions lib/src/gen/app/data/v1/data.pb.dart
Original file line number Diff line number Diff line change
Expand Up @@ -1162,6 +1162,7 @@ class GetLatestTabularDataRequest extends $pb.GeneratedMessage {
$core.String? partId,
$core.String? resourceName,
$core.String? methodName,
$core.String? resourceSubtype,
}) {
final $result = create();
if (partId != null) {
Expand All @@ -1173,6 +1174,9 @@ class GetLatestTabularDataRequest extends $pb.GeneratedMessage {
if (methodName != null) {
$result.methodName = methodName;
}
if (resourceSubtype != null) {
$result.resourceSubtype = resourceSubtype;
}
return $result;
}
GetLatestTabularDataRequest._() : super();
Expand All @@ -1183,6 +1187,7 @@ class GetLatestTabularDataRequest extends $pb.GeneratedMessage {
..aOS(1, _omitFieldNames ? '' : 'partId')
..aOS(2, _omitFieldNames ? '' : 'resourceName')
..aOS(3, _omitFieldNames ? '' : 'methodName')
..aOS(4, _omitFieldNames ? '' : 'resourceSubtype')
..hasRequiredFields = false
;

Expand Down Expand Up @@ -1233,6 +1238,15 @@ class GetLatestTabularDataRequest extends $pb.GeneratedMessage {
$core.bool hasMethodName() => $_has(2);
@$pb.TagNumber(3)
void clearMethodName() => clearField(3);

@$pb.TagNumber(4)
$core.String get resourceSubtype => $_getSZ(3);
@$pb.TagNumber(4)
set resourceSubtype($core.String v) { $_setString(3, v); }
@$pb.TagNumber(4)
$core.bool hasResourceSubtype() => $_has(3);
@$pb.TagNumber(4)
void clearResourceSubtype() => clearField(4);
}

/// GetLatestTabularDataResponse provides the data, time synced, and time captured of the most recent tabular data captured
Expand Down
4 changes: 3 additions & 1 deletion lib/src/gen/app/data/v1/data.pbjson.dart
Original file line number Diff line number Diff line change
Expand Up @@ -308,14 +308,16 @@ const GetLatestTabularDataRequest$json = {
{'1': 'part_id', '3': 1, '4': 1, '5': 9, '10': 'partId'},
{'1': 'resource_name', '3': 2, '4': 1, '5': 9, '10': 'resourceName'},
{'1': 'method_name', '3': 3, '4': 1, '5': 9, '10': 'methodName'},
{'1': 'resource_subtype', '3': 4, '4': 1, '5': 9, '10': 'resourceSubtype'},
],
};

/// Descriptor for `GetLatestTabularDataRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List getLatestTabularDataRequestDescriptor = $convert.base64Decode(
'ChtHZXRMYXRlc3RUYWJ1bGFyRGF0YVJlcXVlc3QSFwoHcGFydF9pZBgBIAEoCVIGcGFydElkEi'
'MKDXJlc291cmNlX25hbWUYAiABKAlSDHJlc291cmNlTmFtZRIfCgttZXRob2RfbmFtZRgDIAEo'
'CVIKbWV0aG9kTmFtZQ==');
'CVIKbWV0aG9kTmFtZRIpChByZXNvdXJjZV9zdWJ0eXBlGAQgASgJUg9yZXNvdXJjZVN1YnR5cG'
'U=');

@$core.Deprecated('Use getLatestTabularDataResponseDescriptor instead')
const GetLatestTabularDataResponse$json = {
Expand Down
1,080 changes: 1,080 additions & 0 deletions lib/src/gen/app/v1/app.pb.dart

Large diffs are not rendered by default.

78 changes: 78 additions & 0 deletions lib/src/gen/app/v1/app.pbenum.dart
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,84 @@ class Visibility extends $pb.ProtobufEnum {
const Visibility._($core.int v, $core.String n) : super(v, n);
}

class ClientAuthentication extends $pb.ProtobufEnum {
static const ClientAuthentication CLIENT_AUTHENTICATION_UNSPECIFIED = ClientAuthentication._(0, _omitEnumNames ? '' : 'CLIENT_AUTHENTICATION_UNSPECIFIED');
static const ClientAuthentication CLIENT_AUTHENTICATION_REQUIRED = ClientAuthentication._(1, _omitEnumNames ? '' : 'CLIENT_AUTHENTICATION_REQUIRED');
static const ClientAuthentication CLIENT_AUTHENTICATION_NOT_REQUIRED = ClientAuthentication._(2, _omitEnumNames ? '' : 'CLIENT_AUTHENTICATION_NOT_REQUIRED');
static const ClientAuthentication CLIENT_AUTHENTICATION_NOT_REQUIRED_WHEN_USING_PKCE = ClientAuthentication._(3, _omitEnumNames ? '' : 'CLIENT_AUTHENTICATION_NOT_REQUIRED_WHEN_USING_PKCE');

static const $core.List<ClientAuthentication> values = <ClientAuthentication> [
CLIENT_AUTHENTICATION_UNSPECIFIED,
CLIENT_AUTHENTICATION_REQUIRED,
CLIENT_AUTHENTICATION_NOT_REQUIRED,
CLIENT_AUTHENTICATION_NOT_REQUIRED_WHEN_USING_PKCE,
];

static final $core.Map<$core.int, ClientAuthentication> _byValue = $pb.ProtobufEnum.initByValue(values);
static ClientAuthentication? valueOf($core.int value) => _byValue[value];

const ClientAuthentication._($core.int v, $core.String n) : super(v, n);
}

class PKCE extends $pb.ProtobufEnum {
static const PKCE PKCE_UNSPECIFIED = PKCE._(0, _omitEnumNames ? '' : 'PKCE_UNSPECIFIED');
static const PKCE PKCE_REQUIRED = PKCE._(1, _omitEnumNames ? '' : 'PKCE_REQUIRED');
static const PKCE PKCE_NOT_REQUIRED = PKCE._(2, _omitEnumNames ? '' : 'PKCE_NOT_REQUIRED');
static const PKCE PKCE_NOT_REQUIRED_WHEN_USING_CLIENT_AUTHENTICATION = PKCE._(3, _omitEnumNames ? '' : 'PKCE_NOT_REQUIRED_WHEN_USING_CLIENT_AUTHENTICATION');

static const $core.List<PKCE> values = <PKCE> [
PKCE_UNSPECIFIED,
PKCE_REQUIRED,
PKCE_NOT_REQUIRED,
PKCE_NOT_REQUIRED_WHEN_USING_CLIENT_AUTHENTICATION,
];

static final $core.Map<$core.int, PKCE> _byValue = $pb.ProtobufEnum.initByValue(values);
static PKCE? valueOf($core.int value) => _byValue[value];

const PKCE._($core.int v, $core.String n) : super(v, n);
}

class URLValidation extends $pb.ProtobufEnum {
static const URLValidation URL_VALIDATION_UNSPECIFIED = URLValidation._(0, _omitEnumNames ? '' : 'URL_VALIDATION_UNSPECIFIED');
static const URLValidation URL_VALIDATION_EXACT_MATCH = URLValidation._(1, _omitEnumNames ? '' : 'URL_VALIDATION_EXACT_MATCH');
static const URLValidation URL_VALIDATION_ALLOW_WILDCARDS = URLValidation._(2, _omitEnumNames ? '' : 'URL_VALIDATION_ALLOW_WILDCARDS');

static const $core.List<URLValidation> values = <URLValidation> [
URL_VALIDATION_UNSPECIFIED,
URL_VALIDATION_EXACT_MATCH,
URL_VALIDATION_ALLOW_WILDCARDS,
];

static final $core.Map<$core.int, URLValidation> _byValue = $pb.ProtobufEnum.initByValue(values);
static URLValidation? valueOf($core.int value) => _byValue[value];

const URLValidation._($core.int v, $core.String n) : super(v, n);
}

class EnabledGrant extends $pb.ProtobufEnum {
static const EnabledGrant ENABLED_GRANT_UNSPECIFIED = EnabledGrant._(0, _omitEnumNames ? '' : 'ENABLED_GRANT_UNSPECIFIED');
static const EnabledGrant ENABLED_GRANT_AUTHORIZATION_CODE = EnabledGrant._(1, _omitEnumNames ? '' : 'ENABLED_GRANT_AUTHORIZATION_CODE');
static const EnabledGrant ENABLED_GRANT_IMPLICIT = EnabledGrant._(2, _omitEnumNames ? '' : 'ENABLED_GRANT_IMPLICIT');
static const EnabledGrant ENABLED_GRANT_PASSWORD = EnabledGrant._(3, _omitEnumNames ? '' : 'ENABLED_GRANT_PASSWORD');
static const EnabledGrant ENABLED_GRANT_REFRESH_TOKEN = EnabledGrant._(4, _omitEnumNames ? '' : 'ENABLED_GRANT_REFRESH_TOKEN');
static const EnabledGrant ENABLED_GRANT_DEVICE_CODE = EnabledGrant._(5, _omitEnumNames ? '' : 'ENABLED_GRANT_DEVICE_CODE');

static const $core.List<EnabledGrant> values = <EnabledGrant> [
ENABLED_GRANT_UNSPECIFIED,
ENABLED_GRANT_AUTHORIZATION_CODE,
ENABLED_GRANT_IMPLICIT,
ENABLED_GRANT_PASSWORD,
ENABLED_GRANT_REFRESH_TOKEN,
ENABLED_GRANT_DEVICE_CODE,
];

static final $core.Map<$core.int, EnabledGrant> _byValue = $pb.ProtobufEnum.initByValue(values);
static EnabledGrant? valueOf($core.int value) => _byValue[value];

const EnabledGrant._($core.int v, $core.String n) : super(v, n);
}

class SharedSecret_State extends $pb.ProtobufEnum {
static const SharedSecret_State STATE_UNSPECIFIED = SharedSecret_State._(0, _omitEnumNames ? '' : 'STATE_UNSPECIFIED');
static const SharedSecret_State STATE_ENABLED = SharedSecret_State._(1, _omitEnumNames ? '' : 'STATE_ENABLED');
Expand Down
Loading