diff --git a/CHANGELOG.md b/CHANGELOG.md index 394d2164..a031d0f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,3 @@ # CHANGELOG -Lib version: 1.13.0-SNAPSHOT-260219141949 +Lib version: 1.13.0-SNAPSHOT-260219144158 diff --git a/lib/workflow.pb.dart b/lib/workflow.pb.dart index 182d3cbf..f990639a 100644 --- a/lib/workflow.pb.dart +++ b/lib/workflow.pb.dart @@ -3785,6 +3785,100 @@ class StartWorkflowCleanCassandraResult extends $pb.GeneratedMessage { $1.WorkflowExecutionResult ensureWorkflowExecution() => $_ensure(0); } +class StartWorkflowSynchronizeUMAStoreRequest extends $pb.GeneratedMessage { + factory StartWorkflowSynchronizeUMAStoreRequest({ + $core.String? userID, + }) { + final result = create(); + if (userID != null) result.userID = userID; + return result; + } + + StartWorkflowSynchronizeUMAStoreRequest._(); + + factory StartWorkflowSynchronizeUMAStoreRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry); + factory StartWorkflowSynchronizeUMAStoreRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry); + + static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowSynchronizeUMAStoreRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create) + ..aOS(1, _omitFieldNames ? '' : 'UserID', protoName: 'UserID') + ..hasRequiredFields = false + ; + + @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') + StartWorkflowSynchronizeUMAStoreRequest clone() => StartWorkflowSynchronizeUMAStoreRequest()..mergeFromMessage(this); + @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') + StartWorkflowSynchronizeUMAStoreRequest copyWith(void Function(StartWorkflowSynchronizeUMAStoreRequest) updates) => super.copyWith((message) => updates(message as StartWorkflowSynchronizeUMAStoreRequest)) as StartWorkflowSynchronizeUMAStoreRequest; + + @$core.override + $pb.BuilderInfo get info_ => _i; + + @$core.pragma('dart2js:noInline') + static StartWorkflowSynchronizeUMAStoreRequest create() => StartWorkflowSynchronizeUMAStoreRequest._(); + @$core.override + StartWorkflowSynchronizeUMAStoreRequest createEmptyInstance() => create(); + static $pb.PbList createRepeated() => $pb.PbList(); + @$core.pragma('dart2js:noInline') + static StartWorkflowSynchronizeUMAStoreRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); + static StartWorkflowSynchronizeUMAStoreRequest? _defaultInstance; + + @$pb.TagNumber(1) + $core.String get userID => $_getSZ(0); + @$pb.TagNumber(1) + set userID($core.String value) => $_setString(0, value); + @$pb.TagNumber(1) + $core.bool hasUserID() => $_has(0); + @$pb.TagNumber(1) + void clearUserID() => $_clearField(1); +} + +class StartWorkflowSynchronizeUMAStoreResult extends $pb.GeneratedMessage { + factory StartWorkflowSynchronizeUMAStoreResult({ + $1.WorkflowExecutionResult? workflowExecution, + }) { + final result = create(); + if (workflowExecution != null) result.workflowExecution = workflowExecution; + return result; + } + + StartWorkflowSynchronizeUMAStoreResult._(); + + factory StartWorkflowSynchronizeUMAStoreResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry); + factory StartWorkflowSynchronizeUMAStoreResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry); + + static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowSynchronizeUMAStoreResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create) + ..aOM<$1.WorkflowExecutionResult>(1, _omitFieldNames ? '' : 'WorkflowExecution', protoName: 'WorkflowExecution', subBuilder: $1.WorkflowExecutionResult.create) + ..hasRequiredFields = false + ; + + @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') + StartWorkflowSynchronizeUMAStoreResult clone() => StartWorkflowSynchronizeUMAStoreResult()..mergeFromMessage(this); + @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') + StartWorkflowSynchronizeUMAStoreResult copyWith(void Function(StartWorkflowSynchronizeUMAStoreResult) updates) => super.copyWith((message) => updates(message as StartWorkflowSynchronizeUMAStoreResult)) as StartWorkflowSynchronizeUMAStoreResult; + + @$core.override + $pb.BuilderInfo get info_ => _i; + + @$core.pragma('dart2js:noInline') + static StartWorkflowSynchronizeUMAStoreResult create() => StartWorkflowSynchronizeUMAStoreResult._(); + @$core.override + StartWorkflowSynchronizeUMAStoreResult createEmptyInstance() => create(); + static $pb.PbList createRepeated() => $pb.PbList(); + @$core.pragma('dart2js:noInline') + static StartWorkflowSynchronizeUMAStoreResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); + static StartWorkflowSynchronizeUMAStoreResult? _defaultInstance; + + @$pb.TagNumber(1) + $1.WorkflowExecutionResult get workflowExecution => $_getN(0); + @$pb.TagNumber(1) + set workflowExecution($1.WorkflowExecutionResult value) => $_setField(1, value); + @$pb.TagNumber(1) + $core.bool hasWorkflowExecution() => $_has(0); + @$pb.TagNumber(1) + void clearWorkflowExecution() => $_clearField(1); + @$pb.TagNumber(1) + $1.WorkflowExecutionResult ensureWorkflowExecution() => $_ensure(0); +} + const $core.bool _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names'); const $core.bool _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names'); diff --git a/lib/workflow.pbgrpc.dart b/lib/workflow.pbgrpc.dart index 4feadb21..0bac8c64 100644 --- a/lib/workflow.pbgrpc.dart +++ b/lib/workflow.pbgrpc.dart @@ -160,6 +160,10 @@ class WorkflowServiceClient extends $grpc.Client { return $createUnaryCall(_$startWorkflowCleanCassandra, request, options: options); } + $grpc.ResponseFuture<$0.StartWorkflowSynchronizeUMAStoreResult> startWorkflowSynchronizeUMAStore($0.StartWorkflowSynchronizeUMAStoreRequest request, {$grpc.CallOptions? options,}) { + return $createUnaryCall(_$startWorkflowSynchronizeUMAStore, request, options: options); + } + // method descriptors static final _$retryWorkflow = $grpc.ClientMethod<$0.RetryWorkflowRequest, $0.RetryWorkflowResult>( @@ -290,6 +294,10 @@ class WorkflowServiceClient extends $grpc.Client { '/api.WorkflowService/StartWorkflowCleanCassandra', ($0.StartWorkflowCleanCassandraRequest value) => value.writeToBuffer(), $0.StartWorkflowCleanCassandraResult.fromBuffer); + static final _$startWorkflowSynchronizeUMAStore = $grpc.ClientMethod<$0.StartWorkflowSynchronizeUMAStoreRequest, $0.StartWorkflowSynchronizeUMAStoreResult>( + '/api.WorkflowService/StartWorkflowSynchronizeUMAStore', + ($0.StartWorkflowSynchronizeUMAStoreRequest value) => value.writeToBuffer(), + $0.StartWorkflowSynchronizeUMAStoreResult.fromBuffer); } @$pb.GrpcServiceName('api.WorkflowService') @@ -521,6 +529,13 @@ abstract class WorkflowServiceBase extends $grpc.Service { false, ($core.List<$core.int> value) => $0.StartWorkflowCleanCassandraRequest.fromBuffer(value), ($0.StartWorkflowCleanCassandraResult value) => value.writeToBuffer())); + $addMethod($grpc.ServiceMethod<$0.StartWorkflowSynchronizeUMAStoreRequest, $0.StartWorkflowSynchronizeUMAStoreResult>( + 'StartWorkflowSynchronizeUMAStore', + startWorkflowSynchronizeUMAStore_Pre, + false, + false, + ($core.List<$core.int> value) => $0.StartWorkflowSynchronizeUMAStoreRequest.fromBuffer(value), + ($0.StartWorkflowSynchronizeUMAStoreResult value) => value.writeToBuffer())); } $async.Future<$0.RetryWorkflowResult> retryWorkflow_Pre($grpc.ServiceCall $call, $async.Future<$0.RetryWorkflowRequest> $request) async { @@ -715,4 +730,10 @@ abstract class WorkflowServiceBase extends $grpc.Service { $async.Future<$0.StartWorkflowCleanCassandraResult> startWorkflowCleanCassandra($grpc.ServiceCall call, $0.StartWorkflowCleanCassandraRequest request); + $async.Future<$0.StartWorkflowSynchronizeUMAStoreResult> startWorkflowSynchronizeUMAStore_Pre($grpc.ServiceCall $call, $async.Future<$0.StartWorkflowSynchronizeUMAStoreRequest> $request) async { + return startWorkflowSynchronizeUMAStore($call, await $request); + } + + $async.Future<$0.StartWorkflowSynchronizeUMAStoreResult> startWorkflowSynchronizeUMAStore($grpc.ServiceCall call, $0.StartWorkflowSynchronizeUMAStoreRequest request); + } diff --git a/lib/workflow.pbjson.dart b/lib/workflow.pbjson.dart index 7e02bd84..462aea4e 100644 --- a/lib/workflow.pbjson.dart +++ b/lib/workflow.pbjson.dart @@ -1111,3 +1111,30 @@ final $typed_data.Uint8List startWorkflowCleanCassandraResultDescriptor = $conve 'CiFTdGFydFdvcmtmbG93Q2xlYW5DYXNzYW5kcmFSZXN1bHQSSgoRV29ya2Zsb3dFeGVjdXRpb2' '4YASABKAsyHC5hcGkuV29ya2Zsb3dFeGVjdXRpb25SZXN1bHRSEVdvcmtmbG93RXhlY3V0aW9u'); +@$core.Deprecated('Use startWorkflowSynchronizeUMAStoreRequestDescriptor instead') +const StartWorkflowSynchronizeUMAStoreRequest$json = { + '1': 'StartWorkflowSynchronizeUMAStoreRequest', + '2': [ + {'1': 'UserID', '3': 1, '4': 1, '5': 9, '10': 'UserID'}, + ], +}; + +/// Descriptor for `StartWorkflowSynchronizeUMAStoreRequest`. Decode as a `google.protobuf.DescriptorProto`. +final $typed_data.Uint8List startWorkflowSynchronizeUMAStoreRequestDescriptor = $convert.base64Decode( + 'CidTdGFydFdvcmtmbG93U3luY2hyb25pemVVTUFTdG9yZVJlcXVlc3QSFgoGVXNlcklEGAEgAS' + 'gJUgZVc2VySUQ='); + +@$core.Deprecated('Use startWorkflowSynchronizeUMAStoreResultDescriptor instead') +const StartWorkflowSynchronizeUMAStoreResult$json = { + '1': 'StartWorkflowSynchronizeUMAStoreResult', + '2': [ + {'1': 'WorkflowExecution', '3': 1, '4': 1, '5': 11, '6': '.api.WorkflowExecutionResult', '10': 'WorkflowExecution'}, + ], +}; + +/// Descriptor for `StartWorkflowSynchronizeUMAStoreResult`. Decode as a `google.protobuf.DescriptorProto`. +final $typed_data.Uint8List startWorkflowSynchronizeUMAStoreResultDescriptor = $convert.base64Decode( + 'CiZTdGFydFdvcmtmbG93U3luY2hyb25pemVVTUFTdG9yZVJlc3VsdBJKChFXb3JrZmxvd0V4ZW' + 'N1dGlvbhgBIAEoCzIcLmFwaS5Xb3JrZmxvd0V4ZWN1dGlvblJlc3VsdFIRV29ya2Zsb3dFeGVj' + 'dXRpb24='); + diff --git a/pubspec.yaml b/pubspec.yaml index f490cb93..bd916978 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.13.0-SNAPSHOT-260219141949 +version: 1.13.0-SNAPSHOT-260219144158 homepage: '' publish_to: '' repository: ''