fge-auth-component 3.2.4 → 4.0.1
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/components/2Fa/Fge2FActivator.vue.d.ts.map +1 -1
- package/dist/components/FgeButtonCounter.vue.d.ts.map +1 -1
- package/dist/components/FgeEnviarCodigo.vue.d.ts.map +1 -1
- package/dist/components/FgeErrorMessage.vue.d.ts.map +1 -1
- package/dist/components/FgeFooter.vue.d.ts.map +1 -1
- package/dist/components/FgeHeader.vue.d.ts.map +1 -1
- package/dist/components/FgeLoadingComponent.vue.d.ts.map +1 -1
- package/dist/components/FgeLogin.vue.d.ts.map +1 -1
- package/dist/components/FgeMenuItems.vue.d.ts.map +1 -1
- package/dist/components/FgePassword.vue.d.ts.map +1 -1
- package/dist/components/FgePerfil.vue.d.ts.map +1 -1
- package/dist/components/FgePerfilHeader.vue.d.ts.map +1 -1
- package/dist/components/FgePerfilSidebar.vue.d.ts.map +1 -1
- package/dist/components/FgeRecuperarPassword.vue.d.ts.map +1 -1
- package/dist/components/FgeRegistrarPage.vue.d.ts.map +1 -1
- package/dist/components/FgeStepComponent.vue.d.ts.map +1 -1
- package/dist/components/PasswordDialog.vue.d.ts.map +1 -1
- package/dist/components/PrincipalLoginComp.vue.d.ts.map +1 -1
- package/dist/components/Sidebar.vue.d.ts.map +1 -1
- package/dist/components/TelegramDialog.vue.d.ts.map +1 -1
- package/dist/components/UpdateImageDialog.vue.d.ts.map +1 -1
- package/dist/components/dialogs/Message2faDialog.vue.d.ts.map +1 -1
- package/dist/components/svgIcons/CheckMarkIcon.vue.d.ts.map +1 -1
- package/dist/components/svgIcons/DefaultUserIcon.vue.d.ts.map +1 -1
- package/dist/components/svgIcons/ErrorIcon.vue.d.ts.map +1 -1
- package/dist/components/svgIcons/ExclamationIcon.vue.d.ts.map +1 -1
- package/dist/components/svgIcons/LoaderIcon.vue.d.ts.map +1 -1
- package/dist/fge-auth-component.css +1 -1
- package/dist/fge-auth-component.es.js +5710 -5603
- package/dist/fge-auth-component.umd.js +17 -17
- package/dist/main.d.ts +14 -4
- package/package.json +1 -1
package/dist/main.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ export declare type ConfigOptions = {
|
|
|
11
11
|
useYupLocale?: boolean;
|
|
12
12
|
baseUrl: string;
|
|
13
13
|
aplicacion: string;
|
|
14
|
+
baseUrlAuthNv?: string;
|
|
14
15
|
rrhhUrl: string;
|
|
15
16
|
telegramBot: string;
|
|
16
17
|
systemVersion?: string;
|
|
@@ -68,6 +69,7 @@ export declare const useFgeAuthLoginStore: StoreDefinition<"LOGIN_STORE", _Unwra
|
|
|
68
69
|
currentPage: Ref<ShowPage>;
|
|
69
70
|
binnacleId: Ref<string | null>;
|
|
70
71
|
apiBaseURL: Ref<string>;
|
|
72
|
+
apiBaseURLAuthNv: Ref<string>;
|
|
71
73
|
aplicacion: Ref<string>;
|
|
72
74
|
enableChangePassword: Ref<boolean>;
|
|
73
75
|
enableForceChangePwd: Ref<boolean>;
|
|
@@ -136,6 +138,7 @@ export declare const useFgeAuthLoginStore: StoreDefinition<"LOGIN_STORE", _Unwra
|
|
|
136
138
|
departamentoId: number;
|
|
137
139
|
} | undefined;
|
|
138
140
|
isAuth?: boolean | undefined;
|
|
141
|
+
isNvAuth?: boolean | undefined;
|
|
139
142
|
binnacleId?: string | undefined;
|
|
140
143
|
apps?: {
|
|
141
144
|
nombre: string;
|
|
@@ -157,9 +160,10 @@ export declare const useFgeAuthLoginStore: StoreDefinition<"LOGIN_STORE", _Unwra
|
|
|
157
160
|
} | undefined>;
|
|
158
161
|
on2AuthLogin: (values: any) => Promise<void>;
|
|
159
162
|
onLoginCiudadania: (values: any) => Promise<void>;
|
|
160
|
-
setConfigs: ({ newBaseURL, newAplicacion, newRrhhUrl, verificarSiFuncionario, telegramBot, systemVersion, enableChangePasswordMsg, enableForceChangePassword, }: {
|
|
163
|
+
setConfigs: ({ newBaseURL, newBaseURLAuthNv, newAplicacion, newRrhhUrl, verificarSiFuncionario, telegramBot, systemVersion, enableChangePasswordMsg, enableForceChangePassword, }: {
|
|
161
164
|
newBaseURL: string;
|
|
162
165
|
newAplicacion: string;
|
|
166
|
+
newBaseURLAuthNv?: string | undefined;
|
|
163
167
|
newRrhhUrl: string;
|
|
164
168
|
verificarSiFuncionario?: boolean | undefined;
|
|
165
169
|
telegramBot: string;
|
|
@@ -178,11 +182,12 @@ export declare const useFgeAuthLoginStore: StoreDefinition<"LOGIN_STORE", _Unwra
|
|
|
178
182
|
}) => void;
|
|
179
183
|
disable2FAStore: () => void;
|
|
180
184
|
onRefreshToken: () => Promise<void>;
|
|
181
|
-
}, "id" | "binnacleId" | "currentPage" | "apiBaseURL" | "aplicacion" | "enableChangePassword" | "enableForceChangePwd" | "userState" | "tgBot" | "systemVer" | "verificarFunc">>, Pick<{
|
|
185
|
+
}, "id" | "binnacleId" | "currentPage" | "apiBaseURL" | "apiBaseURLAuthNv" | "aplicacion" | "enableChangePassword" | "enableForceChangePwd" | "userState" | "tgBot" | "systemVer" | "verificarFunc">>, Pick<{
|
|
182
186
|
id: Ref<string>;
|
|
183
187
|
currentPage: Ref<ShowPage>;
|
|
184
188
|
binnacleId: Ref<string | null>;
|
|
185
189
|
apiBaseURL: Ref<string>;
|
|
190
|
+
apiBaseURLAuthNv: Ref<string>;
|
|
186
191
|
aplicacion: Ref<string>;
|
|
187
192
|
enableChangePassword: Ref<boolean>;
|
|
188
193
|
enableForceChangePwd: Ref<boolean>;
|
|
@@ -251,6 +256,7 @@ export declare const useFgeAuthLoginStore: StoreDefinition<"LOGIN_STORE", _Unwra
|
|
|
251
256
|
departamentoId: number;
|
|
252
257
|
} | undefined;
|
|
253
258
|
isAuth?: boolean | undefined;
|
|
259
|
+
isNvAuth?: boolean | undefined;
|
|
254
260
|
binnacleId?: string | undefined;
|
|
255
261
|
apps?: {
|
|
256
262
|
nombre: string;
|
|
@@ -272,9 +278,10 @@ export declare const useFgeAuthLoginStore: StoreDefinition<"LOGIN_STORE", _Unwra
|
|
|
272
278
|
} | undefined>;
|
|
273
279
|
on2AuthLogin: (values: any) => Promise<void>;
|
|
274
280
|
onLoginCiudadania: (values: any) => Promise<void>;
|
|
275
|
-
setConfigs: ({ newBaseURL, newAplicacion, newRrhhUrl, verificarSiFuncionario, telegramBot, systemVersion, enableChangePasswordMsg, enableForceChangePassword, }: {
|
|
281
|
+
setConfigs: ({ newBaseURL, newBaseURLAuthNv, newAplicacion, newRrhhUrl, verificarSiFuncionario, telegramBot, systemVersion, enableChangePasswordMsg, enableForceChangePassword, }: {
|
|
276
282
|
newBaseURL: string;
|
|
277
283
|
newAplicacion: string;
|
|
284
|
+
newBaseURLAuthNv?: string | undefined;
|
|
278
285
|
newRrhhUrl: string;
|
|
279
286
|
verificarSiFuncionario?: boolean | undefined;
|
|
280
287
|
telegramBot: string;
|
|
@@ -298,6 +305,7 @@ export declare const useFgeAuthLoginStore: StoreDefinition<"LOGIN_STORE", _Unwra
|
|
|
298
305
|
currentPage: Ref<ShowPage>;
|
|
299
306
|
binnacleId: Ref<string | null>;
|
|
300
307
|
apiBaseURL: Ref<string>;
|
|
308
|
+
apiBaseURLAuthNv: Ref<string>;
|
|
301
309
|
aplicacion: Ref<string>;
|
|
302
310
|
enableChangePassword: Ref<boolean>;
|
|
303
311
|
enableForceChangePwd: Ref<boolean>;
|
|
@@ -366,6 +374,7 @@ export declare const useFgeAuthLoginStore: StoreDefinition<"LOGIN_STORE", _Unwra
|
|
|
366
374
|
departamentoId: number;
|
|
367
375
|
} | undefined;
|
|
368
376
|
isAuth?: boolean | undefined;
|
|
377
|
+
isNvAuth?: boolean | undefined;
|
|
369
378
|
binnacleId?: string | undefined;
|
|
370
379
|
apps?: {
|
|
371
380
|
nombre: string;
|
|
@@ -387,9 +396,10 @@ export declare const useFgeAuthLoginStore: StoreDefinition<"LOGIN_STORE", _Unwra
|
|
|
387
396
|
} | undefined>;
|
|
388
397
|
on2AuthLogin: (values: any) => Promise<void>;
|
|
389
398
|
onLoginCiudadania: (values: any) => Promise<void>;
|
|
390
|
-
setConfigs: ({ newBaseURL, newAplicacion, newRrhhUrl, verificarSiFuncionario, telegramBot, systemVersion, enableChangePasswordMsg, enableForceChangePassword, }: {
|
|
399
|
+
setConfigs: ({ newBaseURL, newBaseURLAuthNv, newAplicacion, newRrhhUrl, verificarSiFuncionario, telegramBot, systemVersion, enableChangePasswordMsg, enableForceChangePassword, }: {
|
|
391
400
|
newBaseURL: string;
|
|
392
401
|
newAplicacion: string;
|
|
402
|
+
newBaseURLAuthNv?: string | undefined;
|
|
393
403
|
newRrhhUrl: string;
|
|
394
404
|
verificarSiFuncionario?: boolean | undefined;
|
|
395
405
|
telegramBot: string;
|