valtech-components 4.0.183 → 4.0.185

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.
@@ -645,6 +645,8 @@ export interface JWTClaims {
645
645
  premium?: boolean;
646
646
  /** Active organization ID (JWT claim "org") */
647
647
  org?: string;
648
+ /** Platform admin — bypass total de RBAC en todos los servicios */
649
+ admin?: boolean;
648
650
  /** Issued at */
649
651
  iat: number;
650
652
  /** Expiration */
@@ -9,6 +9,11 @@ export declare class OrgService {
9
9
  constructor(config: ValtechAuthConfig, http: HttpClient);
10
10
  private get baseUrl();
11
11
  listMyOrgs(): Observable<Organization[]>;
12
+ listAllOrgs(params?: {
13
+ limit?: number;
14
+ nextToken?: string;
15
+ filter?: string;
16
+ }): Observable<Organization[]>;
12
17
  listMyOrgsPage(params?: {
13
18
  limit?: number;
14
19
  nextToken?: 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.183";
5
+ export declare const VERSION = "4.0.185";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "valtech-components",
3
- "version": "4.0.183",
3
+ "version": "4.0.185",
4
4
  "private": false,
5
5
  "bin": {
6
6
  "valtech-firebase-config": "./src/lib/services/firebase/scripts/generate-sw-config.js"