uapp-communication-sdk 1.0.0-dev.114 → 1.0.0-dev.116

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 (160) hide show
  1. package/{CloudflareMeetingExperience-B4DDJ_J3.cjs → CloudflareMeetingExperience-BxYAkD6u.cjs} +2 -2
  2. package/{CloudflareMeetingExperience-LrMtoftH.js → CloudflareMeetingExperience-C_gT6XSQ.js} +3 -3
  3. package/{ExperienceError-D9S8PQbQ.js → ExperienceError-Bc2ulbHe.js} +2 -2
  4. package/{ExperienceError-Bkb6cI2H.cjs → ExperienceError-CWDatkwP.cjs} +2 -2
  5. package/{ZoomMeetingExperience-k_A10vQd.js → ZoomMeetingExperience-CKvBItWD.js} +3 -3
  6. package/{ZoomMeetingExperience-Bk31KY_k.cjs → ZoomMeetingExperience-Cx2fME7Q.cjs} +2 -2
  7. package/communication-sdk.cjs +5 -5
  8. package/communication-sdk.js +2179 -2167
  9. package/communication-sdk.standalone.js +139 -139
  10. package/package.json +1 -1
  11. package/types/app/App.d.ts +1 -2
  12. package/types/app/App.d.ts.map +1 -1
  13. package/types/app/AppFeatureProviders.d.ts +8 -0
  14. package/types/app/AppFeatureProviders.d.ts.map +1 -0
  15. package/types/app/di/composition-root.d.ts +2 -0
  16. package/types/app/di/composition-root.d.ts.map +1 -1
  17. package/types/app/router/AppRouter.d.ts.map +1 -1
  18. package/types/features/chat/infrastructure/chat-realtime-protocol.d.ts +2 -2
  19. package/types/features/chat/infrastructure/dto/chat-dtos.d.ts +4 -4
  20. package/types/features/chat/presentation/use-jump-to-message.d.ts +1 -1
  21. package/types/features/chat/presentation/use-jump-to-message.d.ts.map +1 -1
  22. package/types/features/feed/infrastructure/dto/feed-dtos.d.ts +4 -4
  23. package/types/features/org/infrastructure/dto/org-dtos.d.ts +12 -12
  24. package/types/features/permissions/presentation/use-permission-mutations.d.ts.map +1 -1
  25. package/types/features/settings/infrastructure/dto/feed-pref/feed-pref-dtos.d.ts +2 -2
  26. package/types/features/settings/infrastructure/dto/settings/settings-dtos.d.ts +12 -12
  27. package/types/features/tenant/application/get-tenant-dashboard-stats.use-case.d.ts +14 -0
  28. package/types/features/tenant/application/get-tenant-dashboard-stats.use-case.d.ts.map +1 -0
  29. package/types/features/tenant/application/get-tenant-general-settings.use-case.d.ts +11 -0
  30. package/types/features/tenant/application/get-tenant-general-settings.use-case.d.ts.map +1 -0
  31. package/types/features/tenant/application/get-tenant-list.use-case.d.ts +11 -0
  32. package/types/features/tenant/application/get-tenant-list.use-case.d.ts.map +1 -0
  33. package/types/features/tenant/application/index.d.ts +7 -0
  34. package/types/features/tenant/application/index.d.ts.map +1 -0
  35. package/types/features/tenant/application/login-tenant.use-case.d.ts +14 -0
  36. package/types/features/tenant/application/login-tenant.use-case.d.ts.map +1 -0
  37. package/types/features/tenant/application/register-tenant.use-case.d.ts +14 -0
  38. package/types/features/tenant/application/register-tenant.use-case.d.ts.map +1 -0
  39. package/types/features/tenant/application/update-tenant-general-settings.use-case.d.ts +11 -0
  40. package/types/features/tenant/application/update-tenant-general-settings.use-case.d.ts.map +1 -0
  41. package/types/features/tenant/domain/entities/tenant-dashboard-stats.d.ts +31 -0
  42. package/types/features/tenant/domain/entities/tenant-dashboard-stats.d.ts.map +1 -0
  43. package/types/features/tenant/domain/entities/tenant-general-settings.d.ts +22 -0
  44. package/types/features/tenant/domain/entities/tenant-general-settings.d.ts.map +1 -0
  45. package/types/features/tenant/domain/entities/tenant-item.d.ts +17 -0
  46. package/types/features/tenant/domain/entities/tenant-item.d.ts.map +1 -0
  47. package/types/features/tenant/domain/errors/tenant-errors.d.ts +20 -0
  48. package/types/features/tenant/domain/errors/tenant-errors.d.ts.map +1 -0
  49. package/types/features/tenant/domain/index.d.ts +7 -0
  50. package/types/features/tenant/domain/index.d.ts.map +1 -0
  51. package/types/features/tenant/domain/ports/tenant-auth-gateway.d.ts +37 -0
  52. package/types/features/tenant/domain/ports/tenant-auth-gateway.d.ts.map +1 -0
  53. package/types/features/tenant/domain/value-objects/index.d.ts +6 -0
  54. package/types/features/tenant/domain/value-objects/index.d.ts.map +1 -0
  55. package/types/features/tenant/domain/value-objects/tenant-app-name.vo.d.ts +8 -0
  56. package/types/features/tenant/domain/value-objects/tenant-app-name.vo.d.ts.map +1 -0
  57. package/types/features/tenant/domain/value-objects/tenant-password.vo.d.ts +8 -0
  58. package/types/features/tenant/domain/value-objects/tenant-password.vo.d.ts.map +1 -0
  59. package/types/features/tenant/domain/value-objects/tenant-person-name.vo.d.ts +8 -0
  60. package/types/features/tenant/domain/value-objects/tenant-person-name.vo.d.ts.map +1 -0
  61. package/types/features/tenant/domain/value-objects/tenant-phone.vo.d.ts +8 -0
  62. package/types/features/tenant/domain/value-objects/tenant-phone.vo.d.ts.map +1 -0
  63. package/types/features/tenant/domain/value-objects/tenant-user-name.vo.d.ts +8 -0
  64. package/types/features/tenant/domain/value-objects/tenant-user-name.vo.d.ts.map +1 -0
  65. package/types/features/tenant/index.d.ts +6 -0
  66. package/types/features/tenant/index.d.ts.map +1 -0
  67. package/types/features/tenant/infrastructure/index.d.ts +2 -0
  68. package/types/features/tenant/infrastructure/index.d.ts.map +1 -0
  69. package/types/features/tenant/infrastructure/mock-tenant-auth-gateway.d.ts +17 -0
  70. package/types/features/tenant/infrastructure/mock-tenant-auth-gateway.d.ts.map +1 -0
  71. package/types/features/tenant/presentation/TenantModuleProvider.d.ts +8 -0
  72. package/types/features/tenant/presentation/TenantModuleProvider.d.ts.map +1 -0
  73. package/types/features/tenant/presentation/components/RegisterFormFields.d.ts +10 -0
  74. package/types/features/tenant/presentation/components/RegisterFormFields.d.ts.map +1 -0
  75. package/types/features/tenant/presentation/components/TenantAuthLayout.d.ts +10 -0
  76. package/types/features/tenant/presentation/components/TenantAuthLayout.d.ts.map +1 -0
  77. package/types/features/tenant/presentation/components/TenantLoginForm.d.ts +7 -0
  78. package/types/features/tenant/presentation/components/TenantLoginForm.d.ts.map +1 -0
  79. package/types/features/tenant/presentation/components/TenantRegisterForm.d.ts +12 -0
  80. package/types/features/tenant/presentation/components/TenantRegisterForm.d.ts.map +1 -0
  81. package/types/features/tenant/presentation/components/dashboard/GrowthChartSvg.d.ts +7 -0
  82. package/types/features/tenant/presentation/components/dashboard/GrowthChartSvg.d.ts.map +1 -0
  83. package/types/features/tenant/presentation/components/dashboard/TenantKpiCards.d.ts +7 -0
  84. package/types/features/tenant/presentation/components/dashboard/TenantKpiCards.d.ts.map +1 -0
  85. package/types/features/tenant/presentation/components/dashboard/UserDistributionChart.d.ts +8 -0
  86. package/types/features/tenant/presentation/components/dashboard/UserDistributionChart.d.ts.map +1 -0
  87. package/types/features/tenant/presentation/components/dashboard/UserGrowthChart.d.ts +8 -0
  88. package/types/features/tenant/presentation/components/dashboard/UserGrowthChart.d.ts.map +1 -0
  89. package/types/features/tenant/presentation/components/dashboard/growth-chart-math.d.ts +37 -0
  90. package/types/features/tenant/presentation/components/dashboard/growth-chart-math.d.ts.map +1 -0
  91. package/types/features/tenant/presentation/components/manage/ColorPickerField.d.ts +7 -0
  92. package/types/features/tenant/presentation/components/manage/ColorPickerField.d.ts.map +1 -0
  93. package/types/features/tenant/presentation/components/manage/GeneralSettingsTab.d.ts +9 -0
  94. package/types/features/tenant/presentation/components/manage/GeneralSettingsTab.d.ts.map +1 -0
  95. package/types/features/tenant/presentation/components/manage/TenantManageHeader.d.ts +8 -0
  96. package/types/features/tenant/presentation/components/manage/TenantManageHeader.d.ts.map +1 -0
  97. package/types/features/tenant/presentation/components/manage/TenantManageTabs.d.ts +8 -0
  98. package/types/features/tenant/presentation/components/manage/TenantManageTabs.d.ts.map +1 -0
  99. package/types/features/tenant/presentation/components/manage/index.d.ts +4 -0
  100. package/types/features/tenant/presentation/components/manage/index.d.ts.map +1 -0
  101. package/types/features/tenant/presentation/components/registry/RegisterTenantFields.d.ts +12 -0
  102. package/types/features/tenant/presentation/components/registry/RegisterTenantFields.d.ts.map +1 -0
  103. package/types/features/tenant/presentation/components/registry/RegisterTenantModal.d.ts +50 -0
  104. package/types/features/tenant/presentation/components/registry/RegisterTenantModal.d.ts.map +1 -0
  105. package/types/features/tenant/presentation/components/registry/TableRowActions.d.ts +9 -0
  106. package/types/features/tenant/presentation/components/registry/TableRowActions.d.ts.map +1 -0
  107. package/types/features/tenant/presentation/components/registry/TenantCardActions.d.ts +10 -0
  108. package/types/features/tenant/presentation/components/registry/TenantCardActions.d.ts.map +1 -0
  109. package/types/features/tenant/presentation/components/registry/TenantCardGrid.d.ts +12 -0
  110. package/types/features/tenant/presentation/components/registry/TenantCardGrid.d.ts.map +1 -0
  111. package/types/features/tenant/presentation/components/registry/TenantCardModules.d.ts +6 -0
  112. package/types/features/tenant/presentation/components/registry/TenantCardModules.d.ts.map +1 -0
  113. package/types/features/tenant/presentation/components/registry/TenantGridCard.d.ts +11 -0
  114. package/types/features/tenant/presentation/components/registry/TenantGridCard.d.ts.map +1 -0
  115. package/types/features/tenant/presentation/components/registry/TenantQuickFilterCards.d.ts +12 -0
  116. package/types/features/tenant/presentation/components/registry/TenantQuickFilterCards.d.ts.map +1 -0
  117. package/types/features/tenant/presentation/components/registry/TenantRegistryHeader.d.ts +9 -0
  118. package/types/features/tenant/presentation/components/registry/TenantRegistryHeader.d.ts.map +1 -0
  119. package/types/features/tenant/presentation/components/registry/TenantSearchToolbar.d.ts +11 -0
  120. package/types/features/tenant/presentation/components/registry/TenantSearchToolbar.d.ts.map +1 -0
  121. package/types/features/tenant/presentation/components/registry/TenantTable.d.ts +11 -0
  122. package/types/features/tenant/presentation/components/registry/TenantTable.d.ts.map +1 -0
  123. package/types/features/tenant/presentation/components/registry/TenantTableRow.d.ts +10 -0
  124. package/types/features/tenant/presentation/components/registry/TenantTableRow.d.ts.map +1 -0
  125. package/types/features/tenant/presentation/components/registry/index.d.ts +8 -0
  126. package/types/features/tenant/presentation/components/registry/index.d.ts.map +1 -0
  127. package/types/features/tenant/presentation/components/registry/quick-filter-icons.d.ts +6 -0
  128. package/types/features/tenant/presentation/components/registry/quick-filter-icons.d.ts.map +1 -0
  129. package/types/features/tenant/presentation/components/registry/register-tenant-sub-components.d.ts +13 -0
  130. package/types/features/tenant/presentation/components/registry/register-tenant-sub-components.d.ts.map +1 -0
  131. package/types/features/tenant/presentation/components/registry/registry-action-icons.d.ts +6 -0
  132. package/types/features/tenant/presentation/components/registry/registry-action-icons.d.ts.map +1 -0
  133. package/types/features/tenant/presentation/components/registry/tenant-icon-renderer.d.ts +4 -0
  134. package/types/features/tenant/presentation/components/registry/tenant-icon-renderer.d.ts.map +1 -0
  135. package/types/features/tenant/presentation/index.d.ts +12 -0
  136. package/types/features/tenant/presentation/index.d.ts.map +1 -0
  137. package/types/features/tenant/presentation/pages/TenantDashboardPage.d.ts +3 -0
  138. package/types/features/tenant/presentation/pages/TenantDashboardPage.d.ts.map +1 -0
  139. package/types/features/tenant/presentation/pages/TenantLoginPage.d.ts +3 -0
  140. package/types/features/tenant/presentation/pages/TenantLoginPage.d.ts.map +1 -0
  141. package/types/features/tenant/presentation/pages/TenantManagePage.d.ts +3 -0
  142. package/types/features/tenant/presentation/pages/TenantManagePage.d.ts.map +1 -0
  143. package/types/features/tenant/presentation/pages/TenantRegisterPage.d.ts +3 -0
  144. package/types/features/tenant/presentation/pages/TenantRegisterPage.d.ts.map +1 -0
  145. package/types/features/tenant/presentation/pages/TenantsRegistryContent.d.ts +15 -0
  146. package/types/features/tenant/presentation/pages/TenantsRegistryContent.d.ts.map +1 -0
  147. package/types/features/tenant/presentation/pages/TenantsRegistryPage.d.ts +3 -0
  148. package/types/features/tenant/presentation/pages/TenantsRegistryPage.d.ts.map +1 -0
  149. package/types/features/tenant/presentation/pages/use-tenants-registry-data.d.ts +9 -0
  150. package/types/features/tenant/presentation/pages/use-tenants-registry-data.d.ts.map +1 -0
  151. package/types/features/tenant/presentation/tenant-module-context.d.ts +3 -0
  152. package/types/features/tenant/presentation/tenant-module-context.d.ts.map +1 -0
  153. package/types/features/tenant/presentation/use-tenant-module.d.ts +3 -0
  154. package/types/features/tenant/presentation/use-tenant-module.d.ts.map +1 -0
  155. package/types/features/tenant/tenant-module.d.ts +19 -0
  156. package/types/features/tenant/tenant-module.d.ts.map +1 -0
  157. package/types/features/users/infrastructure/dto/user-dtos.d.ts +24 -24
  158. package/types/shared/ui/Tooltip/Tooltip.d.ts.map +1 -1
  159. package/{use-active-meeting-store-BZFagv6v.js → use-active-meeting-store-CNyx0nrT.js} +16 -10
  160. package/{use-active-meeting-store-C-MpvHC1.cjs → use-active-meeting-store-D_OYWUwX.cjs} +2 -2

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.