@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
|
@@ -15195,6 +15195,7 @@ function createDataSourceApiAdapter(client, contentClient) {
|
|
|
15195
15195
|
/** Safe no-op implementation used when no native shell is present. */
|
|
15196
15196
|
const webNativeCapabilitiesApi = {
|
|
15197
15197
|
isNativeApp: false,
|
|
15198
|
+
runtimeInfo: null,
|
|
15198
15199
|
capabilities: [],
|
|
15199
15200
|
supports: () => false,
|
|
15200
15201
|
haptic: () => {},
|
|
@@ -15300,6 +15301,11 @@ function createNativeCapabilitiesAdapter(bridge) {
|
|
|
15300
15301
|
const supports = (capability) => capabilities.includes(capability);
|
|
15301
15302
|
return {
|
|
15302
15303
|
isNativeApp: true,
|
|
15304
|
+
runtimeInfo: {
|
|
15305
|
+
platform: bridge.platform,
|
|
15306
|
+
appVersion: bridge.appVersion,
|
|
15307
|
+
bridgeVersion: bridge.bridgeVersion
|
|
15308
|
+
},
|
|
15303
15309
|
capabilities,
|
|
15304
15310
|
supports,
|
|
15305
15311
|
haptic: (style = "light") => {
|
|
@@ -19608,4 +19614,4 @@ Object.defineProperty(exports, "useThemeContext", {
|
|
|
19608
19614
|
}
|
|
19609
19615
|
});
|
|
19610
19616
|
|
|
19611
|
-
//# sourceMappingURL=FluidProvider-
|
|
19617
|
+
//# sourceMappingURL=FluidProvider-Ca4tizGi.cjs.map
|