diff --git a/src/CMSMicroservice.Application/OtpTokenCQ/Commands/CreateNewOtpToken/CreateNewOtpTokenCommand.cs b/src/CMSMicroservice.Application/OtpTokenCQ/Commands/CreateNewOtpToken/CreateNewOtpTokenCommand.cs index dc2181b..56871e8 100644 --- a/src/CMSMicroservice.Application/OtpTokenCQ/Commands/CreateNewOtpToken/CreateNewOtpTokenCommand.cs +++ b/src/CMSMicroservice.Application/OtpTokenCQ/Commands/CreateNewOtpToken/CreateNewOtpTokenCommand.cs @@ -5,5 +5,7 @@ public record CreateNewOtpTokenCommand : IRequest public string Mobile { get; init; } //مقصود public string Purpose { get; init; } + //اطلاعات بیشتر + public string? ExtraInfo { get; init; } } \ No newline at end of file diff --git a/src/CMSMicroservice.Protobuf/Protos/otptoken.proto b/src/CMSMicroservice.Protobuf/Protos/otptoken.proto index 0c787e1..839fc4a 100644 --- a/src/CMSMicroservice.Protobuf/Protos/otptoken.proto +++ b/src/CMSMicroservice.Protobuf/Protos/otptoken.proto @@ -36,6 +36,7 @@ message CreateNewOtpTokenRequest { string mobile = 1; string purpose = 2; + google.protobuf.StringValue extra_info = 3; } message CreateNewOtpTokenResponse { diff --git a/src/CMSMicroservice.Protobuf/Protos/transactions.proto b/src/CMSMicroservice.Protobuf/Protos/transactions.proto index 8da1042..8a31229 100644 --- a/src/CMSMicroservice.Protobuf/Protos/transactions.proto +++ b/src/CMSMicroservice.Protobuf/Protos/transactions.proto @@ -179,7 +179,7 @@ message GetAllTransactionsByFilterFilter google.protobuf.StringValue card_hash = 18; google.protobuf.StringValue card_pan = 19; google.protobuf.StringValue ref_id = 20; - google.protobuf.StringValue order_id = 21; + google.protobuf.Int64Value order_id = 21; oneof Type_item { messages.TransactionType type = 22;