fge-auth-component 3.0.2 → 3.0.3
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/README.md +2 -1
- package/dist/components/PasswordDialog.vue.d.ts.map +1 -1
- package/dist/fge-auth-component.css +1 -1
- package/dist/fge-auth-component.es.js +4529 -4521
- package/dist/fge-auth-component.umd.js +19 -19
- package/dist/main.d.ts +11 -4
- package/package.json +1 -1
package/dist/main.d.ts
CHANGED
|
@@ -20,6 +20,7 @@ export declare type ConfigOptions = {
|
|
|
20
20
|
ENVIRONMENT: 'PROD' | 'TEST' | 'DEV' | 'STAGE';
|
|
21
21
|
MS_AGETIC_URL: string;
|
|
22
22
|
ENABLE_CHANGE_PASSWORD?: boolean;
|
|
23
|
+
ENABLE_FORCE_CHANGE_PASSWORD?: boolean;
|
|
23
24
|
};
|
|
24
25
|
|
|
25
26
|
declare const _default: {
|
|
@@ -69,6 +70,7 @@ export declare const useFgeAuthLoginStore: StoreDefinition<"LOGIN_STORE", _Unwra
|
|
|
69
70
|
apiBaseURL: Ref<string>;
|
|
70
71
|
aplicacion: Ref<string>;
|
|
71
72
|
enableChangePassword: Ref<boolean>;
|
|
73
|
+
enableForceChangePwd: Ref<boolean>;
|
|
72
74
|
userState: Ref<{
|
|
73
75
|
token?: string | undefined;
|
|
74
76
|
refreshToken?: string | undefined;
|
|
@@ -153,7 +155,7 @@ export declare const useFgeAuthLoginStore: StoreDefinition<"LOGIN_STORE", _Unwra
|
|
|
153
155
|
} | undefined>;
|
|
154
156
|
on2AuthLogin: (values: any) => Promise<void>;
|
|
155
157
|
onLoginCiudadania: (values: any) => Promise<void>;
|
|
156
|
-
setConfigs: ({ newBaseURL, newAplicacion, newRrhhUrl, verificarSiFuncionario, telegramBot, systemVersion, enableChangePasswordMsg, }: {
|
|
158
|
+
setConfigs: ({ newBaseURL, newAplicacion, newRrhhUrl, verificarSiFuncionario, telegramBot, systemVersion, enableChangePasswordMsg, enableForceChangePassword, }: {
|
|
157
159
|
newBaseURL: string;
|
|
158
160
|
newAplicacion: string;
|
|
159
161
|
newRrhhUrl: string;
|
|
@@ -161,6 +163,7 @@ export declare const useFgeAuthLoginStore: StoreDefinition<"LOGIN_STORE", _Unwra
|
|
|
161
163
|
telegramBot: string;
|
|
162
164
|
systemVersion?: string | undefined;
|
|
163
165
|
enableChangePasswordMsg?: boolean | undefined;
|
|
166
|
+
enableForceChangePassword?: boolean | undefined;
|
|
164
167
|
}) => void;
|
|
165
168
|
setDispositivoConfianzaCookie: ({ usuario, value, days, }: {
|
|
166
169
|
usuario: string;
|
|
@@ -172,13 +175,14 @@ export declare const useFgeAuthLoginStore: StoreDefinition<"LOGIN_STORE", _Unwra
|
|
|
172
175
|
[key: string]: any;
|
|
173
176
|
}) => void;
|
|
174
177
|
onRefreshToken: () => Promise<void>;
|
|
175
|
-
}, "id" | "binnacleId" | "currentPage" | "apiBaseURL" | "aplicacion" | "enableChangePassword" | "userState" | "tgBot" | "systemVer" | "verificarFunc">>, Pick<{
|
|
178
|
+
}, "id" | "binnacleId" | "currentPage" | "apiBaseURL" | "aplicacion" | "enableChangePassword" | "enableForceChangePwd" | "userState" | "tgBot" | "systemVer" | "verificarFunc">>, Pick<{
|
|
176
179
|
id: Ref<string>;
|
|
177
180
|
currentPage: Ref<ShowPage>;
|
|
178
181
|
binnacleId: Ref<string | null>;
|
|
179
182
|
apiBaseURL: Ref<string>;
|
|
180
183
|
aplicacion: Ref<string>;
|
|
181
184
|
enableChangePassword: Ref<boolean>;
|
|
185
|
+
enableForceChangePwd: Ref<boolean>;
|
|
182
186
|
userState: Ref<{
|
|
183
187
|
token?: string | undefined;
|
|
184
188
|
refreshToken?: string | undefined;
|
|
@@ -263,7 +267,7 @@ export declare const useFgeAuthLoginStore: StoreDefinition<"LOGIN_STORE", _Unwra
|
|
|
263
267
|
} | undefined>;
|
|
264
268
|
on2AuthLogin: (values: any) => Promise<void>;
|
|
265
269
|
onLoginCiudadania: (values: any) => Promise<void>;
|
|
266
|
-
setConfigs: ({ newBaseURL, newAplicacion, newRrhhUrl, verificarSiFuncionario, telegramBot, systemVersion, enableChangePasswordMsg, }: {
|
|
270
|
+
setConfigs: ({ newBaseURL, newAplicacion, newRrhhUrl, verificarSiFuncionario, telegramBot, systemVersion, enableChangePasswordMsg, enableForceChangePassword, }: {
|
|
267
271
|
newBaseURL: string;
|
|
268
272
|
newAplicacion: string;
|
|
269
273
|
newRrhhUrl: string;
|
|
@@ -271,6 +275,7 @@ export declare const useFgeAuthLoginStore: StoreDefinition<"LOGIN_STORE", _Unwra
|
|
|
271
275
|
telegramBot: string;
|
|
272
276
|
systemVersion?: string | undefined;
|
|
273
277
|
enableChangePasswordMsg?: boolean | undefined;
|
|
278
|
+
enableForceChangePassword?: boolean | undefined;
|
|
274
279
|
}) => void;
|
|
275
280
|
setDispositivoConfianzaCookie: ({ usuario, value, days, }: {
|
|
276
281
|
usuario: string;
|
|
@@ -289,6 +294,7 @@ export declare const useFgeAuthLoginStore: StoreDefinition<"LOGIN_STORE", _Unwra
|
|
|
289
294
|
apiBaseURL: Ref<string>;
|
|
290
295
|
aplicacion: Ref<string>;
|
|
291
296
|
enableChangePassword: Ref<boolean>;
|
|
297
|
+
enableForceChangePwd: Ref<boolean>;
|
|
292
298
|
userState: Ref<{
|
|
293
299
|
token?: string | undefined;
|
|
294
300
|
refreshToken?: string | undefined;
|
|
@@ -373,7 +379,7 @@ export declare const useFgeAuthLoginStore: StoreDefinition<"LOGIN_STORE", _Unwra
|
|
|
373
379
|
} | undefined>;
|
|
374
380
|
on2AuthLogin: (values: any) => Promise<void>;
|
|
375
381
|
onLoginCiudadania: (values: any) => Promise<void>;
|
|
376
|
-
setConfigs: ({ newBaseURL, newAplicacion, newRrhhUrl, verificarSiFuncionario, telegramBot, systemVersion, enableChangePasswordMsg, }: {
|
|
382
|
+
setConfigs: ({ newBaseURL, newAplicacion, newRrhhUrl, verificarSiFuncionario, telegramBot, systemVersion, enableChangePasswordMsg, enableForceChangePassword, }: {
|
|
377
383
|
newBaseURL: string;
|
|
378
384
|
newAplicacion: string;
|
|
379
385
|
newRrhhUrl: string;
|
|
@@ -381,6 +387,7 @@ export declare const useFgeAuthLoginStore: StoreDefinition<"LOGIN_STORE", _Unwra
|
|
|
381
387
|
telegramBot: string;
|
|
382
388
|
systemVersion?: string | undefined;
|
|
383
389
|
enableChangePasswordMsg?: boolean | undefined;
|
|
390
|
+
enableForceChangePassword?: boolean | undefined;
|
|
384
391
|
}) => void;
|
|
385
392
|
setDispositivoConfianzaCookie: ({ usuario, value, days, }: {
|
|
386
393
|
usuario: string;
|