@lumiapassport/ui-kit 1.14.8 → 1.14.10
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/iframe/index.html +23 -16
- package/dist/iframe/main.js +156 -231
- package/dist/iframe/main.js.map +1 -1
- package/dist/index.cjs +928 -831
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -2
- package/dist/index.d.ts +4 -2
- package/dist/index.js +980 -895
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -615,12 +615,14 @@ declare class IframeManager {
|
|
|
615
615
|
/**
|
|
616
616
|
* Get trusted apps for user
|
|
617
617
|
*/
|
|
618
|
-
getTrustedApps(userId: string): Promise<
|
|
618
|
+
getTrustedApps(userId: string): Promise<{
|
|
619
619
|
userId: string;
|
|
620
620
|
projectId: string;
|
|
621
621
|
origin: string;
|
|
622
622
|
trustedAt: number;
|
|
623
|
-
|
|
623
|
+
appName?: string;
|
|
624
|
+
appLogo?: string;
|
|
625
|
+
}[]>;
|
|
624
626
|
/**
|
|
625
627
|
* Remove app from trusted list
|
|
626
628
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -615,12 +615,14 @@ declare class IframeManager {
|
|
|
615
615
|
/**
|
|
616
616
|
* Get trusted apps for user
|
|
617
617
|
*/
|
|
618
|
-
getTrustedApps(userId: string): Promise<
|
|
618
|
+
getTrustedApps(userId: string): Promise<{
|
|
619
619
|
userId: string;
|
|
620
620
|
projectId: string;
|
|
621
621
|
origin: string;
|
|
622
622
|
trustedAt: number;
|
|
623
|
-
|
|
623
|
+
appName?: string;
|
|
624
|
+
appLogo?: string;
|
|
625
|
+
}[]>;
|
|
624
626
|
/**
|
|
625
627
|
* Remove app from trusted list
|
|
626
628
|
*/
|