uapp-communication-sdk 1.0.0-dev.109 → 1.0.0-dev.112
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 +4 -4
- package/communication-sdk.js +1514 -1483
- package/communication-sdk.standalone.js +4 -4
- 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/calls/presentation/CallButton.d.ts.map +1 -1
- package/types/features/feed/presentation/FeedPostCardSubcomponents.d.ts +4 -2
- package/types/features/feed/presentation/FeedPostCardSubcomponents.d.ts.map +1 -1
- package/types/features/feed/presentation/PostComments.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/schedule/presentation/RecurrenceBuilder.d.ts.map +1 -1
- package/types/features/schedule/presentation/use-conflict-resolver.d.ts.map +1 -1
- package/types/features/settings/index.d.ts +2 -2
- package/types/features/settings/index.d.ts.map +1 -1
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.