gearmobile

user_grpc_web_pb.js

Mar 17th, 2025
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JavaScript 8.43 KB | Source Code | 0 0
  1. /**
  2.  * @fileoverview gRPC-Web generated client stub for user
  3.  * @enhanceable
  4.  * @public
  5.  */
  6.  
  7. // Code generated by protoc-gen-grpc-web. DO NOT EDIT.
  8. // versions:
  9. //  protoc-gen-grpc-web v1.5.0
  10. //  protoc              v3.19.6
  11. // source: user.proto
  12.  
  13.  
  14. /* eslint-disable */
  15. // @ts-nocheck
  16.  
  17.  
  18.  
  19. const grpc = {};
  20. grpc.web = require('grpc-web');
  21.  
  22. const proto = {};
  23. proto.user = require('./user_pb.js');
  24.  
  25. /**
  26.  * @param {string} hostname
  27.  * @param {?Object} credentials
  28.  * @param {?grpc.web.ClientOptions} options
  29.  * @constructor
  30.  * @struct
  31.  * @final
  32.  */
  33. proto.user.UserServiceClient =
  34.     function(hostname, credentials, options) {
  35.   if (!options) options = {};
  36.   options.format = 'text';
  37.  
  38.   /**
  39.    * @private @const {!grpc.web.GrpcWebClientBase} The client
  40.    */
  41.   this.client_ = new grpc.web.GrpcWebClientBase(options);
  42.  
  43.   /**
  44.    * @private @const {string} The hostname
  45.    */
  46.   this.hostname_ = hostname.replace(/\/+$/, '');
  47.  
  48. };
  49.  
  50.  
  51. /**
  52.  * @param {string} hostname
  53.  * @param {?Object} credentials
  54.  * @param {?grpc.web.ClientOptions} options
  55.  * @constructor
  56.  * @struct
  57.  * @final
  58.  */
  59. proto.user.UserServicePromiseClient =
  60.     function(hostname, credentials, options) {
  61.   if (!options) options = {};
  62.   options.format = 'text';
  63.  
  64.   /**
  65.    * @private @const {!grpc.web.GrpcWebClientBase} The client
  66.    */
  67.   this.client_ = new grpc.web.GrpcWebClientBase(options);
  68.  
  69.   /**
  70.    * @private @const {string} The hostname
  71.    */
  72.   this.hostname_ = hostname.replace(/\/+$/, '');
  73.  
  74. };
  75.  
  76.  
  77. /**
  78.  * @const
  79.  * @type {!grpc.web.MethodDescriptor<
  80.  *   !proto.user.CreateUserRequest,
  81.  *   !proto.user.User>}
  82.  */
  83. const methodDescriptor_UserService_CreateUser = new grpc.web.MethodDescriptor(
  84.   '/user.UserService/CreateUser',
  85.   grpc.web.MethodType.UNARY,
  86.   proto.user.CreateUserRequest,
  87.   proto.user.User,
  88.   /**
  89.    * @param {!proto.user.CreateUserRequest} request
  90.    * @return {!Uint8Array}
  91.    */
  92.   function(request) {
  93.     return request.serializeBinary();
  94.   },
  95.   proto.user.User.deserializeBinary
  96. );
  97.  
  98.  
  99. /**
  100.  * @param {!proto.user.CreateUserRequest} request The
  101.  *     request proto
  102.  * @param {?Object<string, string>} metadata User defined
  103.  *     call metadata
  104.  * @param {function(?grpc.web.RpcError, ?proto.user.User)}
  105.  *     callback The callback function(error, response)
  106.  * @return {!grpc.web.ClientReadableStream<!proto.user.User>|undefined}
  107.  *     The XHR Node Readable Stream
  108.  */
  109. proto.user.UserServiceClient.prototype.createUser =
  110.     function(request, metadata, callback) {
  111.   return this.client_.rpcCall(this.hostname_ +
  112.       '/user.UserService/CreateUser',
  113.       request,
  114.       metadata || {},
  115.       methodDescriptor_UserService_CreateUser,
  116.       callback);
  117. };
  118.  
  119.  
  120. /**
  121.  * @param {!proto.user.CreateUserRequest} request The
  122.  *     request proto
  123.  * @param {?Object<string, string>=} metadata User defined
  124.  *     call metadata
  125.  * @return {!Promise<!proto.user.User>}
  126.  *     Promise that resolves to the response
  127.  */
  128. proto.user.UserServicePromiseClient.prototype.createUser =
  129.     function(request, metadata) {
  130.   return this.client_.unaryCall(this.hostname_ +
  131.       '/user.UserService/CreateUser',
  132.       request,
  133.       metadata || {},
  134.       methodDescriptor_UserService_CreateUser);
  135. };
  136.  
  137.  
  138. /**
  139.  * @const
  140.  * @type {!grpc.web.MethodDescriptor<
  141.  *   !proto.user.GetUserRequest,
  142.  *   !proto.user.User>}
  143.  */
  144. const methodDescriptor_UserService_GetUser = new grpc.web.MethodDescriptor(
  145.   '/user.UserService/GetUser',
  146.   grpc.web.MethodType.UNARY,
  147.   proto.user.GetUserRequest,
  148.   proto.user.User,
  149.   /**
  150.    * @param {!proto.user.GetUserRequest} request
  151.    * @return {!Uint8Array}
  152.    */
  153.   function(request) {
  154.     return request.serializeBinary();
  155.   },
  156.   proto.user.User.deserializeBinary
  157. );
  158.  
  159.  
  160. /**
  161.  * @param {!proto.user.GetUserRequest} request The
  162.  *     request proto
  163.  * @param {?Object<string, string>} metadata User defined
  164.  *     call metadata
  165.  * @param {function(?grpc.web.RpcError, ?proto.user.User)}
  166.  *     callback The callback function(error, response)
  167.  * @return {!grpc.web.ClientReadableStream<!proto.user.User>|undefined}
  168.  *     The XHR Node Readable Stream
  169.  */
  170. proto.user.UserServiceClient.prototype.getUser =
  171.     function(request, metadata, callback) {
  172.   return this.client_.rpcCall(this.hostname_ +
  173.       '/user.UserService/GetUser',
  174.       request,
  175.       metadata || {},
  176.       methodDescriptor_UserService_GetUser,
  177.       callback);
  178. };
  179.  
  180.  
  181. /**
  182.  * @param {!proto.user.GetUserRequest} request The
  183.  *     request proto
  184.  * @param {?Object<string, string>=} metadata User defined
  185.  *     call metadata
  186.  * @return {!Promise<!proto.user.User>}
  187.  *     Promise that resolves to the response
  188.  */
  189. proto.user.UserServicePromiseClient.prototype.getUser =
  190.     function(request, metadata) {
  191.   return this.client_.unaryCall(this.hostname_ +
  192.       '/user.UserService/GetUser',
  193.       request,
  194.       metadata || {},
  195.       methodDescriptor_UserService_GetUser);
  196. };
  197.  
  198.  
  199. /**
  200.  * @const
  201.  * @type {!grpc.web.MethodDescriptor<
  202.  *   !proto.user.UpdateUserRequest,
  203.  *   !proto.user.User>}
  204.  */
  205. const methodDescriptor_UserService_UpdateUser = new grpc.web.MethodDescriptor(
  206.   '/user.UserService/UpdateUser',
  207.   grpc.web.MethodType.UNARY,
  208.   proto.user.UpdateUserRequest,
  209.   proto.user.User,
  210.   /**
  211.    * @param {!proto.user.UpdateUserRequest} request
  212.    * @return {!Uint8Array}
  213.    */
  214.   function(request) {
  215.     return request.serializeBinary();
  216.   },
  217.   proto.user.User.deserializeBinary
  218. );
  219.  
  220.  
  221. /**
  222.  * @param {!proto.user.UpdateUserRequest} request The
  223.  *     request proto
  224.  * @param {?Object<string, string>} metadata User defined
  225.  *     call metadata
  226.  * @param {function(?grpc.web.RpcError, ?proto.user.User)}
  227.  *     callback The callback function(error, response)
  228.  * @return {!grpc.web.ClientReadableStream<!proto.user.User>|undefined}
  229.  *     The XHR Node Readable Stream
  230.  */
  231. proto.user.UserServiceClient.prototype.updateUser =
  232.     function(request, metadata, callback) {
  233.   return this.client_.rpcCall(this.hostname_ +
  234.       '/user.UserService/UpdateUser',
  235.       request,
  236.       metadata || {},
  237.       methodDescriptor_UserService_UpdateUser,
  238.       callback);
  239. };
  240.  
  241.  
  242. /**
  243.  * @param {!proto.user.UpdateUserRequest} request The
  244.  *     request proto
  245.  * @param {?Object<string, string>=} metadata User defined
  246.  *     call metadata
  247.  * @return {!Promise<!proto.user.User>}
  248.  *     Promise that resolves to the response
  249.  */
  250. proto.user.UserServicePromiseClient.prototype.updateUser =
  251.     function(request, metadata) {
  252.   return this.client_.unaryCall(this.hostname_ +
  253.       '/user.UserService/UpdateUser',
  254.       request,
  255.       metadata || {},
  256.       methodDescriptor_UserService_UpdateUser);
  257. };
  258.  
  259.  
  260. /**
  261.  * @const
  262.  * @type {!grpc.web.MethodDescriptor<
  263.  *   !proto.user.DeleteUserRequest,
  264.  *   !proto.user.DeleteUserResponse>}
  265.  */
  266. const methodDescriptor_UserService_DeleteUser = new grpc.web.MethodDescriptor(
  267.   '/user.UserService/DeleteUser',
  268.   grpc.web.MethodType.UNARY,
  269.   proto.user.DeleteUserRequest,
  270.   proto.user.DeleteUserResponse,
  271.   /**
  272.    * @param {!proto.user.DeleteUserRequest} request
  273.    * @return {!Uint8Array}
  274.    */
  275.   function(request) {
  276.     return request.serializeBinary();
  277.   },
  278.   proto.user.DeleteUserResponse.deserializeBinary
  279. );
  280.  
  281.  
  282. /**
  283.  * @param {!proto.user.DeleteUserRequest} request The
  284.  *     request proto
  285.  * @param {?Object<string, string>} metadata User defined
  286.  *     call metadata
  287.  * @param {function(?grpc.web.RpcError, ?proto.user.DeleteUserResponse)}
  288.  *     callback The callback function(error, response)
  289.  * @return {!grpc.web.ClientReadableStream<!proto.user.DeleteUserResponse>|undefined}
  290.  *     The XHR Node Readable Stream
  291.  */
  292. proto.user.UserServiceClient.prototype.deleteUser =
  293.     function(request, metadata, callback) {
  294.   return this.client_.rpcCall(this.hostname_ +
  295.       '/user.UserService/DeleteUser',
  296.       request,
  297.       metadata || {},
  298.       methodDescriptor_UserService_DeleteUser,
  299.       callback);
  300. };
  301.  
  302.  
  303. /**
  304.  * @param {!proto.user.DeleteUserRequest} request The
  305.  *     request proto
  306.  * @param {?Object<string, string>=} metadata User defined
  307.  *     call metadata
  308.  * @return {!Promise<!proto.user.DeleteUserResponse>}
  309.  *     Promise that resolves to the response
  310.  */
  311. proto.user.UserServicePromiseClient.prototype.deleteUser =
  312.     function(request, metadata) {
  313.   return this.client_.unaryCall(this.hostname_ +
  314.       '/user.UserService/DeleteUser',
  315.       request,
  316.       metadata || {},
  317.       methodDescriptor_UserService_DeleteUser);
  318. };
  319.  
  320.  
  321. module.exports = proto.user;
  322.  
  323.  
Tags: Proto
Add Comment
Please, Sign In to add comment