@sniipwebmaster/checkout-service-client-grpcweb 26.2.291 → 26.6.445
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 +244 -61
- package/dependancies/service_pb.js +5581 -2610
- package/package.json +1 -1
|
@@ -328,6 +328,67 @@ proto.checkoutserviceapi.CheckoutServicePromiseClient.prototype.settlementFileDe
|
|
|
328
328
|
};
|
|
329
329
|
|
|
330
330
|
|
|
331
|
+
/**
|
|
332
|
+
* @const
|
|
333
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
334
|
+
* !proto.checkoutserviceapi.PubSubPushRequest,
|
|
335
|
+
* !proto.checkoutserviceapi.ResponseCode>}
|
|
336
|
+
*/
|
|
337
|
+
const methodDescriptor_CheckoutService_HandleSettlementPush = new grpc.web.MethodDescriptor(
|
|
338
|
+
'/checkoutserviceapi.CheckoutService/HandleSettlementPush',
|
|
339
|
+
grpc.web.MethodType.UNARY,
|
|
340
|
+
proto.checkoutserviceapi.PubSubPushRequest,
|
|
341
|
+
proto.checkoutserviceapi.ResponseCode,
|
|
342
|
+
/**
|
|
343
|
+
* @param {!proto.checkoutserviceapi.PubSubPushRequest} request
|
|
344
|
+
* @return {!Uint8Array}
|
|
345
|
+
*/
|
|
346
|
+
function(request) {
|
|
347
|
+
return request.serializeBinary();
|
|
348
|
+
},
|
|
349
|
+
proto.checkoutserviceapi.ResponseCode.deserializeBinary
|
|
350
|
+
);
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
/**
|
|
354
|
+
* @param {!proto.checkoutserviceapi.PubSubPushRequest} request The
|
|
355
|
+
* request proto
|
|
356
|
+
* @param {?Object<string, string>} metadata User defined
|
|
357
|
+
* call metadata
|
|
358
|
+
* @param {function(?grpc.web.RpcError, ?proto.checkoutserviceapi.ResponseCode)}
|
|
359
|
+
* callback The callback function(error, response)
|
|
360
|
+
* @return {!grpc.web.ClientReadableStream<!proto.checkoutserviceapi.ResponseCode>|undefined}
|
|
361
|
+
* The XHR Node Readable Stream
|
|
362
|
+
*/
|
|
363
|
+
proto.checkoutserviceapi.CheckoutServiceClient.prototype.handleSettlementPush =
|
|
364
|
+
function(request, metadata, callback) {
|
|
365
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
366
|
+
'/checkoutserviceapi.CheckoutService/HandleSettlementPush',
|
|
367
|
+
request,
|
|
368
|
+
metadata || {},
|
|
369
|
+
methodDescriptor_CheckoutService_HandleSettlementPush,
|
|
370
|
+
callback);
|
|
371
|
+
};
|
|
372
|
+
|
|
373
|
+
|
|
374
|
+
/**
|
|
375
|
+
* @param {!proto.checkoutserviceapi.PubSubPushRequest} request The
|
|
376
|
+
* request proto
|
|
377
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
378
|
+
* call metadata
|
|
379
|
+
* @return {!Promise<!proto.checkoutserviceapi.ResponseCode>}
|
|
380
|
+
* Promise that resolves to the response
|
|
381
|
+
*/
|
|
382
|
+
proto.checkoutserviceapi.CheckoutServicePromiseClient.prototype.handleSettlementPush =
|
|
383
|
+
function(request, metadata) {
|
|
384
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
385
|
+
'/checkoutserviceapi.CheckoutService/HandleSettlementPush',
|
|
386
|
+
request,
|
|
387
|
+
metadata || {},
|
|
388
|
+
methodDescriptor_CheckoutService_HandleSettlementPush);
|
|
389
|
+
};
|
|
390
|
+
|
|
391
|
+
|
|
331
392
|
/**
|
|
332
393
|
* @const
|
|
333
394
|
* @type {!grpc.web.MethodDescriptor<
|
|
@@ -389,6 +450,189 @@ proto.checkoutserviceapi.CheckoutServicePromiseClient.prototype.makePayment =
|
|
|
389
450
|
};
|
|
390
451
|
|
|
391
452
|
|
|
453
|
+
/**
|
|
454
|
+
* @const
|
|
455
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
456
|
+
* !proto.checkoutserviceapi.TokenizeGooglePayRequest,
|
|
457
|
+
* !proto.checkoutserviceapi.TokenizeGooglePayResponse>}
|
|
458
|
+
*/
|
|
459
|
+
const methodDescriptor_CheckoutService_TokenizeGooglePay = new grpc.web.MethodDescriptor(
|
|
460
|
+
'/checkoutserviceapi.CheckoutService/TokenizeGooglePay',
|
|
461
|
+
grpc.web.MethodType.UNARY,
|
|
462
|
+
proto.checkoutserviceapi.TokenizeGooglePayRequest,
|
|
463
|
+
proto.checkoutserviceapi.TokenizeGooglePayResponse,
|
|
464
|
+
/**
|
|
465
|
+
* @param {!proto.checkoutserviceapi.TokenizeGooglePayRequest} request
|
|
466
|
+
* @return {!Uint8Array}
|
|
467
|
+
*/
|
|
468
|
+
function(request) {
|
|
469
|
+
return request.serializeBinary();
|
|
470
|
+
},
|
|
471
|
+
proto.checkoutserviceapi.TokenizeGooglePayResponse.deserializeBinary
|
|
472
|
+
);
|
|
473
|
+
|
|
474
|
+
|
|
475
|
+
/**
|
|
476
|
+
* @param {!proto.checkoutserviceapi.TokenizeGooglePayRequest} request The
|
|
477
|
+
* request proto
|
|
478
|
+
* @param {?Object<string, string>} metadata User defined
|
|
479
|
+
* call metadata
|
|
480
|
+
* @param {function(?grpc.web.RpcError, ?proto.checkoutserviceapi.TokenizeGooglePayResponse)}
|
|
481
|
+
* callback The callback function(error, response)
|
|
482
|
+
* @return {!grpc.web.ClientReadableStream<!proto.checkoutserviceapi.TokenizeGooglePayResponse>|undefined}
|
|
483
|
+
* The XHR Node Readable Stream
|
|
484
|
+
*/
|
|
485
|
+
proto.checkoutserviceapi.CheckoutServiceClient.prototype.tokenizeGooglePay =
|
|
486
|
+
function(request, metadata, callback) {
|
|
487
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
488
|
+
'/checkoutserviceapi.CheckoutService/TokenizeGooglePay',
|
|
489
|
+
request,
|
|
490
|
+
metadata || {},
|
|
491
|
+
methodDescriptor_CheckoutService_TokenizeGooglePay,
|
|
492
|
+
callback);
|
|
493
|
+
};
|
|
494
|
+
|
|
495
|
+
|
|
496
|
+
/**
|
|
497
|
+
* @param {!proto.checkoutserviceapi.TokenizeGooglePayRequest} request The
|
|
498
|
+
* request proto
|
|
499
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
500
|
+
* call metadata
|
|
501
|
+
* @return {!Promise<!proto.checkoutserviceapi.TokenizeGooglePayResponse>}
|
|
502
|
+
* Promise that resolves to the response
|
|
503
|
+
*/
|
|
504
|
+
proto.checkoutserviceapi.CheckoutServicePromiseClient.prototype.tokenizeGooglePay =
|
|
505
|
+
function(request, metadata) {
|
|
506
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
507
|
+
'/checkoutserviceapi.CheckoutService/TokenizeGooglePay',
|
|
508
|
+
request,
|
|
509
|
+
metadata || {},
|
|
510
|
+
methodDescriptor_CheckoutService_TokenizeGooglePay);
|
|
511
|
+
};
|
|
512
|
+
|
|
513
|
+
|
|
514
|
+
/**
|
|
515
|
+
* @const
|
|
516
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
517
|
+
* !proto.checkoutserviceapi.TokenPaymentRequest,
|
|
518
|
+
* !proto.checkoutserviceapi.PaymentResponse>}
|
|
519
|
+
*/
|
|
520
|
+
const methodDescriptor_CheckoutService_MakeTokenPayment = new grpc.web.MethodDescriptor(
|
|
521
|
+
'/checkoutserviceapi.CheckoutService/MakeTokenPayment',
|
|
522
|
+
grpc.web.MethodType.UNARY,
|
|
523
|
+
proto.checkoutserviceapi.TokenPaymentRequest,
|
|
524
|
+
proto.checkoutserviceapi.PaymentResponse,
|
|
525
|
+
/**
|
|
526
|
+
* @param {!proto.checkoutserviceapi.TokenPaymentRequest} request
|
|
527
|
+
* @return {!Uint8Array}
|
|
528
|
+
*/
|
|
529
|
+
function(request) {
|
|
530
|
+
return request.serializeBinary();
|
|
531
|
+
},
|
|
532
|
+
proto.checkoutserviceapi.PaymentResponse.deserializeBinary
|
|
533
|
+
);
|
|
534
|
+
|
|
535
|
+
|
|
536
|
+
/**
|
|
537
|
+
* @param {!proto.checkoutserviceapi.TokenPaymentRequest} request The
|
|
538
|
+
* request proto
|
|
539
|
+
* @param {?Object<string, string>} metadata User defined
|
|
540
|
+
* call metadata
|
|
541
|
+
* @param {function(?grpc.web.RpcError, ?proto.checkoutserviceapi.PaymentResponse)}
|
|
542
|
+
* callback The callback function(error, response)
|
|
543
|
+
* @return {!grpc.web.ClientReadableStream<!proto.checkoutserviceapi.PaymentResponse>|undefined}
|
|
544
|
+
* The XHR Node Readable Stream
|
|
545
|
+
*/
|
|
546
|
+
proto.checkoutserviceapi.CheckoutServiceClient.prototype.makeTokenPayment =
|
|
547
|
+
function(request, metadata, callback) {
|
|
548
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
549
|
+
'/checkoutserviceapi.CheckoutService/MakeTokenPayment',
|
|
550
|
+
request,
|
|
551
|
+
metadata || {},
|
|
552
|
+
methodDescriptor_CheckoutService_MakeTokenPayment,
|
|
553
|
+
callback);
|
|
554
|
+
};
|
|
555
|
+
|
|
556
|
+
|
|
557
|
+
/**
|
|
558
|
+
* @param {!proto.checkoutserviceapi.TokenPaymentRequest} request The
|
|
559
|
+
* request proto
|
|
560
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
561
|
+
* call metadata
|
|
562
|
+
* @return {!Promise<!proto.checkoutserviceapi.PaymentResponse>}
|
|
563
|
+
* Promise that resolves to the response
|
|
564
|
+
*/
|
|
565
|
+
proto.checkoutserviceapi.CheckoutServicePromiseClient.prototype.makeTokenPayment =
|
|
566
|
+
function(request, metadata) {
|
|
567
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
568
|
+
'/checkoutserviceapi.CheckoutService/MakeTokenPayment',
|
|
569
|
+
request,
|
|
570
|
+
metadata || {},
|
|
571
|
+
methodDescriptor_CheckoutService_MakeTokenPayment);
|
|
572
|
+
};
|
|
573
|
+
|
|
574
|
+
|
|
575
|
+
/**
|
|
576
|
+
* @const
|
|
577
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
578
|
+
* !proto.checkoutserviceapi.RefundRequest,
|
|
579
|
+
* !proto.checkoutserviceapi.RefundResponse>}
|
|
580
|
+
*/
|
|
581
|
+
const methodDescriptor_CheckoutService_MakeRefund = new grpc.web.MethodDescriptor(
|
|
582
|
+
'/checkoutserviceapi.CheckoutService/MakeRefund',
|
|
583
|
+
grpc.web.MethodType.UNARY,
|
|
584
|
+
proto.checkoutserviceapi.RefundRequest,
|
|
585
|
+
proto.checkoutserviceapi.RefundResponse,
|
|
586
|
+
/**
|
|
587
|
+
* @param {!proto.checkoutserviceapi.RefundRequest} request
|
|
588
|
+
* @return {!Uint8Array}
|
|
589
|
+
*/
|
|
590
|
+
function(request) {
|
|
591
|
+
return request.serializeBinary();
|
|
592
|
+
},
|
|
593
|
+
proto.checkoutserviceapi.RefundResponse.deserializeBinary
|
|
594
|
+
);
|
|
595
|
+
|
|
596
|
+
|
|
597
|
+
/**
|
|
598
|
+
* @param {!proto.checkoutserviceapi.RefundRequest} request The
|
|
599
|
+
* request proto
|
|
600
|
+
* @param {?Object<string, string>} metadata User defined
|
|
601
|
+
* call metadata
|
|
602
|
+
* @param {function(?grpc.web.RpcError, ?proto.checkoutserviceapi.RefundResponse)}
|
|
603
|
+
* callback The callback function(error, response)
|
|
604
|
+
* @return {!grpc.web.ClientReadableStream<!proto.checkoutserviceapi.RefundResponse>|undefined}
|
|
605
|
+
* The XHR Node Readable Stream
|
|
606
|
+
*/
|
|
607
|
+
proto.checkoutserviceapi.CheckoutServiceClient.prototype.makeRefund =
|
|
608
|
+
function(request, metadata, callback) {
|
|
609
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
610
|
+
'/checkoutserviceapi.CheckoutService/MakeRefund',
|
|
611
|
+
request,
|
|
612
|
+
metadata || {},
|
|
613
|
+
methodDescriptor_CheckoutService_MakeRefund,
|
|
614
|
+
callback);
|
|
615
|
+
};
|
|
616
|
+
|
|
617
|
+
|
|
618
|
+
/**
|
|
619
|
+
* @param {!proto.checkoutserviceapi.RefundRequest} request The
|
|
620
|
+
* request proto
|
|
621
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
622
|
+
* call metadata
|
|
623
|
+
* @return {!Promise<!proto.checkoutserviceapi.RefundResponse>}
|
|
624
|
+
* Promise that resolves to the response
|
|
625
|
+
*/
|
|
626
|
+
proto.checkoutserviceapi.CheckoutServicePromiseClient.prototype.makeRefund =
|
|
627
|
+
function(request, metadata) {
|
|
628
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
629
|
+
'/checkoutserviceapi.CheckoutService/MakeRefund',
|
|
630
|
+
request,
|
|
631
|
+
metadata || {},
|
|
632
|
+
methodDescriptor_CheckoutService_MakeRefund);
|
|
633
|
+
};
|
|
634
|
+
|
|
635
|
+
|
|
392
636
|
/**
|
|
393
637
|
* @const
|
|
394
638
|
* @type {!grpc.web.MethodDescriptor<
|
|
@@ -572,67 +816,6 @@ proto.checkoutserviceapi.CheckoutServicePromiseClient.prototype.getTransaction =
|
|
|
572
816
|
};
|
|
573
817
|
|
|
574
818
|
|
|
575
|
-
/**
|
|
576
|
-
* @const
|
|
577
|
-
* @type {!grpc.web.MethodDescriptor<
|
|
578
|
-
* !proto.checkoutserviceapi.WebhookRequest,
|
|
579
|
-
* !proto.checkoutserviceapi.WebhookResponse>}
|
|
580
|
-
*/
|
|
581
|
-
const methodDescriptor_CheckoutService_HandleWebhook = new grpc.web.MethodDescriptor(
|
|
582
|
-
'/checkoutserviceapi.CheckoutService/HandleWebhook',
|
|
583
|
-
grpc.web.MethodType.UNARY,
|
|
584
|
-
proto.checkoutserviceapi.WebhookRequest,
|
|
585
|
-
proto.checkoutserviceapi.WebhookResponse,
|
|
586
|
-
/**
|
|
587
|
-
* @param {!proto.checkoutserviceapi.WebhookRequest} request
|
|
588
|
-
* @return {!Uint8Array}
|
|
589
|
-
*/
|
|
590
|
-
function(request) {
|
|
591
|
-
return request.serializeBinary();
|
|
592
|
-
},
|
|
593
|
-
proto.checkoutserviceapi.WebhookResponse.deserializeBinary
|
|
594
|
-
);
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
/**
|
|
598
|
-
* @param {!proto.checkoutserviceapi.WebhookRequest} request The
|
|
599
|
-
* request proto
|
|
600
|
-
* @param {?Object<string, string>} metadata User defined
|
|
601
|
-
* call metadata
|
|
602
|
-
* @param {function(?grpc.web.RpcError, ?proto.checkoutserviceapi.WebhookResponse)}
|
|
603
|
-
* callback The callback function(error, response)
|
|
604
|
-
* @return {!grpc.web.ClientReadableStream<!proto.checkoutserviceapi.WebhookResponse>|undefined}
|
|
605
|
-
* The XHR Node Readable Stream
|
|
606
|
-
*/
|
|
607
|
-
proto.checkoutserviceapi.CheckoutServiceClient.prototype.handleWebhook =
|
|
608
|
-
function(request, metadata, callback) {
|
|
609
|
-
return this.client_.rpcCall(this.hostname_ +
|
|
610
|
-
'/checkoutserviceapi.CheckoutService/HandleWebhook',
|
|
611
|
-
request,
|
|
612
|
-
metadata || {},
|
|
613
|
-
methodDescriptor_CheckoutService_HandleWebhook,
|
|
614
|
-
callback);
|
|
615
|
-
};
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
/**
|
|
619
|
-
* @param {!proto.checkoutserviceapi.WebhookRequest} request The
|
|
620
|
-
* request proto
|
|
621
|
-
* @param {?Object<string, string>=} metadata User defined
|
|
622
|
-
* call metadata
|
|
623
|
-
* @return {!Promise<!proto.checkoutserviceapi.WebhookResponse>}
|
|
624
|
-
* Promise that resolves to the response
|
|
625
|
-
*/
|
|
626
|
-
proto.checkoutserviceapi.CheckoutServicePromiseClient.prototype.handleWebhook =
|
|
627
|
-
function(request, metadata) {
|
|
628
|
-
return this.client_.unaryCall(this.hostname_ +
|
|
629
|
-
'/checkoutserviceapi.CheckoutService/HandleWebhook',
|
|
630
|
-
request,
|
|
631
|
-
metadata || {},
|
|
632
|
-
methodDescriptor_CheckoutService_HandleWebhook);
|
|
633
|
-
};
|
|
634
|
-
|
|
635
|
-
|
|
636
819
|
/**
|
|
637
820
|
* @const
|
|
638
821
|
* @type {!grpc.web.MethodDescriptor<
|