lf-pagebuilder-vue 0.0.58 → 0.0.60

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.
@@ -10,6 +10,22 @@ type __VLS_Props = {
10
10
  visibleSections?: string[];
11
11
  /** Token JWT de Limbo - obtenido server-side con fetchLimboToken() */
12
12
  limboToken?: string;
13
+ /**
14
+ * URL del endpoint de refresh de token en el servidor del portal.
15
+ * Si se proporciona, Limbo revalidará el token automáticamente cuando caduque
16
+ * sin interrumpir al usuario (silent refresh).
17
+ * Debe apuntar al endpoint creado con createLimboTokenHandler().
18
+ * @example '/api/limbo-token'
19
+ */
20
+ limboTokenRefreshUrl?: string;
13
21
  };
14
- declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
22
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
23
+ "limbo:ready": () => any;
24
+ "limbo:error": (error: string) => any;
25
+ "limbo:token-expired": () => any;
26
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
27
+ "onLimbo:ready"?: (() => any) | undefined;
28
+ "onLimbo:error"?: ((error: string) => any) | undefined;
29
+ "onLimbo:token-expired"?: (() => any) | undefined;
30
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
15
31
  export default _default;