rebilly-js-sdk 56.26.5 → 56.27.1
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/CHANGELOG.md +1 -1
- package/dist/rebilly-js-sdk.d.ts +36 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
## [56.
|
|
1
|
+
## [56.27.1](https://github.com/Rebilly/rebilly/compare/rebilly-js-sdk-v56.27.0...rebilly-js-sdk-v56.27.1) (2024-05-20)
|
package/dist/rebilly-js-sdk.d.ts
CHANGED
|
@@ -7625,6 +7625,7 @@ export interface coreComponents {
|
|
|
7625
7625
|
| "Paysafecard"
|
|
7626
7626
|
| "Paysafecash"
|
|
7627
7627
|
| "PayTabs"
|
|
7628
|
+
| "PayU"
|
|
7628
7629
|
| "PayULatam"
|
|
7629
7630
|
| "Payvision"
|
|
7630
7631
|
| "PharosPayments"
|
|
@@ -7826,6 +7827,7 @@ export interface coreComponents {
|
|
|
7826
7827
|
| "PayRedeem"
|
|
7827
7828
|
| "PayRetailers"
|
|
7828
7829
|
| "PayTabs"
|
|
7830
|
+
| "PayU"
|
|
7829
7831
|
| "PayULatam"
|
|
7830
7832
|
| "Payvision"
|
|
7831
7833
|
| "PharosPayments"
|
|
@@ -17967,6 +17969,16 @@ export interface coreComponents {
|
|
|
17967
17969
|
serverKey: string;
|
|
17968
17970
|
};
|
|
17969
17971
|
};
|
|
17972
|
+
/** PayU gateway configuration. */
|
|
17973
|
+
PayU: coreComponents["schemas"]["GatewayAccount"] & {
|
|
17974
|
+
/** PayU credentials object. */
|
|
17975
|
+
credentials: {
|
|
17976
|
+
/** Merchant key of the PayU merchant. */
|
|
17977
|
+
merchantKey: string;
|
|
17978
|
+
/** Merchant salt of the PayU merchant. */
|
|
17979
|
+
merchantSalt: string;
|
|
17980
|
+
};
|
|
17981
|
+
};
|
|
17970
17982
|
/** PayULatam gateway configuration. */
|
|
17971
17983
|
PayULatam: coreComponents["schemas"]["GatewayAccount"] & {
|
|
17972
17984
|
/** PayULatam credentials object. */
|
|
@@ -41128,6 +41140,7 @@ export interface storefrontComponents {
|
|
|
41128
41140
|
| "Paysafecard"
|
|
41129
41141
|
| "Paysafecash"
|
|
41130
41142
|
| "PayTabs"
|
|
41143
|
+
| "PayU"
|
|
41131
41144
|
| "PayULatam"
|
|
41132
41145
|
| "Payvision"
|
|
41133
41146
|
| "PharosPayments"
|
|
@@ -41329,6 +41342,7 @@ export interface storefrontComponents {
|
|
|
41329
41342
|
| "PayRedeem"
|
|
41330
41343
|
| "PayRetailers"
|
|
41331
41344
|
| "PayTabs"
|
|
41345
|
+
| "PayU"
|
|
41332
41346
|
| "PayULatam"
|
|
41333
41347
|
| "Payvision"
|
|
41334
41348
|
| "PharosPayments"
|
|
@@ -51470,6 +51484,16 @@ export interface storefrontComponents {
|
|
|
51470
51484
|
serverKey: string;
|
|
51471
51485
|
};
|
|
51472
51486
|
};
|
|
51487
|
+
/** PayU gateway configuration. */
|
|
51488
|
+
PayU: storefrontComponents["schemas"]["GatewayAccount"] & {
|
|
51489
|
+
/** PayU credentials object. */
|
|
51490
|
+
credentials: {
|
|
51491
|
+
/** Merchant key of the PayU merchant. */
|
|
51492
|
+
merchantKey: string;
|
|
51493
|
+
/** Merchant salt of the PayU merchant. */
|
|
51494
|
+
merchantSalt: string;
|
|
51495
|
+
};
|
|
51496
|
+
};
|
|
51473
51497
|
/** PayULatam gateway configuration. */
|
|
51474
51498
|
PayULatam: storefrontComponents["schemas"]["GatewayAccount"] & {
|
|
51475
51499
|
/** PayULatam credentials object. */
|
|
@@ -63670,6 +63694,7 @@ export interface reportsComponents {
|
|
|
63670
63694
|
| "Paysafecard"
|
|
63671
63695
|
| "Paysafecash"
|
|
63672
63696
|
| "PayTabs"
|
|
63697
|
+
| "PayU"
|
|
63673
63698
|
| "PayULatam"
|
|
63674
63699
|
| "Payvision"
|
|
63675
63700
|
| "PharosPayments"
|
|
@@ -63871,6 +63896,7 @@ export interface reportsComponents {
|
|
|
63871
63896
|
| "PayRedeem"
|
|
63872
63897
|
| "PayRetailers"
|
|
63873
63898
|
| "PayTabs"
|
|
63899
|
+
| "PayU"
|
|
63874
63900
|
| "PayULatam"
|
|
63875
63901
|
| "Payvision"
|
|
63876
63902
|
| "PharosPayments"
|
|
@@ -74012,6 +74038,16 @@ export interface reportsComponents {
|
|
|
74012
74038
|
serverKey: string;
|
|
74013
74039
|
};
|
|
74014
74040
|
};
|
|
74041
|
+
/** PayU gateway configuration. */
|
|
74042
|
+
PayU: reportsComponents["schemas"]["GatewayAccount"] & {
|
|
74043
|
+
/** PayU credentials object. */
|
|
74044
|
+
credentials: {
|
|
74045
|
+
/** Merchant key of the PayU merchant. */
|
|
74046
|
+
merchantKey: string;
|
|
74047
|
+
/** Merchant salt of the PayU merchant. */
|
|
74048
|
+
merchantSalt: string;
|
|
74049
|
+
};
|
|
74050
|
+
};
|
|
74015
74051
|
/** PayULatam gateway configuration. */
|
|
74016
74052
|
PayULatam: reportsComponents["schemas"]["GatewayAccount"] & {
|
|
74017
74053
|
/** PayULatam credentials object. */
|