@frak-labs/core-sdk 0.2.1 → 1.0.0-beta.10dada3f

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.
Files changed (93) hide show
  1. package/README.md +1 -2
  2. package/cdn/bundle.js +3 -3
  3. package/dist/actions-Bsl5ub7_.js +1 -0
  4. package/dist/actions-C_B0fn1P.cjs +1 -0
  5. package/dist/actions.cjs +1 -1
  6. package/dist/actions.d.cts +3 -3
  7. package/dist/actions.d.ts +3 -3
  8. package/dist/actions.js +1 -1
  9. package/dist/bundle.cjs +1 -1
  10. package/dist/bundle.d.cts +4 -4
  11. package/dist/bundle.d.ts +4 -4
  12. package/dist/bundle.js +1 -1
  13. package/dist/{computeLegacyProductId-CCAZvLa5.d.cts → index-BSGP3dbi.d.ts} +250 -73
  14. package/dist/{siweAuthenticate-CVigMOxz.d.cts → index-Bh0TuKYS.d.ts} +122 -8
  15. package/dist/{siweAuthenticate-CnCZ7mok.d.ts → index-DW8xes2o.d.cts} +122 -8
  16. package/dist/{computeLegacyProductId-b5cUWdAm.d.ts → index-TRJNS6B5.d.cts} +250 -73
  17. package/dist/index.cjs +1 -1
  18. package/dist/index.d.cts +3 -3
  19. package/dist/index.d.ts +3 -3
  20. package/dist/index.js +1 -1
  21. package/dist/{openSso-B0g7-807.d.cts → openSso-Bvhy_urG.d.cts} +395 -50
  22. package/dist/{openSso-CMzwvaCa.d.ts → openSso-D2kTUv0-.d.ts} +394 -49
  23. package/dist/sdkConfigStore-B6CkorsU.cjs +1 -0
  24. package/dist/sdkConfigStore-Dx0oAVEO.js +1 -0
  25. package/dist/src-CLF8o8WB.cjs +13 -0
  26. package/dist/src-al3X6r-n.js +13 -0
  27. package/package.json +12 -13
  28. package/src/actions/displayEmbeddedWallet.ts +6 -2
  29. package/src/actions/displayModal.ts +6 -2
  30. package/src/actions/displaySharingPage.ts +49 -0
  31. package/src/actions/ensureIdentity.ts +2 -2
  32. package/src/actions/getMerchantInformation.test.ts +13 -1
  33. package/src/actions/getMerchantInformation.ts +20 -5
  34. package/src/actions/getMergeToken.ts +33 -0
  35. package/src/actions/getUserReferralStatus.ts +42 -0
  36. package/src/actions/index.ts +8 -1
  37. package/src/actions/referral/processReferral.test.ts +73 -8
  38. package/src/actions/referral/processReferral.ts +15 -12
  39. package/src/actions/referral/setupReferral.test.ts +79 -0
  40. package/src/actions/referral/setupReferral.ts +32 -0
  41. package/src/actions/trackPurchaseStatus.test.ts +32 -20
  42. package/src/actions/trackPurchaseStatus.ts +3 -5
  43. package/src/actions/wrapper/modalBuilder.test.ts +4 -2
  44. package/src/actions/wrapper/modalBuilder.ts +6 -8
  45. package/src/clients/createIFrameFrakClient.ts +233 -28
  46. package/src/clients/transports/iframeLifecycleManager.test.ts +14 -94
  47. package/src/clients/transports/iframeLifecycleManager.ts +35 -53
  48. package/src/index.ts +25 -5
  49. package/src/stubs/rrweb.ts +9 -0
  50. package/src/types/config.ts +19 -3
  51. package/src/types/context.ts +16 -4
  52. package/src/types/index.ts +15 -1
  53. package/src/types/lifecycle/client.ts +29 -27
  54. package/src/types/lifecycle/iframe.ts +7 -8
  55. package/src/types/resolvedConfig.ts +138 -0
  56. package/src/types/rpc/displaySharingPage.ts +100 -0
  57. package/src/types/rpc/embedded/index.ts +1 -1
  58. package/src/types/rpc/interaction.ts +4 -0
  59. package/src/types/rpc/userReferralStatus.ts +20 -0
  60. package/src/types/rpc.ts +54 -5
  61. package/src/types/tracking.ts +36 -0
  62. package/src/utils/FrakContext.test.ts +179 -1
  63. package/src/utils/FrakContext.ts +83 -8
  64. package/src/utils/analytics/events/component.ts +58 -0
  65. package/src/utils/analytics/events/index.ts +20 -0
  66. package/src/utils/analytics/events/lifecycle.ts +26 -0
  67. package/src/utils/analytics/events/referral.ts +11 -0
  68. package/src/utils/analytics/index.ts +8 -0
  69. package/src/utils/{trackEvent.test.ts → analytics/trackEvent.test.ts} +22 -30
  70. package/src/utils/analytics/trackEvent.ts +34 -0
  71. package/src/utils/backendUrl.test.ts +2 -2
  72. package/src/utils/backendUrl.ts +1 -1
  73. package/src/utils/cache/index.ts +7 -0
  74. package/src/utils/cache/lruMap.test.ts +55 -0
  75. package/src/utils/cache/lruMap.ts +38 -0
  76. package/src/utils/cache/withCache.test.ts +168 -0
  77. package/src/utils/cache/withCache.ts +124 -0
  78. package/src/utils/inAppBrowser.ts +60 -0
  79. package/src/utils/index.ts +11 -5
  80. package/src/utils/mergeAttribution.test.ts +153 -0
  81. package/src/utils/mergeAttribution.ts +75 -0
  82. package/src/utils/sdkConfigStore.test.ts +405 -0
  83. package/src/utils/sdkConfigStore.ts +263 -0
  84. package/src/utils/sso.ts +3 -7
  85. package/dist/setupClient-BduY6Sym.cjs +0 -13
  86. package/dist/setupClient-ftmdQ-I8.js +0 -13
  87. package/dist/siweAuthenticate-BWmI2_TN.cjs +0 -1
  88. package/dist/siweAuthenticate-zczqxm0a.js +0 -1
  89. package/dist/trackEvent-CeLFVzZn.js +0 -1
  90. package/dist/trackEvent-Ew5r5zfI.cjs +0 -1
  91. package/src/utils/merchantId.test.ts +0 -653
  92. package/src/utils/merchantId.ts +0 -143
  93. package/src/utils/trackEvent.ts +0 -41
@@ -102,7 +102,7 @@ describe("createIFrameLifecycleManager", () => {
102
102
  iframeLifecycle: "connected" as const,
103
103
  };
104
104
 
105
- await manager.handleEvent(event);
105
+ manager.handleEvent(event);
106
106
 
107
107
  await expect(manager.isConnected).resolves.toBe(true);
108
108
  });
@@ -126,7 +126,7 @@ describe("createIFrameLifecycleManager", () => {
126
126
  data: { backup },
127
127
  };
128
128
 
129
- await manager.handleEvent(event);
129
+ manager.handleEvent(event);
130
130
 
131
131
  expect(localStorage.getItem("frak-backup-key")).toBe(backup);
132
132
  });
@@ -150,7 +150,7 @@ describe("createIFrameLifecycleManager", () => {
150
150
  data: {},
151
151
  };
152
152
 
153
- await manager.handleEvent(event);
153
+ manager.handleEvent(event);
154
154
 
155
155
  expect(localStorage.getItem("frak-backup-key")).toBeNull();
156
156
  });
@@ -173,7 +173,7 @@ describe("createIFrameLifecycleManager", () => {
173
173
  iframeLifecycle: "remove-backup" as const,
174
174
  };
175
175
 
176
- await manager.handleEvent(event);
176
+ manager.handleEvent(event);
177
177
 
178
178
  expect(localStorage.getItem("frak-backup-key")).toBeNull();
179
179
  });
@@ -198,7 +198,7 @@ describe("createIFrameLifecycleManager", () => {
198
198
  iframeLifecycle: "show" as const,
199
199
  };
200
200
 
201
- await manager.handleEvent(event);
201
+ manager.handleEvent(event);
202
202
 
203
203
  expect(changeIframeVisibility).toHaveBeenCalledWith({
204
204
  iframe: mockIframe,
@@ -224,7 +224,7 @@ describe("createIFrameLifecycleManager", () => {
224
224
  iframeLifecycle: "hide" as const,
225
225
  };
226
226
 
227
- await manager.handleEvent(event);
227
+ manager.handleEvent(event);
228
228
 
229
229
  expect(changeIframeVisibility).toHaveBeenCalledWith({
230
230
  iframe: mockIframe,
@@ -233,86 +233,6 @@ describe("createIFrameLifecycleManager", () => {
233
233
  });
234
234
  });
235
235
 
236
- describe("handshake event", () => {
237
- test("should post handshake-response with token to iframe origin", async () => {
238
- const { createIFrameLifecycleManager } = await import(
239
- "./iframeLifecycleManager"
240
- );
241
-
242
- const mockPostMessage = vi.fn();
243
- const mockIframe = {
244
- src: "https://wallet.frak.id/listener",
245
- contentWindow: {
246
- postMessage: mockPostMessage,
247
- },
248
- } as any;
249
-
250
- const manager = createIFrameLifecycleManager({
251
- iframe: mockIframe,
252
- targetOrigin: WALLET_ORIGIN,
253
- });
254
-
255
- const event = {
256
- iframeLifecycle: "handshake" as const,
257
- data: { token: "handshake-token-123" },
258
- };
259
-
260
- await manager.handleEvent(event);
261
-
262
- expect(mockPostMessage).toHaveBeenCalledWith(
263
- {
264
- clientLifecycle: "handshake-response",
265
- data: {
266
- token: "handshake-token-123",
267
- currentUrl: "https://test.com",
268
- clientId: "mock-client-id",
269
- },
270
- },
271
- "https://wallet.frak.id"
272
- );
273
- });
274
-
275
- test("should include current URL in handshake response", async () => {
276
- const { createIFrameLifecycleManager } = await import(
277
- "./iframeLifecycleManager"
278
- );
279
-
280
- Object.defineProperty(window, "location", {
281
- value: { href: "https://example.com/page?param=value" },
282
- writable: true,
283
- });
284
-
285
- const mockPostMessage = vi.fn();
286
- const mockIframe = {
287
- src: "https://wallet.frak.id/listener",
288
- contentWindow: {
289
- postMessage: mockPostMessage,
290
- },
291
- } as any;
292
-
293
- const manager = createIFrameLifecycleManager({
294
- iframe: mockIframe,
295
- targetOrigin: WALLET_ORIGIN,
296
- });
297
-
298
- const event = {
299
- iframeLifecycle: "handshake" as const,
300
- data: { token: "token" },
301
- };
302
-
303
- await manager.handleEvent(event);
304
-
305
- expect(mockPostMessage).toHaveBeenCalledWith(
306
- expect.objectContaining({
307
- data: expect.objectContaining({
308
- currentUrl: "https://example.com/page?param=value",
309
- }),
310
- }),
311
- "https://wallet.frak.id"
312
- );
313
- });
314
- });
315
-
316
236
  describe("redirect event", () => {
317
237
  test("should redirect with appended current URL for HTTP URLs", async () => {
318
238
  const { createIFrameLifecycleManager } = await import(
@@ -339,7 +259,7 @@ describe("createIFrameLifecycleManager", () => {
339
259
  },
340
260
  };
341
261
 
342
- await manager.handleEvent(event);
262
+ manager.handleEvent(event);
343
263
 
344
264
  expect(window.location.href).toBe(
345
265
  "https://redirect.com/?u=https%3A%2F%2Foriginal.com"
@@ -371,7 +291,7 @@ describe("createIFrameLifecycleManager", () => {
371
291
  },
372
292
  };
373
293
 
374
- await manager.handleEvent(event);
294
+ manager.handleEvent(event);
375
295
 
376
296
  expect(window.location.href).toBe("https://redirect.com/path");
377
297
  });
@@ -405,7 +325,7 @@ describe("createIFrameLifecycleManager", () => {
405
325
  },
406
326
  };
407
327
 
408
- await manager.handleEvent(event);
328
+ manager.handleEvent(event);
409
329
 
410
330
  expect(triggerDeepLinkWithFallback).toHaveBeenCalledWith(
411
331
  "frakwallet://wallet",
@@ -450,7 +370,7 @@ describe("createIFrameLifecycleManager", () => {
450
370
  },
451
371
  };
452
372
 
453
- await manager.handleEvent(event);
373
+ manager.handleEvent(event);
454
374
 
455
375
  // Extract the onFallback callback from the mock call
456
376
  const callArgs = (triggerDeepLinkWithFallback as any).mock.calls[0];
@@ -499,7 +419,7 @@ describe("createIFrameLifecycleManager", () => {
499
419
  },
500
420
  };
501
421
 
502
- await manager.handleEvent(event);
422
+ manager.handleEvent(event);
503
423
 
504
424
  // Should NOT call fallback detection
505
425
  expect(triggerDeepLinkWithFallback).not.toHaveBeenCalled();
@@ -525,7 +445,7 @@ describe("createIFrameLifecycleManager", () => {
525
445
  } as any;
526
446
 
527
447
  // Should not throw
528
- await expect(manager.handleEvent(event)).resolves.toBeUndefined();
448
+ expect(manager.handleEvent(event)).toBeUndefined();
529
449
  });
530
450
 
531
451
  test("should only process events with iframeLifecycle", async () => {
@@ -543,13 +463,13 @@ describe("createIFrameLifecycleManager", () => {
543
463
  });
544
464
 
545
465
  // Event without iframeLifecycle
546
- await manager.handleEvent({ randomEvent: "show" } as any);
466
+ manager.handleEvent({ randomEvent: "show" } as any);
547
467
 
548
468
  // changeIframeVisibility should not be called
549
469
  expect(changeIframeVisibility).not.toHaveBeenCalled();
550
470
 
551
471
  // Event with iframeLifecycle
552
- await manager.handleEvent({ iframeLifecycle: "show" as const });
472
+ manager.handleEvent({ iframeLifecycle: "show" as const });
553
473
 
554
474
  // Now it should be called
555
475
  expect(changeIframeVisibility).toHaveBeenCalled();
@@ -1,6 +1,5 @@
1
1
  import { Deferred } from "@frak-labs/frame-connector";
2
2
  import type { FrakLifecycleEvent } from "../../types";
3
- import { getClientId } from "../../utils/clientId";
4
3
  import { BACKUP_KEY } from "../../utils/constants";
5
4
  import {
6
5
  isFrakDeepLink,
@@ -33,7 +32,7 @@ const isIOSInAppBrowser = (() => {
33
32
  /** @ignore */
34
33
  export type IframeLifecycleManager = {
35
34
  isConnected: Promise<boolean>;
36
- handleEvent: (messageEvent: FrakLifecycleEvent) => Promise<void>;
35
+ handleEvent: (messageEvent: FrakLifecycleEvent) => void;
37
36
  };
38
37
 
39
38
  /**
@@ -47,42 +46,6 @@ function handleBackup(backup: string | undefined): void {
47
46
  }
48
47
  }
49
48
 
50
- /**
51
- * Handle handshake with iframe — sends client metadata so the listener can resolve the correct merchant
52
- * @param iframe - The iframe element to post the handshake response to
53
- * @param token - The handshake token received from the iframe
54
- * @param targetOrigin - The target origin for postMessage security
55
- * @param configDomain - Optional override domain for merchant resolution in tunneled/proxied environments
56
- */
57
- function handleHandshake(
58
- iframe: HTMLIFrameElement,
59
- token: string,
60
- targetOrigin: string,
61
- configDomain?: string
62
- ): void {
63
- const url = new URL(window.location.href);
64
- const pendingMergeToken = url.searchParams.get("fmt") ?? undefined;
65
-
66
- iframe.contentWindow?.postMessage(
67
- {
68
- clientLifecycle: "handshake-response",
69
- data: {
70
- token,
71
- currentUrl: window.location.href,
72
- pendingMergeToken,
73
- configDomain,
74
- clientId: getClientId(),
75
- },
76
- },
77
- targetOrigin
78
- );
79
-
80
- if (pendingMergeToken) {
81
- url.searchParams.delete("fmt");
82
- window.history.replaceState({}, "", url.toString());
83
- }
84
- }
85
-
86
49
  /**
87
50
  * Compute final redirect URL with parameter substitution
88
51
  */
@@ -96,12 +59,12 @@ function computeRedirectUrl(
96
59
  return baseRedirectUrl;
97
60
  }
98
61
 
99
- redirectUrl.searchParams.delete("u");
100
- redirectUrl.searchParams.append("u", window.location.href);
62
+ // Append merge token to the page URL so it survives
63
+ // the backend /common/social redirect chain
64
+ const finalPageUrl = appendMergeToken(window.location.href, mergeToken);
101
65
 
102
- if (mergeToken) {
103
- redirectUrl.searchParams.append("fmt", mergeToken);
104
- }
66
+ redirectUrl.searchParams.delete("u");
67
+ redirectUrl.searchParams.append("u", finalPageUrl);
105
68
 
106
69
  return redirectUrl.toString();
107
70
  } catch {
@@ -130,6 +93,21 @@ function isSocialRedirect(url: string): boolean {
130
93
  return url.includes("/common/social");
131
94
  }
132
95
 
96
+ /**
97
+ * Append merge token to a URL as the `fmt` query parameter.
98
+ */
99
+ function appendMergeToken(urlString: string, mergeToken?: string): string {
100
+ if (!mergeToken) return urlString;
101
+ try {
102
+ const url = new URL(urlString);
103
+ url.searchParams.set("fmt", mergeToken);
104
+ return url.toString();
105
+ } catch {
106
+ const sep = urlString.includes("?") ? "&" : "?";
107
+ return `${urlString}${sep}fmt=${encodeURIComponent(mergeToken)}`;
108
+ }
109
+ }
110
+
133
111
  /**
134
112
  * Handle redirect with deep link fallback
135
113
  */
@@ -137,8 +115,18 @@ function handleRedirect(
137
115
  iframe: HTMLIFrameElement,
138
116
  baseRedirectUrl: string,
139
117
  targetOrigin: string,
140
- mergeToken?: string
118
+ mergeToken?: string,
119
+ openInNewTab?: boolean
141
120
  ): void {
121
+ // If requested, open in a new tab instead of navigating the current page.
122
+ // This preserves the merchant page while triggering universal links.
123
+ // Requires the iframe postMessage to include user activation delegation.
124
+ if (openInNewTab) {
125
+ const finalUrl = computeRedirectUrl(baseRedirectUrl, mergeToken);
126
+ window.open(finalUrl, "_blank");
127
+ return;
128
+ }
129
+
142
130
  if (isFrakDeepLink(baseRedirectUrl)) {
143
131
  const finalUrl = computeRedirectUrl(baseRedirectUrl, mergeToken);
144
132
  triggerDeepLinkWithFallback(finalUrl, {
@@ -167,23 +155,20 @@ function handleRedirect(
167
155
  * @param args
168
156
  * @param args.iframe - The iframe element used for wallet communication
169
157
  * @param args.targetOrigin - The wallet URL origin for postMessage security
170
- * @param args.configDomain - Optional domain override forwarded during handshake for tunneled/proxied environments
171
158
  * @ignore
172
159
  */
173
160
  export function createIFrameLifecycleManager({
174
161
  iframe,
175
162
  targetOrigin,
176
- configDomain,
177
163
  }: {
178
164
  iframe: HTMLIFrameElement;
179
165
  targetOrigin: string;
180
- configDomain?: string;
181
166
  }): IframeLifecycleManager {
182
167
  // Create the isConnected listener
183
168
  const isConnectedDeferred = new Deferred<boolean>();
184
169
 
185
170
  // Build the handler itself
186
- const handler = async (messageEvent: FrakLifecycleEvent) => {
171
+ const handler = (messageEvent: FrakLifecycleEvent) => {
187
172
  if (!("iframeLifecycle" in messageEvent)) return;
188
173
 
189
174
  const { iframeLifecycle: event, data } = messageEvent;
@@ -206,17 +191,14 @@ export function createIFrameLifecycleManager({
206
191
  case "hide":
207
192
  changeIframeVisibility({ iframe, isVisible: event === "show" });
208
193
  break;
209
- // Handshake handling
210
- case "handshake":
211
- handleHandshake(iframe, data.token, targetOrigin, configDomain);
212
- break;
213
194
  // Redirect handling
214
195
  case "redirect":
215
196
  handleRedirect(
216
197
  iframe,
217
198
  data.baseRedirectUrl,
218
199
  targetOrigin,
219
- data.mergeToken
200
+ data.mergeToken,
201
+ data.openInNewTab
220
202
  );
221
203
  break;
222
204
  }
package/src/index.ts CHANGED
@@ -12,6 +12,8 @@ export { type LocalesKey, locales } from "./constants/locales";
12
12
 
13
13
  // Types
14
14
  export type {
15
+ AttributionDefaults,
16
+ AttributionParams,
15
17
  ClientLifecycleEvent,
16
18
  CompressedData,
17
19
  Currency,
@@ -19,6 +21,9 @@ export type {
19
21
  DisplayEmbeddedWalletParamsType,
20
22
  DisplayEmbeddedWalletResultType,
21
23
  DisplayModalParamsType,
24
+ // RPC Sharing page
25
+ DisplaySharingPageParamsType,
26
+ DisplaySharingPageResultType,
22
27
  EmbeddedViewActionReferred,
23
28
  EmbeddedViewActionSharing,
24
29
  EstimatedReward,
@@ -47,6 +52,7 @@ export type {
47
52
  LoggedInEmbeddedView,
48
53
  LoggedOutEmbeddedView,
49
54
  LoginModalStepType,
55
+ MerchantConfigResponse,
50
56
  ModalRpcMetadata,
51
57
  ModalRpcStepsInput,
52
58
  ModalRpcStepsResultType,
@@ -58,12 +64,16 @@ export type {
58
64
  OpenSsoReturnType,
59
65
  PrepareSsoParamsType,
60
66
  PrepareSsoReturnType,
67
+ ResolvedPlacement,
68
+ ResolvedSdkConfig,
61
69
  RewardTier,
70
+ SdkResolvedConfig,
62
71
  // RPC Interaction
63
72
  SendInteractionParamsType,
64
73
  SendTransactionModalStepType,
65
74
  SendTransactionReturnType,
66
75
  SendTransactionTxType,
76
+ SharingPageProduct,
67
77
  SiweAuthenticateModalStepType,
68
78
  SiweAuthenticateReturnType,
69
79
  SiweAuthenticationParams,
@@ -72,8 +82,9 @@ export type {
72
82
  // Tracking
73
83
  TrackArrivalParams,
74
84
  TrackArrivalResult,
75
- UtmParams,
76
85
  // Rpc
86
+ UserReferralStatusType,
87
+ UtmParams,
77
88
  WalletStatusReturnType,
78
89
  } from "./types";
79
90
  export { isV1Context, isV2Context } from "./types";
@@ -84,29 +95,38 @@ export {
84
95
  base64urlEncode,
85
96
  baseIframeProps,
86
97
  type CompressedSsoData,
87
- clearMerchantIdCache,
98
+ clearAllCache,
88
99
  compressJsonToB64,
89
100
  createIframe,
90
101
  DEEP_LINK_SCHEME,
91
102
  type DeepLinkFallbackOptions,
92
103
  decompressJsonFromB64,
93
104
  FrakContextManager,
94
- type FrakEvent,
95
105
  type FullSsoParams,
96
- fetchMerchantId,
97
106
  findIframeInOpener,
98
107
  formatAmount,
99
108
  generateSsoUrl,
100
109
  getBackendUrl,
110
+ getCache,
101
111
  getClientId,
102
112
  getCurrencyAmountKey,
103
113
  getSupportedCurrency,
104
114
  getSupportedLocale,
105
115
  isChromiumAndroid,
106
116
  isFrakDeepLink,
107
- resolveMerchantId,
117
+ isInAppBrowser,
118
+ isIOS,
119
+ type MergeAttributionInput,
120
+ mergeAttribution,
121
+ redirectToExternalBrowser,
122
+ sdkConfigStore,
108
123
  toAndroidIntentUrl,
109
124
  trackEvent,
110
125
  triggerDeepLinkWithFallback,
126
+ withCache,
111
127
  } from "./utils";
128
+ export type {
129
+ SdkEventMap,
130
+ SdkHandshakeFailureReason,
131
+ } from "./utils/analytics";
112
132
  export { computeLegacyProductId } from "./utils/computeLegacyProductId";
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Stub for rrweb. The @openpanel/web package statically imports `record` from
3
+ * rrweb even when session replay is disabled. This stub replaces the module so
4
+ * that rrweb is not included in the bundle.
5
+ * @see https://github.com/Openpanel-dev/openpanel/issues/336
6
+ */
7
+ export function record() {
8
+ return () => {};
9
+ }
@@ -1,3 +1,5 @@
1
+ import type { AttributionDefaults } from "./tracking";
2
+
1
3
  /**
2
4
  * All the currencies available
3
5
  * @category Config
@@ -27,7 +29,7 @@ export type FrakWalletSdkConfig = {
27
29
  /**
28
30
  * Your application name (will be displayed in a few modals and in SSO)
29
31
  */
30
- name: string;
32
+ name?: string;
31
33
  /**
32
34
  * Your merchant ID from the Frak dashboard (UUID format)
33
35
  * Used for referral tracking and analytics
@@ -71,6 +73,20 @@ export type FrakWalletSdkConfig = {
71
73
  * @defaultValue window.location.host
72
74
  */
73
75
  domain?: string;
76
+ /**
77
+ * Wait for backend config before rendering components.
78
+ * When true (default), components show a spinner until backend config is resolved.
79
+ * When false, components render immediately with SDK static config / HTML attributes.
80
+ * @defaultValue true
81
+ */
82
+ waitForBackendConfig?: boolean;
83
+ /**
84
+ * Default attribution params (UTM / via / ref) appended to outbound
85
+ * sharing URLs. Per-call `displaySharingPage` overrides win, then backend
86
+ * config, then this SDK-level default. `utm_content` is intentionally
87
+ * excluded — it is per-content/per-product, never a merchant-wide default.
88
+ */
89
+ attribution?: AttributionDefaults;
74
90
  };
75
91
 
76
92
  /**
@@ -111,7 +127,7 @@ export type I18nConfig =
111
127
  | LocalizedI18nConfig;
112
128
 
113
129
  /**
114
- * A localized i18n config
130
+ * A localized i18n config (inline objects only — URL-based i18n removed)
115
131
  * @category Config
116
132
  */
117
- export type LocalizedI18nConfig = `${string}.css` | { [key: string]: string };
133
+ export type LocalizedI18nConfig = { [key: string]: string };
@@ -11,19 +11,31 @@ export type FrakContextV1 = {
11
11
  };
12
12
 
13
13
  /**
14
- * V2 Frak Context — anonymous-first referral context.
15
- * Contains the sharer's clientId, merchantId, and link creation timestamp.
14
+ * V2 Frak Context — anonymous-first referral context with optional wallet.
15
+ *
16
+ * Carries merchant context (`m`) and creation timestamp (`t`) unconditionally.
17
+ * Identifies the sharer via either the anonymous clientId (`c`) or, when the
18
+ * sharer is authenticated, the stronger wallet identifier (`w`). A valid V2
19
+ * context MUST contain at least one of `c` or `w`; both may be present when
20
+ * a logged-in user shares a link (best attribution signal).
21
+ *
22
+ * `w` takes precedence as the source of truth because the wallet is bound to
23
+ * the user's WebAuthn credential, survives localStorage clears, and is global
24
+ * across merchants — unlike `c`, which is a per-browser UUID.
25
+ *
16
26
  * @ignore
17
27
  */
18
28
  export type FrakContextV2 = {
19
29
  /** Version discriminator */
20
30
  v: 2;
21
- /** Sharer's anonymous clientId (UUID from localStorage) */
22
- c: string;
23
31
  /** Merchant ID (UUID) */
24
32
  m: string;
25
33
  /** Link creation timestamp (epoch seconds) */
26
34
  t: number;
35
+ /** Sharer's anonymous clientId (UUID from localStorage). Optional when `w` is provided. */
36
+ c?: string;
37
+ /** Sharer's wallet address. Preferred source of truth when the sharer is authenticated. Optional when `c` is provided. */
38
+ w?: Address;
27
39
  };
28
40
 
29
41
  /**
@@ -17,11 +17,16 @@ export type {
17
17
  // Utils
18
18
  export type { FrakContext, FrakContextV1, FrakContextV2 } from "./context";
19
19
  export { isV1Context, isV2Context } from "./context";
20
-
21
20
  export type {
22
21
  ClientLifecycleEvent,
23
22
  IFrameLifecycleEvent,
24
23
  } from "./lifecycle";
24
+ export type {
25
+ MerchantConfigResponse,
26
+ ResolvedPlacement,
27
+ ResolvedSdkConfig,
28
+ SdkResolvedConfig,
29
+ } from "./resolvedConfig";
25
30
  export type { IFrameRpcSchema } from "./rpc";
26
31
  // Modal related
27
32
  export type {
@@ -31,6 +36,12 @@ export type {
31
36
  ModalRpcStepsResultType,
32
37
  ModalStepTypes,
33
38
  } from "./rpc/displayModal";
39
+ // Sharing page related
40
+ export type {
41
+ DisplaySharingPageParamsType,
42
+ DisplaySharingPageResultType,
43
+ SharingPageProduct,
44
+ } from "./rpc/displaySharingPage";
34
45
  export type {
35
46
  DisplayEmbeddedWalletParamsType,
36
47
  DisplayEmbeddedWalletResultType,
@@ -65,9 +76,12 @@ export type {
65
76
  PrepareSsoReturnType,
66
77
  SsoMetadata,
67
78
  } from "./rpc/sso";
79
+ export type { UserReferralStatusType } from "./rpc/userReferralStatus";
68
80
  export type { WalletStatusReturnType } from "./rpc/walletStatus";
69
81
  // Tracking
70
82
  export type {
83
+ AttributionDefaults,
84
+ AttributionParams,
71
85
  TrackArrivalParams,
72
86
  TrackArrivalResult,
73
87
  UtmParams,
@@ -1,4 +1,5 @@
1
1
  import type { I18nConfig } from "../config";
2
+ import type { ResolvedSdkConfig } from "../resolvedConfig";
2
3
 
3
4
  /**
4
5
  * Event related to the iframe lifecycle
@@ -9,9 +10,9 @@ export type ClientLifecycleEvent =
9
10
  | CustomI18nEvent
10
11
  | RestoreBackupEvent
11
12
  | HearbeatEvent
12
- | HandshakeResponse
13
13
  | SsoRedirectCompleteEvent
14
- | DeepLinkFailedEvent;
14
+ | DeepLinkFailedEvent
15
+ | ResolvedConfigEvent;
15
16
 
16
17
  type CustomCssEvent = {
17
18
  clientLifecycle: "modal-css";
@@ -33,31 +34,6 @@ type HearbeatEvent = {
33
34
  data?: never;
34
35
  };
35
36
 
36
- type HandshakeResponse = {
37
- clientLifecycle: "handshake-response";
38
- data: {
39
- token: string;
40
- currentUrl: string;
41
- /**
42
- * Pending merge token extracted from URL (?fmt= parameter)
43
- * When present, listener should execute identity merge in background
44
- * URL is cleaned after handshake response is sent
45
- */
46
- pendingMergeToken?: string;
47
- /**
48
- * Client ID for identity tracking (belt & suspenders fallback)
49
- * Primary delivery is via iframe URL query param; handshake is backup for SSR
50
- */
51
- clientId?: string;
52
- /**
53
- * Explicit domain from SDK config (FrakWalletSdkConfig.domain)
54
- * When present, listener should prefer this over URL-derived domain
55
- * for merchant resolution (handles proxied/tunneled environments)
56
- */
57
- configDomain?: string;
58
- };
59
- };
60
-
61
37
  type SsoRedirectCompleteEvent = {
62
38
  clientLifecycle: "sso-redirect-complete";
63
39
  data: { compressed: string };
@@ -67,3 +43,29 @@ type DeepLinkFailedEvent = {
67
43
  clientLifecycle: "deep-link-failed";
68
44
  data: { originalUrl: string };
69
45
  };
46
+
47
+ type ResolvedConfigEvent = {
48
+ clientLifecycle: "resolved-config";
49
+ data: {
50
+ merchantId: string;
51
+ /** The domain the backend resolved this config for */
52
+ domain: string;
53
+ /** All domains registered for this merchant (for domain proof) */
54
+ allowedDomains: string[];
55
+ /** Full URL of the parent page (for interaction tracking) */
56
+ sourceUrl: string;
57
+ /**
58
+ * Pending merge token extracted from URL (?fmt= parameter).
59
+ * When present, listener should execute identity merge in background.
60
+ */
61
+ pendingMergeToken?: string;
62
+ /**
63
+ * Persistent per-origin anonymous id generated on the partner site
64
+ * (SDK-side localStorage). Propagated here so the listener can
65
+ * set it as an OpenPanel global property and stitch SDK events
66
+ * with listener events in the same funnel.
67
+ */
68
+ sdkAnonymousId?: string;
69
+ sdkConfig?: ResolvedSdkConfig;
70
+ };
71
+ };