@signaliz/sdk 1.0.3 → 1.0.5

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.mts CHANGED
@@ -405,13 +405,13 @@ declare class HttpClient {
405
405
  private clientId?;
406
406
  private clientSecret?;
407
407
  constructor(config: SignalizConfig);
408
- request<T = any>(functionName: string, body: Record<string, unknown>, method?: 'POST' | 'GET'): Promise<T>;
408
+ request<T = unknown>(functionName: string, body: Record<string, unknown>, method?: 'POST' | 'GET'): Promise<T>;
409
409
  /** Convenience wrapper for POST-based edge function calls */
410
- post<T = any>(functionName: string, body: Record<string, unknown>): Promise<T>;
410
+ post<T = unknown>(functionName: string, body: Record<string, unknown>): Promise<T>;
411
411
  /** Convenience wrapper for GET-based edge function calls with query params */
412
- get<T = any>(functionName: string, query?: Record<string, unknown>): Promise<T>;
412
+ get<T = unknown>(functionName: string, query?: Record<string, unknown>): Promise<T>;
413
413
  /** JSON-RPC call to the MCP server */
414
- mcp<T = any>(method: string, params?: Record<string, unknown>): Promise<T>;
414
+ mcp<T = unknown>(method: string, params?: Record<string, unknown>): Promise<T>;
415
415
  private getToken;
416
416
  }
417
417
 
@@ -481,7 +481,7 @@ declare class Http {
481
481
 
482
482
  /** Allowed delivery output modes. */
483
483
  type CampaignDeliveryMode = 'json' | 'csv' | 'webhook';
484
- interface CampaignBuildRequest {
484
+ interface CampaignBuildRequest$1 {
485
485
  name: string;
486
486
  prompt: string;
487
487
  /** Existing GTM Kernel campaign object to link this build to. */
@@ -602,7 +602,7 @@ interface CampaignScopeResult {
602
602
  estimatedCredits: number;
603
603
  campaignMarkdown: string;
604
604
  }
605
- interface CampaignProviderRouteReadback {
605
+ interface CampaignProviderRouteReadback$1 {
606
606
  plan?: Record<string, unknown> | null;
607
607
  summary?: Record<string, unknown> | null;
608
608
  ready: boolean | null;
@@ -610,7 +610,7 @@ interface CampaignProviderRouteReadback {
610
610
  blockers: string[];
611
611
  warnings: string[];
612
612
  }
613
- interface CampaignBuildResult {
613
+ interface CampaignBuildResult$1 {
614
614
  campaignBuildId: string | null;
615
615
  campaignId?: string | null;
616
616
  campaignObject?: Record<string, unknown> | null;
@@ -627,7 +627,7 @@ interface CampaignBuildResult {
627
627
  targetLimitReason?: string | null;
628
628
  maxSupportedTargetCount?: number;
629
629
  brainContext?: Record<string, unknown>;
630
- providerRoute?: CampaignProviderRouteReadback | null;
630
+ providerRoute?: CampaignProviderRouteReadback$1 | null;
631
631
  }
632
632
  interface CampaignBuildStatus {
633
633
  campaignBuildId: string;
@@ -648,7 +648,7 @@ interface CampaignBuildStatus {
648
648
  warnings: string[];
649
649
  errors: string[];
650
650
  artifactCount: number;
651
- providerRoute?: CampaignProviderRouteReadback | null;
651
+ providerRoute?: CampaignProviderRouteReadback$1 | null;
652
652
  nextAction: string;
653
653
  createdAt: string;
654
654
  updatedAt: string;
@@ -737,7 +737,7 @@ declare class Campaigns {
737
737
  * console.log(result.campaignBuildId);
738
738
  * ```
739
739
  */
740
- build(request: CampaignBuildRequest, options?: BuildOptions): Promise<CampaignBuildResult>;
740
+ build(request: CampaignBuildRequest$1, options?: BuildOptions): Promise<CampaignBuildResult$1>;
741
741
  /** Scope an agency/client campaign into a markdown brief plus build_campaign dry-run args. */
742
742
  scope(request: CampaignScopeRequest): Promise<CampaignScopeResult>;
743
743
  /** Get a concise status snapshot — ideal for polling loops. */
@@ -761,7 +761,7 @@ declare class Campaigns {
761
761
  */
762
762
  wait(campaignBuildId: string, options?: WaitOptions): Promise<CampaignBuildStatus>;
763
763
  scopeCampaign(request: CampaignScopeRequest): Promise<CampaignScopeResult>;
764
- buildCampaign(request: CampaignBuildRequest, options?: BuildOptions): Promise<CampaignBuildResult>;
764
+ buildCampaign(request: CampaignBuildRequest$1, options?: BuildOptions): Promise<CampaignBuildResult$1>;
765
765
  getCampaignBuildStatus(campaignBuildId: string): Promise<CampaignBuildStatus>;
766
766
  listCampaignBuildArtifacts(campaignBuildId: string): Promise<CampaignArtifact[]>;
767
767
  getCampaignBuildRows(campaignBuildId: string, options?: CampaignRowsOptions): Promise<CampaignRowsResult>;
@@ -779,6 +779,26 @@ declare class Campaigns {
779
779
  }
780
780
 
781
781
  type UnknownRecord$1 = Record<string, unknown>;
782
+ type CampaignBuildRequest = CampaignBuildRequest$1 & {
783
+ gtmCampaignId?: string;
784
+ brainPreflight?: UnknownRecord$1;
785
+ brainDefaults?: UnknownRecord$1;
786
+ deliveryRisk?: UnknownRecord$1;
787
+ };
788
+ type CampaignBuildResult = CampaignBuildResult$1 & {
789
+ campaignId?: string | null;
790
+ campaignObject?: UnknownRecord$1 | null;
791
+ brainContext?: UnknownRecord$1;
792
+ providerRoute?: CampaignProviderRouteReadback | null;
793
+ };
794
+ interface CampaignProviderRouteReadback {
795
+ plan?: UnknownRecord$1 | null;
796
+ summary?: UnknownRecord$1 | null;
797
+ ready: boolean | null;
798
+ label: string;
799
+ blockers: string[];
800
+ warnings: string[];
801
+ }
782
802
  type CampaignBuilderLayer = 'workspace_context' | 'memory' | 'source' | 'enrichment' | 'qualification' | 'copy' | 'delivery' | 'feedback' | 'approval';
783
803
  type CampaignBuilderGtmLayer = 'icp' | 'find_company' | 'find_people' | 'lead_generation' | 'local_leads' | 'email_finding' | 'email_verification' | 'company_enrichment' | 'copy_enrichment' | 'qualification' | 'sender' | 'feedback' | 'approval' | 'source_import' | 'destination_export' | 'customer_data' | 'custom';
784
804
  type CampaignBuilderProvider = 'signaliz' | 'octave' | 'apollo' | 'ai_ark' | 'clay_webhook' | 'airbyte' | 'nango' | 'instantly' | 'smartlead' | 'heyreach' | 'custom_mcp' | 'custom_api' | 'custom_webhook' | 'webhook' | 'csv';
@@ -1194,6 +1214,8 @@ interface OpsSink {
1194
1214
  name?: string;
1195
1215
  connectorId?: string;
1196
1216
  connector_id?: string;
1217
+ connectorName?: string;
1218
+ connector_name?: string;
1197
1219
  category?: string;
1198
1220
  status?: string;
1199
1221
  syncStatus?: string | null;
@@ -1201,6 +1223,31 @@ interface OpsSink {
1201
1223
  lastSyncedAt?: string | null;
1202
1224
  last_synced_at?: string | null;
1203
1225
  config?: Record<string, unknown>;
1226
+ deliveryMode?: string;
1227
+ delivery_mode?: string;
1228
+ providerConfigKey?: string;
1229
+ provider_config_key?: string;
1230
+ integrationId?: string;
1231
+ integration_id?: string;
1232
+ nangoConnectionId?: string;
1233
+ nango_connection_id?: string;
1234
+ actionName?: string;
1235
+ action_name?: string;
1236
+ nangoAction?: string;
1237
+ nango_action?: string;
1238
+ proxyPath?: string;
1239
+ proxy_path?: string;
1240
+ nangoProxyPath?: string;
1241
+ nango_proxy_path?: string;
1242
+ method?: string;
1243
+ fieldMap?: Record<string, unknown>;
1244
+ field_map?: Record<string, unknown>;
1245
+ requiredFields?: string[];
1246
+ required_fields?: string[];
1247
+ writeConfirmed?: boolean;
1248
+ write_confirmed?: boolean;
1249
+ agentWriteConfirmed?: boolean;
1250
+ agent_write_confirmed?: boolean;
1204
1251
  enabled?: boolean;
1205
1252
  }
1206
1253
  interface OpsRoutine {
@@ -1369,6 +1416,10 @@ interface OpsProofResult {
1369
1416
  failed30d: number;
1370
1417
  external_delivered_30d?: number;
1371
1418
  externalDelivered30d: number;
1419
+ nango_proofs_30d?: number;
1420
+ nangoProofs30d: number;
1421
+ nango_failures_30d?: number;
1422
+ nangoFailures30d: number;
1372
1423
  airbyte_configured?: number;
1373
1424
  airbyteConfigured: number;
1374
1425
  airbyte_proofs_30d?: number;
@@ -2061,6 +2112,107 @@ interface GtmWorkspaceBootstrapStatusOptions {
2061
2112
  includeSamples?: boolean;
2062
2113
  limit?: number;
2063
2114
  }
2115
+ interface GtmExistingCampaignDiscoverOptions {
2116
+ provider?: string;
2117
+ integrationId?: string;
2118
+ search?: string;
2119
+ limit?: number;
2120
+ includeKernelLinked?: boolean;
2121
+ includeProviderLive?: boolean;
2122
+ }
2123
+ interface GtmExistingCampaignAuditOptions {
2124
+ campaignId?: string;
2125
+ provider?: string;
2126
+ providerCampaignId?: string;
2127
+ campaignName?: string;
2128
+ days?: number;
2129
+ includeRoutePreview?: boolean;
2130
+ includeMemory?: boolean;
2131
+ includeBrain?: boolean;
2132
+ }
2133
+ interface GtmExistingCampaignAuditBySearchOptions extends Omit<GtmExistingCampaignAuditOptions, 'campaignId' | 'providerCampaignId' | 'campaignName'> {
2134
+ search: string;
2135
+ integrationId?: string;
2136
+ includeKernelLinked?: boolean;
2137
+ includeProviderLive?: boolean;
2138
+ }
2139
+ type GtmExistingCampaignAuditBoundary = 'read_only' | 'dry_run' | 'write_import' | 'route_write' | 'sender_load' | 'export' | 'delivery' | 'approval_decision' | string;
2140
+ interface GtmExistingCampaignMcpRequest {
2141
+ tool: string;
2142
+ arguments: UnknownRecord;
2143
+ }
2144
+ interface GtmExistingCampaignOption {
2145
+ source?: 'kernel_linked' | 'provider_live' | string;
2146
+ provider?: string;
2147
+ provider_link_id?: string | null;
2148
+ provider_campaign_id?: string | null;
2149
+ name?: string | null;
2150
+ status?: string | number | null;
2151
+ integration_id?: string | null;
2152
+ integration_label?: string | null;
2153
+ linked_kernel_campaign_id?: string | null;
2154
+ linked_kernel_campaign_name?: string | null;
2155
+ linked_kernel_campaign_status?: string | null;
2156
+ audit_request?: GtmExistingCampaignMcpRequest;
2157
+ [key: string]: unknown;
2158
+ }
2159
+ interface GtmExistingCampaignDiscoveryResult {
2160
+ provider?: string;
2161
+ campaigns?: GtmExistingCampaignOption[];
2162
+ counts?: {
2163
+ total_returned?: number;
2164
+ kernel_linked?: number;
2165
+ provider_live?: number;
2166
+ [key: string]: unknown;
2167
+ };
2168
+ integration_summaries?: UnknownRecord[];
2169
+ blockers?: string[];
2170
+ warnings?: string[];
2171
+ next_safe_action?: GtmExistingCampaignMcpRequest | UnknownRecord;
2172
+ }
2173
+ interface GtmExistingCampaignCompletenessStep {
2174
+ id: 'provider_history' | 'feedback_events' | 'kernel_memory' | 'brain_evidence' | 'provider_routes' | string;
2175
+ label: string;
2176
+ ready: boolean;
2177
+ count: number;
2178
+ approval_boundary: GtmExistingCampaignAuditBoundary;
2179
+ detail?: string;
2180
+ next_safe_request?: GtmExistingCampaignMcpRequest;
2181
+ post_action_verification?: GtmExistingCampaignMcpRequest;
2182
+ }
2183
+ interface GtmExistingCampaignAuditRecommendation {
2184
+ id?: string;
2185
+ category?: string;
2186
+ title?: string;
2187
+ summary?: string;
2188
+ confidence?: string;
2189
+ approval_boundary?: GtmExistingCampaignAuditBoundary;
2190
+ evidence?: string[];
2191
+ suggested_tool?: string;
2192
+ suggested_action?: string;
2193
+ next_safe_request?: GtmExistingCampaignMcpRequest;
2194
+ post_action_verification?: GtmExistingCampaignMcpRequest;
2195
+ }
2196
+ interface GtmExistingCampaignAuditResult {
2197
+ workspace_id?: string;
2198
+ provider?: string;
2199
+ provider_campaign_id?: string | null;
2200
+ campaign?: UnknownRecord | null;
2201
+ audit_score?: number;
2202
+ evidence_counts?: UnknownRecord;
2203
+ completeness?: GtmExistingCampaignCompletenessStep[];
2204
+ aggregate_metrics?: UnknownRecord;
2205
+ provider_links?: UnknownRecord[];
2206
+ memory_samples?: UnknownRecord[];
2207
+ brain_samples?: UnknownRecord;
2208
+ route_summary?: UnknownRecord;
2209
+ blockers?: string[];
2210
+ warnings?: string[];
2211
+ recommendations?: GtmExistingCampaignAuditRecommendation[];
2212
+ next_safe_actions?: GtmExistingCampaignMcpRequest[];
2213
+ execution_policy?: string;
2214
+ privacy_policy?: string;
2215
+ }
2064
2216
  interface GtmProviderLinkInput {
2065
2217
  provider: string;
2066
2218
  providerCampaignId: string;
@@ -2308,6 +2460,32 @@ interface GtmInstantlyFeedbackWebhookPrepareInput {
2308
2460
  brainCycleMinIngested?: number;
2309
2461
  brainCycleMinIntervalMinutes?: number;
2310
2462
  }
2463
+ interface GtmKernelImportPreviewInput {
2464
+ sourceIds?: string[];
2465
+ includeLeads?: boolean;
2466
+ includeReplies?: boolean;
2467
+ includePrivateCopy?: boolean;
2468
+ maxPages?: number;
2469
+ limit?: number;
2470
+ }
2471
+ interface GtmKernelImportRunInput extends GtmKernelImportPreviewInput {
2472
+ dryRun?: boolean;
2473
+ writeApproved?: boolean;
2474
+ privateCopyApproved?: boolean;
2475
+ promoteGlobalPatterns?: boolean;
2476
+ minGlobalPrivacyK?: number;
2477
+ }
2478
+ interface GtmBrainDistillRunInput {
2479
+ sourceIds?: string[];
2480
+ writeMode?: 'dry_run' | 'write';
2481
+ writeApproved?: boolean;
2482
+ brainCyclePhases?: GtmBrainLearningCyclePhase[];
2483
+ days?: number;
2484
+ networkDays?: number;
2485
+ minSampleSize?: number;
2486
+ minWorkspaceCount?: number;
2487
+ minPrivacyK?: number;
2488
+ }
2311
2489
  interface GtmFeedbackWebhookPrepareInput {
2312
2490
  provider: string;
2313
2491
  campaignId?: string;
@@ -2752,6 +2930,31 @@ interface GtmLayerRoutePreviewInput {
2752
2930
  sampleRecords?: UnknownRecord[];
2753
2931
  context?: UnknownRecord;
2754
2932
  }
2933
+ interface GtmNangoBaseOptions {
2934
+ workspaceConnectionId?: string;
2935
+ connectionId?: string;
2936
+ providerConfigKey?: string;
2937
+ integrationId?: string;
2938
+ nangoConnectionId?: string;
2939
+ }
2940
+ interface GtmNangoToolsListOptions extends GtmNangoBaseOptions {
2941
+ format?: 'openai' | 'nango';
2942
+ includeRaw?: boolean;
2943
+ }
2944
+ interface GtmNangoToolCallInput extends GtmNangoBaseOptions {
2945
+ actionName?: string;
2946
+ toolName?: string;
2947
+ input?: UnknownRecord;
2948
+ async?: boolean;
2949
+ maxRetries?: number;
2950
+ dryRun?: boolean;
2951
+ confirm?: boolean;
2952
+ confirmWrite?: boolean;
2953
+ }
2954
+ interface GtmNangoActionResultGetInput {
2955
+ actionId?: string;
2956
+ statusUrl?: string;
2957
+ }
2755
2958
  interface GtmWebhookDeliverInput {
2756
2959
  recipeId: string;
2757
2960
  campaignId?: string;
@@ -2767,6 +2970,12 @@ declare class GtmKernel {
2767
2970
  context(options?: GtmWorkspaceContextOptions): Promise<any>;
2768
2971
  /** Inspect whether the workspace has the Kernel + Brain substrate pieces needed to build, run, and improve campaigns. */
2769
2972
  bootstrapStatus(options?: GtmWorkspaceBootstrapStatusOptions): Promise<any>;
2973
+ /** Discover existing provider campaigns, starting with live/Kernel-linked Instantly campaigns, before audit or import preview. */
2974
+ discoverExistingCampaigns(options?: GtmExistingCampaignDiscoverOptions): Promise<GtmExistingCampaignDiscoveryResult>;
2975
+ /** Run a read-only existing campaign audit with completeness, recommendations, safe next MCP JSON, and approval boundaries. */
2976
+ auditExistingCampaign(options: GtmExistingCampaignAuditOptions): Promise<GtmExistingCampaignAuditResult>;
2977
+ /** Discover the first matching existing provider campaign, then run the same read-only audit against that match. */
2978
+ auditExistingCampaignBySearch(options: GtmExistingCampaignAuditBySearchOptions): Promise<GtmExistingCampaignAuditResult>;
2770
2979
  /** Create a first-class GTM campaign object in the current workspace. */
2771
2980
  createCampaign(input: GtmCampaignCreateInput): Promise<any>;
2772
2981
  /** Backfill historical campaigns, provider links, feedback, and memory into the GTM Kernel substrate. */
@@ -2799,6 +3008,12 @@ declare class GtmKernel {
2799
3008
  pullInstantlyFeedback(input: GtmInstantlyFeedbackPullInput): Promise<any>;
2800
3009
  /** Prepare a secure Instantly feedback webhook URL for a campaign provider link. */
2801
3010
  prepareInstantlyFeedbackWebhook(input: GtmInstantlyFeedbackWebhookPrepareInput): Promise<any>;
3011
+ /** Preview anonymized Instantly workspace sources registered for Kernel import. */
3012
+ previewKernelImport(input?: GtmKernelImportPreviewInput): Promise<any>;
3013
+ /** Queue the read-only Instantly-to-GTM Kernel import. Live writes require writeApproved. */
3014
+ runKernelImport(input?: GtmKernelImportRunInput): Promise<any>;
3015
+ /** Queue Brain distillation over imported Instantly memory with abstracted-only outputs. */
3016
+ runBrainDistillation(input?: GtmBrainDistillRunInput): Promise<any>;
2802
3017
  /** Prepare a provider-agnostic feedback webhook URL for Smartlead, HeyReach, Airbyte, or custom sender events. */
2803
3018
  prepareFeedbackWebhook(input: GtmFeedbackWebhookPrepareInput): Promise<any>;
2804
3019
  /** Search ranked workspace campaign memory instead of dumping raw history. */
@@ -2851,6 +3066,12 @@ declare class GtmKernel {
2851
3066
  getLayerRoutes(options?: GtmLayerRoutesGetOptions): Promise<any>;
2852
3067
  /** Preview one effective layer route before external delivery or provider execution. */
2853
3068
  previewLayerRoute(input: GtmLayerRoutePreviewInput): Promise<any>;
3069
+ /** List Nango-backed action tools for a workspace connection without executing them. */
3070
+ listNangoTools(options?: GtmNangoToolsListOptions): Promise<any>;
3071
+ /** Dry-run or execute a Nango-backed action tool through the approval-aware MCP bridge. */
3072
+ callNangoTool(input: GtmNangoToolCallInput): Promise<any>;
3073
+ /** Poll an async Nango action result by action id or status URL. */
3074
+ getNangoActionResult(input: GtmNangoActionResultGetInput): Promise<any>;
2854
3075
  /** Deliver approved campaign-layer records to a webhook recipe, starting with Clay-style webhooks. */
2855
3076
  deliverWebhook(input: GtmWebhookDeliverInput): Promise<any>;
2856
3077
  private callMcp;
@@ -2892,4 +3113,4 @@ declare class Signaliz {
2892
3113
  discover(query: string, category?: string): Promise<MCPToolInfo[]>;
2893
3114
  }
2894
3115
 
2895
- export { Ai, type ApproveDeliveryResult, type BuildOptions, type CampaignArtifact, type CampaignBuildRequest, type CampaignBuildResult, type CampaignBuildRow, type CampaignBuildStatus, CampaignBuilderAgent, type CampaignBuilderAgentPlan, type CampaignBuilderAgentProvider, type CampaignBuilderAgentRequest, type CampaignBuilderApproval, type CampaignBuilderApprovalPolicy, type CampaignBuilderApprovalType, type CampaignBuilderCustomerTool, type CampaignBuilderIntegrationRoute, type CampaignBuilderLayer, type CampaignBuilderMcpStep, type CampaignBuilderMemoryPlan, type CampaignBuilderMemoryQuery, type CampaignBuilderMemoryScope, type CampaignBuilderProvider, type CampaignBuilderRequiredApproval, type CampaignBuilderRouteMode, type CampaignBuilderWorkspaceContext, type CampaignDeliveryMode, type CampaignProviderRouteReadback, type CampaignRowsOptions, type CampaignRowsResult, Campaigns, type CancelBuildResult, type CompanyIntelligenceParams, type CompanyIntelligenceResult, type CreateOutputSinkRequest, type CreateRoutineRequest, type CreateSystemParams, type CustomAiAttachment, type CustomAiFusionConfig, type CustomAiMultiModelParams, type CustomAiMultiModelResult, type CustomAiOutputField, DEFAULT_SIGNALIZ_CAMPAIGN_BUILDER_DEFAULTS, type EmailBatchJobResult, type EnrichSignalsParams, type EnrichSignalsResult, type ErrorType, type ExecutionReference, type ExecutionReferenceInput, type ExecutionReferenceKind, type FindAndVerifyEmailContact, type FindEmailParams, type FindEmailResult, type GenerateLeadsParams, type GenerateLocalLeadsParams, type GtmActorType, type GtmAuthStrategy, type GtmBrainAggregateCalibrationsInput, type GtmBrainAggregatePatternsInput, type GtmBrainCalibrateDeliverabilityInput, type GtmBrainDeliveryRiskInput, type GtmBrainExtractPatternsInput, type GtmBrainFailurePatternsOptions, type GtmBrainLearningAction, type GtmBrainLearningCyclePhase, type GtmBrainLearningCyclePlanInput, type GtmBrainLearningCyclePlanResult, type GtmBrainLearningCycleRunInput, type GtmBrainLearningEvidenceCounts, type GtmBrainLearningLane, type GtmBrainLearningLaneId, type GtmBrainLearningLaneState, type GtmBrainLearningLaneSummary, type GtmBrainLearningPhaseReadiness, type GtmBrainLearningPhaseStatus, type GtmBrainLearningRecommendedToolCall, type GtmBrainPatternsOptions, type GtmBrainSeedDefaultsInput, type GtmCalibrationDimensionType, type GtmCampaignBuildPlanInput, type GtmCampaignCreateInput, type GtmCampaignGetOptions, type GtmCampaignHistoryCampaignInput, type GtmCampaignHistoryImportBatchInput, type GtmCampaignHistoryImportInput, type GtmCampaignHistoryImportRunInput, type GtmCampaignHistoryMemoryInput, type GtmCampaignLearningStatusResult, type GtmCampaignListOptions, type GtmCampaignLogInput, type GtmCampaignSource, type GtmCampaignStatus, type GtmCampaignUpdateInput, type GtmConnectionRegisterInput, type GtmConnectionsListOptions, type GtmFeedbackIngestInput, type GtmIntegrationRecipeCreateInput, type GtmInvocationType, GtmKernel, type GtmLayer, type GtmLayerRouteSetInput, type GtmLayerRoutesGetOptions, type GtmMemorySearchOptions, type GtmMemoryType, type GtmPatternType, type GtmProviderLinkInput, type GtmWebhookDeliverInput, type GtmWorkspaceBootstrapStatusOptions, type GtmWorkspaceContextOptions, type HttpRequestParams, type HttpRequestResult, type IcpDetail, type IcpSummary, Icps, type ImportOctaveResult, type LeadGenJobResult, type ListOutputSinksOptions, type MCPToolInfo, type NativeGtmCapabilityInfo, Ops, type OpsApproveRequest, type OpsApproveResult, type OpsBlueprint, type OpsCadence, type OpsCreateRequest, type OpsCreateResult, type OpsDashboardOptions, type OpsDashboardResult, type OpsDebugDiagnosticError, type OpsDebugOptions, type OpsDebugResult, type OpsPlanRequest, type OpsPlanResult, type OpsPrimitive, type OpsPrimitiveConcurrencyPolicy, type OpsPrimitiveDeadLetterPolicy, type OpsPrimitiveObservabilityPolicy, type OpsPrimitivePermissionLevel, type OpsPrimitiveRetryPolicy, type OpsPrimitiveWorkspaceScope, type OpsQueueStatus, type OpsQueueStatusOptions, type OpsQuickstartStep, type OpsQuickstartWorkflow, type OpsReadinessCheck, type OpsReadinessOptions, type OpsReadinessResult, type OpsReplayResult, type OpsResultsOptions, type OpsResultsResult, type OpsRoutine, type OpsRoutineDeleteResult, type OpsRoutineRunResult, type OpsRoutineSinkResult, type OpsRoutineStatus, type OpsRoutineTick, type OpsRoutineTickItem, type OpsRoutineTickItemsResult, type OpsRoutineTicksResult, type OpsRoutinesResult, type OpsRunOptions, type OpsRunResult, type OpsSink, type OpsSinkType, type OpsStatusOptions, type OpsStatusResult, type OpsTriggerBatchRunStatus, type OpsTriggerRunStatus, type OpsTriggerRunStatusOptions, type PlatformHealth, type RunNativeGtmCapabilityParams, type RunProgressEvent, type RunResult, type RunRoutineRequest, type RunSystemParams, type Signal, Signaliz, type SignalizCampaignBuilderDefaults, type SignalizConfig, SignalizError, type SignalizErrorData, type SimpleOpStatus, type SystemResult, type UpdateRoutineRequest, type VerifyEmailResult, type WaitOptions, type WorkspaceInfo, collectExecutionReferences, createCampaignBuilderAgentPlan, createCampaignBuilderApproval, getMissingCampaignBuilderApprovals, normalizeExecutionReference };
3116
+ export { Ai, type ApproveDeliveryResult, type BuildOptions, type CampaignArtifact, type CampaignBuildRequest$1 as CampaignBuildRequest, type CampaignBuildResult$1 as CampaignBuildResult, type CampaignBuildRow, type CampaignBuildStatus, CampaignBuilderAgent, type CampaignBuilderAgentPlan, type CampaignBuilderAgentProvider, type CampaignBuilderAgentRequest, type CampaignBuilderApproval, type CampaignBuilderApprovalPolicy, type CampaignBuilderApprovalType, type CampaignBuilderCustomerTool, type CampaignBuilderIntegrationRoute, type CampaignBuilderLayer, type CampaignBuilderMcpStep, type CampaignBuilderMemoryPlan, type CampaignBuilderMemoryQuery, type CampaignBuilderMemoryScope, type CampaignBuilderProvider, type CampaignBuilderRequiredApproval, type CampaignBuilderRouteMode, type CampaignBuilderWorkspaceContext, type CampaignDeliveryMode, type CampaignProviderRouteReadback, type CampaignRowsOptions, type CampaignRowsResult, Campaigns, type CancelBuildResult, type CompanyIntelligenceParams, type CompanyIntelligenceResult, type CreateOutputSinkRequest, type CreateRoutineRequest, type CreateSystemParams, type CustomAiAttachment, type CustomAiFusionConfig, type CustomAiMultiModelParams, type CustomAiMultiModelResult, type CustomAiOutputField, DEFAULT_SIGNALIZ_CAMPAIGN_BUILDER_DEFAULTS, type EmailBatchJobResult, type EnrichSignalsParams, type EnrichSignalsResult, type ErrorType, type ExecutionReference, type ExecutionReferenceInput, type ExecutionReferenceKind, type FindAndVerifyEmailContact, type FindEmailParams, type FindEmailResult, type GenerateLeadsParams, type GenerateLocalLeadsParams, type GtmActorType, type GtmAuthStrategy, type GtmBrainAggregateCalibrationsInput, type GtmBrainAggregatePatternsInput, type GtmBrainCalibrateDeliverabilityInput, type GtmBrainDeliveryRiskInput, type GtmBrainDistillRunInput, type GtmBrainExtractPatternsInput, type GtmBrainFailurePatternsOptions, type GtmBrainLearningAction, type GtmBrainLearningCyclePhase, type GtmBrainLearningCyclePlanInput, type GtmBrainLearningCyclePlanResult, type GtmBrainLearningCycleRunInput, type GtmBrainLearningEvidenceCounts, type GtmBrainLearningLane, type GtmBrainLearningLaneId, type GtmBrainLearningLaneState, type GtmBrainLearningLaneSummary, type GtmBrainLearningPhaseReadiness, type GtmBrainLearningPhaseStatus, type GtmBrainLearningRecommendedToolCall, type GtmBrainPatternsOptions, type GtmBrainSeedDefaultsInput, type GtmCalibrationDimensionType, type GtmCampaignBuildPlanInput, type GtmCampaignCreateInput, type GtmCampaignGetOptions, type GtmCampaignHistoryCampaignInput, type GtmCampaignHistoryImportBatchInput, type GtmCampaignHistoryImportInput, type GtmCampaignHistoryImportRunInput, type GtmCampaignHistoryMemoryInput, type GtmCampaignLearningStatusResult, type GtmCampaignListOptions, type GtmCampaignLogInput, type GtmCampaignSource, type GtmCampaignStatus, type GtmCampaignUpdateInput, type GtmConnectionRegisterInput, type GtmConnectionsListOptions, type GtmExistingCampaignAuditBoundary, type GtmExistingCampaignAuditBySearchOptions, type GtmExistingCampaignAuditOptions, type GtmExistingCampaignAuditRecommendation, type GtmExistingCampaignAuditResult, type GtmExistingCampaignCompletenessStep, type GtmExistingCampaignDiscoverOptions, type GtmExistingCampaignDiscoveryResult, type GtmExistingCampaignMcpRequest, type GtmExistingCampaignOption, type GtmFeedbackIngestInput, type GtmIntegrationRecipeCreateInput, type GtmInvocationType, GtmKernel, type GtmKernelImportPreviewInput, type GtmKernelImportRunInput, type GtmLayer, type GtmLayerRouteSetInput, type GtmLayerRoutesGetOptions, type GtmMemorySearchOptions, type GtmMemoryType, type GtmPatternType, type GtmProviderLinkInput, type GtmWebhookDeliverInput, type GtmWorkspaceBootstrapStatusOptions, type GtmWorkspaceContextOptions, type HttpRequestParams, type HttpRequestResult, type IcpDetail, type IcpSummary, Icps, type ImportOctaveResult, type LeadGenJobResult, type ListOutputSinksOptions, type MCPToolInfo, type NativeGtmCapabilityInfo, Ops, type OpsApproveRequest, type OpsApproveResult, type OpsBlueprint, type OpsCadence, type OpsCreateRequest, type OpsCreateResult, type OpsDashboardOptions, type OpsDashboardResult, type OpsDebugDiagnosticError, type OpsDebugOptions, type OpsDebugResult, type OpsPlanRequest, type OpsPlanResult, type OpsPrimitive, type OpsPrimitiveConcurrencyPolicy, type OpsPrimitiveDeadLetterPolicy, type OpsPrimitiveObservabilityPolicy, type OpsPrimitivePermissionLevel, type OpsPrimitiveRetryPolicy, type OpsPrimitiveWorkspaceScope, type OpsQueueStatus, type OpsQueueStatusOptions, type OpsQuickstartStep, type OpsQuickstartWorkflow, type OpsReadinessCheck, type OpsReadinessOptions, type OpsReadinessResult, type OpsReplayResult, type OpsResultsOptions, type OpsResultsResult, type OpsRoutine, type OpsRoutineDeleteResult, type OpsRoutineRunResult, type OpsRoutineSinkResult, type OpsRoutineStatus, type OpsRoutineTick, type OpsRoutineTickItem, type OpsRoutineTickItemsResult, type OpsRoutineTicksResult, type OpsRoutinesResult, type OpsRunOptions, type OpsRunResult, type OpsSink, type OpsSinkType, type OpsStatusOptions, type OpsStatusResult, type OpsTriggerBatchRunStatus, type OpsTriggerRunStatus, type OpsTriggerRunStatusOptions, type PlatformHealth, type RunNativeGtmCapabilityParams, type RunProgressEvent, type RunResult, type RunRoutineRequest, type RunSystemParams, type Signal, Signaliz, type SignalizCampaignBuilderDefaults, type SignalizConfig, SignalizError, type SignalizErrorData, type SimpleOpStatus, type SystemResult, type UpdateRoutineRequest, type VerifyEmailResult, type WaitOptions, type WorkspaceInfo, collectExecutionReferences, createCampaignBuilderAgentPlan, createCampaignBuilderApproval, getMissingCampaignBuilderApprovals, normalizeExecutionReference };