uapp-communication-sdk 1.0.0-dev.115 → 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 (145) hide show
  1. package/package.json +1 -1
  2. package/types/app/App.d.ts +1 -2
  3. package/types/app/App.d.ts.map +1 -1
  4. package/types/app/AppFeatureProviders.d.ts +8 -0
  5. package/types/app/AppFeatureProviders.d.ts.map +1 -0
  6. package/types/app/di/composition-root.d.ts +2 -0
  7. package/types/app/di/composition-root.d.ts.map +1 -1
  8. package/types/app/router/AppRouter.d.ts.map +1 -1
  9. package/types/features/chat/infrastructure/chat-realtime-protocol.d.ts +2 -2
  10. package/types/features/chat/infrastructure/dto/chat-dtos.d.ts +4 -4
  11. package/types/features/feed/infrastructure/dto/feed-dtos.d.ts +4 -4
  12. package/types/features/org/infrastructure/dto/org-dtos.d.ts +12 -12
  13. package/types/features/settings/infrastructure/dto/feed-pref/feed-pref-dtos.d.ts +2 -2
  14. package/types/features/settings/infrastructure/dto/settings/settings-dtos.d.ts +12 -12
  15. package/types/features/tenant/application/get-tenant-dashboard-stats.use-case.d.ts +14 -0
  16. package/types/features/tenant/application/get-tenant-dashboard-stats.use-case.d.ts.map +1 -0
  17. package/types/features/tenant/application/get-tenant-general-settings.use-case.d.ts +11 -0
  18. package/types/features/tenant/application/get-tenant-general-settings.use-case.d.ts.map +1 -0
  19. package/types/features/tenant/application/get-tenant-list.use-case.d.ts +11 -0
  20. package/types/features/tenant/application/get-tenant-list.use-case.d.ts.map +1 -0
  21. package/types/features/tenant/application/index.d.ts +7 -0
  22. package/types/features/tenant/application/index.d.ts.map +1 -0
  23. package/types/features/tenant/application/login-tenant.use-case.d.ts +14 -0
  24. package/types/features/tenant/application/login-tenant.use-case.d.ts.map +1 -0
  25. package/types/features/tenant/application/register-tenant.use-case.d.ts +14 -0
  26. package/types/features/tenant/application/register-tenant.use-case.d.ts.map +1 -0
  27. package/types/features/tenant/application/update-tenant-general-settings.use-case.d.ts +11 -0
  28. package/types/features/tenant/application/update-tenant-general-settings.use-case.d.ts.map +1 -0
  29. package/types/features/tenant/domain/entities/tenant-dashboard-stats.d.ts +31 -0
  30. package/types/features/tenant/domain/entities/tenant-dashboard-stats.d.ts.map +1 -0
  31. package/types/features/tenant/domain/entities/tenant-general-settings.d.ts +22 -0
  32. package/types/features/tenant/domain/entities/tenant-general-settings.d.ts.map +1 -0
  33. package/types/features/tenant/domain/entities/tenant-item.d.ts +17 -0
  34. package/types/features/tenant/domain/entities/tenant-item.d.ts.map +1 -0
  35. package/types/features/tenant/domain/errors/tenant-errors.d.ts +20 -0
  36. package/types/features/tenant/domain/errors/tenant-errors.d.ts.map +1 -0
  37. package/types/features/tenant/domain/index.d.ts +7 -0
  38. package/types/features/tenant/domain/index.d.ts.map +1 -0
  39. package/types/features/tenant/domain/ports/tenant-auth-gateway.d.ts +37 -0
  40. package/types/features/tenant/domain/ports/tenant-auth-gateway.d.ts.map +1 -0
  41. package/types/features/tenant/domain/value-objects/index.d.ts +6 -0
  42. package/types/features/tenant/domain/value-objects/index.d.ts.map +1 -0
  43. package/types/features/tenant/domain/value-objects/tenant-app-name.vo.d.ts +8 -0
  44. package/types/features/tenant/domain/value-objects/tenant-app-name.vo.d.ts.map +1 -0
  45. package/types/features/tenant/domain/value-objects/tenant-password.vo.d.ts +8 -0
  46. package/types/features/tenant/domain/value-objects/tenant-password.vo.d.ts.map +1 -0
  47. package/types/features/tenant/domain/value-objects/tenant-person-name.vo.d.ts +8 -0
  48. package/types/features/tenant/domain/value-objects/tenant-person-name.vo.d.ts.map +1 -0
  49. package/types/features/tenant/domain/value-objects/tenant-phone.vo.d.ts +8 -0
  50. package/types/features/tenant/domain/value-objects/tenant-phone.vo.d.ts.map +1 -0
  51. package/types/features/tenant/domain/value-objects/tenant-user-name.vo.d.ts +8 -0
  52. package/types/features/tenant/domain/value-objects/tenant-user-name.vo.d.ts.map +1 -0
  53. package/types/features/tenant/index.d.ts +6 -0
  54. package/types/features/tenant/index.d.ts.map +1 -0
  55. package/types/features/tenant/infrastructure/index.d.ts +2 -0
  56. package/types/features/tenant/infrastructure/index.d.ts.map +1 -0
  57. package/types/features/tenant/infrastructure/mock-tenant-auth-gateway.d.ts +17 -0
  58. package/types/features/tenant/infrastructure/mock-tenant-auth-gateway.d.ts.map +1 -0
  59. package/types/features/tenant/presentation/TenantModuleProvider.d.ts +8 -0
  60. package/types/features/tenant/presentation/TenantModuleProvider.d.ts.map +1 -0
  61. package/types/features/tenant/presentation/components/RegisterFormFields.d.ts +10 -0
  62. package/types/features/tenant/presentation/components/RegisterFormFields.d.ts.map +1 -0
  63. package/types/features/tenant/presentation/components/TenantAuthLayout.d.ts +10 -0
  64. package/types/features/tenant/presentation/components/TenantAuthLayout.d.ts.map +1 -0
  65. package/types/features/tenant/presentation/components/TenantLoginForm.d.ts +7 -0
  66. package/types/features/tenant/presentation/components/TenantLoginForm.d.ts.map +1 -0
  67. package/types/features/tenant/presentation/components/TenantRegisterForm.d.ts +12 -0
  68. package/types/features/tenant/presentation/components/TenantRegisterForm.d.ts.map +1 -0
  69. package/types/features/tenant/presentation/components/dashboard/GrowthChartSvg.d.ts +7 -0
  70. package/types/features/tenant/presentation/components/dashboard/GrowthChartSvg.d.ts.map +1 -0
  71. package/types/features/tenant/presentation/components/dashboard/TenantKpiCards.d.ts +7 -0
  72. package/types/features/tenant/presentation/components/dashboard/TenantKpiCards.d.ts.map +1 -0
  73. package/types/features/tenant/presentation/components/dashboard/UserDistributionChart.d.ts +8 -0
  74. package/types/features/tenant/presentation/components/dashboard/UserDistributionChart.d.ts.map +1 -0
  75. package/types/features/tenant/presentation/components/dashboard/UserGrowthChart.d.ts +8 -0
  76. package/types/features/tenant/presentation/components/dashboard/UserGrowthChart.d.ts.map +1 -0
  77. package/types/features/tenant/presentation/components/dashboard/growth-chart-math.d.ts +37 -0
  78. package/types/features/tenant/presentation/components/dashboard/growth-chart-math.d.ts.map +1 -0
  79. package/types/features/tenant/presentation/components/manage/ColorPickerField.d.ts +7 -0
  80. package/types/features/tenant/presentation/components/manage/ColorPickerField.d.ts.map +1 -0
  81. package/types/features/tenant/presentation/components/manage/GeneralSettingsTab.d.ts +9 -0
  82. package/types/features/tenant/presentation/components/manage/GeneralSettingsTab.d.ts.map +1 -0
  83. package/types/features/tenant/presentation/components/manage/TenantManageHeader.d.ts +8 -0
  84. package/types/features/tenant/presentation/components/manage/TenantManageHeader.d.ts.map +1 -0
  85. package/types/features/tenant/presentation/components/manage/TenantManageTabs.d.ts +8 -0
  86. package/types/features/tenant/presentation/components/manage/TenantManageTabs.d.ts.map +1 -0
  87. package/types/features/tenant/presentation/components/manage/index.d.ts +4 -0
  88. package/types/features/tenant/presentation/components/manage/index.d.ts.map +1 -0
  89. package/types/features/tenant/presentation/components/registry/RegisterTenantFields.d.ts +12 -0
  90. package/types/features/tenant/presentation/components/registry/RegisterTenantFields.d.ts.map +1 -0
  91. package/types/features/tenant/presentation/components/registry/RegisterTenantModal.d.ts +50 -0
  92. package/types/features/tenant/presentation/components/registry/RegisterTenantModal.d.ts.map +1 -0
  93. package/types/features/tenant/presentation/components/registry/TableRowActions.d.ts +9 -0
  94. package/types/features/tenant/presentation/components/registry/TableRowActions.d.ts.map +1 -0
  95. package/types/features/tenant/presentation/components/registry/TenantCardActions.d.ts +10 -0
  96. package/types/features/tenant/presentation/components/registry/TenantCardActions.d.ts.map +1 -0
  97. package/types/features/tenant/presentation/components/registry/TenantCardGrid.d.ts +12 -0
  98. package/types/features/tenant/presentation/components/registry/TenantCardGrid.d.ts.map +1 -0
  99. package/types/features/tenant/presentation/components/registry/TenantCardModules.d.ts +6 -0
  100. package/types/features/tenant/presentation/components/registry/TenantCardModules.d.ts.map +1 -0
  101. package/types/features/tenant/presentation/components/registry/TenantGridCard.d.ts +11 -0
  102. package/types/features/tenant/presentation/components/registry/TenantGridCard.d.ts.map +1 -0
  103. package/types/features/tenant/presentation/components/registry/TenantQuickFilterCards.d.ts +12 -0
  104. package/types/features/tenant/presentation/components/registry/TenantQuickFilterCards.d.ts.map +1 -0
  105. package/types/features/tenant/presentation/components/registry/TenantRegistryHeader.d.ts +9 -0
  106. package/types/features/tenant/presentation/components/registry/TenantRegistryHeader.d.ts.map +1 -0
  107. package/types/features/tenant/presentation/components/registry/TenantSearchToolbar.d.ts +11 -0
  108. package/types/features/tenant/presentation/components/registry/TenantSearchToolbar.d.ts.map +1 -0
  109. package/types/features/tenant/presentation/components/registry/TenantTable.d.ts +11 -0
  110. package/types/features/tenant/presentation/components/registry/TenantTable.d.ts.map +1 -0
  111. package/types/features/tenant/presentation/components/registry/TenantTableRow.d.ts +10 -0
  112. package/types/features/tenant/presentation/components/registry/TenantTableRow.d.ts.map +1 -0
  113. package/types/features/tenant/presentation/components/registry/index.d.ts +8 -0
  114. package/types/features/tenant/presentation/components/registry/index.d.ts.map +1 -0
  115. package/types/features/tenant/presentation/components/registry/quick-filter-icons.d.ts +6 -0
  116. package/types/features/tenant/presentation/components/registry/quick-filter-icons.d.ts.map +1 -0
  117. package/types/features/tenant/presentation/components/registry/register-tenant-sub-components.d.ts +13 -0
  118. package/types/features/tenant/presentation/components/registry/register-tenant-sub-components.d.ts.map +1 -0
  119. package/types/features/tenant/presentation/components/registry/registry-action-icons.d.ts +6 -0
  120. package/types/features/tenant/presentation/components/registry/registry-action-icons.d.ts.map +1 -0
  121. package/types/features/tenant/presentation/components/registry/tenant-icon-renderer.d.ts +4 -0
  122. package/types/features/tenant/presentation/components/registry/tenant-icon-renderer.d.ts.map +1 -0
  123. package/types/features/tenant/presentation/index.d.ts +12 -0
  124. package/types/features/tenant/presentation/index.d.ts.map +1 -0
  125. package/types/features/tenant/presentation/pages/TenantDashboardPage.d.ts +3 -0
  126. package/types/features/tenant/presentation/pages/TenantDashboardPage.d.ts.map +1 -0
  127. package/types/features/tenant/presentation/pages/TenantLoginPage.d.ts +3 -0
  128. package/types/features/tenant/presentation/pages/TenantLoginPage.d.ts.map +1 -0
  129. package/types/features/tenant/presentation/pages/TenantManagePage.d.ts +3 -0
  130. package/types/features/tenant/presentation/pages/TenantManagePage.d.ts.map +1 -0
  131. package/types/features/tenant/presentation/pages/TenantRegisterPage.d.ts +3 -0
  132. package/types/features/tenant/presentation/pages/TenantRegisterPage.d.ts.map +1 -0
  133. package/types/features/tenant/presentation/pages/TenantsRegistryContent.d.ts +15 -0
  134. package/types/features/tenant/presentation/pages/TenantsRegistryContent.d.ts.map +1 -0
  135. package/types/features/tenant/presentation/pages/TenantsRegistryPage.d.ts +3 -0
  136. package/types/features/tenant/presentation/pages/TenantsRegistryPage.d.ts.map +1 -0
  137. package/types/features/tenant/presentation/pages/use-tenants-registry-data.d.ts +9 -0
  138. package/types/features/tenant/presentation/pages/use-tenants-registry-data.d.ts.map +1 -0
  139. package/types/features/tenant/presentation/tenant-module-context.d.ts +3 -0
  140. package/types/features/tenant/presentation/tenant-module-context.d.ts.map +1 -0
  141. package/types/features/tenant/presentation/use-tenant-module.d.ts +3 -0
  142. package/types/features/tenant/presentation/use-tenant-module.d.ts.map +1 -0
  143. package/types/features/tenant/tenant-module.d.ts +19 -0
  144. package/types/features/tenant/tenant-module.d.ts.map +1 -0
  145. package/types/features/users/infrastructure/dto/user-dtos.d.ts +24 -24
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TenantRegistryHeader.d.ts","sourceRoot":"","sources":["../../../../../../../../src/features/tenant/presentation/components/registry/TenantRegistryHeader.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AAI1C,MAAM,WAAW,yBAAyB;IACxC,QAAQ,CAAC,YAAY,EAAE,MAAM,CAAC;IAC9B,QAAQ,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC;IACpC,QAAQ,CAAC,gBAAgB,EAAE,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,KAAK,IAAI,CAAC;IAC5D,QAAQ,CAAC,eAAe,EAAE,MAAM,IAAI,CAAC;CACtC;AAoCD,eAAO,MAAM,oBAAoB,GAAI,gEAKlC,yBAAyB,KAAG,YAkD9B,CAAC"}
@@ -0,0 +1,11 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { TenantStatus } from '../../../domain';
3
+ export interface TenantSearchToolbarProps {
4
+ readonly searchQuery: string;
5
+ readonly statusFilter: TenantStatus | 'ALL';
6
+ readonly onSearchChange: (query: string) => void;
7
+ readonly onStatusChange: (status: TenantStatus | 'ALL') => void;
8
+ readonly onReset: () => void;
9
+ }
10
+ export declare const TenantSearchToolbar: ({ searchQuery, statusFilter, onSearchChange, onStatusChange, onReset, }: TenantSearchToolbarProps) => ReactElement;
11
+ //# sourceMappingURL=TenantSearchToolbar.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TenantSearchToolbar.d.ts","sourceRoot":"","sources":["../../../../../../../../src/features/tenant/presentation/components/registry/TenantSearchToolbar.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AAC1C,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAGpD,MAAM,WAAW,wBAAwB;IACvC,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAC;IAC7B,QAAQ,CAAC,YAAY,EAAE,YAAY,GAAG,KAAK,CAAC;IAC5C,QAAQ,CAAC,cAAc,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IACjD,QAAQ,CAAC,cAAc,EAAE,CAAC,MAAM,EAAE,YAAY,GAAG,KAAK,KAAK,IAAI,CAAC;IAChE,QAAQ,CAAC,OAAO,EAAE,MAAM,IAAI,CAAC;CAC9B;AAED,eAAO,MAAM,mBAAmB,GAAI,yEAMjC,wBAAwB,KAAG,YA0D7B,CAAC"}
@@ -0,0 +1,11 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { TenantItem } from '../../../domain';
3
+ export interface TenantTableProps {
4
+ readonly tenants: readonly TenantItem[];
5
+ readonly totalCount: number;
6
+ readonly onManage: (id: string) => void;
7
+ readonly onViewDetails: (tenant: TenantItem) => void;
8
+ readonly onDelete: (id: string) => void;
9
+ }
10
+ export declare const TenantTable: ({ tenants, totalCount, onManage, onViewDetails, onDelete, }: TenantTableProps) => ReactElement;
11
+ //# sourceMappingURL=TenantTable.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TenantTable.d.ts","sourceRoot":"","sources":["../../../../../../../../src/features/tenant/presentation/components/registry/TenantTable.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AAC1C,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAIlD,MAAM,WAAW,gBAAgB;IAC/B,QAAQ,CAAC,OAAO,EAAE,SAAS,UAAU,EAAE,CAAC;IACxC,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAC;IAC5B,QAAQ,CAAC,QAAQ,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IACxC,QAAQ,CAAC,aAAa,EAAE,CAAC,MAAM,EAAE,UAAU,KAAK,IAAI,CAAC;IACrD,QAAQ,CAAC,QAAQ,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;CACzC;AAED,eAAO,MAAM,WAAW,GAAI,6DAMzB,gBAAgB,KAAG,YA6CrB,CAAC"}
@@ -0,0 +1,10 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { TenantItem } from '../../../domain';
3
+ export interface TenantTableRowProps {
4
+ readonly tenant: TenantItem;
5
+ readonly onManage: (id: string) => void;
6
+ readonly onViewDetails: (tenant: TenantItem) => void;
7
+ readonly onDelete: (id: string) => void;
8
+ }
9
+ export declare const TenantTableRow: ({ tenant, onManage, onViewDetails, onDelete, }: TenantTableRowProps) => ReactElement;
10
+ //# sourceMappingURL=TenantTableRow.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TenantTableRow.d.ts","sourceRoot":"","sources":["../../../../../../../../src/features/tenant/presentation/components/registry/TenantTableRow.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AAE1C,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAIlD,MAAM,WAAW,mBAAmB;IAClC,QAAQ,CAAC,MAAM,EAAE,UAAU,CAAC;IAC5B,QAAQ,CAAC,QAAQ,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IACxC,QAAQ,CAAC,aAAa,EAAE,CAAC,MAAM,EAAE,UAAU,KAAK,IAAI,CAAC;IACrD,QAAQ,CAAC,QAAQ,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;CACzC;AAQD,eAAO,MAAM,cAAc,GAAI,gDAK5B,mBAAmB,KAAG,YA6CxB,CAAC"}
@@ -0,0 +1,8 @@
1
+ export * from './TenantRegistryHeader';
2
+ export * from './TenantQuickFilterCards';
3
+ export * from './TenantSearchToolbar';
4
+ export * from './TenantGridCard';
5
+ export * from './TenantCardGrid';
6
+ export * from './TenantTable';
7
+ export * from './RegisterTenantModal';
8
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/features/tenant/presentation/components/registry/index.ts"],"names":[],"mappings":"AAAA,cAAc,wBAAwB,CAAC;AACvC,cAAc,0BAA0B,CAAC;AACzC,cAAc,uBAAuB,CAAC;AACtC,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC;AACjC,cAAc,eAAe,CAAC;AAC9B,cAAc,uBAAuB,CAAC"}
@@ -0,0 +1,6 @@
1
+ import type { ReactElement } from 'react';
2
+ export declare const renderAllOrgIcon: () => ReactElement;
3
+ export declare const renderActiveOrgIcon: () => ReactElement;
4
+ export declare const renderMaintenanceIcon: () => ReactElement;
5
+ export declare const renderDraftIcon: () => ReactElement;
6
+ //# sourceMappingURL=quick-filter-icons.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"quick-filter-icons.d.ts","sourceRoot":"","sources":["../../../../../../../../src/features/tenant/presentation/components/registry/quick-filter-icons.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AAE1C,eAAO,MAAM,gBAAgB,QAAO,YAanC,CAAC;AAEF,eAAO,MAAM,mBAAmB,QAAO,YAYtC,CAAC;AAEF,eAAO,MAAM,qBAAqB,QAAO,YAaxC,CAAC;AAEF,eAAO,MAAM,eAAe,QAAO,YAYlC,CAAC"}
@@ -0,0 +1,13 @@
1
+ import type { ReactElement } from 'react';
2
+ export declare const FieldError: ({ message, }: {
3
+ readonly message: string | undefined;
4
+ }) => ReactElement | null;
5
+ export declare const ModulesSelector: ({ selected, onToggle, }: {
6
+ readonly selected: readonly string[];
7
+ readonly onToggle: (mod: string) => void;
8
+ }) => ReactElement;
9
+ export declare const AccentColorPicker: ({ value, onSelect, }: {
10
+ readonly value: string;
11
+ readonly onSelect: (color: string) => void;
12
+ }) => ReactElement;
13
+ //# sourceMappingURL=register-tenant-sub-components.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"register-tenant-sub-components.d.ts","sourceRoot":"","sources":["../../../../../../../../src/features/tenant/presentation/components/registry/register-tenant-sub-components.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AA0B1C,eAAO,MAAM,UAAU,GAAI,cAExB;IACD,QAAQ,CAAC,OAAO,EAAE,MAAM,GAAG,SAAS,CAAC;CACtC,KAAG,YAAY,GAAG,IACuD,CAAC;AAE3E,eAAO,MAAM,eAAe,GAAI,yBAG7B;IACD,QAAQ,CAAC,QAAQ,EAAE,SAAS,MAAM,EAAE,CAAC;IACrC,QAAQ,CAAC,QAAQ,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,IAAI,CAAC;CAC1C,KAAG,YAeH,CAAC;AAEF,eAAO,MAAM,iBAAiB,GAAI,sBAG/B;IACD,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;CAC5C,KAAG,YAmBH,CAAC"}
@@ -0,0 +1,6 @@
1
+ import type { ReactElement } from 'react';
2
+ export declare const renderManageIcon: () => ReactElement;
3
+ export declare const renderViewIcon: () => ReactElement;
4
+ export declare const renderEditIcon: () => ReactElement;
5
+ export declare const renderDeleteIcon: () => ReactElement;
6
+ //# sourceMappingURL=registry-action-icons.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"registry-action-icons.d.ts","sourceRoot":"","sources":["../../../../../../../../src/features/tenant/presentation/components/registry/registry-action-icons.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AAE1C,eAAO,MAAM,gBAAgB,QAAO,YAgBnC,CAAC;AAEF,eAAO,MAAM,cAAc,QAAO,YAYjC,CAAC;AAEF,eAAO,MAAM,cAAc,QAAO,YAWjC,CAAC;AAEF,eAAO,MAAM,gBAAgB,QAAO,YAWnC,CAAC"}
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { TenantItem } from '../../../domain';
3
+ export declare const renderTenantIcon: (type: TenantItem["iconType"]) => ReactElement;
4
+ //# sourceMappingURL=tenant-icon-renderer.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tenant-icon-renderer.d.ts","sourceRoot":"","sources":["../../../../../../../../src/features/tenant/presentation/components/registry/tenant-icon-renderer.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AAC1C,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAElD,eAAO,MAAM,gBAAgB,GAAI,MAAM,UAAU,CAAC,UAAU,CAAC,KAAG,YA6D/D,CAAC"}
@@ -0,0 +1,12 @@
1
+ export * from './tenant-module-context';
2
+ export * from './use-tenant-module';
3
+ export * from './TenantModuleProvider';
4
+ export * from './components/TenantAuthLayout';
5
+ export * from './components/TenantLoginForm';
6
+ export * from './components/TenantRegisterForm';
7
+ export * from './components/dashboard/TenantKpiCards';
8
+ export * from './components/dashboard/UserGrowthChart';
9
+ export * from './components/dashboard/UserDistributionChart';
10
+ export * from './components/registry';
11
+ export * from './components/manage';
12
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/features/tenant/presentation/index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAC;AACxC,cAAc,qBAAqB,CAAC;AACpC,cAAc,wBAAwB,CAAC;AACvC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,iCAAiC,CAAC;AAChD,cAAc,uCAAuC,CAAC;AACtD,cAAc,wCAAwC,CAAC;AACvD,cAAc,8CAA8C,CAAC;AAC7D,cAAc,uBAAuB,CAAC;AACtC,cAAc,qBAAqB,CAAC"}
@@ -0,0 +1,3 @@
1
+ import { type ReactElement } from 'react';
2
+ export declare const TenantDashboardPage: () => ReactElement;
3
+ //# sourceMappingURL=TenantDashboardPage.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TenantDashboardPage.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/tenant/presentation/pages/TenantDashboardPage.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAuB,KAAK,YAAY,EAAE,MAAM,OAAO,CAAC;AA6D/D,eAAO,MAAM,mBAAmB,QAAO,YAuEtC,CAAC"}
@@ -0,0 +1,3 @@
1
+ import type { ReactElement } from 'react';
2
+ export declare const TenantLoginPage: () => ReactElement;
3
+ //# sourceMappingURL=TenantLoginPage.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TenantLoginPage.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/tenant/presentation/pages/TenantLoginPage.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AAI1C,eAAO,MAAM,eAAe,QAAO,YAWlC,CAAC"}
@@ -0,0 +1,3 @@
1
+ import { type ReactElement } from 'react';
2
+ export declare const TenantManagePage: () => ReactElement;
3
+ //# sourceMappingURL=TenantManagePage.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TenantManagePage.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/tenant/presentation/pages/TenantManagePage.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAuB,KAAK,YAAY,EAAE,MAAM,OAAO,CAAC;AAiB/D,eAAO,MAAM,gBAAgB,QAAO,YAgFnC,CAAC"}
@@ -0,0 +1,3 @@
1
+ import type { ReactElement } from 'react';
2
+ export declare const TenantRegisterPage: () => ReactElement;
3
+ //# sourceMappingURL=TenantRegisterPage.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TenantRegisterPage.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/tenant/presentation/pages/TenantRegisterPage.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AAI1C,eAAO,MAAM,kBAAkB,QAAO,YAWrC,CAAC"}
@@ -0,0 +1,15 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { TenantItem } from '../../domain';
3
+ export interface TenantsRegistryContentProps {
4
+ readonly isLoading: boolean;
5
+ readonly viewMode: 'grid' | 'table';
6
+ readonly tenants: readonly TenantItem[];
7
+ readonly totalCount: number;
8
+ readonly onManage: (id: string) => void;
9
+ readonly onViewDetails: (tenant: TenantItem) => void;
10
+ readonly onEdit: (tenant: TenantItem) => void;
11
+ readonly onDelete: (id: string) => void;
12
+ readonly onRegisterNew: () => void;
13
+ }
14
+ export declare const TenantsRegistryContent: ({ isLoading, viewMode, tenants, totalCount, onManage, onViewDetails, onEdit, onDelete, onRegisterNew, }: TenantsRegistryContentProps) => ReactElement;
15
+ //# sourceMappingURL=TenantsRegistryContent.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TenantsRegistryContent.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/tenant/presentation/pages/TenantsRegistryContent.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AAC1C,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAI/C,MAAM,WAAW,2BAA2B;IAC1C,QAAQ,CAAC,SAAS,EAAE,OAAO,CAAC;IAC5B,QAAQ,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC;IACpC,QAAQ,CAAC,OAAO,EAAE,SAAS,UAAU,EAAE,CAAC;IACxC,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAC;IAC5B,QAAQ,CAAC,QAAQ,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IACxC,QAAQ,CAAC,aAAa,EAAE,CAAC,MAAM,EAAE,UAAU,KAAK,IAAI,CAAC;IACrD,QAAQ,CAAC,MAAM,EAAE,CAAC,MAAM,EAAE,UAAU,KAAK,IAAI,CAAC;IAC9C,QAAQ,CAAC,QAAQ,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IACxC,QAAQ,CAAC,aAAa,EAAE,MAAM,IAAI,CAAC;CACpC;AAED,eAAO,MAAM,sBAAsB,GAAI,yGAUpC,2BAA2B,KAAG,YA2BhC,CAAC"}
@@ -0,0 +1,3 @@
1
+ import { type ReactElement } from 'react';
2
+ export declare const TenantsRegistryPage: () => ReactElement;
3
+ //# sourceMappingURL=TenantsRegistryPage.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TenantsRegistryPage.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/tenant/presentation/pages/TenantsRegistryPage.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAqB,KAAK,YAAY,EAAE,MAAM,OAAO,CAAC;AAoJpE,eAAO,MAAM,mBAAmB,QAAO,YAqDtC,CAAC"}
@@ -0,0 +1,9 @@
1
+ import { type Dispatch, type SetStateAction } from 'react';
2
+ import type { TenantItem } from '../../domain';
3
+ export interface UseTenantsRegistryDataResult {
4
+ readonly tenants: readonly TenantItem[];
5
+ readonly setTenants: Dispatch<SetStateAction<readonly TenantItem[]>>;
6
+ readonly isLoading: boolean;
7
+ }
8
+ export declare const useTenantsRegistryData: () => UseTenantsRegistryDataResult;
9
+ //# sourceMappingURL=use-tenants-registry-data.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"use-tenants-registry-data.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/tenant/presentation/pages/use-tenants-registry-data.ts"],"names":[],"mappings":"AAAA,OAAO,EAAuB,KAAK,QAAQ,EAAE,KAAK,cAAc,EAAE,MAAM,OAAO,CAAC;AAEhF,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAG/C,MAAM,WAAW,4BAA4B;IAC3C,QAAQ,CAAC,OAAO,EAAE,SAAS,UAAU,EAAE,CAAC;IACxC,QAAQ,CAAC,UAAU,EAAE,QAAQ,CAAC,cAAc,CAAC,SAAS,UAAU,EAAE,CAAC,CAAC,CAAC;IACrE,QAAQ,CAAC,SAAS,EAAE,OAAO,CAAC;CAC7B;AAED,eAAO,MAAM,sBAAsB,QAAO,4BAwBzC,CAAC"}
@@ -0,0 +1,3 @@
1
+ import type { TenantModule } from '../tenant-module';
2
+ export declare const TenantModuleContext: import("react").Context<TenantModule | null>;
3
+ //# sourceMappingURL=tenant-module-context.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tenant-module-context.d.ts","sourceRoot":"","sources":["../../../../../../src/features/tenant/presentation/tenant-module-context.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAErD,eAAO,MAAM,mBAAmB,8CAA2C,CAAC"}
@@ -0,0 +1,3 @@
1
+ import type { TenantModule } from '../tenant-module';
2
+ export declare const useTenantModule: () => TenantModule;
3
+ //# sourceMappingURL=use-tenant-module.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"use-tenant-module.d.ts","sourceRoot":"","sources":["../../../../../../src/features/tenant/presentation/use-tenant-module.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAGrD,eAAO,MAAM,eAAe,QAAO,YAMlC,CAAC"}
@@ -0,0 +1,19 @@
1
+ import type { Logger } from '@core/logger';
2
+ import { RegisterTenantUseCase, LoginTenantUseCase, GetTenantDashboardStatsUseCase, GetTenantListUseCase, GetTenantGeneralSettingsUseCase, UpdateTenantGeneralSettingsUseCase } from './application';
3
+ import type { TenantAuthGateway } from './domain';
4
+ export interface TenantModuleDeps {
5
+ readonly logger: Logger;
6
+ readonly gateway?: TenantAuthGateway;
7
+ }
8
+ export interface TenantModule {
9
+ readonly gateway: TenantAuthGateway;
10
+ readonly logger: Logger;
11
+ readonly registerTenantUseCase: RegisterTenantUseCase;
12
+ readonly loginTenantUseCase: LoginTenantUseCase;
13
+ readonly getTenantDashboardStatsUseCase: GetTenantDashboardStatsUseCase;
14
+ readonly getTenantListUseCase: GetTenantListUseCase;
15
+ readonly getTenantGeneralSettingsUseCase: GetTenantGeneralSettingsUseCase;
16
+ readonly updateTenantGeneralSettingsUseCase: UpdateTenantGeneralSettingsUseCase;
17
+ }
18
+ export declare const createTenantModule: (deps: TenantModuleDeps) => TenantModule;
19
+ //# sourceMappingURL=tenant-module.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tenant-module.d.ts","sourceRoot":"","sources":["../../../../../src/features/tenant/tenant-module.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,cAAc,CAAC;AAC3C,OAAO,EACL,qBAAqB,EACrB,kBAAkB,EAClB,8BAA8B,EAC9B,oBAAoB,EACpB,+BAA+B,EAC/B,kCAAkC,EACnC,MAAM,eAAe,CAAC;AAEvB,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,UAAU,CAAC;AAElD,MAAM,WAAW,gBAAgB;IAC/B,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC;IACxB,QAAQ,CAAC,OAAO,CAAC,EAAE,iBAAiB,CAAC;CACtC;AAED,MAAM,WAAW,YAAY;IAC3B,QAAQ,CAAC,OAAO,EAAE,iBAAiB,CAAC;IACpC,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC;IACxB,QAAQ,CAAC,qBAAqB,EAAE,qBAAqB,CAAC;IACtD,QAAQ,CAAC,kBAAkB,EAAE,kBAAkB,CAAC;IAChD,QAAQ,CAAC,8BAA8B,EAAE,8BAA8B,CAAC;IACxE,QAAQ,CAAC,oBAAoB,EAAE,oBAAoB,CAAC;IACpD,QAAQ,CAAC,+BAA+B,EAAE,+BAA+B,CAAC;IAC1E,QAAQ,CAAC,kCAAkC,EAAE,kCAAkC,CAAC;CACjF;AAED,eAAO,MAAM,kBAAkB,GAAI,MAAM,gBAAgB,KAAG,YAkB3D,CAAC"}
@@ -27,14 +27,14 @@ export declare const StaffMemberSchema: z.ZodObject<{
27
27
  color: string;
28
28
  initials: string;
29
29
  online: boolean;
30
- roleName: string;
31
- department: string;
32
30
  level: number;
31
+ department: string;
32
+ roleName: string;
33
33
  status?: number | null | undefined;
34
- branchKey?: string | null | undefined;
35
- branchName?: string | null | undefined;
36
34
  statusUntilUtc?: string | null | undefined;
35
+ branchKey?: string | null | undefined;
37
36
  hasAccount?: boolean | null | undefined;
37
+ branchName?: string | null | undefined;
38
38
  permissionSetName?: string | null | undefined;
39
39
  permissionSetColor?: string | null | undefined;
40
40
  }, {
@@ -44,14 +44,14 @@ export declare const StaffMemberSchema: z.ZodObject<{
44
44
  color: string;
45
45
  initials: string;
46
46
  online: boolean;
47
- roleName: string;
48
- department: string;
49
47
  level: number;
48
+ department: string;
49
+ roleName: string;
50
50
  status?: number | null | undefined;
51
- branchKey?: string | null | undefined;
52
- branchName?: string | null | undefined;
53
51
  statusUntilUtc?: string | null | undefined;
52
+ branchKey?: string | null | undefined;
54
53
  hasAccount?: boolean | null | undefined;
54
+ branchName?: string | null | undefined;
55
55
  permissionSetName?: string | null | undefined;
56
56
  permissionSetColor?: string | null | undefined;
57
57
  }>;
@@ -82,14 +82,14 @@ export declare const PagedStaffMemberListSchema: z.ZodObject<{
82
82
  color: string;
83
83
  initials: string;
84
84
  online: boolean;
85
- roleName: string;
86
- department: string;
87
85
  level: number;
86
+ department: string;
87
+ roleName: string;
88
88
  status?: number | null | undefined;
89
- branchKey?: string | null | undefined;
90
- branchName?: string | null | undefined;
91
89
  statusUntilUtc?: string | null | undefined;
90
+ branchKey?: string | null | undefined;
92
91
  hasAccount?: boolean | null | undefined;
92
+ branchName?: string | null | undefined;
93
93
  permissionSetName?: string | null | undefined;
94
94
  permissionSetColor?: string | null | undefined;
95
95
  }, {
@@ -99,14 +99,14 @@ export declare const PagedStaffMemberListSchema: z.ZodObject<{
99
99
  color: string;
100
100
  initials: string;
101
101
  online: boolean;
102
- roleName: string;
103
- department: string;
104
102
  level: number;
103
+ department: string;
104
+ roleName: string;
105
105
  status?: number | null | undefined;
106
- branchKey?: string | null | undefined;
107
- branchName?: string | null | undefined;
108
106
  statusUntilUtc?: string | null | undefined;
107
+ branchKey?: string | null | undefined;
109
108
  hasAccount?: boolean | null | undefined;
109
+ branchName?: string | null | undefined;
110
110
  permissionSetName?: string | null | undefined;
111
111
  permissionSetColor?: string | null | undefined;
112
112
  }>, "many">;
@@ -118,14 +118,14 @@ export declare const PagedStaffMemberListSchema: z.ZodObject<{
118
118
  color: string;
119
119
  initials: string;
120
120
  online: boolean;
121
- roleName: string;
122
- department: string;
123
121
  level: number;
122
+ department: string;
123
+ roleName: string;
124
124
  status?: number | null | undefined;
125
- branchKey?: string | null | undefined;
126
- branchName?: string | null | undefined;
127
125
  statusUntilUtc?: string | null | undefined;
126
+ branchKey?: string | null | undefined;
128
127
  hasAccount?: boolean | null | undefined;
128
+ branchName?: string | null | undefined;
129
129
  permissionSetName?: string | null | undefined;
130
130
  permissionSetColor?: string | null | undefined;
131
131
  }[];
@@ -138,14 +138,14 @@ export declare const PagedStaffMemberListSchema: z.ZodObject<{
138
138
  color: string;
139
139
  initials: string;
140
140
  online: boolean;
141
- roleName: string;
142
- department: string;
143
141
  level: number;
142
+ department: string;
143
+ roleName: string;
144
144
  status?: number | null | undefined;
145
- branchKey?: string | null | undefined;
146
- branchName?: string | null | undefined;
147
145
  statusUntilUtc?: string | null | undefined;
146
+ branchKey?: string | null | undefined;
148
147
  hasAccount?: boolean | null | undefined;
148
+ branchName?: string | null | undefined;
149
149
  permissionSetName?: string | null | undefined;
150
150
  permissionSetColor?: string | null | undefined;
151
151
  }[];