You've already forked dart-core-sdk
Latest generation
This commit is contained in:
@@ -1,3 +1,3 @@
|
||||
# CHANGELOG
|
||||
|
||||
Lib version: 1.12.0-SNAPSHOT-250908085710
|
||||
Lib version: 1.12.0-SNAPSHOT-250908122514
|
||||
|
||||
@@ -174,8 +174,8 @@ final $typed_data.Uint8List executionflowNotifyPartnerAppsDescriptor = $convert.
|
||||
'FkUgdQYXlsb2FkEk4KDEV2ZW50UGF5bG9hZBgEIAEoCzIqLmFwaS5FeGVjdXRpb25mbG93Tm90'
|
||||
'aWZ5UGFydG5lckFwcHNQYXlsb2FkUgxFdmVudFBheWxvYWQSVAoPUHJldmlvdXNQYXlsb2FkGA'
|
||||
'UgASgLMiouYXBpLkV4ZWN1dGlvbmZsb3dOb3RpZnlQYXJ0bmVyQXBwc1BheWxvYWRSD1ByZXZp'
|
||||
'b3VzUGF5bG9hZDpYorsYB0NvbW1hbmSyuxgRTm90aWZ5UGFydG5lckFwcHPquxgQRGV0ZWN0ZW'
|
||||
'QsQ3JlYXRlZPq7GCBSZXN0b3JlZCxFVEFVcGRhdGVkLEhVRVRBVXBkYXRlZA==');
|
||||
'b3VzUGF5bG9hZDpjorsYB0NvbW1hbmSyuxgRTm90aWZ5UGFydG5lckFwcHPquxgbRGV0ZWN0ZW'
|
||||
'QsQ3JlYXRlZCxSZW5vdGlmaWVk+rsYIFJlc3RvcmVkLEVUQVVwZGF0ZWQsSFVFVEFVcGRhdGVk');
|
||||
|
||||
@$core.Deprecated('Use executionflowCreateDetectedOrderPayloadDescriptor instead')
|
||||
const ExecutionflowCreateDetectedOrderPayload$json = {
|
||||
|
||||
@@ -7799,6 +7799,253 @@ class ExecutionflowLinesDetectedResponse extends $pb.GeneratedMessage {
|
||||
$1.EntityID ensureID() => $_ensure(1);
|
||||
}
|
||||
|
||||
class ExecutionflowRenotifiedPayload extends $pb.GeneratedMessage {
|
||||
factory ExecutionflowRenotifiedPayload() => create();
|
||||
|
||||
ExecutionflowRenotifiedPayload._();
|
||||
|
||||
factory ExecutionflowRenotifiedPayload.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory ExecutionflowRenotifiedPayload.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ExecutionflowRenotifiedPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ExecutionflowRenotifiedPayload clone() => ExecutionflowRenotifiedPayload()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ExecutionflowRenotifiedPayload copyWith(void Function(ExecutionflowRenotifiedPayload) updates) => super.copyWith((message) => updates(message as ExecutionflowRenotifiedPayload)) as ExecutionflowRenotifiedPayload;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ExecutionflowRenotifiedPayload create() => ExecutionflowRenotifiedPayload._();
|
||||
@$core.override
|
||||
ExecutionflowRenotifiedPayload createEmptyInstance() => create();
|
||||
static $pb.PbList<ExecutionflowRenotifiedPayload> createRepeated() => $pb.PbList<ExecutionflowRenotifiedPayload>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ExecutionflowRenotifiedPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ExecutionflowRenotifiedPayload>(create);
|
||||
static ExecutionflowRenotifiedPayload? _defaultInstance;
|
||||
}
|
||||
|
||||
/// Event message
|
||||
class ExecutionflowRenotifiedEvent extends $pb.GeneratedMessage {
|
||||
factory ExecutionflowRenotifiedEvent({
|
||||
$1.EventHeader? header,
|
||||
$1.EntityID? iD,
|
||||
ExecutionflowRenotifiedPayload? payload,
|
||||
}) {
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
if (iD != null) result.iD = iD;
|
||||
if (payload != null) result.payload = payload;
|
||||
return result;
|
||||
}
|
||||
|
||||
ExecutionflowRenotifiedEvent._();
|
||||
|
||||
factory ExecutionflowRenotifiedEvent.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory ExecutionflowRenotifiedEvent.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ExecutionflowRenotifiedEvent', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$1.EventHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.EventHeader.create)
|
||||
..aOM<$1.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $1.EntityID.create)
|
||||
..aOM<ExecutionflowRenotifiedPayload>(3, _omitFieldNames ? '' : 'Payload', protoName: 'Payload', subBuilder: ExecutionflowRenotifiedPayload.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ExecutionflowRenotifiedEvent clone() => ExecutionflowRenotifiedEvent()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ExecutionflowRenotifiedEvent copyWith(void Function(ExecutionflowRenotifiedEvent) updates) => super.copyWith((message) => updates(message as ExecutionflowRenotifiedEvent)) as ExecutionflowRenotifiedEvent;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ExecutionflowRenotifiedEvent create() => ExecutionflowRenotifiedEvent._();
|
||||
@$core.override
|
||||
ExecutionflowRenotifiedEvent createEmptyInstance() => create();
|
||||
static $pb.PbList<ExecutionflowRenotifiedEvent> createRepeated() => $pb.PbList<ExecutionflowRenotifiedEvent>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ExecutionflowRenotifiedEvent getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ExecutionflowRenotifiedEvent>(create);
|
||||
static ExecutionflowRenotifiedEvent? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$1.EventHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($1.EventHeader value) => $_setField(1, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearHeader() => $_clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$1.EventHeader ensureHeader() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$1.EntityID get iD => $_getN(1);
|
||||
@$pb.TagNumber(2)
|
||||
set iD($1.EntityID value) => $_setField(2, value);
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasID() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearID() => $_clearField(2);
|
||||
@$pb.TagNumber(2)
|
||||
$1.EntityID ensureID() => $_ensure(1);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
ExecutionflowRenotifiedPayload get payload => $_getN(2);
|
||||
@$pb.TagNumber(3)
|
||||
set payload(ExecutionflowRenotifiedPayload value) => $_setField(3, value);
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasPayload() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearPayload() => $_clearField(3);
|
||||
@$pb.TagNumber(3)
|
||||
ExecutionflowRenotifiedPayload ensurePayload() => $_ensure(2);
|
||||
}
|
||||
|
||||
/// API Request
|
||||
class ExecutionflowRenotifiedRequest extends $pb.GeneratedMessage {
|
||||
factory ExecutionflowRenotifiedRequest({
|
||||
$1.RequestProjectHeader? header,
|
||||
$1.EntityID? iD,
|
||||
ExecutionflowRenotifiedPayload? payload,
|
||||
}) {
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
if (iD != null) result.iD = iD;
|
||||
if (payload != null) result.payload = payload;
|
||||
return result;
|
||||
}
|
||||
|
||||
ExecutionflowRenotifiedRequest._();
|
||||
|
||||
factory ExecutionflowRenotifiedRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory ExecutionflowRenotifiedRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ExecutionflowRenotifiedRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$1.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.RequestProjectHeader.create)
|
||||
..aOM<$1.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $1.EntityID.create)
|
||||
..aOM<ExecutionflowRenotifiedPayload>(3, _omitFieldNames ? '' : 'Payload', protoName: 'Payload', subBuilder: ExecutionflowRenotifiedPayload.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ExecutionflowRenotifiedRequest clone() => ExecutionflowRenotifiedRequest()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ExecutionflowRenotifiedRequest copyWith(void Function(ExecutionflowRenotifiedRequest) updates) => super.copyWith((message) => updates(message as ExecutionflowRenotifiedRequest)) as ExecutionflowRenotifiedRequest;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ExecutionflowRenotifiedRequest create() => ExecutionflowRenotifiedRequest._();
|
||||
@$core.override
|
||||
ExecutionflowRenotifiedRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<ExecutionflowRenotifiedRequest> createRepeated() => $pb.PbList<ExecutionflowRenotifiedRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ExecutionflowRenotifiedRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ExecutionflowRenotifiedRequest>(create);
|
||||
static ExecutionflowRenotifiedRequest? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$1.RequestProjectHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($1.RequestProjectHeader value) => $_setField(1, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearHeader() => $_clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$1.RequestProjectHeader ensureHeader() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$1.EntityID get iD => $_getN(1);
|
||||
@$pb.TagNumber(2)
|
||||
set iD($1.EntityID value) => $_setField(2, value);
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasID() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearID() => $_clearField(2);
|
||||
@$pb.TagNumber(2)
|
||||
$1.EntityID ensureID() => $_ensure(1);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
ExecutionflowRenotifiedPayload get payload => $_getN(2);
|
||||
@$pb.TagNumber(3)
|
||||
set payload(ExecutionflowRenotifiedPayload value) => $_setField(3, value);
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasPayload() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearPayload() => $_clearField(3);
|
||||
@$pb.TagNumber(3)
|
||||
ExecutionflowRenotifiedPayload ensurePayload() => $_ensure(2);
|
||||
}
|
||||
|
||||
/// API Response
|
||||
class ExecutionflowRenotifiedResponse extends $pb.GeneratedMessage {
|
||||
factory ExecutionflowRenotifiedResponse({
|
||||
$1.ResponseHeader? header,
|
||||
$1.EntityID? iD,
|
||||
}) {
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
if (iD != null) result.iD = iD;
|
||||
return result;
|
||||
}
|
||||
|
||||
ExecutionflowRenotifiedResponse._();
|
||||
|
||||
factory ExecutionflowRenotifiedResponse.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory ExecutionflowRenotifiedResponse.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ExecutionflowRenotifiedResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$1.ResponseHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.ResponseHeader.create)
|
||||
..aOM<$1.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $1.EntityID.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ExecutionflowRenotifiedResponse clone() => ExecutionflowRenotifiedResponse()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ExecutionflowRenotifiedResponse copyWith(void Function(ExecutionflowRenotifiedResponse) updates) => super.copyWith((message) => updates(message as ExecutionflowRenotifiedResponse)) as ExecutionflowRenotifiedResponse;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ExecutionflowRenotifiedResponse create() => ExecutionflowRenotifiedResponse._();
|
||||
@$core.override
|
||||
ExecutionflowRenotifiedResponse createEmptyInstance() => create();
|
||||
static $pb.PbList<ExecutionflowRenotifiedResponse> createRepeated() => $pb.PbList<ExecutionflowRenotifiedResponse>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ExecutionflowRenotifiedResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ExecutionflowRenotifiedResponse>(create);
|
||||
static ExecutionflowRenotifiedResponse? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$1.ResponseHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($1.ResponseHeader value) => $_setField(1, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearHeader() => $_clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$1.ResponseHeader ensureHeader() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$1.EntityID get iD => $_getN(1);
|
||||
@$pb.TagNumber(2)
|
||||
set iD($1.EntityID value) => $_setField(2, value);
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasID() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearID() => $_clearField(2);
|
||||
@$pb.TagNumber(2)
|
||||
$1.EntityID ensureID() => $_ensure(1);
|
||||
}
|
||||
|
||||
|
||||
const $core.bool _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
||||
const $core.bool _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
||||
|
||||
@@ -154,6 +154,10 @@ class ExecutionflowInputAPIClient extends $grpc.Client {
|
||||
return $createUnaryCall(_$linesDetected, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$0.ExecutionflowRenotifiedResponse> renotified($0.ExecutionflowRenotifiedRequest request, {$grpc.CallOptions? options,}) {
|
||||
return $createUnaryCall(_$renotified, request, options: options);
|
||||
}
|
||||
|
||||
// method descriptors
|
||||
|
||||
static final _$created = $grpc.ClientMethod<$0.ExecutionflowCreatedRequest, $0.ExecutionflowCreatedResponse>(
|
||||
@@ -276,6 +280,10 @@ class ExecutionflowInputAPIClient extends $grpc.Client {
|
||||
'/api.ExecutionflowInputAPI/LinesDetected',
|
||||
($0.ExecutionflowLinesDetectedRequest value) => value.writeToBuffer(),
|
||||
$0.ExecutionflowLinesDetectedResponse.fromBuffer);
|
||||
static final _$renotified = $grpc.ClientMethod<$0.ExecutionflowRenotifiedRequest, $0.ExecutionflowRenotifiedResponse>(
|
||||
'/api.ExecutionflowInputAPI/Renotified',
|
||||
($0.ExecutionflowRenotifiedRequest value) => value.writeToBuffer(),
|
||||
$0.ExecutionflowRenotifiedResponse.fromBuffer);
|
||||
}
|
||||
|
||||
@$pb.GrpcServiceName('api.ExecutionflowInputAPI')
|
||||
@@ -493,6 +501,13 @@ abstract class ExecutionflowInputAPIServiceBase extends $grpc.Service {
|
||||
false,
|
||||
($core.List<$core.int> value) => $0.ExecutionflowLinesDetectedRequest.fromBuffer(value),
|
||||
($0.ExecutionflowLinesDetectedResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$0.ExecutionflowRenotifiedRequest, $0.ExecutionflowRenotifiedResponse>(
|
||||
'Renotified',
|
||||
renotified_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $0.ExecutionflowRenotifiedRequest.fromBuffer(value),
|
||||
($0.ExecutionflowRenotifiedResponse value) => value.writeToBuffer()));
|
||||
}
|
||||
|
||||
$async.Future<$0.ExecutionflowCreatedResponse> created_Pre($grpc.ServiceCall $call, $async.Future<$0.ExecutionflowCreatedRequest> $request) async {
|
||||
@@ -675,4 +690,10 @@ abstract class ExecutionflowInputAPIServiceBase extends $grpc.Service {
|
||||
|
||||
$async.Future<$0.ExecutionflowLinesDetectedResponse> linesDetected($grpc.ServiceCall call, $0.ExecutionflowLinesDetectedRequest request);
|
||||
|
||||
$async.Future<$0.ExecutionflowRenotifiedResponse> renotified_Pre($grpc.ServiceCall $call, $async.Future<$0.ExecutionflowRenotifiedRequest> $request) async {
|
||||
return renotified($call, await $request);
|
||||
}
|
||||
|
||||
$async.Future<$0.ExecutionflowRenotifiedResponse> renotified($grpc.ServiceCall call, $0.ExecutionflowRenotifiedRequest request);
|
||||
|
||||
}
|
||||
|
||||
@@ -2091,3 +2091,66 @@ final $typed_data.Uint8List executionflowLinesDetectedResponseDescriptor = $conv
|
||||
'FwaS5SZXNwb25zZUhlYWRlclIGSGVhZGVyEh0KAklEGAIgASgLMg0uYXBpLkVudGl0eUlEUgJJ'
|
||||
'RDodorsYCFJlc3BvbnNlursYDUxpbmVzRGV0ZWN0ZWQ=');
|
||||
|
||||
@$core.Deprecated('Use executionflowRenotifiedPayloadDescriptor instead')
|
||||
const ExecutionflowRenotifiedPayload$json = {
|
||||
'1': 'ExecutionflowRenotifiedPayload',
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ExecutionflowRenotifiedPayload`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List executionflowRenotifiedPayloadDescriptor = $convert.base64Decode(
|
||||
'Ch5FeGVjdXRpb25mbG93UmVub3RpZmllZFBheWxvYWQ6L5JBEQoPMg1FdmVudCBQYXlsb2Fkor'
|
||||
'sYBUV2ZW50qLsYAbq7GApSZW5vdGlmaWVk');
|
||||
|
||||
@$core.Deprecated('Use executionflowRenotifiedEventDescriptor instead')
|
||||
const ExecutionflowRenotifiedEvent$json = {
|
||||
'1': 'ExecutionflowRenotifiedEvent',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.EventHeader', '10': 'Header'},
|
||||
{'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '10': 'ID'},
|
||||
{'1': 'Payload', '3': 3, '4': 1, '5': 11, '6': '.api.ExecutionflowRenotifiedPayload', '10': 'Payload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ExecutionflowRenotifiedEvent`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List executionflowRenotifiedEventDescriptor = $convert.base64Decode(
|
||||
'ChxFeGVjdXRpb25mbG93UmVub3RpZmllZEV2ZW50EigKBkhlYWRlchgBIAEoCzIQLmFwaS5Fdm'
|
||||
'VudEhlYWRlclIGSGVhZGVyEh0KAklEGAIgASgLMg0uYXBpLkVudGl0eUlEUgJJRBI9CgdQYXls'
|
||||
'b2FkGAMgASgLMiMuYXBpLkV4ZWN1dGlvbmZsb3dSZW5vdGlmaWVkUGF5bG9hZFIHUGF5bG9hZD'
|
||||
'oXorsYBUV2ZW50ursYClJlbm90aWZpZWQ=');
|
||||
|
||||
@$core.Deprecated('Use executionflowRenotifiedRequestDescriptor instead')
|
||||
const ExecutionflowRenotifiedRequest$json = {
|
||||
'1': 'ExecutionflowRenotifiedRequest',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '10': 'Header'},
|
||||
{'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '10': 'ID'},
|
||||
{'1': 'Payload', '3': 3, '4': 1, '5': 11, '6': '.api.ExecutionflowRenotifiedPayload', '10': 'Payload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ExecutionflowRenotifiedRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List executionflowRenotifiedRequestDescriptor = $convert.base64Decode(
|
||||
'Ch5FeGVjdXRpb25mbG93UmVub3RpZmllZFJlcXVlc3QSMQoGSGVhZGVyGAEgASgLMhkuYXBpLl'
|
||||
'JlcXVlc3RQcm9qZWN0SGVhZGVyUgZIZWFkZXISHQoCSUQYAiABKAsyDS5hcGkuRW50aXR5SURS'
|
||||
'AklEEj0KB1BheWxvYWQYAyABKAsyIy5hcGkuRXhlY3V0aW9uZmxvd1Jlbm90aWZpZWRQYXlsb2'
|
||||
'FkUgdQYXlsb2FkOhmiuxgHUmVxdWVzdLq7GApSZW5vdGlmaWVk');
|
||||
|
||||
@$core.Deprecated('Use executionflowRenotifiedResponseDescriptor instead')
|
||||
const ExecutionflowRenotifiedResponse$json = {
|
||||
'1': 'ExecutionflowRenotifiedResponse',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.ResponseHeader', '10': 'Header'},
|
||||
{'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '10': 'ID'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ExecutionflowRenotifiedResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List executionflowRenotifiedResponseDescriptor = $convert.base64Decode(
|
||||
'Ch9FeGVjdXRpb25mbG93UmVub3RpZmllZFJlc3BvbnNlEisKBkhlYWRlchgBIAEoCzITLmFwaS'
|
||||
'5SZXNwb25zZUhlYWRlclIGSGVhZGVyEh0KAklEGAIgASgLMg0uYXBpLkVudGl0eUlEUgJJRDoa'
|
||||
'orsYCFJlc3BvbnNlursYClJlbm90aWZpZWQ=');
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
name: dart_core_sdk
|
||||
description: dart libs from core model proto files
|
||||
version: 1.12.0-SNAPSHOT-250908085710
|
||||
version: 1.12.0-SNAPSHOT-250908122514
|
||||
homepage: ''
|
||||
publish_to: ''
|
||||
repository: ''
|
||||
|
||||
Reference in New Issue
Block a user