@unifold/connect-react-native 0.1.24 → 0.1.26
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.d.mts +3 -2
- package/dist/index.d.ts +3 -2
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/dist/stripe.d.mts +16 -1
- package/dist/stripe.d.ts +16 -1
- package/dist/stripe.js +2 -3
- package/dist/stripe.mjs +2 -3
- package/package.json +9 -12
package/dist/index.d.mts
CHANGED
|
@@ -361,8 +361,9 @@ interface DepositModalProps {
|
|
|
361
361
|
}
|
|
362
362
|
|
|
363
363
|
/**
|
|
364
|
-
*
|
|
365
|
-
*
|
|
364
|
+
* Opt-in dev-only API base URL (staging, localhost, etc.).
|
|
365
|
+
* Has no effect unless `__DEV__` is true; trimmed empty string clears any prior override (back to production).
|
|
366
|
+
* Release builds always use production regardless of calls here.
|
|
366
367
|
*/
|
|
367
368
|
declare function setDevApiUrl(url: string): void;
|
|
368
369
|
|
package/dist/index.d.ts
CHANGED
|
@@ -361,8 +361,9 @@ interface DepositModalProps {
|
|
|
361
361
|
}
|
|
362
362
|
|
|
363
363
|
/**
|
|
364
|
-
*
|
|
365
|
-
*
|
|
364
|
+
* Opt-in dev-only API base URL (staging, localhost, etc.).
|
|
365
|
+
* Has no effect unless `__DEV__` is true; trimmed empty string clears any prior override (back to production).
|
|
366
|
+
* Release builds always use production regardless of calls here.
|
|
366
367
|
*/
|
|
367
368
|
declare function setDevApiUrl(url: string): void;
|
|
368
369
|
|