@nexus-cross/crossx-sdk-core 2.3.0 → 2.3.3-beta.2

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.
@@ -50,6 +50,12 @@ export interface HandshakeResult {
50
50
  * 복원할 수 있도록 handshake 응답에 함께 실어준다. UI 노출용.
51
51
  */
52
52
  walletName?: string;
53
+ /**
54
+ * Native wallet 이 연결된 소셜 provider ('google' | 'apple').
55
+ * 사용자가 signIn() 에서 명시적으로 다른 provider 를 선택한 경우 bridge 자동
56
+ * 로그인을 건너뛰도록 판단하는 데 사용한다(미전달 시 기존 동작 유지).
57
+ */
58
+ provider?: 'google' | 'apple' | string;
53
59
  }
54
60
  /**
55
61
  * Firebase ID Token RPC
@@ -280,4 +286,9 @@ export interface RNBridgeBootstrapContext {
280
286
  walletAddress?: string;
281
287
  /** Native wallet의 active wallet 라벨 (handshake 응답에서 전달) */
282
288
  walletName?: string;
289
+ /**
290
+ * Native wallet 이 연결된 소셜 provider ('google' | 'apple', handshake 응답에서 전달).
291
+ * 미전달 시 undefined — signIn() 은 provider mismatch 판정을 건너뛰고 기존대로 동작한다.
292
+ */
293
+ walletProvider?: 'google' | 'apple';
283
294
  }