uapp-communication-sdk 1.0.0-dev.109 → 1.0.0-dev.111

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 (84) hide show
  1. package/communication-sdk.cjs +1 -1
  2. package/communication-sdk.js +4 -0
  3. package/communication-sdk.standalone.js +1 -1
  4. package/package.json +1 -1
  5. package/types/app/shell/AccountProfilePanel.d.ts.map +1 -1
  6. package/types/app/shell/use-account-profile.d.ts +3 -1
  7. package/types/app/shell/use-account-profile.d.ts.map +1 -1
  8. package/types/features/module-access/domain/module-access.d.ts +4 -0
  9. package/types/features/module-access/domain/module-access.d.ts.map +1 -1
  10. package/types/features/org/application/index.d.ts +5 -0
  11. package/types/features/org/application/index.d.ts.map +1 -1
  12. package/types/features/org/application/use-cases/delete-communication-rule.d.ts +15 -0
  13. package/types/features/org/application/use-cases/delete-communication-rule.d.ts.map +1 -0
  14. package/types/features/org/application/use-cases/link-communication-rule-webhook.d.ts +15 -0
  15. package/types/features/org/application/use-cases/link-communication-rule-webhook.d.ts.map +1 -0
  16. package/types/features/org/application/use-cases/list-communication-rules.d.ts +15 -0
  17. package/types/features/org/application/use-cases/list-communication-rules.d.ts.map +1 -0
  18. package/types/features/org/application/use-cases/save-communication-rule.d.ts +18 -0
  19. package/types/features/org/application/use-cases/save-communication-rule.d.ts.map +1 -0
  20. package/types/features/org/application/use-cases/unlink-communication-rule-webhook.d.ts +15 -0
  21. package/types/features/org/application/use-cases/unlink-communication-rule-webhook.d.ts.map +1 -0
  22. package/types/features/org/domain/communication-rule.d.ts +23 -0
  23. package/types/features/org/domain/communication-rule.d.ts.map +1 -0
  24. package/types/features/org/domain/errors/org-errors.d.ts +5 -0
  25. package/types/features/org/domain/errors/org-errors.d.ts.map +1 -1
  26. package/types/features/org/domain/index.d.ts +1 -0
  27. package/types/features/org/domain/index.d.ts.map +1 -1
  28. package/types/features/org/domain/ports/org-gateway.d.ts +7 -0
  29. package/types/features/org/domain/ports/org-gateway.d.ts.map +1 -1
  30. package/types/features/org/infrastructure/dto/org-dtos.d.ts +57 -0
  31. package/types/features/org/infrastructure/dto/org-dtos.d.ts.map +1 -1
  32. package/types/features/org/infrastructure/http-branches-gateway.d.ts +16 -0
  33. package/types/features/org/infrastructure/http-branches-gateway.d.ts.map +1 -0
  34. package/types/features/org/infrastructure/http-communication-rules-gateway.d.ts +17 -0
  35. package/types/features/org/infrastructure/http-communication-rules-gateway.d.ts.map +1 -0
  36. package/types/features/org/infrastructure/http-hierarchy-gateway.d.ts +16 -0
  37. package/types/features/org/infrastructure/http-hierarchy-gateway.d.ts.map +1 -0
  38. package/types/features/org/infrastructure/http-org-call.d.ts +15 -0
  39. package/types/features/org/infrastructure/http-org-call.d.ts.map +1 -0
  40. package/types/features/org/infrastructure/http-org-gateway.d.ts +16 -21
  41. package/types/features/org/infrastructure/http-org-gateway.d.ts.map +1 -1
  42. package/types/features/org/infrastructure/http-org-routes.d.ts +4 -0
  43. package/types/features/org/infrastructure/http-org-routes.d.ts.map +1 -1
  44. package/types/features/org/infrastructure/http-teams-gateway.d.ts +15 -0
  45. package/types/features/org/infrastructure/http-teams-gateway.d.ts.map +1 -0
  46. package/types/features/org/infrastructure/http-user-branches-gateway.d.ts +14 -0
  47. package/types/features/org/infrastructure/http-user-branches-gateway.d.ts.map +1 -0
  48. package/types/features/org/infrastructure/http-user-types-gateway.d.ts +22 -0
  49. package/types/features/org/infrastructure/http-user-types-gateway.d.ts.map +1 -0
  50. package/types/features/org/infrastructure/org-mappers.d.ts +4 -2
  51. package/types/features/org/infrastructure/org-mappers.d.ts.map +1 -1
  52. package/types/features/org/org-module.d.ts +6 -1
  53. package/types/features/org/org-module.d.ts.map +1 -1
  54. package/types/features/org/presentation/AccessControlPage.d.ts +2 -3
  55. package/types/features/org/presentation/AccessControlPage.d.ts.map +1 -1
  56. package/types/features/org/presentation/CommunicationRuleModal.d.ts +11 -0
  57. package/types/features/org/presentation/CommunicationRuleModal.d.ts.map +1 -0
  58. package/types/features/org/presentation/CommunicationRulesPanel.d.ts +7 -0
  59. package/types/features/org/presentation/CommunicationRulesPanel.d.ts.map +1 -0
  60. package/types/features/org/presentation/RuleCard.d.ts +13 -0
  61. package/types/features/org/presentation/RuleCard.d.ts.map +1 -0
  62. package/types/features/org/presentation/RuleFormInputs.d.ts +11 -0
  63. package/types/features/org/presentation/RuleFormInputs.d.ts.map +1 -0
  64. package/types/features/org/presentation/TargetRolesPicker.d.ts +12 -0
  65. package/types/features/org/presentation/TargetRolesPicker.d.ts.map +1 -0
  66. package/types/features/org/presentation/WebhookRuleGuide.d.ts +3 -0
  67. package/types/features/org/presentation/WebhookRuleGuide.d.ts.map +1 -0
  68. package/types/features/org/presentation/index.d.ts +3 -0
  69. package/types/features/org/presentation/index.d.ts.map +1 -1
  70. package/types/features/org/presentation/org-query-keys.d.ts +1 -0
  71. package/types/features/org/presentation/org-query-keys.d.ts.map +1 -1
  72. package/types/features/org/presentation/use-communication-rules.d.ts +16 -0
  73. package/types/features/org/presentation/use-communication-rules.d.ts.map +1 -0
  74. package/types/features/org/presentation/use-my-user-type.d.ts.map +1 -1
  75. package/types/features/org/presentation/use-org-module.d.ts +2 -0
  76. package/types/features/org/presentation/use-org-module.d.ts.map +1 -1
  77. package/types/features/org/presentation/use-role-selection.d.ts +13 -0
  78. package/types/features/org/presentation/use-role-selection.d.ts.map +1 -0
  79. package/types/features/org/presentation/use-rule-form-modal.d.ts +24 -0
  80. package/types/features/org/presentation/use-rule-form-modal.d.ts.map +1 -0
  81. package/types/features/org/presentation/use-save-communication-rule-handler.d.ts +7 -0
  82. package/types/features/org/presentation/use-save-communication-rule-handler.d.ts.map +1 -0
  83. package/types/features/settings/index.d.ts +2 -2
  84. package/types/features/settings/index.d.ts.map +1 -1
@@ -3743,6 +3743,10 @@ var bo = class {
3743
3743
  hierarchyManage: "CommunicationHub.Hierarchy.Manage",
3744
3744
  userBranches: "CommunicationHub.UserBranches",
3745
3745
  userBranchesManage: "CommunicationHub.UserBranches.Manage",
3746
+ communicationRules: "CommunicationHub.CommunicationRules",
3747
+ communicationRulesCreate: "CommunicationHub.CommunicationRules.Create",
3748
+ communicationRulesUpdate: "CommunicationHub.CommunicationRules.Update",
3749
+ communicationRulesDelete: "CommunicationHub.CommunicationRules.Delete",
3746
3750
  webhooksCreate: "CommunicationHub.Webhooks.Create",
3747
3751
  webhooksUpdate: "CommunicationHub.Webhooks.Update",
3748
3752
  webhooksDelete: "CommunicationHub.Webhooks.Delete",