You've already forked dart-core-sdk
Latest generation
This commit is contained in:
@@ -1,3 +1,3 @@
|
|||||||
# CHANGELOG
|
# CHANGELOG
|
||||||
|
|
||||||
Lib version: 1.15.0-SNAPSHOT-260904132946
|
Lib version: 1.15.0-SNAPSHOT-260907142047
|
||||||
|
|||||||
@@ -5090,6 +5090,269 @@ class ActorCustomFieldsUpdatedResponse extends $pb.GeneratedMessage {
|
|||||||
$1.EntityID ensureID() => $_ensure(1);
|
$1.EntityID ensureID() => $_ensure(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
class ActorInformationUpdatedPayload extends $pb.GeneratedMessage {
|
||||||
|
factory ActorInformationUpdatedPayload({
|
||||||
|
$core.String? additionalInformation,
|
||||||
|
}) {
|
||||||
|
final result = create();
|
||||||
|
if (additionalInformation != null) result.additionalInformation = additionalInformation;
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
ActorInformationUpdatedPayload._();
|
||||||
|
|
||||||
|
factory ActorInformationUpdatedPayload.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||||
|
factory ActorInformationUpdatedPayload.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||||
|
|
||||||
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ActorInformationUpdatedPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||||
|
..aOS(1, _omitFieldNames ? '' : 'AdditionalInformation', protoName: 'AdditionalInformation')
|
||||||
|
..hasRequiredFields = false
|
||||||
|
;
|
||||||
|
|
||||||
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||||
|
ActorInformationUpdatedPayload clone() => ActorInformationUpdatedPayload()..mergeFromMessage(this);
|
||||||
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||||
|
ActorInformationUpdatedPayload copyWith(void Function(ActorInformationUpdatedPayload) updates) => super.copyWith((message) => updates(message as ActorInformationUpdatedPayload)) as ActorInformationUpdatedPayload;
|
||||||
|
|
||||||
|
@$core.override
|
||||||
|
$pb.BuilderInfo get info_ => _i;
|
||||||
|
|
||||||
|
@$core.pragma('dart2js:noInline')
|
||||||
|
static ActorInformationUpdatedPayload create() => ActorInformationUpdatedPayload._();
|
||||||
|
@$core.override
|
||||||
|
ActorInformationUpdatedPayload createEmptyInstance() => create();
|
||||||
|
static $pb.PbList<ActorInformationUpdatedPayload> createRepeated() => $pb.PbList<ActorInformationUpdatedPayload>();
|
||||||
|
@$core.pragma('dart2js:noInline')
|
||||||
|
static ActorInformationUpdatedPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ActorInformationUpdatedPayload>(create);
|
||||||
|
static ActorInformationUpdatedPayload? _defaultInstance;
|
||||||
|
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
$core.String get additionalInformation => $_getSZ(0);
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
set additionalInformation($core.String value) => $_setString(0, value);
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
$core.bool hasAdditionalInformation() => $_has(0);
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
void clearAdditionalInformation() => $_clearField(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Event message
|
||||||
|
class ActorInformationUpdatedEvent extends $pb.GeneratedMessage {
|
||||||
|
factory ActorInformationUpdatedEvent({
|
||||||
|
$1.EventHeader? header,
|
||||||
|
$1.EntityID? iD,
|
||||||
|
ActorInformationUpdatedPayload? payload,
|
||||||
|
}) {
|
||||||
|
final result = create();
|
||||||
|
if (header != null) result.header = header;
|
||||||
|
if (iD != null) result.iD = iD;
|
||||||
|
if (payload != null) result.payload = payload;
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
ActorInformationUpdatedEvent._();
|
||||||
|
|
||||||
|
factory ActorInformationUpdatedEvent.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||||
|
factory ActorInformationUpdatedEvent.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||||
|
|
||||||
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ActorInformationUpdatedEvent', 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<ActorInformationUpdatedPayload>(3, _omitFieldNames ? '' : 'Payload', protoName: 'Payload', subBuilder: ActorInformationUpdatedPayload.create)
|
||||||
|
..hasRequiredFields = false
|
||||||
|
;
|
||||||
|
|
||||||
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||||
|
ActorInformationUpdatedEvent clone() => ActorInformationUpdatedEvent()..mergeFromMessage(this);
|
||||||
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||||
|
ActorInformationUpdatedEvent copyWith(void Function(ActorInformationUpdatedEvent) updates) => super.copyWith((message) => updates(message as ActorInformationUpdatedEvent)) as ActorInformationUpdatedEvent;
|
||||||
|
|
||||||
|
@$core.override
|
||||||
|
$pb.BuilderInfo get info_ => _i;
|
||||||
|
|
||||||
|
@$core.pragma('dart2js:noInline')
|
||||||
|
static ActorInformationUpdatedEvent create() => ActorInformationUpdatedEvent._();
|
||||||
|
@$core.override
|
||||||
|
ActorInformationUpdatedEvent createEmptyInstance() => create();
|
||||||
|
static $pb.PbList<ActorInformationUpdatedEvent> createRepeated() => $pb.PbList<ActorInformationUpdatedEvent>();
|
||||||
|
@$core.pragma('dart2js:noInline')
|
||||||
|
static ActorInformationUpdatedEvent getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ActorInformationUpdatedEvent>(create);
|
||||||
|
static ActorInformationUpdatedEvent? _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)
|
||||||
|
ActorInformationUpdatedPayload get payload => $_getN(2);
|
||||||
|
@$pb.TagNumber(3)
|
||||||
|
set payload(ActorInformationUpdatedPayload value) => $_setField(3, value);
|
||||||
|
@$pb.TagNumber(3)
|
||||||
|
$core.bool hasPayload() => $_has(2);
|
||||||
|
@$pb.TagNumber(3)
|
||||||
|
void clearPayload() => $_clearField(3);
|
||||||
|
@$pb.TagNumber(3)
|
||||||
|
ActorInformationUpdatedPayload ensurePayload() => $_ensure(2);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// API Request
|
||||||
|
class ActorInformationUpdatedRequest extends $pb.GeneratedMessage {
|
||||||
|
factory ActorInformationUpdatedRequest({
|
||||||
|
$1.RequestProjectHeader? header,
|
||||||
|
$1.EntityID? iD,
|
||||||
|
ActorInformationUpdatedPayload? payload,
|
||||||
|
}) {
|
||||||
|
final result = create();
|
||||||
|
if (header != null) result.header = header;
|
||||||
|
if (iD != null) result.iD = iD;
|
||||||
|
if (payload != null) result.payload = payload;
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
ActorInformationUpdatedRequest._();
|
||||||
|
|
||||||
|
factory ActorInformationUpdatedRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||||
|
factory ActorInformationUpdatedRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||||
|
|
||||||
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ActorInformationUpdatedRequest', 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<ActorInformationUpdatedPayload>(3, _omitFieldNames ? '' : 'Payload', protoName: 'Payload', subBuilder: ActorInformationUpdatedPayload.create)
|
||||||
|
..hasRequiredFields = false
|
||||||
|
;
|
||||||
|
|
||||||
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||||
|
ActorInformationUpdatedRequest clone() => ActorInformationUpdatedRequest()..mergeFromMessage(this);
|
||||||
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||||
|
ActorInformationUpdatedRequest copyWith(void Function(ActorInformationUpdatedRequest) updates) => super.copyWith((message) => updates(message as ActorInformationUpdatedRequest)) as ActorInformationUpdatedRequest;
|
||||||
|
|
||||||
|
@$core.override
|
||||||
|
$pb.BuilderInfo get info_ => _i;
|
||||||
|
|
||||||
|
@$core.pragma('dart2js:noInline')
|
||||||
|
static ActorInformationUpdatedRequest create() => ActorInformationUpdatedRequest._();
|
||||||
|
@$core.override
|
||||||
|
ActorInformationUpdatedRequest createEmptyInstance() => create();
|
||||||
|
static $pb.PbList<ActorInformationUpdatedRequest> createRepeated() => $pb.PbList<ActorInformationUpdatedRequest>();
|
||||||
|
@$core.pragma('dart2js:noInline')
|
||||||
|
static ActorInformationUpdatedRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ActorInformationUpdatedRequest>(create);
|
||||||
|
static ActorInformationUpdatedRequest? _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)
|
||||||
|
ActorInformationUpdatedPayload get payload => $_getN(2);
|
||||||
|
@$pb.TagNumber(3)
|
||||||
|
set payload(ActorInformationUpdatedPayload value) => $_setField(3, value);
|
||||||
|
@$pb.TagNumber(3)
|
||||||
|
$core.bool hasPayload() => $_has(2);
|
||||||
|
@$pb.TagNumber(3)
|
||||||
|
void clearPayload() => $_clearField(3);
|
||||||
|
@$pb.TagNumber(3)
|
||||||
|
ActorInformationUpdatedPayload ensurePayload() => $_ensure(2);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// API Response
|
||||||
|
class ActorInformationUpdatedResponse extends $pb.GeneratedMessage {
|
||||||
|
factory ActorInformationUpdatedResponse({
|
||||||
|
$1.ResponseHeader? header,
|
||||||
|
$1.EntityID? iD,
|
||||||
|
}) {
|
||||||
|
final result = create();
|
||||||
|
if (header != null) result.header = header;
|
||||||
|
if (iD != null) result.iD = iD;
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
ActorInformationUpdatedResponse._();
|
||||||
|
|
||||||
|
factory ActorInformationUpdatedResponse.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||||
|
factory ActorInformationUpdatedResponse.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||||
|
|
||||||
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ActorInformationUpdatedResponse', 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.')
|
||||||
|
ActorInformationUpdatedResponse clone() => ActorInformationUpdatedResponse()..mergeFromMessage(this);
|
||||||
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||||
|
ActorInformationUpdatedResponse copyWith(void Function(ActorInformationUpdatedResponse) updates) => super.copyWith((message) => updates(message as ActorInformationUpdatedResponse)) as ActorInformationUpdatedResponse;
|
||||||
|
|
||||||
|
@$core.override
|
||||||
|
$pb.BuilderInfo get info_ => _i;
|
||||||
|
|
||||||
|
@$core.pragma('dart2js:noInline')
|
||||||
|
static ActorInformationUpdatedResponse create() => ActorInformationUpdatedResponse._();
|
||||||
|
@$core.override
|
||||||
|
ActorInformationUpdatedResponse createEmptyInstance() => create();
|
||||||
|
static $pb.PbList<ActorInformationUpdatedResponse> createRepeated() => $pb.PbList<ActorInformationUpdatedResponse>();
|
||||||
|
@$core.pragma('dart2js:noInline')
|
||||||
|
static ActorInformationUpdatedResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ActorInformationUpdatedResponse>(create);
|
||||||
|
static ActorInformationUpdatedResponse? _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 _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
||||||
const $core.bool _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
const $core.bool _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
||||||
|
|||||||
@@ -106,6 +106,10 @@ class ActorInputAPIClient extends $grpc.Client {
|
|||||||
return $createUnaryCall(_$wMSUpdated, request, options: options);
|
return $createUnaryCall(_$wMSUpdated, request, options: options);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$grpc.ResponseFuture<$0.ActorInformationUpdatedResponse> informationUpdated($0.ActorInformationUpdatedRequest request, {$grpc.CallOptions? options,}) {
|
||||||
|
return $createUnaryCall(_$informationUpdated, request, options: options);
|
||||||
|
}
|
||||||
|
|
||||||
// method descriptors
|
// method descriptors
|
||||||
|
|
||||||
static final _$created = $grpc.ClientMethod<$0.ActorCreatedRequest, $0.ActorCreatedResponse>(
|
static final _$created = $grpc.ClientMethod<$0.ActorCreatedRequest, $0.ActorCreatedResponse>(
|
||||||
@@ -180,6 +184,10 @@ class ActorInputAPIClient extends $grpc.Client {
|
|||||||
'/api.ActorInputAPI/WMSUpdated',
|
'/api.ActorInputAPI/WMSUpdated',
|
||||||
($0.ActorWMSUpdatedRequest value) => value.writeToBuffer(),
|
($0.ActorWMSUpdatedRequest value) => value.writeToBuffer(),
|
||||||
$0.ActorWMSUpdatedResponse.fromBuffer);
|
$0.ActorWMSUpdatedResponse.fromBuffer);
|
||||||
|
static final _$informationUpdated = $grpc.ClientMethod<$0.ActorInformationUpdatedRequest, $0.ActorInformationUpdatedResponse>(
|
||||||
|
'/api.ActorInputAPI/InformationUpdated',
|
||||||
|
($0.ActorInformationUpdatedRequest value) => value.writeToBuffer(),
|
||||||
|
$0.ActorInformationUpdatedResponse.fromBuffer);
|
||||||
}
|
}
|
||||||
|
|
||||||
@$pb.GrpcServiceName('api.ActorInputAPI')
|
@$pb.GrpcServiceName('api.ActorInputAPI')
|
||||||
@@ -313,6 +321,13 @@ abstract class ActorInputAPIServiceBase extends $grpc.Service {
|
|||||||
false,
|
false,
|
||||||
($core.List<$core.int> value) => $0.ActorWMSUpdatedRequest.fromBuffer(value),
|
($core.List<$core.int> value) => $0.ActorWMSUpdatedRequest.fromBuffer(value),
|
||||||
($0.ActorWMSUpdatedResponse value) => value.writeToBuffer()));
|
($0.ActorWMSUpdatedResponse value) => value.writeToBuffer()));
|
||||||
|
$addMethod($grpc.ServiceMethod<$0.ActorInformationUpdatedRequest, $0.ActorInformationUpdatedResponse>(
|
||||||
|
'InformationUpdated',
|
||||||
|
informationUpdated_Pre,
|
||||||
|
false,
|
||||||
|
false,
|
||||||
|
($core.List<$core.int> value) => $0.ActorInformationUpdatedRequest.fromBuffer(value),
|
||||||
|
($0.ActorInformationUpdatedResponse value) => value.writeToBuffer()));
|
||||||
}
|
}
|
||||||
|
|
||||||
$async.Future<$0.ActorCreatedResponse> created_Pre($grpc.ServiceCall $call, $async.Future<$0.ActorCreatedRequest> $request) async {
|
$async.Future<$0.ActorCreatedResponse> created_Pre($grpc.ServiceCall $call, $async.Future<$0.ActorCreatedRequest> $request) async {
|
||||||
@@ -423,4 +438,10 @@ abstract class ActorInputAPIServiceBase extends $grpc.Service {
|
|||||||
|
|
||||||
$async.Future<$0.ActorWMSUpdatedResponse> wMSUpdated($grpc.ServiceCall call, $0.ActorWMSUpdatedRequest request);
|
$async.Future<$0.ActorWMSUpdatedResponse> wMSUpdated($grpc.ServiceCall call, $0.ActorWMSUpdatedRequest request);
|
||||||
|
|
||||||
|
$async.Future<$0.ActorInformationUpdatedResponse> informationUpdated_Pre($grpc.ServiceCall $call, $async.Future<$0.ActorInformationUpdatedRequest> $request) async {
|
||||||
|
return informationUpdated($call, await $request);
|
||||||
|
}
|
||||||
|
|
||||||
|
$async.Future<$0.ActorInformationUpdatedResponse> informationUpdated($grpc.ServiceCall call, $0.ActorInformationUpdatedRequest request);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1350,3 +1350,74 @@ final $typed_data.Uint8List actorCustomFieldsUpdatedResponseDescriptor = $conver
|
|||||||
'kuUmVzcG9uc2VIZWFkZXJSBkhlYWRlchIdCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJRFICSUQ6'
|
'kuUmVzcG9uc2VIZWFkZXJSBkhlYWRlchIdCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJRFICSUQ6'
|
||||||
'I6K7GAhSZXNwb25zZbq7GBNDdXN0b21GaWVsZHNVcGRhdGVk');
|
'I6K7GAhSZXNwb25zZbq7GBNDdXN0b21GaWVsZHNVcGRhdGVk');
|
||||||
|
|
||||||
|
@$core.Deprecated('Use actorInformationUpdatedPayloadDescriptor instead')
|
||||||
|
const ActorInformationUpdatedPayload$json = {
|
||||||
|
'1': 'ActorInformationUpdatedPayload',
|
||||||
|
'2': [
|
||||||
|
{'1': 'AdditionalInformation', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'AdditionalInformation'},
|
||||||
|
],
|
||||||
|
'7': {},
|
||||||
|
};
|
||||||
|
|
||||||
|
/// Descriptor for `ActorInformationUpdatedPayload`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
|
final $typed_data.Uint8List actorInformationUpdatedPayloadDescriptor = $convert.base64Decode(
|
||||||
|
'Ch5BY3RvckluZm9ybWF0aW9uVXBkYXRlZFBheWxvYWQSYQoVQWRkaXRpb25hbEluZm9ybWF0aW'
|
||||||
|
'9uGAEgASgJQiuSQSgyJkFkZGl0aW9uYWwgaW5mb3JtYXRpb24gYWJvdXQgdGhlIGFjdG9yUhVB'
|
||||||
|
'ZGRpdGlvbmFsSW5mb3JtYXRpb246I6K7GAVFdmVudKi7GAG6uxgSSW5mb3JtYXRpb25VcGRhdG'
|
||||||
|
'Vk');
|
||||||
|
|
||||||
|
@$core.Deprecated('Use actorInformationUpdatedEventDescriptor instead')
|
||||||
|
const ActorInformationUpdatedEvent$json = {
|
||||||
|
'1': 'ActorInformationUpdatedEvent',
|
||||||
|
'2': [
|
||||||
|
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.EventHeader', '8': {}, '10': 'Header'},
|
||||||
|
{'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '8': {}, '10': 'ID'},
|
||||||
|
{'1': 'Payload', '3': 3, '4': 1, '5': 11, '6': '.api.ActorInformationUpdatedPayload', '8': {}, '10': 'Payload'},
|
||||||
|
],
|
||||||
|
'7': {},
|
||||||
|
};
|
||||||
|
|
||||||
|
/// Descriptor for `ActorInformationUpdatedEvent`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
|
final $typed_data.Uint8List actorInformationUpdatedEventDescriptor = $convert.base64Decode(
|
||||||
|
'ChxBY3RvckluZm9ybWF0aW9uVXBkYXRlZEV2ZW50EjMKBkhlYWRlchgBIAEoCzIQLmFwaS5Fdm'
|
||||||
|
'VudEhlYWRlckIJuoEBBYoBAhABUgZIZWFkZXISKAoCSUQYAiABKAsyDS5hcGkuRW50aXR5SURC'
|
||||||
|
'CbqBAQWKAQIQAVICSUQSSAoHUGF5bG9hZBgDIAEoCzIjLmFwaS5BY3RvckluZm9ybWF0aW9uVX'
|
||||||
|
'BkYXRlZFBheWxvYWRCCbqBAQWKAQIQAVIHUGF5bG9hZDpRkkEaChjSAQZIZWFkZXLSAQJJRNIB'
|
||||||
|
'B1BheWxvYWSiuxgFRXZlbnS6uxgSSW5mb3JtYXRpb25VcGRhdGVk2rsYEWNoZWNrUGFydG5lck'
|
||||||
|
'FwcElk');
|
||||||
|
|
||||||
|
@$core.Deprecated('Use actorInformationUpdatedRequestDescriptor instead')
|
||||||
|
const ActorInformationUpdatedRequest$json = {
|
||||||
|
'1': 'ActorInformationUpdatedRequest',
|
||||||
|
'2': [
|
||||||
|
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
|
||||||
|
{'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '8': {}, '10': 'ID'},
|
||||||
|
{'1': 'Payload', '3': 3, '4': 1, '5': 11, '6': '.api.ActorInformationUpdatedPayload', '8': {}, '10': 'Payload'},
|
||||||
|
],
|
||||||
|
'7': {},
|
||||||
|
};
|
||||||
|
|
||||||
|
/// Descriptor for `ActorInformationUpdatedRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
|
final $typed_data.Uint8List actorInformationUpdatedRequestDescriptor = $convert.base64Decode(
|
||||||
|
'Ch5BY3RvckluZm9ybWF0aW9uVXBkYXRlZFJlcXVlc3QSPAoGSGVhZGVyGAEgASgLMhkuYXBpLl'
|
||||||
|
'JlcXVlc3RQcm9qZWN0SGVhZGVyQgm6gQEFigECEAFSBkhlYWRlchIoCgJJRBgCIAEoCzINLmFw'
|
||||||
|
'aS5FbnRpdHlJREIJuoEBBYoBAhABUgJJRBJICgdQYXlsb2FkGAMgASgLMiMuYXBpLkFjdG9ySW'
|
||||||
|
'5mb3JtYXRpb25VcGRhdGVkUGF5bG9hZEIJuoEBBYoBAhABUgdQYXlsb2FkOj6SQRoKGNIBBkhl'
|
||||||
|
'YWRlctIBAklE0gEHUGF5bG9hZKK7GAdSZXF1ZXN0ursYEkluZm9ybWF0aW9uVXBkYXRlZA==');
|
||||||
|
|
||||||
|
@$core.Deprecated('Use actorInformationUpdatedResponseDescriptor instead')
|
||||||
|
const ActorInformationUpdatedResponse$json = {
|
||||||
|
'1': 'ActorInformationUpdatedResponse',
|
||||||
|
'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 `ActorInformationUpdatedResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
|
final $typed_data.Uint8List actorInformationUpdatedResponseDescriptor = $convert.base64Decode(
|
||||||
|
'Ch9BY3RvckluZm9ybWF0aW9uVXBkYXRlZFJlc3BvbnNlEisKBkhlYWRlchgBIAEoCzITLmFwaS'
|
||||||
|
'5SZXNwb25zZUhlYWRlclIGSGVhZGVyEh0KAklEGAIgASgLMg0uYXBpLkVudGl0eUlEUgJJRDoi'
|
||||||
|
'orsYCFJlc3BvbnNlursYEkluZm9ybWF0aW9uVXBkYXRlZA==');
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
name: dart_core_sdk
|
name: dart_core_sdk
|
||||||
description: dart libs from core model proto files
|
description: dart libs from core model proto files
|
||||||
version: 1.15.0-SNAPSHOT-260904132946
|
version: 1.15.0-SNAPSHOT-260907142047
|
||||||
homepage: ''
|
homepage: ''
|
||||||
publish_to: ''
|
publish_to: ''
|
||||||
repository: ''
|
repository: ''
|
||||||
|
|||||||
Reference in New Issue
Block a user