@elevasis/sdk 1.25.0 → 1.26.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. package/dist/cli.cjs +18 -116
  2. package/dist/index.d.ts +165 -48
  3. package/dist/index.js +4 -435
  4. package/dist/node/index.d.ts +36 -36
  5. package/dist/test-utils/index.d.ts +99 -38
  6. package/dist/test-utils/index.js +27 -355
  7. package/dist/types/worker/adapters/clickup.d.ts +22 -0
  8. package/dist/types/worker/adapters/index.d.ts +1 -0
  9. package/dist/worker/index.js +32 -354
  10. package/package.json +2 -2
  11. package/reference/_navigation.md +11 -1
  12. package/reference/_reference-manifest.json +70 -0
  13. package/reference/claude-config/rules/organization-model.md +12 -1
  14. package/reference/claude-config/rules/organization-os.md +12 -1
  15. package/reference/claude-config/skills/om/SKILL.md +13 -5
  16. package/reference/claude-config/skills/om/operations/codify-level-a.md +109 -100
  17. package/reference/claude-config/skills/om/operations/customers.md +10 -6
  18. package/reference/claude-config/skills/om/operations/features.md +7 -3
  19. package/reference/claude-config/skills/om/operations/goals.md +10 -6
  20. package/reference/claude-config/skills/om/operations/identity.md +8 -5
  21. package/reference/claude-config/skills/om/operations/labels.md +17 -1
  22. package/reference/claude-config/skills/om/operations/offerings.md +11 -7
  23. package/reference/claude-config/skills/om/operations/roles.md +11 -7
  24. package/reference/claude-config/skills/om/operations/techStack.md +10 -2
  25. package/reference/claude-config/sync-notes/2026-05-20-om-define-helpers.md +32 -0
  26. package/reference/claude-config/sync-notes/2026-05-22-access-model-and-right-panel.md +43 -0
  27. package/reference/claude-config/sync-notes/2026-05-22-lead-gen-tenant-config.md +40 -0
  28. package/reference/claude-config/sync-notes/2026-05-22-org-model-multi-file-split.md +61 -0
  29. package/reference/cli-management.mdx +539 -0
  30. package/reference/cli.mdx +4 -532
  31. package/reference/concepts.mdx +134 -146
  32. package/reference/deployment/api.mdx +296 -297
  33. package/reference/deployment/command-center.mdx +208 -209
  34. package/reference/deployment/index.mdx +194 -195
  35. package/reference/deployment/provided-features.mdx +110 -107
  36. package/reference/deployment/ui-execution.mdx +249 -250
  37. package/reference/framework/index.mdx +111 -195
  38. package/reference/framework/resource-documentation.mdx +90 -0
  39. package/reference/framework/tutorial-system.mdx +135 -135
  40. package/reference/getting-started.mdx +141 -142
  41. package/reference/index.mdx +95 -106
  42. package/reference/packages/ui/src/auth/README.md +6 -6
  43. package/reference/platform-tools/adapters-integration.mdx +300 -301
  44. package/reference/platform-tools/adapters-platform.mdx +552 -553
  45. package/reference/platform-tools/index.mdx +216 -217
  46. package/reference/platform-tools/type-safety.mdx +82 -82
  47. package/reference/resources/index.mdx +348 -349
  48. package/reference/resources/patterns.mdx +446 -449
  49. package/reference/resources/types.mdx +115 -116
  50. package/reference/roadmap.mdx +164 -165
  51. package/reference/rules/organization-model.md +14 -0
  52. package/reference/runtime.mdx +172 -173
  53. package/reference/scaffold/operations/propagation-pipeline.md +1 -1
  54. package/reference/scaffold/recipes/extend-lead-gen.md +130 -77
  55. package/reference/scaffold/reference/contracts.md +376 -446
  56. package/reference/scaffold/reference/glossary.md +8 -6
  57. package/reference/scaffold/ui/feature-flags-and-gating.md +59 -46
  58. package/reference/scaffold/ui/feature-shell.mdx +11 -11
  59. package/reference/scaffold/ui/recipes.md +24 -24
  60. 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>;
@@ -4206,6 +4206,7 @@ type Database = {
4206
4206
  title: string | null;
4207
4207
  updated_at: string;
4208
4208
  user_id: string;
4209
+ visibility: string;
4209
4210
  };
4210
4211
  Insert: {
4211
4212
  content: string;
@@ -4220,6 +4221,7 @@ type Database = {
4220
4221
  title?: string | null;
4221
4222
  updated_at?: string;
4222
4223
  user_id: string;
4224
+ visibility?: string;
4223
4225
  };
4224
4226
  Update: {
4225
4227
  content?: string;
@@ -4234,6 +4236,7 @@ type Database = {
4234
4236
  title?: string | null;
4235
4237
  updated_at?: string;
4236
4238
  user_id?: string;
4239
+ visibility?: string;
4237
4240
  };
4238
4241
  Relationships: [
4239
4242
  {
@@ -4402,6 +4405,12 @@ type Database = {
4402
4405
  Args: never;
4403
4406
  Returns: boolean;
4404
4407
  };
4408
+ current_user_shares_org_with: {
4409
+ Args: {
4410
+ other_user_id: string;
4411
+ };
4412
+ Returns: boolean;
4413
+ };
4405
4414
  current_user_supabase_id: {
4406
4415
  Args: never;
4407
4416
  Returns: string;
@@ -4441,6 +4450,20 @@ type Database = {
4441
4450
  Args: never;
4442
4451
  Returns: string;
4443
4452
  };
4453
+ has_org_access: {
4454
+ Args: {
4455
+ action?: string;
4456
+ org_id: string;
4457
+ system_path: string;
4458
+ };
4459
+ Returns: boolean;
4460
+ } | {
4461
+ Args: {
4462
+ action?: string;
4463
+ system_path: string;
4464
+ };
4465
+ Returns: boolean;
4466
+ };
4444
4467
  has_org_permission: {
4445
4468
  Args: {
4446
4469
  org_id: string;
@@ -5338,6 +5361,10 @@ declare const PipelineStageSchema: z.ZodObject<{
5338
5361
  enabled: z.ZodOptional<z.ZodBoolean>;
5339
5362
  order: z.ZodOptional<z.ZodNumber>;
5340
5363
  }, z.core.$strip>;
5364
+ declare const DataModeSchema: z.ZodEnum<{
5365
+ mock: "mock";
5366
+ live: "live";
5367
+ }>;
5341
5368
  declare const BuildPlanSnapshotStepSchema: z.ZodObject<{
5342
5369
  id: z.ZodString;
5343
5370
  label: z.ZodString;
@@ -5413,6 +5440,7 @@ declare const BuildPlanSnapshotStepSchema: z.ZodObject<{
5413
5440
  }, z.core.$strip>>>;
5414
5441
  }, z.core.$strip>;
5415
5442
  type PipelineStage = z.infer<typeof PipelineStageSchema>;
5443
+ type DataMode = z.infer<typeof DataModeSchema>;
5416
5444
  type ProcessingStageStatus = z.infer<typeof ProcessingStageStatusSchema>;
5417
5445
 
5418
5446
  /** Raw database row type for acq_deals table */
@@ -5518,7 +5546,8 @@ interface IcpRubric {
5518
5546
  [key: string]: unknown;
5519
5547
  }
5520
5548
  interface PipelineConfig {
5521
- stages: PipelineStage[];
5549
+ stages?: PipelineStage[];
5550
+ dataMode?: DataMode;
5522
5551
  }
5523
5552
  type BuildPlanSnapshotPrimaryEntity = 'company' | 'contact';
5524
5553
  type BuildPlanSnapshotOutput = 'company' | 'contact' | 'export';
@@ -6072,6 +6101,7 @@ interface UpdateCompanyStageParams {
6072
6101
  companyId: string;
6073
6102
  stage: string;
6074
6103
  status?: ProcessingStageStatus;
6104
+ data?: unknown;
6075
6105
  executionId?: string;
6076
6106
  }
6077
6107
  interface UpdateContactStageParams {
@@ -6080,8 +6110,21 @@ interface UpdateContactStageParams {
6080
6110
  contactId: string;
6081
6111
  stage: string;
6082
6112
  status?: ProcessingStageStatus;
6113
+ data?: unknown;
6083
6114
  executionId?: string;
6084
6115
  }
6116
+ interface ClearCompanyStagesParams {
6117
+ organizationId: string;
6118
+ listId: string;
6119
+ companyId: string;
6120
+ stages: string[];
6121
+ }
6122
+ interface ClearContactStagesParams {
6123
+ organizationId: string;
6124
+ listId: string;
6125
+ contactId: string;
6126
+ stages: string[];
6127
+ }
6085
6128
  interface ListPendingCompanyIdsParams {
6086
6129
  organizationId: string;
6087
6130
  listId: string;
@@ -6616,9 +6659,9 @@ declare const SurfaceTypeSchema: z.ZodEnum<{
6616
6659
  dashboard: "dashboard";
6617
6660
  settings: "settings";
6618
6661
  graph: "graph";
6619
- list: "list";
6620
6662
  page: "page";
6621
6663
  detail: "detail";
6664
+ list: "list";
6622
6665
  }>;
6623
6666
  interface SidebarSurfaceNode {
6624
6667
  type: 'surface';
@@ -6650,10 +6693,10 @@ type SidebarNode = SidebarSurfaceNode | SidebarGroupNode;
6650
6693
  declare const LinkSchema: z.ZodObject<{
6651
6694
  nodeId: z.ZodString;
6652
6695
  kind: z.ZodEnum<{
6653
- links: "links";
6654
6696
  affects: "affects";
6655
- effects: "effects";
6656
6697
  actions: "actions";
6698
+ effects: "effects";
6699
+ links: "links";
6657
6700
  reads: "reads";
6658
6701
  writes: "writes";
6659
6702
  emits: "emits";
@@ -7075,8 +7118,8 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
7075
7118
  description: z.ZodOptional<z.ZodString>;
7076
7119
  ownerRoleId: z.ZodOptional<z.ZodString>;
7077
7120
  status: z.ZodEnum<{
7078
- deprecated: "deprecated";
7079
7121
  active: "active";
7122
+ deprecated: "deprecated";
7080
7123
  archived: "archived";
7081
7124
  }>;
7082
7125
  ontology: z.ZodOptional<z.ZodObject<{
@@ -7094,12 +7137,12 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
7094
7137
  codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
7095
7138
  path: z.ZodString;
7096
7139
  role: z.ZodEnum<{
7097
- config: "config";
7098
7140
  entrypoint: "entrypoint";
7099
7141
  handler: "handler";
7100
7142
  schema: "schema";
7101
7143
  test: "test";
7102
7144
  docs: "docs";
7145
+ config: "config";
7103
7146
  }>;
7104
7147
  symbol: z.ZodOptional<z.ZodString>;
7105
7148
  description: z.ZodOptional<z.ZodString>;
@@ -7110,10 +7153,10 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
7110
7153
  label: z.ZodString;
7111
7154
  payloadSchema: z.ZodOptional<z.ZodString>;
7112
7155
  lifecycle: z.ZodOptional<z.ZodEnum<{
7156
+ active: "active";
7113
7157
  deprecated: "deprecated";
7114
7158
  draft: "draft";
7115
7159
  beta: "beta";
7116
- active: "active";
7117
7160
  archived: "archived";
7118
7161
  }>>;
7119
7162
  }, z.core.$strip>>>;
@@ -7125,8 +7168,8 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
7125
7168
  description: z.ZodOptional<z.ZodString>;
7126
7169
  ownerRoleId: z.ZodOptional<z.ZodString>;
7127
7170
  status: z.ZodEnum<{
7128
- deprecated: "deprecated";
7129
7171
  active: "active";
7172
+ deprecated: "deprecated";
7130
7173
  archived: "archived";
7131
7174
  }>;
7132
7175
  ontology: z.ZodOptional<z.ZodObject<{
@@ -7144,12 +7187,12 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
7144
7187
  codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
7145
7188
  path: z.ZodString;
7146
7189
  role: z.ZodEnum<{
7147
- config: "config";
7148
7190
  entrypoint: "entrypoint";
7149
7191
  handler: "handler";
7150
7192
  schema: "schema";
7151
7193
  test: "test";
7152
7194
  docs: "docs";
7195
+ config: "config";
7153
7196
  }>;
7154
7197
  symbol: z.ZodOptional<z.ZodString>;
7155
7198
  description: z.ZodOptional<z.ZodString>;
@@ -7191,10 +7234,10 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
7191
7234
  label: z.ZodString;
7192
7235
  payloadSchema: z.ZodOptional<z.ZodString>;
7193
7236
  lifecycle: z.ZodOptional<z.ZodEnum<{
7237
+ active: "active";
7194
7238
  deprecated: "deprecated";
7195
7239
  draft: "draft";
7196
7240
  beta: "beta";
7197
- active: "active";
7198
7241
  archived: "archived";
7199
7242
  }>>;
7200
7243
  }, z.core.$strip>>>;
@@ -7206,8 +7249,8 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
7206
7249
  description: z.ZodOptional<z.ZodString>;
7207
7250
  ownerRoleId: z.ZodOptional<z.ZodString>;
7208
7251
  status: z.ZodEnum<{
7209
- deprecated: "deprecated";
7210
7252
  active: "active";
7253
+ deprecated: "deprecated";
7211
7254
  archived: "archived";
7212
7255
  }>;
7213
7256
  ontology: z.ZodOptional<z.ZodObject<{
@@ -7225,12 +7268,12 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
7225
7268
  codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
7226
7269
  path: z.ZodString;
7227
7270
  role: z.ZodEnum<{
7228
- config: "config";
7229
7271
  entrypoint: "entrypoint";
7230
7272
  handler: "handler";
7231
7273
  schema: "schema";
7232
7274
  test: "test";
7233
7275
  docs: "docs";
7276
+ config: "config";
7234
7277
  }>;
7235
7278
  symbol: z.ZodOptional<z.ZodString>;
7236
7279
  description: z.ZodOptional<z.ZodString>;
@@ -7245,8 +7288,8 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
7245
7288
  description: z.ZodOptional<z.ZodString>;
7246
7289
  ownerRoleId: z.ZodOptional<z.ZodString>;
7247
7290
  status: z.ZodEnum<{
7248
- deprecated: "deprecated";
7249
7291
  active: "active";
7292
+ deprecated: "deprecated";
7250
7293
  archived: "archived";
7251
7294
  }>;
7252
7295
  ontology: z.ZodOptional<z.ZodObject<{
@@ -7264,12 +7307,12 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
7264
7307
  codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
7265
7308
  path: z.ZodString;
7266
7309
  role: z.ZodEnum<{
7267
- config: "config";
7268
7310
  entrypoint: "entrypoint";
7269
7311
  handler: "handler";
7270
7312
  schema: "schema";
7271
7313
  test: "test";
7272
7314
  docs: "docs";
7315
+ config: "config";
7273
7316
  }>;
7274
7317
  symbol: z.ZodOptional<z.ZodString>;
7275
7318
  description: z.ZodOptional<z.ZodString>;
@@ -7383,10 +7426,10 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
7383
7426
  }, z.core.$strip>], "kind">>>;
7384
7427
  knowledge: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString>>>;
7385
7428
  lifecycle: z.ZodDefault<z.ZodEnum<{
7429
+ active: "active";
7386
7430
  deprecated: "deprecated";
7387
7431
  draft: "draft";
7388
7432
  beta: "beta";
7389
- active: "active";
7390
7433
  archived: "archived";
7391
7434
  }>>;
7392
7435
  }, z.core.$strip>>>>;
@@ -7464,10 +7507,10 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
7464
7507
  roleIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
7465
7508
  }, z.core.$strip>>;
7466
7509
  lifecycle: z.ZodDefault<z.ZodEnum<{
7510
+ active: "active";
7467
7511
  deprecated: "deprecated";
7468
7512
  draft: "draft";
7469
7513
  beta: "beta";
7470
- active: "active";
7471
7514
  archived: "archived";
7472
7515
  }>>;
7473
7516
  }, z.core.$strip>>>>;
@@ -7550,12 +7593,12 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
7550
7593
  kind: z.ZodEnum<{
7551
7594
  knowledge: "knowledge";
7552
7595
  system: "system";
7596
+ resource: "resource";
7553
7597
  action: "action";
7554
7598
  ontology: "ontology";
7555
7599
  role: "role";
7556
- goal: "goal";
7557
- resource: "resource";
7558
7600
  stage: "stage";
7601
+ goal: "goal";
7559
7602
  "customer-segment": "customer-segment";
7560
7603
  offering: "offering";
7561
7604
  }>;
@@ -7565,7 +7608,7 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
7565
7608
  nodeId: z.ZodUnion<readonly [z.ZodString, z.ZodTemplateLiteral<`ontology:${string}`>]>;
7566
7609
  }, z.core.$strip>]>, z.ZodTransform<{
7567
7610
  target: {
7568
- kind: "knowledge" | "system" | "action" | "ontology" | "role" | "goal" | "resource" | "stage" | "customer-segment" | "offering";
7611
+ kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "stage" | "goal" | "customer-segment" | "offering";
7569
7612
  id: string;
7570
7613
  };
7571
7614
  nodeId: string;
@@ -7573,7 +7616,7 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
7573
7616
  nodeId: string;
7574
7617
  } | {
7575
7618
  target: {
7576
- kind: "knowledge" | "system" | "action" | "ontology" | "role" | "goal" | "resource" | "stage" | "customer-segment" | "offering";
7619
+ kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "stage" | "goal" | "customer-segment" | "offering";
7577
7620
  id: string;
7578
7621
  };
7579
7622
  }>>>>;
@@ -8890,6 +8933,52 @@ interface MillionVerifierCheckCreditsResult {
8890
8933
  plan: number;
8891
8934
  }
8892
8935
 
8936
+ /**
8937
+ * Shared ClickUp param/result types (browser-safe)
8938
+ *
8939
+ * These types define the public interface for ClickUp operations -- used by both
8940
+ * the server-side adapter and the SDK typed wrappers. They contain zero Node.js
8941
+ * dependencies and are safe to import in any environment.
8942
+ *
8943
+ * Server-internal types (credentials, retry logic) remain in
8944
+ * server/adapters/clickup/clickup-adapter.ts
8945
+ */
8946
+ /**
8947
+ * Verify ClickUp credentials parameters
8948
+ */
8949
+ interface ClickUpVerifyParams {
8950
+ /** No params required -- verification is credential-only */
8951
+ _?: never;
8952
+ }
8953
+ /**
8954
+ * Verify ClickUp credentials result
8955
+ */
8956
+ interface ClickUpVerifyResult {
8957
+ ok: true;
8958
+ provider: 'clickup';
8959
+ teamCount: number;
8960
+ teams: Array<{
8961
+ id: string;
8962
+ name: string;
8963
+ }>;
8964
+ }
8965
+ /**
8966
+ * Create ClickUp task parameters
8967
+ */
8968
+ interface ClickUpCreateTaskParams {
8969
+ listId: string;
8970
+ name: string;
8971
+ markdownContent: string;
8972
+ }
8973
+ /**
8974
+ * Create ClickUp task result
8975
+ */
8976
+ interface ClickUpCreateTaskResult {
8977
+ id: string;
8978
+ url?: string;
8979
+ name: string;
8980
+ }
8981
+
8893
8982
  interface FindCompanyEmailParams {
8894
8983
  domain: string;
8895
8984
  company_name?: string;
@@ -10154,6 +10243,16 @@ type MillionVerifierToolMap = {
10154
10243
  result: MillionVerifierCheckCreditsResult;
10155
10244
  };
10156
10245
  };
10246
+ type ClickUpToolMap = {
10247
+ verify: {
10248
+ params: ClickUpVerifyParams;
10249
+ result: ClickUpVerifyResult;
10250
+ };
10251
+ createTask: {
10252
+ params: ClickUpCreateTaskParams;
10253
+ result: ClickUpCreateTaskResult;
10254
+ };
10255
+ };
10157
10256
  type LeadToolMap = {
10158
10257
  listLists: {
10159
10258
  params: Record<string, never>;
@@ -10191,6 +10290,14 @@ type LeadToolMap = {
10191
10290
  params: Omit<UpdateContactStageParams, 'organizationId'>;
10192
10291
  result: void;
10193
10292
  };
10293
+ clearCompanyStages: {
10294
+ params: Omit<ClearCompanyStagesParams, 'organizationId'>;
10295
+ result: void;
10296
+ };
10297
+ clearContactStages: {
10298
+ params: Omit<ClearContactStagesParams, 'organizationId'>;
10299
+ result: void;
10300
+ };
10194
10301
  createCompany: {
10195
10302
  params: Omit<CreateCompanyParams, 'organizationId'>;
10196
10303
  result: AcqCompany;
@@ -10454,7 +10561,9 @@ type ListToolMap = {
10454
10561
  result: {
10455
10562
  scrapingConfig: ScrapingConfig;
10456
10563
  icp: IcpRubric;
10457
- pipelineConfig: PipelineConfig;
10564
+ pipelineConfig: PipelineConfig & {
10565
+ dataMode: 'mock' | 'live';
10566
+ };
10458
10567
  };
10459
10568
  };
10460
10569
  recordExecution: {
@@ -10469,6 +10578,14 @@ type ListToolMap = {
10469
10578
  params: Omit<UpdateContactStageParams, 'organizationId'>;
10470
10579
  result: void;
10471
10580
  };
10581
+ clearCompanyStages: {
10582
+ params: Omit<ClearCompanyStagesParams, 'organizationId'>;
10583
+ result: void;
10584
+ };
10585
+ clearContactStages: {
10586
+ params: Omit<ClearContactStagesParams, 'organizationId'>;
10587
+ result: void;
10588
+ };
10472
10589
  listPendingCompanyIds: {
10473
10590
  params: Omit<ListPendingCompanyIdsParams, 'organizationId'>;
10474
10591
  result: string[];
@@ -11814,15 +11931,6 @@ declare class ToolingError extends ExecutionError {
11814
11931
  constructor(errorType: string, message: string, details?: unknown);
11815
11932
  }
11816
11933
 
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
11934
  declare const ResourceOntologyBindingSchema = z
11827
11935
  .object({
11828
11936
  actions: z.array(OntologyIdSchema).optional(),
@@ -12065,6 +12173,15 @@ type OrganizationModelTopology = z.infer<typeof OmTopologyDomainSchema>
12065
12173
  type OrganizationModelTopologyNodeRef = z.infer<typeof OmTopologyNodeRefSchema>
12066
12174
  type OrganizationModelTopologyRelationship = z.infer<typeof OmTopologyRelationshipSchema>
12067
12175
 
12176
+ // CRM stage/state catalogs are model-owned (authored in @repo/elevasis-core
12177
+ // canonicalOrganizationModel). The published core schema validates only the
12178
+ // transport shape; closed-catalog membership is enforced by the caller/API
12179
+ // layer via model-injected validators (mirrors LeadGenStageKeySchema).
12180
+ declare const CrmStageKeySchema = z.string().trim().min(1)
12181
+ declare const CrmStateKeySchema = z.string().trim().min(1)
12182
+ type CrmStageKey = z.infer<typeof CrmStageKeySchema>
12183
+ type CrmStateKey = z.infer<typeof CrmStateKeySchema>
12184
+
12068
12185
  type ResourceOntologyBindingResolver = (resourceId: string) => OrganizationModelResourceOntologyBinding | undefined;
12069
12186
  type WorkflowResourceDescriptorResolver = (resourceId: string) => OrganizationModelWorkflowResourceEntry;
12070
12187
  type IntegrationResourceDescriptorResolver = (resourceId: string) => OrganizationModelIntegrationResourceEntry;
@@ -12105,4 +12222,4 @@ declare const ListBuilderStageKeySchema: z.ZodString;
12105
12222
  type ListBuilderStageKey = z.infer<typeof ListBuilderStageKeySchema>;
12106
12223
 
12107
12224
  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 };
12225
+ 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 };