@tap-payments/os-micro-frontend-shared 0.1.96-test.12 → 0.1.96-test.14
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/build/types/apps.d.ts
CHANGED
|
@@ -101,7 +101,10 @@ export type MFWidgetBaseProps = {
|
|
|
101
101
|
appCode: string;
|
|
102
102
|
serviceCode: string;
|
|
103
103
|
}) => void;
|
|
104
|
-
openApp: (app:
|
|
104
|
+
openApp: (app: {
|
|
105
|
+
appCode: string;
|
|
106
|
+
serviceCode: string;
|
|
107
|
+
payload?: AppDetails['payload'];
|
|
105
108
|
sandboxMode?: boolean;
|
|
106
109
|
}) => void;
|
|
107
110
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { AppDetails, UserApp } from '../types/index.js';
|
|
2
2
|
export declare const getApp: (apps: UserApp[], appCode: string) => UserApp | undefined;
|
|
3
3
|
export declare const getService: (services: UserApp['app_services'], serviceCode: string) => import("../types/index.js").AppService | undefined;
|
|
4
|
-
export declare const openNewAppAttrs: ({ appCode, serviceCode, sandboxMode, payload, segmentId, numberOfOpenedApps, }: Pick<AppDetails, "
|
|
4
|
+
export declare const openNewAppAttrs: ({ appCode, serviceCode, sandboxMode, payload, segmentId, numberOfOpenedApps, }: Pick<AppDetails, "payload" | "appCode" | "serviceCode"> & {
|
|
5
5
|
sandboxMode?: boolean | undefined;
|
|
6
6
|
numberOfOpenedApps: number;
|
|
7
7
|
segmentId: string;
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tap-payments/os-micro-frontend-shared",
|
|
3
3
|
"description": "Shared components and utilities for Tap Payments micro frontends",
|
|
4
|
-
"version": "0.1.96-test.
|
|
5
|
-
"testVersion":
|
|
4
|
+
"version": "0.1.96-test.14",
|
|
5
|
+
"testVersion": 14,
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "build/index.js",
|
|
8
8
|
"module": "build/index.js",
|