evo360-types 1.3.238 → 1.3.242

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/dist/index.d.ts CHANGED
@@ -18,6 +18,7 @@ export * from "./types/evo-task";
18
18
  export * from "./types/evo-tags";
19
19
  export * from "./types/evo-survey";
20
20
  export * from "./types/evo-finops";
21
+ export * from "./types/evo-notif-user";
21
22
 
22
23
  // zod schemas
23
24
  export * from "./apps/shared/zod-schemas";
@@ -41,3 +42,4 @@ export * from "./apps/evo-tags/zod-schemas";
41
42
  export * from "./apps/evo-task/zod-schemas";
42
43
  export * from "./apps/evo-survey/zod-schemas";
43
44
  export * from "./apps/evo-finops/zod-schemas";
45
+ export * from "./apps/evo-notif-user/zod-schemas";
@@ -2,6 +2,7 @@ export * from "./fb_collections";
2
2
  export declare const EvoNotifUserPermissions: {
3
3
  readonly List: "evo_notif_user_read";
4
4
  readonly Get: "evo_notif_user_read";
5
+ readonly Creation: "evo_notif_user_creation";
5
6
  readonly Create: "evo_notif_user_write";
6
7
  readonly Update: "evo_notif_user_write";
7
8
  readonly Delete: "evo_notif_user_write";
@@ -30,6 +30,8 @@ __exportStar(require("./fb_collections"), exports);
30
30
  exports.EvoNotifUserPermissions = {
31
31
  List: "evo_notif_user_read",
32
32
  Get: "evo_notif_user_read",
33
+ // Allows creating notifications for other users (RBAC per-tenant).
34
+ Creation: "evo_notif_user_creation",
33
35
  Create: "evo_notif_user_write",
34
36
  Update: "evo_notif_user_write",
35
37
  Delete: "evo_notif_user_write",
@@ -16,6 +16,8 @@ export * from "./fb_collections";
16
16
  export const EvoNotifUserPermissions = {
17
17
  List: "evo_notif_user_read",
18
18
  Get: "evo_notif_user_read",
19
+ // Allows creating notifications for other users (RBAC per-tenant).
20
+ Creation: "evo_notif_user_creation",
19
21
  Create: "evo_notif_user_write",
20
22
  Update: "evo_notif_user_write",
21
23
  Delete: "evo_notif_user_write",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "evo360-types",
3
- "version": "1.3.238",
3
+ "version": "1.3.242",
4
4
  "description": "HREVO360 Shared Types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",