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.
- package/communication-sdk.cjs +1 -1
- package/communication-sdk.js +4 -0
- package/communication-sdk.standalone.js +1 -1
- package/package.json +1 -1
- package/types/app/shell/AccountProfilePanel.d.ts.map +1 -1
- package/types/app/shell/use-account-profile.d.ts +3 -1
- package/types/app/shell/use-account-profile.d.ts.map +1 -1
- package/types/features/module-access/domain/module-access.d.ts +4 -0
- package/types/features/module-access/domain/module-access.d.ts.map +1 -1
- package/types/features/org/application/index.d.ts +5 -0
- package/types/features/org/application/index.d.ts.map +1 -1
- package/types/features/org/application/use-cases/delete-communication-rule.d.ts +15 -0
- package/types/features/org/application/use-cases/delete-communication-rule.d.ts.map +1 -0
- package/types/features/org/application/use-cases/link-communication-rule-webhook.d.ts +15 -0
- package/types/features/org/application/use-cases/link-communication-rule-webhook.d.ts.map +1 -0
- package/types/features/org/application/use-cases/list-communication-rules.d.ts +15 -0
- package/types/features/org/application/use-cases/list-communication-rules.d.ts.map +1 -0
- package/types/features/org/application/use-cases/save-communication-rule.d.ts +18 -0
- package/types/features/org/application/use-cases/save-communication-rule.d.ts.map +1 -0
- package/types/features/org/application/use-cases/unlink-communication-rule-webhook.d.ts +15 -0
- package/types/features/org/application/use-cases/unlink-communication-rule-webhook.d.ts.map +1 -0
- package/types/features/org/domain/communication-rule.d.ts +23 -0
- package/types/features/org/domain/communication-rule.d.ts.map +1 -0
- package/types/features/org/domain/errors/org-errors.d.ts +5 -0
- package/types/features/org/domain/errors/org-errors.d.ts.map +1 -1
- package/types/features/org/domain/index.d.ts +1 -0
- package/types/features/org/domain/index.d.ts.map +1 -1
- package/types/features/org/domain/ports/org-gateway.d.ts +7 -0
- package/types/features/org/domain/ports/org-gateway.d.ts.map +1 -1
- package/types/features/org/infrastructure/dto/org-dtos.d.ts +57 -0
- package/types/features/org/infrastructure/dto/org-dtos.d.ts.map +1 -1
- package/types/features/org/infrastructure/http-branches-gateway.d.ts +16 -0
- package/types/features/org/infrastructure/http-branches-gateway.d.ts.map +1 -0
- package/types/features/org/infrastructure/http-communication-rules-gateway.d.ts +17 -0
- package/types/features/org/infrastructure/http-communication-rules-gateway.d.ts.map +1 -0
- package/types/features/org/infrastructure/http-hierarchy-gateway.d.ts +16 -0
- package/types/features/org/infrastructure/http-hierarchy-gateway.d.ts.map +1 -0
- package/types/features/org/infrastructure/http-org-call.d.ts +15 -0
- package/types/features/org/infrastructure/http-org-call.d.ts.map +1 -0
- package/types/features/org/infrastructure/http-org-gateway.d.ts +16 -21
- package/types/features/org/infrastructure/http-org-gateway.d.ts.map +1 -1
- package/types/features/org/infrastructure/http-org-routes.d.ts +4 -0
- package/types/features/org/infrastructure/http-org-routes.d.ts.map +1 -1
- package/types/features/org/infrastructure/http-teams-gateway.d.ts +15 -0
- package/types/features/org/infrastructure/http-teams-gateway.d.ts.map +1 -0
- package/types/features/org/infrastructure/http-user-branches-gateway.d.ts +14 -0
- package/types/features/org/infrastructure/http-user-branches-gateway.d.ts.map +1 -0
- package/types/features/org/infrastructure/http-user-types-gateway.d.ts +22 -0
- package/types/features/org/infrastructure/http-user-types-gateway.d.ts.map +1 -0
- package/types/features/org/infrastructure/org-mappers.d.ts +4 -2
- package/types/features/org/infrastructure/org-mappers.d.ts.map +1 -1
- package/types/features/org/org-module.d.ts +6 -1
- package/types/features/org/org-module.d.ts.map +1 -1
- package/types/features/org/presentation/AccessControlPage.d.ts +2 -3
- package/types/features/org/presentation/AccessControlPage.d.ts.map +1 -1
- package/types/features/org/presentation/CommunicationRuleModal.d.ts +11 -0
- package/types/features/org/presentation/CommunicationRuleModal.d.ts.map +1 -0
- package/types/features/org/presentation/CommunicationRulesPanel.d.ts +7 -0
- package/types/features/org/presentation/CommunicationRulesPanel.d.ts.map +1 -0
- package/types/features/org/presentation/RuleCard.d.ts +13 -0
- package/types/features/org/presentation/RuleCard.d.ts.map +1 -0
- package/types/features/org/presentation/RuleFormInputs.d.ts +11 -0
- package/types/features/org/presentation/RuleFormInputs.d.ts.map +1 -0
- package/types/features/org/presentation/TargetRolesPicker.d.ts +12 -0
- package/types/features/org/presentation/TargetRolesPicker.d.ts.map +1 -0
- package/types/features/org/presentation/WebhookRuleGuide.d.ts +3 -0
- package/types/features/org/presentation/WebhookRuleGuide.d.ts.map +1 -0
- package/types/features/org/presentation/index.d.ts +3 -0
- package/types/features/org/presentation/index.d.ts.map +1 -1
- package/types/features/org/presentation/org-query-keys.d.ts +1 -0
- package/types/features/org/presentation/org-query-keys.d.ts.map +1 -1
- package/types/features/org/presentation/use-communication-rules.d.ts +16 -0
- package/types/features/org/presentation/use-communication-rules.d.ts.map +1 -0
- package/types/features/org/presentation/use-my-user-type.d.ts.map +1 -1
- package/types/features/org/presentation/use-org-module.d.ts +2 -0
- package/types/features/org/presentation/use-org-module.d.ts.map +1 -1
- package/types/features/org/presentation/use-role-selection.d.ts +13 -0
- package/types/features/org/presentation/use-role-selection.d.ts.map +1 -0
- package/types/features/org/presentation/use-rule-form-modal.d.ts +24 -0
- package/types/features/org/presentation/use-rule-form-modal.d.ts.map +1 -0
- package/types/features/org/presentation/use-save-communication-rule-handler.d.ts +7 -0
- package/types/features/org/presentation/use-save-communication-rule-handler.d.ts.map +1 -0
- package/types/features/settings/index.d.ts +2 -2
- package/types/features/settings/index.d.ts.map +1 -1
package/communication-sdk.js
CHANGED
|
@@ -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",
|