@sniipwebmaster/user-service-client-grpcweb 23.6.9333 → 23.6.9354
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.
|
@@ -7354,6 +7354,86 @@ proto.sniipuserservice.SniipUserServiceServicePromiseClient.prototype.sendSmsCus
|
|
|
7354
7354
|
};
|
|
7355
7355
|
|
|
7356
7356
|
|
|
7357
|
+
/**
|
|
7358
|
+
* @const
|
|
7359
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
7360
|
+
* !proto.google.protobuf.Empty,
|
|
7361
|
+
* !proto.sniipuserservice.ResponseCode>}
|
|
7362
|
+
*/
|
|
7363
|
+
const methodDescriptor_SniipUserServiceService_SendVerificationEmail = new grpc.web.MethodDescriptor(
|
|
7364
|
+
'/sniipuserservice.SniipUserServiceService/SendVerificationEmail',
|
|
7365
|
+
grpc.web.MethodType.UNARY,
|
|
7366
|
+
google_protobuf_empty_pb.Empty,
|
|
7367
|
+
proto.sniipuserservice.ResponseCode,
|
|
7368
|
+
/**
|
|
7369
|
+
* @param {!proto.google.protobuf.Empty} request
|
|
7370
|
+
* @return {!Uint8Array}
|
|
7371
|
+
*/
|
|
7372
|
+
function(request) {
|
|
7373
|
+
return request.serializeBinary();
|
|
7374
|
+
},
|
|
7375
|
+
proto.sniipuserservice.ResponseCode.deserializeBinary
|
|
7376
|
+
);
|
|
7377
|
+
|
|
7378
|
+
|
|
7379
|
+
/**
|
|
7380
|
+
* @const
|
|
7381
|
+
* @type {!grpc.web.AbstractClientBase.MethodInfo<
|
|
7382
|
+
* !proto.google.protobuf.Empty,
|
|
7383
|
+
* !proto.sniipuserservice.ResponseCode>}
|
|
7384
|
+
*/
|
|
7385
|
+
const methodInfo_SniipUserServiceService_SendVerificationEmail = new grpc.web.AbstractClientBase.MethodInfo(
|
|
7386
|
+
proto.sniipuserservice.ResponseCode,
|
|
7387
|
+
/**
|
|
7388
|
+
* @param {!proto.google.protobuf.Empty} request
|
|
7389
|
+
* @return {!Uint8Array}
|
|
7390
|
+
*/
|
|
7391
|
+
function(request) {
|
|
7392
|
+
return request.serializeBinary();
|
|
7393
|
+
},
|
|
7394
|
+
proto.sniipuserservice.ResponseCode.deserializeBinary
|
|
7395
|
+
);
|
|
7396
|
+
|
|
7397
|
+
|
|
7398
|
+
/**
|
|
7399
|
+
* @param {!proto.google.protobuf.Empty} request The
|
|
7400
|
+
* request proto
|
|
7401
|
+
* @param {?Object<string, string>} metadata User defined
|
|
7402
|
+
* call metadata
|
|
7403
|
+
* @param {function(?grpc.web.Error, ?proto.sniipuserservice.ResponseCode)}
|
|
7404
|
+
* callback The callback function(error, response)
|
|
7405
|
+
* @return {!grpc.web.ClientReadableStream<!proto.sniipuserservice.ResponseCode>|undefined}
|
|
7406
|
+
* The XHR Node Readable Stream
|
|
7407
|
+
*/
|
|
7408
|
+
proto.sniipuserservice.SniipUserServiceServiceClient.prototype.sendVerificationEmail =
|
|
7409
|
+
function(request, metadata, callback) {
|
|
7410
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
7411
|
+
'/sniipuserservice.SniipUserServiceService/SendVerificationEmail',
|
|
7412
|
+
request,
|
|
7413
|
+
metadata || {},
|
|
7414
|
+
methodDescriptor_SniipUserServiceService_SendVerificationEmail,
|
|
7415
|
+
callback);
|
|
7416
|
+
};
|
|
7417
|
+
|
|
7418
|
+
|
|
7419
|
+
/**
|
|
7420
|
+
* @param {!proto.google.protobuf.Empty} request The
|
|
7421
|
+
* request proto
|
|
7422
|
+
* @param {?Object<string, string>} metadata User defined
|
|
7423
|
+
* call metadata
|
|
7424
|
+
* @return {!Promise<!proto.sniipuserservice.ResponseCode>}
|
|
7425
|
+
* Promise that resolves to the response
|
|
7426
|
+
*/
|
|
7427
|
+
proto.sniipuserservice.SniipUserServiceServicePromiseClient.prototype.sendVerificationEmail =
|
|
7428
|
+
function(request, metadata) {
|
|
7429
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
7430
|
+
'/sniipuserservice.SniipUserServiceService/SendVerificationEmail',
|
|
7431
|
+
request,
|
|
7432
|
+
metadata || {},
|
|
7433
|
+
methodDescriptor_SniipUserServiceService_SendVerificationEmail);
|
|
7434
|
+
};
|
|
7435
|
+
|
|
7436
|
+
|
|
7357
7437
|
/**
|
|
7358
7438
|
* @const
|
|
7359
7439
|
* @type {!grpc.web.MethodDescriptor<
|