Latest generation

This commit is contained in:
ci core model
2026-06-16 13:54:02 +00:00
parent b328457984
commit e99326211e
3 changed files with 20 additions and 20 deletions

View File

@@ -1,3 +1,3 @@
# CHANGELOG # CHANGELOG
Lib version: 1.14.0-SNAPSHOT-260616132800 Lib version: 1.14.0-SNAPSHOT-260616135258

View File

@@ -36,12 +36,12 @@ class MessagingServiceClient extends $grpc.Client {
return $createUnaryCall(_$sendSMS, request, options: options); return $createUnaryCall(_$sendSMS, request, options: options);
} }
$grpc.ResponseFuture<$0.GetMessagingUsageResponse> getMessagingUsage($0.GetMessagingUsageRequest request, {$grpc.CallOptions? options,}) { $grpc.ResponseFuture<$0.GetMessagingUsageResponse> getUsage($0.GetMessagingUsageRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$getMessagingUsage, request, options: options); return $createUnaryCall(_$getUsage, request, options: options);
} }
$grpc.ResponseFuture<$0.IsMessagingMaxUsageReachedResponse> isMessagingMaxUsageReached($0.IsMessagingMaxUsageReachedRequest request, {$grpc.CallOptions? options,}) { $grpc.ResponseFuture<$0.IsMessagingMaxUsageReachedResponse> isMaxUsageReached($0.IsMessagingMaxUsageReachedRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$isMessagingMaxUsageReached, request, options: options); return $createUnaryCall(_$isMaxUsageReached, request, options: options);
} }
// method descriptors // method descriptors
@@ -50,12 +50,12 @@ class MessagingServiceClient extends $grpc.Client {
'/api.MessagingService/SendSMS', '/api.MessagingService/SendSMS',
($0.SendSMSRequest value) => value.writeToBuffer(), ($0.SendSMSRequest value) => value.writeToBuffer(),
$0.SendSMSResponse.fromBuffer); $0.SendSMSResponse.fromBuffer);
static final _$getMessagingUsage = $grpc.ClientMethod<$0.GetMessagingUsageRequest, $0.GetMessagingUsageResponse>( static final _$getUsage = $grpc.ClientMethod<$0.GetMessagingUsageRequest, $0.GetMessagingUsageResponse>(
'/api.MessagingService/GetMessagingUsage', '/api.MessagingService/GetUsage',
($0.GetMessagingUsageRequest value) => value.writeToBuffer(), ($0.GetMessagingUsageRequest value) => value.writeToBuffer(),
$0.GetMessagingUsageResponse.fromBuffer); $0.GetMessagingUsageResponse.fromBuffer);
static final _$isMessagingMaxUsageReached = $grpc.ClientMethod<$0.IsMessagingMaxUsageReachedRequest, $0.IsMessagingMaxUsageReachedResponse>( static final _$isMaxUsageReached = $grpc.ClientMethod<$0.IsMessagingMaxUsageReachedRequest, $0.IsMessagingMaxUsageReachedResponse>(
'/api.MessagingService/IsMessagingMaxUsageReached', '/api.MessagingService/IsMaxUsageReached',
($0.IsMessagingMaxUsageReachedRequest value) => value.writeToBuffer(), ($0.IsMessagingMaxUsageReachedRequest value) => value.writeToBuffer(),
$0.IsMessagingMaxUsageReachedResponse.fromBuffer); $0.IsMessagingMaxUsageReachedResponse.fromBuffer);
} }
@@ -73,15 +73,15 @@ abstract class MessagingServiceBase extends $grpc.Service {
($core.List<$core.int> value) => $0.SendSMSRequest.fromBuffer(value), ($core.List<$core.int> value) => $0.SendSMSRequest.fromBuffer(value),
($0.SendSMSResponse value) => value.writeToBuffer())); ($0.SendSMSResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.GetMessagingUsageRequest, $0.GetMessagingUsageResponse>( $addMethod($grpc.ServiceMethod<$0.GetMessagingUsageRequest, $0.GetMessagingUsageResponse>(
'GetMessagingUsage', 'GetUsage',
getMessagingUsage_Pre, getUsage_Pre,
false, false,
false, false,
($core.List<$core.int> value) => $0.GetMessagingUsageRequest.fromBuffer(value), ($core.List<$core.int> value) => $0.GetMessagingUsageRequest.fromBuffer(value),
($0.GetMessagingUsageResponse value) => value.writeToBuffer())); ($0.GetMessagingUsageResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.IsMessagingMaxUsageReachedRequest, $0.IsMessagingMaxUsageReachedResponse>( $addMethod($grpc.ServiceMethod<$0.IsMessagingMaxUsageReachedRequest, $0.IsMessagingMaxUsageReachedResponse>(
'IsMessagingMaxUsageReached', 'IsMaxUsageReached',
isMessagingMaxUsageReached_Pre, isMaxUsageReached_Pre,
false, false,
false, false,
($core.List<$core.int> value) => $0.IsMessagingMaxUsageReachedRequest.fromBuffer(value), ($core.List<$core.int> value) => $0.IsMessagingMaxUsageReachedRequest.fromBuffer(value),
@@ -94,16 +94,16 @@ abstract class MessagingServiceBase extends $grpc.Service {
$async.Future<$0.SendSMSResponse> sendSMS($grpc.ServiceCall call, $0.SendSMSRequest request); $async.Future<$0.SendSMSResponse> sendSMS($grpc.ServiceCall call, $0.SendSMSRequest request);
$async.Future<$0.GetMessagingUsageResponse> getMessagingUsage_Pre($grpc.ServiceCall $call, $async.Future<$0.GetMessagingUsageRequest> $request) async { $async.Future<$0.GetMessagingUsageResponse> getUsage_Pre($grpc.ServiceCall $call, $async.Future<$0.GetMessagingUsageRequest> $request) async {
return getMessagingUsage($call, await $request); return getUsage($call, await $request);
} }
$async.Future<$0.GetMessagingUsageResponse> getMessagingUsage($grpc.ServiceCall call, $0.GetMessagingUsageRequest request); $async.Future<$0.GetMessagingUsageResponse> getUsage($grpc.ServiceCall call, $0.GetMessagingUsageRequest request);
$async.Future<$0.IsMessagingMaxUsageReachedResponse> isMessagingMaxUsageReached_Pre($grpc.ServiceCall $call, $async.Future<$0.IsMessagingMaxUsageReachedRequest> $request) async { $async.Future<$0.IsMessagingMaxUsageReachedResponse> isMaxUsageReached_Pre($grpc.ServiceCall $call, $async.Future<$0.IsMessagingMaxUsageReachedRequest> $request) async {
return isMessagingMaxUsageReached($call, await $request); return isMaxUsageReached($call, await $request);
} }
$async.Future<$0.IsMessagingMaxUsageReachedResponse> isMessagingMaxUsageReached($grpc.ServiceCall call, $0.IsMessagingMaxUsageReachedRequest request); $async.Future<$0.IsMessagingMaxUsageReachedResponse> isMaxUsageReached($grpc.ServiceCall call, $0.IsMessagingMaxUsageReachedRequest request);
} }

View File

@@ -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.14.0-SNAPSHOT-260616132800 version: 1.14.0-SNAPSHOT-260616135258
homepage: '' homepage: ''
publish_to: '' publish_to: ''
repository: '' repository: ''