@appfunnel-dev/sdk 2.0.0-canary.7 → 2.0.0-canary.8
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/{capabilities-7_hy5f5G.d.cts → capabilities-CsnkVwna.d.cts} +34 -1
- package/dist/{capabilities-7_hy5f5G.d.ts → capabilities-CsnkVwna.d.ts} +34 -1
- package/dist/{checkout-D1NUPv4p.d.ts → checkout-3PkKwPd7.d.ts} +1 -1
- package/dist/{checkout-CMEdxpgo.d.cts → checkout-Cg20l53c.d.cts} +1 -1
- package/dist/{chunk-VAOR77NW.cjs → chunk-FY3TMSRU.cjs} +7 -7
- package/dist/{chunk-VAOR77NW.cjs.map → chunk-FY3TMSRU.cjs.map} +1 -1
- package/dist/{chunk-CFFMZYPE.js → chunk-PWXMQGO6.js} +3 -3
- package/dist/{chunk-CFFMZYPE.js.map → chunk-PWXMQGO6.js.map} +1 -1
- package/dist/{chunk-TNLRQPVY.js → chunk-RVJLR4RS.js} +36 -8
- package/dist/chunk-RVJLR4RS.js.map +1 -0
- package/dist/{chunk-QMAZGLGV.cjs → chunk-RY3LOSVZ.cjs} +37 -7
- package/dist/chunk-RY3LOSVZ.cjs.map +1 -0
- package/dist/{chunk-7YQLPPPG.js → chunk-VW2HVPR4.js} +7 -2
- package/dist/chunk-VW2HVPR4.js.map +1 -0
- package/dist/{chunk-BPOAWI4G.cjs → chunk-Y4YNJ2EX.cjs} +7 -2
- package/dist/chunk-Y4YNJ2EX.cjs.map +1 -0
- package/dist/driver-paddle.cjs +22 -22
- package/dist/driver-paddle.d.cts +2 -2
- package/dist/driver-paddle.d.ts +2 -2
- package/dist/driver-paddle.js +2 -2
- package/dist/driver-stripe.cjs +24 -24
- package/dist/driver-stripe.d.cts +2 -2
- package/dist/driver-stripe.d.ts +2 -2
- package/dist/driver-stripe.js +2 -2
- package/dist/index.cjs +60 -60
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5 -5
- package/dist/index.d.ts +5 -5
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/{manifest-CMe8yVkr.d.cts → manifest-B3Tdab0M.d.cts} +64 -1
- package/dist/{manifest-CMe8yVkr.d.ts → manifest-B3Tdab0M.d.ts} +64 -1
- package/dist/manifest-entry.cjs +100 -31
- package/dist/manifest-entry.cjs.map +1 -1
- package/dist/manifest-entry.d.cts +9 -26
- package/dist/manifest-entry.d.ts +9 -26
- package/dist/manifest-entry.js +64 -3
- package/dist/manifest-entry.js.map +1 -1
- package/package.json +1 -1
- package/dist/chunk-7YQLPPPG.js.map +0 -1
- package/dist/chunk-BPOAWI4G.cjs.map +0 -1
- package/dist/chunk-QMAZGLGV.cjs.map +0 -1
- package/dist/chunk-TNLRQPVY.js.map +0 -1
package/dist/index.cjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkY4YNJ2EX_cjs = require('./chunk-Y4YNJ2EX.cjs');
|
|
4
4
|
var chunkWYUDL4FI_cjs = require('./chunk-WYUDL4FI.cjs');
|
|
5
|
-
var
|
|
5
|
+
var chunkRY3LOSVZ_cjs = require('./chunk-RY3LOSVZ.cjs');
|
|
6
6
|
require('./chunk-EMMSS5I5.cjs');
|
|
7
7
|
var React = require('react');
|
|
8
8
|
var ReactDOM = require('react-dom');
|
|
@@ -504,9 +504,9 @@ function LocaleProvider({
|
|
|
504
504
|
override,
|
|
505
505
|
children
|
|
506
506
|
}) {
|
|
507
|
-
const [locale, setLocale] = React.useState(() =>
|
|
507
|
+
const [locale, setLocale] = React.useState(() => chunkY4YNJ2EX_cjs.resolveLocale(config, detected, override));
|
|
508
508
|
React.useEffect(() => {
|
|
509
|
-
setLocale(
|
|
509
|
+
setLocale(chunkY4YNJ2EX_cjs.resolveLocale(config, detected, override));
|
|
510
510
|
}, [config, detected, override]);
|
|
511
511
|
const value = React.useMemo(
|
|
512
512
|
() => ({ locale, setLocale, config, catalog }),
|
|
@@ -578,7 +578,7 @@ function useTranslation() {
|
|
|
578
578
|
fmt,
|
|
579
579
|
locale,
|
|
580
580
|
setLocale,
|
|
581
|
-
dir:
|
|
581
|
+
dir: chunkY4YNJ2EX_cjs.isRtl(locale) ? "rtl" : "ltr",
|
|
582
582
|
locales: config?.supported ?? [locale]
|
|
583
583
|
};
|
|
584
584
|
}
|
|
@@ -600,7 +600,7 @@ function useOffering(id) {
|
|
|
600
600
|
const locale = useActiveLocale();
|
|
601
601
|
const resolved = id ? catalog.get(id) : void 0;
|
|
602
602
|
return React.useMemo(
|
|
603
|
-
() => resolved ?
|
|
603
|
+
() => resolved ? chunkY4YNJ2EX_cjs.formatOffering(resolved, locale) : void 0,
|
|
604
604
|
[resolved, locale]
|
|
605
605
|
);
|
|
606
606
|
}
|
|
@@ -608,7 +608,7 @@ function useOfferings() {
|
|
|
608
608
|
const catalog = useCatalog();
|
|
609
609
|
const locale = useActiveLocale();
|
|
610
610
|
return React.useMemo(
|
|
611
|
-
() => Array.from(catalog.values()).map((r) =>
|
|
611
|
+
() => Array.from(catalog.values()).map((r) => chunkY4YNJ2EX_cjs.formatOffering(r, locale)),
|
|
612
612
|
[catalog, locale]
|
|
613
613
|
);
|
|
614
614
|
}
|
|
@@ -786,10 +786,10 @@ function FunnelView({
|
|
|
786
786
|
[pages]
|
|
787
787
|
);
|
|
788
788
|
const seedRef = React.useRef(null);
|
|
789
|
-
if (seedRef.current === null) seedRef.current =
|
|
789
|
+
if (seedRef.current === null) seedRef.current = chunkY4YNJ2EX_cjs.bucketingSeed(funnel.context);
|
|
790
790
|
const seed = seedRef.current;
|
|
791
791
|
const experiments = React.useMemo(
|
|
792
|
-
() =>
|
|
792
|
+
() => chunkY4YNJ2EX_cjs.resolveExperiments(pages, funnel.experiments, seed),
|
|
793
793
|
[pages, funnel.experiments, seed]
|
|
794
794
|
);
|
|
795
795
|
const toSlot = React.useCallback((k) => experiments.slotOf[k] ?? k, [experiments]);
|
|
@@ -813,8 +813,8 @@ function FunnelView({
|
|
|
813
813
|
const target = toSlot(initialKey);
|
|
814
814
|
const page2 = flowPages.find((p) => p.key === target);
|
|
815
815
|
if (trustInitialKey) return page2 ? [target] : start ? [start] : [];
|
|
816
|
-
const guard =
|
|
817
|
-
const ok = page2 && (!guard ||
|
|
816
|
+
const guard = chunkY4YNJ2EX_cjs.entryGuard(page2?.meta);
|
|
817
|
+
const ok = page2 && (!guard || chunkY4YNJ2EX_cjs.evaluateGate(guard, funnel.snapshot()));
|
|
818
818
|
const first = ok ? target : start;
|
|
819
819
|
return first ? [first] : [];
|
|
820
820
|
});
|
|
@@ -822,7 +822,7 @@ function FunnelView({
|
|
|
822
822
|
const index = history.length - 1;
|
|
823
823
|
const startKey = history[0];
|
|
824
824
|
const total = React.useMemo(
|
|
825
|
-
() =>
|
|
825
|
+
() => chunkY4YNJ2EX_cjs.expectedPathLength(flow, startKey, funnel.snapshot()),
|
|
826
826
|
// currentKey in deps: re-trace as each step's answers settle the branch.
|
|
827
827
|
[flow, startKey, currentKey, funnel]
|
|
828
828
|
);
|
|
@@ -857,7 +857,7 @@ function FunnelView({
|
|
|
857
857
|
usePageExitTimer(tracker, currentKey);
|
|
858
858
|
const [isNavigating, startNav] = React.useTransition();
|
|
859
859
|
const next = React.useCallback(() => {
|
|
860
|
-
const target =
|
|
860
|
+
const target = chunkY4YNJ2EX_cjs.nextPage(flow, currentKey, funnel.snapshot());
|
|
861
861
|
const resolved = target ? toSlot(target) : target;
|
|
862
862
|
if (resolved) startNav(() => setHistory((h) => [...h, resolved]));
|
|
863
863
|
}, [flow, currentKey, funnel, toSlot]);
|
|
@@ -881,7 +881,7 @@ function FunnelView({
|
|
|
881
881
|
[loaders, toRenderKey]
|
|
882
882
|
);
|
|
883
883
|
const nextCandidates = React.useMemo(
|
|
884
|
-
() => [...new Set(
|
|
884
|
+
() => [...new Set(chunkY4YNJ2EX_cjs.outgoingKeys(flow, currentKey).map(toRenderKey))],
|
|
885
885
|
[flow, currentKey, toRenderKey]
|
|
886
886
|
);
|
|
887
887
|
React.useEffect(() => {
|
|
@@ -1382,7 +1382,7 @@ function createMockDriver(provider = "stripe", options = {}) {
|
|
|
1382
1382
|
amountMinor: 0,
|
|
1383
1383
|
currency: "USD"
|
|
1384
1384
|
};
|
|
1385
|
-
const offError = typeof options.failOffSession === "object" ? options.failOffSession :
|
|
1385
|
+
const offError = typeof options.failOffSession === "object" ? options.failOffSession : chunkRY3LOSVZ_cjs.checkoutError(
|
|
1386
1386
|
"authentication_required",
|
|
1387
1387
|
"off-session charge declined (mock)"
|
|
1388
1388
|
);
|
|
@@ -1403,7 +1403,7 @@ function createMockDriver(provider = "stripe", options = {}) {
|
|
|
1403
1403
|
if (success.ok) cb.onSuccess(success);
|
|
1404
1404
|
else
|
|
1405
1405
|
cb.onError(
|
|
1406
|
-
success.error ??
|
|
1406
|
+
success.error ?? chunkRY3LOSVZ_cjs.checkoutError(
|
|
1407
1407
|
"processing_error",
|
|
1408
1408
|
"failed (mock)"
|
|
1409
1409
|
)
|
|
@@ -1524,7 +1524,7 @@ function useCheckout(opts = {}) {
|
|
|
1524
1524
|
},
|
|
1525
1525
|
[tracker, productFacts]
|
|
1526
1526
|
);
|
|
1527
|
-
const hostInSheet = (surface) => surface === "sheet" ||
|
|
1527
|
+
const hostInSheet = (surface) => surface === "sheet" || chunkRY3LOSVZ_cjs.isInlineSurface(surface) && !!chunkRY3LOSVZ_cjs.PROVIDER_PROFILES[driver.provider]?.surfaces.sheet;
|
|
1528
1528
|
const startRecovery = (product, surface) => {
|
|
1529
1529
|
recovering.current = true;
|
|
1530
1530
|
if (hostInSheet(surface)) {
|
|
@@ -1581,7 +1581,7 @@ function useCheckout(opts = {}) {
|
|
|
1581
1581
|
else
|
|
1582
1582
|
startRecovery(
|
|
1583
1583
|
product,
|
|
1584
|
-
|
|
1584
|
+
chunkRY3LOSVZ_cjs.PROVIDER_PROFILES[driver.provider]?.surfaces.sheet ? "sheet" : "popup"
|
|
1585
1585
|
);
|
|
1586
1586
|
return;
|
|
1587
1587
|
}
|
|
@@ -1609,12 +1609,12 @@ function useCheckout(opts = {}) {
|
|
|
1609
1609
|
if (result.ok) succeedRef.current(result, product);
|
|
1610
1610
|
else
|
|
1611
1611
|
failRef.current(
|
|
1612
|
-
result.error ??
|
|
1612
|
+
result.error ?? chunkRY3LOSVZ_cjs.checkoutError("unknown", "Checkout failed"),
|
|
1613
1613
|
product
|
|
1614
1614
|
);
|
|
1615
1615
|
return result;
|
|
1616
1616
|
} catch (e) {
|
|
1617
|
-
const err =
|
|
1617
|
+
const err = chunkRY3LOSVZ_cjs.checkoutError(
|
|
1618
1618
|
"processing_error",
|
|
1619
1619
|
e instanceof Error ? e.message : "Checkout failed"
|
|
1620
1620
|
);
|
|
@@ -1666,7 +1666,7 @@ var CheckoutSheet = defineModal(({ product, surface, intent, kind, onSuccess, on
|
|
|
1666
1666
|
if (!hostable) {
|
|
1667
1667
|
resolved.current = true;
|
|
1668
1668
|
onErrorRef.current(
|
|
1669
|
-
|
|
1669
|
+
chunkRY3LOSVZ_cjs.checkoutError(
|
|
1670
1670
|
"processing_error",
|
|
1671
1671
|
"This checkout driver has no inline surface to host in the sheet"
|
|
1672
1672
|
)
|
|
@@ -1678,7 +1678,7 @@ var CheckoutSheet = defineModal(({ product, surface, intent, kind, onSuccess, on
|
|
|
1678
1678
|
return () => {
|
|
1679
1679
|
if (!resolved.current) {
|
|
1680
1680
|
onErrorRef.current(
|
|
1681
|
-
|
|
1681
|
+
chunkRY3LOSVZ_cjs.checkoutError(
|
|
1682
1682
|
"canceled",
|
|
1683
1683
|
"Checkout was dismissed before completing"
|
|
1684
1684
|
)
|
|
@@ -1737,7 +1737,7 @@ function Checkout({
|
|
|
1737
1737
|
const driver = useDriver();
|
|
1738
1738
|
const checkout = useCheckout(options);
|
|
1739
1739
|
const intent = options.intent ?? "purchase";
|
|
1740
|
-
if (
|
|
1740
|
+
if (chunkRY3LOSVZ_cjs.isInlineSurface(surface)) {
|
|
1741
1741
|
return driver.renderInline ? React.createElement(
|
|
1742
1742
|
"div",
|
|
1743
1743
|
{ key: product, className },
|
|
@@ -1823,7 +1823,7 @@ function CheckoutResume(options = {}) {
|
|
|
1823
1823
|
cb.onSuccess(result);
|
|
1824
1824
|
} else {
|
|
1825
1825
|
cb.onError(
|
|
1826
|
-
result.error ??
|
|
1826
|
+
result.error ?? chunkRY3LOSVZ_cjs.checkoutError(
|
|
1827
1827
|
"unknown",
|
|
1828
1828
|
"The checkout could not be verified"
|
|
1829
1829
|
)
|
|
@@ -3028,7 +3028,7 @@ function FunnelProvider({
|
|
|
3028
3028
|
const value2 = s.get("user.email");
|
|
3029
3029
|
return typeof value2 === "string" && /^[^\s@]+@[^\s@]+\.[^\s@]{2,}$/.test(value2) ? value2 : void 0;
|
|
3030
3030
|
};
|
|
3031
|
-
const catalog =
|
|
3031
|
+
const catalog = chunkY4YNJ2EX_cjs.buildCatalog(offerings ?? []);
|
|
3032
3032
|
return {
|
|
3033
3033
|
funnel: createFunnel(s, ctx, busTracker, experiments ?? []),
|
|
3034
3034
|
store: s,
|
|
@@ -3688,143 +3688,143 @@ function Script({
|
|
|
3688
3688
|
|
|
3689
3689
|
Object.defineProperty(exports, "assignVariant", {
|
|
3690
3690
|
enumerable: true,
|
|
3691
|
-
get: function () { return
|
|
3691
|
+
get: function () { return chunkY4YNJ2EX_cjs.assignVariant; }
|
|
3692
3692
|
});
|
|
3693
3693
|
Object.defineProperty(exports, "bucketingSeed", {
|
|
3694
3694
|
enumerable: true,
|
|
3695
|
-
get: function () { return
|
|
3695
|
+
get: function () { return chunkY4YNJ2EX_cjs.bucketingSeed; }
|
|
3696
3696
|
});
|
|
3697
3697
|
Object.defineProperty(exports, "buildCatalog", {
|
|
3698
3698
|
enumerable: true,
|
|
3699
|
-
get: function () { return
|
|
3699
|
+
get: function () { return chunkY4YNJ2EX_cjs.buildCatalog; }
|
|
3700
3700
|
});
|
|
3701
3701
|
Object.defineProperty(exports, "compileManifest", {
|
|
3702
3702
|
enumerable: true,
|
|
3703
|
-
get: function () { return
|
|
3703
|
+
get: function () { return chunkY4YNJ2EX_cjs.compileManifest; }
|
|
3704
3704
|
});
|
|
3705
3705
|
Object.defineProperty(exports, "currencyExponent", {
|
|
3706
3706
|
enumerable: true,
|
|
3707
|
-
get: function () { return
|
|
3707
|
+
get: function () { return chunkY4YNJ2EX_cjs.currencyExponent; }
|
|
3708
3708
|
});
|
|
3709
3709
|
Object.defineProperty(exports, "defineFunnel", {
|
|
3710
3710
|
enumerable: true,
|
|
3711
|
-
get: function () { return
|
|
3711
|
+
get: function () { return chunkY4YNJ2EX_cjs.defineFunnel; }
|
|
3712
3712
|
});
|
|
3713
3713
|
Object.defineProperty(exports, "definePage", {
|
|
3714
3714
|
enumerable: true,
|
|
3715
|
-
get: function () { return
|
|
3715
|
+
get: function () { return chunkY4YNJ2EX_cjs.definePage; }
|
|
3716
3716
|
});
|
|
3717
3717
|
Object.defineProperty(exports, "entryGuard", {
|
|
3718
3718
|
enumerable: true,
|
|
3719
|
-
get: function () { return
|
|
3719
|
+
get: function () { return chunkY4YNJ2EX_cjs.entryGuard; }
|
|
3720
3720
|
});
|
|
3721
3721
|
Object.defineProperty(exports, "evaluateCondition", {
|
|
3722
3722
|
enumerable: true,
|
|
3723
|
-
get: function () { return
|
|
3723
|
+
get: function () { return chunkY4YNJ2EX_cjs.evaluateCondition; }
|
|
3724
3724
|
});
|
|
3725
3725
|
Object.defineProperty(exports, "evaluateGate", {
|
|
3726
3726
|
enumerable: true,
|
|
3727
|
-
get: function () { return
|
|
3727
|
+
get: function () { return chunkY4YNJ2EX_cjs.evaluateGate; }
|
|
3728
3728
|
});
|
|
3729
3729
|
Object.defineProperty(exports, "expectedPathLength", {
|
|
3730
3730
|
enumerable: true,
|
|
3731
|
-
get: function () { return
|
|
3731
|
+
get: function () { return chunkY4YNJ2EX_cjs.expectedPathLength; }
|
|
3732
3732
|
});
|
|
3733
3733
|
Object.defineProperty(exports, "fnv1a", {
|
|
3734
3734
|
enumerable: true,
|
|
3735
|
-
get: function () { return
|
|
3735
|
+
get: function () { return chunkY4YNJ2EX_cjs.fnv1a; }
|
|
3736
3736
|
});
|
|
3737
3737
|
Object.defineProperty(exports, "formatMoney", {
|
|
3738
3738
|
enumerable: true,
|
|
3739
|
-
get: function () { return
|
|
3739
|
+
get: function () { return chunkY4YNJ2EX_cjs.formatMoney; }
|
|
3740
3740
|
});
|
|
3741
3741
|
Object.defineProperty(exports, "formatOffering", {
|
|
3742
3742
|
enumerable: true,
|
|
3743
|
-
get: function () { return
|
|
3743
|
+
get: function () { return chunkY4YNJ2EX_cjs.formatOffering; }
|
|
3744
3744
|
});
|
|
3745
3745
|
Object.defineProperty(exports, "hashToUnit", {
|
|
3746
3746
|
enumerable: true,
|
|
3747
|
-
get: function () { return
|
|
3747
|
+
get: function () { return chunkY4YNJ2EX_cjs.hashToUnit; }
|
|
3748
3748
|
});
|
|
3749
3749
|
Object.defineProperty(exports, "isRtl", {
|
|
3750
3750
|
enumerable: true,
|
|
3751
|
-
get: function () { return
|
|
3751
|
+
get: function () { return chunkY4YNJ2EX_cjs.isRtl; }
|
|
3752
3752
|
});
|
|
3753
3753
|
Object.defineProperty(exports, "isVariantKey", {
|
|
3754
3754
|
enumerable: true,
|
|
3755
|
-
get: function () { return
|
|
3755
|
+
get: function () { return chunkY4YNJ2EX_cjs.isVariantKey; }
|
|
3756
3756
|
});
|
|
3757
3757
|
Object.defineProperty(exports, "nextPage", {
|
|
3758
3758
|
enumerable: true,
|
|
3759
|
-
get: function () { return
|
|
3759
|
+
get: function () { return chunkY4YNJ2EX_cjs.nextPage; }
|
|
3760
3760
|
});
|
|
3761
3761
|
Object.defineProperty(exports, "outgoingKeys", {
|
|
3762
3762
|
enumerable: true,
|
|
3763
|
-
get: function () { return
|
|
3763
|
+
get: function () { return chunkY4YNJ2EX_cjs.outgoingKeys; }
|
|
3764
3764
|
});
|
|
3765
3765
|
Object.defineProperty(exports, "pageMeta", {
|
|
3766
3766
|
enumerable: true,
|
|
3767
|
-
get: function () { return
|
|
3767
|
+
get: function () { return chunkY4YNJ2EX_cjs.pageMeta; }
|
|
3768
3768
|
});
|
|
3769
3769
|
Object.defineProperty(exports, "parseSlotKey", {
|
|
3770
3770
|
enumerable: true,
|
|
3771
|
-
get: function () { return
|
|
3771
|
+
get: function () { return chunkY4YNJ2EX_cjs.parseSlotKey; }
|
|
3772
3772
|
});
|
|
3773
3773
|
Object.defineProperty(exports, "pickByWeight", {
|
|
3774
3774
|
enumerable: true,
|
|
3775
|
-
get: function () { return
|
|
3775
|
+
get: function () { return chunkY4YNJ2EX_cjs.pickByWeight; }
|
|
3776
3776
|
});
|
|
3777
3777
|
Object.defineProperty(exports, "resolveExperiments", {
|
|
3778
3778
|
enumerable: true,
|
|
3779
|
-
get: function () { return
|
|
3779
|
+
get: function () { return chunkY4YNJ2EX_cjs.resolveExperiments; }
|
|
3780
3780
|
});
|
|
3781
3781
|
Object.defineProperty(exports, "resolveLocale", {
|
|
3782
3782
|
enumerable: true,
|
|
3783
|
-
get: function () { return
|
|
3783
|
+
get: function () { return chunkY4YNJ2EX_cjs.resolveLocale; }
|
|
3784
3784
|
});
|
|
3785
3785
|
Object.defineProperty(exports, "resolveOffering", {
|
|
3786
3786
|
enumerable: true,
|
|
3787
|
-
get: function () { return
|
|
3787
|
+
get: function () { return chunkY4YNJ2EX_cjs.resolveOffering; }
|
|
3788
3788
|
});
|
|
3789
3789
|
Object.defineProperty(exports, "resolveRoute", {
|
|
3790
3790
|
enumerable: true,
|
|
3791
|
-
get: function () { return
|
|
3791
|
+
get: function () { return chunkY4YNJ2EX_cjs.resolveRoute; }
|
|
3792
3792
|
});
|
|
3793
3793
|
Object.defineProperty(exports, "INLINE_SURFACES", {
|
|
3794
3794
|
enumerable: true,
|
|
3795
|
-
get: function () { return
|
|
3795
|
+
get: function () { return chunkRY3LOSVZ_cjs.INLINE_SURFACES; }
|
|
3796
3796
|
});
|
|
3797
3797
|
Object.defineProperty(exports, "PROVIDER_PROFILES", {
|
|
3798
3798
|
enumerable: true,
|
|
3799
|
-
get: function () { return
|
|
3799
|
+
get: function () { return chunkRY3LOSVZ_cjs.PROVIDER_PROFILES; }
|
|
3800
3800
|
});
|
|
3801
3801
|
Object.defineProperty(exports, "checkoutError", {
|
|
3802
3802
|
enumerable: true,
|
|
3803
|
-
get: function () { return
|
|
3803
|
+
get: function () { return chunkRY3LOSVZ_cjs.checkoutError; }
|
|
3804
3804
|
});
|
|
3805
3805
|
Object.defineProperty(exports, "isInlineSurface", {
|
|
3806
3806
|
enumerable: true,
|
|
3807
|
-
get: function () { return
|
|
3807
|
+
get: function () { return chunkRY3LOSVZ_cjs.isInlineSurface; }
|
|
3808
3808
|
});
|
|
3809
3809
|
Object.defineProperty(exports, "isMerchantOfRecord", {
|
|
3810
3810
|
enumerable: true,
|
|
3811
|
-
get: function () { return
|
|
3811
|
+
get: function () { return chunkRY3LOSVZ_cjs.isMerchantOfRecord; }
|
|
3812
3812
|
});
|
|
3813
3813
|
Object.defineProperty(exports, "isOrchestrator", {
|
|
3814
3814
|
enumerable: true,
|
|
3815
|
-
get: function () { return
|
|
3815
|
+
get: function () { return chunkRY3LOSVZ_cjs.isOrchestrator; }
|
|
3816
3816
|
});
|
|
3817
3817
|
Object.defineProperty(exports, "surfacesFor", {
|
|
3818
3818
|
enumerable: true,
|
|
3819
|
-
get: function () { return
|
|
3819
|
+
get: function () { return chunkRY3LOSVZ_cjs.surfacesFor; }
|
|
3820
3820
|
});
|
|
3821
3821
|
Object.defineProperty(exports, "validateCheckout", {
|
|
3822
3822
|
enumerable: true,
|
|
3823
|
-
get: function () { return
|
|
3823
|
+
get: function () { return chunkRY3LOSVZ_cjs.validateCheckout; }
|
|
3824
3824
|
});
|
|
3825
3825
|
Object.defineProperty(exports, "validateUpsell", {
|
|
3826
3826
|
enumerable: true,
|
|
3827
|
-
get: function () { return
|
|
3827
|
+
get: function () { return chunkRY3LOSVZ_cjs.validateUpsell; }
|
|
3828
3828
|
});
|
|
3829
3829
|
exports.AssetsContext = AssetsContext;
|
|
3830
3830
|
exports.AssetsProvider = AssetsProvider;
|