kaleido-ui 0.1.36 → 0.1.37
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/web/index.d.cts +11 -0
- package/dist/web/index.d.ts +11 -0
- package/package.json +1 -1
package/dist/web/index.d.cts
CHANGED
|
@@ -1317,6 +1317,17 @@ interface DepositGenerationController {
|
|
|
1317
1317
|
recipientId: string;
|
|
1318
1318
|
loading: boolean;
|
|
1319
1319
|
depositDetected: boolean;
|
|
1320
|
+
/**
|
|
1321
|
+
* Which network the deposit actually arrived on. Optional and may be
|
|
1322
|
+
* `null` until detection fires; consumers fall back to the currently
|
|
1323
|
+
* selected `network` prop.
|
|
1324
|
+
*
|
|
1325
|
+
* Distinct from `network` because users can have multiple addresses
|
|
1326
|
+
* displayed at once (e.g. BTC unified receive shows on-chain + Lightning),
|
|
1327
|
+
* and we want the success screen to reflect the path the funds actually
|
|
1328
|
+
* took, not the toggle they last touched.
|
|
1329
|
+
*/
|
|
1330
|
+
detectedNetwork?: DepositNetworkKey | null;
|
|
1320
1331
|
invoiceStatus: string | null;
|
|
1321
1332
|
isInvoicePending: boolean;
|
|
1322
1333
|
isInvoicePaid: boolean;
|
package/dist/web/index.d.ts
CHANGED
|
@@ -1317,6 +1317,17 @@ interface DepositGenerationController {
|
|
|
1317
1317
|
recipientId: string;
|
|
1318
1318
|
loading: boolean;
|
|
1319
1319
|
depositDetected: boolean;
|
|
1320
|
+
/**
|
|
1321
|
+
* Which network the deposit actually arrived on. Optional and may be
|
|
1322
|
+
* `null` until detection fires; consumers fall back to the currently
|
|
1323
|
+
* selected `network` prop.
|
|
1324
|
+
*
|
|
1325
|
+
* Distinct from `network` because users can have multiple addresses
|
|
1326
|
+
* displayed at once (e.g. BTC unified receive shows on-chain + Lightning),
|
|
1327
|
+
* and we want the success screen to reflect the path the funds actually
|
|
1328
|
+
* took, not the toggle they last touched.
|
|
1329
|
+
*/
|
|
1330
|
+
detectedNetwork?: DepositNetworkKey | null;
|
|
1320
1331
|
invoiceStatus: string | null;
|
|
1321
1332
|
isInvoicePending: boolean;
|
|
1322
1333
|
isInvoicePaid: boolean;
|
package/package.json
CHANGED