@fluid-app/portal-sdk 0.1.490 → 0.1.491
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/{FluidProvider-CXos09ow.cjs → FluidProvider-Ca4tizGi.cjs} +7 -1
- package/dist/FluidProvider-Ca4tizGi.cjs.map +1 -0
- package/dist/{FluidProvider-DWUYQQrs.mjs → FluidProvider-Cb-CUK7Q.mjs} +7 -1
- package/dist/FluidProvider-Cb-CUK7Q.mjs.map +1 -0
- package/dist/{MessagingScreen-DXImBupE.cjs → MessagingScreen-BE7D3QMn.cjs} +2 -2
- package/dist/{MessagingScreen-DXImBupE.cjs.map → MessagingScreen-BE7D3QMn.cjs.map} +1 -1
- package/dist/{MessagingScreen-_kCuZQ0S.mjs → MessagingScreen-BMVROHyR.mjs} +2 -2
- package/dist/{MessagingScreen-_kCuZQ0S.mjs.map → MessagingScreen-BMVROHyR.mjs.map} +1 -1
- package/dist/{MessagingScreen-z6EqMZga.cjs → MessagingScreen-CiRcpho_.cjs} +2 -2
- package/dist/{MessagingScreen-DmFcYoFI.mjs → MessagingScreen-DMBSotha.mjs} +2 -2
- package/dist/{OrdersScreen-Dnk-vI25.cjs → OrdersScreen-BcbiyF13.cjs} +2 -2
- package/dist/{OrdersScreen-CIgy7_Mh.mjs → OrdersScreen-CGfqkuIw.mjs} +2 -2
- package/dist/{OrdersScreen-CIgy7_Mh.mjs.map → OrdersScreen-CGfqkuIw.mjs.map} +1 -1
- package/dist/{OrdersScreen-Co8Y0sPO.mjs → OrdersScreen-Cry7VOIJ.mjs} +2 -2
- package/dist/{OrdersScreen-k6bOPvfQ.cjs → OrdersScreen-DGDT5a2v.cjs} +2 -2
- package/dist/{OrdersScreen-k6bOPvfQ.cjs.map → OrdersScreen-DGDT5a2v.cjs.map} +1 -1
- package/dist/{ProfileScreen-JAKoiICd.mjs → ProfileScreen-3vJwQowb.mjs} +2 -2
- package/dist/{ProfileScreen-JAKoiICd.mjs.map → ProfileScreen-3vJwQowb.mjs.map} +1 -1
- package/dist/{ProfileScreen-DNirxG1v.cjs → ProfileScreen-BlklnF7M.cjs} +2 -2
- package/dist/{ProfileScreen-DNirxG1v.cjs.map → ProfileScreen-BlklnF7M.cjs.map} +1 -1
- package/dist/{ProfileScreen-RZWmbhD4.mjs → ProfileScreen-BoD0njbW.mjs} +3 -3
- package/dist/{ProfileScreen-C2exuSaz.cjs → ProfileScreen-vAoAKXHL.cjs} +3 -3
- package/dist/{SubscriptionsScreen-CyAf16uJ.mjs → SubscriptionsScreen-B1VJtHDf.mjs} +3 -3
- package/dist/{SubscriptionsScreen-CwodKRLN.mjs → SubscriptionsScreen-BNljne3A.mjs} +3 -3
- package/dist/{SubscriptionsScreen-CwodKRLN.mjs.map → SubscriptionsScreen-BNljne3A.mjs.map} +1 -1
- package/dist/{SubscriptionsScreen-CLoyEPF5.cjs → SubscriptionsScreen-DCSOWmOo.cjs} +3 -3
- package/dist/{SubscriptionsScreen-CLoyEPF5.cjs.map → SubscriptionsScreen-DCSOWmOo.cjs.map} +1 -1
- package/dist/{SubscriptionsScreen-C_5dsbbh.cjs → SubscriptionsScreen-DQjh8LmA.cjs} +3 -3
- package/dist/index.cjs +38 -16
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +22 -1
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +22 -1
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +38 -17
- package/dist/index.mjs.map +1 -1
- package/dist/{use-portal-card-add-3ds-flow-Boh6-bvn.mjs → use-portal-card-add-3ds-flow-D95hSkL9.mjs} +2 -2
- package/dist/{use-portal-card-add-3ds-flow-Boh6-bvn.mjs.map → use-portal-card-add-3ds-flow-D95hSkL9.mjs.map} +1 -1
- package/dist/{use-portal-card-add-3ds-flow-Dka4Eb3Q.cjs → use-portal-card-add-3ds-flow-FgrivY--.cjs} +2 -2
- package/dist/{use-portal-card-add-3ds-flow-Dka4Eb3Q.cjs.map → use-portal-card-add-3ds-flow-FgrivY--.cjs.map} +1 -1
- package/package.json +20 -20
- package/dist/FluidProvider-CXos09ow.cjs.map +0 -1
- package/dist/FluidProvider-DWUYQQrs.mjs.map +0 -1
|
@@ -4436,6 +4436,7 @@ function createDataSourceApiAdapter(client, contentClient) {
|
|
|
4436
4436
|
/** Safe no-op implementation used when no native shell is present. */
|
|
4437
4437
|
const webNativeCapabilitiesApi = {
|
|
4438
4438
|
isNativeApp: false,
|
|
4439
|
+
runtimeInfo: null,
|
|
4439
4440
|
capabilities: [],
|
|
4440
4441
|
supports: () => false,
|
|
4441
4442
|
haptic: () => {},
|
|
@@ -4541,6 +4542,11 @@ function createNativeCapabilitiesAdapter(bridge) {
|
|
|
4541
4542
|
const supports = (capability) => capabilities.includes(capability);
|
|
4542
4543
|
return {
|
|
4543
4544
|
isNativeApp: true,
|
|
4545
|
+
runtimeInfo: {
|
|
4546
|
+
platform: bridge.platform,
|
|
4547
|
+
appVersion: bridge.appVersion,
|
|
4548
|
+
bridgeVersion: bridge.bridgeVersion
|
|
4549
|
+
},
|
|
4544
4550
|
capabilities,
|
|
4545
4551
|
supports,
|
|
4546
4552
|
haptic: (style = "light") => {
|
|
@@ -8736,4 +8742,4 @@ function FluidDataSourceRegistryProvider({ baseUrl, getApiHeaders, variables, ch
|
|
|
8736
8742
|
//#endregion
|
|
8737
8743
|
export { useHaptics as _, messagingDomain as a, createSubscriptionsTranslationAdapter as c, ordersDomain as d, shellEn as f, useHapticCallback as g, getFluidNativeBridge as h, createMessagingTranslationAdapter as i, subscriptionsDomain as l, useThemeContext as m, SUPPORTED_LANGUAGES as n, createProfileTranslationAdapter as o, FluidThemeProvider as p, resolveLocale as r, profileDomain as s, FluidProvider as t, createOrdersTranslationAdapter as u, useNativeCapabilities as v, useAddressAutocompleteApiOptional as y };
|
|
8738
8744
|
|
|
8739
|
-
//# sourceMappingURL=FluidProvider-
|
|
8745
|
+
//# sourceMappingURL=FluidProvider-Cb-CUK7Q.mjs.map
|