@elevasis/ui 2.28.0 → 2.28.1
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 +2 -2
- package/dist/app/index.d.ts +6 -12
- package/dist/app/index.js +4 -4
- package/dist/charts/index.js +3 -3
- package/dist/{chunk-YO2YORW4.js → chunk-3HCTCMAS.js} +3 -3
- package/dist/{chunk-LWKZ3BCC.js → chunk-5R27NFOI.js} +4 -4
- package/dist/{chunk-JPGX3533.js → chunk-AYSO5A3R.js} +2 -2
- package/dist/{chunk-ONFKASZI.js → chunk-CT5IR4ZA.js} +1 -1
- package/dist/{chunk-RIFTUOPE.js → chunk-GJXAAYZ3.js} +1 -1
- package/dist/{chunk-OGXKOMUT.js → chunk-HNN3QALL.js} +2 -2
- package/dist/{chunk-KEFWANZY.js → chunk-JCGD4GM6.js} +5 -1
- package/dist/chunk-JS7VBTC4.js +250 -0
- package/dist/{chunk-G66QFZXD.js → chunk-K4Q5QUHZ.js} +15 -9
- package/dist/{chunk-UPMX5GJI.js → chunk-M6OJ43NL.js} +32 -5
- package/dist/{chunk-WUVR4QY6.js → chunk-MCRKFDKB.js} +4 -4
- package/dist/{chunk-ZFLM2YVW.js → chunk-MJMFIWEB.js} +1 -1
- package/dist/{chunk-G26INIF3.js → chunk-MZCDRBSI.js} +1 -1
- package/dist/{chunk-YHBPR67D.js → chunk-N63RKL3L.js} +4 -4
- package/dist/{chunk-W2ZTLH7Y.js → chunk-NU5FNTOB.js} +29 -21
- package/dist/{chunk-OHXU5WWK.js → chunk-PBNIW7KV.js} +12 -6
- package/dist/{chunk-QD4X4H5A.js → chunk-SRNIHB7Y.js} +1 -1
- package/dist/{chunk-XZSEPJZQ.js → chunk-TVJROM2V.js} +5 -5
- package/dist/{chunk-JKBGDFX2.js → chunk-UOHOKDKL.js} +378 -254
- package/dist/{chunk-UY5I2KOZ.js → chunk-YNYGUVGW.js} +8 -8
- package/dist/{chunk-SGS4CQ2B.js → chunk-ZPXV5KI3.js} +1 -1
- package/dist/components/index.d.ts +16 -14
- package/dist/components/index.js +25 -25
- package/dist/features/auth/index.d.ts +6 -12
- package/dist/features/auth/index.js +1 -0
- package/dist/features/crm/index.d.ts +16 -14
- package/dist/features/crm/index.js +9 -9
- package/dist/features/dashboard/index.d.ts +16 -3
- package/dist/features/dashboard/index.js +10 -10
- package/dist/features/delivery/index.d.ts +6 -12
- package/dist/features/delivery/index.js +9 -9
- package/dist/features/knowledge/index.js +20 -12
- package/dist/features/lead-gen/index.d.ts +171 -24
- package/dist/features/lead-gen/index.js +10 -10
- package/dist/features/monitoring/index.js +11 -11
- package/dist/features/monitoring/requests/index.js +8 -8
- package/dist/features/operations/index.d.ts +16 -3
- package/dist/features/operations/index.js +15 -15
- package/dist/features/settings/index.d.ts +6 -12
- package/dist/features/settings/index.js +9 -9
- package/dist/hooks/delivery/index.d.ts +6 -12
- package/dist/hooks/delivery/index.js +2 -2
- package/dist/hooks/index.d.ts +110 -28
- package/dist/hooks/index.js +8 -8
- package/dist/hooks/published.d.ts +110 -28
- package/dist/hooks/published.js +8 -8
- package/dist/index.d.ts +148 -28
- package/dist/index.js +8 -8
- package/dist/initialization/index.d.ts +6 -12
- package/dist/knowledge/index.d.ts +43 -0
- package/dist/knowledge/index.js +49 -12
- package/dist/profile/index.d.ts +6 -12
- package/dist/provider/index.d.ts +44 -12
- package/dist/provider/index.js +6 -6
- package/dist/provider/published.d.ts +44 -12
- package/dist/provider/published.js +5 -5
- package/dist/supabase/index.d.ts +12 -24
- package/dist/test-utils/index.js +2 -2
- package/dist/typeform/index.d.ts +5 -1
- package/dist/typeform/index.js +52 -7
- package/dist/types/index.d.ts +7 -13
- package/dist/utils/index.js +1 -1
- package/package.json +4 -4
- package/dist/chunk-4KTLOK7K.js +0 -230
package/dist/profile/index.d.ts
CHANGED
|
@@ -74,7 +74,7 @@ type Database = {
|
|
|
74
74
|
name: string;
|
|
75
75
|
num_employees: number | null;
|
|
76
76
|
organization_id: string;
|
|
77
|
-
|
|
77
|
+
processing_state: Json;
|
|
78
78
|
qualification_rubric_key: string | null;
|
|
79
79
|
qualification_score: number | null;
|
|
80
80
|
qualification_signals: Json | null;
|
|
@@ -100,7 +100,7 @@ type Database = {
|
|
|
100
100
|
name: string;
|
|
101
101
|
num_employees?: number | null;
|
|
102
102
|
organization_id: string;
|
|
103
|
-
|
|
103
|
+
processing_state?: Json;
|
|
104
104
|
qualification_rubric_key?: string | null;
|
|
105
105
|
qualification_score?: number | null;
|
|
106
106
|
qualification_signals?: Json | null;
|
|
@@ -126,7 +126,7 @@ type Database = {
|
|
|
126
126
|
name?: string;
|
|
127
127
|
num_employees?: number | null;
|
|
128
128
|
organization_id?: string;
|
|
129
|
-
|
|
129
|
+
processing_state?: Json;
|
|
130
130
|
qualification_rubric_key?: string | null;
|
|
131
131
|
qualification_score?: number | null;
|
|
132
132
|
qualification_signals?: Json | null;
|
|
@@ -165,7 +165,7 @@ type Database = {
|
|
|
165
165
|
nurture: boolean;
|
|
166
166
|
opening_line: string | null;
|
|
167
167
|
organization_id: string;
|
|
168
|
-
|
|
168
|
+
processing_state: Json;
|
|
169
169
|
qualification_rubric_key: string | null;
|
|
170
170
|
qualification_score: number | null;
|
|
171
171
|
qualification_signals: Json | null;
|
|
@@ -193,7 +193,7 @@ type Database = {
|
|
|
193
193
|
nurture?: boolean;
|
|
194
194
|
opening_line?: string | null;
|
|
195
195
|
organization_id: string;
|
|
196
|
-
|
|
196
|
+
processing_state?: Json;
|
|
197
197
|
qualification_rubric_key?: string | null;
|
|
198
198
|
qualification_score?: number | null;
|
|
199
199
|
qualification_signals?: Json | null;
|
|
@@ -221,7 +221,7 @@ type Database = {
|
|
|
221
221
|
nurture?: boolean;
|
|
222
222
|
opening_line?: string | null;
|
|
223
223
|
organization_id?: string;
|
|
224
|
-
|
|
224
|
+
processing_state?: Json;
|
|
225
225
|
qualification_rubric_key?: string | null;
|
|
226
226
|
qualification_score?: number | null;
|
|
227
227
|
qualification_signals?: Json | null;
|
|
@@ -617,7 +617,6 @@ type Database = {
|
|
|
617
617
|
id: string;
|
|
618
618
|
list_id: string;
|
|
619
619
|
pipeline_key: string;
|
|
620
|
-
processing_state: Json;
|
|
621
620
|
source_execution_id: string | null;
|
|
622
621
|
source_input_hash: string | null;
|
|
623
622
|
source_resource_id: string | null;
|
|
@@ -632,7 +631,6 @@ type Database = {
|
|
|
632
631
|
id?: string;
|
|
633
632
|
list_id: string;
|
|
634
633
|
pipeline_key?: string;
|
|
635
|
-
processing_state?: Json;
|
|
636
634
|
source_execution_id?: string | null;
|
|
637
635
|
source_input_hash?: string | null;
|
|
638
636
|
source_resource_id?: string | null;
|
|
@@ -647,7 +645,6 @@ type Database = {
|
|
|
647
645
|
id?: string;
|
|
648
646
|
list_id?: string;
|
|
649
647
|
pipeline_key?: string;
|
|
650
|
-
processing_state?: Json;
|
|
651
648
|
source_execution_id?: string | null;
|
|
652
649
|
source_input_hash?: string | null;
|
|
653
650
|
source_resource_id?: string | null;
|
|
@@ -726,7 +723,6 @@ type Database = {
|
|
|
726
723
|
id: string;
|
|
727
724
|
list_id: string;
|
|
728
725
|
pipeline_key: string;
|
|
729
|
-
processing_state: Json;
|
|
730
726
|
source_execution_id: string | null;
|
|
731
727
|
source_input_hash: string | null;
|
|
732
728
|
source_resource_id: string | null;
|
|
@@ -741,7 +737,6 @@ type Database = {
|
|
|
741
737
|
id?: string;
|
|
742
738
|
list_id: string;
|
|
743
739
|
pipeline_key?: string;
|
|
744
|
-
processing_state?: Json;
|
|
745
740
|
source_execution_id?: string | null;
|
|
746
741
|
source_input_hash?: string | null;
|
|
747
742
|
source_resource_id?: string | null;
|
|
@@ -756,7 +751,6 @@ type Database = {
|
|
|
756
751
|
id?: string;
|
|
757
752
|
list_id?: string;
|
|
758
753
|
pipeline_key?: string;
|
|
759
|
-
processing_state?: Json;
|
|
760
754
|
source_execution_id?: string | null;
|
|
761
755
|
source_input_hash?: string | null;
|
|
762
756
|
source_resource_id?: string | null;
|
package/dist/provider/index.d.ts
CHANGED
|
@@ -176,7 +176,7 @@ type Database = {
|
|
|
176
176
|
name: string;
|
|
177
177
|
num_employees: number | null;
|
|
178
178
|
organization_id: string;
|
|
179
|
-
|
|
179
|
+
processing_state: Json;
|
|
180
180
|
qualification_rubric_key: string | null;
|
|
181
181
|
qualification_score: number | null;
|
|
182
182
|
qualification_signals: Json | null;
|
|
@@ -202,7 +202,7 @@ type Database = {
|
|
|
202
202
|
name: string;
|
|
203
203
|
num_employees?: number | null;
|
|
204
204
|
organization_id: string;
|
|
205
|
-
|
|
205
|
+
processing_state?: Json;
|
|
206
206
|
qualification_rubric_key?: string | null;
|
|
207
207
|
qualification_score?: number | null;
|
|
208
208
|
qualification_signals?: Json | null;
|
|
@@ -228,7 +228,7 @@ type Database = {
|
|
|
228
228
|
name?: string;
|
|
229
229
|
num_employees?: number | null;
|
|
230
230
|
organization_id?: string;
|
|
231
|
-
|
|
231
|
+
processing_state?: Json;
|
|
232
232
|
qualification_rubric_key?: string | null;
|
|
233
233
|
qualification_score?: number | null;
|
|
234
234
|
qualification_signals?: Json | null;
|
|
@@ -267,7 +267,7 @@ type Database = {
|
|
|
267
267
|
nurture: boolean;
|
|
268
268
|
opening_line: string | null;
|
|
269
269
|
organization_id: string;
|
|
270
|
-
|
|
270
|
+
processing_state: Json;
|
|
271
271
|
qualification_rubric_key: string | null;
|
|
272
272
|
qualification_score: number | null;
|
|
273
273
|
qualification_signals: Json | null;
|
|
@@ -295,7 +295,7 @@ type Database = {
|
|
|
295
295
|
nurture?: boolean;
|
|
296
296
|
opening_line?: string | null;
|
|
297
297
|
organization_id: string;
|
|
298
|
-
|
|
298
|
+
processing_state?: Json;
|
|
299
299
|
qualification_rubric_key?: string | null;
|
|
300
300
|
qualification_score?: number | null;
|
|
301
301
|
qualification_signals?: Json | null;
|
|
@@ -323,7 +323,7 @@ type Database = {
|
|
|
323
323
|
nurture?: boolean;
|
|
324
324
|
opening_line?: string | null;
|
|
325
325
|
organization_id?: string;
|
|
326
|
-
|
|
326
|
+
processing_state?: Json;
|
|
327
327
|
qualification_rubric_key?: string | null;
|
|
328
328
|
qualification_score?: number | null;
|
|
329
329
|
qualification_signals?: Json | null;
|
|
@@ -719,7 +719,6 @@ type Database = {
|
|
|
719
719
|
id: string;
|
|
720
720
|
list_id: string;
|
|
721
721
|
pipeline_key: string;
|
|
722
|
-
processing_state: Json;
|
|
723
722
|
source_execution_id: string | null;
|
|
724
723
|
source_input_hash: string | null;
|
|
725
724
|
source_resource_id: string | null;
|
|
@@ -734,7 +733,6 @@ type Database = {
|
|
|
734
733
|
id?: string;
|
|
735
734
|
list_id: string;
|
|
736
735
|
pipeline_key?: string;
|
|
737
|
-
processing_state?: Json;
|
|
738
736
|
source_execution_id?: string | null;
|
|
739
737
|
source_input_hash?: string | null;
|
|
740
738
|
source_resource_id?: string | null;
|
|
@@ -749,7 +747,6 @@ type Database = {
|
|
|
749
747
|
id?: string;
|
|
750
748
|
list_id?: string;
|
|
751
749
|
pipeline_key?: string;
|
|
752
|
-
processing_state?: Json;
|
|
753
750
|
source_execution_id?: string | null;
|
|
754
751
|
source_input_hash?: string | null;
|
|
755
752
|
source_resource_id?: string | null;
|
|
@@ -828,7 +825,6 @@ type Database = {
|
|
|
828
825
|
id: string;
|
|
829
826
|
list_id: string;
|
|
830
827
|
pipeline_key: string;
|
|
831
|
-
processing_state: Json;
|
|
832
828
|
source_execution_id: string | null;
|
|
833
829
|
source_input_hash: string | null;
|
|
834
830
|
source_resource_id: string | null;
|
|
@@ -843,7 +839,6 @@ type Database = {
|
|
|
843
839
|
id?: string;
|
|
844
840
|
list_id: string;
|
|
845
841
|
pipeline_key?: string;
|
|
846
|
-
processing_state?: Json;
|
|
847
842
|
source_execution_id?: string | null;
|
|
848
843
|
source_input_hash?: string | null;
|
|
849
844
|
source_resource_id?: string | null;
|
|
@@ -858,7 +853,6 @@ type Database = {
|
|
|
858
853
|
id?: string;
|
|
859
854
|
list_id?: string;
|
|
860
855
|
pipeline_key?: string;
|
|
861
|
-
processing_state?: Json;
|
|
862
856
|
source_execution_id?: string | null;
|
|
863
857
|
source_input_hash?: string | null;
|
|
864
858
|
source_resource_id?: string | null;
|
|
@@ -3106,6 +3100,7 @@ declare const FeatureSchema: z$1.ZodObject<{
|
|
|
3106
3100
|
path: z$1.ZodOptional<z$1.ZodString>;
|
|
3107
3101
|
icon: z$1.ZodOptional<z$1.ZodUnion<readonly [z$1.ZodEnum<{
|
|
3108
3102
|
"nav.dashboard": "nav.dashboard";
|
|
3103
|
+
"nav.calendar": "nav.calendar";
|
|
3109
3104
|
"nav.sales": "nav.sales";
|
|
3110
3105
|
"nav.crm": "nav.crm";
|
|
3111
3106
|
"nav.lead-gen": "nav.lead-gen";
|
|
@@ -3120,6 +3115,7 @@ declare const FeatureSchema: z$1.ZodObject<{
|
|
|
3120
3115
|
"knowledge.strategy": "knowledge.strategy";
|
|
3121
3116
|
"knowledge.reference": "knowledge.reference";
|
|
3122
3117
|
"feature.dashboard": "feature.dashboard";
|
|
3118
|
+
"feature.calendar": "feature.calendar";
|
|
3123
3119
|
"feature.sales": "feature.sales";
|
|
3124
3120
|
"feature.crm": "feature.crm";
|
|
3125
3121
|
"feature.finance": "feature.finance";
|
|
@@ -3143,6 +3139,7 @@ declare const FeatureSchema: z$1.ZodObject<{
|
|
|
3143
3139
|
"integration.google-sheets": "integration.google-sheets";
|
|
3144
3140
|
"integration.attio": "integration.attio";
|
|
3145
3141
|
"surface.dashboard": "surface.dashboard";
|
|
3142
|
+
"surface.calendar": "surface.calendar";
|
|
3146
3143
|
"surface.overview": "surface.overview";
|
|
3147
3144
|
"surface.command-view": "surface.command-view";
|
|
3148
3145
|
"surface.command-queue": "surface.command-queue";
|
|
@@ -3186,6 +3183,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3186
3183
|
path: z$1.ZodOptional<z$1.ZodString>;
|
|
3187
3184
|
icon: z$1.ZodOptional<z$1.ZodUnion<readonly [z$1.ZodEnum<{
|
|
3188
3185
|
"nav.dashboard": "nav.dashboard";
|
|
3186
|
+
"nav.calendar": "nav.calendar";
|
|
3189
3187
|
"nav.sales": "nav.sales";
|
|
3190
3188
|
"nav.crm": "nav.crm";
|
|
3191
3189
|
"nav.lead-gen": "nav.lead-gen";
|
|
@@ -3200,6 +3198,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3200
3198
|
"knowledge.strategy": "knowledge.strategy";
|
|
3201
3199
|
"knowledge.reference": "knowledge.reference";
|
|
3202
3200
|
"feature.dashboard": "feature.dashboard";
|
|
3201
|
+
"feature.calendar": "feature.calendar";
|
|
3203
3202
|
"feature.sales": "feature.sales";
|
|
3204
3203
|
"feature.crm": "feature.crm";
|
|
3205
3204
|
"feature.finance": "feature.finance";
|
|
@@ -3223,6 +3222,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3223
3222
|
"integration.google-sheets": "integration.google-sheets";
|
|
3224
3223
|
"integration.attio": "integration.attio";
|
|
3225
3224
|
"surface.dashboard": "surface.dashboard";
|
|
3225
|
+
"surface.calendar": "surface.calendar";
|
|
3226
3226
|
"surface.overview": "surface.overview";
|
|
3227
3227
|
"surface.command-view": "surface.command-view";
|
|
3228
3228
|
"surface.command-queue": "surface.command-queue";
|
|
@@ -3284,6 +3284,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3284
3284
|
devOnly: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
3285
3285
|
icon: z$1.ZodOptional<z$1.ZodUnion<readonly [z$1.ZodEnum<{
|
|
3286
3286
|
"nav.dashboard": "nav.dashboard";
|
|
3287
|
+
"nav.calendar": "nav.calendar";
|
|
3287
3288
|
"nav.sales": "nav.sales";
|
|
3288
3289
|
"nav.crm": "nav.crm";
|
|
3289
3290
|
"nav.lead-gen": "nav.lead-gen";
|
|
@@ -3298,6 +3299,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3298
3299
|
"knowledge.strategy": "knowledge.strategy";
|
|
3299
3300
|
"knowledge.reference": "knowledge.reference";
|
|
3300
3301
|
"feature.dashboard": "feature.dashboard";
|
|
3302
|
+
"feature.calendar": "feature.calendar";
|
|
3301
3303
|
"feature.sales": "feature.sales";
|
|
3302
3304
|
"feature.crm": "feature.crm";
|
|
3303
3305
|
"feature.finance": "feature.finance";
|
|
@@ -3321,6 +3323,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3321
3323
|
"integration.google-sheets": "integration.google-sheets";
|
|
3322
3324
|
"integration.attio": "integration.attio";
|
|
3323
3325
|
"surface.dashboard": "surface.dashboard";
|
|
3326
|
+
"surface.calendar": "surface.calendar";
|
|
3324
3327
|
"surface.overview": "surface.overview";
|
|
3325
3328
|
"surface.command-view": "surface.command-view";
|
|
3326
3329
|
"surface.command-queue": "surface.command-queue";
|
|
@@ -3373,6 +3376,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3373
3376
|
color: z$1.ZodOptional<z$1.ZodString>;
|
|
3374
3377
|
icon: z$1.ZodOptional<z$1.ZodUnion<readonly [z$1.ZodEnum<{
|
|
3375
3378
|
"nav.dashboard": "nav.dashboard";
|
|
3379
|
+
"nav.calendar": "nav.calendar";
|
|
3376
3380
|
"nav.sales": "nav.sales";
|
|
3377
3381
|
"nav.crm": "nav.crm";
|
|
3378
3382
|
"nav.lead-gen": "nav.lead-gen";
|
|
@@ -3387,6 +3391,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3387
3391
|
"knowledge.strategy": "knowledge.strategy";
|
|
3388
3392
|
"knowledge.reference": "knowledge.reference";
|
|
3389
3393
|
"feature.dashboard": "feature.dashboard";
|
|
3394
|
+
"feature.calendar": "feature.calendar";
|
|
3390
3395
|
"feature.sales": "feature.sales";
|
|
3391
3396
|
"feature.crm": "feature.crm";
|
|
3392
3397
|
"feature.finance": "feature.finance";
|
|
@@ -3410,6 +3415,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3410
3415
|
"integration.google-sheets": "integration.google-sheets";
|
|
3411
3416
|
"integration.attio": "integration.attio";
|
|
3412
3417
|
"surface.dashboard": "surface.dashboard";
|
|
3418
|
+
"surface.calendar": "surface.calendar";
|
|
3413
3419
|
"surface.overview": "surface.overview";
|
|
3414
3420
|
"surface.command-view": "surface.command-view";
|
|
3415
3421
|
"surface.command-queue": "surface.command-queue";
|
|
@@ -3459,6 +3465,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3459
3465
|
color: z$1.ZodOptional<z$1.ZodString>;
|
|
3460
3466
|
icon: z$1.ZodOptional<z$1.ZodUnion<readonly [z$1.ZodEnum<{
|
|
3461
3467
|
"nav.dashboard": "nav.dashboard";
|
|
3468
|
+
"nav.calendar": "nav.calendar";
|
|
3462
3469
|
"nav.sales": "nav.sales";
|
|
3463
3470
|
"nav.crm": "nav.crm";
|
|
3464
3471
|
"nav.lead-gen": "nav.lead-gen";
|
|
@@ -3473,6 +3480,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3473
3480
|
"knowledge.strategy": "knowledge.strategy";
|
|
3474
3481
|
"knowledge.reference": "knowledge.reference";
|
|
3475
3482
|
"feature.dashboard": "feature.dashboard";
|
|
3483
|
+
"feature.calendar": "feature.calendar";
|
|
3476
3484
|
"feature.sales": "feature.sales";
|
|
3477
3485
|
"feature.crm": "feature.crm";
|
|
3478
3486
|
"feature.finance": "feature.finance";
|
|
@@ -3496,6 +3504,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3496
3504
|
"integration.google-sheets": "integration.google-sheets";
|
|
3497
3505
|
"integration.attio": "integration.attio";
|
|
3498
3506
|
"surface.dashboard": "surface.dashboard";
|
|
3507
|
+
"surface.calendar": "surface.calendar";
|
|
3499
3508
|
"surface.overview": "surface.overview";
|
|
3500
3509
|
"surface.command-view": "surface.command-view";
|
|
3501
3510
|
"surface.command-queue": "surface.command-queue";
|
|
@@ -3529,6 +3538,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3529
3538
|
color: z$1.ZodOptional<z$1.ZodString>;
|
|
3530
3539
|
icon: z$1.ZodOptional<z$1.ZodUnion<readonly [z$1.ZodEnum<{
|
|
3531
3540
|
"nav.dashboard": "nav.dashboard";
|
|
3541
|
+
"nav.calendar": "nav.calendar";
|
|
3532
3542
|
"nav.sales": "nav.sales";
|
|
3533
3543
|
"nav.crm": "nav.crm";
|
|
3534
3544
|
"nav.lead-gen": "nav.lead-gen";
|
|
@@ -3543,6 +3553,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3543
3553
|
"knowledge.strategy": "knowledge.strategy";
|
|
3544
3554
|
"knowledge.reference": "knowledge.reference";
|
|
3545
3555
|
"feature.dashboard": "feature.dashboard";
|
|
3556
|
+
"feature.calendar": "feature.calendar";
|
|
3546
3557
|
"feature.sales": "feature.sales";
|
|
3547
3558
|
"feature.crm": "feature.crm";
|
|
3548
3559
|
"feature.finance": "feature.finance";
|
|
@@ -3566,6 +3577,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3566
3577
|
"integration.google-sheets": "integration.google-sheets";
|
|
3567
3578
|
"integration.attio": "integration.attio";
|
|
3568
3579
|
"surface.dashboard": "surface.dashboard";
|
|
3580
|
+
"surface.calendar": "surface.calendar";
|
|
3569
3581
|
"surface.overview": "surface.overview";
|
|
3570
3582
|
"surface.command-view": "surface.command-view";
|
|
3571
3583
|
"surface.command-queue": "surface.command-queue";
|
|
@@ -3600,6 +3612,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3600
3612
|
color: z$1.ZodOptional<z$1.ZodString>;
|
|
3601
3613
|
icon: z$1.ZodOptional<z$1.ZodUnion<readonly [z$1.ZodEnum<{
|
|
3602
3614
|
"nav.dashboard": "nav.dashboard";
|
|
3615
|
+
"nav.calendar": "nav.calendar";
|
|
3603
3616
|
"nav.sales": "nav.sales";
|
|
3604
3617
|
"nav.crm": "nav.crm";
|
|
3605
3618
|
"nav.lead-gen": "nav.lead-gen";
|
|
@@ -3614,6 +3627,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3614
3627
|
"knowledge.strategy": "knowledge.strategy";
|
|
3615
3628
|
"knowledge.reference": "knowledge.reference";
|
|
3616
3629
|
"feature.dashboard": "feature.dashboard";
|
|
3630
|
+
"feature.calendar": "feature.calendar";
|
|
3617
3631
|
"feature.sales": "feature.sales";
|
|
3618
3632
|
"feature.crm": "feature.crm";
|
|
3619
3633
|
"feature.finance": "feature.finance";
|
|
@@ -3637,6 +3651,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3637
3651
|
"integration.google-sheets": "integration.google-sheets";
|
|
3638
3652
|
"integration.attio": "integration.attio";
|
|
3639
3653
|
"surface.dashboard": "surface.dashboard";
|
|
3654
|
+
"surface.calendar": "surface.calendar";
|
|
3640
3655
|
"surface.overview": "surface.overview";
|
|
3641
3656
|
"surface.command-view": "surface.command-view";
|
|
3642
3657
|
"surface.command-queue": "surface.command-queue";
|
|
@@ -3668,6 +3683,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3668
3683
|
color: z$1.ZodOptional<z$1.ZodString>;
|
|
3669
3684
|
icon: z$1.ZodOptional<z$1.ZodUnion<readonly [z$1.ZodEnum<{
|
|
3670
3685
|
"nav.dashboard": "nav.dashboard";
|
|
3686
|
+
"nav.calendar": "nav.calendar";
|
|
3671
3687
|
"nav.sales": "nav.sales";
|
|
3672
3688
|
"nav.crm": "nav.crm";
|
|
3673
3689
|
"nav.lead-gen": "nav.lead-gen";
|
|
@@ -3682,6 +3698,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3682
3698
|
"knowledge.strategy": "knowledge.strategy";
|
|
3683
3699
|
"knowledge.reference": "knowledge.reference";
|
|
3684
3700
|
"feature.dashboard": "feature.dashboard";
|
|
3701
|
+
"feature.calendar": "feature.calendar";
|
|
3685
3702
|
"feature.sales": "feature.sales";
|
|
3686
3703
|
"feature.crm": "feature.crm";
|
|
3687
3704
|
"feature.finance": "feature.finance";
|
|
@@ -3705,6 +3722,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3705
3722
|
"integration.google-sheets": "integration.google-sheets";
|
|
3706
3723
|
"integration.attio": "integration.attio";
|
|
3707
3724
|
"surface.dashboard": "surface.dashboard";
|
|
3725
|
+
"surface.calendar": "surface.calendar";
|
|
3708
3726
|
"surface.overview": "surface.overview";
|
|
3709
3727
|
"surface.command-view": "surface.command-view";
|
|
3710
3728
|
"surface.command-queue": "surface.command-queue";
|
|
@@ -3758,6 +3776,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3758
3776
|
color: z$1.ZodOptional<z$1.ZodString>;
|
|
3759
3777
|
icon: z$1.ZodOptional<z$1.ZodUnion<readonly [z$1.ZodEnum<{
|
|
3760
3778
|
"nav.dashboard": "nav.dashboard";
|
|
3779
|
+
"nav.calendar": "nav.calendar";
|
|
3761
3780
|
"nav.sales": "nav.sales";
|
|
3762
3781
|
"nav.crm": "nav.crm";
|
|
3763
3782
|
"nav.lead-gen": "nav.lead-gen";
|
|
@@ -3772,6 +3791,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3772
3791
|
"knowledge.strategy": "knowledge.strategy";
|
|
3773
3792
|
"knowledge.reference": "knowledge.reference";
|
|
3774
3793
|
"feature.dashboard": "feature.dashboard";
|
|
3794
|
+
"feature.calendar": "feature.calendar";
|
|
3775
3795
|
"feature.sales": "feature.sales";
|
|
3776
3796
|
"feature.crm": "feature.crm";
|
|
3777
3797
|
"feature.finance": "feature.finance";
|
|
@@ -3795,6 +3815,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3795
3815
|
"integration.google-sheets": "integration.google-sheets";
|
|
3796
3816
|
"integration.attio": "integration.attio";
|
|
3797
3817
|
"surface.dashboard": "surface.dashboard";
|
|
3818
|
+
"surface.calendar": "surface.calendar";
|
|
3798
3819
|
"surface.overview": "surface.overview";
|
|
3799
3820
|
"surface.command-view": "surface.command-view";
|
|
3800
3821
|
"surface.command-queue": "surface.command-queue";
|
|
@@ -3828,6 +3849,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3828
3849
|
color: z$1.ZodOptional<z$1.ZodString>;
|
|
3829
3850
|
icon: z$1.ZodOptional<z$1.ZodUnion<readonly [z$1.ZodEnum<{
|
|
3830
3851
|
"nav.dashboard": "nav.dashboard";
|
|
3852
|
+
"nav.calendar": "nav.calendar";
|
|
3831
3853
|
"nav.sales": "nav.sales";
|
|
3832
3854
|
"nav.crm": "nav.crm";
|
|
3833
3855
|
"nav.lead-gen": "nav.lead-gen";
|
|
@@ -3842,6 +3864,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3842
3864
|
"knowledge.strategy": "knowledge.strategy";
|
|
3843
3865
|
"knowledge.reference": "knowledge.reference";
|
|
3844
3866
|
"feature.dashboard": "feature.dashboard";
|
|
3867
|
+
"feature.calendar": "feature.calendar";
|
|
3845
3868
|
"feature.sales": "feature.sales";
|
|
3846
3869
|
"feature.crm": "feature.crm";
|
|
3847
3870
|
"feature.finance": "feature.finance";
|
|
@@ -3865,6 +3888,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3865
3888
|
"integration.google-sheets": "integration.google-sheets";
|
|
3866
3889
|
"integration.attio": "integration.attio";
|
|
3867
3890
|
"surface.dashboard": "surface.dashboard";
|
|
3891
|
+
"surface.calendar": "surface.calendar";
|
|
3868
3892
|
"surface.overview": "surface.overview";
|
|
3869
3893
|
"surface.command-view": "surface.command-view";
|
|
3870
3894
|
"surface.command-queue": "surface.command-queue";
|
|
@@ -3898,6 +3922,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3898
3922
|
color: z$1.ZodOptional<z$1.ZodString>;
|
|
3899
3923
|
icon: z$1.ZodOptional<z$1.ZodUnion<readonly [z$1.ZodEnum<{
|
|
3900
3924
|
"nav.dashboard": "nav.dashboard";
|
|
3925
|
+
"nav.calendar": "nav.calendar";
|
|
3901
3926
|
"nav.sales": "nav.sales";
|
|
3902
3927
|
"nav.crm": "nav.crm";
|
|
3903
3928
|
"nav.lead-gen": "nav.lead-gen";
|
|
@@ -3912,6 +3937,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3912
3937
|
"knowledge.strategy": "knowledge.strategy";
|
|
3913
3938
|
"knowledge.reference": "knowledge.reference";
|
|
3914
3939
|
"feature.dashboard": "feature.dashboard";
|
|
3940
|
+
"feature.calendar": "feature.calendar";
|
|
3915
3941
|
"feature.sales": "feature.sales";
|
|
3916
3942
|
"feature.crm": "feature.crm";
|
|
3917
3943
|
"feature.finance": "feature.finance";
|
|
@@ -3935,6 +3961,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3935
3961
|
"integration.google-sheets": "integration.google-sheets";
|
|
3936
3962
|
"integration.attio": "integration.attio";
|
|
3937
3963
|
"surface.dashboard": "surface.dashboard";
|
|
3964
|
+
"surface.calendar": "surface.calendar";
|
|
3938
3965
|
"surface.overview": "surface.overview";
|
|
3939
3966
|
"surface.command-view": "surface.command-view";
|
|
3940
3967
|
"surface.command-queue": "surface.command-queue";
|
|
@@ -4105,6 +4132,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
4105
4132
|
summary: z$1.ZodString;
|
|
4106
4133
|
icon: z$1.ZodOptional<z$1.ZodUnion<readonly [z$1.ZodEnum<{
|
|
4107
4134
|
"nav.dashboard": "nav.dashboard";
|
|
4135
|
+
"nav.calendar": "nav.calendar";
|
|
4108
4136
|
"nav.sales": "nav.sales";
|
|
4109
4137
|
"nav.crm": "nav.crm";
|
|
4110
4138
|
"nav.lead-gen": "nav.lead-gen";
|
|
@@ -4119,6 +4147,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
4119
4147
|
"knowledge.strategy": "knowledge.strategy";
|
|
4120
4148
|
"knowledge.reference": "knowledge.reference";
|
|
4121
4149
|
"feature.dashboard": "feature.dashboard";
|
|
4150
|
+
"feature.calendar": "feature.calendar";
|
|
4122
4151
|
"feature.sales": "feature.sales";
|
|
4123
4152
|
"feature.crm": "feature.crm";
|
|
4124
4153
|
"feature.finance": "feature.finance";
|
|
@@ -4142,6 +4171,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
4142
4171
|
"integration.google-sheets": "integration.google-sheets";
|
|
4143
4172
|
"integration.attio": "integration.attio";
|
|
4144
4173
|
"surface.dashboard": "surface.dashboard";
|
|
4174
|
+
"surface.calendar": "surface.calendar";
|
|
4145
4175
|
"surface.overview": "surface.overview";
|
|
4146
4176
|
"surface.command-view": "surface.command-view";
|
|
4147
4177
|
"surface.command-queue": "surface.command-queue";
|
|
@@ -4170,6 +4200,8 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
4170
4200
|
links: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
|
|
4171
4201
|
nodeId: z$1.ZodString;
|
|
4172
4202
|
}, z$1.core.$strip>>>;
|
|
4203
|
+
skills: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
4204
|
+
domain: z$1.ZodOptional<z$1.ZodString>;
|
|
4173
4205
|
ownerIds: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
4174
4206
|
updatedAt: z$1.ZodString;
|
|
4175
4207
|
}, z$1.core.$strip>>>;
|
package/dist/provider/index.js
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
export { createTestFeaturesProvider } from '../chunk-VMJVQAFZ.js';
|
|
2
|
-
export { ElevasisUIProvider } from '../chunk-
|
|
2
|
+
export { ElevasisUIProvider } from '../chunk-AYSO5A3R.js';
|
|
3
3
|
import '../chunk-LH4GPYDX.js';
|
|
4
4
|
import '../chunk-HLFFKKT3.js';
|
|
5
5
|
import '../chunk-WLOQ4IBG.js';
|
|
6
|
-
export { FeatureShell } from '../chunk-
|
|
7
|
-
import '../chunk-
|
|
6
|
+
export { FeatureShell } from '../chunk-MJMFIWEB.js';
|
|
7
|
+
import '../chunk-GJXAAYZ3.js';
|
|
8
8
|
import '../chunk-3KMDHCAR.js';
|
|
9
|
-
export { CrmActionsProvider, ElevasisCoreProvider, ListActionsProvider, NotificationProvider, useCrmActions, useListActions, useNotificationAdapter } from '../chunk-
|
|
9
|
+
export { CrmActionsProvider, ElevasisCoreProvider, ListActionsProvider, NotificationProvider, useCrmActions, useListActions, useNotificationAdapter } from '../chunk-NU5FNTOB.js';
|
|
10
10
|
import '../chunk-SZHARWKU.js';
|
|
11
11
|
export { ElevasisFeaturesProvider, useElevasisFeatures, useOptionalElevasisFeatures } from '../chunk-V3HUIZJX.js';
|
|
12
12
|
import '../chunk-TKAYX2SP.js';
|
|
13
13
|
import '../chunk-NYBEU5TE.js';
|
|
14
|
-
import '../chunk-
|
|
14
|
+
import '../chunk-ZPXV5KI3.js';
|
|
15
15
|
import '../chunk-2IFYDILW.js';
|
|
16
16
|
import '../chunk-Q7DJKLEN.js';
|
|
17
17
|
import '../chunk-GESXCQWY.js';
|
|
@@ -20,7 +20,7 @@ export { AppearanceProvider, useAppearance } from '../chunk-E565XMTQ.js';
|
|
|
20
20
|
import '../chunk-KU7ZDWQ7.js';
|
|
21
21
|
import '../chunk-DT3QYZVU.js';
|
|
22
22
|
import '../chunk-RNP5R5I3.js';
|
|
23
|
-
import '../chunk-
|
|
23
|
+
import '../chunk-SRNIHB7Y.js';
|
|
24
24
|
import '../chunk-KRWALB24.js';
|
|
25
25
|
import '../chunk-WFTNY755.js';
|
|
26
26
|
import '../chunk-WKJ47GIW.js';
|