@wf-financing/ui-sdk 3.4.0 → 3.4.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.cjs.js +1 -1
- package/dist/index.es.js +47 -44
- package/package.json +3 -3
package/dist/index.cjs.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});var m=Object.defineProperty,
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});var m=Object.defineProperty,p=(s,e,t)=>e in s?m(s,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):s[e]=t,l=(s,e,t)=>p(s,typeof e!="symbol"?e+"":e,t);const v="https://api.wayflyer.com",I="https://sandbox-api.wayflyer.com",E=s=>{try{return JSON.parse(atob(s.split(".")[1]))}catch{return null}},b={"Content-Type":"application/json"},u={event:"/financing/v1/company/event/",error:"/financing/v1/error/"},y="wf_session_v1",U=1800*1e3,k=1440*60*1e3;class _{getSessionId(){const e=Date.now();let t=this.loadSession();return(!t||this.isSessionExpired(t,e))&&(t=this.mintNewSession(e)),t.lastActivity=e,this.saveSession(t),t.sessionId}isSessionExpired(e,t){const i=t-e.lastActivity>U,n=t-e.createdAt>k;return i||n}mintNewSession(e){return{sessionId:crypto.randomUUID(),createdAt:e,lastActivity:e}}loadSession(){try{const e=sessionStorage.getItem(y);return e?JSON.parse(e):null}catch{return null}}saveSession(e){try{sessionStorage.setItem(y,JSON.stringify(e))}catch{console.warn("Failed to save session context")}}}const f=class a{constructor(e,t,i){l(this,"baseUrl",null),l(this,"sessionManager"),l(this,"headers"),this.companyToken=e,this.baseUrl=i?I:v,this.sessionManager=new _,this.headers={...b,...t?{"X-SDK-Version":t}:{}}}get requestHeaders(){const e=a.getInstance(),t=e.sessionManager.getSessionId();return{Authorization:`Bearer ${e.companyToken}`,"X-Session-ID":t,...e.headers}}static getGlobalInstance(){return window.WayflyerLogger||null}static setGlobalInstance(e){window.WayflyerLogger=e}static initialize(e,t,i){a.getGlobalInstance()&&console.warn("Logger re-initialized");const n=new a(e,t,i==null?void 0:i.isSandbox);a.setGlobalInstance(n)}static getMandatoryProperties(e){const t=E(e),[i,n]=(t==null?void 0:t.sub.split("|"))||[],r=t==null?void 0:t.user_id;return{partner_id:i,company_id:n,user_id:r}}static getInstance(){const e=a.getGlobalInstance();if(!e)throw new Error("Logger not initialized. Call initialize() first.");return e}static async logEvent(e,t){if(this.isDevEnvironment)return;const i=a.getInstance();try{const n={...a.getMandatoryProperties(i.companyToken),...t},r=await fetch(i.baseUrl+u.event,{method:"POST",headers:i.requestHeaders,body:JSON.stringify({timestamp:new Date().toISOString(),event_name:e,properties:n})});if(r.status===200)return await r.json()}catch(n){console.error("Failed to log event",n)}}static async logError(e,t){if(this.isDevEnvironment){console.error(e);return}const i=a.getInstance();try{const n={...a.getMandatoryProperties(i.companyToken),...t},r=await fetch(i.baseUrl+u.error,{method:"POST",headers:i.requestHeaders,body:JSON.stringify({timestamp:new Date().toISOString(),message:e,properties:n})});if(r.status===200)return await r.json()}catch(n){console.warn("Failed to log error",n)}}};l(f,"isDevEnvironment",!1);let o=f;const S=(s,e)=>{if(!window.WayflyerUiSdk)throw new Error("SDK code was fetched successfully, but WayflyerUiSdk is unavailable on window");const t=window.WayflyerUiSdk;return new t(s,e)},D="wayflyer-ui-package",A="https://embedded-finance-frontend.vercel.app/npm/@wf-financing/ui@4",g="3.4.1",w="UI_SDK_READY_EVENT",P=async(s,e)=>window.WayflyerUiSdk?S(s,e):new Promise((i,n)=>{const r=document.createElement("script");r.src=A,r.type="module",r.id=D,r.async=!0,r.onerror=()=>{n(new Error(`Failed to load UI SDK script from ${r.src}`))};const d=()=>{const h=S(s,e);i(h)};window.addEventListener(w,d,{once:!0}),setTimeout(()=>{n(new Error("UI SDK initialization timeout exceeded")),window.removeEventListener(w,d)},1e3),document.head.appendChild(r)}),z="ui";let c=null;class L{static async loadSdk(e,t){var n;c??(c=this.getLoadSdkPromise(e,t));const i=await c;return((n=i==null?void 0:i.options)==null?void 0:n.language)!==(t==null?void 0:t.language)?(c=this.getLoadSdkPromise(e,t),await c):i}static async getLoadSdkPromise(e,t){const i=Date.now();try{const n=await P(e,t),r=Date.now()-i;return o.initialize(e,n.sdkVersion,t),o.logEvent("ui_sdk_initialized",{entry_point_version:g,entry_point_type:z,sdk_initialization_latency:r}),n}catch(n){const r=n instanceof Error?n:new Error(String(n));throw o.initialize(e,void 0,t),o.logError(r.message,{entry_point_version:g}),n}}}exports.WayflyerUiSdk=L;
|
package/dist/index.es.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
var
|
|
1
|
+
var m = Object.defineProperty, p = (r, e, t) => e in r ? m(r, e, { enumerable: !0, configurable: !0, writable: !0, value: t }) : r[e] = t, l = (r, e, t) => p(r, typeof e != "symbol" ? e + "" : e, t);
|
|
2
2
|
const v = "https://api.wayflyer.com", I = "https://sandbox-api.wayflyer.com", E = (r) => {
|
|
3
3
|
try {
|
|
4
4
|
return JSON.parse(atob(r.split(".")[1]));
|
|
@@ -10,7 +10,7 @@ const v = "https://api.wayflyer.com", I = "https://sandbox-api.wayflyer.com", E
|
|
|
10
10
|
}, u = {
|
|
11
11
|
event: "/financing/v1/company/event/",
|
|
12
12
|
error: "/financing/v1/error/"
|
|
13
|
-
}, y = "wf_session_v1",
|
|
13
|
+
}, y = "wf_session_v1", U = 1800 * 1e3, k = 1440 * 60 * 1e3;
|
|
14
14
|
class _ {
|
|
15
15
|
getSessionId() {
|
|
16
16
|
const e = Date.now();
|
|
@@ -18,8 +18,8 @@ class _ {
|
|
|
18
18
|
return (!t || this.isSessionExpired(t, e)) && (t = this.mintNewSession(e)), t.lastActivity = e, this.saveSession(t), t.sessionId;
|
|
19
19
|
}
|
|
20
20
|
isSessionExpired(e, t) {
|
|
21
|
-
const
|
|
22
|
-
return
|
|
21
|
+
const i = t - e.lastActivity > U, n = t - e.createdAt > k;
|
|
22
|
+
return i || n;
|
|
23
23
|
}
|
|
24
24
|
mintNewSession(e) {
|
|
25
25
|
return {
|
|
@@ -44,9 +44,9 @@ class _ {
|
|
|
44
44
|
}
|
|
45
45
|
}
|
|
46
46
|
}
|
|
47
|
-
const
|
|
48
|
-
constructor(e, t,
|
|
49
|
-
l(this, "baseUrl", null), l(this, "sessionManager"), l(this, "headers"), this.companyToken = e, this.baseUrl =
|
|
47
|
+
const f = class a {
|
|
48
|
+
constructor(e, t, i) {
|
|
49
|
+
l(this, "baseUrl", null), l(this, "sessionManager"), l(this, "headers"), this.companyToken = e, this.baseUrl = i ? I : v, this.sessionManager = new _(), this.headers = {
|
|
50
50
|
...b,
|
|
51
51
|
...t ? { "X-SDK-Version": t } : {}
|
|
52
52
|
};
|
|
@@ -65,14 +65,14 @@ const p = class a {
|
|
|
65
65
|
static setGlobalInstance(e) {
|
|
66
66
|
window.WayflyerLogger = e;
|
|
67
67
|
}
|
|
68
|
-
static initialize(e, t,
|
|
68
|
+
static initialize(e, t, i) {
|
|
69
69
|
a.getGlobalInstance() && console.warn("Logger re-initialized");
|
|
70
|
-
const n = new a(e, t,
|
|
70
|
+
const n = new a(e, t, i == null ? void 0 : i.isSandbox);
|
|
71
71
|
a.setGlobalInstance(n);
|
|
72
72
|
}
|
|
73
73
|
static getMandatoryProperties(e) {
|
|
74
|
-
const t = E(e), [
|
|
75
|
-
return { partner_id:
|
|
74
|
+
const t = E(e), [i, n] = (t == null ? void 0 : t.sub.split("|")) || [], s = t == null ? void 0 : t.user_id;
|
|
75
|
+
return { partner_id: i, company_id: n, user_id: s };
|
|
76
76
|
}
|
|
77
77
|
static getInstance() {
|
|
78
78
|
const e = a.getGlobalInstance();
|
|
@@ -82,22 +82,22 @@ const p = class a {
|
|
|
82
82
|
}
|
|
83
83
|
static async logEvent(e, t) {
|
|
84
84
|
if (this.isDevEnvironment) return;
|
|
85
|
-
const
|
|
85
|
+
const i = a.getInstance();
|
|
86
86
|
try {
|
|
87
87
|
const n = {
|
|
88
|
-
...a.getMandatoryProperties(
|
|
88
|
+
...a.getMandatoryProperties(i.companyToken),
|
|
89
89
|
...t
|
|
90
|
-
},
|
|
90
|
+
}, s = await fetch(i.baseUrl + u.event, {
|
|
91
91
|
method: "POST",
|
|
92
|
-
headers:
|
|
92
|
+
headers: i.requestHeaders,
|
|
93
93
|
body: JSON.stringify({
|
|
94
94
|
timestamp: (/* @__PURE__ */ new Date()).toISOString(),
|
|
95
95
|
event_name: e,
|
|
96
96
|
properties: n
|
|
97
97
|
})
|
|
98
98
|
});
|
|
99
|
-
if (
|
|
100
|
-
return await
|
|
99
|
+
if (s.status === 200)
|
|
100
|
+
return await s.json();
|
|
101
101
|
} catch (n) {
|
|
102
102
|
console.error("Failed to log event", n);
|
|
103
103
|
}
|
|
@@ -107,65 +107,68 @@ const p = class a {
|
|
|
107
107
|
console.error(e);
|
|
108
108
|
return;
|
|
109
109
|
}
|
|
110
|
-
const
|
|
110
|
+
const i = a.getInstance();
|
|
111
111
|
try {
|
|
112
112
|
const n = {
|
|
113
|
-
...a.getMandatoryProperties(
|
|
113
|
+
...a.getMandatoryProperties(i.companyToken),
|
|
114
114
|
...t
|
|
115
|
-
},
|
|
115
|
+
}, s = await fetch(i.baseUrl + u.error, {
|
|
116
116
|
method: "POST",
|
|
117
|
-
headers:
|
|
117
|
+
headers: i.requestHeaders,
|
|
118
118
|
body: JSON.stringify({
|
|
119
119
|
timestamp: (/* @__PURE__ */ new Date()).toISOString(),
|
|
120
120
|
message: e,
|
|
121
121
|
properties: n
|
|
122
122
|
})
|
|
123
123
|
});
|
|
124
|
-
if (
|
|
125
|
-
return await
|
|
124
|
+
if (s.status === 200)
|
|
125
|
+
return await s.json();
|
|
126
126
|
} catch (n) {
|
|
127
127
|
console.warn("Failed to log error", n);
|
|
128
128
|
}
|
|
129
129
|
}
|
|
130
130
|
};
|
|
131
|
-
l(
|
|
132
|
-
let o =
|
|
133
|
-
const
|
|
131
|
+
l(f, "isDevEnvironment", !1);
|
|
132
|
+
let o = f;
|
|
133
|
+
const g = (r, e) => {
|
|
134
134
|
if (!window.WayflyerUiSdk)
|
|
135
135
|
throw new Error("SDK code was fetched successfully, but WayflyerUiSdk is unavailable on window");
|
|
136
136
|
const t = window.WayflyerUiSdk;
|
|
137
137
|
return new t(r, e);
|
|
138
|
-
}, D = "wayflyer-ui-package", A = "https://embedded-finance-frontend.vercel.app/npm/@wf-financing/ui@4",
|
|
139
|
-
const
|
|
140
|
-
|
|
141
|
-
n(new Error(`Failed to load UI SDK script from ${
|
|
138
|
+
}, D = "wayflyer-ui-package", A = "https://embedded-finance-frontend.vercel.app/npm/@wf-financing/ui@4", S = "3.4.1", w = "UI_SDK_READY_EVENT", P = async (r, e) => window.WayflyerUiSdk ? g(r, e) : new Promise((i, n) => {
|
|
139
|
+
const s = document.createElement("script");
|
|
140
|
+
s.src = A, s.type = "module", s.id = D, s.async = !0, s.onerror = () => {
|
|
141
|
+
n(new Error(`Failed to load UI SDK script from ${s.src}`));
|
|
142
142
|
};
|
|
143
143
|
const d = () => {
|
|
144
|
-
const
|
|
145
|
-
|
|
144
|
+
const h = g(r, e);
|
|
145
|
+
i(h);
|
|
146
146
|
};
|
|
147
|
-
window.addEventListener(
|
|
148
|
-
n(new Error("UI SDK initialization timeout exceeded")), window.removeEventListener(
|
|
149
|
-
}, 1e3), document.head.appendChild(
|
|
147
|
+
window.addEventListener(w, d, { once: !0 }), setTimeout(() => {
|
|
148
|
+
n(new Error("UI SDK initialization timeout exceeded")), window.removeEventListener(w, d);
|
|
149
|
+
}, 1e3), document.head.appendChild(s);
|
|
150
150
|
}), z = "ui";
|
|
151
151
|
let c = null;
|
|
152
152
|
class L {
|
|
153
|
-
static loadSdk(e, t) {
|
|
154
|
-
|
|
153
|
+
static async loadSdk(e, t) {
|
|
154
|
+
var n;
|
|
155
|
+
c ?? (c = this.getLoadSdkPromise(e, t));
|
|
156
|
+
const i = await c;
|
|
157
|
+
return ((n = i == null ? void 0 : i.options) == null ? void 0 : n.language) !== (t == null ? void 0 : t.language) ? (c = this.getLoadSdkPromise(e, t), await c) : i;
|
|
155
158
|
}
|
|
156
159
|
static async getLoadSdkPromise(e, t) {
|
|
157
|
-
const
|
|
160
|
+
const i = Date.now();
|
|
158
161
|
try {
|
|
159
|
-
const n = await P(e, t),
|
|
162
|
+
const n = await P(e, t), s = Date.now() - i;
|
|
160
163
|
return o.initialize(e, n.sdkVersion, t), o.logEvent("ui_sdk_initialized", {
|
|
161
|
-
entry_point_version:
|
|
164
|
+
entry_point_version: S,
|
|
162
165
|
entry_point_type: z,
|
|
163
|
-
sdk_initialization_latency:
|
|
166
|
+
sdk_initialization_latency: s
|
|
164
167
|
}), n;
|
|
165
168
|
} catch (n) {
|
|
166
|
-
const
|
|
167
|
-
throw o.initialize(e, void 0, t), o.logError(
|
|
168
|
-
entry_point_version:
|
|
169
|
+
const s = n instanceof Error ? n : new Error(String(n));
|
|
170
|
+
throw o.initialize(e, void 0, t), o.logError(s.message, {
|
|
171
|
+
entry_point_version: S
|
|
169
172
|
}), n;
|
|
170
173
|
}
|
|
171
174
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wf-financing/ui-sdk",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.1",
|
|
4
4
|
"main": "dist/index.cjs.js",
|
|
5
5
|
"module": "dist/index.es.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
"dist"
|
|
16
16
|
],
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@wf-financing/embedded-types": "1.1.
|
|
19
|
-
"@wf-financing/logger": "2.2.
|
|
18
|
+
"@wf-financing/embedded-types": "1.1.1",
|
|
19
|
+
"@wf-financing/logger": "2.2.1"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"vite": "^6.3.5",
|