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.
@@ -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[]>;
@@ -91,6 +91,8 @@ export interface AcceptInvitationResponse {
91
91
  orgId: string;
92
92
  orgName: string;
93
93
  roleId: string;
94
+ activeOrg?: string;
95
+ redirectTo?: string;
94
96
  }
95
97
  export interface OrgRole {
96
98
  id: string;
package/lib/version.d.ts CHANGED
@@ -2,4 +2,4 @@
2
2
  * Current version of valtech-components.
3
3
  * This is automatically updated during the publish process.
4
4
  */
5
- export declare const VERSION = "4.0.1011";
5
+ export declare const VERSION = "4.0.1012";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "valtech-components",
3
- "version": "4.0.1011",
3
+ "version": "4.0.1012",
4
4
  "private": false,
5
5
  "bin": {
6
6
  "valtech-firebase-config": "./src/lib/services/firebase/scripts/generate-sw-config.js"