valtech-components 4.0.1011 → 4.0.1012
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/esm2022/lib/components/organisms/account-view/account-view.component.mjs +5 -3
- package/esm2022/lib/services/auth/auth.service.mjs +9 -4
- package/esm2022/lib/services/auth/types.mjs +1 -1
- package/esm2022/lib/services/org/org.service.mjs +1 -1
- package/esm2022/lib/services/org/types.mjs +1 -1
- package/esm2022/lib/version.mjs +2 -2
- package/fesm2022/valtech-components.mjs +12 -5
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/services/auth/types.d.ts +3 -0
- package/lib/services/org/org.service.d.ts +3 -0
- package/lib/services/org/types.d.ts +2 -0
- package/lib/version.d.ts +1 -1
- package/package.json +1 -1
|
@@ -355,6 +355,7 @@ export interface ResendCodeResponse {
|
|
|
355
355
|
export interface SigninRequest {
|
|
356
356
|
email: string;
|
|
357
357
|
password: string;
|
|
358
|
+
appId?: string;
|
|
358
359
|
/** Plataforma del dispositivo (para detección de nuevo dispositivo) */
|
|
359
360
|
platform?: DevicePlatform;
|
|
360
361
|
/** Navegador (solo web) */
|
|
@@ -414,6 +415,7 @@ export interface MFAVerifyResponse {
|
|
|
414
415
|
export interface RefreshRequest {
|
|
415
416
|
refreshToken?: string;
|
|
416
417
|
activeOrgId?: string | null;
|
|
418
|
+
appId?: string;
|
|
417
419
|
}
|
|
418
420
|
/**
|
|
419
421
|
* Response de refrescar token.
|
|
@@ -649,6 +651,7 @@ export interface UpdateAvatarResponse {
|
|
|
649
651
|
*/
|
|
650
652
|
export interface SwitchOrgRequest {
|
|
651
653
|
organizationId: string;
|
|
654
|
+
appId?: string;
|
|
652
655
|
}
|
|
653
656
|
/**
|
|
654
657
|
* Response de cambio de organización.
|
|
@@ -51,6 +51,7 @@ export declare class OrgService {
|
|
|
51
51
|
orgName?: string;
|
|
52
52
|
roleId?: string;
|
|
53
53
|
inviterName?: string;
|
|
54
|
+
redirectTo?: string;
|
|
54
55
|
};
|
|
55
56
|
message?: string;
|
|
56
57
|
}>;
|
|
@@ -61,6 +62,8 @@ export declare class OrgService {
|
|
|
61
62
|
organizationId?: string;
|
|
62
63
|
organizationName?: string;
|
|
63
64
|
roleId?: string;
|
|
65
|
+
activeOrg?: string;
|
|
66
|
+
redirectTo?: string;
|
|
64
67
|
};
|
|
65
68
|
}>;
|
|
66
69
|
getPendingInvitations(): Observable<PendingInvitation[]>;
|
package/lib/version.d.ts
CHANGED