@unifold/ui-web 0.1.76 → 0.1.77
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/dist/index.js +6 -2
- package/dist/index.mjs +6 -2
- package/package.json +5 -5
package/dist/index.js
CHANGED
|
@@ -39769,7 +39769,7 @@ function generateKSUID() {
|
|
|
39769
39769
|
function generatePrefixedKSUID(prefix) {
|
|
39770
39770
|
return `${prefix}_${generateKSUID()}`;
|
|
39771
39771
|
}
|
|
39772
|
-
var SDK_VERSION = true ? "0.1.
|
|
39772
|
+
var SDK_VERSION = true ? "0.1.77" : "0.0.0-dev";
|
|
39773
39773
|
var CLIENT_VERSION_HEADER = "x-unifold-client-version";
|
|
39774
39774
|
var CLIENT_USER_AGENT_HEADER = "x-unifold-client-user-agent";
|
|
39775
39775
|
function detectRuntime() {
|
|
@@ -47914,7 +47914,7 @@ function generateKSUID2() {
|
|
|
47914
47914
|
function generatePrefixedKSUID2(prefix) {
|
|
47915
47915
|
return `${prefix}_${generateKSUID2()}`;
|
|
47916
47916
|
}
|
|
47917
|
-
var PACKAGE_VERSION = "0.1.
|
|
47917
|
+
var PACKAGE_VERSION = "0.1.77";
|
|
47918
47918
|
var LIBRARY_NAME = "@unifold/analytics";
|
|
47919
47919
|
var DEFAULT_DEDUP_MS = 500;
|
|
47920
47920
|
var SESSION_PREFIX = "asess";
|
|
@@ -59246,6 +59246,10 @@ function BuyWithCard({
|
|
|
59246
59246
|
wallet_address: wallet.address,
|
|
59247
59247
|
subdivision_code: userIpInfo?.subdivisionCode || void 0,
|
|
59248
59248
|
external_id: externalId,
|
|
59249
|
+
// The rail this quote was priced for, so the provider opens on it. Most
|
|
59250
|
+
// are `card`, which is also the server default, but a local rail (e.g.
|
|
59251
|
+
// `upi` in India) is the whole reason its provider was quoted.
|
|
59252
|
+
payment_method_type: selectedProvider.payment_method_type,
|
|
59249
59253
|
// Exactly one of source_amount / destination_amount (mutually exclusive):
|
|
59250
59254
|
// destination mode starts the session by the fixed crypto amount (fees on
|
|
59251
59255
|
// top); otherwise by the entered fiat amount.
|
package/dist/index.mjs
CHANGED
|
@@ -39756,7 +39756,7 @@ function generateKSUID() {
|
|
|
39756
39756
|
function generatePrefixedKSUID(prefix) {
|
|
39757
39757
|
return `${prefix}_${generateKSUID()}`;
|
|
39758
39758
|
}
|
|
39759
|
-
var SDK_VERSION = true ? "0.1.
|
|
39759
|
+
var SDK_VERSION = true ? "0.1.77" : "0.0.0-dev";
|
|
39760
39760
|
var CLIENT_VERSION_HEADER = "x-unifold-client-version";
|
|
39761
39761
|
var CLIENT_USER_AGENT_HEADER = "x-unifold-client-user-agent";
|
|
39762
39762
|
function detectRuntime() {
|
|
@@ -47901,7 +47901,7 @@ function generateKSUID2() {
|
|
|
47901
47901
|
function generatePrefixedKSUID2(prefix) {
|
|
47902
47902
|
return `${prefix}_${generateKSUID2()}`;
|
|
47903
47903
|
}
|
|
47904
|
-
var PACKAGE_VERSION = "0.1.
|
|
47904
|
+
var PACKAGE_VERSION = "0.1.77";
|
|
47905
47905
|
var LIBRARY_NAME = "@unifold/analytics";
|
|
47906
47906
|
var DEFAULT_DEDUP_MS = 500;
|
|
47907
47907
|
var SESSION_PREFIX = "asess";
|
|
@@ -59233,6 +59233,10 @@ function BuyWithCard({
|
|
|
59233
59233
|
wallet_address: wallet.address,
|
|
59234
59234
|
subdivision_code: userIpInfo?.subdivisionCode || void 0,
|
|
59235
59235
|
external_id: externalId,
|
|
59236
|
+
// The rail this quote was priced for, so the provider opens on it. Most
|
|
59237
|
+
// are `card`, which is also the server default, but a local rail (e.g.
|
|
59238
|
+
// `upi` in India) is the whole reason its provider was quoted.
|
|
59239
|
+
payment_method_type: selectedProvider.payment_method_type,
|
|
59236
59240
|
// Exactly one of source_amount / destination_amount (mutually exclusive):
|
|
59237
59241
|
// destination mode starts the session by the fixed crypto amount (fees on
|
|
59238
59242
|
// top); otherwise by the entered fiat amount.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unifold/ui-web",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.77",
|
|
4
4
|
"description": "Unifold UI Web - Framework-agnostic deposit widget",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -44,10 +44,10 @@
|
|
|
44
44
|
"prettier": "^3.2.5",
|
|
45
45
|
"tsup": "^8.0.0",
|
|
46
46
|
"typescript": "^5.0.0",
|
|
47
|
-
"@unifold/connect-react": "0.1.
|
|
48
|
-
"@unifold/core": "0.1.
|
|
49
|
-
"@unifold/ui-react": "0.1.
|
|
50
|
-
"@unifold/react-provider": "0.1.
|
|
47
|
+
"@unifold/connect-react": "0.1.77",
|
|
48
|
+
"@unifold/core": "0.1.77",
|
|
49
|
+
"@unifold/ui-react": "0.1.77",
|
|
50
|
+
"@unifold/react-provider": "0.1.77"
|
|
51
51
|
},
|
|
52
52
|
"keywords": [
|
|
53
53
|
"unifold",
|