@elevasis/core 0.15.1 → 0.17.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/index.d.ts +1662 -23
- package/dist/index.js +171 -24
- package/dist/knowledge/index.d.ts +1340 -0
- package/dist/knowledge/index.js +138 -0
- package/dist/organization-model/index.d.ts +1662 -23
- package/dist/organization-model/index.js +171 -24
- package/dist/test-utils/index.d.ts +711 -10
- package/dist/test-utils/index.js +159 -16
- package/package.json +7 -3
- package/src/__tests__/publish.test.ts +14 -13
- package/src/__tests__/template-core-compatibility.test.ts +4 -4
- package/src/_gen/__tests__/__snapshots__/contracts.md.snap +1265 -1154
- package/src/auth/multi-tenancy/index.ts +3 -0
- package/src/auth/multi-tenancy/theme-presets.ts +45 -0
- package/src/auth/multi-tenancy/types.ts +57 -83
- package/src/auth/multi-tenancy/users/api-schemas.ts +165 -194
- package/src/business/acquisition/activity-events.ts +1 -1
- package/src/business/acquisition/api-schemas.ts +1196 -1177
- package/src/business/acquisition/crm-state-actions.test.ts +139 -139
- package/src/business/acquisition/types.ts +381 -390
- package/src/business/crm/api-schemas.ts +40 -0
- package/src/business/crm/index.ts +1 -0
- package/src/business/deals/api-schemas.ts +79 -0
- package/src/business/deals/index.ts +1 -0
- package/src/business/projects/types.ts +124 -88
- package/src/execution/core/runner-types.ts +61 -80
- package/src/execution/engine/tools/integration/server/adapters/gmail/gmail-tools.ts +105 -104
- package/src/execution/engine/tools/integration/server/adapters/instantly/instantly-tools.ts +1474 -1473
- package/src/execution/engine/tools/integration/server/adapters/millionverifier/millionverifier-tools.ts +103 -102
- package/src/execution/engine/tools/integration/server/adapters/signature-api/signature-api-tools.ts +182 -179
- package/src/execution/engine/tools/integration/server/adapters/stripe/stripe-tools.ts +310 -309
- package/src/execution/engine/tools/integration/tool.ts +255 -253
- package/src/execution/engine/tools/lead-service-types.ts +895 -894
- package/src/execution/engine/tools/messages.ts +43 -0
- package/src/execution/engine/tools/platform/acquisition/types.ts +2 -1
- package/src/execution/engine/tools/platform/email/types.ts +97 -96
- package/src/execution/engine/tools/types.ts +234 -233
- package/src/execution/engine/workflow/types.ts +195 -193
- package/src/execution/external/api-schemas.ts +40 -0
- package/src/execution/external/index.ts +1 -0
- package/src/knowledge/README.md +32 -0
- package/src/knowledge/__tests__/queries.test.ts +504 -0
- package/src/knowledge/format.ts +99 -0
- package/src/knowledge/index.ts +5 -0
- package/src/knowledge/published.ts +5 -0
- package/src/knowledge/queries.ts +256 -0
- package/src/organization-model/__tests__/defaults.test.ts +172 -172
- package/src/organization-model/__tests__/foundation.test.ts +7 -7
- package/src/organization-model/__tests__/icons.test.ts +27 -0
- package/src/organization-model/__tests__/knowledge.test.ts +214 -0
- package/src/organization-model/contracts.ts +17 -15
- package/src/organization-model/defaults.ts +74 -19
- package/src/organization-model/domains/knowledge.ts +53 -0
- package/src/organization-model/domains/navigation.ts +416 -399
- package/src/organization-model/domains/shared.ts +6 -5
- package/src/organization-model/foundation.ts +10 -6
- package/src/organization-model/graph/build.ts +209 -182
- package/src/organization-model/graph/schema.ts +37 -34
- package/src/organization-model/graph/types.ts +47 -31
- package/src/organization-model/icons.ts +81 -0
- package/src/organization-model/index.ts +8 -3
- package/src/organization-model/organization-model.mdx +1 -1
- package/src/organization-model/published.ts +103 -86
- package/src/organization-model/schema.ts +90 -85
- package/src/organization-model/types.ts +40 -33
- package/src/platform/index.ts +23 -27
- package/src/platform/registry/index.ts +0 -4
- package/src/platform/registry/resource-registry.ts +0 -77
- package/src/platform/registry/serialized-types.ts +148 -219
- package/src/platform/registry/stats-types.ts +60 -60
- package/src/reference/_generated/contracts.md +1265 -1154
- package/src/platform/registry/__tests__/resource-registry.list-executable.test.ts +0 -393
|
@@ -3407,7 +3407,69 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
3407
3407
|
description: z.ZodOptional<z.ZodString>;
|
|
3408
3408
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
3409
3409
|
path: z.ZodOptional<z.ZodString>;
|
|
3410
|
-
icon: z.ZodOptional<z.
|
|
3410
|
+
icon: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
3411
|
+
"nav.dashboard": "nav.dashboard";
|
|
3412
|
+
"nav.sales": "nav.sales";
|
|
3413
|
+
"nav.crm": "nav.crm";
|
|
3414
|
+
"nav.lead-gen": "nav.lead-gen";
|
|
3415
|
+
"nav.projects": "nav.projects";
|
|
3416
|
+
"nav.operations": "nav.operations";
|
|
3417
|
+
"nav.monitoring": "nav.monitoring";
|
|
3418
|
+
"nav.knowledge": "nav.knowledge";
|
|
3419
|
+
"nav.settings": "nav.settings";
|
|
3420
|
+
"nav.admin": "nav.admin";
|
|
3421
|
+
"nav.archive": "nav.archive";
|
|
3422
|
+
"knowledge.playbook": "knowledge.playbook";
|
|
3423
|
+
"knowledge.strategy": "knowledge.strategy";
|
|
3424
|
+
"knowledge.reference": "knowledge.reference";
|
|
3425
|
+
"feature.dashboard": "feature.dashboard";
|
|
3426
|
+
"feature.sales": "feature.sales";
|
|
3427
|
+
"feature.crm": "feature.crm";
|
|
3428
|
+
"feature.finance": "feature.finance";
|
|
3429
|
+
"feature.lead-gen": "feature.lead-gen";
|
|
3430
|
+
"feature.platform": "feature.platform";
|
|
3431
|
+
"feature.projects": "feature.projects";
|
|
3432
|
+
"feature.operations": "feature.operations";
|
|
3433
|
+
"feature.knowledge": "feature.knowledge";
|
|
3434
|
+
"feature.monitoring": "feature.monitoring";
|
|
3435
|
+
"feature.settings": "feature.settings";
|
|
3436
|
+
"feature.admin": "feature.admin";
|
|
3437
|
+
"feature.archive": "feature.archive";
|
|
3438
|
+
"feature.seo": "feature.seo";
|
|
3439
|
+
"resource.agent": "resource.agent";
|
|
3440
|
+
"resource.workflow": "resource.workflow";
|
|
3441
|
+
"resource.integration": "resource.integration";
|
|
3442
|
+
"resource.database": "resource.database";
|
|
3443
|
+
"resource.user": "resource.user";
|
|
3444
|
+
"resource.team": "resource.team";
|
|
3445
|
+
"integration.gmail": "integration.gmail";
|
|
3446
|
+
"integration.google-sheets": "integration.google-sheets";
|
|
3447
|
+
"integration.attio": "integration.attio";
|
|
3448
|
+
"surface.dashboard": "surface.dashboard";
|
|
3449
|
+
"surface.overview": "surface.overview";
|
|
3450
|
+
"surface.command-view": "surface.command-view";
|
|
3451
|
+
"surface.command-queue": "surface.command-queue";
|
|
3452
|
+
"surface.pipeline": "surface.pipeline";
|
|
3453
|
+
"surface.lists": "surface.lists";
|
|
3454
|
+
"surface.resources": "surface.resources";
|
|
3455
|
+
"surface.settings": "surface.settings";
|
|
3456
|
+
"status.success": "status.success";
|
|
3457
|
+
"status.error": "status.error";
|
|
3458
|
+
"status.warning": "status.warning";
|
|
3459
|
+
"status.info": "status.info";
|
|
3460
|
+
"status.pending": "status.pending";
|
|
3461
|
+
"action.approve": "action.approve";
|
|
3462
|
+
"action.reject": "action.reject";
|
|
3463
|
+
"action.retry": "action.retry";
|
|
3464
|
+
"action.edit": "action.edit";
|
|
3465
|
+
"action.view": "action.view";
|
|
3466
|
+
"action.launch": "action.launch";
|
|
3467
|
+
"action.message": "action.message";
|
|
3468
|
+
"action.escalate": "action.escalate";
|
|
3469
|
+
"action.promote": "action.promote";
|
|
3470
|
+
"action.submit": "action.submit";
|
|
3471
|
+
"action.email": "action.email";
|
|
3472
|
+
}>, z.ZodString]>>;
|
|
3411
3473
|
color: z.ZodOptional<z.ZodString>;
|
|
3412
3474
|
uiPosition: z.ZodOptional<z.ZodEnum<{
|
|
3413
3475
|
"sidebar-primary": "sidebar-primary";
|
|
@@ -3443,7 +3505,69 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
3443
3505
|
description: z.ZodOptional<z.ZodString>;
|
|
3444
3506
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
3445
3507
|
devOnly: z.ZodOptional<z.ZodBoolean>;
|
|
3446
|
-
icon: z.ZodOptional<z.
|
|
3508
|
+
icon: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
3509
|
+
"nav.dashboard": "nav.dashboard";
|
|
3510
|
+
"nav.sales": "nav.sales";
|
|
3511
|
+
"nav.crm": "nav.crm";
|
|
3512
|
+
"nav.lead-gen": "nav.lead-gen";
|
|
3513
|
+
"nav.projects": "nav.projects";
|
|
3514
|
+
"nav.operations": "nav.operations";
|
|
3515
|
+
"nav.monitoring": "nav.monitoring";
|
|
3516
|
+
"nav.knowledge": "nav.knowledge";
|
|
3517
|
+
"nav.settings": "nav.settings";
|
|
3518
|
+
"nav.admin": "nav.admin";
|
|
3519
|
+
"nav.archive": "nav.archive";
|
|
3520
|
+
"knowledge.playbook": "knowledge.playbook";
|
|
3521
|
+
"knowledge.strategy": "knowledge.strategy";
|
|
3522
|
+
"knowledge.reference": "knowledge.reference";
|
|
3523
|
+
"feature.dashboard": "feature.dashboard";
|
|
3524
|
+
"feature.sales": "feature.sales";
|
|
3525
|
+
"feature.crm": "feature.crm";
|
|
3526
|
+
"feature.finance": "feature.finance";
|
|
3527
|
+
"feature.lead-gen": "feature.lead-gen";
|
|
3528
|
+
"feature.platform": "feature.platform";
|
|
3529
|
+
"feature.projects": "feature.projects";
|
|
3530
|
+
"feature.operations": "feature.operations";
|
|
3531
|
+
"feature.knowledge": "feature.knowledge";
|
|
3532
|
+
"feature.monitoring": "feature.monitoring";
|
|
3533
|
+
"feature.settings": "feature.settings";
|
|
3534
|
+
"feature.admin": "feature.admin";
|
|
3535
|
+
"feature.archive": "feature.archive";
|
|
3536
|
+
"feature.seo": "feature.seo";
|
|
3537
|
+
"resource.agent": "resource.agent";
|
|
3538
|
+
"resource.workflow": "resource.workflow";
|
|
3539
|
+
"resource.integration": "resource.integration";
|
|
3540
|
+
"resource.database": "resource.database";
|
|
3541
|
+
"resource.user": "resource.user";
|
|
3542
|
+
"resource.team": "resource.team";
|
|
3543
|
+
"integration.gmail": "integration.gmail";
|
|
3544
|
+
"integration.google-sheets": "integration.google-sheets";
|
|
3545
|
+
"integration.attio": "integration.attio";
|
|
3546
|
+
"surface.dashboard": "surface.dashboard";
|
|
3547
|
+
"surface.overview": "surface.overview";
|
|
3548
|
+
"surface.command-view": "surface.command-view";
|
|
3549
|
+
"surface.command-queue": "surface.command-queue";
|
|
3550
|
+
"surface.pipeline": "surface.pipeline";
|
|
3551
|
+
"surface.lists": "surface.lists";
|
|
3552
|
+
"surface.resources": "surface.resources";
|
|
3553
|
+
"surface.settings": "surface.settings";
|
|
3554
|
+
"status.success": "status.success";
|
|
3555
|
+
"status.error": "status.error";
|
|
3556
|
+
"status.warning": "status.warning";
|
|
3557
|
+
"status.info": "status.info";
|
|
3558
|
+
"status.pending": "status.pending";
|
|
3559
|
+
"action.approve": "action.approve";
|
|
3560
|
+
"action.reject": "action.reject";
|
|
3561
|
+
"action.retry": "action.retry";
|
|
3562
|
+
"action.edit": "action.edit";
|
|
3563
|
+
"action.view": "action.view";
|
|
3564
|
+
"action.launch": "action.launch";
|
|
3565
|
+
"action.message": "action.message";
|
|
3566
|
+
"action.escalate": "action.escalate";
|
|
3567
|
+
"action.promote": "action.promote";
|
|
3568
|
+
"action.submit": "action.submit";
|
|
3569
|
+
"action.email": "action.email";
|
|
3570
|
+
}>, z.ZodString]>>;
|
|
3447
3571
|
featureId: z.ZodOptional<z.ZodString>;
|
|
3448
3572
|
featureIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3449
3573
|
entityIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
@@ -3470,7 +3594,69 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
3470
3594
|
label: z.ZodString;
|
|
3471
3595
|
description: z.ZodOptional<z.ZodString>;
|
|
3472
3596
|
color: z.ZodOptional<z.ZodString>;
|
|
3473
|
-
icon: z.ZodOptional<z.
|
|
3597
|
+
icon: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
3598
|
+
"nav.dashboard": "nav.dashboard";
|
|
3599
|
+
"nav.sales": "nav.sales";
|
|
3600
|
+
"nav.crm": "nav.crm";
|
|
3601
|
+
"nav.lead-gen": "nav.lead-gen";
|
|
3602
|
+
"nav.projects": "nav.projects";
|
|
3603
|
+
"nav.operations": "nav.operations";
|
|
3604
|
+
"nav.monitoring": "nav.monitoring";
|
|
3605
|
+
"nav.knowledge": "nav.knowledge";
|
|
3606
|
+
"nav.settings": "nav.settings";
|
|
3607
|
+
"nav.admin": "nav.admin";
|
|
3608
|
+
"nav.archive": "nav.archive";
|
|
3609
|
+
"knowledge.playbook": "knowledge.playbook";
|
|
3610
|
+
"knowledge.strategy": "knowledge.strategy";
|
|
3611
|
+
"knowledge.reference": "knowledge.reference";
|
|
3612
|
+
"feature.dashboard": "feature.dashboard";
|
|
3613
|
+
"feature.sales": "feature.sales";
|
|
3614
|
+
"feature.crm": "feature.crm";
|
|
3615
|
+
"feature.finance": "feature.finance";
|
|
3616
|
+
"feature.lead-gen": "feature.lead-gen";
|
|
3617
|
+
"feature.platform": "feature.platform";
|
|
3618
|
+
"feature.projects": "feature.projects";
|
|
3619
|
+
"feature.operations": "feature.operations";
|
|
3620
|
+
"feature.knowledge": "feature.knowledge";
|
|
3621
|
+
"feature.monitoring": "feature.monitoring";
|
|
3622
|
+
"feature.settings": "feature.settings";
|
|
3623
|
+
"feature.admin": "feature.admin";
|
|
3624
|
+
"feature.archive": "feature.archive";
|
|
3625
|
+
"feature.seo": "feature.seo";
|
|
3626
|
+
"resource.agent": "resource.agent";
|
|
3627
|
+
"resource.workflow": "resource.workflow";
|
|
3628
|
+
"resource.integration": "resource.integration";
|
|
3629
|
+
"resource.database": "resource.database";
|
|
3630
|
+
"resource.user": "resource.user";
|
|
3631
|
+
"resource.team": "resource.team";
|
|
3632
|
+
"integration.gmail": "integration.gmail";
|
|
3633
|
+
"integration.google-sheets": "integration.google-sheets";
|
|
3634
|
+
"integration.attio": "integration.attio";
|
|
3635
|
+
"surface.dashboard": "surface.dashboard";
|
|
3636
|
+
"surface.overview": "surface.overview";
|
|
3637
|
+
"surface.command-view": "surface.command-view";
|
|
3638
|
+
"surface.command-queue": "surface.command-queue";
|
|
3639
|
+
"surface.pipeline": "surface.pipeline";
|
|
3640
|
+
"surface.lists": "surface.lists";
|
|
3641
|
+
"surface.resources": "surface.resources";
|
|
3642
|
+
"surface.settings": "surface.settings";
|
|
3643
|
+
"status.success": "status.success";
|
|
3644
|
+
"status.error": "status.error";
|
|
3645
|
+
"status.warning": "status.warning";
|
|
3646
|
+
"status.info": "status.info";
|
|
3647
|
+
"status.pending": "status.pending";
|
|
3648
|
+
"action.approve": "action.approve";
|
|
3649
|
+
"action.reject": "action.reject";
|
|
3650
|
+
"action.retry": "action.retry";
|
|
3651
|
+
"action.edit": "action.edit";
|
|
3652
|
+
"action.view": "action.view";
|
|
3653
|
+
"action.launch": "action.launch";
|
|
3654
|
+
"action.message": "action.message";
|
|
3655
|
+
"action.escalate": "action.escalate";
|
|
3656
|
+
"action.promote": "action.promote";
|
|
3657
|
+
"action.submit": "action.submit";
|
|
3658
|
+
"action.email": "action.email";
|
|
3659
|
+
}>, z.ZodString]>>;
|
|
3474
3660
|
id: z.ZodString;
|
|
3475
3661
|
order: z.ZodNumber;
|
|
3476
3662
|
semanticClass: z.ZodEnum<{
|
|
@@ -3494,7 +3680,69 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
3494
3680
|
label: z.ZodString;
|
|
3495
3681
|
description: z.ZodOptional<z.ZodString>;
|
|
3496
3682
|
color: z.ZodOptional<z.ZodString>;
|
|
3497
|
-
icon: z.ZodOptional<z.
|
|
3683
|
+
icon: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
3684
|
+
"nav.dashboard": "nav.dashboard";
|
|
3685
|
+
"nav.sales": "nav.sales";
|
|
3686
|
+
"nav.crm": "nav.crm";
|
|
3687
|
+
"nav.lead-gen": "nav.lead-gen";
|
|
3688
|
+
"nav.projects": "nav.projects";
|
|
3689
|
+
"nav.operations": "nav.operations";
|
|
3690
|
+
"nav.monitoring": "nav.monitoring";
|
|
3691
|
+
"nav.knowledge": "nav.knowledge";
|
|
3692
|
+
"nav.settings": "nav.settings";
|
|
3693
|
+
"nav.admin": "nav.admin";
|
|
3694
|
+
"nav.archive": "nav.archive";
|
|
3695
|
+
"knowledge.playbook": "knowledge.playbook";
|
|
3696
|
+
"knowledge.strategy": "knowledge.strategy";
|
|
3697
|
+
"knowledge.reference": "knowledge.reference";
|
|
3698
|
+
"feature.dashboard": "feature.dashboard";
|
|
3699
|
+
"feature.sales": "feature.sales";
|
|
3700
|
+
"feature.crm": "feature.crm";
|
|
3701
|
+
"feature.finance": "feature.finance";
|
|
3702
|
+
"feature.lead-gen": "feature.lead-gen";
|
|
3703
|
+
"feature.platform": "feature.platform";
|
|
3704
|
+
"feature.projects": "feature.projects";
|
|
3705
|
+
"feature.operations": "feature.operations";
|
|
3706
|
+
"feature.knowledge": "feature.knowledge";
|
|
3707
|
+
"feature.monitoring": "feature.monitoring";
|
|
3708
|
+
"feature.settings": "feature.settings";
|
|
3709
|
+
"feature.admin": "feature.admin";
|
|
3710
|
+
"feature.archive": "feature.archive";
|
|
3711
|
+
"feature.seo": "feature.seo";
|
|
3712
|
+
"resource.agent": "resource.agent";
|
|
3713
|
+
"resource.workflow": "resource.workflow";
|
|
3714
|
+
"resource.integration": "resource.integration";
|
|
3715
|
+
"resource.database": "resource.database";
|
|
3716
|
+
"resource.user": "resource.user";
|
|
3717
|
+
"resource.team": "resource.team";
|
|
3718
|
+
"integration.gmail": "integration.gmail";
|
|
3719
|
+
"integration.google-sheets": "integration.google-sheets";
|
|
3720
|
+
"integration.attio": "integration.attio";
|
|
3721
|
+
"surface.dashboard": "surface.dashboard";
|
|
3722
|
+
"surface.overview": "surface.overview";
|
|
3723
|
+
"surface.command-view": "surface.command-view";
|
|
3724
|
+
"surface.command-queue": "surface.command-queue";
|
|
3725
|
+
"surface.pipeline": "surface.pipeline";
|
|
3726
|
+
"surface.lists": "surface.lists";
|
|
3727
|
+
"surface.resources": "surface.resources";
|
|
3728
|
+
"surface.settings": "surface.settings";
|
|
3729
|
+
"status.success": "status.success";
|
|
3730
|
+
"status.error": "status.error";
|
|
3731
|
+
"status.warning": "status.warning";
|
|
3732
|
+
"status.info": "status.info";
|
|
3733
|
+
"status.pending": "status.pending";
|
|
3734
|
+
"action.approve": "action.approve";
|
|
3735
|
+
"action.reject": "action.reject";
|
|
3736
|
+
"action.retry": "action.retry";
|
|
3737
|
+
"action.edit": "action.edit";
|
|
3738
|
+
"action.view": "action.view";
|
|
3739
|
+
"action.launch": "action.launch";
|
|
3740
|
+
"action.message": "action.message";
|
|
3741
|
+
"action.escalate": "action.escalate";
|
|
3742
|
+
"action.promote": "action.promote";
|
|
3743
|
+
"action.submit": "action.submit";
|
|
3744
|
+
"action.email": "action.email";
|
|
3745
|
+
}>, z.ZodString]>>;
|
|
3498
3746
|
id: z.ZodString;
|
|
3499
3747
|
order: z.ZodNumber;
|
|
3500
3748
|
}, z.core.$strip>>;
|
|
@@ -3502,7 +3750,69 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
3502
3750
|
label: z.ZodString;
|
|
3503
3751
|
description: z.ZodOptional<z.ZodString>;
|
|
3504
3752
|
color: z.ZodOptional<z.ZodString>;
|
|
3505
|
-
icon: z.ZodOptional<z.
|
|
3753
|
+
icon: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
3754
|
+
"nav.dashboard": "nav.dashboard";
|
|
3755
|
+
"nav.sales": "nav.sales";
|
|
3756
|
+
"nav.crm": "nav.crm";
|
|
3757
|
+
"nav.lead-gen": "nav.lead-gen";
|
|
3758
|
+
"nav.projects": "nav.projects";
|
|
3759
|
+
"nav.operations": "nav.operations";
|
|
3760
|
+
"nav.monitoring": "nav.monitoring";
|
|
3761
|
+
"nav.knowledge": "nav.knowledge";
|
|
3762
|
+
"nav.settings": "nav.settings";
|
|
3763
|
+
"nav.admin": "nav.admin";
|
|
3764
|
+
"nav.archive": "nav.archive";
|
|
3765
|
+
"knowledge.playbook": "knowledge.playbook";
|
|
3766
|
+
"knowledge.strategy": "knowledge.strategy";
|
|
3767
|
+
"knowledge.reference": "knowledge.reference";
|
|
3768
|
+
"feature.dashboard": "feature.dashboard";
|
|
3769
|
+
"feature.sales": "feature.sales";
|
|
3770
|
+
"feature.crm": "feature.crm";
|
|
3771
|
+
"feature.finance": "feature.finance";
|
|
3772
|
+
"feature.lead-gen": "feature.lead-gen";
|
|
3773
|
+
"feature.platform": "feature.platform";
|
|
3774
|
+
"feature.projects": "feature.projects";
|
|
3775
|
+
"feature.operations": "feature.operations";
|
|
3776
|
+
"feature.knowledge": "feature.knowledge";
|
|
3777
|
+
"feature.monitoring": "feature.monitoring";
|
|
3778
|
+
"feature.settings": "feature.settings";
|
|
3779
|
+
"feature.admin": "feature.admin";
|
|
3780
|
+
"feature.archive": "feature.archive";
|
|
3781
|
+
"feature.seo": "feature.seo";
|
|
3782
|
+
"resource.agent": "resource.agent";
|
|
3783
|
+
"resource.workflow": "resource.workflow";
|
|
3784
|
+
"resource.integration": "resource.integration";
|
|
3785
|
+
"resource.database": "resource.database";
|
|
3786
|
+
"resource.user": "resource.user";
|
|
3787
|
+
"resource.team": "resource.team";
|
|
3788
|
+
"integration.gmail": "integration.gmail";
|
|
3789
|
+
"integration.google-sheets": "integration.google-sheets";
|
|
3790
|
+
"integration.attio": "integration.attio";
|
|
3791
|
+
"surface.dashboard": "surface.dashboard";
|
|
3792
|
+
"surface.overview": "surface.overview";
|
|
3793
|
+
"surface.command-view": "surface.command-view";
|
|
3794
|
+
"surface.command-queue": "surface.command-queue";
|
|
3795
|
+
"surface.pipeline": "surface.pipeline";
|
|
3796
|
+
"surface.lists": "surface.lists";
|
|
3797
|
+
"surface.resources": "surface.resources";
|
|
3798
|
+
"surface.settings": "surface.settings";
|
|
3799
|
+
"status.success": "status.success";
|
|
3800
|
+
"status.error": "status.error";
|
|
3801
|
+
"status.warning": "status.warning";
|
|
3802
|
+
"status.info": "status.info";
|
|
3803
|
+
"status.pending": "status.pending";
|
|
3804
|
+
"action.approve": "action.approve";
|
|
3805
|
+
"action.reject": "action.reject";
|
|
3806
|
+
"action.retry": "action.retry";
|
|
3807
|
+
"action.edit": "action.edit";
|
|
3808
|
+
"action.view": "action.view";
|
|
3809
|
+
"action.launch": "action.launch";
|
|
3810
|
+
"action.message": "action.message";
|
|
3811
|
+
"action.escalate": "action.escalate";
|
|
3812
|
+
"action.promote": "action.promote";
|
|
3813
|
+
"action.submit": "action.submit";
|
|
3814
|
+
"action.email": "action.email";
|
|
3815
|
+
}>, z.ZodString]>>;
|
|
3506
3816
|
id: z.ZodString;
|
|
3507
3817
|
order: z.ZodNumber;
|
|
3508
3818
|
}, z.core.$strip>>;
|
|
@@ -3511,13 +3821,137 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
3511
3821
|
label: z.ZodString;
|
|
3512
3822
|
description: z.ZodOptional<z.ZodString>;
|
|
3513
3823
|
color: z.ZodOptional<z.ZodString>;
|
|
3514
|
-
icon: z.ZodOptional<z.
|
|
3824
|
+
icon: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
3825
|
+
"nav.dashboard": "nav.dashboard";
|
|
3826
|
+
"nav.sales": "nav.sales";
|
|
3827
|
+
"nav.crm": "nav.crm";
|
|
3828
|
+
"nav.lead-gen": "nav.lead-gen";
|
|
3829
|
+
"nav.projects": "nav.projects";
|
|
3830
|
+
"nav.operations": "nav.operations";
|
|
3831
|
+
"nav.monitoring": "nav.monitoring";
|
|
3832
|
+
"nav.knowledge": "nav.knowledge";
|
|
3833
|
+
"nav.settings": "nav.settings";
|
|
3834
|
+
"nav.admin": "nav.admin";
|
|
3835
|
+
"nav.archive": "nav.archive";
|
|
3836
|
+
"knowledge.playbook": "knowledge.playbook";
|
|
3837
|
+
"knowledge.strategy": "knowledge.strategy";
|
|
3838
|
+
"knowledge.reference": "knowledge.reference";
|
|
3839
|
+
"feature.dashboard": "feature.dashboard";
|
|
3840
|
+
"feature.sales": "feature.sales";
|
|
3841
|
+
"feature.crm": "feature.crm";
|
|
3842
|
+
"feature.finance": "feature.finance";
|
|
3843
|
+
"feature.lead-gen": "feature.lead-gen";
|
|
3844
|
+
"feature.platform": "feature.platform";
|
|
3845
|
+
"feature.projects": "feature.projects";
|
|
3846
|
+
"feature.operations": "feature.operations";
|
|
3847
|
+
"feature.knowledge": "feature.knowledge";
|
|
3848
|
+
"feature.monitoring": "feature.monitoring";
|
|
3849
|
+
"feature.settings": "feature.settings";
|
|
3850
|
+
"feature.admin": "feature.admin";
|
|
3851
|
+
"feature.archive": "feature.archive";
|
|
3852
|
+
"feature.seo": "feature.seo";
|
|
3853
|
+
"resource.agent": "resource.agent";
|
|
3854
|
+
"resource.workflow": "resource.workflow";
|
|
3855
|
+
"resource.integration": "resource.integration";
|
|
3856
|
+
"resource.database": "resource.database";
|
|
3857
|
+
"resource.user": "resource.user";
|
|
3858
|
+
"resource.team": "resource.team";
|
|
3859
|
+
"integration.gmail": "integration.gmail";
|
|
3860
|
+
"integration.google-sheets": "integration.google-sheets";
|
|
3861
|
+
"integration.attio": "integration.attio";
|
|
3862
|
+
"surface.dashboard": "surface.dashboard";
|
|
3863
|
+
"surface.overview": "surface.overview";
|
|
3864
|
+
"surface.command-view": "surface.command-view";
|
|
3865
|
+
"surface.command-queue": "surface.command-queue";
|
|
3866
|
+
"surface.pipeline": "surface.pipeline";
|
|
3867
|
+
"surface.lists": "surface.lists";
|
|
3868
|
+
"surface.resources": "surface.resources";
|
|
3869
|
+
"surface.settings": "surface.settings";
|
|
3870
|
+
"status.success": "status.success";
|
|
3871
|
+
"status.error": "status.error";
|
|
3872
|
+
"status.warning": "status.warning";
|
|
3873
|
+
"status.info": "status.info";
|
|
3874
|
+
"status.pending": "status.pending";
|
|
3875
|
+
"action.approve": "action.approve";
|
|
3876
|
+
"action.reject": "action.reject";
|
|
3877
|
+
"action.retry": "action.retry";
|
|
3878
|
+
"action.edit": "action.edit";
|
|
3879
|
+
"action.view": "action.view";
|
|
3880
|
+
"action.launch": "action.launch";
|
|
3881
|
+
"action.message": "action.message";
|
|
3882
|
+
"action.escalate": "action.escalate";
|
|
3883
|
+
"action.promote": "action.promote";
|
|
3884
|
+
"action.submit": "action.submit";
|
|
3885
|
+
"action.email": "action.email";
|
|
3886
|
+
}>, z.ZodString]>>;
|
|
3515
3887
|
id: z.ZodString;
|
|
3516
3888
|
steps: z.ZodArray<z.ZodObject<{
|
|
3517
3889
|
label: z.ZodString;
|
|
3518
3890
|
description: z.ZodOptional<z.ZodString>;
|
|
3519
3891
|
color: z.ZodOptional<z.ZodString>;
|
|
3520
|
-
icon: z.ZodOptional<z.
|
|
3892
|
+
icon: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
3893
|
+
"nav.dashboard": "nav.dashboard";
|
|
3894
|
+
"nav.sales": "nav.sales";
|
|
3895
|
+
"nav.crm": "nav.crm";
|
|
3896
|
+
"nav.lead-gen": "nav.lead-gen";
|
|
3897
|
+
"nav.projects": "nav.projects";
|
|
3898
|
+
"nav.operations": "nav.operations";
|
|
3899
|
+
"nav.monitoring": "nav.monitoring";
|
|
3900
|
+
"nav.knowledge": "nav.knowledge";
|
|
3901
|
+
"nav.settings": "nav.settings";
|
|
3902
|
+
"nav.admin": "nav.admin";
|
|
3903
|
+
"nav.archive": "nav.archive";
|
|
3904
|
+
"knowledge.playbook": "knowledge.playbook";
|
|
3905
|
+
"knowledge.strategy": "knowledge.strategy";
|
|
3906
|
+
"knowledge.reference": "knowledge.reference";
|
|
3907
|
+
"feature.dashboard": "feature.dashboard";
|
|
3908
|
+
"feature.sales": "feature.sales";
|
|
3909
|
+
"feature.crm": "feature.crm";
|
|
3910
|
+
"feature.finance": "feature.finance";
|
|
3911
|
+
"feature.lead-gen": "feature.lead-gen";
|
|
3912
|
+
"feature.platform": "feature.platform";
|
|
3913
|
+
"feature.projects": "feature.projects";
|
|
3914
|
+
"feature.operations": "feature.operations";
|
|
3915
|
+
"feature.knowledge": "feature.knowledge";
|
|
3916
|
+
"feature.monitoring": "feature.monitoring";
|
|
3917
|
+
"feature.settings": "feature.settings";
|
|
3918
|
+
"feature.admin": "feature.admin";
|
|
3919
|
+
"feature.archive": "feature.archive";
|
|
3920
|
+
"feature.seo": "feature.seo";
|
|
3921
|
+
"resource.agent": "resource.agent";
|
|
3922
|
+
"resource.workflow": "resource.workflow";
|
|
3923
|
+
"resource.integration": "resource.integration";
|
|
3924
|
+
"resource.database": "resource.database";
|
|
3925
|
+
"resource.user": "resource.user";
|
|
3926
|
+
"resource.team": "resource.team";
|
|
3927
|
+
"integration.gmail": "integration.gmail";
|
|
3928
|
+
"integration.google-sheets": "integration.google-sheets";
|
|
3929
|
+
"integration.attio": "integration.attio";
|
|
3930
|
+
"surface.dashboard": "surface.dashboard";
|
|
3931
|
+
"surface.overview": "surface.overview";
|
|
3932
|
+
"surface.command-view": "surface.command-view";
|
|
3933
|
+
"surface.command-queue": "surface.command-queue";
|
|
3934
|
+
"surface.pipeline": "surface.pipeline";
|
|
3935
|
+
"surface.lists": "surface.lists";
|
|
3936
|
+
"surface.resources": "surface.resources";
|
|
3937
|
+
"surface.settings": "surface.settings";
|
|
3938
|
+
"status.success": "status.success";
|
|
3939
|
+
"status.error": "status.error";
|
|
3940
|
+
"status.warning": "status.warning";
|
|
3941
|
+
"status.info": "status.info";
|
|
3942
|
+
"status.pending": "status.pending";
|
|
3943
|
+
"action.approve": "action.approve";
|
|
3944
|
+
"action.reject": "action.reject";
|
|
3945
|
+
"action.retry": "action.retry";
|
|
3946
|
+
"action.edit": "action.edit";
|
|
3947
|
+
"action.view": "action.view";
|
|
3948
|
+
"action.launch": "action.launch";
|
|
3949
|
+
"action.message": "action.message";
|
|
3950
|
+
"action.escalate": "action.escalate";
|
|
3951
|
+
"action.promote": "action.promote";
|
|
3952
|
+
"action.submit": "action.submit";
|
|
3953
|
+
"action.email": "action.email";
|
|
3954
|
+
}>, z.ZodString]>>;
|
|
3521
3955
|
id: z.ZodString;
|
|
3522
3956
|
primaryEntity: z.ZodEnum<{
|
|
3523
3957
|
company: "company";
|
|
@@ -3545,7 +3979,69 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
3545
3979
|
label: z.ZodString;
|
|
3546
3980
|
description: z.ZodOptional<z.ZodString>;
|
|
3547
3981
|
color: z.ZodOptional<z.ZodString>;
|
|
3548
|
-
icon: z.ZodOptional<z.
|
|
3982
|
+
icon: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
3983
|
+
"nav.dashboard": "nav.dashboard";
|
|
3984
|
+
"nav.sales": "nav.sales";
|
|
3985
|
+
"nav.crm": "nav.crm";
|
|
3986
|
+
"nav.lead-gen": "nav.lead-gen";
|
|
3987
|
+
"nav.projects": "nav.projects";
|
|
3988
|
+
"nav.operations": "nav.operations";
|
|
3989
|
+
"nav.monitoring": "nav.monitoring";
|
|
3990
|
+
"nav.knowledge": "nav.knowledge";
|
|
3991
|
+
"nav.settings": "nav.settings";
|
|
3992
|
+
"nav.admin": "nav.admin";
|
|
3993
|
+
"nav.archive": "nav.archive";
|
|
3994
|
+
"knowledge.playbook": "knowledge.playbook";
|
|
3995
|
+
"knowledge.strategy": "knowledge.strategy";
|
|
3996
|
+
"knowledge.reference": "knowledge.reference";
|
|
3997
|
+
"feature.dashboard": "feature.dashboard";
|
|
3998
|
+
"feature.sales": "feature.sales";
|
|
3999
|
+
"feature.crm": "feature.crm";
|
|
4000
|
+
"feature.finance": "feature.finance";
|
|
4001
|
+
"feature.lead-gen": "feature.lead-gen";
|
|
4002
|
+
"feature.platform": "feature.platform";
|
|
4003
|
+
"feature.projects": "feature.projects";
|
|
4004
|
+
"feature.operations": "feature.operations";
|
|
4005
|
+
"feature.knowledge": "feature.knowledge";
|
|
4006
|
+
"feature.monitoring": "feature.monitoring";
|
|
4007
|
+
"feature.settings": "feature.settings";
|
|
4008
|
+
"feature.admin": "feature.admin";
|
|
4009
|
+
"feature.archive": "feature.archive";
|
|
4010
|
+
"feature.seo": "feature.seo";
|
|
4011
|
+
"resource.agent": "resource.agent";
|
|
4012
|
+
"resource.workflow": "resource.workflow";
|
|
4013
|
+
"resource.integration": "resource.integration";
|
|
4014
|
+
"resource.database": "resource.database";
|
|
4015
|
+
"resource.user": "resource.user";
|
|
4016
|
+
"resource.team": "resource.team";
|
|
4017
|
+
"integration.gmail": "integration.gmail";
|
|
4018
|
+
"integration.google-sheets": "integration.google-sheets";
|
|
4019
|
+
"integration.attio": "integration.attio";
|
|
4020
|
+
"surface.dashboard": "surface.dashboard";
|
|
4021
|
+
"surface.overview": "surface.overview";
|
|
4022
|
+
"surface.command-view": "surface.command-view";
|
|
4023
|
+
"surface.command-queue": "surface.command-queue";
|
|
4024
|
+
"surface.pipeline": "surface.pipeline";
|
|
4025
|
+
"surface.lists": "surface.lists";
|
|
4026
|
+
"surface.resources": "surface.resources";
|
|
4027
|
+
"surface.settings": "surface.settings";
|
|
4028
|
+
"status.success": "status.success";
|
|
4029
|
+
"status.error": "status.error";
|
|
4030
|
+
"status.warning": "status.warning";
|
|
4031
|
+
"status.info": "status.info";
|
|
4032
|
+
"status.pending": "status.pending";
|
|
4033
|
+
"action.approve": "action.approve";
|
|
4034
|
+
"action.reject": "action.reject";
|
|
4035
|
+
"action.retry": "action.retry";
|
|
4036
|
+
"action.edit": "action.edit";
|
|
4037
|
+
"action.view": "action.view";
|
|
4038
|
+
"action.launch": "action.launch";
|
|
4039
|
+
"action.message": "action.message";
|
|
4040
|
+
"action.escalate": "action.escalate";
|
|
4041
|
+
"action.promote": "action.promote";
|
|
4042
|
+
"action.submit": "action.submit";
|
|
4043
|
+
"action.email": "action.email";
|
|
4044
|
+
}>, z.ZodString]>>;
|
|
3549
4045
|
id: z.ZodString;
|
|
3550
4046
|
order: z.ZodNumber;
|
|
3551
4047
|
}, z.core.$strip>>;
|
|
@@ -3553,7 +4049,69 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
3553
4049
|
label: z.ZodString;
|
|
3554
4050
|
description: z.ZodOptional<z.ZodString>;
|
|
3555
4051
|
color: z.ZodOptional<z.ZodString>;
|
|
3556
|
-
icon: z.ZodOptional<z.
|
|
4052
|
+
icon: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
4053
|
+
"nav.dashboard": "nav.dashboard";
|
|
4054
|
+
"nav.sales": "nav.sales";
|
|
4055
|
+
"nav.crm": "nav.crm";
|
|
4056
|
+
"nav.lead-gen": "nav.lead-gen";
|
|
4057
|
+
"nav.projects": "nav.projects";
|
|
4058
|
+
"nav.operations": "nav.operations";
|
|
4059
|
+
"nav.monitoring": "nav.monitoring";
|
|
4060
|
+
"nav.knowledge": "nav.knowledge";
|
|
4061
|
+
"nav.settings": "nav.settings";
|
|
4062
|
+
"nav.admin": "nav.admin";
|
|
4063
|
+
"nav.archive": "nav.archive";
|
|
4064
|
+
"knowledge.playbook": "knowledge.playbook";
|
|
4065
|
+
"knowledge.strategy": "knowledge.strategy";
|
|
4066
|
+
"knowledge.reference": "knowledge.reference";
|
|
4067
|
+
"feature.dashboard": "feature.dashboard";
|
|
4068
|
+
"feature.sales": "feature.sales";
|
|
4069
|
+
"feature.crm": "feature.crm";
|
|
4070
|
+
"feature.finance": "feature.finance";
|
|
4071
|
+
"feature.lead-gen": "feature.lead-gen";
|
|
4072
|
+
"feature.platform": "feature.platform";
|
|
4073
|
+
"feature.projects": "feature.projects";
|
|
4074
|
+
"feature.operations": "feature.operations";
|
|
4075
|
+
"feature.knowledge": "feature.knowledge";
|
|
4076
|
+
"feature.monitoring": "feature.monitoring";
|
|
4077
|
+
"feature.settings": "feature.settings";
|
|
4078
|
+
"feature.admin": "feature.admin";
|
|
4079
|
+
"feature.archive": "feature.archive";
|
|
4080
|
+
"feature.seo": "feature.seo";
|
|
4081
|
+
"resource.agent": "resource.agent";
|
|
4082
|
+
"resource.workflow": "resource.workflow";
|
|
4083
|
+
"resource.integration": "resource.integration";
|
|
4084
|
+
"resource.database": "resource.database";
|
|
4085
|
+
"resource.user": "resource.user";
|
|
4086
|
+
"resource.team": "resource.team";
|
|
4087
|
+
"integration.gmail": "integration.gmail";
|
|
4088
|
+
"integration.google-sheets": "integration.google-sheets";
|
|
4089
|
+
"integration.attio": "integration.attio";
|
|
4090
|
+
"surface.dashboard": "surface.dashboard";
|
|
4091
|
+
"surface.overview": "surface.overview";
|
|
4092
|
+
"surface.command-view": "surface.command-view";
|
|
4093
|
+
"surface.command-queue": "surface.command-queue";
|
|
4094
|
+
"surface.pipeline": "surface.pipeline";
|
|
4095
|
+
"surface.lists": "surface.lists";
|
|
4096
|
+
"surface.resources": "surface.resources";
|
|
4097
|
+
"surface.settings": "surface.settings";
|
|
4098
|
+
"status.success": "status.success";
|
|
4099
|
+
"status.error": "status.error";
|
|
4100
|
+
"status.warning": "status.warning";
|
|
4101
|
+
"status.info": "status.info";
|
|
4102
|
+
"status.pending": "status.pending";
|
|
4103
|
+
"action.approve": "action.approve";
|
|
4104
|
+
"action.reject": "action.reject";
|
|
4105
|
+
"action.retry": "action.retry";
|
|
4106
|
+
"action.edit": "action.edit";
|
|
4107
|
+
"action.view": "action.view";
|
|
4108
|
+
"action.launch": "action.launch";
|
|
4109
|
+
"action.message": "action.message";
|
|
4110
|
+
"action.escalate": "action.escalate";
|
|
4111
|
+
"action.promote": "action.promote";
|
|
4112
|
+
"action.submit": "action.submit";
|
|
4113
|
+
"action.email": "action.email";
|
|
4114
|
+
}>, z.ZodString]>>;
|
|
3557
4115
|
id: z.ZodString;
|
|
3558
4116
|
order: z.ZodNumber;
|
|
3559
4117
|
}, z.core.$strip>>;
|
|
@@ -3561,7 +4119,69 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
3561
4119
|
label: z.ZodString;
|
|
3562
4120
|
description: z.ZodOptional<z.ZodString>;
|
|
3563
4121
|
color: z.ZodOptional<z.ZodString>;
|
|
3564
|
-
icon: z.ZodOptional<z.
|
|
4122
|
+
icon: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
4123
|
+
"nav.dashboard": "nav.dashboard";
|
|
4124
|
+
"nav.sales": "nav.sales";
|
|
4125
|
+
"nav.crm": "nav.crm";
|
|
4126
|
+
"nav.lead-gen": "nav.lead-gen";
|
|
4127
|
+
"nav.projects": "nav.projects";
|
|
4128
|
+
"nav.operations": "nav.operations";
|
|
4129
|
+
"nav.monitoring": "nav.monitoring";
|
|
4130
|
+
"nav.knowledge": "nav.knowledge";
|
|
4131
|
+
"nav.settings": "nav.settings";
|
|
4132
|
+
"nav.admin": "nav.admin";
|
|
4133
|
+
"nav.archive": "nav.archive";
|
|
4134
|
+
"knowledge.playbook": "knowledge.playbook";
|
|
4135
|
+
"knowledge.strategy": "knowledge.strategy";
|
|
4136
|
+
"knowledge.reference": "knowledge.reference";
|
|
4137
|
+
"feature.dashboard": "feature.dashboard";
|
|
4138
|
+
"feature.sales": "feature.sales";
|
|
4139
|
+
"feature.crm": "feature.crm";
|
|
4140
|
+
"feature.finance": "feature.finance";
|
|
4141
|
+
"feature.lead-gen": "feature.lead-gen";
|
|
4142
|
+
"feature.platform": "feature.platform";
|
|
4143
|
+
"feature.projects": "feature.projects";
|
|
4144
|
+
"feature.operations": "feature.operations";
|
|
4145
|
+
"feature.knowledge": "feature.knowledge";
|
|
4146
|
+
"feature.monitoring": "feature.monitoring";
|
|
4147
|
+
"feature.settings": "feature.settings";
|
|
4148
|
+
"feature.admin": "feature.admin";
|
|
4149
|
+
"feature.archive": "feature.archive";
|
|
4150
|
+
"feature.seo": "feature.seo";
|
|
4151
|
+
"resource.agent": "resource.agent";
|
|
4152
|
+
"resource.workflow": "resource.workflow";
|
|
4153
|
+
"resource.integration": "resource.integration";
|
|
4154
|
+
"resource.database": "resource.database";
|
|
4155
|
+
"resource.user": "resource.user";
|
|
4156
|
+
"resource.team": "resource.team";
|
|
4157
|
+
"integration.gmail": "integration.gmail";
|
|
4158
|
+
"integration.google-sheets": "integration.google-sheets";
|
|
4159
|
+
"integration.attio": "integration.attio";
|
|
4160
|
+
"surface.dashboard": "surface.dashboard";
|
|
4161
|
+
"surface.overview": "surface.overview";
|
|
4162
|
+
"surface.command-view": "surface.command-view";
|
|
4163
|
+
"surface.command-queue": "surface.command-queue";
|
|
4164
|
+
"surface.pipeline": "surface.pipeline";
|
|
4165
|
+
"surface.lists": "surface.lists";
|
|
4166
|
+
"surface.resources": "surface.resources";
|
|
4167
|
+
"surface.settings": "surface.settings";
|
|
4168
|
+
"status.success": "status.success";
|
|
4169
|
+
"status.error": "status.error";
|
|
4170
|
+
"status.warning": "status.warning";
|
|
4171
|
+
"status.info": "status.info";
|
|
4172
|
+
"status.pending": "status.pending";
|
|
4173
|
+
"action.approve": "action.approve";
|
|
4174
|
+
"action.reject": "action.reject";
|
|
4175
|
+
"action.retry": "action.retry";
|
|
4176
|
+
"action.edit": "action.edit";
|
|
4177
|
+
"action.view": "action.view";
|
|
4178
|
+
"action.launch": "action.launch";
|
|
4179
|
+
"action.message": "action.message";
|
|
4180
|
+
"action.escalate": "action.escalate";
|
|
4181
|
+
"action.promote": "action.promote";
|
|
4182
|
+
"action.submit": "action.submit";
|
|
4183
|
+
"action.email": "action.email";
|
|
4184
|
+
}>, z.ZodString]>>;
|
|
3565
4185
|
id: z.ZodString;
|
|
3566
4186
|
order: z.ZodNumber;
|
|
3567
4187
|
}, z.core.$strip>>;
|
|
@@ -3696,6 +4316,87 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
3696
4316
|
supportedStatusSemanticClass: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3697
4317
|
}, z.core.$strip>>>;
|
|
3698
4318
|
}, z.core.$strip>>;
|
|
4319
|
+
knowledge: z.ZodDefault<z.ZodObject<{
|
|
4320
|
+
nodes: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
4321
|
+
id: z.ZodString;
|
|
4322
|
+
kind: z.ZodEnum<{
|
|
4323
|
+
playbook: "playbook";
|
|
4324
|
+
strategy: "strategy";
|
|
4325
|
+
reference: "reference";
|
|
4326
|
+
}>;
|
|
4327
|
+
title: z.ZodString;
|
|
4328
|
+
summary: z.ZodString;
|
|
4329
|
+
icon: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
4330
|
+
"nav.dashboard": "nav.dashboard";
|
|
4331
|
+
"nav.sales": "nav.sales";
|
|
4332
|
+
"nav.crm": "nav.crm";
|
|
4333
|
+
"nav.lead-gen": "nav.lead-gen";
|
|
4334
|
+
"nav.projects": "nav.projects";
|
|
4335
|
+
"nav.operations": "nav.operations";
|
|
4336
|
+
"nav.monitoring": "nav.monitoring";
|
|
4337
|
+
"nav.knowledge": "nav.knowledge";
|
|
4338
|
+
"nav.settings": "nav.settings";
|
|
4339
|
+
"nav.admin": "nav.admin";
|
|
4340
|
+
"nav.archive": "nav.archive";
|
|
4341
|
+
"knowledge.playbook": "knowledge.playbook";
|
|
4342
|
+
"knowledge.strategy": "knowledge.strategy";
|
|
4343
|
+
"knowledge.reference": "knowledge.reference";
|
|
4344
|
+
"feature.dashboard": "feature.dashboard";
|
|
4345
|
+
"feature.sales": "feature.sales";
|
|
4346
|
+
"feature.crm": "feature.crm";
|
|
4347
|
+
"feature.finance": "feature.finance";
|
|
4348
|
+
"feature.lead-gen": "feature.lead-gen";
|
|
4349
|
+
"feature.platform": "feature.platform";
|
|
4350
|
+
"feature.projects": "feature.projects";
|
|
4351
|
+
"feature.operations": "feature.operations";
|
|
4352
|
+
"feature.knowledge": "feature.knowledge";
|
|
4353
|
+
"feature.monitoring": "feature.monitoring";
|
|
4354
|
+
"feature.settings": "feature.settings";
|
|
4355
|
+
"feature.admin": "feature.admin";
|
|
4356
|
+
"feature.archive": "feature.archive";
|
|
4357
|
+
"feature.seo": "feature.seo";
|
|
4358
|
+
"resource.agent": "resource.agent";
|
|
4359
|
+
"resource.workflow": "resource.workflow";
|
|
4360
|
+
"resource.integration": "resource.integration";
|
|
4361
|
+
"resource.database": "resource.database";
|
|
4362
|
+
"resource.user": "resource.user";
|
|
4363
|
+
"resource.team": "resource.team";
|
|
4364
|
+
"integration.gmail": "integration.gmail";
|
|
4365
|
+
"integration.google-sheets": "integration.google-sheets";
|
|
4366
|
+
"integration.attio": "integration.attio";
|
|
4367
|
+
"surface.dashboard": "surface.dashboard";
|
|
4368
|
+
"surface.overview": "surface.overview";
|
|
4369
|
+
"surface.command-view": "surface.command-view";
|
|
4370
|
+
"surface.command-queue": "surface.command-queue";
|
|
4371
|
+
"surface.pipeline": "surface.pipeline";
|
|
4372
|
+
"surface.lists": "surface.lists";
|
|
4373
|
+
"surface.resources": "surface.resources";
|
|
4374
|
+
"surface.settings": "surface.settings";
|
|
4375
|
+
"status.success": "status.success";
|
|
4376
|
+
"status.error": "status.error";
|
|
4377
|
+
"status.warning": "status.warning";
|
|
4378
|
+
"status.info": "status.info";
|
|
4379
|
+
"status.pending": "status.pending";
|
|
4380
|
+
"action.approve": "action.approve";
|
|
4381
|
+
"action.reject": "action.reject";
|
|
4382
|
+
"action.retry": "action.retry";
|
|
4383
|
+
"action.edit": "action.edit";
|
|
4384
|
+
"action.view": "action.view";
|
|
4385
|
+
"action.launch": "action.launch";
|
|
4386
|
+
"action.message": "action.message";
|
|
4387
|
+
"action.escalate": "action.escalate";
|
|
4388
|
+
"action.promote": "action.promote";
|
|
4389
|
+
"action.submit": "action.submit";
|
|
4390
|
+
"action.email": "action.email";
|
|
4391
|
+
}>, z.ZodString]>>;
|
|
4392
|
+
body: z.ZodString;
|
|
4393
|
+
links: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
4394
|
+
nodeId: z.ZodString;
|
|
4395
|
+
}, z.core.$strip>>>;
|
|
4396
|
+
ownerIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
4397
|
+
updatedAt: z.ZodString;
|
|
4398
|
+
}, z.core.$strip>>>;
|
|
4399
|
+
}, z.core.$strip>>;
|
|
3699
4400
|
}, z.core.$strip>;
|
|
3700
4401
|
|
|
3701
4402
|
type OrganizationModel = z.infer<typeof OrganizationModelSchema>;
|