@sniipwebmaster/user-service-client-grpcweb 26.7.14751 → 26.8.14767
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.
- package/dependancies/service_grpc_web_pb.js +183 -0
- package/dependancies/service_pb.js +1292 -40
- package/package.json +1 -1
|
@@ -9594,5 +9594,188 @@ proto.sniipuserservice.SniipUserServiceServicePromiseClient.prototype.getCallerI
|
|
|
9594
9594
|
};
|
|
9595
9595
|
|
|
9596
9596
|
|
|
9597
|
+
/**
|
|
9598
|
+
* @const
|
|
9599
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
9600
|
+
* !proto.sniipuserservice.CreateGuestPayerRequest,
|
|
9601
|
+
* !proto.sniipuserservice.CreateGuestPayerResponse>}
|
|
9602
|
+
*/
|
|
9603
|
+
const methodDescriptor_SniipUserServiceService_CreateGuestPayer = new grpc.web.MethodDescriptor(
|
|
9604
|
+
'/sniipuserservice.SniipUserServiceService/CreateGuestPayer',
|
|
9605
|
+
grpc.web.MethodType.UNARY,
|
|
9606
|
+
proto.sniipuserservice.CreateGuestPayerRequest,
|
|
9607
|
+
proto.sniipuserservice.CreateGuestPayerResponse,
|
|
9608
|
+
/**
|
|
9609
|
+
* @param {!proto.sniipuserservice.CreateGuestPayerRequest} request
|
|
9610
|
+
* @return {!Uint8Array}
|
|
9611
|
+
*/
|
|
9612
|
+
function(request) {
|
|
9613
|
+
return request.serializeBinary();
|
|
9614
|
+
},
|
|
9615
|
+
proto.sniipuserservice.CreateGuestPayerResponse.deserializeBinary
|
|
9616
|
+
);
|
|
9617
|
+
|
|
9618
|
+
|
|
9619
|
+
/**
|
|
9620
|
+
* @param {!proto.sniipuserservice.CreateGuestPayerRequest} request The
|
|
9621
|
+
* request proto
|
|
9622
|
+
* @param {?Object<string, string>} metadata User defined
|
|
9623
|
+
* call metadata
|
|
9624
|
+
* @param {function(?grpc.web.RpcError, ?proto.sniipuserservice.CreateGuestPayerResponse)}
|
|
9625
|
+
* callback The callback function(error, response)
|
|
9626
|
+
* @return {!grpc.web.ClientReadableStream<!proto.sniipuserservice.CreateGuestPayerResponse>|undefined}
|
|
9627
|
+
* The XHR Node Readable Stream
|
|
9628
|
+
*/
|
|
9629
|
+
proto.sniipuserservice.SniipUserServiceServiceClient.prototype.createGuestPayer =
|
|
9630
|
+
function(request, metadata, callback) {
|
|
9631
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
9632
|
+
'/sniipuserservice.SniipUserServiceService/CreateGuestPayer',
|
|
9633
|
+
request,
|
|
9634
|
+
metadata || {},
|
|
9635
|
+
methodDescriptor_SniipUserServiceService_CreateGuestPayer,
|
|
9636
|
+
callback);
|
|
9637
|
+
};
|
|
9638
|
+
|
|
9639
|
+
|
|
9640
|
+
/**
|
|
9641
|
+
* @param {!proto.sniipuserservice.CreateGuestPayerRequest} request The
|
|
9642
|
+
* request proto
|
|
9643
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
9644
|
+
* call metadata
|
|
9645
|
+
* @return {!Promise<!proto.sniipuserservice.CreateGuestPayerResponse>}
|
|
9646
|
+
* Promise that resolves to the response
|
|
9647
|
+
*/
|
|
9648
|
+
proto.sniipuserservice.SniipUserServiceServicePromiseClient.prototype.createGuestPayer =
|
|
9649
|
+
function(request, metadata) {
|
|
9650
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
9651
|
+
'/sniipuserservice.SniipUserServiceService/CreateGuestPayer',
|
|
9652
|
+
request,
|
|
9653
|
+
metadata || {},
|
|
9654
|
+
methodDescriptor_SniipUserServiceService_CreateGuestPayer);
|
|
9655
|
+
};
|
|
9656
|
+
|
|
9657
|
+
|
|
9658
|
+
/**
|
|
9659
|
+
* @const
|
|
9660
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
9661
|
+
* !proto.sniipuserservice.GetGuestContactRequest,
|
|
9662
|
+
* !proto.sniipuserservice.GetGuestContactResponse>}
|
|
9663
|
+
*/
|
|
9664
|
+
const methodDescriptor_SniipUserServiceService_GetGuestContact = new grpc.web.MethodDescriptor(
|
|
9665
|
+
'/sniipuserservice.SniipUserServiceService/GetGuestContact',
|
|
9666
|
+
grpc.web.MethodType.UNARY,
|
|
9667
|
+
proto.sniipuserservice.GetGuestContactRequest,
|
|
9668
|
+
proto.sniipuserservice.GetGuestContactResponse,
|
|
9669
|
+
/**
|
|
9670
|
+
* @param {!proto.sniipuserservice.GetGuestContactRequest} request
|
|
9671
|
+
* @return {!Uint8Array}
|
|
9672
|
+
*/
|
|
9673
|
+
function(request) {
|
|
9674
|
+
return request.serializeBinary();
|
|
9675
|
+
},
|
|
9676
|
+
proto.sniipuserservice.GetGuestContactResponse.deserializeBinary
|
|
9677
|
+
);
|
|
9678
|
+
|
|
9679
|
+
|
|
9680
|
+
/**
|
|
9681
|
+
* @param {!proto.sniipuserservice.GetGuestContactRequest} request The
|
|
9682
|
+
* request proto
|
|
9683
|
+
* @param {?Object<string, string>} metadata User defined
|
|
9684
|
+
* call metadata
|
|
9685
|
+
* @param {function(?grpc.web.RpcError, ?proto.sniipuserservice.GetGuestContactResponse)}
|
|
9686
|
+
* callback The callback function(error, response)
|
|
9687
|
+
* @return {!grpc.web.ClientReadableStream<!proto.sniipuserservice.GetGuestContactResponse>|undefined}
|
|
9688
|
+
* The XHR Node Readable Stream
|
|
9689
|
+
*/
|
|
9690
|
+
proto.sniipuserservice.SniipUserServiceServiceClient.prototype.getGuestContact =
|
|
9691
|
+
function(request, metadata, callback) {
|
|
9692
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
9693
|
+
'/sniipuserservice.SniipUserServiceService/GetGuestContact',
|
|
9694
|
+
request,
|
|
9695
|
+
metadata || {},
|
|
9696
|
+
methodDescriptor_SniipUserServiceService_GetGuestContact,
|
|
9697
|
+
callback);
|
|
9698
|
+
};
|
|
9699
|
+
|
|
9700
|
+
|
|
9701
|
+
/**
|
|
9702
|
+
* @param {!proto.sniipuserservice.GetGuestContactRequest} request The
|
|
9703
|
+
* request proto
|
|
9704
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
9705
|
+
* call metadata
|
|
9706
|
+
* @return {!Promise<!proto.sniipuserservice.GetGuestContactResponse>}
|
|
9707
|
+
* Promise that resolves to the response
|
|
9708
|
+
*/
|
|
9709
|
+
proto.sniipuserservice.SniipUserServiceServicePromiseClient.prototype.getGuestContact =
|
|
9710
|
+
function(request, metadata) {
|
|
9711
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
9712
|
+
'/sniipuserservice.SniipUserServiceService/GetGuestContact',
|
|
9713
|
+
request,
|
|
9714
|
+
metadata || {},
|
|
9715
|
+
methodDescriptor_SniipUserServiceService_GetGuestContact);
|
|
9716
|
+
};
|
|
9717
|
+
|
|
9718
|
+
|
|
9719
|
+
/**
|
|
9720
|
+
* @const
|
|
9721
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
9722
|
+
* !proto.sniipuserservice.RedeemCapabilityTokenRequest,
|
|
9723
|
+
* !proto.sniipuserservice.RedeemCapabilityTokenResponse>}
|
|
9724
|
+
*/
|
|
9725
|
+
const methodDescriptor_SniipUserServiceService_RedeemCapabilityToken = new grpc.web.MethodDescriptor(
|
|
9726
|
+
'/sniipuserservice.SniipUserServiceService/RedeemCapabilityToken',
|
|
9727
|
+
grpc.web.MethodType.UNARY,
|
|
9728
|
+
proto.sniipuserservice.RedeemCapabilityTokenRequest,
|
|
9729
|
+
proto.sniipuserservice.RedeemCapabilityTokenResponse,
|
|
9730
|
+
/**
|
|
9731
|
+
* @param {!proto.sniipuserservice.RedeemCapabilityTokenRequest} request
|
|
9732
|
+
* @return {!Uint8Array}
|
|
9733
|
+
*/
|
|
9734
|
+
function(request) {
|
|
9735
|
+
return request.serializeBinary();
|
|
9736
|
+
},
|
|
9737
|
+
proto.sniipuserservice.RedeemCapabilityTokenResponse.deserializeBinary
|
|
9738
|
+
);
|
|
9739
|
+
|
|
9740
|
+
|
|
9741
|
+
/**
|
|
9742
|
+
* @param {!proto.sniipuserservice.RedeemCapabilityTokenRequest} request The
|
|
9743
|
+
* request proto
|
|
9744
|
+
* @param {?Object<string, string>} metadata User defined
|
|
9745
|
+
* call metadata
|
|
9746
|
+
* @param {function(?grpc.web.RpcError, ?proto.sniipuserservice.RedeemCapabilityTokenResponse)}
|
|
9747
|
+
* callback The callback function(error, response)
|
|
9748
|
+
* @return {!grpc.web.ClientReadableStream<!proto.sniipuserservice.RedeemCapabilityTokenResponse>|undefined}
|
|
9749
|
+
* The XHR Node Readable Stream
|
|
9750
|
+
*/
|
|
9751
|
+
proto.sniipuserservice.SniipUserServiceServiceClient.prototype.redeemCapabilityToken =
|
|
9752
|
+
function(request, metadata, callback) {
|
|
9753
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
9754
|
+
'/sniipuserservice.SniipUserServiceService/RedeemCapabilityToken',
|
|
9755
|
+
request,
|
|
9756
|
+
metadata || {},
|
|
9757
|
+
methodDescriptor_SniipUserServiceService_RedeemCapabilityToken,
|
|
9758
|
+
callback);
|
|
9759
|
+
};
|
|
9760
|
+
|
|
9761
|
+
|
|
9762
|
+
/**
|
|
9763
|
+
* @param {!proto.sniipuserservice.RedeemCapabilityTokenRequest} request The
|
|
9764
|
+
* request proto
|
|
9765
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
9766
|
+
* call metadata
|
|
9767
|
+
* @return {!Promise<!proto.sniipuserservice.RedeemCapabilityTokenResponse>}
|
|
9768
|
+
* Promise that resolves to the response
|
|
9769
|
+
*/
|
|
9770
|
+
proto.sniipuserservice.SniipUserServiceServicePromiseClient.prototype.redeemCapabilityToken =
|
|
9771
|
+
function(request, metadata) {
|
|
9772
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
9773
|
+
'/sniipuserservice.SniipUserServiceService/RedeemCapabilityToken',
|
|
9774
|
+
request,
|
|
9775
|
+
metadata || {},
|
|
9776
|
+
methodDescriptor_SniipUserServiceService_RedeemCapabilityToken);
|
|
9777
|
+
};
|
|
9778
|
+
|
|
9779
|
+
|
|
9597
9780
|
module.exports = proto.sniipuserservice;
|
|
9598
9781
|
|