diff --git a/CHANGELOG.md b/CHANGELOG.md index dbcd4613..4f9ae811 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,3 @@ # CHANGELOG -Lib version: 1.15.0-SNAPSHOT-260914083531 +Lib version: 1.15.0-SNAPSHOT-260914085910 diff --git a/lib/claimInput.pb.dart b/lib/claimInput.pb.dart index 1ce03fbf..eb0d7f71 100644 --- a/lib/claimInput.pb.dart +++ b/lib/claimInput.pb.dart @@ -364,6 +364,80 @@ class ClaimCreatedResponse extends $pb.GeneratedMessage { $1.EntityID ensureID() => $_ensure(1); } +class ClaimInternalCreatedRequest extends $pb.GeneratedMessage { + factory ClaimInternalCreatedRequest({ + $core.String? projectID, + $1.EntityID? iD, + ClaimCreatedPayload? payload, + }) { + final result = create(); + if (projectID != null) result.projectID = projectID; + if (iD != null) result.iD = iD; + if (payload != null) result.payload = payload; + return result; + } + + ClaimInternalCreatedRequest._(); + + factory ClaimInternalCreatedRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry); + factory ClaimInternalCreatedRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry); + + static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ClaimInternalCreatedRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create) + ..aOS(1, _omitFieldNames ? '' : 'ProjectID', protoName: 'ProjectID') + ..aOM<$1.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $1.EntityID.create) + ..aOM(3, _omitFieldNames ? '' : 'Payload', protoName: 'Payload', subBuilder: ClaimCreatedPayload.create) + ..hasRequiredFields = false + ; + + @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') + ClaimInternalCreatedRequest clone() => ClaimInternalCreatedRequest()..mergeFromMessage(this); + @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') + ClaimInternalCreatedRequest copyWith(void Function(ClaimInternalCreatedRequest) updates) => super.copyWith((message) => updates(message as ClaimInternalCreatedRequest)) as ClaimInternalCreatedRequest; + + @$core.override + $pb.BuilderInfo get info_ => _i; + + @$core.pragma('dart2js:noInline') + static ClaimInternalCreatedRequest create() => ClaimInternalCreatedRequest._(); + @$core.override + ClaimInternalCreatedRequest createEmptyInstance() => create(); + static $pb.PbList createRepeated() => $pb.PbList(); + @$core.pragma('dart2js:noInline') + static ClaimInternalCreatedRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); + static ClaimInternalCreatedRequest? _defaultInstance; + + @$pb.TagNumber(1) + $core.String get projectID => $_getSZ(0); + @$pb.TagNumber(1) + set projectID($core.String value) => $_setString(0, value); + @$pb.TagNumber(1) + $core.bool hasProjectID() => $_has(0); + @$pb.TagNumber(1) + void clearProjectID() => $_clearField(1); + + @$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) + ClaimCreatedPayload get payload => $_getN(2); + @$pb.TagNumber(3) + set payload(ClaimCreatedPayload value) => $_setField(3, value); + @$pb.TagNumber(3) + $core.bool hasPayload() => $_has(2); + @$pb.TagNumber(3) + void clearPayload() => $_clearField(3); + @$pb.TagNumber(3) + ClaimCreatedPayload ensurePayload() => $_ensure(2); +} + /// Event Payload class ClaimCompletedPayload extends $pb.GeneratedMessage { factory ClaimCompletedPayload({ diff --git a/lib/claimInput.pbgrpc.dart b/lib/claimInput.pbgrpc.dart index 518fe377..9cf5071a 100644 --- a/lib/claimInput.pbgrpc.dart +++ b/lib/claimInput.pbgrpc.dart @@ -94,7 +94,7 @@ class ClaimInputAPIClient extends $grpc.Client { return $createUnaryCall(_$customFieldsUpdated, request, options: options); } - $grpc.ResponseFuture<$0.ClaimCreatedResponse> internalCreated($0.ClaimCreatedRequest request, {$grpc.CallOptions? options,}) { + $grpc.ResponseFuture<$0.ClaimCreatedResponse> internalCreated($0.ClaimInternalCreatedRequest request, {$grpc.CallOptions? options,}) { return $createUnaryCall(_$internalCreated, request, options: options); } @@ -160,9 +160,9 @@ class ClaimInputAPIClient extends $grpc.Client { '/api.ClaimInputAPI/CustomFieldsUpdated', ($0.ClaimCustomFieldsUpdatedRequest value) => value.writeToBuffer(), $0.ClaimCustomFieldsUpdatedResponse.fromBuffer); - static final _$internalCreated = $grpc.ClientMethod<$0.ClaimCreatedRequest, $0.ClaimCreatedResponse>( + static final _$internalCreated = $grpc.ClientMethod<$0.ClaimInternalCreatedRequest, $0.ClaimCreatedResponse>( '/api.ClaimInputAPI/InternalCreated', - ($0.ClaimCreatedRequest value) => value.writeToBuffer(), + ($0.ClaimInternalCreatedRequest value) => value.writeToBuffer(), $0.ClaimCreatedResponse.fromBuffer); } @@ -276,12 +276,12 @@ abstract class ClaimInputAPIServiceBase extends $grpc.Service { false, ($core.List<$core.int> value) => $0.ClaimCustomFieldsUpdatedRequest.fromBuffer(value), ($0.ClaimCustomFieldsUpdatedResponse value) => value.writeToBuffer())); - $addMethod($grpc.ServiceMethod<$0.ClaimCreatedRequest, $0.ClaimCreatedResponse>( + $addMethod($grpc.ServiceMethod<$0.ClaimInternalCreatedRequest, $0.ClaimCreatedResponse>( 'InternalCreated', internalCreated_Pre, false, false, - ($core.List<$core.int> value) => $0.ClaimCreatedRequest.fromBuffer(value), + ($core.List<$core.int> value) => $0.ClaimInternalCreatedRequest.fromBuffer(value), ($0.ClaimCreatedResponse value) => value.writeToBuffer())); } @@ -375,10 +375,10 @@ abstract class ClaimInputAPIServiceBase extends $grpc.Service { $async.Future<$0.ClaimCustomFieldsUpdatedResponse> customFieldsUpdated($grpc.ServiceCall call, $0.ClaimCustomFieldsUpdatedRequest request); - $async.Future<$0.ClaimCreatedResponse> internalCreated_Pre($grpc.ServiceCall $call, $async.Future<$0.ClaimCreatedRequest> $request) async { + $async.Future<$0.ClaimCreatedResponse> internalCreated_Pre($grpc.ServiceCall $call, $async.Future<$0.ClaimInternalCreatedRequest> $request) async { return internalCreated($call, await $request); } - $async.Future<$0.ClaimCreatedResponse> internalCreated($grpc.ServiceCall call, $0.ClaimCreatedRequest request); + $async.Future<$0.ClaimCreatedResponse> internalCreated($grpc.ServiceCall call, $0.ClaimInternalCreatedRequest request); } diff --git a/lib/claimInput.pbjson.dart b/lib/claimInput.pbjson.dart index e02cdc09..fdcd82f7 100644 --- a/lib/claimInput.pbjson.dart +++ b/lib/claimInput.pbjson.dart @@ -104,6 +104,25 @@ final $typed_data.Uint8List claimCreatedResponseDescriptor = $convert.base64Deco 'FkZXJSBkhlYWRlchIdCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJRFICSUQ6F6K7GAhSZXNwb25z' 'Zbq7GAdDcmVhdGVk'); +@$core.Deprecated('Use claimInternalCreatedRequestDescriptor instead') +const ClaimInternalCreatedRequest$json = { + '1': 'ClaimInternalCreatedRequest', + '2': [ + {'1': 'ProjectID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'ProjectID'}, + {'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '8': {}, '10': 'ID'}, + {'1': 'Payload', '3': 3, '4': 1, '5': 11, '6': '.api.ClaimCreatedPayload', '8': {}, '10': 'Payload'}, + ], + '7': {}, +}; + +/// Descriptor for `ClaimInternalCreatedRequest`. Decode as a `google.protobuf.DescriptorProto`. +final $typed_data.Uint8List claimInternalCreatedRequestDescriptor = $convert.base64Decode( + 'ChtDbGFpbUludGVybmFsQ3JlYXRlZFJlcXVlc3QSJgoJUHJvamVjdElEGAEgASgJQgi6gQEEcg' + 'IQAVIJUHJvamVjdElEEigKAklEGAIgASgLMg0uYXBpLkVudGl0eUlEQgm6gQEFigECEAFSAklE' + 'Ej0KB1BheWxvYWQYAyABKAsyGC5hcGkuQ2xhaW1DcmVhdGVkUGF5bG9hZEIJuoEBBYoBAhABUg' + 'dQYXlsb2FkOj6SQR0KG9IBCVByb2plY3RJRNIBAklE0gEHUGF5bG9hZKK7GAdSZXF1ZXN0ursY' + 'D0ludGVybmFsQ3JlYXRlZA=='); + @$core.Deprecated('Use claimCompletedPayloadDescriptor instead') const ClaimCompletedPayload$json = { '1': 'ClaimCompletedPayload', diff --git a/pubspec.yaml b/pubspec.yaml index bfd7fa4d..a3d77e3a 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: dart_core_sdk description: dart libs from core model proto files -version: 1.15.0-SNAPSHOT-260914083531 +version: 1.15.0-SNAPSHOT-260914085910 homepage: '' publish_to: '' repository: ''