@lydianpay/lydianconnect 1.2.0 → 1.2.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/dist/index.d.cts CHANGED
@@ -61,29 +61,29 @@ interface ConnectInput {
61
61
  type LydianConnectEvent =
62
62
  /** WalletConnect only — the wc: URI. Deep-linking is fired internally; emitted for QR display. */
63
63
  {
64
- type: 'display_uri';
64
+ type: "display_uri";
65
65
  walletId: string;
66
66
  uri: string;
67
67
  } | {
68
- type: 'connect';
68
+ type: "connect";
69
69
  walletId: string;
70
70
  connection: Connection;
71
71
  } | {
72
- type: 'disconnect';
72
+ type: "disconnect";
73
73
  walletId: string;
74
74
  } | {
75
- type: 'chainChanged';
75
+ type: "chainChanged";
76
76
  walletId: string;
77
77
  chainId: string;
78
78
  } | {
79
- type: 'accountsChanged';
79
+ type: "accountsChanged";
80
80
  walletId: string;
81
81
  account: string;
82
82
  }
83
83
  /** Deep-link was fired but the page stayed visible — wallet likely not installed.
84
84
  * `store` carries the app-store links (when known) so the host can offer an install CTA. */
85
85
  | {
86
- type: 'wallet_open_failed';
86
+ type: "wallet_open_failed";
87
87
  walletId: string;
88
88
  uri: string;
89
89
  store?: {
package/dist/index.d.ts CHANGED
@@ -61,29 +61,29 @@ interface ConnectInput {
61
61
  type LydianConnectEvent =
62
62
  /** WalletConnect only — the wc: URI. Deep-linking is fired internally; emitted for QR display. */
63
63
  {
64
- type: 'display_uri';
64
+ type: "display_uri";
65
65
  walletId: string;
66
66
  uri: string;
67
67
  } | {
68
- type: 'connect';
68
+ type: "connect";
69
69
  walletId: string;
70
70
  connection: Connection;
71
71
  } | {
72
- type: 'disconnect';
72
+ type: "disconnect";
73
73
  walletId: string;
74
74
  } | {
75
- type: 'chainChanged';
75
+ type: "chainChanged";
76
76
  walletId: string;
77
77
  chainId: string;
78
78
  } | {
79
- type: 'accountsChanged';
79
+ type: "accountsChanged";
80
80
  walletId: string;
81
81
  account: string;
82
82
  }
83
83
  /** Deep-link was fired but the page stayed visible — wallet likely not installed.
84
84
  * `store` carries the app-store links (when known) so the host can offer an install CTA. */
85
85
  | {
86
- type: 'wallet_open_failed';
86
+ type: "wallet_open_failed";
87
87
  walletId: string;
88
88
  uri: string;
89
89
  store?: {