@elevasis/ui 2.72.0 → 2.73.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 +114 -20
- package/dist/app/index.js +8 -8
- package/dist/auth/index.js +4 -4
- package/dist/charts/index.js +4 -4
- package/dist/{chunk-A3JHFZDP.js → chunk-3TS5U5BL.js} +1 -1
- package/dist/{chunk-IXBRUIYI.js → chunk-4CW2C5BD.js} +1 -1
- package/dist/{chunk-753MKWFV.js → chunk-5B2ZFO44.js} +1 -1
- package/dist/{chunk-DJWIIPKW.js → chunk-AJOVWB47.js} +3 -3
- package/dist/{chunk-RRS2QR3W.js → chunk-CJ2232PQ.js} +1 -1
- package/dist/{chunk-2454MK7P.js → chunk-ETN3TTRT.js} +7 -7
- package/dist/{chunk-Q3O3WY7Q.js → chunk-IBCEAVB2.js} +33 -13
- package/dist/{chunk-7ESZKTQG.js → chunk-IGBPWD6S.js} +3 -3
- package/dist/{chunk-UZ5JO5TK.js → chunk-JYBJMVNY.js} +1 -1
- package/dist/{chunk-LCHL5SM2.js → chunk-LEPYXLJ2.js} +1 -1
- package/dist/{chunk-LEQGGX2U.js → chunk-LZT2H2MA.js} +4 -4
- package/dist/{chunk-Z2W5VNN3.js → chunk-NHNTX6ZL.js} +1 -1
- package/dist/{chunk-AFBFSXP3.js → chunk-NI37YNRP.js} +4 -4
- package/dist/{chunk-KIDZXZM5.js → chunk-OCVSPAKM.js} +501 -25
- package/dist/{chunk-IMZTRDY2.js → chunk-PQ4B62HH.js} +2 -2
- package/dist/{chunk-SV4M2BUI.js → chunk-SWKAH2YM.js} +52 -20
- package/dist/{chunk-XZIOCB5D.js → chunk-U2H3TIHD.js} +1 -1
- package/dist/{chunk-DKVGO6RJ.js → chunk-Z4ICFQXG.js} +1 -1
- package/dist/{chunk-ZBXCEWKF.js → chunk-ZDKPHFTH.js} +3 -3
- package/dist/components/index.d.ts +305 -22
- package/dist/components/index.js +316 -26
- package/dist/components/navigation/index.js +5 -5
- package/dist/features/auth/index.d.ts +76 -0
- package/dist/features/auth/index.js +6 -6
- package/dist/features/clients/index.js +5 -5
- package/dist/features/content/index.d.ts +494 -31
- package/dist/features/content/index.js +1090 -44
- package/dist/features/crm/index.d.ts +114 -20
- package/dist/features/crm/index.js +6 -6
- package/dist/features/dashboard/index.d.ts +19 -10
- package/dist/features/dashboard/index.js +6 -6
- package/dist/features/delivery/index.d.ts +76 -0
- package/dist/features/delivery/index.js +5 -5
- package/dist/features/knowledge/index.js +4 -4
- package/dist/features/lead-gen/index.d.ts +38 -20
- package/dist/features/lead-gen/index.js +6 -6
- package/dist/features/monitoring/index.js +7 -7
- package/dist/features/monitoring/requests/index.js +5 -5
- package/dist/features/operations/index.d.ts +38 -20
- package/dist/features/operations/index.js +9 -9
- package/dist/features/settings/index.d.ts +76 -0
- package/dist/features/settings/index.js +6 -6
- package/dist/hooks/access/index.js +4 -4
- package/dist/hooks/delivery/index.d.ts +76 -0
- package/dist/hooks/delivery/index.js +2 -2
- package/dist/hooks/index.d.ts +1248 -28
- package/dist/hooks/index.js +4 -4
- package/dist/hooks/operations/command-view/utils/transformCommandViewData.d.ts +19 -10
- package/dist/hooks/published.d.ts +1248 -28
- package/dist/hooks/published.js +4 -4
- package/dist/initialization/index.d.ts +76 -0
- package/dist/knowledge/index.d.ts +38 -20
- package/dist/knowledge/index.js +8 -8
- package/dist/layout/index.js +7 -7
- package/dist/profile/index.d.ts +76 -0
- package/dist/provider/index.d.ts +114 -20
- package/dist/provider/index.js +4 -4
- package/dist/provider/published.d.ts +114 -20
- package/dist/provider/published.js +4 -4
- package/dist/supabase/index.d.ts +149 -0
- package/dist/test-utils/index.js +3 -3
- package/dist/types/index.d.ts +125 -13
- package/dist/utils/index.d.ts +19 -10
- package/dist/utils/index.js +1 -1
- package/package.json +5 -5
package/dist/api/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export { createElevasisQueryClient } from '../chunk-
|
|
2
|
-
export { ApiClientProvider, useApiClient, useApiClientContext } from '../chunk-
|
|
1
|
+
export { createElevasisQueryClient } from '../chunk-5B2ZFO44.js';
|
|
2
|
+
export { ApiClientProvider, useApiClient, useApiClientContext } from '../chunk-NHNTX6ZL.js';
|
|
3
3
|
import '../chunk-DD3CCMCZ.js';
|
|
4
|
-
import '../chunk-
|
|
4
|
+
import '../chunk-IBCEAVB2.js';
|
|
5
5
|
import '../chunk-Y6I3IC45.js';
|
|
6
6
|
import '../chunk-6SSQGWK7.js';
|
|
7
7
|
import '../chunk-TVTSASST.js';
|
package/dist/app/index.d.ts
CHANGED
|
@@ -1611,6 +1611,63 @@ type Database = {
|
|
|
1611
1611
|
}
|
|
1612
1612
|
];
|
|
1613
1613
|
};
|
|
1614
|
+
content_item_source_assets: {
|
|
1615
|
+
Row: {
|
|
1616
|
+
alt_text: string | null;
|
|
1617
|
+
content_item_id: string;
|
|
1618
|
+
created_at: string;
|
|
1619
|
+
crop: Json | null;
|
|
1620
|
+
derivative_crop: Json | null;
|
|
1621
|
+
derivative_path: string | null;
|
|
1622
|
+
derivative_rendered_at: string | null;
|
|
1623
|
+
id: string;
|
|
1624
|
+
organization_id: string;
|
|
1625
|
+
position: number;
|
|
1626
|
+
source_asset_id: string;
|
|
1627
|
+
};
|
|
1628
|
+
Insert: {
|
|
1629
|
+
alt_text?: string | null;
|
|
1630
|
+
content_item_id: string;
|
|
1631
|
+
created_at?: string;
|
|
1632
|
+
crop?: Json | null;
|
|
1633
|
+
derivative_crop?: Json | null;
|
|
1634
|
+
derivative_path?: string | null;
|
|
1635
|
+
derivative_rendered_at?: string | null;
|
|
1636
|
+
id?: string;
|
|
1637
|
+
organization_id: string;
|
|
1638
|
+
position: number;
|
|
1639
|
+
source_asset_id: string;
|
|
1640
|
+
};
|
|
1641
|
+
Update: {
|
|
1642
|
+
alt_text?: string | null;
|
|
1643
|
+
content_item_id?: string;
|
|
1644
|
+
created_at?: string;
|
|
1645
|
+
crop?: Json | null;
|
|
1646
|
+
derivative_crop?: Json | null;
|
|
1647
|
+
derivative_path?: string | null;
|
|
1648
|
+
derivative_rendered_at?: string | null;
|
|
1649
|
+
id?: string;
|
|
1650
|
+
organization_id?: string;
|
|
1651
|
+
position?: number;
|
|
1652
|
+
source_asset_id?: string;
|
|
1653
|
+
};
|
|
1654
|
+
Relationships: [
|
|
1655
|
+
{
|
|
1656
|
+
foreignKeyName: "content_item_source_assets_asset_fkey";
|
|
1657
|
+
columns: ["source_asset_id", "organization_id"];
|
|
1658
|
+
isOneToOne: false;
|
|
1659
|
+
referencedRelation: "content_source_assets";
|
|
1660
|
+
referencedColumns: ["id", "organization_id"];
|
|
1661
|
+
},
|
|
1662
|
+
{
|
|
1663
|
+
foreignKeyName: "content_item_source_assets_item_fkey";
|
|
1664
|
+
columns: ["content_item_id", "organization_id"];
|
|
1665
|
+
isOneToOne: false;
|
|
1666
|
+
referencedRelation: "content_items";
|
|
1667
|
+
referencedColumns: ["id", "organization_id"];
|
|
1668
|
+
}
|
|
1669
|
+
];
|
|
1670
|
+
};
|
|
1614
1671
|
content_items: {
|
|
1615
1672
|
Row: {
|
|
1616
1673
|
body: string | null;
|
|
@@ -3366,6 +3423,25 @@ type Database = {
|
|
|
3366
3423
|
};
|
|
3367
3424
|
Returns: Json;
|
|
3368
3425
|
};
|
|
3426
|
+
activate_deployment_atomic: {
|
|
3427
|
+
Args: {
|
|
3428
|
+
p_deployment_id: string;
|
|
3429
|
+
p_organization_id: string;
|
|
3430
|
+
};
|
|
3431
|
+
Returns: {
|
|
3432
|
+
created_at: string;
|
|
3433
|
+
deployment_version: string | null;
|
|
3434
|
+
error_message: string | null;
|
|
3435
|
+
id: string;
|
|
3436
|
+
organization_id: string;
|
|
3437
|
+
pid: number | null;
|
|
3438
|
+
port: number | null;
|
|
3439
|
+
sdk_version: string;
|
|
3440
|
+
status: string;
|
|
3441
|
+
tarball_path: string | null;
|
|
3442
|
+
updated_at: string;
|
|
3443
|
+
};
|
|
3444
|
+
};
|
|
3369
3445
|
append_deal_activity: {
|
|
3370
3446
|
Args: {
|
|
3371
3447
|
p_activity: Json;
|
|
@@ -3746,7 +3822,9 @@ declare const OntologyScopeSchema: z$1.ZodDefault<z$1.ZodObject<{
|
|
|
3746
3822
|
aliases: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
3747
3823
|
properties: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
|
|
3748
3824
|
storage: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
|
|
3749
|
-
|
|
3825
|
+
rowSchema: z$1.ZodOptional<z$1.ZodString>;
|
|
3826
|
+
stateCatalogId: z$1.ZodOptional<z$1.ZodString>;
|
|
3827
|
+
}, z$1.core.$strict>>>>;
|
|
3750
3828
|
linkTypes: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
|
|
3751
3829
|
id: z$1.ZodString;
|
|
3752
3830
|
label: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -3757,7 +3835,7 @@ declare const OntologyScopeSchema: z$1.ZodDefault<z$1.ZodObject<{
|
|
|
3757
3835
|
to: z$1.ZodString;
|
|
3758
3836
|
cardinality: z$1.ZodOptional<z$1.ZodString>;
|
|
3759
3837
|
via: z$1.ZodOptional<z$1.ZodString>;
|
|
3760
|
-
}, z$1.core.$
|
|
3838
|
+
}, z$1.core.$strict>>>>;
|
|
3761
3839
|
actionTypes: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
|
|
3762
3840
|
id: z$1.ZodString;
|
|
3763
3841
|
label: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -3767,7 +3845,11 @@ declare const OntologyScopeSchema: z$1.ZodDefault<z$1.ZodObject<{
|
|
|
3767
3845
|
actsOn: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>>;
|
|
3768
3846
|
input: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
|
|
3769
3847
|
effects: z$1.ZodOptional<z$1.ZodArray<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>>;
|
|
3770
|
-
|
|
3848
|
+
resourceId: z$1.ZodOptional<z$1.ZodString>;
|
|
3849
|
+
invocations: z$1.ZodOptional<z$1.ZodArray<z$1.ZodUnknown>>;
|
|
3850
|
+
lifecycle: z$1.ZodOptional<z$1.ZodString>;
|
|
3851
|
+
legacyActionId: z$1.ZodOptional<z$1.ZodString>;
|
|
3852
|
+
}, z$1.core.$strict>>>>;
|
|
3771
3853
|
catalogTypes: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
|
|
3772
3854
|
id: z$1.ZodString;
|
|
3773
3855
|
label: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -3777,7 +3859,10 @@ declare const OntologyScopeSchema: z$1.ZodDefault<z$1.ZodObject<{
|
|
|
3777
3859
|
kind: z$1.ZodOptional<z$1.ZodString>;
|
|
3778
3860
|
appliesTo: z$1.ZodOptional<z$1.ZodString>;
|
|
3779
3861
|
entries: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
|
|
3780
|
-
|
|
3862
|
+
legacyCatalogKey: z$1.ZodOptional<z$1.ZodString>;
|
|
3863
|
+
legacyPipelineKey: z$1.ZodOptional<z$1.ZodString>;
|
|
3864
|
+
legacyEntityKey: z$1.ZodOptional<z$1.ZodString>;
|
|
3865
|
+
}, z$1.core.$strict>>>>;
|
|
3781
3866
|
eventTypes: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
|
|
3782
3867
|
id: z$1.ZodString;
|
|
3783
3868
|
label: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -3785,7 +3870,7 @@ declare const OntologyScopeSchema: z$1.ZodDefault<z$1.ZodObject<{
|
|
|
3785
3870
|
ownerSystemId: z$1.ZodOptional<z$1.ZodString>;
|
|
3786
3871
|
aliases: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
3787
3872
|
payload: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
|
|
3788
|
-
}, z$1.core.$
|
|
3873
|
+
}, z$1.core.$strict>>>>;
|
|
3789
3874
|
interfaceTypes: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
|
|
3790
3875
|
id: z$1.ZodString;
|
|
3791
3876
|
label: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -3793,7 +3878,7 @@ declare const OntologyScopeSchema: z$1.ZodDefault<z$1.ZodObject<{
|
|
|
3793
3878
|
ownerSystemId: z$1.ZodOptional<z$1.ZodString>;
|
|
3794
3879
|
aliases: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
3795
3880
|
properties: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
|
|
3796
|
-
}, z$1.core.$
|
|
3881
|
+
}, z$1.core.$strict>>>>;
|
|
3797
3882
|
valueTypes: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
|
|
3798
3883
|
id: z$1.ZodString;
|
|
3799
3884
|
label: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -3801,7 +3886,7 @@ declare const OntologyScopeSchema: z$1.ZodDefault<z$1.ZodObject<{
|
|
|
3801
3886
|
ownerSystemId: z$1.ZodOptional<z$1.ZodString>;
|
|
3802
3887
|
aliases: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
3803
3888
|
primitive: z$1.ZodOptional<z$1.ZodString>;
|
|
3804
|
-
}, z$1.core.$
|
|
3889
|
+
}, z$1.core.$strict>>>>;
|
|
3805
3890
|
sharedProperties: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
|
|
3806
3891
|
id: z$1.ZodString;
|
|
3807
3892
|
label: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -3811,7 +3896,7 @@ declare const OntologyScopeSchema: z$1.ZodDefault<z$1.ZodObject<{
|
|
|
3811
3896
|
valueType: z$1.ZodOptional<z$1.ZodString>;
|
|
3812
3897
|
searchable: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
3813
3898
|
pii: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
3814
|
-
}, z$1.core.$
|
|
3899
|
+
}, z$1.core.$strict>>>>;
|
|
3815
3900
|
groups: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
|
|
3816
3901
|
id: z$1.ZodString;
|
|
3817
3902
|
label: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -3819,7 +3904,7 @@ declare const OntologyScopeSchema: z$1.ZodDefault<z$1.ZodObject<{
|
|
|
3819
3904
|
ownerSystemId: z$1.ZodOptional<z$1.ZodString>;
|
|
3820
3905
|
aliases: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
3821
3906
|
members: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>>;
|
|
3822
|
-
}, z$1.core.$
|
|
3907
|
+
}, z$1.core.$strict>>>>;
|
|
3823
3908
|
endpoints: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
|
|
3824
3909
|
id: z$1.ZodString;
|
|
3825
3910
|
label: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -3827,7 +3912,7 @@ declare const OntologyScopeSchema: z$1.ZodDefault<z$1.ZodObject<{
|
|
|
3827
3912
|
ownerSystemId: z$1.ZodOptional<z$1.ZodString>;
|
|
3828
3913
|
aliases: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
3829
3914
|
route: z$1.ZodOptional<z$1.ZodString>;
|
|
3830
|
-
}, z$1.core.$
|
|
3915
|
+
}, z$1.core.$strict>>>>;
|
|
3831
3916
|
}, z$1.core.$strict>>;
|
|
3832
3917
|
type OntologyScope = z$1.infer<typeof OntologyScopeSchema>;
|
|
3833
3918
|
|
|
@@ -4369,7 +4454,9 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
4369
4454
|
aliases: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
4370
4455
|
properties: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
|
|
4371
4456
|
storage: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
|
|
4372
|
-
|
|
4457
|
+
rowSchema: z$1.ZodOptional<z$1.ZodString>;
|
|
4458
|
+
stateCatalogId: z$1.ZodOptional<z$1.ZodString>;
|
|
4459
|
+
}, z$1.core.$strict>>>>;
|
|
4373
4460
|
linkTypes: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
|
|
4374
4461
|
id: z$1.ZodString;
|
|
4375
4462
|
label: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -4380,7 +4467,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
4380
4467
|
to: z$1.ZodString;
|
|
4381
4468
|
cardinality: z$1.ZodOptional<z$1.ZodString>;
|
|
4382
4469
|
via: z$1.ZodOptional<z$1.ZodString>;
|
|
4383
|
-
}, z$1.core.$
|
|
4470
|
+
}, z$1.core.$strict>>>>;
|
|
4384
4471
|
actionTypes: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
|
|
4385
4472
|
id: z$1.ZodString;
|
|
4386
4473
|
label: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -4390,7 +4477,11 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
4390
4477
|
actsOn: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>>;
|
|
4391
4478
|
input: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
|
|
4392
4479
|
effects: z$1.ZodOptional<z$1.ZodArray<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>>;
|
|
4393
|
-
|
|
4480
|
+
resourceId: z$1.ZodOptional<z$1.ZodString>;
|
|
4481
|
+
invocations: z$1.ZodOptional<z$1.ZodArray<z$1.ZodUnknown>>;
|
|
4482
|
+
lifecycle: z$1.ZodOptional<z$1.ZodString>;
|
|
4483
|
+
legacyActionId: z$1.ZodOptional<z$1.ZodString>;
|
|
4484
|
+
}, z$1.core.$strict>>>>;
|
|
4394
4485
|
catalogTypes: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
|
|
4395
4486
|
id: z$1.ZodString;
|
|
4396
4487
|
label: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -4400,7 +4491,10 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
4400
4491
|
kind: z$1.ZodOptional<z$1.ZodString>;
|
|
4401
4492
|
appliesTo: z$1.ZodOptional<z$1.ZodString>;
|
|
4402
4493
|
entries: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
|
|
4403
|
-
|
|
4494
|
+
legacyCatalogKey: z$1.ZodOptional<z$1.ZodString>;
|
|
4495
|
+
legacyPipelineKey: z$1.ZodOptional<z$1.ZodString>;
|
|
4496
|
+
legacyEntityKey: z$1.ZodOptional<z$1.ZodString>;
|
|
4497
|
+
}, z$1.core.$strict>>>>;
|
|
4404
4498
|
eventTypes: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
|
|
4405
4499
|
id: z$1.ZodString;
|
|
4406
4500
|
label: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -4408,7 +4502,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
4408
4502
|
ownerSystemId: z$1.ZodOptional<z$1.ZodString>;
|
|
4409
4503
|
aliases: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
4410
4504
|
payload: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
|
|
4411
|
-
}, z$1.core.$
|
|
4505
|
+
}, z$1.core.$strict>>>>;
|
|
4412
4506
|
interfaceTypes: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
|
|
4413
4507
|
id: z$1.ZodString;
|
|
4414
4508
|
label: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -4416,7 +4510,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
4416
4510
|
ownerSystemId: z$1.ZodOptional<z$1.ZodString>;
|
|
4417
4511
|
aliases: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
4418
4512
|
properties: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
|
|
4419
|
-
}, z$1.core.$
|
|
4513
|
+
}, z$1.core.$strict>>>>;
|
|
4420
4514
|
valueTypes: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
|
|
4421
4515
|
id: z$1.ZodString;
|
|
4422
4516
|
label: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -4424,7 +4518,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
4424
4518
|
ownerSystemId: z$1.ZodOptional<z$1.ZodString>;
|
|
4425
4519
|
aliases: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
4426
4520
|
primitive: z$1.ZodOptional<z$1.ZodString>;
|
|
4427
|
-
}, z$1.core.$
|
|
4521
|
+
}, z$1.core.$strict>>>>;
|
|
4428
4522
|
sharedProperties: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
|
|
4429
4523
|
id: z$1.ZodString;
|
|
4430
4524
|
label: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -4434,7 +4528,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
4434
4528
|
valueType: z$1.ZodOptional<z$1.ZodString>;
|
|
4435
4529
|
searchable: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
4436
4530
|
pii: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
4437
|
-
}, z$1.core.$
|
|
4531
|
+
}, z$1.core.$strict>>>>;
|
|
4438
4532
|
groups: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
|
|
4439
4533
|
id: z$1.ZodString;
|
|
4440
4534
|
label: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -4442,7 +4536,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
4442
4536
|
ownerSystemId: z$1.ZodOptional<z$1.ZodString>;
|
|
4443
4537
|
aliases: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
4444
4538
|
members: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>>;
|
|
4445
|
-
}, z$1.core.$
|
|
4539
|
+
}, z$1.core.$strict>>>>;
|
|
4446
4540
|
endpoints: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
|
|
4447
4541
|
id: z$1.ZodString;
|
|
4448
4542
|
label: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -4450,7 +4544,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
4450
4544
|
ownerSystemId: z$1.ZodOptional<z$1.ZodString>;
|
|
4451
4545
|
aliases: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
4452
4546
|
route: z$1.ZodOptional<z$1.ZodString>;
|
|
4453
|
-
}, z$1.core.$
|
|
4547
|
+
}, z$1.core.$strict>>>>;
|
|
4454
4548
|
}, z$1.core.$strict>>>;
|
|
4455
4549
|
resources: z$1.ZodDefault<z$1.ZodDefault<z$1.ZodRecord<z$1.ZodString, z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
4456
4550
|
id: z$1.ZodString;
|
package/dist/app/index.js
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { AppErrorBoundary } from '../chunk-
|
|
2
|
-
import { SidebarProvider, AppShellContainer, Sidebar, AppShellRightSideContainer, AppShellRightSideOuterContainer } from '../chunk-
|
|
3
|
-
import '../chunk-
|
|
4
|
-
import '../chunk-
|
|
1
|
+
import { AppErrorBoundary } from '../chunk-LEPYXLJ2.js';
|
|
2
|
+
import { SidebarProvider, AppShellContainer, Sidebar, AppShellRightSideContainer, AppShellRightSideOuterContainer } from '../chunk-CJ2232PQ.js';
|
|
3
|
+
import '../chunk-Z4ICFQXG.js';
|
|
4
|
+
import '../chunk-3TS5U5BL.js';
|
|
5
5
|
import '../chunk-BZZCNLT6.js';
|
|
6
|
-
import { useSessionCheck, ElevasisSystemsProvider, useElevasisSystems, SystemShell, ElevasisUIProvider } from '../chunk-
|
|
6
|
+
import { useSessionCheck, ElevasisSystemsProvider, useElevasisSystems, SystemShell, ElevasisUIProvider } from '../chunk-OCVSPAKM.js';
|
|
7
7
|
import '../chunk-R6NMRXNO.js';
|
|
8
8
|
import '../chunk-RBGVNPA6.js';
|
|
9
9
|
import '../chunk-MKH2KOAO.js';
|
|
10
|
-
import '../chunk-
|
|
10
|
+
import '../chunk-NHNTX6ZL.js';
|
|
11
11
|
import '../chunk-L7BZZ4SI.js';
|
|
12
|
-
import '../chunk-
|
|
12
|
+
import '../chunk-U2H3TIHD.js';
|
|
13
13
|
import '../chunk-MISHPEJX.js';
|
|
14
14
|
import '../chunk-62GVNH5U.js';
|
|
15
15
|
import { useInitialization } from '../chunk-P45GQ3ZW.js';
|
|
@@ -21,7 +21,7 @@ import '../chunk-UD657ICS.js';
|
|
|
21
21
|
import '../chunk-DD3CCMCZ.js';
|
|
22
22
|
import '../chunk-RNP5R5I3.js';
|
|
23
23
|
import '../chunk-RT4KRGZT.js';
|
|
24
|
-
import '../chunk-
|
|
24
|
+
import '../chunk-IBCEAVB2.js';
|
|
25
25
|
import '../chunk-Y6I3IC45.js';
|
|
26
26
|
import '../chunk-6SSQGWK7.js';
|
|
27
27
|
import '../chunk-BI5VDO2K.js';
|
package/dist/auth/index.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
export { AccessGuard, AccessKeys, ProtectedRoute, useSessionCheck as useRefocusSessionCheck, useSessionCheck, useStableAccessToken } from '../chunk-
|
|
1
|
+
export { AccessGuard, AccessKeys, ProtectedRoute, useSessionCheck as useRefocusSessionCheck, useSessionCheck, useStableAccessToken } from '../chunk-OCVSPAKM.js';
|
|
2
2
|
import '../chunk-R6NMRXNO.js';
|
|
3
3
|
import '../chunk-RBGVNPA6.js';
|
|
4
4
|
import '../chunk-MKH2KOAO.js';
|
|
5
|
-
import '../chunk-
|
|
5
|
+
import '../chunk-NHNTX6ZL.js';
|
|
6
6
|
import '../chunk-L7BZZ4SI.js';
|
|
7
|
-
import '../chunk-
|
|
7
|
+
import '../chunk-U2H3TIHD.js';
|
|
8
8
|
import '../chunk-MISHPEJX.js';
|
|
9
9
|
import '../chunk-62GVNH5U.js';
|
|
10
10
|
import '../chunk-P45GQ3ZW.js';
|
|
@@ -16,7 +16,7 @@ import '../chunk-UD657ICS.js';
|
|
|
16
16
|
import '../chunk-DD3CCMCZ.js';
|
|
17
17
|
import '../chunk-RNP5R5I3.js';
|
|
18
18
|
import '../chunk-RT4KRGZT.js';
|
|
19
|
-
import '../chunk-
|
|
19
|
+
import '../chunk-IBCEAVB2.js';
|
|
20
20
|
import '../chunk-Y6I3IC45.js';
|
|
21
21
|
import '../chunk-6SSQGWK7.js';
|
|
22
22
|
import '../chunk-BI5VDO2K.js';
|
package/dist/charts/index.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
export { ActivityTrendChart, ChartFrame, CombinedTrendChart, CostTrendChart, CyberAreaChart, CyberDonut, CyberDonutTooltip, CyberLegendItem, HeroStatsRow, getSeriesColor, useCyberColors } from '../chunk-
|
|
1
|
+
export { ActivityTrendChart, ChartFrame, CombinedTrendChart, CostTrendChart, CyberAreaChart, CyberDonut, CyberDonutTooltip, CyberLegendItem, HeroStatsRow, getSeriesColor, useCyberColors } from '../chunk-OCVSPAKM.js';
|
|
2
2
|
import '../chunk-R6NMRXNO.js';
|
|
3
3
|
import '../chunk-RBGVNPA6.js';
|
|
4
4
|
import '../chunk-MKH2KOAO.js';
|
|
5
|
-
import '../chunk-
|
|
5
|
+
import '../chunk-NHNTX6ZL.js';
|
|
6
6
|
import '../chunk-L7BZZ4SI.js';
|
|
7
|
-
import '../chunk-
|
|
7
|
+
import '../chunk-U2H3TIHD.js';
|
|
8
8
|
import '../chunk-MISHPEJX.js';
|
|
9
9
|
import '../chunk-62GVNH5U.js';
|
|
10
10
|
import '../chunk-P45GQ3ZW.js';
|
|
@@ -16,7 +16,7 @@ import '../chunk-UD657ICS.js';
|
|
|
16
16
|
import '../chunk-DD3CCMCZ.js';
|
|
17
17
|
import '../chunk-RNP5R5I3.js';
|
|
18
18
|
import '../chunk-RT4KRGZT.js';
|
|
19
|
-
import '../chunk-
|
|
19
|
+
import '../chunk-IBCEAVB2.js';
|
|
20
20
|
import '../chunk-Y6I3IC45.js';
|
|
21
21
|
import '../chunk-6SSQGWK7.js';
|
|
22
22
|
import '../chunk-BI5VDO2K.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { useAppearance } from './chunk-
|
|
1
|
+
import { useAppearance } from './chunk-OCVSPAKM.js';
|
|
2
2
|
import { topbarHeight } from './chunk-MISHPEJX.js';
|
|
3
3
|
import { Stack, Title, Button } from '@mantine/core';
|
|
4
4
|
import { IconAlertCircle } from '@tabler/icons-react';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { useCyberColors, useResourcesHealth, EmptyState, CyberLegendItem, CyberAreaChart } from './chunk-
|
|
1
|
+
import { useCyberColors, useResourcesHealth, EmptyState, CyberLegendItem, CyberAreaChart } from './chunk-OCVSPAKM.js';
|
|
2
2
|
import { CardHeader } from './chunk-62GVNH5U.js';
|
|
3
3
|
import { getTimeRangeDates, formatBucketTime } from './chunk-Y6I3IC45.js';
|
|
4
4
|
import { Paper, Center, Loader, Group } from '@mantine/core';
|
|
@@ -2,11 +2,11 @@ import { milestoneStatusColors, formatStatusLabel, taskTypeColors, taskStatusCol
|
|
|
2
2
|
import { PageContainer } from './chunk-BZZCNLT6.js';
|
|
3
3
|
import { TableSelectionToolbar, SortableHeader } from './chunk-TUMSNGTX.js';
|
|
4
4
|
import { FilterBar } from './chunk-PDHTXPSF.js';
|
|
5
|
-
import { StatusBadge, EmptyState, SubshellContentContainer, PageTitleCaption, useProjectRealtime, useTableSort, sortData, usePaginationState, useTableSelection, CenteredErrorState, CustomModal, StatCard, useProjectActivities } from './chunk-
|
|
6
|
-
import { useCreateTask, useCreateMilestone, useProjectMilestones, useUpdateTask, useProjects, useDeleteProject, useProject, useProjectNotes, useUpdateMilestone, useCreateNote } from './chunk-
|
|
5
|
+
import { StatusBadge, EmptyState, SubshellContentContainer, PageTitleCaption, useProjectRealtime, useTableSort, sortData, usePaginationState, useTableSelection, CenteredErrorState, CustomModal, StatCard, useProjectActivities } from './chunk-OCVSPAKM.js';
|
|
6
|
+
import { useCreateTask, useCreateMilestone, useProjectMilestones, useUpdateTask, useProjects, useDeleteProject, useProject, useProjectNotes, useUpdateMilestone, useCreateNote } from './chunk-U2H3TIHD.js';
|
|
7
7
|
import { SubshellSidebarSection, SubshellNavItem } from './chunk-MISHPEJX.js';
|
|
8
8
|
import { CardHeader } from './chunk-62GVNH5U.js';
|
|
9
|
-
import { PAGE_SIZE_DEFAULT, formatTimeAgo, formatDate, formatRelativeTime } from './chunk-
|
|
9
|
+
import { PAGE_SIZE_DEFAULT, formatTimeAgo, formatDate, formatRelativeTime } from './chunk-IBCEAVB2.js';
|
|
10
10
|
import { useRouterContext } from './chunk-Q7DJKLEN.js';
|
|
11
11
|
import { useState, useMemo } from 'react';
|
|
12
12
|
import { Stack, Text, Group, Checkbox, ActionIcon, TextInput, Button, Modal, Title, Textarea, Select, SimpleGrid, Card, ThemeIcon, RingProgress, Paper, Timeline, Badge, Collapse, Center, Loader, Table, Pagination, Alert, CopyButton, Tooltip, Space, Tabs, Divider, Anchor, Chip, List } from '@mantine/core';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { NavigationButton, useAppearance, useElevasisSystems } from './chunk-
|
|
1
|
+
import { NavigationButton, useAppearance, useElevasisSystems } from './chunk-OCVSPAKM.js';
|
|
2
2
|
import { sidebarItemGap, sidebarSubLinkPaddingY, sidebarSubLinkPaddingX, sidebarSubLinkIndent, sidebarHoverDelay, sidebarTransitionDuration, sidebarCollapsedWidth, sidebarWidth, topbarHeight, sidebarToggleIconSize, sidebarSectionPadding, sidebarGroupChevronSize, sidebarIconInnerSize, SubshellNavItem } from './chunk-MISHPEJX.js';
|
|
3
3
|
import { useRouterContext } from './chunk-Q7DJKLEN.js';
|
|
4
4
|
import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { SubshellLoader } from './chunk-
|
|
2
|
-
import { CollapsibleJsonSection, ExecutionStats, UnifiedWorkflowGraph, WorkflowExecutionTimeline, AgentExecutionVisualizer, AgentExecutionTimeline, AgentIterationDetailPanel } from './chunk-
|
|
1
|
+
import { SubshellLoader } from './chunk-Z4ICFQXG.js';
|
|
2
|
+
import { CollapsibleJsonSection, ExecutionStats, UnifiedWorkflowGraph, WorkflowExecutionTimeline, AgentExecutionVisualizer, AgentExecutionTimeline, AgentIterationDetailPanel } from './chunk-ZDKPHFTH.js';
|
|
3
3
|
import { FormFieldRenderer } from './chunk-3MEXPLWT.js';
|
|
4
4
|
import { ChatInterface, ChatHeader } from './chunk-SNZDFCOQ.js';
|
|
5
|
-
import { ResourceHealthPanel } from './chunk-
|
|
5
|
+
import { ResourceHealthPanel } from './chunk-4CW2C5BD.js';
|
|
6
6
|
import { Graph_module_css_default } from './chunk-HENXLGVD.js';
|
|
7
|
-
import { AppShellLoader } from './chunk-
|
|
7
|
+
import { AppShellLoader } from './chunk-3TS5U5BL.js';
|
|
8
8
|
import { PageContainer } from './chunk-BZZCNLT6.js';
|
|
9
|
-
import { DEFAULT_ORGANIZATION_GRAPH_FILTERS, resolveSemanticIconComponent, CustomModal, useAppearance, useErrorDetail, JsonViewer, useExecution, useArchivedLogs, useDeleteExecution, useRetryExecution, useCancelExecution, ConfirmationModal, PageTitleCaption, CollapsibleSection, useStatusFilter, useResourceSearch, useResourcesDomainFilters, usePaginationState, useResources, useRecentExecutionsByResource, filterByDomainFilters, TabCountBadge, ResourceCard, useResourceDefinition, isSessionCapable, useOptionalElevasisSystems, useDeleteTask, useCommandQueue, useSubmitAction, useCommandQueueTask, ContextViewer, useElevasisSystems, useCommandViewData, useCommandViewStats, useCommandViewStore, buildOrganizationGraph, useResourceExecutions, useCheckpointTasks, EmptyState, useExecutionPanelState, useSessionMessages, useSessionWebSocket, useSessions, SessionListItem, useSessionExecutions, useDeleteSession, useEndSession, useCreateSession, useSession, getSessionView, SubshellContentContainer, collectResourceFilterFacets, SemanticIcon, useSystemsViewState, aggregateSystemMetrics, useSystemHealth, ORGANIZATION_GRAPH_NODE_KIND_ORDER, formatResourceAttribution, SYSTEM_RESOURCE_KINDS, ORGANIZATION_GRAPH_NODE_KIND_LABELS, ORGANIZATION_GRAPH_EDGE_KIND_LABELS, ORGANIZATION_GRAPH_NODE_KIND_DETAIL_LABELS, ORGANIZATION_GRAPH_NODE_KIND_MEANINGS, ORGANIZATION_GRAPH_EDGE_KIND_MEANINGS } from './chunk-
|
|
10
|
-
import { showApiErrorNotification, showSuccessNotification } from './chunk-
|
|
9
|
+
import { DEFAULT_ORGANIZATION_GRAPH_FILTERS, resolveSemanticIconComponent, CustomModal, useAppearance, useErrorDetail, JsonViewer, useExecution, useArchivedLogs, useDeleteExecution, useRetryExecution, useCancelExecution, ConfirmationModal, PageTitleCaption, CollapsibleSection, useStatusFilter, useResourceSearch, useResourcesDomainFilters, usePaginationState, useResources, useRecentExecutionsByResource, filterByDomainFilters, TabCountBadge, ResourceCard, useResourceDefinition, isSessionCapable, useOptionalElevasisSystems, useDeleteTask, useCommandQueue, useSubmitAction, useCommandQueueTask, ContextViewer, useElevasisSystems, useCommandViewData, useCommandViewStats, useCommandViewStore, buildOrganizationGraph, useResourceExecutions, useCheckpointTasks, EmptyState, useExecutionPanelState, useSessionMessages, useSessionWebSocket, useSessions, SessionListItem, useSessionExecutions, useDeleteSession, useEndSession, useCreateSession, useSession, getSessionView, SubshellContentContainer, collectResourceFilterFacets, SemanticIcon, useSystemsViewState, aggregateSystemMetrics, useSystemHealth, ORGANIZATION_GRAPH_NODE_KIND_ORDER, formatResourceAttribution, SYSTEM_RESOURCE_KINDS, ORGANIZATION_GRAPH_NODE_KIND_LABELS, ORGANIZATION_GRAPH_EDGE_KIND_LABELS, ORGANIZATION_GRAPH_NODE_KIND_DETAIL_LABELS, ORGANIZATION_GRAPH_NODE_KIND_MEANINGS, ORGANIZATION_GRAPH_EDGE_KIND_MEANINGS } from './chunk-OCVSPAKM.js';
|
|
10
|
+
import { showApiErrorNotification, showSuccessNotification } from './chunk-U2H3TIHD.js';
|
|
11
11
|
import { topbarHeight } from './chunk-MISHPEJX.js';
|
|
12
12
|
import { CardHeader } from './chunk-62GVNH5U.js';
|
|
13
13
|
import { useInitialization } from './chunk-P45GQ3ZW.js';
|
|
@@ -15,7 +15,7 @@ import { mergeSessionMessages } from './chunk-M7WWRZ5Z.js';
|
|
|
15
15
|
import { StyledMarkdown } from './chunk-3KMDHCAR.js';
|
|
16
16
|
import { getResourceStatusColor, useMergedExecution, useTimelineData, useAgentIterationData } from './chunk-BLXJEIQS.js';
|
|
17
17
|
import { useOrganization } from './chunk-DD3CCMCZ.js';
|
|
18
|
-
import { getErrorInfo, formatErrorMessage, getResourceIcon, formatRelativeTime, PAGE_SIZE_DEFAULT, listAllSystems, getSystem, compileOrganizationOntology, getSystemAncestors } from './chunk-
|
|
18
|
+
import { getErrorInfo, formatErrorMessage, getResourceIcon, formatRelativeTime, PAGE_SIZE_DEFAULT, listAllSystems, getSystem, compileOrganizationOntology, getSystemAncestors } from './chunk-IBCEAVB2.js';
|
|
19
19
|
import { ResourceStatusColors, toWorkflowLogMessages } from './chunk-6SSQGWK7.js';
|
|
20
20
|
import { useElevasisServices } from './chunk-BI5VDO2K.js';
|
|
21
21
|
import { useRouterContext } from './chunk-Q7DJKLEN.js';
|
|
@@ -512,44 +512,64 @@ var OntologyRecordBaseSchema = z.object({
|
|
|
512
512
|
}).passthrough();
|
|
513
513
|
var OntologyObjectTypeSchema = OntologyRecordBaseSchema.extend({
|
|
514
514
|
properties: z.record(z.string().trim().min(1).max(200), z.unknown()).optional(),
|
|
515
|
-
storage: z.record(z.string(), z.unknown()).optional()
|
|
516
|
-
|
|
515
|
+
storage: z.record(z.string(), z.unknown()).optional(),
|
|
516
|
+
// Carried by the legacy entity projection (`addLegacyEntityProjections`); not
|
|
517
|
+
// authored directly, but a real key an authored record must not collide with.
|
|
518
|
+
rowSchema: z.string().trim().min(1).optional(),
|
|
519
|
+
stateCatalogId: z.string().trim().min(1).optional()
|
|
520
|
+
}).strict();
|
|
517
521
|
var OntologyLinkTypeSchema = OntologyRecordBaseSchema.extend({
|
|
518
522
|
from: OntologyIdSchema,
|
|
519
523
|
to: OntologyIdSchema,
|
|
520
524
|
cardinality: z.string().trim().min(1).max(80).optional(),
|
|
521
525
|
via: z.string().trim().min(1).max(255).optional()
|
|
522
|
-
});
|
|
526
|
+
}).strict();
|
|
523
527
|
var OntologyActionTypeSchema = OntologyRecordBaseSchema.extend({
|
|
524
528
|
actsOn: OntologyReferenceListSchema,
|
|
525
529
|
input: z.record(z.string().trim().min(1).max(200), z.unknown()).optional(),
|
|
526
|
-
effects: z.array(z.record(z.string(), z.unknown())).optional()
|
|
527
|
-
|
|
530
|
+
effects: z.array(z.record(z.string(), z.unknown())).optional(),
|
|
531
|
+
resourceId: z.string().trim().min(1).optional(),
|
|
532
|
+
invocations: z.array(z.unknown()).optional(),
|
|
533
|
+
lifecycle: z.string().trim().min(1).optional(),
|
|
534
|
+
// Carried by the legacy action projection (`addLegacyActionProjections`); not
|
|
535
|
+
// authored directly, but a real key an authored record must not collide with.
|
|
536
|
+
legacyActionId: z.string().trim().min(1).optional()
|
|
537
|
+
}).strict();
|
|
528
538
|
var OntologyCatalogTypeSchema = OntologyRecordBaseSchema.extend({
|
|
529
539
|
kind: z.string().trim().min(1).max(120).optional(),
|
|
530
540
|
appliesTo: OntologyIdSchema.optional(),
|
|
531
|
-
entries: z.record(z.string().trim().min(1).max(200), z.unknown()).optional()
|
|
532
|
-
|
|
541
|
+
entries: z.record(z.string().trim().min(1).max(200), z.unknown()).optional(),
|
|
542
|
+
// Carried by lead-gen's legacy stage-catalog projection
|
|
543
|
+
// (`createLeadGenStageCatalog`); not authored directly, but a real key an
|
|
544
|
+
// authored record must not collide with.
|
|
545
|
+
legacyCatalogKey: z.string().trim().min(1).optional(),
|
|
546
|
+
// Carried in live tenant configs (Elevasis, `nirvana-marketing`, and the
|
|
547
|
+
// `_template` scaffold all author these on `sales.crm:catalog/crm.pipeline`)
|
|
548
|
+
// as a cross-reference to the pre-ontology CRM pipeline key/entity id. No
|
|
549
|
+
// code currently reads them back — do not silently normalize them away.
|
|
550
|
+
legacyPipelineKey: z.string().trim().min(1).optional(),
|
|
551
|
+
legacyEntityKey: z.string().trim().min(1).optional()
|
|
552
|
+
}).strict();
|
|
533
553
|
var OntologyEventTypeSchema = OntologyRecordBaseSchema.extend({
|
|
534
554
|
payload: z.record(z.string().trim().min(1).max(200), z.unknown()).optional()
|
|
535
|
-
});
|
|
555
|
+
}).strict();
|
|
536
556
|
var OntologyInterfaceTypeSchema = OntologyRecordBaseSchema.extend({
|
|
537
557
|
properties: z.record(z.string().trim().min(1).max(200), z.unknown()).optional()
|
|
538
|
-
});
|
|
558
|
+
}).strict();
|
|
539
559
|
var OntologyValueTypeSchema = OntologyRecordBaseSchema.extend({
|
|
540
560
|
primitive: z.string().trim().min(1).max(120).optional()
|
|
541
|
-
});
|
|
561
|
+
}).strict();
|
|
542
562
|
var OntologySharedPropertySchema = OntologyRecordBaseSchema.extend({
|
|
543
563
|
valueType: OntologyIdSchema.optional(),
|
|
544
564
|
searchable: z.boolean().optional(),
|
|
545
565
|
pii: z.boolean().optional()
|
|
546
|
-
});
|
|
566
|
+
}).strict();
|
|
547
567
|
var OntologyGroupSchema = OntologyRecordBaseSchema.extend({
|
|
548
568
|
members: OntologyReferenceListSchema
|
|
549
|
-
});
|
|
569
|
+
}).strict();
|
|
550
570
|
var OntologyEndpointTypeSchema = OntologyRecordBaseSchema.extend({
|
|
551
571
|
route: z.string().trim().min(1).max(500).optional()
|
|
552
|
-
});
|
|
572
|
+
}).strict();
|
|
553
573
|
var OntologyScopeSchema = z.object({
|
|
554
574
|
objectTypes: z.record(OntologyIdSchema, OntologyObjectTypeSchema).default({}).optional(),
|
|
555
575
|
linkTypes: z.record(OntologyIdSchema, OntologyLinkTypeSchema).default({}).optional(),
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { AppShellLoader } from './chunk-
|
|
1
|
+
import { AppShellLoader } from './chunk-3TS5U5BL.js';
|
|
2
2
|
import { FilterBar } from './chunk-PDHTXPSF.js';
|
|
3
|
-
import { CenteredErrorState, StatsCardSkeleton, CyberAreaChart, TrendIndicator, DetailCardSkeleton, useResolveError, useResolveAllErrors, usePaginationState, useErrorDetails, EmptyState, useMarkAsRead, useExecutionLogsFilters, useExecutionLogs, PageTitleCaption, useExecutionHealth, useErrorAnalysis, useTimeRangeDates, useErrorDetail, useResolveErrorsByExecution, useResources, CustomModal, JsonViewer, useCostTrends, useCostSummary, useCostByModel, useCostBreakdown, CostTrendChart, useActivityFilters, useActivityTrend, useActivities, ActivityTrendChart, useNotifications, useMarkAllAsRead } from './chunk-
|
|
3
|
+
import { CenteredErrorState, StatsCardSkeleton, CyberAreaChart, TrendIndicator, DetailCardSkeleton, useResolveError, useResolveAllErrors, usePaginationState, useErrorDetails, EmptyState, useMarkAsRead, useExecutionLogsFilters, useExecutionLogs, PageTitleCaption, useExecutionHealth, useErrorAnalysis, useTimeRangeDates, useErrorDetail, useResolveErrorsByExecution, useResources, CustomModal, JsonViewer, useCostTrends, useCostSummary, useCostByModel, useCostBreakdown, CostTrendChart, useActivityFilters, useActivityTrend, useActivities, ActivityTrendChart, useNotifications, useMarkAllAsRead } from './chunk-OCVSPAKM.js';
|
|
4
4
|
import { CardHeader } from './chunk-62GVNH5U.js';
|
|
5
5
|
import { formatDuration } from './chunk-BLXJEIQS.js';
|
|
6
|
-
import { PAGE_SIZE_DEFAULT } from './chunk-
|
|
6
|
+
import { PAGE_SIZE_DEFAULT } from './chunk-IBCEAVB2.js';
|
|
7
7
|
import { formatBucketTime, getTimeRangeDates } from './chunk-Y6I3IC45.js';
|
|
8
8
|
import { useRouterContext } from './chunk-Q7DJKLEN.js';
|
|
9
9
|
import { useState, useMemo, useCallback } from 'react';
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { LEAD_GEN_API_INTERFACE } from './chunk-
|
|
1
|
+
import { LEAD_GEN_API_INTERFACE } from './chunk-PQ4B62HH.js';
|
|
2
2
|
import { sanitizeInput } from './chunk-3MEXPLWT.js';
|
|
3
3
|
import { PageContainer } from './chunk-BZZCNLT6.js';
|
|
4
4
|
import { TableSelectionToolbar, SortableHeader } from './chunk-TUMSNGTX.js';
|
|
5
5
|
import { FilterBar } from './chunk-PDHTXPSF.js';
|
|
6
|
-
import { LeadGenSidebarMiddle, SubshellContentContainer, PageTitleCaption, acquisitionListKeys, useOptionalElevasisSystems, getAllBuildTemplates, getLeadGenStageCatalog, useListsTelemetry, useLists, useAccess, AccessKeys, CenteredErrorState, StatCard, useTableSort, sortData, usePaginationState, useTableSelection, EmptyState, CustomModal, useListActions, useList, useListProgress, useListExecutions, useDeleteList, useExecuteAsync, useCompanyFacets, useCompanies, useDeleteCompanies, useContacts, useDeleteContacts, useCreateList, JsonViewer, useCredentials, useVerifyCredential, useWorkflowExecution, useInFlightExecutions, useExecutionSSE, useListRecords, useListMembers, useListMember, useTransitionListMember, useDeriveActions, useArtifacts } from './chunk-
|
|
7
|
-
import { showApiErrorNotification, showSuccessNotification } from './chunk-
|
|
6
|
+
import { LeadGenSidebarMiddle, SubshellContentContainer, PageTitleCaption, acquisitionListKeys, useOptionalElevasisSystems, getAllBuildTemplates, getLeadGenStageCatalog, useListsTelemetry, useLists, useAccess, AccessKeys, CenteredErrorState, StatCard, useTableSort, sortData, usePaginationState, useTableSelection, EmptyState, CustomModal, useListActions, useList, useListProgress, useListExecutions, useDeleteList, useExecuteAsync, useCompanyFacets, useCompanies, useDeleteCompanies, useContacts, useDeleteContacts, useCreateList, JsonViewer, useCredentials, useVerifyCredential, useWorkflowExecution, useInFlightExecutions, useExecutionSSE, useListRecords, useListMembers, useListMember, useTransitionListMember, useDeriveActions, useArtifacts } from './chunk-OCVSPAKM.js';
|
|
7
|
+
import { showApiErrorNotification, showSuccessNotification } from './chunk-U2H3TIHD.js';
|
|
8
8
|
import { SubshellSidebarSection } from './chunk-MISHPEJX.js';
|
|
9
9
|
import { CardHeader } from './chunk-62GVNH5U.js';
|
|
10
|
-
import { computeInterfaceReadiness, getSystem } from './chunk-
|
|
10
|
+
import { computeInterfaceReadiness, getSystem } from './chunk-IBCEAVB2.js';
|
|
11
11
|
import { useElevasisServices } from './chunk-BI5VDO2K.js';
|
|
12
12
|
import { Stack, Group, Title, Text, Alert, Button, Collapse, Paper, Anchor, Center, Loader, SimpleGrid, Table, Badge, TextInput, Select, Checkbox, Pagination, ActionIcon, Tooltip, Tabs, ThemeIcon, Box, Textarea, Card, SegmentedControl, UnstyledButton, Pill, Drawer, JsonInput, Switch, NumberInput, MultiSelect, TagsInput, ScrollArea } from '@mantine/core';
|
|
13
13
|
import { IconTarget, IconAlertCircle, IconPlayerPlay, IconArrowRight, IconListDetails, IconPlus, IconAlertTriangle, IconSearch, IconList, IconExternalLink, IconCopy, IconTrash, IconBuilding, IconUsers, IconBolt, IconLayoutDashboard, IconBuildingFactory2, IconArrowLeft, IconSparkles, IconAddressBook, IconSettings, IconChevronDown, IconChevronRight, IconRefresh, IconMail, IconUser, IconDatabase } from '@tabler/icons-react';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { OrganizationContext } from './chunk-DD3CCMCZ.js';
|
|
2
|
-
import { APIClientError } from './chunk-
|
|
2
|
+
import { APIClientError } from './chunk-IBCEAVB2.js';
|
|
3
3
|
import { createContext, useContext, useMemo, useCallback } from 'react';
|
|
4
4
|
import { jsx } from 'react/jsx-runtime';
|
|
5
5
|
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { CRM_API_INTERFACE } from './chunk-
|
|
1
|
+
import { CRM_API_INTERFACE } from './chunk-PQ4B62HH.js';
|
|
2
2
|
import { PageContainer } from './chunk-BZZCNLT6.js';
|
|
3
3
|
import { TableSelectionToolbar, SortableHeader } from './chunk-TUMSNGTX.js';
|
|
4
4
|
import { FilterBar } from './chunk-PDHTXPSF.js';
|
|
5
|
-
import { CrmSidebarMiddle, useDealsSummary, useOptionalElevasisSystems, getCrmPipelineCatalog, CenteredErrorState, StatCard, PageTitleCaption, useDeleteDeal, usePaginationState, useDeals, useTableSort, sortData, useTableSelection, SubshellContentContainer, EmptyState, CustomModal, useDealDetail, useCrmActions, ActivityTimeline, useCompany, ContextViewer, JsonViewer, dealKeys, useContact, deriveActions, useExecuteAction } from './chunk-
|
|
6
|
-
import { showApiErrorNotification, showSuccessNotification } from './chunk-
|
|
5
|
+
import { CrmSidebarMiddle, useDealsSummary, useOptionalElevasisSystems, getCrmPipelineCatalog, CenteredErrorState, StatCard, PageTitleCaption, useDeleteDeal, usePaginationState, useDeals, useTableSort, sortData, useTableSelection, SubshellContentContainer, EmptyState, CustomModal, useDealDetail, useCrmActions, ActivityTimeline, useCompany, ContextViewer, JsonViewer, dealKeys, useContact, deriveActions, useExecuteAction } from './chunk-OCVSPAKM.js';
|
|
6
|
+
import { showApiErrorNotification, showSuccessNotification } from './chunk-U2H3TIHD.js';
|
|
7
7
|
import { SubshellSidebarSection } from './chunk-MISHPEJX.js';
|
|
8
8
|
import { CardHeader } from './chunk-62GVNH5U.js';
|
|
9
|
-
import { computeInterfaceReadiness, getSystem, PAGE_SIZE_DEFAULT, formatTimeAgo } from './chunk-
|
|
9
|
+
import { computeInterfaceReadiness, getSystem, PAGE_SIZE_DEFAULT, formatTimeAgo } from './chunk-IBCEAVB2.js';
|
|
10
10
|
import { useElevasisServices } from './chunk-BI5VDO2K.js';
|
|
11
11
|
import { Stack, Paper, Center, Loader, Group, Box, Text, Alert, Table, SimpleGrid, Button, Select, TextInput, Tabs, Checkbox, Badge, Tooltip, Pagination, Title, Code, Card, SegmentedControl, Switch, NumberInput, ColorSwatch, Popover, ActionIcon, Anchor, CopyButton, Divider, Textarea } from '@mantine/core';
|
|
12
12
|
import { IconAddressBook, IconColumns, IconHistory, IconAlertCircle, IconCurrencyDollar, IconChartBar, IconBriefcase, IconTrophy, IconSearch, IconTargetArrow, IconAlertTriangle, IconMessages, IconArrowLeft, IconFileText, IconInbox, IconUser, IconBolt, IconBuilding, IconSettings, IconRestore, IconInfoCircle, IconMailForward, IconPlus, IconArrowRight, IconNote, IconCheck, IconCopy } from '@tabler/icons-react';
|