@elevasis/ui 2.11.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.
- package/dist/app/index.js +5 -5
- package/dist/{chunk-23PZ57GB.js → chunk-2CGYLRTX.js} +1 -1
- package/dist/{chunk-DJBORKTR.js → chunk-5IBTTMWX.js} +3 -3
- package/dist/{chunk-BLQLWIOW.js → chunk-67BKMKFG.js} +9 -9
- package/dist/{chunk-KDAOCM66.js → chunk-6RWMRQN5.js} +1 -1
- package/dist/{chunk-BDENEI4Q.js → chunk-6WPKE7C3.js} +135 -90
- package/dist/{chunk-L34DFR2K.js → chunk-BSW5MUAQ.js} +4 -4
- package/dist/{chunk-V7XHGJQZ.js → chunk-FL67C3WY.js} +6 -1
- package/dist/{chunk-DOFVHWAP.js → chunk-FT27I4S7.js} +82 -2
- package/dist/{chunk-AQDBRRZD.js → chunk-H333SX3N.js} +1 -1
- package/dist/{chunk-YEX4MQSY.js → chunk-M25JL54Z.js} +3 -3
- package/dist/{chunk-TNOIOBYI.js → chunk-NLFAEJDH.js} +2 -2
- package/dist/{chunk-BSCTPKXM.js → chunk-PCK553L4.js} +8 -3
- package/dist/{chunk-24UMQV5B.js → chunk-R73EHHPN.js} +143 -78
- package/dist/{chunk-XYSMBMAR.js → chunk-T7R5P5JJ.js} +3 -3
- package/dist/{chunk-F4TPY6YL.js → chunk-WLOQ4IBG.js} +9 -3
- package/dist/{chunk-R7WLWGPO.js → chunk-ZB5GAV7J.js} +1 -1
- package/dist/components/index.d.ts +178 -0
- package/dist/components/index.js +19 -19
- package/dist/features/auth/index.d.ts +88 -0
- package/dist/features/auth/index.js +2 -2
- package/dist/features/crm/index.d.ts +90 -0
- package/dist/features/crm/index.js +7 -7
- package/dist/features/dashboard/index.js +8 -8
- package/dist/features/delivery/index.d.ts +135 -26
- package/dist/features/delivery/index.js +7 -7
- package/dist/features/lead-gen/index.js +11 -11
- package/dist/features/monitoring/index.js +9 -9
- package/dist/features/monitoring/requests/index.d.ts +125 -0
- package/dist/features/operations/index.js +10 -10
- package/dist/features/settings/index.d.ts +88 -0
- package/dist/features/settings/index.js +9 -9
- package/dist/hooks/index.d.ts +318 -3
- package/dist/hooks/index.js +6 -6
- package/dist/hooks/published.d.ts +318 -3
- package/dist/hooks/published.js +6 -6
- package/dist/index.d.ts +318 -3
- package/dist/index.js +7 -7
- package/dist/initialization/index.d.ts +88 -0
- package/dist/layout/index.d.ts +9 -2
- package/dist/layout/index.js +2 -2
- package/dist/organization/index.js +1 -1
- package/dist/profile/index.d.ts +88 -0
- package/dist/provider/index.js +5 -5
- package/dist/provider/published.js +2 -2
- package/dist/supabase/index.d.ts +172 -0
- package/dist/theme/index.js +3 -3
- package/dist/types/index.d.ts +89 -1
- package/package.json +7 -3
package/dist/profile/index.d.ts
CHANGED
|
@@ -2070,6 +2070,94 @@ type Database = {
|
|
|
2070
2070
|
}
|
|
2071
2071
|
];
|
|
2072
2072
|
};
|
|
2073
|
+
reported_requests: {
|
|
2074
|
+
Row: {
|
|
2075
|
+
affected_page: string | null;
|
|
2076
|
+
category: string;
|
|
2077
|
+
context: Json | null;
|
|
2078
|
+
created_at: string;
|
|
2079
|
+
description: string;
|
|
2080
|
+
evidence: Json | null;
|
|
2081
|
+
id: string;
|
|
2082
|
+
organization_id: string;
|
|
2083
|
+
project_id: string | null;
|
|
2084
|
+
reported_at: string;
|
|
2085
|
+
reporter_id: string | null;
|
|
2086
|
+
resolved_at: string | null;
|
|
2087
|
+
severity: string;
|
|
2088
|
+
source: string;
|
|
2089
|
+
status: string;
|
|
2090
|
+
task_id: string | null;
|
|
2091
|
+
title: string;
|
|
2092
|
+
type: string;
|
|
2093
|
+
updated_at: string;
|
|
2094
|
+
};
|
|
2095
|
+
Insert: {
|
|
2096
|
+
affected_page?: string | null;
|
|
2097
|
+
category: string;
|
|
2098
|
+
context?: Json | null;
|
|
2099
|
+
created_at?: string;
|
|
2100
|
+
description: string;
|
|
2101
|
+
evidence?: Json | null;
|
|
2102
|
+
id?: string;
|
|
2103
|
+
organization_id: string;
|
|
2104
|
+
project_id?: string | null;
|
|
2105
|
+
reported_at?: string;
|
|
2106
|
+
reporter_id?: string | null;
|
|
2107
|
+
resolved_at?: string | null;
|
|
2108
|
+
severity: string;
|
|
2109
|
+
source: string;
|
|
2110
|
+
status?: string;
|
|
2111
|
+
task_id?: string | null;
|
|
2112
|
+
title: string;
|
|
2113
|
+
type: string;
|
|
2114
|
+
updated_at?: string;
|
|
2115
|
+
};
|
|
2116
|
+
Update: {
|
|
2117
|
+
affected_page?: string | null;
|
|
2118
|
+
category?: string;
|
|
2119
|
+
context?: Json | null;
|
|
2120
|
+
created_at?: string;
|
|
2121
|
+
description?: string;
|
|
2122
|
+
evidence?: Json | null;
|
|
2123
|
+
id?: string;
|
|
2124
|
+
organization_id?: string;
|
|
2125
|
+
project_id?: string | null;
|
|
2126
|
+
reported_at?: string;
|
|
2127
|
+
reporter_id?: string | null;
|
|
2128
|
+
resolved_at?: string | null;
|
|
2129
|
+
severity?: string;
|
|
2130
|
+
source?: string;
|
|
2131
|
+
status?: string;
|
|
2132
|
+
task_id?: string | null;
|
|
2133
|
+
title?: string;
|
|
2134
|
+
type?: string;
|
|
2135
|
+
updated_at?: string;
|
|
2136
|
+
};
|
|
2137
|
+
Relationships: [
|
|
2138
|
+
{
|
|
2139
|
+
foreignKeyName: "reported_requests_organization_id_fkey";
|
|
2140
|
+
columns: ["organization_id"];
|
|
2141
|
+
isOneToOne: false;
|
|
2142
|
+
referencedRelation: "organizations";
|
|
2143
|
+
referencedColumns: ["id"];
|
|
2144
|
+
},
|
|
2145
|
+
{
|
|
2146
|
+
foreignKeyName: "reported_requests_project_id_fkey";
|
|
2147
|
+
columns: ["project_id"];
|
|
2148
|
+
isOneToOne: false;
|
|
2149
|
+
referencedRelation: "prj_projects";
|
|
2150
|
+
referencedColumns: ["id"];
|
|
2151
|
+
},
|
|
2152
|
+
{
|
|
2153
|
+
foreignKeyName: "reported_requests_task_id_fkey";
|
|
2154
|
+
columns: ["task_id"];
|
|
2155
|
+
isOneToOne: false;
|
|
2156
|
+
referencedRelation: "prj_tasks";
|
|
2157
|
+
referencedColumns: ["id"];
|
|
2158
|
+
}
|
|
2159
|
+
];
|
|
2160
|
+
};
|
|
2073
2161
|
session_messages: {
|
|
2074
2162
|
Row: {
|
|
2075
2163
|
created_at: string | null;
|
package/dist/provider/index.js
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
export { createTestFeaturesProvider } from '../chunk-DKQQK3WX.js';
|
|
2
|
-
export { ElevasisUIProvider } from '../chunk-
|
|
3
|
-
import '../chunk-
|
|
4
|
-
import '../chunk-
|
|
2
|
+
export { ElevasisUIProvider } from '../chunk-5IBTTMWX.js';
|
|
3
|
+
import '../chunk-R73EHHPN.js';
|
|
4
|
+
import '../chunk-WLOQ4IBG.js';
|
|
5
5
|
export { ElevasisFeaturesProvider, FeatureShell, useElevasisFeatures, useOptionalElevasisFeatures } from '../chunk-C7BX547M.js';
|
|
6
6
|
import '../chunk-RX4UWZZR.js';
|
|
7
7
|
import '../chunk-SQQGLGHW.js';
|
|
8
8
|
import '../chunk-3KMDHCAR.js';
|
|
9
9
|
import '../chunk-NYBEU5TE.js';
|
|
10
|
-
export { ElevasisCoreProvider, NotificationProvider, useNotificationAdapter } from '../chunk-
|
|
10
|
+
export { ElevasisCoreProvider, NotificationProvider, useNotificationAdapter } from '../chunk-ZB5GAV7J.js';
|
|
11
11
|
import '../chunk-SZHARWKU.js';
|
|
12
12
|
import '../chunk-NVOCKXUQ.js';
|
|
13
13
|
import '../chunk-2IFYDILW.js';
|
|
14
14
|
import '../chunk-ELJIFLCB.js';
|
|
15
15
|
import '../chunk-L4XXM55J.js';
|
|
16
|
-
import '../chunk-
|
|
16
|
+
import '../chunk-FL67C3WY.js';
|
|
17
17
|
export { AppearanceProvider, useAppearance } from '../chunk-QJ2KCHKX.js';
|
|
18
18
|
import '../chunk-DT3QYZVU.js';
|
|
19
19
|
import '../chunk-SLVC5OJ2.js';
|
|
@@ -3,13 +3,13 @@ import '../chunk-RX4UWZZR.js';
|
|
|
3
3
|
import '../chunk-SQQGLGHW.js';
|
|
4
4
|
import '../chunk-3KMDHCAR.js';
|
|
5
5
|
import '../chunk-NYBEU5TE.js';
|
|
6
|
-
export { ElevasisCoreProvider, NotificationProvider, useNotificationAdapter } from '../chunk-
|
|
6
|
+
export { ElevasisCoreProvider, NotificationProvider, useNotificationAdapter } from '../chunk-ZB5GAV7J.js';
|
|
7
7
|
import '../chunk-SZHARWKU.js';
|
|
8
8
|
import '../chunk-NVOCKXUQ.js';
|
|
9
9
|
import '../chunk-2IFYDILW.js';
|
|
10
10
|
import '../chunk-ELJIFLCB.js';
|
|
11
11
|
import '../chunk-L4XXM55J.js';
|
|
12
|
-
import '../chunk-
|
|
12
|
+
import '../chunk-FL67C3WY.js';
|
|
13
13
|
export { AppearanceProvider, useAppearance } from '../chunk-QJ2KCHKX.js';
|
|
14
14
|
import '../chunk-DT3QYZVU.js';
|
|
15
15
|
import '../chunk-SLVC5OJ2.js';
|
package/dist/supabase/index.d.ts
CHANGED
|
@@ -2069,6 +2069,94 @@ type Database = {
|
|
|
2069
2069
|
}
|
|
2070
2070
|
];
|
|
2071
2071
|
};
|
|
2072
|
+
reported_requests: {
|
|
2073
|
+
Row: {
|
|
2074
|
+
affected_page: string | null;
|
|
2075
|
+
category: string;
|
|
2076
|
+
context: Json | null;
|
|
2077
|
+
created_at: string;
|
|
2078
|
+
description: string;
|
|
2079
|
+
evidence: Json | null;
|
|
2080
|
+
id: string;
|
|
2081
|
+
organization_id: string;
|
|
2082
|
+
project_id: string | null;
|
|
2083
|
+
reported_at: string;
|
|
2084
|
+
reporter_id: string | null;
|
|
2085
|
+
resolved_at: string | null;
|
|
2086
|
+
severity: string;
|
|
2087
|
+
source: string;
|
|
2088
|
+
status: string;
|
|
2089
|
+
task_id: string | null;
|
|
2090
|
+
title: string;
|
|
2091
|
+
type: string;
|
|
2092
|
+
updated_at: string;
|
|
2093
|
+
};
|
|
2094
|
+
Insert: {
|
|
2095
|
+
affected_page?: string | null;
|
|
2096
|
+
category: string;
|
|
2097
|
+
context?: Json | null;
|
|
2098
|
+
created_at?: string;
|
|
2099
|
+
description: string;
|
|
2100
|
+
evidence?: Json | null;
|
|
2101
|
+
id?: string;
|
|
2102
|
+
organization_id: string;
|
|
2103
|
+
project_id?: string | null;
|
|
2104
|
+
reported_at?: string;
|
|
2105
|
+
reporter_id?: string | null;
|
|
2106
|
+
resolved_at?: string | null;
|
|
2107
|
+
severity: string;
|
|
2108
|
+
source: string;
|
|
2109
|
+
status?: string;
|
|
2110
|
+
task_id?: string | null;
|
|
2111
|
+
title: string;
|
|
2112
|
+
type: string;
|
|
2113
|
+
updated_at?: string;
|
|
2114
|
+
};
|
|
2115
|
+
Update: {
|
|
2116
|
+
affected_page?: string | null;
|
|
2117
|
+
category?: string;
|
|
2118
|
+
context?: Json | null;
|
|
2119
|
+
created_at?: string;
|
|
2120
|
+
description?: string;
|
|
2121
|
+
evidence?: Json | null;
|
|
2122
|
+
id?: string;
|
|
2123
|
+
organization_id?: string;
|
|
2124
|
+
project_id?: string | null;
|
|
2125
|
+
reported_at?: string;
|
|
2126
|
+
reporter_id?: string | null;
|
|
2127
|
+
resolved_at?: string | null;
|
|
2128
|
+
severity?: string;
|
|
2129
|
+
source?: string;
|
|
2130
|
+
status?: string;
|
|
2131
|
+
task_id?: string | null;
|
|
2132
|
+
title?: string;
|
|
2133
|
+
type?: string;
|
|
2134
|
+
updated_at?: string;
|
|
2135
|
+
};
|
|
2136
|
+
Relationships: [
|
|
2137
|
+
{
|
|
2138
|
+
foreignKeyName: "reported_requests_organization_id_fkey";
|
|
2139
|
+
columns: ["organization_id"];
|
|
2140
|
+
isOneToOne: false;
|
|
2141
|
+
referencedRelation: "organizations";
|
|
2142
|
+
referencedColumns: ["id"];
|
|
2143
|
+
},
|
|
2144
|
+
{
|
|
2145
|
+
foreignKeyName: "reported_requests_project_id_fkey";
|
|
2146
|
+
columns: ["project_id"];
|
|
2147
|
+
isOneToOne: false;
|
|
2148
|
+
referencedRelation: "prj_projects";
|
|
2149
|
+
referencedColumns: ["id"];
|
|
2150
|
+
},
|
|
2151
|
+
{
|
|
2152
|
+
foreignKeyName: "reported_requests_task_id_fkey";
|
|
2153
|
+
columns: ["task_id"];
|
|
2154
|
+
isOneToOne: false;
|
|
2155
|
+
referencedRelation: "prj_tasks";
|
|
2156
|
+
referencedColumns: ["id"];
|
|
2157
|
+
}
|
|
2158
|
+
];
|
|
2159
|
+
};
|
|
2072
2160
|
session_messages: {
|
|
2073
2161
|
Row: {
|
|
2074
2162
|
created_at: string | null;
|
|
@@ -4456,6 +4544,90 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
|
|
|
4456
4544
|
referencedColumns: ["id"];
|
|
4457
4545
|
}];
|
|
4458
4546
|
};
|
|
4547
|
+
reported_requests: {
|
|
4548
|
+
Row: {
|
|
4549
|
+
affected_page: string | null;
|
|
4550
|
+
category: string;
|
|
4551
|
+
context: Json | null;
|
|
4552
|
+
created_at: string;
|
|
4553
|
+
description: string;
|
|
4554
|
+
evidence: Json | null;
|
|
4555
|
+
id: string;
|
|
4556
|
+
organization_id: string;
|
|
4557
|
+
project_id: string | null;
|
|
4558
|
+
reported_at: string;
|
|
4559
|
+
reporter_id: string | null;
|
|
4560
|
+
resolved_at: string | null;
|
|
4561
|
+
severity: string;
|
|
4562
|
+
source: string;
|
|
4563
|
+
status: string;
|
|
4564
|
+
task_id: string | null;
|
|
4565
|
+
title: string;
|
|
4566
|
+
type: string;
|
|
4567
|
+
updated_at: string;
|
|
4568
|
+
};
|
|
4569
|
+
Insert: {
|
|
4570
|
+
affected_page?: string | null;
|
|
4571
|
+
category: string;
|
|
4572
|
+
context?: Json | null;
|
|
4573
|
+
created_at?: string;
|
|
4574
|
+
description: string;
|
|
4575
|
+
evidence?: Json | null;
|
|
4576
|
+
id?: string;
|
|
4577
|
+
organization_id: string;
|
|
4578
|
+
project_id?: string | null;
|
|
4579
|
+
reported_at?: string;
|
|
4580
|
+
reporter_id?: string | null;
|
|
4581
|
+
resolved_at?: string | null;
|
|
4582
|
+
severity: string;
|
|
4583
|
+
source: string;
|
|
4584
|
+
status?: string;
|
|
4585
|
+
task_id?: string | null;
|
|
4586
|
+
title: string;
|
|
4587
|
+
type: string;
|
|
4588
|
+
updated_at?: string;
|
|
4589
|
+
};
|
|
4590
|
+
Update: {
|
|
4591
|
+
affected_page?: string | null;
|
|
4592
|
+
category?: string;
|
|
4593
|
+
context?: Json | null;
|
|
4594
|
+
created_at?: string;
|
|
4595
|
+
description?: string;
|
|
4596
|
+
evidence?: Json | null;
|
|
4597
|
+
id?: string;
|
|
4598
|
+
organization_id?: string;
|
|
4599
|
+
project_id?: string | null;
|
|
4600
|
+
reported_at?: string;
|
|
4601
|
+
reporter_id?: string | null;
|
|
4602
|
+
resolved_at?: string | null;
|
|
4603
|
+
severity?: string;
|
|
4604
|
+
source?: string;
|
|
4605
|
+
status?: string;
|
|
4606
|
+
task_id?: string | null;
|
|
4607
|
+
title?: string;
|
|
4608
|
+
type?: string;
|
|
4609
|
+
updated_at?: string;
|
|
4610
|
+
};
|
|
4611
|
+
Relationships: [{
|
|
4612
|
+
foreignKeyName: "reported_requests_organization_id_fkey";
|
|
4613
|
+
columns: ["organization_id"];
|
|
4614
|
+
isOneToOne: false;
|
|
4615
|
+
referencedRelation: "organizations";
|
|
4616
|
+
referencedColumns: ["id"];
|
|
4617
|
+
}, {
|
|
4618
|
+
foreignKeyName: "reported_requests_project_id_fkey";
|
|
4619
|
+
columns: ["project_id"];
|
|
4620
|
+
isOneToOne: false;
|
|
4621
|
+
referencedRelation: "prj_projects";
|
|
4622
|
+
referencedColumns: ["id"];
|
|
4623
|
+
}, {
|
|
4624
|
+
foreignKeyName: "reported_requests_task_id_fkey";
|
|
4625
|
+
columns: ["task_id"];
|
|
4626
|
+
isOneToOne: false;
|
|
4627
|
+
referencedRelation: "prj_tasks";
|
|
4628
|
+
referencedColumns: ["id"];
|
|
4629
|
+
}];
|
|
4630
|
+
};
|
|
4459
4631
|
session_messages: {
|
|
4460
4632
|
Row: {
|
|
4461
4633
|
created_at: string | null;
|
package/dist/theme/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { useAvailablePresets } from '../chunk-
|
|
2
|
-
export { PresetsProvider, TOKEN_VAR_MAP, componentThemes, createCssVariablesResolver, generateShades, getPreset, mantineThemeOverride, PRESETS as presets, usePresetsContext } from '../chunk-
|
|
3
|
-
import '../chunk-
|
|
1
|
+
export { useAvailablePresets } from '../chunk-6RWMRQN5.js';
|
|
2
|
+
export { PresetsProvider, TOKEN_VAR_MAP, componentThemes, createCssVariablesResolver, generateShades, getPreset, mantineThemeOverride, PRESETS as presets, usePresetsContext } from '../chunk-R73EHHPN.js';
|
|
3
|
+
import '../chunk-WLOQ4IBG.js';
|
package/dist/types/index.d.ts
CHANGED
|
@@ -2511,6 +2511,94 @@ type Database = {
|
|
|
2511
2511
|
}
|
|
2512
2512
|
];
|
|
2513
2513
|
};
|
|
2514
|
+
reported_requests: {
|
|
2515
|
+
Row: {
|
|
2516
|
+
affected_page: string | null;
|
|
2517
|
+
category: string;
|
|
2518
|
+
context: Json | null;
|
|
2519
|
+
created_at: string;
|
|
2520
|
+
description: string;
|
|
2521
|
+
evidence: Json | null;
|
|
2522
|
+
id: string;
|
|
2523
|
+
organization_id: string;
|
|
2524
|
+
project_id: string | null;
|
|
2525
|
+
reported_at: string;
|
|
2526
|
+
reporter_id: string | null;
|
|
2527
|
+
resolved_at: string | null;
|
|
2528
|
+
severity: string;
|
|
2529
|
+
source: string;
|
|
2530
|
+
status: string;
|
|
2531
|
+
task_id: string | null;
|
|
2532
|
+
title: string;
|
|
2533
|
+
type: string;
|
|
2534
|
+
updated_at: string;
|
|
2535
|
+
};
|
|
2536
|
+
Insert: {
|
|
2537
|
+
affected_page?: string | null;
|
|
2538
|
+
category: string;
|
|
2539
|
+
context?: Json | null;
|
|
2540
|
+
created_at?: string;
|
|
2541
|
+
description: string;
|
|
2542
|
+
evidence?: Json | null;
|
|
2543
|
+
id?: string;
|
|
2544
|
+
organization_id: string;
|
|
2545
|
+
project_id?: string | null;
|
|
2546
|
+
reported_at?: string;
|
|
2547
|
+
reporter_id?: string | null;
|
|
2548
|
+
resolved_at?: string | null;
|
|
2549
|
+
severity: string;
|
|
2550
|
+
source: string;
|
|
2551
|
+
status?: string;
|
|
2552
|
+
task_id?: string | null;
|
|
2553
|
+
title: string;
|
|
2554
|
+
type: string;
|
|
2555
|
+
updated_at?: string;
|
|
2556
|
+
};
|
|
2557
|
+
Update: {
|
|
2558
|
+
affected_page?: string | null;
|
|
2559
|
+
category?: string;
|
|
2560
|
+
context?: Json | null;
|
|
2561
|
+
created_at?: string;
|
|
2562
|
+
description?: string;
|
|
2563
|
+
evidence?: Json | null;
|
|
2564
|
+
id?: string;
|
|
2565
|
+
organization_id?: string;
|
|
2566
|
+
project_id?: string | null;
|
|
2567
|
+
reported_at?: string;
|
|
2568
|
+
reporter_id?: string | null;
|
|
2569
|
+
resolved_at?: string | null;
|
|
2570
|
+
severity?: string;
|
|
2571
|
+
source?: string;
|
|
2572
|
+
status?: string;
|
|
2573
|
+
task_id?: string | null;
|
|
2574
|
+
title?: string;
|
|
2575
|
+
type?: string;
|
|
2576
|
+
updated_at?: string;
|
|
2577
|
+
};
|
|
2578
|
+
Relationships: [
|
|
2579
|
+
{
|
|
2580
|
+
foreignKeyName: "reported_requests_organization_id_fkey";
|
|
2581
|
+
columns: ["organization_id"];
|
|
2582
|
+
isOneToOne: false;
|
|
2583
|
+
referencedRelation: "organizations";
|
|
2584
|
+
referencedColumns: ["id"];
|
|
2585
|
+
},
|
|
2586
|
+
{
|
|
2587
|
+
foreignKeyName: "reported_requests_project_id_fkey";
|
|
2588
|
+
columns: ["project_id"];
|
|
2589
|
+
isOneToOne: false;
|
|
2590
|
+
referencedRelation: "prj_projects";
|
|
2591
|
+
referencedColumns: ["id"];
|
|
2592
|
+
},
|
|
2593
|
+
{
|
|
2594
|
+
foreignKeyName: "reported_requests_task_id_fkey";
|
|
2595
|
+
columns: ["task_id"];
|
|
2596
|
+
isOneToOne: false;
|
|
2597
|
+
referencedRelation: "prj_tasks";
|
|
2598
|
+
referencedColumns: ["id"];
|
|
2599
|
+
}
|
|
2600
|
+
];
|
|
2601
|
+
};
|
|
2514
2602
|
session_messages: {
|
|
2515
2603
|
Row: {
|
|
2516
2604
|
created_at: string | null;
|
|
@@ -4668,7 +4756,7 @@ interface DomainDefinition {
|
|
|
4668
4756
|
// ============================================================================
|
|
4669
4757
|
|
|
4670
4758
|
/** Webhook provider identifiers */
|
|
4671
|
-
type WebhookProviderType = 'cal-com' | 'stripe' | 'signature-api' | 'instantly' | 'apify'
|
|
4759
|
+
type WebhookProviderType = 'cal-com' | 'stripe' | 'signature-api' | 'instantly' | 'apify' | 'test'
|
|
4672
4760
|
|
|
4673
4761
|
/** Webhook trigger configuration */
|
|
4674
4762
|
interface WebhookTriggerConfig {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elevasis/ui",
|
|
3
|
-
"version": "2.
|
|
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"
|
|
@@ -203,8 +207,8 @@
|
|
|
203
207
|
"typescript": "5.9.2",
|
|
204
208
|
"vite": "^7.0.0",
|
|
205
209
|
"@repo/core": "0.5.0",
|
|
206
|
-
"@repo/
|
|
207
|
-
"@repo/
|
|
210
|
+
"@repo/typescript-config": "0.0.0",
|
|
211
|
+
"@repo/eslint-config": "0.0.0"
|
|
208
212
|
},
|
|
209
213
|
"dependencies": {
|
|
210
214
|
"@dagrejs/dagre": "^1.1.4",
|