@elevasis/sdk 1.25.0 → 1.26.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/cli.cjs +87 -120
- package/dist/index.d.ts +220 -50
- package/dist/index.js +4 -435
- package/dist/node/index.d.ts +46 -38
- package/dist/test-utils/index.d.ts +154 -40
- package/dist/test-utils/index.js +27 -355
- package/dist/types/worker/adapters/clickup.d.ts +22 -0
- package/dist/types/worker/adapters/index.d.ts +1 -0
- package/dist/worker/index.js +32 -354
- package/package.json +2 -2
- package/reference/_navigation.md +11 -1
- package/reference/_reference-manifest.json +70 -0
- package/reference/claude-config/rules/organization-model.md +12 -1
- package/reference/claude-config/rules/organization-os.md +12 -1
- package/reference/claude-config/skills/om/SKILL.md +13 -5
- package/reference/claude-config/skills/om/operations/codify-level-a.md +109 -100
- package/reference/claude-config/skills/om/operations/customers.md +10 -6
- package/reference/claude-config/skills/om/operations/features.md +7 -3
- package/reference/claude-config/skills/om/operations/goals.md +10 -6
- package/reference/claude-config/skills/om/operations/identity.md +8 -5
- package/reference/claude-config/skills/om/operations/labels.md +17 -1
- package/reference/claude-config/skills/om/operations/offerings.md +11 -7
- package/reference/claude-config/skills/om/operations/roles.md +11 -7
- package/reference/claude-config/skills/om/operations/techStack.md +10 -2
- package/reference/claude-config/skills/setup/SKILL.md +2 -2
- package/reference/claude-config/sync-notes/2026-05-20-om-define-helpers.md +32 -0
- package/reference/claude-config/sync-notes/2026-05-22-access-model-and-right-panel.md +43 -0
- package/reference/claude-config/sync-notes/2026-05-22-lead-gen-tenant-config.md +40 -0
- package/reference/claude-config/sync-notes/2026-05-22-org-model-multi-file-split.md +61 -0
- package/reference/claude-config/sync-notes/2026-05-23-branding-names-to-identity.md +49 -0
- package/reference/claude-config/sync-notes/2026-05-23-om-deployment-drift-detection.md +42 -0
- package/reference/cli-management.mdx +541 -0
- package/reference/cli.mdx +4 -532
- package/reference/concepts.mdx +134 -146
- package/reference/deployment/api.mdx +296 -297
- package/reference/deployment/command-center.mdx +208 -209
- package/reference/deployment/index.mdx +194 -195
- package/reference/deployment/provided-features.mdx +110 -107
- package/reference/deployment/ui-execution.mdx +249 -250
- package/reference/examples/organization-model.ts +14 -4
- package/reference/framework/index.mdx +111 -195
- package/reference/framework/resource-documentation.mdx +90 -0
- package/reference/framework/tutorial-system.mdx +135 -135
- package/reference/getting-started.mdx +141 -142
- package/reference/index.mdx +95 -106
- package/reference/packages/ui/src/auth/README.md +6 -6
- package/reference/platform-tools/adapters-integration.mdx +300 -301
- package/reference/platform-tools/adapters-platform.mdx +552 -553
- package/reference/platform-tools/index.mdx +216 -217
- package/reference/platform-tools/type-safety.mdx +82 -82
- package/reference/resources/index.mdx +348 -349
- package/reference/resources/patterns.mdx +446 -449
- package/reference/resources/types.mdx +115 -116
- package/reference/roadmap.mdx +164 -165
- package/reference/rules/organization-model.md +14 -0
- package/reference/runtime.mdx +172 -173
- package/reference/scaffold/operations/propagation-pipeline.md +1 -1
- package/reference/scaffold/recipes/extend-lead-gen.md +130 -77
- package/reference/scaffold/reference/contracts.md +376 -446
- package/reference/scaffold/reference/glossary.md +8 -6
- package/reference/scaffold/ui/feature-flags-and-gating.md +59 -46
- package/reference/scaffold/ui/feature-shell.mdx +11 -11
- package/reference/scaffold/ui/recipes.md +24 -24
- package/reference/troubleshooting.mdx +222 -223
package/dist/index.d.ts
CHANGED
|
@@ -503,8 +503,8 @@ interface ModelConfig {
|
|
|
503
503
|
}
|
|
504
504
|
|
|
505
505
|
declare const ResourceGovernanceStatusSchema: z.ZodEnum<{
|
|
506
|
-
deprecated: "deprecated";
|
|
507
506
|
active: "active";
|
|
507
|
+
deprecated: "deprecated";
|
|
508
508
|
archived: "archived";
|
|
509
509
|
}>;
|
|
510
510
|
declare const WorkflowResourceEntrySchema$1: z.ZodObject<{
|
|
@@ -515,8 +515,8 @@ declare const WorkflowResourceEntrySchema$1: z.ZodObject<{
|
|
|
515
515
|
description: z.ZodOptional<z.ZodString>;
|
|
516
516
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
517
517
|
status: z.ZodEnum<{
|
|
518
|
-
deprecated: "deprecated";
|
|
519
518
|
active: "active";
|
|
519
|
+
deprecated: "deprecated";
|
|
520
520
|
archived: "archived";
|
|
521
521
|
}>;
|
|
522
522
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
@@ -534,12 +534,12 @@ declare const WorkflowResourceEntrySchema$1: z.ZodObject<{
|
|
|
534
534
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
535
535
|
path: z.ZodString;
|
|
536
536
|
role: z.ZodEnum<{
|
|
537
|
-
config: "config";
|
|
538
537
|
entrypoint: "entrypoint";
|
|
539
538
|
handler: "handler";
|
|
540
539
|
schema: "schema";
|
|
541
540
|
test: "test";
|
|
542
541
|
docs: "docs";
|
|
542
|
+
config: "config";
|
|
543
543
|
}>;
|
|
544
544
|
symbol: z.ZodOptional<z.ZodString>;
|
|
545
545
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -550,10 +550,10 @@ declare const WorkflowResourceEntrySchema$1: z.ZodObject<{
|
|
|
550
550
|
label: z.ZodString;
|
|
551
551
|
payloadSchema: z.ZodOptional<z.ZodString>;
|
|
552
552
|
lifecycle: z.ZodOptional<z.ZodEnum<{
|
|
553
|
+
active: "active";
|
|
553
554
|
deprecated: "deprecated";
|
|
554
555
|
draft: "draft";
|
|
555
556
|
beta: "beta";
|
|
556
|
-
active: "active";
|
|
557
557
|
archived: "archived";
|
|
558
558
|
}>>;
|
|
559
559
|
}, z.core.$strip>>>;
|
|
@@ -566,8 +566,8 @@ declare const AgentResourceEntrySchema: z.ZodObject<{
|
|
|
566
566
|
description: z.ZodOptional<z.ZodString>;
|
|
567
567
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
568
568
|
status: z.ZodEnum<{
|
|
569
|
-
deprecated: "deprecated";
|
|
570
569
|
active: "active";
|
|
570
|
+
deprecated: "deprecated";
|
|
571
571
|
archived: "archived";
|
|
572
572
|
}>;
|
|
573
573
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
@@ -585,12 +585,12 @@ declare const AgentResourceEntrySchema: z.ZodObject<{
|
|
|
585
585
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
586
586
|
path: z.ZodString;
|
|
587
587
|
role: z.ZodEnum<{
|
|
588
|
-
config: "config";
|
|
589
588
|
entrypoint: "entrypoint";
|
|
590
589
|
handler: "handler";
|
|
591
590
|
schema: "schema";
|
|
592
591
|
test: "test";
|
|
593
592
|
docs: "docs";
|
|
593
|
+
config: "config";
|
|
594
594
|
}>;
|
|
595
595
|
symbol: z.ZodOptional<z.ZodString>;
|
|
596
596
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -632,10 +632,10 @@ declare const AgentResourceEntrySchema: z.ZodObject<{
|
|
|
632
632
|
label: z.ZodString;
|
|
633
633
|
payloadSchema: z.ZodOptional<z.ZodString>;
|
|
634
634
|
lifecycle: z.ZodOptional<z.ZodEnum<{
|
|
635
|
+
active: "active";
|
|
635
636
|
deprecated: "deprecated";
|
|
636
637
|
draft: "draft";
|
|
637
638
|
beta: "beta";
|
|
638
|
-
active: "active";
|
|
639
639
|
archived: "archived";
|
|
640
640
|
}>>;
|
|
641
641
|
}, z.core.$strip>>>;
|
|
@@ -648,8 +648,8 @@ declare const ResourceEntrySchema$1: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
648
648
|
description: z.ZodOptional<z.ZodString>;
|
|
649
649
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
650
650
|
status: z.ZodEnum<{
|
|
651
|
-
deprecated: "deprecated";
|
|
652
651
|
active: "active";
|
|
652
|
+
deprecated: "deprecated";
|
|
653
653
|
archived: "archived";
|
|
654
654
|
}>;
|
|
655
655
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
@@ -667,12 +667,12 @@ declare const ResourceEntrySchema$1: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
667
667
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
668
668
|
path: z.ZodString;
|
|
669
669
|
role: z.ZodEnum<{
|
|
670
|
-
config: "config";
|
|
671
670
|
entrypoint: "entrypoint";
|
|
672
671
|
handler: "handler";
|
|
673
672
|
schema: "schema";
|
|
674
673
|
test: "test";
|
|
675
674
|
docs: "docs";
|
|
675
|
+
config: "config";
|
|
676
676
|
}>;
|
|
677
677
|
symbol: z.ZodOptional<z.ZodString>;
|
|
678
678
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -683,10 +683,10 @@ declare const ResourceEntrySchema$1: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
683
683
|
label: z.ZodString;
|
|
684
684
|
payloadSchema: z.ZodOptional<z.ZodString>;
|
|
685
685
|
lifecycle: z.ZodOptional<z.ZodEnum<{
|
|
686
|
+
active: "active";
|
|
686
687
|
deprecated: "deprecated";
|
|
687
688
|
draft: "draft";
|
|
688
689
|
beta: "beta";
|
|
689
|
-
active: "active";
|
|
690
690
|
archived: "archived";
|
|
691
691
|
}>>;
|
|
692
692
|
}, z.core.$strip>>>;
|
|
@@ -698,8 +698,8 @@ declare const ResourceEntrySchema$1: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
698
698
|
description: z.ZodOptional<z.ZodString>;
|
|
699
699
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
700
700
|
status: z.ZodEnum<{
|
|
701
|
-
deprecated: "deprecated";
|
|
702
701
|
active: "active";
|
|
702
|
+
deprecated: "deprecated";
|
|
703
703
|
archived: "archived";
|
|
704
704
|
}>;
|
|
705
705
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
@@ -717,12 +717,12 @@ declare const ResourceEntrySchema$1: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
717
717
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
718
718
|
path: z.ZodString;
|
|
719
719
|
role: z.ZodEnum<{
|
|
720
|
-
config: "config";
|
|
721
720
|
entrypoint: "entrypoint";
|
|
722
721
|
handler: "handler";
|
|
723
722
|
schema: "schema";
|
|
724
723
|
test: "test";
|
|
725
724
|
docs: "docs";
|
|
725
|
+
config: "config";
|
|
726
726
|
}>;
|
|
727
727
|
symbol: z.ZodOptional<z.ZodString>;
|
|
728
728
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -764,10 +764,10 @@ declare const ResourceEntrySchema$1: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
764
764
|
label: z.ZodString;
|
|
765
765
|
payloadSchema: z.ZodOptional<z.ZodString>;
|
|
766
766
|
lifecycle: z.ZodOptional<z.ZodEnum<{
|
|
767
|
+
active: "active";
|
|
767
768
|
deprecated: "deprecated";
|
|
768
769
|
draft: "draft";
|
|
769
770
|
beta: "beta";
|
|
770
|
-
active: "active";
|
|
771
771
|
archived: "archived";
|
|
772
772
|
}>>;
|
|
773
773
|
}, z.core.$strip>>>;
|
|
@@ -779,8 +779,8 @@ declare const ResourceEntrySchema$1: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
779
779
|
description: z.ZodOptional<z.ZodString>;
|
|
780
780
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
781
781
|
status: z.ZodEnum<{
|
|
782
|
-
deprecated: "deprecated";
|
|
783
782
|
active: "active";
|
|
783
|
+
deprecated: "deprecated";
|
|
784
784
|
archived: "archived";
|
|
785
785
|
}>;
|
|
786
786
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
@@ -798,12 +798,12 @@ declare const ResourceEntrySchema$1: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
798
798
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
799
799
|
path: z.ZodString;
|
|
800
800
|
role: z.ZodEnum<{
|
|
801
|
-
config: "config";
|
|
802
801
|
entrypoint: "entrypoint";
|
|
803
802
|
handler: "handler";
|
|
804
803
|
schema: "schema";
|
|
805
804
|
test: "test";
|
|
806
805
|
docs: "docs";
|
|
806
|
+
config: "config";
|
|
807
807
|
}>;
|
|
808
808
|
symbol: z.ZodOptional<z.ZodString>;
|
|
809
809
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -818,8 +818,8 @@ declare const ResourceEntrySchema$1: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
818
818
|
description: z.ZodOptional<z.ZodString>;
|
|
819
819
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
820
820
|
status: z.ZodEnum<{
|
|
821
|
-
deprecated: "deprecated";
|
|
822
821
|
active: "active";
|
|
822
|
+
deprecated: "deprecated";
|
|
823
823
|
archived: "archived";
|
|
824
824
|
}>;
|
|
825
825
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
@@ -837,12 +837,12 @@ declare const ResourceEntrySchema$1: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
837
837
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
838
838
|
path: z.ZodString;
|
|
839
839
|
role: z.ZodEnum<{
|
|
840
|
-
config: "config";
|
|
841
840
|
entrypoint: "entrypoint";
|
|
842
841
|
handler: "handler";
|
|
843
842
|
schema: "schema";
|
|
844
843
|
test: "test";
|
|
845
844
|
docs: "docs";
|
|
845
|
+
config: "config";
|
|
846
846
|
}>;
|
|
847
847
|
symbol: z.ZodOptional<z.ZodString>;
|
|
848
848
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -2884,6 +2884,51 @@ type Database = {
|
|
|
2884
2884
|
}
|
|
2885
2885
|
];
|
|
2886
2886
|
};
|
|
2887
|
+
deployment_organization_models: {
|
|
2888
|
+
Row: {
|
|
2889
|
+
created_at: string;
|
|
2890
|
+
deployment_id: string;
|
|
2891
|
+
model_hash: string | null;
|
|
2892
|
+
organization_id: string;
|
|
2893
|
+
organization_model: Json;
|
|
2894
|
+
schema_version: string;
|
|
2895
|
+
updated_at: string;
|
|
2896
|
+
};
|
|
2897
|
+
Insert: {
|
|
2898
|
+
created_at?: string;
|
|
2899
|
+
deployment_id: string;
|
|
2900
|
+
model_hash?: string | null;
|
|
2901
|
+
organization_id: string;
|
|
2902
|
+
organization_model: Json;
|
|
2903
|
+
schema_version?: string;
|
|
2904
|
+
updated_at?: string;
|
|
2905
|
+
};
|
|
2906
|
+
Update: {
|
|
2907
|
+
created_at?: string;
|
|
2908
|
+
deployment_id?: string;
|
|
2909
|
+
model_hash?: string | null;
|
|
2910
|
+
organization_id?: string;
|
|
2911
|
+
organization_model?: Json;
|
|
2912
|
+
schema_version?: string;
|
|
2913
|
+
updated_at?: string;
|
|
2914
|
+
};
|
|
2915
|
+
Relationships: [
|
|
2916
|
+
{
|
|
2917
|
+
foreignKeyName: "deployment_organization_models_deployment_id_fkey";
|
|
2918
|
+
columns: ["deployment_id"];
|
|
2919
|
+
isOneToOne: true;
|
|
2920
|
+
referencedRelation: "deployments";
|
|
2921
|
+
referencedColumns: ["id"];
|
|
2922
|
+
},
|
|
2923
|
+
{
|
|
2924
|
+
foreignKeyName: "deployment_organization_models_organization_id_fkey";
|
|
2925
|
+
columns: ["organization_id"];
|
|
2926
|
+
isOneToOne: false;
|
|
2927
|
+
referencedRelation: "organizations";
|
|
2928
|
+
referencedColumns: ["id"];
|
|
2929
|
+
}
|
|
2930
|
+
];
|
|
2931
|
+
};
|
|
2887
2932
|
deployments: {
|
|
2888
2933
|
Row: {
|
|
2889
2934
|
created_at: string;
|
|
@@ -4206,6 +4251,7 @@ type Database = {
|
|
|
4206
4251
|
title: string | null;
|
|
4207
4252
|
updated_at: string;
|
|
4208
4253
|
user_id: string;
|
|
4254
|
+
visibility: string;
|
|
4209
4255
|
};
|
|
4210
4256
|
Insert: {
|
|
4211
4257
|
content: string;
|
|
@@ -4220,6 +4266,7 @@ type Database = {
|
|
|
4220
4266
|
title?: string | null;
|
|
4221
4267
|
updated_at?: string;
|
|
4222
4268
|
user_id: string;
|
|
4269
|
+
visibility?: string;
|
|
4223
4270
|
};
|
|
4224
4271
|
Update: {
|
|
4225
4272
|
content?: string;
|
|
@@ -4234,6 +4281,7 @@ type Database = {
|
|
|
4234
4281
|
title?: string | null;
|
|
4235
4282
|
updated_at?: string;
|
|
4236
4283
|
user_id?: string;
|
|
4284
|
+
visibility?: string;
|
|
4237
4285
|
};
|
|
4238
4286
|
Relationships: [
|
|
4239
4287
|
{
|
|
@@ -4402,6 +4450,12 @@ type Database = {
|
|
|
4402
4450
|
Args: never;
|
|
4403
4451
|
Returns: boolean;
|
|
4404
4452
|
};
|
|
4453
|
+
current_user_shares_org_with: {
|
|
4454
|
+
Args: {
|
|
4455
|
+
other_user_id: string;
|
|
4456
|
+
};
|
|
4457
|
+
Returns: boolean;
|
|
4458
|
+
};
|
|
4405
4459
|
current_user_supabase_id: {
|
|
4406
4460
|
Args: never;
|
|
4407
4461
|
Returns: string;
|
|
@@ -4441,6 +4495,20 @@ type Database = {
|
|
|
4441
4495
|
Args: never;
|
|
4442
4496
|
Returns: string;
|
|
4443
4497
|
};
|
|
4498
|
+
has_org_access: {
|
|
4499
|
+
Args: {
|
|
4500
|
+
action?: string;
|
|
4501
|
+
org_id: string;
|
|
4502
|
+
system_path: string;
|
|
4503
|
+
};
|
|
4504
|
+
Returns: boolean;
|
|
4505
|
+
} | {
|
|
4506
|
+
Args: {
|
|
4507
|
+
action?: string;
|
|
4508
|
+
system_path: string;
|
|
4509
|
+
};
|
|
4510
|
+
Returns: boolean;
|
|
4511
|
+
};
|
|
4444
4512
|
has_org_permission: {
|
|
4445
4513
|
Args: {
|
|
4446
4514
|
org_id: string;
|
|
@@ -5338,6 +5406,10 @@ declare const PipelineStageSchema: z.ZodObject<{
|
|
|
5338
5406
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
5339
5407
|
order: z.ZodOptional<z.ZodNumber>;
|
|
5340
5408
|
}, z.core.$strip>;
|
|
5409
|
+
declare const DataModeSchema: z.ZodEnum<{
|
|
5410
|
+
mock: "mock";
|
|
5411
|
+
live: "live";
|
|
5412
|
+
}>;
|
|
5341
5413
|
declare const BuildPlanSnapshotStepSchema: z.ZodObject<{
|
|
5342
5414
|
id: z.ZodString;
|
|
5343
5415
|
label: z.ZodString;
|
|
@@ -5413,6 +5485,7 @@ declare const BuildPlanSnapshotStepSchema: z.ZodObject<{
|
|
|
5413
5485
|
}, z.core.$strip>>>;
|
|
5414
5486
|
}, z.core.$strip>;
|
|
5415
5487
|
type PipelineStage = z.infer<typeof PipelineStageSchema>;
|
|
5488
|
+
type DataMode = z.infer<typeof DataModeSchema>;
|
|
5416
5489
|
type ProcessingStageStatus = z.infer<typeof ProcessingStageStatusSchema>;
|
|
5417
5490
|
|
|
5418
5491
|
/** Raw database row type for acq_deals table */
|
|
@@ -5518,7 +5591,8 @@ interface IcpRubric {
|
|
|
5518
5591
|
[key: string]: unknown;
|
|
5519
5592
|
}
|
|
5520
5593
|
interface PipelineConfig {
|
|
5521
|
-
stages
|
|
5594
|
+
stages?: PipelineStage[];
|
|
5595
|
+
dataMode?: DataMode;
|
|
5522
5596
|
}
|
|
5523
5597
|
type BuildPlanSnapshotPrimaryEntity = 'company' | 'contact';
|
|
5524
5598
|
type BuildPlanSnapshotOutput = 'company' | 'contact' | 'export';
|
|
@@ -6072,6 +6146,7 @@ interface UpdateCompanyStageParams {
|
|
|
6072
6146
|
companyId: string;
|
|
6073
6147
|
stage: string;
|
|
6074
6148
|
status?: ProcessingStageStatus;
|
|
6149
|
+
data?: unknown;
|
|
6075
6150
|
executionId?: string;
|
|
6076
6151
|
}
|
|
6077
6152
|
interface UpdateContactStageParams {
|
|
@@ -6080,8 +6155,21 @@ interface UpdateContactStageParams {
|
|
|
6080
6155
|
contactId: string;
|
|
6081
6156
|
stage: string;
|
|
6082
6157
|
status?: ProcessingStageStatus;
|
|
6158
|
+
data?: unknown;
|
|
6083
6159
|
executionId?: string;
|
|
6084
6160
|
}
|
|
6161
|
+
interface ClearCompanyStagesParams {
|
|
6162
|
+
organizationId: string;
|
|
6163
|
+
listId: string;
|
|
6164
|
+
companyId: string;
|
|
6165
|
+
stages: string[];
|
|
6166
|
+
}
|
|
6167
|
+
interface ClearContactStagesParams {
|
|
6168
|
+
organizationId: string;
|
|
6169
|
+
listId: string;
|
|
6170
|
+
contactId: string;
|
|
6171
|
+
stages: string[];
|
|
6172
|
+
}
|
|
6085
6173
|
interface ListPendingCompanyIdsParams {
|
|
6086
6174
|
organizationId: string;
|
|
6087
6175
|
listId: string;
|
|
@@ -6616,9 +6704,9 @@ declare const SurfaceTypeSchema: z.ZodEnum<{
|
|
|
6616
6704
|
dashboard: "dashboard";
|
|
6617
6705
|
settings: "settings";
|
|
6618
6706
|
graph: "graph";
|
|
6619
|
-
list: "list";
|
|
6620
6707
|
page: "page";
|
|
6621
6708
|
detail: "detail";
|
|
6709
|
+
list: "list";
|
|
6622
6710
|
}>;
|
|
6623
6711
|
interface SidebarSurfaceNode {
|
|
6624
6712
|
type: 'surface';
|
|
@@ -6650,10 +6738,10 @@ type SidebarNode = SidebarSurfaceNode | SidebarGroupNode;
|
|
|
6650
6738
|
declare const LinkSchema: z.ZodObject<{
|
|
6651
6739
|
nodeId: z.ZodString;
|
|
6652
6740
|
kind: z.ZodEnum<{
|
|
6653
|
-
links: "links";
|
|
6654
6741
|
affects: "affects";
|
|
6655
|
-
effects: "effects";
|
|
6656
6742
|
actions: "actions";
|
|
6743
|
+
effects: "effects";
|
|
6744
|
+
links: "links";
|
|
6657
6745
|
reads: "reads";
|
|
6658
6746
|
writes: "writes";
|
|
6659
6747
|
emits: "emits";
|
|
@@ -6854,7 +6942,11 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
6854
6942
|
light: z.ZodOptional<z.ZodString>;
|
|
6855
6943
|
dark: z.ZodOptional<z.ZodString>;
|
|
6856
6944
|
}, z.core.$strip>>;
|
|
6857
|
-
|
|
6945
|
+
voice: z.ZodOptional<z.ZodString>;
|
|
6946
|
+
tagline: z.ZodOptional<z.ZodString>;
|
|
6947
|
+
values: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6948
|
+
themePresetId: z.ZodOptional<z.ZodString>;
|
|
6949
|
+
}, z.core.$loose>>;
|
|
6858
6950
|
navigation: z.ZodDefault<z.ZodObject<{
|
|
6859
6951
|
sidebar: z.ZodDefault<z.ZodObject<{
|
|
6860
6952
|
primary: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodType<SidebarNode, unknown, z.core.$ZodTypeInternals<SidebarNode, unknown>>>>;
|
|
@@ -6901,7 +6993,11 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
6901
6993
|
}, z.core.$strip>>;
|
|
6902
6994
|
}, z.core.$strip>>;
|
|
6903
6995
|
clientBrief: z.ZodDefault<z.ZodString>;
|
|
6904
|
-
|
|
6996
|
+
organizationName: z.ZodOptional<z.ZodString>;
|
|
6997
|
+
productName: z.ZodOptional<z.ZodString>;
|
|
6998
|
+
shortName: z.ZodOptional<z.ZodString>;
|
|
6999
|
+
description: z.ZodOptional<z.ZodString>;
|
|
7000
|
+
}, z.core.$loose>>;
|
|
6905
7001
|
customers: z.ZodDefault<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
6906
7002
|
id: z.ZodString;
|
|
6907
7003
|
order: z.ZodNumber;
|
|
@@ -7075,8 +7171,8 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
7075
7171
|
description: z.ZodOptional<z.ZodString>;
|
|
7076
7172
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
7077
7173
|
status: z.ZodEnum<{
|
|
7078
|
-
deprecated: "deprecated";
|
|
7079
7174
|
active: "active";
|
|
7175
|
+
deprecated: "deprecated";
|
|
7080
7176
|
archived: "archived";
|
|
7081
7177
|
}>;
|
|
7082
7178
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
@@ -7094,12 +7190,12 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
7094
7190
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
7095
7191
|
path: z.ZodString;
|
|
7096
7192
|
role: z.ZodEnum<{
|
|
7097
|
-
config: "config";
|
|
7098
7193
|
entrypoint: "entrypoint";
|
|
7099
7194
|
handler: "handler";
|
|
7100
7195
|
schema: "schema";
|
|
7101
7196
|
test: "test";
|
|
7102
7197
|
docs: "docs";
|
|
7198
|
+
config: "config";
|
|
7103
7199
|
}>;
|
|
7104
7200
|
symbol: z.ZodOptional<z.ZodString>;
|
|
7105
7201
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -7110,10 +7206,10 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
7110
7206
|
label: z.ZodString;
|
|
7111
7207
|
payloadSchema: z.ZodOptional<z.ZodString>;
|
|
7112
7208
|
lifecycle: z.ZodOptional<z.ZodEnum<{
|
|
7209
|
+
active: "active";
|
|
7113
7210
|
deprecated: "deprecated";
|
|
7114
7211
|
draft: "draft";
|
|
7115
7212
|
beta: "beta";
|
|
7116
|
-
active: "active";
|
|
7117
7213
|
archived: "archived";
|
|
7118
7214
|
}>>;
|
|
7119
7215
|
}, z.core.$strip>>>;
|
|
@@ -7125,8 +7221,8 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
7125
7221
|
description: z.ZodOptional<z.ZodString>;
|
|
7126
7222
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
7127
7223
|
status: z.ZodEnum<{
|
|
7128
|
-
deprecated: "deprecated";
|
|
7129
7224
|
active: "active";
|
|
7225
|
+
deprecated: "deprecated";
|
|
7130
7226
|
archived: "archived";
|
|
7131
7227
|
}>;
|
|
7132
7228
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
@@ -7144,12 +7240,12 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
7144
7240
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
7145
7241
|
path: z.ZodString;
|
|
7146
7242
|
role: z.ZodEnum<{
|
|
7147
|
-
config: "config";
|
|
7148
7243
|
entrypoint: "entrypoint";
|
|
7149
7244
|
handler: "handler";
|
|
7150
7245
|
schema: "schema";
|
|
7151
7246
|
test: "test";
|
|
7152
7247
|
docs: "docs";
|
|
7248
|
+
config: "config";
|
|
7153
7249
|
}>;
|
|
7154
7250
|
symbol: z.ZodOptional<z.ZodString>;
|
|
7155
7251
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -7191,10 +7287,10 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
7191
7287
|
label: z.ZodString;
|
|
7192
7288
|
payloadSchema: z.ZodOptional<z.ZodString>;
|
|
7193
7289
|
lifecycle: z.ZodOptional<z.ZodEnum<{
|
|
7290
|
+
active: "active";
|
|
7194
7291
|
deprecated: "deprecated";
|
|
7195
7292
|
draft: "draft";
|
|
7196
7293
|
beta: "beta";
|
|
7197
|
-
active: "active";
|
|
7198
7294
|
archived: "archived";
|
|
7199
7295
|
}>>;
|
|
7200
7296
|
}, z.core.$strip>>>;
|
|
@@ -7206,8 +7302,8 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
7206
7302
|
description: z.ZodOptional<z.ZodString>;
|
|
7207
7303
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
7208
7304
|
status: z.ZodEnum<{
|
|
7209
|
-
deprecated: "deprecated";
|
|
7210
7305
|
active: "active";
|
|
7306
|
+
deprecated: "deprecated";
|
|
7211
7307
|
archived: "archived";
|
|
7212
7308
|
}>;
|
|
7213
7309
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
@@ -7225,12 +7321,12 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
7225
7321
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
7226
7322
|
path: z.ZodString;
|
|
7227
7323
|
role: z.ZodEnum<{
|
|
7228
|
-
config: "config";
|
|
7229
7324
|
entrypoint: "entrypoint";
|
|
7230
7325
|
handler: "handler";
|
|
7231
7326
|
schema: "schema";
|
|
7232
7327
|
test: "test";
|
|
7233
7328
|
docs: "docs";
|
|
7329
|
+
config: "config";
|
|
7234
7330
|
}>;
|
|
7235
7331
|
symbol: z.ZodOptional<z.ZodString>;
|
|
7236
7332
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -7245,8 +7341,8 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
7245
7341
|
description: z.ZodOptional<z.ZodString>;
|
|
7246
7342
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
7247
7343
|
status: z.ZodEnum<{
|
|
7248
|
-
deprecated: "deprecated";
|
|
7249
7344
|
active: "active";
|
|
7345
|
+
deprecated: "deprecated";
|
|
7250
7346
|
archived: "archived";
|
|
7251
7347
|
}>;
|
|
7252
7348
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
@@ -7264,12 +7360,12 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
7264
7360
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
7265
7361
|
path: z.ZodString;
|
|
7266
7362
|
role: z.ZodEnum<{
|
|
7267
|
-
config: "config";
|
|
7268
7363
|
entrypoint: "entrypoint";
|
|
7269
7364
|
handler: "handler";
|
|
7270
7365
|
schema: "schema";
|
|
7271
7366
|
test: "test";
|
|
7272
7367
|
docs: "docs";
|
|
7368
|
+
config: "config";
|
|
7273
7369
|
}>;
|
|
7274
7370
|
symbol: z.ZodOptional<z.ZodString>;
|
|
7275
7371
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -7383,10 +7479,10 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
7383
7479
|
}, z.core.$strip>], "kind">>>;
|
|
7384
7480
|
knowledge: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString>>>;
|
|
7385
7481
|
lifecycle: z.ZodDefault<z.ZodEnum<{
|
|
7482
|
+
active: "active";
|
|
7386
7483
|
deprecated: "deprecated";
|
|
7387
7484
|
draft: "draft";
|
|
7388
7485
|
beta: "beta";
|
|
7389
|
-
active: "active";
|
|
7390
7486
|
archived: "archived";
|
|
7391
7487
|
}>>;
|
|
7392
7488
|
}, z.core.$strip>>>>;
|
|
@@ -7464,10 +7560,10 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
7464
7560
|
roleIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
7465
7561
|
}, z.core.$strip>>;
|
|
7466
7562
|
lifecycle: z.ZodDefault<z.ZodEnum<{
|
|
7563
|
+
active: "active";
|
|
7467
7564
|
deprecated: "deprecated";
|
|
7468
7565
|
draft: "draft";
|
|
7469
7566
|
beta: "beta";
|
|
7470
|
-
active: "active";
|
|
7471
7567
|
archived: "archived";
|
|
7472
7568
|
}>>;
|
|
7473
7569
|
}, z.core.$strip>>>>;
|
|
@@ -7550,12 +7646,12 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
7550
7646
|
kind: z.ZodEnum<{
|
|
7551
7647
|
knowledge: "knowledge";
|
|
7552
7648
|
system: "system";
|
|
7649
|
+
resource: "resource";
|
|
7553
7650
|
action: "action";
|
|
7554
7651
|
ontology: "ontology";
|
|
7555
7652
|
role: "role";
|
|
7556
|
-
goal: "goal";
|
|
7557
|
-
resource: "resource";
|
|
7558
7653
|
stage: "stage";
|
|
7654
|
+
goal: "goal";
|
|
7559
7655
|
"customer-segment": "customer-segment";
|
|
7560
7656
|
offering: "offering";
|
|
7561
7657
|
}>;
|
|
@@ -7565,7 +7661,7 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
7565
7661
|
nodeId: z.ZodUnion<readonly [z.ZodString, z.ZodTemplateLiteral<`ontology:${string}`>]>;
|
|
7566
7662
|
}, z.core.$strip>]>, z.ZodTransform<{
|
|
7567
7663
|
target: {
|
|
7568
|
-
kind: "knowledge" | "system" | "
|
|
7664
|
+
kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "stage" | "goal" | "customer-segment" | "offering";
|
|
7569
7665
|
id: string;
|
|
7570
7666
|
};
|
|
7571
7667
|
nodeId: string;
|
|
@@ -7573,7 +7669,7 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
7573
7669
|
nodeId: string;
|
|
7574
7670
|
} | {
|
|
7575
7671
|
target: {
|
|
7576
|
-
kind: "knowledge" | "system" | "
|
|
7672
|
+
kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "stage" | "goal" | "customer-segment" | "offering";
|
|
7577
7673
|
id: string;
|
|
7578
7674
|
};
|
|
7579
7675
|
}>>>>;
|
|
@@ -8890,6 +8986,52 @@ interface MillionVerifierCheckCreditsResult {
|
|
|
8890
8986
|
plan: number;
|
|
8891
8987
|
}
|
|
8892
8988
|
|
|
8989
|
+
/**
|
|
8990
|
+
* Shared ClickUp param/result types (browser-safe)
|
|
8991
|
+
*
|
|
8992
|
+
* These types define the public interface for ClickUp operations -- used by both
|
|
8993
|
+
* the server-side adapter and the SDK typed wrappers. They contain zero Node.js
|
|
8994
|
+
* dependencies and are safe to import in any environment.
|
|
8995
|
+
*
|
|
8996
|
+
* Server-internal types (credentials, retry logic) remain in
|
|
8997
|
+
* server/adapters/clickup/clickup-adapter.ts
|
|
8998
|
+
*/
|
|
8999
|
+
/**
|
|
9000
|
+
* Verify ClickUp credentials parameters
|
|
9001
|
+
*/
|
|
9002
|
+
interface ClickUpVerifyParams {
|
|
9003
|
+
/** No params required -- verification is credential-only */
|
|
9004
|
+
_?: never;
|
|
9005
|
+
}
|
|
9006
|
+
/**
|
|
9007
|
+
* Verify ClickUp credentials result
|
|
9008
|
+
*/
|
|
9009
|
+
interface ClickUpVerifyResult {
|
|
9010
|
+
ok: true;
|
|
9011
|
+
provider: 'clickup';
|
|
9012
|
+
teamCount: number;
|
|
9013
|
+
teams: Array<{
|
|
9014
|
+
id: string;
|
|
9015
|
+
name: string;
|
|
9016
|
+
}>;
|
|
9017
|
+
}
|
|
9018
|
+
/**
|
|
9019
|
+
* Create ClickUp task parameters
|
|
9020
|
+
*/
|
|
9021
|
+
interface ClickUpCreateTaskParams {
|
|
9022
|
+
listId: string;
|
|
9023
|
+
name: string;
|
|
9024
|
+
markdownContent: string;
|
|
9025
|
+
}
|
|
9026
|
+
/**
|
|
9027
|
+
* Create ClickUp task result
|
|
9028
|
+
*/
|
|
9029
|
+
interface ClickUpCreateTaskResult {
|
|
9030
|
+
id: string;
|
|
9031
|
+
url?: string;
|
|
9032
|
+
name: string;
|
|
9033
|
+
}
|
|
9034
|
+
|
|
8893
9035
|
interface FindCompanyEmailParams {
|
|
8894
9036
|
domain: string;
|
|
8895
9037
|
company_name?: string;
|
|
@@ -10154,6 +10296,16 @@ type MillionVerifierToolMap = {
|
|
|
10154
10296
|
result: MillionVerifierCheckCreditsResult;
|
|
10155
10297
|
};
|
|
10156
10298
|
};
|
|
10299
|
+
type ClickUpToolMap = {
|
|
10300
|
+
verify: {
|
|
10301
|
+
params: ClickUpVerifyParams;
|
|
10302
|
+
result: ClickUpVerifyResult;
|
|
10303
|
+
};
|
|
10304
|
+
createTask: {
|
|
10305
|
+
params: ClickUpCreateTaskParams;
|
|
10306
|
+
result: ClickUpCreateTaskResult;
|
|
10307
|
+
};
|
|
10308
|
+
};
|
|
10157
10309
|
type LeadToolMap = {
|
|
10158
10310
|
listLists: {
|
|
10159
10311
|
params: Record<string, never>;
|
|
@@ -10191,6 +10343,14 @@ type LeadToolMap = {
|
|
|
10191
10343
|
params: Omit<UpdateContactStageParams, 'organizationId'>;
|
|
10192
10344
|
result: void;
|
|
10193
10345
|
};
|
|
10346
|
+
clearCompanyStages: {
|
|
10347
|
+
params: Omit<ClearCompanyStagesParams, 'organizationId'>;
|
|
10348
|
+
result: void;
|
|
10349
|
+
};
|
|
10350
|
+
clearContactStages: {
|
|
10351
|
+
params: Omit<ClearContactStagesParams, 'organizationId'>;
|
|
10352
|
+
result: void;
|
|
10353
|
+
};
|
|
10194
10354
|
createCompany: {
|
|
10195
10355
|
params: Omit<CreateCompanyParams, 'organizationId'>;
|
|
10196
10356
|
result: AcqCompany;
|
|
@@ -10454,7 +10614,9 @@ type ListToolMap = {
|
|
|
10454
10614
|
result: {
|
|
10455
10615
|
scrapingConfig: ScrapingConfig;
|
|
10456
10616
|
icp: IcpRubric;
|
|
10457
|
-
pipelineConfig: PipelineConfig
|
|
10617
|
+
pipelineConfig: PipelineConfig & {
|
|
10618
|
+
dataMode: 'mock' | 'live';
|
|
10619
|
+
};
|
|
10458
10620
|
};
|
|
10459
10621
|
};
|
|
10460
10622
|
recordExecution: {
|
|
@@ -10469,6 +10631,14 @@ type ListToolMap = {
|
|
|
10469
10631
|
params: Omit<UpdateContactStageParams, 'organizationId'>;
|
|
10470
10632
|
result: void;
|
|
10471
10633
|
};
|
|
10634
|
+
clearCompanyStages: {
|
|
10635
|
+
params: Omit<ClearCompanyStagesParams, 'organizationId'>;
|
|
10636
|
+
result: void;
|
|
10637
|
+
};
|
|
10638
|
+
clearContactStages: {
|
|
10639
|
+
params: Omit<ClearContactStagesParams, 'organizationId'>;
|
|
10640
|
+
result: void;
|
|
10641
|
+
};
|
|
10472
10642
|
listPendingCompanyIds: {
|
|
10473
10643
|
params: Omit<ListPendingCompanyIdsParams, 'organizationId'>;
|
|
10474
10644
|
result: string[];
|
|
@@ -11814,15 +11984,6 @@ declare class ToolingError extends ExecutionError {
|
|
|
11814
11984
|
constructor(errorType: string, message: string, details?: unknown);
|
|
11815
11985
|
}
|
|
11816
11986
|
|
|
11817
|
-
// CRM stage/state catalogs are model-owned (authored in @repo/elevasis-core
|
|
11818
|
-
// canonicalOrganizationModel). The published core schema validates only the
|
|
11819
|
-
// transport shape; closed-catalog membership is enforced by the caller/API
|
|
11820
|
-
// layer via model-injected validators (mirrors LeadGenStageKeySchema).
|
|
11821
|
-
declare const CrmStageKeySchema = z.string().trim().min(1)
|
|
11822
|
-
declare const CrmStateKeySchema = z.string().trim().min(1)
|
|
11823
|
-
type CrmStageKey = z.infer<typeof CrmStageKeySchema>
|
|
11824
|
-
type CrmStateKey = z.infer<typeof CrmStateKeySchema>
|
|
11825
|
-
|
|
11826
11987
|
declare const ResourceOntologyBindingSchema = z
|
|
11827
11988
|
.object({
|
|
11828
11989
|
actions: z.array(OntologyIdSchema).optional(),
|
|
@@ -12065,6 +12226,15 @@ type OrganizationModelTopology = z.infer<typeof OmTopologyDomainSchema>
|
|
|
12065
12226
|
type OrganizationModelTopologyNodeRef = z.infer<typeof OmTopologyNodeRefSchema>
|
|
12066
12227
|
type OrganizationModelTopologyRelationship = z.infer<typeof OmTopologyRelationshipSchema>
|
|
12067
12228
|
|
|
12229
|
+
// CRM stage/state catalogs are model-owned (authored in @repo/elevasis-core
|
|
12230
|
+
// canonicalOrganizationModel). The published core schema validates only the
|
|
12231
|
+
// transport shape; closed-catalog membership is enforced by the caller/API
|
|
12232
|
+
// layer via model-injected validators (mirrors LeadGenStageKeySchema).
|
|
12233
|
+
declare const CrmStageKeySchema = z.string().trim().min(1)
|
|
12234
|
+
declare const CrmStateKeySchema = z.string().trim().min(1)
|
|
12235
|
+
type CrmStageKey = z.infer<typeof CrmStageKeySchema>
|
|
12236
|
+
type CrmStateKey = z.infer<typeof CrmStateKeySchema>
|
|
12237
|
+
|
|
12068
12238
|
type ResourceOntologyBindingResolver = (resourceId: string) => OrganizationModelResourceOntologyBinding | undefined;
|
|
12069
12239
|
type WorkflowResourceDescriptorResolver = (resourceId: string) => OrganizationModelWorkflowResourceEntry;
|
|
12070
12240
|
type IntegrationResourceDescriptorResolver = (resourceId: string) => OrganizationModelIntegrationResourceEntry;
|
|
@@ -12105,4 +12275,4 @@ declare const ListBuilderStageKeySchema: z.ZodString;
|
|
|
12105
12275
|
type ListBuilderStageKey = z.infer<typeof ListBuilderStageKeySchema>;
|
|
12106
12276
|
|
|
12107
12277
|
export { ActivityEventSchema, BuildPlanSnapshotStepSchema, ProspectingBuildTemplateSchema as BuildTemplateSchema, ContractRefResolutionError, CrmStageKeySchema, CrmStateKeySchema, EmailSchema, ExecutionError, ListBuilderStageKeySchema, ProcessingStageStatusSchema, RegistryValidationError, ResourceRegistry, StepType, ToolingError, bindResourceDescriptor, compileBusinessOntologyValidationIndex, concurrentPool, createLeadGenStageValidators, defineContract, defineResource, defineResourceOntology, defineResources, defineStep, defineTopology, defineTopologyRelationship, defineWorkflow, deriveActions, diagnosticOutput, integrationInput, isZodType, parseTopologyNodeRef, projectDeploymentSpec, projectTopologyRelationships, resolveContractRef, runDiagnostic, splitName, toSdkResourceDescriptor, topologyRef, topologyRelationship, validateResourceGovernance, withPlatformIntegrationResourceDescriptor, withPlatformIntegrationResourceDescriptors, withPlatformResourceDescriptor, withPlatformResourceDescriptors };
|
|
12108
|
-
export type { AbsoluteScheduleConfig, AcqCompany, AcqContact, AcqDeal, AcqDealRow, AcqList, Action, ActionDef, ActivityEvent, AddToCampaignLead, AddToCampaignParams, AddToCampaignResult, AgentConfig, AgentConstraints, AgentDefinition, AgentMemory, FindCompanyEmailParams as AnymailfinderFindCompanyEmailParams, FindCompanyEmailResult as AnymailfinderFindCompanyEmailResult, FindDecisionMakerEmailParams as AnymailfinderFindDecisionMakerEmailParams, FindDecisionMakerEmailResult as AnymailfinderFindDecisionMakerEmailResult, FindPersonEmailParams as AnymailfinderFindPersonEmailParams, FindPersonEmailResult as AnymailfinderFindPersonEmailResult, AnymailfinderToolMap, VerifyEmailParams as AnymailfinderVerifyEmailParams, VerifyEmailResult as AnymailfinderVerifyEmailResult, ApifyToolMap, ApifyWebhookConfig, AppendRowsParams, AppendRowsResult, ApprovalToolMap, AttioToolMap, BatchUpdateParams, BatchUpdateResult, BuildPlanSnapshotStep, BulkDeleteLeadsParams, BulkDeleteLeadsResult, BulkImportParams, BulkImportResult, BusinessOntologyValidationIndex, CancelHitlByDealIdParams, CancelSchedulesAndHitlByEmailParams, ClearDealFieldsParams, ClearRangeParams, ClearRangeResult, CompanyFilters, ConcurrentPoolOptions, ConcurrentPoolResult, ConditionalNext, ContactFilters, Contract, ContractRefResolutionErrorCode, ContractRegistry, CreateAttributeParams, CreateAttributeResult, CreateAutoPaymentLinkParams, CreateAutoPaymentLinkResult, CreateCheckoutSessionParams, CreateCheckoutSessionResult, CreateCompanyParams, CreateContactParams, CreateEnvelopeParams, CreateEnvelopeResult, CreateFolderParams, CreateFolderResult, CreateListParams, CreateNoteParams, CreateNoteResult, CreatePaymentLinkParams, CreatePaymentLinkResult, CreateRecordParams, CreateRecordResult, CreateScheduleInput, CrmStageKey, CrmStateKey, CrmToolMap, DeleteDealParams, DeleteNoteParams, DeleteNoteResult, DeleteRecordParams, DeleteRecordResult, DeleteRowByValueParams, DeleteRowByValueResult, DeploymentSpec, DiagnosticOutput, DownloadDocumentParams, DownloadDocumentResult, DropboxToolMap, ElevasConfig, EmailToolMap, EnvelopeDocument, EventTriggerConfig, ExecutionContext, ExecutionInterface, ExecutionMetadata, ExecutionToolMap, FilterExpression, FilterRowsParams, FilterRowsResult, FormField, FormFieldType, FormSchema, GetDailyCampaignAnalyticsParams, GetDailyCampaignAnalyticsResult, GetEmailsParams, GetEmailsResult, GetEnvelopeParams, GetEnvelopeResult, GetHeadersParams, GetHeadersResult, GetLastRowParams, GetLastRowResult, GetPaymentLinkParams, GetPaymentLinkResult, GetRecordParams, GetRecordResult, GetRowByValueParams, GetRowByValueResult, GetSpreadsheetMetadataParams, GetSpreadsheetMetadataResult, GmailSendEmailParams, GmailSendEmailResult, GmailToolMap, GoogleSheetsToolMap, HumanCheckpointDefinition, InstantlyToolMap, IntegrationDefinition, IntegrationResourceDescriptorResolver, LLMAdapterFactory, LLMGenerateRequest, LLMGenerateResponse, LLMMessage, LLMModel, LeadGenStageValidators, LeadToolMap, LinearNext, ListAttributesParams, ListAttributesResult, ListBuilderStageKey, ListBuilderStep, ListLeadsParams, ListLeadsResult, ListNotesParams, ListNotesResult, ListObjectsResult, ListPaymentLinksParams, ListPaymentLinksResult, ListToolMap, MarkProposalReviewedParams, MarkProposalSentParams, MethodEntry, MillionVerifierToolMap, ModelConfig, NextConfig, NotificationSDKInput, NotificationToolMap, OrganizationModelIntegrationResourceEntry, OrganizationModelResourceEntry, OrganizationModelResourceOntologyBinding, OrganizationModelTopology, OrganizationModelTopologyNodeRef, OrganizationModelTopologyRelationship, OrganizationModelWorkflowResourceEntry, PaginatedResult, PaginationParams, PdfToolMap, ProcessingStageStatus, ProjectDeploymentSpecOptions, ProjectsToolMap, QueryRecordsParams, QueryRecordsResult, ReadSheetParams, ReadSheetResult, Recipient, RecurringScheduleConfig, RelationshipDeclaration, RelativeScheduleConfig, RemoveFromSubsequenceParams, RemoveFromSubsequenceResult, ResendGetEmailParams, ResendGetEmailResult, ResendSendEmailParams, ResendSendEmailResult, ResendToolMap, ResolvedContractRef, ResourceCategory, ResourceDefinition, ResourceLink, ResourceMetricsConfig, ResourceOntologyBindingResolver, ResourceRelationships, ResourceStatus$1 as ResourceStatus, ResourceType, RunActorParams, RunActorResult, SDKLLMGenerateParams, ScheduleOriginTracking, ScheduleTarget, ScheduleTriggerConfig, SchedulerToolMap, SendReplyParams, SendReplyResult, SetContactNurtureParams, SheetInfo, SignatureApiFieldType, SignatureApiToolMap, SigningPlace, SortCriteria, StartActorParams, StartActorResult, StepHandler, StorageDeleteInput, StorageDeleteOutput, StorageDownloadInput, StorageDownloadOutput, StorageListInput, StorageListOutput, StorageSignedUrlInput, StorageSignedUrlOutput, StorageToolMap, StorageUploadInput, StorageUploadOutput, StripeToolMap, TaskSchedule, TaskScheduleConfig, TombaToolMap, Tool, ToolExecutionOptions, ToolMethodMap, ToolingErrorType, TransitionItemParams, TriggerConfig, TriggerDefinition, UpdateAttributeParams, UpdateAttributeResult, UpdateCloseLostReasonParams, UpdateCompanyParams, UpdateContactParams, UpdateDiscoveryDataParams, UpdateFeesParams, UpdateInterestStatusParams, UpdateInterestStatusResult, UpdateListParams, UpdatePaymentLinkParams, UpdatePaymentLinkResult, UpdateProposalDataParams, UpdateRecordParams, UpdateRecordResult, UpdateRowByValueParams, UpdateRowByValueResult, UploadFileParams, UploadFileResult, UpsertCompanyParams, UpsertContactParams, UpsertDealParams, UpsertRowParams, UpsertRowResult, VoidEnvelopeParams, VoidEnvelopeResult, WebhookProviderType, WebhookTriggerConfig, WorkflowConfig, WorkflowDefinition, WorkflowLogger, WorkflowResourceDescriptorResolver, WorkflowStep, WriteSheetParams, WriteSheetResult };
|
|
12278
|
+
export type { AbsoluteScheduleConfig, AcqCompany, AcqContact, AcqDeal, AcqDealRow, AcqList, Action, ActionDef, ActivityEvent, AddToCampaignLead, AddToCampaignParams, AddToCampaignResult, AgentConfig, AgentConstraints, AgentDefinition, AgentMemory, FindCompanyEmailParams as AnymailfinderFindCompanyEmailParams, FindCompanyEmailResult as AnymailfinderFindCompanyEmailResult, FindDecisionMakerEmailParams as AnymailfinderFindDecisionMakerEmailParams, FindDecisionMakerEmailResult as AnymailfinderFindDecisionMakerEmailResult, FindPersonEmailParams as AnymailfinderFindPersonEmailParams, FindPersonEmailResult as AnymailfinderFindPersonEmailResult, AnymailfinderToolMap, VerifyEmailParams as AnymailfinderVerifyEmailParams, VerifyEmailResult as AnymailfinderVerifyEmailResult, ApifyToolMap, ApifyWebhookConfig, AppendRowsParams, AppendRowsResult, ApprovalToolMap, AttioToolMap, BatchUpdateParams, BatchUpdateResult, BuildPlanSnapshotStep, BulkDeleteLeadsParams, BulkDeleteLeadsResult, BulkImportParams, BulkImportResult, BusinessOntologyValidationIndex, CancelHitlByDealIdParams, CancelSchedulesAndHitlByEmailParams, ClearDealFieldsParams, ClearRangeParams, ClearRangeResult, ClickUpToolMap, CompanyFilters, ConcurrentPoolOptions, ConcurrentPoolResult, ConditionalNext, ContactFilters, Contract, ContractRefResolutionErrorCode, ContractRegistry, CreateAttributeParams, CreateAttributeResult, CreateAutoPaymentLinkParams, CreateAutoPaymentLinkResult, CreateCheckoutSessionParams, CreateCheckoutSessionResult, CreateCompanyParams, CreateContactParams, CreateEnvelopeParams, CreateEnvelopeResult, CreateFolderParams, CreateFolderResult, CreateListParams, CreateNoteParams, CreateNoteResult, CreatePaymentLinkParams, CreatePaymentLinkResult, CreateRecordParams, CreateRecordResult, CreateScheduleInput, CrmStageKey, CrmStateKey, CrmToolMap, DeleteDealParams, DeleteNoteParams, DeleteNoteResult, DeleteRecordParams, DeleteRecordResult, DeleteRowByValueParams, DeleteRowByValueResult, DeploymentSpec, DiagnosticOutput, DownloadDocumentParams, DownloadDocumentResult, DropboxToolMap, ElevasConfig, EmailToolMap, EnvelopeDocument, EventTriggerConfig, ExecutionContext, ExecutionInterface, ExecutionMetadata, ExecutionToolMap, FilterExpression, FilterRowsParams, FilterRowsResult, FormField, FormFieldType, FormSchema, GetDailyCampaignAnalyticsParams, GetDailyCampaignAnalyticsResult, GetEmailsParams, GetEmailsResult, GetEnvelopeParams, GetEnvelopeResult, GetHeadersParams, GetHeadersResult, GetLastRowParams, GetLastRowResult, GetPaymentLinkParams, GetPaymentLinkResult, GetRecordParams, GetRecordResult, GetRowByValueParams, GetRowByValueResult, GetSpreadsheetMetadataParams, GetSpreadsheetMetadataResult, GmailSendEmailParams, GmailSendEmailResult, GmailToolMap, GoogleSheetsToolMap, HumanCheckpointDefinition, InstantlyToolMap, IntegrationDefinition, IntegrationResourceDescriptorResolver, LLMAdapterFactory, LLMGenerateRequest, LLMGenerateResponse, LLMMessage, LLMModel, LeadGenStageValidators, LeadToolMap, LinearNext, ListAttributesParams, ListAttributesResult, ListBuilderStageKey, ListBuilderStep, ListLeadsParams, ListLeadsResult, ListNotesParams, ListNotesResult, ListObjectsResult, ListPaymentLinksParams, ListPaymentLinksResult, ListToolMap, MarkProposalReviewedParams, MarkProposalSentParams, MethodEntry, MillionVerifierToolMap, ModelConfig, NextConfig, NotificationSDKInput, NotificationToolMap, OrganizationModelIntegrationResourceEntry, OrganizationModelResourceEntry, OrganizationModelResourceOntologyBinding, OrganizationModelTopology, OrganizationModelTopologyNodeRef, OrganizationModelTopologyRelationship, OrganizationModelWorkflowResourceEntry, PaginatedResult, PaginationParams, PdfToolMap, ProcessingStageStatus, ProjectDeploymentSpecOptions, ProjectsToolMap, QueryRecordsParams, QueryRecordsResult, ReadSheetParams, ReadSheetResult, Recipient, RecurringScheduleConfig, RelationshipDeclaration, RelativeScheduleConfig, RemoveFromSubsequenceParams, RemoveFromSubsequenceResult, ResendGetEmailParams, ResendGetEmailResult, ResendSendEmailParams, ResendSendEmailResult, ResendToolMap, ResolvedContractRef, ResourceCategory, ResourceDefinition, ResourceLink, ResourceMetricsConfig, ResourceOntologyBindingResolver, ResourceRelationships, ResourceStatus$1 as ResourceStatus, ResourceType, RunActorParams, RunActorResult, SDKLLMGenerateParams, ScheduleOriginTracking, ScheduleTarget, ScheduleTriggerConfig, SchedulerToolMap, SendReplyParams, SendReplyResult, SetContactNurtureParams, SheetInfo, SignatureApiFieldType, SignatureApiToolMap, SigningPlace, SortCriteria, StartActorParams, StartActorResult, StepHandler, StorageDeleteInput, StorageDeleteOutput, StorageDownloadInput, StorageDownloadOutput, StorageListInput, StorageListOutput, StorageSignedUrlInput, StorageSignedUrlOutput, StorageToolMap, StorageUploadInput, StorageUploadOutput, StripeToolMap, TaskSchedule, TaskScheduleConfig, TombaToolMap, Tool, ToolExecutionOptions, ToolMethodMap, ToolingErrorType, TransitionItemParams, TriggerConfig, TriggerDefinition, UpdateAttributeParams, UpdateAttributeResult, UpdateCloseLostReasonParams, UpdateCompanyParams, UpdateContactParams, UpdateDiscoveryDataParams, UpdateFeesParams, UpdateInterestStatusParams, UpdateInterestStatusResult, UpdateListParams, UpdatePaymentLinkParams, UpdatePaymentLinkResult, UpdateProposalDataParams, UpdateRecordParams, UpdateRecordResult, UpdateRowByValueParams, UpdateRowByValueResult, UploadFileParams, UploadFileResult, UpsertCompanyParams, UpsertContactParams, UpsertDealParams, UpsertRowParams, UpsertRowResult, VoidEnvelopeParams, VoidEnvelopeResult, WebhookProviderType, WebhookTriggerConfig, WorkflowConfig, WorkflowDefinition, WorkflowLogger, WorkflowResourceDescriptorResolver, WorkflowStep, WriteSheetParams, WriteSheetResult };
|