@happyvertical/smrt-types 0.38.8 → 0.38.9

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +6 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -490,6 +490,12 @@ export declare interface Role extends SmrtEntityFields {
490
490
  name: string;
491
491
  description: string;
492
492
  isSystem: boolean;
493
+ /**
494
+ * Opt-in hierarchical inheritance: when `true`, an ACTIVE membership holding
495
+ * this role also resolves permissions in descendant tenants where the user
496
+ * has no direct membership. Default `false` (authority is exact-tenant only).
497
+ */
498
+ inheritsToDescendants: boolean;
493
499
  }
494
500
 
495
501
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@happyvertical/smrt-types",
3
- "version": "0.38.8",
3
+ "version": "0.38.9",
4
4
  "description": "Shared type definitions for the HAVE SDK",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",