@coinflowlabs/react-native 2.1.10 → 2.1.12
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/README.md +8 -0
- package/build/CoinflowTypes.d.ts +41 -3
- package/build/CoinflowTypes.js +12 -0
- package/build/CoinflowTypes.js.map +1 -1
- package/build/ReactNativeCoinflowUtils.d.ts +1 -1
- package/build/ReactNativeCoinflowUtils.js +3 -1
- package/build/ReactNativeCoinflowUtils.js.map +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -58,6 +58,14 @@ Props:
|
|
|
58
58
|
* `rent` (optional, Solana only): Specify the blockchain rent amount to add to the total
|
|
59
59
|
* `nativeSolToConvert` (optional, Solana only): Specify the amount of native SOL to convert wSOL for the purchase
|
|
60
60
|
|
|
61
|
+
## 2.1.12
|
|
62
|
+
|
|
63
|
+
- Added `waitForHash` to EvmTransactionData
|
|
64
|
+
|
|
65
|
+
## 2.1.11
|
|
66
|
+
|
|
67
|
+
- Added `theme` props to Coinflow components for easy color control
|
|
68
|
+
-
|
|
61
69
|
## 2.1.10
|
|
62
70
|
|
|
63
71
|
- Added `orderId` option for reservoir items
|
package/build/CoinflowTypes.d.ts
CHANGED
|
@@ -5,7 +5,40 @@ import { Wallet } from '@near-wallet-selector/core';
|
|
|
5
5
|
import React from 'react';
|
|
6
6
|
import WebView from 'react-native-webview';
|
|
7
7
|
import { StyleProp, ViewStyle } from 'react-native';
|
|
8
|
-
|
|
8
|
+
declare enum SettlementType {
|
|
9
|
+
Credits = "Credits",
|
|
10
|
+
USDC = "USDC",
|
|
11
|
+
Bank = "Bank"
|
|
12
|
+
}
|
|
13
|
+
declare enum MerchantStyle {
|
|
14
|
+
Rounded = "rounded",
|
|
15
|
+
Sharp = "sharp",
|
|
16
|
+
Pill = "pill"
|
|
17
|
+
}
|
|
18
|
+
type MerchantTheme = {
|
|
19
|
+
primary?: string;
|
|
20
|
+
background?: string;
|
|
21
|
+
backgroundAccent?: string;
|
|
22
|
+
backgroundAccent2?: string;
|
|
23
|
+
textColor?: string;
|
|
24
|
+
textColorAccent?: string;
|
|
25
|
+
textColorAction?: string;
|
|
26
|
+
font?: string;
|
|
27
|
+
style?: MerchantStyle;
|
|
28
|
+
};
|
|
29
|
+
interface CustomerInfo {
|
|
30
|
+
name?: string;
|
|
31
|
+
verificationId?: string;
|
|
32
|
+
displayName?: string;
|
|
33
|
+
address?: string;
|
|
34
|
+
city?: string;
|
|
35
|
+
state?: string;
|
|
36
|
+
zip?: string;
|
|
37
|
+
country?: string;
|
|
38
|
+
ip?: string;
|
|
39
|
+
lat?: string;
|
|
40
|
+
lng?: string;
|
|
41
|
+
}
|
|
9
42
|
/** Coinflow Types **/
|
|
10
43
|
export type CoinflowBlockchain = 'solana' | 'near' | 'eth' | 'polygon';
|
|
11
44
|
export type CoinflowEnvs = 'prod' | 'staging' | 'sandbox' | 'local';
|
|
@@ -39,6 +72,7 @@ export interface CoinflowTypes {
|
|
|
39
72
|
loaderBackground?: string;
|
|
40
73
|
blockchain: CoinflowBlockchain;
|
|
41
74
|
onLoad?: () => void;
|
|
75
|
+
theme?: MerchantTheme;
|
|
42
76
|
}
|
|
43
77
|
export type PartialBy<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>;
|
|
44
78
|
export type OnSuccessMethod = (params: string) => void | Promise<void>;
|
|
@@ -55,6 +89,7 @@ export type CoinflowWebViewProps = Omit<CoinflowIFrameProps, 'IFrameRef'> & {
|
|
|
55
89
|
lockDefaultToken?: boolean;
|
|
56
90
|
supportsVersionedTransactions?: boolean;
|
|
57
91
|
lockAmount?: boolean;
|
|
92
|
+
theme?: MerchantTheme;
|
|
58
93
|
};
|
|
59
94
|
export type WithStyles = {
|
|
60
95
|
style?: StyleProp<ViewStyle>;
|
|
@@ -227,7 +262,10 @@ export interface CoinflowPolygonWithdrawProps extends CoinflowCommonWithdrawProp
|
|
|
227
262
|
blockchain: 'polygon';
|
|
228
263
|
}
|
|
229
264
|
export type CoinflowWithdrawProps = CoinflowSolanaWithdrawProps | CoinflowNearWithdrawProps | CoinflowEthWithdrawProps | CoinflowPolygonWithdrawProps;
|
|
230
|
-
export interface
|
|
265
|
+
export interface CommonEvmRedeem {
|
|
266
|
+
waitForHash?: boolean;
|
|
267
|
+
}
|
|
268
|
+
export interface NormalRedeem extends CommonEvmRedeem {
|
|
231
269
|
transaction: {
|
|
232
270
|
to: string;
|
|
233
271
|
data: string;
|
|
@@ -251,7 +289,7 @@ interface ReservoirOrderIdItem {
|
|
|
251
289
|
}
|
|
252
290
|
type ReservoirItem = ReservoirNftIdItem | ReservoirOrderIdItem;
|
|
253
291
|
type ReservoirItems = ReservoirItem | ReservoirItem[];
|
|
254
|
-
export interface ReservoirRedeem {
|
|
292
|
+
export interface ReservoirRedeem extends CommonEvmRedeem {
|
|
255
293
|
type: 'reservoir';
|
|
256
294
|
items: ReservoirItems;
|
|
257
295
|
}
|
package/build/CoinflowTypes.js
CHANGED
|
@@ -1,2 +1,14 @@
|
|
|
1
|
+
var SettlementType;
|
|
2
|
+
(function (SettlementType) {
|
|
3
|
+
SettlementType["Credits"] = "Credits";
|
|
4
|
+
SettlementType["USDC"] = "USDC";
|
|
5
|
+
SettlementType["Bank"] = "Bank";
|
|
6
|
+
})(SettlementType || (SettlementType = {}));
|
|
7
|
+
var MerchantStyle;
|
|
8
|
+
(function (MerchantStyle) {
|
|
9
|
+
MerchantStyle["Rounded"] = "rounded";
|
|
10
|
+
MerchantStyle["Sharp"] = "sharp";
|
|
11
|
+
MerchantStyle["Pill"] = "pill";
|
|
12
|
+
})(MerchantStyle || (MerchantStyle = {}));
|
|
1
13
|
export {};
|
|
2
14
|
//# sourceMappingURL=CoinflowTypes.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CoinflowTypes.js","sourceRoot":"","sources":["../src/CoinflowTypes.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"CoinflowTypes.js","sourceRoot":"","sources":["../src/CoinflowTypes.ts"],"names":[],"mappings":"AAQA,IAAK,cAIJ;AAJD,WAAK,cAAc;IACjB,qCAAmB,CAAA;IACnB,+BAAa,CAAA;IACb,+BAAa,CAAA;AACf,CAAC,EAJI,cAAc,KAAd,cAAc,QAIlB;AAED,IAAK,aAIJ;AAJD,WAAK,aAAa;IAChB,oCAAmB,CAAA;IACnB,gCAAe,CAAA;IACf,8BAAa,CAAA;AACf,CAAC,EAJI,aAAa,KAAb,aAAa,QAIjB"}
|
|
@@ -4,5 +4,5 @@ export declare class ReactNativeCoinflowUtils {
|
|
|
4
4
|
url: string;
|
|
5
5
|
constructor(env?: CoinflowEnvs);
|
|
6
6
|
static getCoinflowBaseUrl(env?: CoinflowEnvs): string;
|
|
7
|
-
static getCoinflowUrl({ blockchain, route, env, amount, publicKey, transaction, bankAccountLinkRedirect, additionalWallets, token, tokens, webhookInfo, deviceId, chargebackProtectionData, rent, lockDefaultToken, supportsVersionedTransactions, disableApplePay, disableGooglePay, customerInfo, planCode, settlementType, lockAmount, nativeSolToConvert, }: CoinflowWebViewProps): string;
|
|
7
|
+
static getCoinflowUrl({ blockchain, route, env, amount, publicKey, transaction, bankAccountLinkRedirect, additionalWallets, token, tokens, webhookInfo, deviceId, chargebackProtectionData, rent, lockDefaultToken, supportsVersionedTransactions, disableApplePay, disableGooglePay, customerInfo, planCode, settlementType, lockAmount, nativeSolToConvert, theme, }: CoinflowWebViewProps): string;
|
|
8
8
|
}
|
|
@@ -16,7 +16,7 @@ var ReactNativeCoinflowUtils = /** @class */ (function () {
|
|
|
16
16
|
return "https://".concat(env, ".coinflow.cash");
|
|
17
17
|
};
|
|
18
18
|
ReactNativeCoinflowUtils.getCoinflowUrl = function (_a) {
|
|
19
|
-
var blockchain = _a.blockchain, route = _a.route, env = _a.env, amount = _a.amount, publicKey = _a.publicKey, transaction = _a.transaction, bankAccountLinkRedirect = _a.bankAccountLinkRedirect, additionalWallets = _a.additionalWallets, token = _a.token, tokens = _a.tokens, webhookInfo = _a.webhookInfo, deviceId = _a.deviceId, chargebackProtectionData = _a.chargebackProtectionData, rent = _a.rent, lockDefaultToken = _a.lockDefaultToken, supportsVersionedTransactions = _a.supportsVersionedTransactions, disableApplePay = _a.disableApplePay, disableGooglePay = _a.disableGooglePay, customerInfo = _a.customerInfo, planCode = _a.planCode, settlementType = _a.settlementType, lockAmount = _a.lockAmount, nativeSolToConvert = _a.nativeSolToConvert;
|
|
19
|
+
var blockchain = _a.blockchain, route = _a.route, env = _a.env, amount = _a.amount, publicKey = _a.publicKey, transaction = _a.transaction, bankAccountLinkRedirect = _a.bankAccountLinkRedirect, additionalWallets = _a.additionalWallets, token = _a.token, tokens = _a.tokens, webhookInfo = _a.webhookInfo, deviceId = _a.deviceId, chargebackProtectionData = _a.chargebackProtectionData, rent = _a.rent, lockDefaultToken = _a.lockDefaultToken, supportsVersionedTransactions = _a.supportsVersionedTransactions, disableApplePay = _a.disableApplePay, disableGooglePay = _a.disableGooglePay, customerInfo = _a.customerInfo, planCode = _a.planCode, settlementType = _a.settlementType, lockAmount = _a.lockAmount, nativeSolToConvert = _a.nativeSolToConvert, theme = _a.theme;
|
|
20
20
|
if (!publicKey)
|
|
21
21
|
return '';
|
|
22
22
|
var url = new URL("/".concat(blockchain) + route, ReactNativeCoinflowUtils.getCoinflowBaseUrl(env));
|
|
@@ -41,6 +41,8 @@ var ReactNativeCoinflowUtils = /** @class */ (function () {
|
|
|
41
41
|
}
|
|
42
42
|
if (webhookInfo)
|
|
43
43
|
url.searchParams.append('webhookInfo', Buffer.from(JSON.stringify(webhookInfo)).toString('base64'));
|
|
44
|
+
if (theme)
|
|
45
|
+
url.searchParams.append('theme', Buffer.from(JSON.stringify(theme)).toString('base64'));
|
|
44
46
|
if (customerInfo)
|
|
45
47
|
url.searchParams.append('customerInfo', Buffer.from(JSON.stringify(customerInfo)).toString('base64'));
|
|
46
48
|
if (deviceId)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ReactNativeCoinflowUtils.js","sourceRoot":"","sources":["../src/ReactNativeCoinflowUtils.ts"],"names":[],"mappings":"AAEA;IAIE,kCAAY,GAAkB;QAC5B,IAAI,CAAC,GAAG,GAAG,GAAG,aAAH,GAAG,cAAH,GAAG,GAAI,MAAM,CAAC;QACzB,IAAI,IAAI,CAAC,GAAG,KAAK,MAAM;YAAE,IAAI,CAAC,GAAG,GAAG,2BAA2B,CAAC;aAC3D,IAAI,IAAI,CAAC,GAAG,KAAK,OAAO;YAAE,IAAI,CAAC,GAAG,GAAG,uBAAuB,CAAC;;YAC7D,IAAI,CAAC,GAAG,GAAG,sBAAe,IAAI,CAAC,GAAG,mBAAgB,CAAC;IAC1D,CAAC;IAEM,2CAAkB,GAAzB,UAA0B,GAAkB;QAC1C,IAAI,CAAC,GAAG,IAAI,GAAG,KAAK,MAAM;YAAE,OAAO,uBAAuB,CAAC;QAC3D,IAAI,GAAG,KAAK,OAAO;YAAE,OAAO,uBAAuB,CAAC;QAEpD,OAAO,kBAAW,GAAG,mBAAgB,CAAC;IACxC,CAAC;IAEM,uCAAc,GAArB,UAAsB,
|
|
1
|
+
{"version":3,"file":"ReactNativeCoinflowUtils.js","sourceRoot":"","sources":["../src/ReactNativeCoinflowUtils.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coinflowlabs/react-native",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.12",
|
|
4
4
|
"description": "React Native Component for Coinflow",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -36,8 +36,8 @@
|
|
|
36
36
|
"@solana/web3.js": "^1.90.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@types/react": "^18.2.
|
|
40
|
-
"@types/react-native": "^0.
|
|
39
|
+
"@types/react": "^18.2.58",
|
|
40
|
+
"@types/react-native": "^0.73.0",
|
|
41
41
|
"eslint-config-react-app": "^7.0.1",
|
|
42
42
|
"typescript": "^5.3.2",
|
|
43
43
|
"@solana/wallet-adapter-react": "^0.15.32",
|