@sniipwebmaster/user-service-client-grpcweb-ts 23.6.9333 → 23.6.9344

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3953,6 +3953,49 @@ export class SniipUserServiceServiceClient {
3953
3953
  this.methodDescriptorSendSmsCustomer);
3954
3954
  }
3955
3955
 
3956
+ methodDescriptorSendVerificationEmail = new grpcWeb.MethodDescriptor(
3957
+ '/sniipuserservice.SniipUserServiceService/SendVerificationEmail',
3958
+ grpcWeb.MethodType.UNARY,
3959
+ google_protobuf_empty_pb.Empty,
3960
+ service_pb.ResponseCode,
3961
+ (request: google_protobuf_empty_pb.Empty) => {
3962
+ return request.serializeBinary();
3963
+ },
3964
+ service_pb.ResponseCode.deserializeBinary
3965
+ );
3966
+
3967
+ sendVerificationEmail(
3968
+ request: google_protobuf_empty_pb.Empty,
3969
+ metadata: grpcWeb.Metadata | null): Promise<service_pb.ResponseCode>;
3970
+
3971
+ sendVerificationEmail(
3972
+ request: google_protobuf_empty_pb.Empty,
3973
+ metadata: grpcWeb.Metadata | null,
3974
+ callback: (err: grpcWeb.RpcError,
3975
+ response: service_pb.ResponseCode) => void): grpcWeb.ClientReadableStream<service_pb.ResponseCode>;
3976
+
3977
+ sendVerificationEmail(
3978
+ request: google_protobuf_empty_pb.Empty,
3979
+ metadata: grpcWeb.Metadata | null,
3980
+ callback?: (err: grpcWeb.RpcError,
3981
+ response: service_pb.ResponseCode) => void) {
3982
+ if (callback !== undefined) {
3983
+ return this.client_.rpcCall(
3984
+ this.hostname_ +
3985
+ '/sniipuserservice.SniipUserServiceService/SendVerificationEmail',
3986
+ request,
3987
+ metadata || {},
3988
+ this.methodDescriptorSendVerificationEmail,
3989
+ callback);
3990
+ }
3991
+ return this.client_.unaryCall(
3992
+ this.hostname_ +
3993
+ '/sniipuserservice.SniipUserServiceService/SendVerificationEmail',
3994
+ request,
3995
+ metadata || {},
3996
+ this.methodDescriptorSendVerificationEmail);
3997
+ }
3998
+
3956
3999
  methodDescriptorSetPasswordEmail = new grpcWeb.MethodDescriptor(
3957
4000
  '/sniipuserservice.SniipUserServiceService/SetPasswordEmail',
3958
4001
  grpcWeb.MethodType.UNARY,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sniipwebmaster/user-service-client-grpcweb-ts",
3
- "version": "23.6.9333",
3
+ "version": "23.6.9344",
4
4
  "description": "user-service-client-grpcweb-ts",
5
5
  "author": "Sniip Development Team",
6
6
  "license": "MIT",