@sniipwebmaster/user-service-client-grpcweb 23.8.10003 → 23.8.10028
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.
|
@@ -2314,6 +2314,86 @@ proto.sniipuserservice.SniipUserServiceServicePromiseClient.prototype.deleteProf
|
|
|
2314
2314
|
};
|
|
2315
2315
|
|
|
2316
2316
|
|
|
2317
|
+
/**
|
|
2318
|
+
* @const
|
|
2319
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
2320
|
+
* !proto.google.protobuf.Empty,
|
|
2321
|
+
* !proto.sniipuserservice.ResponseCode>}
|
|
2322
|
+
*/
|
|
2323
|
+
const methodDescriptor_SniipUserServiceService_DeleteProfilePicture1 = new grpc.web.MethodDescriptor(
|
|
2324
|
+
'/sniipuserservice.SniipUserServiceService/DeleteProfilePicture1',
|
|
2325
|
+
grpc.web.MethodType.UNARY,
|
|
2326
|
+
google_protobuf_empty_pb.Empty,
|
|
2327
|
+
proto.sniipuserservice.ResponseCode,
|
|
2328
|
+
/**
|
|
2329
|
+
* @param {!proto.google.protobuf.Empty} request
|
|
2330
|
+
* @return {!Uint8Array}
|
|
2331
|
+
*/
|
|
2332
|
+
function(request) {
|
|
2333
|
+
return request.serializeBinary();
|
|
2334
|
+
},
|
|
2335
|
+
proto.sniipuserservice.ResponseCode.deserializeBinary
|
|
2336
|
+
);
|
|
2337
|
+
|
|
2338
|
+
|
|
2339
|
+
/**
|
|
2340
|
+
* @const
|
|
2341
|
+
* @type {!grpc.web.AbstractClientBase.MethodInfo<
|
|
2342
|
+
* !proto.google.protobuf.Empty,
|
|
2343
|
+
* !proto.sniipuserservice.ResponseCode>}
|
|
2344
|
+
*/
|
|
2345
|
+
const methodInfo_SniipUserServiceService_DeleteProfilePicture1 = new grpc.web.AbstractClientBase.MethodInfo(
|
|
2346
|
+
proto.sniipuserservice.ResponseCode,
|
|
2347
|
+
/**
|
|
2348
|
+
* @param {!proto.google.protobuf.Empty} request
|
|
2349
|
+
* @return {!Uint8Array}
|
|
2350
|
+
*/
|
|
2351
|
+
function(request) {
|
|
2352
|
+
return request.serializeBinary();
|
|
2353
|
+
},
|
|
2354
|
+
proto.sniipuserservice.ResponseCode.deserializeBinary
|
|
2355
|
+
);
|
|
2356
|
+
|
|
2357
|
+
|
|
2358
|
+
/**
|
|
2359
|
+
* @param {!proto.google.protobuf.Empty} request The
|
|
2360
|
+
* request proto
|
|
2361
|
+
* @param {?Object<string, string>} metadata User defined
|
|
2362
|
+
* call metadata
|
|
2363
|
+
* @param {function(?grpc.web.Error, ?proto.sniipuserservice.ResponseCode)}
|
|
2364
|
+
* callback The callback function(error, response)
|
|
2365
|
+
* @return {!grpc.web.ClientReadableStream<!proto.sniipuserservice.ResponseCode>|undefined}
|
|
2366
|
+
* The XHR Node Readable Stream
|
|
2367
|
+
*/
|
|
2368
|
+
proto.sniipuserservice.SniipUserServiceServiceClient.prototype.deleteProfilePicture1 =
|
|
2369
|
+
function(request, metadata, callback) {
|
|
2370
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
2371
|
+
'/sniipuserservice.SniipUserServiceService/DeleteProfilePicture1',
|
|
2372
|
+
request,
|
|
2373
|
+
metadata || {},
|
|
2374
|
+
methodDescriptor_SniipUserServiceService_DeleteProfilePicture1,
|
|
2375
|
+
callback);
|
|
2376
|
+
};
|
|
2377
|
+
|
|
2378
|
+
|
|
2379
|
+
/**
|
|
2380
|
+
* @param {!proto.google.protobuf.Empty} request The
|
|
2381
|
+
* request proto
|
|
2382
|
+
* @param {?Object<string, string>} metadata User defined
|
|
2383
|
+
* call metadata
|
|
2384
|
+
* @return {!Promise<!proto.sniipuserservice.ResponseCode>}
|
|
2385
|
+
* Promise that resolves to the response
|
|
2386
|
+
*/
|
|
2387
|
+
proto.sniipuserservice.SniipUserServiceServicePromiseClient.prototype.deleteProfilePicture1 =
|
|
2388
|
+
function(request, metadata) {
|
|
2389
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
2390
|
+
'/sniipuserservice.SniipUserServiceService/DeleteProfilePicture1',
|
|
2391
|
+
request,
|
|
2392
|
+
metadata || {},
|
|
2393
|
+
methodDescriptor_SniipUserServiceService_DeleteProfilePicture1);
|
|
2394
|
+
};
|
|
2395
|
+
|
|
2396
|
+
|
|
2317
2397
|
/**
|
|
2318
2398
|
* @const
|
|
2319
2399
|
* @type {!grpc.web.MethodDescriptor<
|