@elevasis/ui 2.41.1 → 2.43.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/api/index.js +3 -3
- package/dist/app/index.d.ts +74 -3
- package/dist/app/index.js +3 -3
- package/dist/auth/index.js +3 -3
- package/dist/charts/index.js +3 -3
- package/dist/{chunk-QDXTIQT4.js → chunk-FUKNHVUV.js} +205 -415
- package/dist/{chunk-7FJI76OH.js → chunk-NVVAQNKE.js} +1 -1
- package/dist/{chunk-V5HWC5EW.js → chunk-UECAFQKT.js} +1 -1
- package/dist/{chunk-5M4HSHQ5.js → chunk-XDEUR36B.js} +388 -25
- package/dist/components/index.d.ts +8 -1
- package/dist/components/index.js +3 -3
- package/dist/components/navigation/index.js +3 -3
- package/dist/features/auth/index.d.ts +3 -0
- package/dist/features/auth/index.js +4 -4
- package/dist/features/clients/index.d.ts +6 -3
- package/dist/features/clients/index.js +80 -19
- package/dist/features/crm/index.d.ts +3 -0
- package/dist/features/crm/index.js +3 -3
- package/dist/features/dashboard/index.d.ts +5 -1
- package/dist/features/dashboard/index.js +3 -3
- package/dist/features/delivery/index.d.ts +3 -0
- package/dist/features/delivery/index.js +3 -3
- package/dist/features/knowledge/index.js +3 -3
- package/dist/features/lead-gen/index.d.ts +77 -4
- package/dist/features/lead-gen/index.js +3 -3
- package/dist/features/monitoring/index.js +3 -3
- package/dist/features/monitoring/requests/index.js +4 -4
- package/dist/features/operations/index.d.ts +71 -3
- package/dist/features/operations/index.js +3 -3
- package/dist/features/settings/index.d.ts +3 -0
- package/dist/features/settings/index.js +3 -3
- package/dist/hooks/access/index.js +3 -3
- package/dist/hooks/delivery/index.d.ts +3 -0
- package/dist/hooks/delivery/index.js +3 -3
- package/dist/hooks/index.d.ts +38 -19
- package/dist/hooks/index.js +3 -3
- package/dist/hooks/operations/command-view/utils/transformCommandViewData.d.ts +5 -1
- package/dist/hooks/published.d.ts +38 -19
- package/dist/hooks/published.js +3 -3
- package/dist/index.d.ts +104 -21
- package/dist/index.js +4 -4
- package/dist/initialization/index.d.ts +3 -0
- package/dist/knowledge/index.d.ts +76 -7
- package/dist/knowledge/index.js +68 -8
- package/dist/layout/index.js +3 -3
- package/dist/organization/index.js +3 -3
- package/dist/profile/index.d.ts +3 -0
- package/dist/provider/index.d.ts +74 -3
- package/dist/provider/index.js +3 -3
- package/dist/provider/published.d.ts +74 -3
- package/dist/provider/published.js +3 -3
- package/dist/supabase/index.d.ts +6 -0
- package/dist/test-utils/index.js +3 -3
- package/dist/types/index.d.ts +8 -1
- package/dist/utils/index.d.ts +5 -1
- package/dist/utils/index.js +1 -1
- package/package.json +5 -5
|
@@ -1354,6 +1354,7 @@ type Database = {
|
|
|
1354
1354
|
organization_id: string;
|
|
1355
1355
|
primary_company_id: string | null;
|
|
1356
1356
|
primary_contact_id: string | null;
|
|
1357
|
+
source: string;
|
|
1357
1358
|
source_deal_id: string | null;
|
|
1358
1359
|
status: string;
|
|
1359
1360
|
updated_at: string;
|
|
@@ -1367,6 +1368,7 @@ type Database = {
|
|
|
1367
1368
|
organization_id: string;
|
|
1368
1369
|
primary_company_id?: string | null;
|
|
1369
1370
|
primary_contact_id?: string | null;
|
|
1371
|
+
source?: string;
|
|
1370
1372
|
source_deal_id?: string | null;
|
|
1371
1373
|
status?: string;
|
|
1372
1374
|
updated_at?: string;
|
|
@@ -1380,6 +1382,7 @@ type Database = {
|
|
|
1380
1382
|
organization_id?: string;
|
|
1381
1383
|
primary_company_id?: string | null;
|
|
1382
1384
|
primary_contact_id?: string | null;
|
|
1385
|
+
source?: string;
|
|
1383
1386
|
source_deal_id?: string | null;
|
|
1384
1387
|
status?: string;
|
|
1385
1388
|
updated_at?: string;
|
|
@@ -3523,7 +3526,11 @@ declare const SystemApiInterfaceSchema: z$1.ZodObject<{
|
|
|
3523
3526
|
archived: "archived";
|
|
3524
3527
|
disabled: "disabled";
|
|
3525
3528
|
}>>;
|
|
3526
|
-
readinessProfile: z$1.ZodOptional<z$1.
|
|
3529
|
+
readinessProfile: z$1.ZodOptional<z$1.ZodEnum<{
|
|
3530
|
+
"sales.lead-gen.api": "sales.lead-gen.api";
|
|
3531
|
+
"sales.crm.api": "sales.crm.api";
|
|
3532
|
+
"sales.lead-gen.crm-handoff": "sales.lead-gen.crm-handoff";
|
|
3533
|
+
}>>;
|
|
3527
3534
|
resourceIds: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>>;
|
|
3528
3535
|
}, z$1.core.$strict>;
|
|
3529
3536
|
type JsonPrimitive = string | number | boolean | null;
|
|
@@ -3609,6 +3616,7 @@ type SidebarNode = SidebarSurfaceNode | SidebarGroupNode;
|
|
|
3609
3616
|
|
|
3610
3617
|
declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
3611
3618
|
version: z$1.ZodDefault<z$1.ZodLiteral<1>>;
|
|
3619
|
+
snapshotHash: z$1.ZodOptional<z$1.ZodString>;
|
|
3612
3620
|
domainMetadata: z$1.ZodPipe<z$1.ZodDefault<z$1.ZodObject<{
|
|
3613
3621
|
branding: z$1.ZodOptional<z$1.ZodObject<{
|
|
3614
3622
|
version: z$1.ZodDefault<z$1.ZodLiteral<1>>;
|
|
@@ -3618,6 +3626,10 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3618
3626
|
version: z$1.ZodDefault<z$1.ZodLiteral<1>>;
|
|
3619
3627
|
lastModified: z$1.ZodString;
|
|
3620
3628
|
}, z$1.core.$strip>>;
|
|
3629
|
+
clients: z$1.ZodOptional<z$1.ZodObject<{
|
|
3630
|
+
version: z$1.ZodDefault<z$1.ZodLiteral<1>>;
|
|
3631
|
+
lastModified: z$1.ZodString;
|
|
3632
|
+
}, z$1.core.$strip>>;
|
|
3621
3633
|
customers: z$1.ZodOptional<z$1.ZodObject<{
|
|
3622
3634
|
version: z$1.ZodDefault<z$1.ZodLiteral<1>>;
|
|
3623
3635
|
lastModified: z$1.ZodString;
|
|
@@ -3675,6 +3687,10 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3675
3687
|
version: 1;
|
|
3676
3688
|
lastModified: string;
|
|
3677
3689
|
};
|
|
3690
|
+
clients: {
|
|
3691
|
+
version: 1;
|
|
3692
|
+
lastModified: string;
|
|
3693
|
+
};
|
|
3678
3694
|
customers: {
|
|
3679
3695
|
version: 1;
|
|
3680
3696
|
lastModified: string;
|
|
@@ -3732,6 +3748,10 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3732
3748
|
version: 1;
|
|
3733
3749
|
lastModified: string;
|
|
3734
3750
|
} | undefined;
|
|
3751
|
+
clients?: {
|
|
3752
|
+
version: 1;
|
|
3753
|
+
lastModified: string;
|
|
3754
|
+
} | undefined;
|
|
3735
3755
|
customers?: {
|
|
3736
3756
|
version: 1;
|
|
3737
3757
|
lastModified: string;
|
|
@@ -3924,6 +3944,56 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3924
3944
|
shortName: z$1.ZodOptional<z$1.ZodString>;
|
|
3925
3945
|
description: z$1.ZodOptional<z$1.ZodString>;
|
|
3926
3946
|
}, z$1.core.$loose>>;
|
|
3947
|
+
clients: z$1.ZodDefault<z$1.ZodDefault<z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
|
|
3948
|
+
id: z$1.ZodString;
|
|
3949
|
+
slug: z$1.ZodString;
|
|
3950
|
+
name: z$1.ZodString;
|
|
3951
|
+
status: z$1.ZodDefault<z$1.ZodEnum<{
|
|
3952
|
+
active: "active";
|
|
3953
|
+
onboarding: "onboarding";
|
|
3954
|
+
paused: "paused";
|
|
3955
|
+
completed: "completed";
|
|
3956
|
+
churned: "churned";
|
|
3957
|
+
}>>;
|
|
3958
|
+
source: z$1.ZodOptional<z$1.ZodString>;
|
|
3959
|
+
identity: z$1.ZodDefault<z$1.ZodObject<{
|
|
3960
|
+
organizationName: z$1.ZodOptional<z$1.ZodString>;
|
|
3961
|
+
shortName: z$1.ZodOptional<z$1.ZodString>;
|
|
3962
|
+
clientBrief: z$1.ZodDefault<z$1.ZodString>;
|
|
3963
|
+
geographicFocus: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
3964
|
+
timeZone: z$1.ZodDefault<z$1.ZodString>;
|
|
3965
|
+
}, z$1.core.$loose>>;
|
|
3966
|
+
branding: z$1.ZodDefault<z$1.ZodObject<{
|
|
3967
|
+
voice: z$1.ZodOptional<z$1.ZodString>;
|
|
3968
|
+
tagline: z$1.ZodOptional<z$1.ZodString>;
|
|
3969
|
+
values: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
3970
|
+
}, z$1.core.$loose>>;
|
|
3971
|
+
workspace: z$1.ZodDefault<z$1.ZodObject<{
|
|
3972
|
+
kind: z$1.ZodOptional<z$1.ZodEnum<{
|
|
3973
|
+
"external-project": "external-project";
|
|
3974
|
+
"internal-project": "internal-project";
|
|
3975
|
+
none: "none";
|
|
3976
|
+
}>>;
|
|
3977
|
+
owner: z$1.ZodOptional<z$1.ZodEnum<{
|
|
3978
|
+
platform: "platform";
|
|
3979
|
+
client: "client";
|
|
3980
|
+
developer: "developer";
|
|
3981
|
+
}>>;
|
|
3982
|
+
projectId: z$1.ZodOptional<z$1.ZodString>;
|
|
3983
|
+
workspacePath: z$1.ZodOptional<z$1.ZodString>;
|
|
3984
|
+
}, z$1.core.$loose>>;
|
|
3985
|
+
links: z$1.ZodDefault<z$1.ZodObject<{
|
|
3986
|
+
projectIds: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
3987
|
+
primaryCompanyId: z$1.ZodOptional<z$1.ZodString>;
|
|
3988
|
+
primaryContactId: z$1.ZodOptional<z$1.ZodString>;
|
|
3989
|
+
sourceDealId: z$1.ZodOptional<z$1.ZodString>;
|
|
3990
|
+
}, z$1.core.$strip>>;
|
|
3991
|
+
prompts: z$1.ZodDefault<z$1.ZodObject<{
|
|
3992
|
+
defaultContext: z$1.ZodDefault<z$1.ZodString>;
|
|
3993
|
+
}, z$1.core.$loose>>;
|
|
3994
|
+
config: z$1.ZodDefault<z$1.ZodRecord<z$1.ZodString, z$1.ZodType<JsonValue, unknown, z$1.core.$ZodTypeInternals<JsonValue, unknown>>>>;
|
|
3995
|
+
customValues: z$1.ZodDefault<z$1.ZodRecord<z$1.ZodString, z$1.ZodType<JsonValue, unknown, z$1.core.$ZodTypeInternals<JsonValue, unknown>>>>;
|
|
3996
|
+
}, z$1.core.$strict>>>>;
|
|
3927
3997
|
customers: z$1.ZodDefault<z$1.ZodDefault<z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
|
|
3928
3998
|
id: z$1.ZodString;
|
|
3929
3999
|
order: z$1.ZodNumber;
|
|
@@ -4577,6 +4647,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
4577
4647
|
action: "action";
|
|
4578
4648
|
ontology: "ontology";
|
|
4579
4649
|
role: "role";
|
|
4650
|
+
client: "client";
|
|
4580
4651
|
stage: "stage";
|
|
4581
4652
|
goal: "goal";
|
|
4582
4653
|
"customer-segment": "customer-segment";
|
|
@@ -4588,7 +4659,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
4588
4659
|
nodeId: z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodTemplateLiteral<`ontology:${string}`>]>;
|
|
4589
4660
|
}, z$1.core.$strip>]>, z$1.ZodTransform<{
|
|
4590
4661
|
target: {
|
|
4591
|
-
kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "stage" | "goal" | "customer-segment" | "offering";
|
|
4662
|
+
kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "client" | "stage" | "goal" | "customer-segment" | "offering";
|
|
4592
4663
|
id: string;
|
|
4593
4664
|
};
|
|
4594
4665
|
nodeId: string;
|
|
@@ -4596,7 +4667,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
4596
4667
|
nodeId: string;
|
|
4597
4668
|
} | {
|
|
4598
4669
|
target: {
|
|
4599
|
-
kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "stage" | "goal" | "customer-segment" | "offering";
|
|
4670
|
+
kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "client" | "stage" | "goal" | "customer-segment" | "offering";
|
|
4600
4671
|
id: string;
|
|
4601
4672
|
};
|
|
4602
4673
|
}>>>>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { AppearanceProvider, ElevasisCoreProvider, ElevasisSystemsProvider, NotificationProvider, SystemShell, useAppearance, useElevasisSystems, useNotificationAdapter, useOptionalElevasisSystems } from '../chunk-
|
|
1
|
+
export { AppearanceProvider, ElevasisCoreProvider, ElevasisSystemsProvider, NotificationProvider, SystemShell, useAppearance, useElevasisSystems, useNotificationAdapter, useOptionalElevasisSystems } from '../chunk-FUKNHVUV.js';
|
|
2
2
|
import '../chunk-NZ2F5RQ4.js';
|
|
3
3
|
import '../chunk-OJJK27GC.js';
|
|
4
4
|
import '../chunk-AUDNF2Q7.js';
|
|
@@ -9,7 +9,7 @@ import '../chunk-SJHM4WDG.js';
|
|
|
9
9
|
import '../chunk-ZTWA5H77.js';
|
|
10
10
|
import '../chunk-S3XR4II4.js';
|
|
11
11
|
import '../chunk-6DO4PE3O.js';
|
|
12
|
-
import '../chunk-
|
|
12
|
+
import '../chunk-NVVAQNKE.js';
|
|
13
13
|
import '../chunk-DD3CCMCZ.js';
|
|
14
14
|
import '../chunk-GMXGDO3I.js';
|
|
15
15
|
import '../chunk-2IFYDILW.js';
|
|
@@ -18,7 +18,7 @@ import '../chunk-HENXLGVD.js';
|
|
|
18
18
|
import '../chunk-7FPLLSHN.js';
|
|
19
19
|
import '../chunk-RNP5R5I3.js';
|
|
20
20
|
import '../chunk-W2SFTXMT.js';
|
|
21
|
-
import '../chunk-
|
|
21
|
+
import '../chunk-XDEUR36B.js';
|
|
22
22
|
import '../chunk-KRWALB24.js';
|
|
23
23
|
export { ElevasisServiceProvider, useElevasisServices } from '../chunk-2FTX4WO2.js';
|
|
24
24
|
import '../chunk-MQZE7SUI.js';
|
package/dist/supabase/index.d.ts
CHANGED
|
@@ -1251,6 +1251,7 @@ type Database = {
|
|
|
1251
1251
|
organization_id: string;
|
|
1252
1252
|
primary_company_id: string | null;
|
|
1253
1253
|
primary_contact_id: string | null;
|
|
1254
|
+
source: string;
|
|
1254
1255
|
source_deal_id: string | null;
|
|
1255
1256
|
status: string;
|
|
1256
1257
|
updated_at: string;
|
|
@@ -1264,6 +1265,7 @@ type Database = {
|
|
|
1264
1265
|
organization_id: string;
|
|
1265
1266
|
primary_company_id?: string | null;
|
|
1266
1267
|
primary_contact_id?: string | null;
|
|
1268
|
+
source?: string;
|
|
1267
1269
|
source_deal_id?: string | null;
|
|
1268
1270
|
status?: string;
|
|
1269
1271
|
updated_at?: string;
|
|
@@ -1277,6 +1279,7 @@ type Database = {
|
|
|
1277
1279
|
organization_id?: string;
|
|
1278
1280
|
primary_company_id?: string | null;
|
|
1279
1281
|
primary_contact_id?: string | null;
|
|
1282
|
+
source?: string;
|
|
1280
1283
|
source_deal_id?: string | null;
|
|
1281
1284
|
status?: string;
|
|
1282
1285
|
updated_at?: string;
|
|
@@ -4366,6 +4369,7 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
|
|
|
4366
4369
|
organization_id: string;
|
|
4367
4370
|
primary_company_id: string | null;
|
|
4368
4371
|
primary_contact_id: string | null;
|
|
4372
|
+
source: string;
|
|
4369
4373
|
source_deal_id: string | null;
|
|
4370
4374
|
status: string;
|
|
4371
4375
|
updated_at: string;
|
|
@@ -4379,6 +4383,7 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
|
|
|
4379
4383
|
organization_id: string;
|
|
4380
4384
|
primary_company_id?: string | null;
|
|
4381
4385
|
primary_contact_id?: string | null;
|
|
4386
|
+
source?: string;
|
|
4382
4387
|
source_deal_id?: string | null;
|
|
4383
4388
|
status?: string;
|
|
4384
4389
|
updated_at?: string;
|
|
@@ -4392,6 +4397,7 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
|
|
|
4392
4397
|
organization_id?: string;
|
|
4393
4398
|
primary_company_id?: string | null;
|
|
4394
4399
|
primary_contact_id?: string | null;
|
|
4400
|
+
source?: string;
|
|
4395
4401
|
source_deal_id?: string | null;
|
|
4396
4402
|
status?: string;
|
|
4397
4403
|
updated_at?: string;
|
package/dist/test-utils/index.js
CHANGED
|
@@ -2,10 +2,10 @@ import { server, handlers } from '../chunk-7XKCG5CT.js';
|
|
|
2
2
|
export { handlers, server } from '../chunk-7XKCG5CT.js';
|
|
3
3
|
import { mockWorkOSUser, mockUseAuth, mockUnauthenticatedUser, mockAuthenticatedUser, mockAuthLoading, createMockUseAuth } from '../chunk-DRQPEMJI.js';
|
|
4
4
|
export { createMockUseAuth, mockAuthLoading, mockAuthenticatedUser, mockUnauthenticatedUser, mockUseAuth, mockWorkOSUser } from '../chunk-DRQPEMJI.js';
|
|
5
|
-
import '../chunk-
|
|
6
|
-
import { ApiClientProvider } from '../chunk-
|
|
5
|
+
import '../chunk-UECAFQKT.js';
|
|
6
|
+
import { ApiClientProvider } from '../chunk-NVVAQNKE.js';
|
|
7
7
|
import '../chunk-DD3CCMCZ.js';
|
|
8
|
-
import '../chunk-
|
|
8
|
+
import '../chunk-XDEUR36B.js';
|
|
9
9
|
import '../chunk-KRWALB24.js';
|
|
10
10
|
import { ElevasisServiceProvider } from '../chunk-2FTX4WO2.js';
|
|
11
11
|
import '../chunk-MQZE7SUI.js';
|
package/dist/types/index.d.ts
CHANGED
|
@@ -2005,6 +2005,7 @@ type Database = {
|
|
|
2005
2005
|
organization_id: string;
|
|
2006
2006
|
primary_company_id: string | null;
|
|
2007
2007
|
primary_contact_id: string | null;
|
|
2008
|
+
source: string;
|
|
2008
2009
|
source_deal_id: string | null;
|
|
2009
2010
|
status: string;
|
|
2010
2011
|
updated_at: string;
|
|
@@ -2018,6 +2019,7 @@ type Database = {
|
|
|
2018
2019
|
organization_id: string;
|
|
2019
2020
|
primary_company_id?: string | null;
|
|
2020
2021
|
primary_contact_id?: string | null;
|
|
2022
|
+
source?: string;
|
|
2021
2023
|
source_deal_id?: string | null;
|
|
2022
2024
|
status?: string;
|
|
2023
2025
|
updated_at?: string;
|
|
@@ -2031,6 +2033,7 @@ type Database = {
|
|
|
2031
2033
|
organization_id?: string;
|
|
2032
2034
|
primary_company_id?: string | null;
|
|
2033
2035
|
primary_contact_id?: string | null;
|
|
2036
|
+
source?: string;
|
|
2034
2037
|
source_deal_id?: string | null;
|
|
2035
2038
|
status?: string;
|
|
2036
2039
|
updated_at?: string;
|
|
@@ -4393,7 +4396,11 @@ declare const SystemApiInterfaceSchema: z.ZodObject<{
|
|
|
4393
4396
|
archived: "archived";
|
|
4394
4397
|
disabled: "disabled";
|
|
4395
4398
|
}>>;
|
|
4396
|
-
readinessProfile: z.ZodOptional<z.
|
|
4399
|
+
readinessProfile: z.ZodOptional<z.ZodEnum<{
|
|
4400
|
+
"sales.lead-gen.api": "sales.lead-gen.api";
|
|
4401
|
+
"sales.crm.api": "sales.crm.api";
|
|
4402
|
+
"sales.lead-gen.crm-handoff": "sales.lead-gen.crm-handoff";
|
|
4403
|
+
}>>;
|
|
4397
4404
|
resourceIds: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString>>>;
|
|
4398
4405
|
}, z.core.$strict>;
|
|
4399
4406
|
type JsonPrimitive = string | number | boolean | null;
|
package/dist/utils/index.d.ts
CHANGED
|
@@ -188,7 +188,11 @@ declare const SystemApiInterfaceSchema: z.ZodObject<{
|
|
|
188
188
|
archived: "archived";
|
|
189
189
|
disabled: "disabled";
|
|
190
190
|
}>>;
|
|
191
|
-
readinessProfile: z.ZodOptional<z.
|
|
191
|
+
readinessProfile: z.ZodOptional<z.ZodEnum<{
|
|
192
|
+
"sales.lead-gen.api": "sales.lead-gen.api";
|
|
193
|
+
"sales.crm.api": "sales.crm.api";
|
|
194
|
+
"sales.lead-gen.crm-handoff": "sales.lead-gen.crm-handoff";
|
|
195
|
+
}>>;
|
|
192
196
|
resourceIds: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString>>>;
|
|
193
197
|
}, z.core.$strict>;
|
|
194
198
|
type JsonPrimitive = string | number | boolean | null;
|
package/dist/utils/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { APIClientError, API_URL, DEBOUNCE_FILTER, DEBOUNCE_SLIDER, GC_TIME_LONG, GC_TIME_MEDIUM, GC_TIME_SHORT, LIMIT_ACTIVITY_FEED, OAUTH_FLOW_TIMEOUT, PAGE_SIZE_DEFAULT, REFETCH_INTERVAL_DASHBOARD, REFETCH_INTERVAL_REALTIME, REFETCH_INTERVAL_RUNNING, REFETCH_INTERVAL_RUNNING_FAST, SSE_CLOSE_GRACE_PERIOD, SSE_TOKEN_REFRESH_DELAY, STALE_TIME_ADMIN, STALE_TIME_DEFAULT, STALE_TIME_MONITORING, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY, debounce, formatChartAxisDate, formatDate, formatDateTime, formatErrorMessage, formatRelativeTime, formatTimeAgo, getErrorInfo, getErrorTitle, getResourceColor, getResourceIcon, getTimeRangeDates, getTimeRangeLabel, isAPIClientError, restoreConsole, setupBrowserMocks, suppressKnownWarnings, validateEmail } from '../chunk-
|
|
1
|
+
export { APIClientError, API_URL, DEBOUNCE_FILTER, DEBOUNCE_SLIDER, GC_TIME_LONG, GC_TIME_MEDIUM, GC_TIME_SHORT, LIMIT_ACTIVITY_FEED, OAUTH_FLOW_TIMEOUT, PAGE_SIZE_DEFAULT, REFETCH_INTERVAL_DASHBOARD, REFETCH_INTERVAL_REALTIME, REFETCH_INTERVAL_RUNNING, REFETCH_INTERVAL_RUNNING_FAST, SSE_CLOSE_GRACE_PERIOD, SSE_TOKEN_REFRESH_DELAY, STALE_TIME_ADMIN, STALE_TIME_DEFAULT, STALE_TIME_MONITORING, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY, debounce, formatChartAxisDate, formatDate, formatDateTime, formatErrorMessage, formatRelativeTime, formatTimeAgo, getErrorInfo, getErrorTitle, getResourceColor, getResourceIcon, getTimeRangeDates, getTimeRangeLabel, isAPIClientError, restoreConsole, setupBrowserMocks, suppressKnownWarnings, validateEmail } from '../chunk-XDEUR36B.js';
|
|
2
2
|
export { ResourceStatusColors } from '../chunk-KRWALB24.js';
|
|
3
3
|
import '../chunk-TVTSASST.js';
|
|
4
4
|
import '../chunk-I2KLQ2HA.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elevasis/ui",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.43.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",
|
|
@@ -269,11 +269,11 @@
|
|
|
269
269
|
"typescript": "5.9.2",
|
|
270
270
|
"vite": "^7.0.0",
|
|
271
271
|
"vitest": "^3.2.4",
|
|
272
|
-
"@elevasis/sdk": "1.
|
|
273
|
-
"@repo/
|
|
274
|
-
"@repo/
|
|
272
|
+
"@elevasis/sdk": "1.31.0",
|
|
273
|
+
"@repo/typescript-config": "0.0.0",
|
|
274
|
+
"@repo/core": "0.41.0",
|
|
275
275
|
"@repo/elevasis-core": "1.0.0",
|
|
276
|
-
"@repo/
|
|
276
|
+
"@repo/eslint-config": "0.0.0"
|
|
277
277
|
},
|
|
278
278
|
"dependencies": {
|
|
279
279
|
"@dagrejs/dagre": "^1.1.4",
|