@elevasis/ui 2.35.0 → 2.36.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 (51) hide show
  1. package/dist/app/index.d.ts +25 -18
  2. package/dist/app/index.js +2 -2
  3. package/dist/{chunk-26HFM4MH.js → chunk-F6EFC2MJ.js} +1555 -1903
  4. package/dist/{chunk-VDOOGGBA.js → chunk-K4UZU3TU.js} +2 -2
  5. package/dist/{chunk-4U3XAWCN.js → chunk-O2Q4VMRN.js} +134 -495
  6. package/dist/components/index.d.ts +7 -4
  7. package/dist/components/index.js +2 -2
  8. package/dist/components/navigation/index.js +2 -2
  9. package/dist/execution/index.d.ts +2 -2
  10. package/dist/features/auth/index.d.ts +3 -0
  11. package/dist/features/auth/index.js +2 -2
  12. package/dist/features/clients/index.js +2 -2
  13. package/dist/features/crm/index.d.ts +3 -0
  14. package/dist/features/crm/index.js +2 -2
  15. package/dist/features/dashboard/index.d.ts +3 -3
  16. package/dist/features/dashboard/index.js +2 -2
  17. package/dist/features/delivery/index.d.ts +3 -0
  18. package/dist/features/delivery/index.js +2 -2
  19. package/dist/features/knowledge/index.js +3 -3
  20. package/dist/features/lead-gen/index.d.ts +286 -48
  21. package/dist/features/lead-gen/index.js +2 -2
  22. package/dist/features/monitoring/index.js +2 -2
  23. package/dist/features/monitoring/requests/index.js +2 -2
  24. package/dist/features/operations/index.d.ts +30 -30
  25. package/dist/features/operations/index.js +2 -2
  26. package/dist/features/settings/index.d.ts +3 -0
  27. package/dist/features/settings/index.js +2 -2
  28. package/dist/hooks/delivery/index.d.ts +3 -0
  29. package/dist/hooks/delivery/index.js +2 -2
  30. package/dist/hooks/index.d.ts +29 -16
  31. package/dist/hooks/index.js +2 -2
  32. package/dist/hooks/operations/command-view/utils/transformCommandViewData.d.ts +13 -13
  33. package/dist/hooks/published.d.ts +29 -16
  34. package/dist/hooks/published.js +2 -2
  35. package/dist/index.d.ts +51 -34
  36. package/dist/index.js +2 -2
  37. package/dist/initialization/index.d.ts +3 -0
  38. package/dist/knowledge/index.d.ts +21 -21
  39. package/dist/knowledge/index.js +6 -6
  40. package/dist/{knowledge-search-index-ORIJCEZX.js → knowledge-search-index-NBCTFIOH.js} +2 -2
  41. package/dist/organization/index.js +2 -2
  42. package/dist/profile/index.d.ts +3 -0
  43. package/dist/provider/index.d.ts +25 -18
  44. package/dist/provider/index.js +2 -2
  45. package/dist/provider/published.d.ts +25 -18
  46. package/dist/provider/published.js +2 -2
  47. package/dist/sse/index.js +26 -5
  48. package/dist/supabase/index.d.ts +6 -0
  49. package/dist/types/index.d.ts +16 -13
  50. package/dist/utils/index.d.ts +3 -3
  51. package/package.json +4 -4
@@ -2790,6 +2790,7 @@ type Database = {
2790
2790
  title: string | null;
2791
2791
  updated_at: string;
2792
2792
  user_id: string;
2793
+ visibility: string;
2793
2794
  };
2794
2795
  Insert: {
2795
2796
  content: string;
@@ -2804,6 +2805,7 @@ type Database = {
2804
2805
  title?: string | null;
2805
2806
  updated_at?: string;
2806
2807
  user_id: string;
2808
+ visibility?: string;
2807
2809
  };
2808
2810
  Update: {
2809
2811
  content?: string;
@@ -2818,6 +2820,7 @@ type Database = {
2818
2820
  title?: string | null;
2819
2821
  updated_at?: string;
2820
2822
  user_id?: string;
2823
+ visibility?: string;
2821
2824
  };
2822
2825
  Relationships: [
2823
2826
  {
@@ -3230,6 +3233,10 @@ declare const AcqListResponseSchema: z$1.ZodObject<{
3230
3233
  enabled: z$1.ZodOptional<z$1.ZodBoolean>;
3231
3234
  order: z$1.ZodOptional<z$1.ZodNumber>;
3232
3235
  }, z$1.core.$strip>>>;
3236
+ dataMode: z$1.ZodOptional<z$1.ZodEnum<{
3237
+ mock: "mock";
3238
+ live: "live";
3239
+ }>>;
3233
3240
  }, z$1.core.$strip>;
3234
3241
  }, z$1.core.$strip>;
3235
3242
  type AcqListResponse = z$1.infer<typeof AcqListResponseSchema>;
@@ -3387,9 +3394,9 @@ declare const SurfaceTypeSchema: z$1.ZodEnum<{
3387
3394
  dashboard: "dashboard";
3388
3395
  settings: "settings";
3389
3396
  graph: "graph";
3390
- list: "list";
3391
3397
  page: "page";
3392
3398
  detail: "detail";
3399
+ list: "list";
3393
3400
  }>;
3394
3401
  interface SidebarSurfaceNode {
3395
3402
  type: 'surface';
@@ -3822,8 +3829,8 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
3822
3829
  description: z$1.ZodOptional<z$1.ZodString>;
3823
3830
  ownerRoleId: z$1.ZodOptional<z$1.ZodString>;
3824
3831
  status: z$1.ZodEnum<{
3825
- deprecated: "deprecated";
3826
3832
  active: "active";
3833
+ deprecated: "deprecated";
3827
3834
  archived: "archived";
3828
3835
  }>;
3829
3836
  ontology: z$1.ZodOptional<z$1.ZodObject<{
@@ -3841,12 +3848,12 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
3841
3848
  codeRefs: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
3842
3849
  path: z$1.ZodString;
3843
3850
  role: z$1.ZodEnum<{
3844
- config: "config";
3845
3851
  entrypoint: "entrypoint";
3846
3852
  handler: "handler";
3847
3853
  schema: "schema";
3848
3854
  test: "test";
3849
3855
  docs: "docs";
3856
+ config: "config";
3850
3857
  }>;
3851
3858
  symbol: z$1.ZodOptional<z$1.ZodString>;
3852
3859
  description: z$1.ZodOptional<z$1.ZodString>;
@@ -3857,10 +3864,10 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
3857
3864
  label: z$1.ZodString;
3858
3865
  payloadSchema: z$1.ZodOptional<z$1.ZodString>;
3859
3866
  lifecycle: z$1.ZodOptional<z$1.ZodEnum<{
3867
+ active: "active";
3860
3868
  deprecated: "deprecated";
3861
3869
  draft: "draft";
3862
3870
  beta: "beta";
3863
- active: "active";
3864
3871
  archived: "archived";
3865
3872
  }>>;
3866
3873
  }, z$1.core.$strip>>>;
@@ -3872,8 +3879,8 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
3872
3879
  description: z$1.ZodOptional<z$1.ZodString>;
3873
3880
  ownerRoleId: z$1.ZodOptional<z$1.ZodString>;
3874
3881
  status: z$1.ZodEnum<{
3875
- deprecated: "deprecated";
3876
3882
  active: "active";
3883
+ deprecated: "deprecated";
3877
3884
  archived: "archived";
3878
3885
  }>;
3879
3886
  ontology: z$1.ZodOptional<z$1.ZodObject<{
@@ -3891,12 +3898,12 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
3891
3898
  codeRefs: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
3892
3899
  path: z$1.ZodString;
3893
3900
  role: z$1.ZodEnum<{
3894
- config: "config";
3895
3901
  entrypoint: "entrypoint";
3896
3902
  handler: "handler";
3897
3903
  schema: "schema";
3898
3904
  test: "test";
3899
3905
  docs: "docs";
3906
+ config: "config";
3900
3907
  }>;
3901
3908
  symbol: z$1.ZodOptional<z$1.ZodString>;
3902
3909
  description: z$1.ZodOptional<z$1.ZodString>;
@@ -3938,10 +3945,10 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
3938
3945
  label: z$1.ZodString;
3939
3946
  payloadSchema: z$1.ZodOptional<z$1.ZodString>;
3940
3947
  lifecycle: z$1.ZodOptional<z$1.ZodEnum<{
3948
+ active: "active";
3941
3949
  deprecated: "deprecated";
3942
3950
  draft: "draft";
3943
3951
  beta: "beta";
3944
- active: "active";
3945
3952
  archived: "archived";
3946
3953
  }>>;
3947
3954
  }, z$1.core.$strip>>>;
@@ -3953,8 +3960,8 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
3953
3960
  description: z$1.ZodOptional<z$1.ZodString>;
3954
3961
  ownerRoleId: z$1.ZodOptional<z$1.ZodString>;
3955
3962
  status: z$1.ZodEnum<{
3956
- deprecated: "deprecated";
3957
3963
  active: "active";
3964
+ deprecated: "deprecated";
3958
3965
  archived: "archived";
3959
3966
  }>;
3960
3967
  ontology: z$1.ZodOptional<z$1.ZodObject<{
@@ -3972,12 +3979,12 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
3972
3979
  codeRefs: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
3973
3980
  path: z$1.ZodString;
3974
3981
  role: z$1.ZodEnum<{
3975
- config: "config";
3976
3982
  entrypoint: "entrypoint";
3977
3983
  handler: "handler";
3978
3984
  schema: "schema";
3979
3985
  test: "test";
3980
3986
  docs: "docs";
3987
+ config: "config";
3981
3988
  }>;
3982
3989
  symbol: z$1.ZodOptional<z$1.ZodString>;
3983
3990
  description: z$1.ZodOptional<z$1.ZodString>;
@@ -3992,8 +3999,8 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
3992
3999
  description: z$1.ZodOptional<z$1.ZodString>;
3993
4000
  ownerRoleId: z$1.ZodOptional<z$1.ZodString>;
3994
4001
  status: z$1.ZodEnum<{
3995
- deprecated: "deprecated";
3996
4002
  active: "active";
4003
+ deprecated: "deprecated";
3997
4004
  archived: "archived";
3998
4005
  }>;
3999
4006
  ontology: z$1.ZodOptional<z$1.ZodObject<{
@@ -4011,12 +4018,12 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
4011
4018
  codeRefs: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
4012
4019
  path: z$1.ZodString;
4013
4020
  role: z$1.ZodEnum<{
4014
- config: "config";
4015
4021
  entrypoint: "entrypoint";
4016
4022
  handler: "handler";
4017
4023
  schema: "schema";
4018
4024
  test: "test";
4019
4025
  docs: "docs";
4026
+ config: "config";
4020
4027
  }>;
4021
4028
  symbol: z$1.ZodOptional<z$1.ZodString>;
4022
4029
  description: z$1.ZodOptional<z$1.ZodString>;
@@ -4130,10 +4137,10 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
4130
4137
  }, z$1.core.$strip>], "kind">>>;
4131
4138
  knowledge: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>>;
4132
4139
  lifecycle: z$1.ZodDefault<z$1.ZodEnum<{
4140
+ active: "active";
4133
4141
  deprecated: "deprecated";
4134
4142
  draft: "draft";
4135
4143
  beta: "beta";
4136
- active: "active";
4137
4144
  archived: "archived";
4138
4145
  }>>;
4139
4146
  }, z$1.core.$strip>>>>;
@@ -4211,10 +4218,10 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
4211
4218
  roleIds: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
4212
4219
  }, z$1.core.$strip>>;
4213
4220
  lifecycle: z$1.ZodDefault<z$1.ZodEnum<{
4221
+ active: "active";
4214
4222
  deprecated: "deprecated";
4215
4223
  draft: "draft";
4216
4224
  beta: "beta";
4217
- active: "active";
4218
4225
  archived: "archived";
4219
4226
  }>>;
4220
4227
  }, z$1.core.$strip>>>>;
@@ -4297,12 +4304,12 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
4297
4304
  kind: z$1.ZodEnum<{
4298
4305
  knowledge: "knowledge";
4299
4306
  system: "system";
4307
+ resource: "resource";
4300
4308
  action: "action";
4301
4309
  ontology: "ontology";
4302
4310
  role: "role";
4303
- goal: "goal";
4304
- resource: "resource";
4305
4311
  stage: "stage";
4312
+ goal: "goal";
4306
4313
  "customer-segment": "customer-segment";
4307
4314
  offering: "offering";
4308
4315
  }>;
@@ -4312,7 +4319,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
4312
4319
  nodeId: z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodTemplateLiteral<`ontology:${string}`>]>;
4313
4320
  }, z$1.core.$strip>]>, z$1.ZodTransform<{
4314
4321
  target: {
4315
- kind: "knowledge" | "system" | "action" | "ontology" | "role" | "goal" | "resource" | "stage" | "customer-segment" | "offering";
4322
+ kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "stage" | "goal" | "customer-segment" | "offering";
4316
4323
  id: string;
4317
4324
  };
4318
4325
  nodeId: string;
@@ -4320,7 +4327,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
4320
4327
  nodeId: string;
4321
4328
  } | {
4322
4329
  target: {
4323
- kind: "knowledge" | "system" | "action" | "ontology" | "role" | "goal" | "resource" | "stage" | "customer-segment" | "offering";
4330
+ kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "stage" | "goal" | "customer-segment" | "offering";
4324
4331
  id: string;
4325
4332
  };
4326
4333
  }>>>>;
@@ -4395,7 +4402,7 @@ type FieldPath<T> = T extends object ? {
4395
4402
  [K in keyof T & string]: T[K] extends ReadonlyArray<unknown> | unknown[] ? K : T[K] extends object | undefined ? K | `${K}.${FieldPath<NonNullable<T[K]>>}` : K;
4396
4403
  }[keyof T & string] : never;
4397
4404
  /** Discriminated string union of supported Mantine components. */
4398
- type StepConfigComponent = 'segmented' | 'tags' | 'multiselect' | 'select' | 'textinput' | 'textarea' | 'numberinput' | 'switch' | 'json';
4405
+ type StepConfigComponent = 'checkboxgroup' | 'segmented' | 'tags' | 'multiselect' | 'select' | 'textinput' | 'textarea' | 'numberinput' | 'switch' | 'json';
4399
4406
  /** Rendering hint for a single field within a section. */
4400
4407
  interface StepConfigFieldHint<T> {
4401
4408
  /** Typed dotted path into T — typo = TS error. */
package/dist/app/index.js CHANGED
@@ -1,4 +1,4 @@
1
- import { AppErrorBoundary, ElevasisSystemsProvider, useElevasisSystems, SystemShell, ElevasisUIProvider } from '../chunk-26HFM4MH.js';
1
+ import { AppErrorBoundary, ElevasisSystemsProvider, useElevasisSystems, SystemShell, ElevasisUIProvider } from '../chunk-F6EFC2MJ.js';
2
2
  import '../chunk-CXY7FMUM.js';
3
3
  import '../chunk-SIQ3P4OR.js';
4
4
  import '../chunk-3KMDHCAR.js';
@@ -8,7 +8,7 @@ import '../chunk-ZTWA5H77.js';
8
8
  import '../chunk-AUDNF2Q7.js';
9
9
  import '../chunk-6M6OLGQY.js';
10
10
  import '../chunk-BRXELOHC.js';
11
- import { listAllSystems } from '../chunk-4U3XAWCN.js';
11
+ import { listAllSystems } from '../chunk-O2Q4VMRN.js';
12
12
  import { SidebarProvider, AppShellContainer, Sidebar, AppShellRightSideContainer, AppShellRightSideOuterContainer } from '../chunk-LUYVRATI.js';
13
13
  import '../chunk-NYBEU5TE.js';
14
14
  import '../chunk-WLOQ4IBG.js';