@elevasis/ui 2.12.0 → 2.13.0

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 (49) hide show
  1. package/dist/app/index.js +5 -5
  2. package/dist/{chunk-ISVFJCPP.js → chunk-2CGYLRTX.js} +1 -1
  3. package/dist/{chunk-PXFV47B3.js → chunk-5IBTTMWX.js} +3 -3
  4. package/dist/{chunk-GHCYUZZE.js → chunk-67BKMKFG.js} +3 -3
  5. package/dist/{chunk-ETWKPFOO.js → chunk-6RWMRQN5.js} +1 -1
  6. package/dist/{chunk-TXZXMTZB.js → chunk-6WPKE7C3.js} +1 -1
  7. package/dist/{chunk-ZKCQEHEJ.js → chunk-BSW5MUAQ.js} +4 -4
  8. package/dist/{chunk-V7XHGJQZ.js → chunk-FL67C3WY.js} +6 -1
  9. package/dist/{chunk-WM7JTTPX.js → chunk-FT27I4S7.js} +61 -2
  10. package/dist/{chunk-MISBW6WW.js → chunk-H333SX3N.js} +1 -1
  11. package/dist/{chunk-YEX4MQSY.js → chunk-M25JL54Z.js} +3 -3
  12. package/dist/{chunk-7PLBPEBW.js → chunk-NLFAEJDH.js} +2 -2
  13. package/dist/{chunk-235RO24Z.js → chunk-PCK553L4.js} +8 -3
  14. package/dist/{chunk-TYWZABTP.js → chunk-R73EHHPN.js} +89 -46
  15. package/dist/{chunk-F6SMVMFC.js → chunk-T7R5P5JJ.js} +3 -3
  16. package/dist/{chunk-F4TPY6YL.js → chunk-WLOQ4IBG.js} +9 -3
  17. package/dist/{chunk-R7WLWGPO.js → chunk-ZB5GAV7J.js} +1 -1
  18. package/dist/components/index.d.ts +14 -8
  19. package/dist/components/index.js +19 -19
  20. package/dist/features/auth/index.d.ts +7 -4
  21. package/dist/features/auth/index.js +2 -2
  22. package/dist/features/crm/index.d.ts +7 -4
  23. package/dist/features/crm/index.js +7 -7
  24. package/dist/features/dashboard/index.js +8 -8
  25. package/dist/features/delivery/index.d.ts +7 -4
  26. package/dist/features/delivery/index.js +7 -7
  27. package/dist/features/lead-gen/index.js +11 -11
  28. package/dist/features/monitoring/index.js +9 -9
  29. package/dist/features/monitoring/requests/index.d.ts +125 -0
  30. package/dist/features/operations/index.js +10 -10
  31. package/dist/features/settings/index.d.ts +7 -4
  32. package/dist/features/settings/index.js +9 -9
  33. package/dist/hooks/index.d.ts +130 -10
  34. package/dist/hooks/index.js +6 -6
  35. package/dist/hooks/published.d.ts +130 -10
  36. package/dist/hooks/published.js +6 -6
  37. package/dist/index.d.ts +130 -10
  38. package/dist/index.js +7 -7
  39. package/dist/initialization/index.d.ts +7 -4
  40. package/dist/layout/index.d.ts +9 -2
  41. package/dist/layout/index.js +2 -2
  42. package/dist/organization/index.js +1 -1
  43. package/dist/profile/index.d.ts +7 -4
  44. package/dist/provider/index.js +5 -5
  45. package/dist/provider/published.js +2 -2
  46. package/dist/supabase/index.d.ts +14 -8
  47. package/dist/theme/index.js +3 -3
  48. package/dist/types/index.d.ts +7 -4
  49. package/package.json +5 -1
@@ -2511,7 +2511,7 @@ type Database = {
2511
2511
  }
2512
2512
  ];
2513
2513
  };
2514
- reported_issues: {
2514
+ reported_requests: {
2515
2515
  Row: {
2516
2516
  affected_page: string | null;
2517
2517
  category: string;
@@ -2530,6 +2530,7 @@ type Database = {
2530
2530
  status: string;
2531
2531
  task_id: string | null;
2532
2532
  title: string;
2533
+ type: string;
2533
2534
  updated_at: string;
2534
2535
  };
2535
2536
  Insert: {
@@ -2550,6 +2551,7 @@ type Database = {
2550
2551
  status?: string;
2551
2552
  task_id?: string | null;
2552
2553
  title: string;
2554
+ type: string;
2553
2555
  updated_at?: string;
2554
2556
  };
2555
2557
  Update: {
@@ -2570,25 +2572,26 @@ type Database = {
2570
2572
  status?: string;
2571
2573
  task_id?: string | null;
2572
2574
  title?: string;
2575
+ type?: string;
2573
2576
  updated_at?: string;
2574
2577
  };
2575
2578
  Relationships: [
2576
2579
  {
2577
- foreignKeyName: "reported_issues_organization_id_fkey";
2580
+ foreignKeyName: "reported_requests_organization_id_fkey";
2578
2581
  columns: ["organization_id"];
2579
2582
  isOneToOne: false;
2580
2583
  referencedRelation: "organizations";
2581
2584
  referencedColumns: ["id"];
2582
2585
  },
2583
2586
  {
2584
- foreignKeyName: "reported_issues_project_id_fkey";
2587
+ foreignKeyName: "reported_requests_project_id_fkey";
2585
2588
  columns: ["project_id"];
2586
2589
  isOneToOne: false;
2587
2590
  referencedRelation: "prj_projects";
2588
2591
  referencedColumns: ["id"];
2589
2592
  },
2590
2593
  {
2591
- foreignKeyName: "reported_issues_task_id_fkey";
2594
+ foreignKeyName: "reported_requests_task_id_fkey";
2592
2595
  columns: ["task_id"];
2593
2596
  isOneToOne: false;
2594
2597
  referencedRelation: "prj_tasks";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elevasis/ui",
3
- "version": "2.12.0",
3
+ "version": "2.13.0",
4
4
  "description": "UI components and platform-aware hooks for building custom frontends on the Elevasis platform",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -72,6 +72,10 @@
72
72
  "types": "./dist/features/monitoring/index.d.ts",
73
73
  "import": "./dist/features/monitoring/index.js"
74
74
  },
75
+ "./features/monitoring/requests": {
76
+ "types": "./dist/features/monitoring/requests/index.d.ts",
77
+ "import": "./dist/features/monitoring/requests/index.js"
78
+ },
75
79
  "./features/seo": {
76
80
  "types": "./dist/features/seo/index.d.ts",
77
81
  "import": "./dist/features/seo/index.js"