@getopenpay/openpay-js 0.5.15 → 0.5.17
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/{Resource-Ds5bbQ3b.js → Resource-B7bleRFM.js} +4 -4
- package/dist/{SimpleSpanProcessor-0bSccE1S.js → SimpleSpanProcessor-iCWR2wrc.js} +37 -37
- package/dist/{detect-resources-UwRkF4Xd.js → detect-resources-D2kOb3PM.js} +12 -12
- package/dist/{diag-api-CMlZXyyv.js → diag-api-BoyoSeID.js} +1 -1
- package/dist/{index-BmKZeOoc.js → index-BPMrBQET.js} +6 -6
- package/dist/{index-BhZy-TW3.js → index-BYTBH3hu.js} +10 -10
- package/dist/{index-BZEpD-f0.js → index-Bt776KGI.js} +135 -135
- package/dist/{index-1jECpTsg.js → index-ChUHjTV-.js} +9 -9
- package/dist/{index-DFO-DCsT.js → index-Cu-H4NqV.js} +11 -11
- package/dist/index-DC5j54sB.js +7002 -0
- package/dist/{index-DsxDp11a.js → index-DKzJ38go.js} +4 -4
- package/dist/{index-JNJd_YS1.js → index-DSo9rD_X.js} +33 -33
- package/dist/{index-CDdbDQxQ.js → index-DutR89R3.js} +1 -1
- package/dist/{index-CWTkU3J-.js → index-_XOmOW58.js} +1 -1
- package/dist/index.d.ts +6 -1
- package/dist/index.es.js +1 -1
- package/dist/index.umd.js +8 -8
- package/dist/{metrics-api-C9pRFfr-.js → metrics-api-CyZz_Aku.js} +28 -28
- package/dist/{suppress-tracing-B94rObkn.js → suppress-tracing-3WarLq8k.js} +1 -1
- package/dist/{url-CdPstDG9.js → url-CWnDM543.js} +8 -8
- package/dist/{utils-VJ-0MC7c.js → utils-BnYsKdhz.js} +20 -20
- package/dist/{utils--M6ihaNw.js → utils-CRswusUx.js} +1 -1
- package/package.json +1 -1
- package/dist/index-j7i6AeZa.js +0 -7005
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { A as r, b as e, B as o, a as p, C as S, F as n, N as c, P as l, R as m, d as t, S as d, e as i, c as P, T as B } from "./SimpleSpanProcessor-
|
|
1
|
+
import { A as r, b as e, B as o, a as p, C as S, F as n, N as c, P as l, R as m, d as t, S as d, e as i, c as P, T as B } from "./SimpleSpanProcessor-iCWR2wrc.js";
|
|
2
2
|
export {
|
|
3
3
|
r as AlwaysOffSampler,
|
|
4
4
|
e as AlwaysOnSampler,
|
package/dist/index.d.ts
CHANGED
|
@@ -258,6 +258,11 @@ declare type CustomInitParams = {
|
|
|
258
258
|
* This is working with current version of Stripe element (v3). This is not guaranteed to work with future versions of Stripe element.
|
|
259
259
|
*/
|
|
260
260
|
onAuthenticationStatusChange?: (isAuthenticated: boolean) => void;
|
|
261
|
+
/**
|
|
262
|
+
* This will be called once the `linkAuthenticationElement` is ready.
|
|
263
|
+
* This is just a wrapper for `linkAuthenticationElement.once('ready')`.
|
|
264
|
+
*/
|
|
265
|
+
onAuthenticationElementReady?: () => void;
|
|
261
266
|
};
|
|
262
267
|
|
|
263
268
|
googlePay?: {
|
|
@@ -1172,7 +1177,7 @@ params: OjsFlowParams<T_PARAMS, T_INIT_RESULT>
|
|
|
1172
1177
|
) => Promise<void>;
|
|
1173
1178
|
|
|
1174
1179
|
export declare type StripeLinkController = {
|
|
1175
|
-
mountButton: () => void;
|
|
1180
|
+
mountButton: (selector?: string) => void;
|
|
1176
1181
|
dismountButton: () => void;
|
|
1177
1182
|
waitForButtonToMount: () => Promise<HTMLElement>;
|
|
1178
1183
|
mountLinkAuthenticationElement: (selector: string) => StripeLinkAuthenticationElement;
|
package/dist/index.es.js
CHANGED