uapp-communication-sdk 1.0.0-dev.108 → 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 (99) hide show
  1. package/communication-sdk.cjs +4 -4
  2. package/communication-sdk.js +3019 -2986
  3. package/communication-sdk.standalone.js +77 -77
  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/feed/presentation/EditPostForm.d.ts.map +1 -1
  9. package/types/features/feed/presentation/FeedComposer.d.ts.map +1 -1
  10. package/types/features/feed/presentation/PostHeader.d.ts.map +1 -1
  11. package/types/features/feed/presentation/SharedPostForm.d.ts +2 -0
  12. package/types/features/feed/presentation/SharedPostForm.d.ts.map +1 -1
  13. package/types/features/feed/presentation/composer-extras.d.ts +1 -0
  14. package/types/features/feed/presentation/composer-extras.d.ts.map +1 -1
  15. package/types/features/feed/presentation/composer-tag-sheet.d.ts +2 -1
  16. package/types/features/feed/presentation/composer-tag-sheet.d.ts.map +1 -1
  17. package/types/features/meetings/presentation/TimelineGrid.d.ts.map +1 -1
  18. package/types/features/meetings/presentation/booking-draft-result.d.ts.map +1 -1
  19. package/types/features/meetings/presentation/booking-helpers.d.ts +3 -3
  20. package/types/features/meetings/presentation/booking-helpers.d.ts.map +1 -1
  21. package/types/features/module-access/domain/module-access.d.ts +4 -0
  22. package/types/features/module-access/domain/module-access.d.ts.map +1 -1
  23. package/types/features/org/application/index.d.ts +5 -0
  24. package/types/features/org/application/index.d.ts.map +1 -1
  25. package/types/features/org/application/use-cases/delete-communication-rule.d.ts +15 -0
  26. package/types/features/org/application/use-cases/delete-communication-rule.d.ts.map +1 -0
  27. package/types/features/org/application/use-cases/link-communication-rule-webhook.d.ts +15 -0
  28. package/types/features/org/application/use-cases/link-communication-rule-webhook.d.ts.map +1 -0
  29. package/types/features/org/application/use-cases/list-communication-rules.d.ts +15 -0
  30. package/types/features/org/application/use-cases/list-communication-rules.d.ts.map +1 -0
  31. package/types/features/org/application/use-cases/save-communication-rule.d.ts +18 -0
  32. package/types/features/org/application/use-cases/save-communication-rule.d.ts.map +1 -0
  33. package/types/features/org/application/use-cases/unlink-communication-rule-webhook.d.ts +15 -0
  34. package/types/features/org/application/use-cases/unlink-communication-rule-webhook.d.ts.map +1 -0
  35. package/types/features/org/domain/communication-rule.d.ts +23 -0
  36. package/types/features/org/domain/communication-rule.d.ts.map +1 -0
  37. package/types/features/org/domain/errors/org-errors.d.ts +5 -0
  38. package/types/features/org/domain/errors/org-errors.d.ts.map +1 -1
  39. package/types/features/org/domain/index.d.ts +1 -0
  40. package/types/features/org/domain/index.d.ts.map +1 -1
  41. package/types/features/org/domain/ports/org-gateway.d.ts +7 -0
  42. package/types/features/org/domain/ports/org-gateway.d.ts.map +1 -1
  43. package/types/features/org/infrastructure/dto/org-dtos.d.ts +57 -0
  44. package/types/features/org/infrastructure/dto/org-dtos.d.ts.map +1 -1
  45. package/types/features/org/infrastructure/http-branches-gateway.d.ts +16 -0
  46. package/types/features/org/infrastructure/http-branches-gateway.d.ts.map +1 -0
  47. package/types/features/org/infrastructure/http-communication-rules-gateway.d.ts +17 -0
  48. package/types/features/org/infrastructure/http-communication-rules-gateway.d.ts.map +1 -0
  49. package/types/features/org/infrastructure/http-hierarchy-gateway.d.ts +16 -0
  50. package/types/features/org/infrastructure/http-hierarchy-gateway.d.ts.map +1 -0
  51. package/types/features/org/infrastructure/http-org-call.d.ts +15 -0
  52. package/types/features/org/infrastructure/http-org-call.d.ts.map +1 -0
  53. package/types/features/org/infrastructure/http-org-gateway.d.ts +16 -21
  54. package/types/features/org/infrastructure/http-org-gateway.d.ts.map +1 -1
  55. package/types/features/org/infrastructure/http-org-routes.d.ts +4 -0
  56. package/types/features/org/infrastructure/http-org-routes.d.ts.map +1 -1
  57. package/types/features/org/infrastructure/http-teams-gateway.d.ts +15 -0
  58. package/types/features/org/infrastructure/http-teams-gateway.d.ts.map +1 -0
  59. package/types/features/org/infrastructure/http-user-branches-gateway.d.ts +14 -0
  60. package/types/features/org/infrastructure/http-user-branches-gateway.d.ts.map +1 -0
  61. package/types/features/org/infrastructure/http-user-types-gateway.d.ts +22 -0
  62. package/types/features/org/infrastructure/http-user-types-gateway.d.ts.map +1 -0
  63. package/types/features/org/infrastructure/org-mappers.d.ts +4 -2
  64. package/types/features/org/infrastructure/org-mappers.d.ts.map +1 -1
  65. package/types/features/org/org-module.d.ts +6 -1
  66. package/types/features/org/org-module.d.ts.map +1 -1
  67. package/types/features/org/presentation/AccessControlPage.d.ts +2 -3
  68. package/types/features/org/presentation/AccessControlPage.d.ts.map +1 -1
  69. package/types/features/org/presentation/CommunicationRuleModal.d.ts +11 -0
  70. package/types/features/org/presentation/CommunicationRuleModal.d.ts.map +1 -0
  71. package/types/features/org/presentation/CommunicationRulesPanel.d.ts +7 -0
  72. package/types/features/org/presentation/CommunicationRulesPanel.d.ts.map +1 -0
  73. package/types/features/org/presentation/RuleCard.d.ts +13 -0
  74. package/types/features/org/presentation/RuleCard.d.ts.map +1 -0
  75. package/types/features/org/presentation/RuleFormInputs.d.ts +11 -0
  76. package/types/features/org/presentation/RuleFormInputs.d.ts.map +1 -0
  77. package/types/features/org/presentation/TargetRolesPicker.d.ts +12 -0
  78. package/types/features/org/presentation/TargetRolesPicker.d.ts.map +1 -0
  79. package/types/features/org/presentation/WebhookRuleGuide.d.ts +3 -0
  80. package/types/features/org/presentation/WebhookRuleGuide.d.ts.map +1 -0
  81. package/types/features/org/presentation/index.d.ts +3 -0
  82. package/types/features/org/presentation/index.d.ts.map +1 -1
  83. package/types/features/org/presentation/org-query-keys.d.ts +1 -0
  84. package/types/features/org/presentation/org-query-keys.d.ts.map +1 -1
  85. package/types/features/org/presentation/use-communication-rules.d.ts +16 -0
  86. package/types/features/org/presentation/use-communication-rules.d.ts.map +1 -0
  87. package/types/features/org/presentation/use-my-user-type.d.ts.map +1 -1
  88. package/types/features/org/presentation/use-org-module.d.ts +2 -0
  89. package/types/features/org/presentation/use-org-module.d.ts.map +1 -1
  90. package/types/features/org/presentation/use-role-selection.d.ts +13 -0
  91. package/types/features/org/presentation/use-role-selection.d.ts.map +1 -0
  92. package/types/features/org/presentation/use-rule-form-modal.d.ts +24 -0
  93. package/types/features/org/presentation/use-rule-form-modal.d.ts.map +1 -0
  94. package/types/features/org/presentation/use-save-communication-rule-handler.d.ts +7 -0
  95. package/types/features/org/presentation/use-save-communication-rule-handler.d.ts.map +1 -0
  96. package/types/features/schedule/presentation/CustomTimesSection.d.ts.map +1 -1
  97. package/types/features/settings/index.d.ts +2 -2
  98. package/types/features/settings/index.d.ts.map +1 -1
  99. package/types/sdk/runtime/sdk-module-access-gateway.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.