@signaliz/sdk 1.0.18 → 1.0.20
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/README.md +7 -0
- package/dist/{chunk-VFBQCWOM.mjs → chunk-PBJFIO72.mjs} +905 -21
- package/dist/cli.js +1161 -22
- package/dist/cli.mjs +248 -1
- package/dist/index.d.mts +555 -4
- package/dist/index.d.ts +555 -4
- package/dist/index.js +907 -21
- package/dist/index.mjs +5 -1
- package/dist/mcp-config.js +903 -21
- package/dist/mcp-config.mjs +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -33,7 +33,7 @@ interface FindEmailResult {
|
|
|
33
33
|
firstName?: string;
|
|
34
34
|
lastName?: string;
|
|
35
35
|
confidence: number;
|
|
36
|
-
verificationStatus: 'valid' | 'invalid' | '
|
|
36
|
+
verificationStatus: 'valid' | 'invalid' | 'unknown' | 'verifier_error';
|
|
37
37
|
providerUsed: string;
|
|
38
38
|
}
|
|
39
39
|
interface VerifyEmailResult {
|
|
@@ -63,10 +63,26 @@ interface EnrichSignalsParams {
|
|
|
63
63
|
domain?: string;
|
|
64
64
|
researchPrompt?: string;
|
|
65
65
|
signalTypes?: string[];
|
|
66
|
+
/** Desired signals per company. Accepted range: 1-15. */
|
|
67
|
+
targetSignalCount?: number;
|
|
68
|
+
lookbackDays?: number;
|
|
69
|
+
enableDeepSearch?: boolean;
|
|
66
70
|
}
|
|
67
71
|
interface Signal {
|
|
68
72
|
title: string;
|
|
69
73
|
signalType: string;
|
|
74
|
+
/** Event-derived open-vocabulary label (the user-facing source type). */
|
|
75
|
+
sourceType: string;
|
|
76
|
+
/** Original provider/provenance (for example news or company_website). */
|
|
77
|
+
sourceProvenance: string | null;
|
|
78
|
+
signalFamily?: string | null;
|
|
79
|
+
signalEventType?: string | null;
|
|
80
|
+
signalEventLabel?: string | null;
|
|
81
|
+
signalClassification?: {
|
|
82
|
+
label: string;
|
|
83
|
+
slug: string;
|
|
84
|
+
rationale?: string;
|
|
85
|
+
} | null;
|
|
70
86
|
confidenceScore: number;
|
|
71
87
|
detectedAt: string;
|
|
72
88
|
url?: string;
|
|
@@ -85,6 +101,7 @@ interface EnrichSignalsV2Params {
|
|
|
85
101
|
researchPrompt?: string;
|
|
86
102
|
signalTypes?: string[];
|
|
87
103
|
online?: boolean;
|
|
104
|
+
/** Desired signals per company. Accepted range: 1-15. */
|
|
88
105
|
targetSignalCount?: number;
|
|
89
106
|
lookbackDays?: number;
|
|
90
107
|
enableDeepSearch?: boolean;
|
|
@@ -102,7 +119,17 @@ interface SignalV2 {
|
|
|
102
119
|
date: string | null;
|
|
103
120
|
sourceUrl: string | null;
|
|
104
121
|
sourceType: string;
|
|
122
|
+
sourceProvenance: string | null;
|
|
123
|
+
signalFamily?: string | null;
|
|
124
|
+
signalEventType?: string | null;
|
|
125
|
+
signalEventLabel?: string | null;
|
|
105
126
|
confidence: number | null;
|
|
127
|
+
/** Event-derived open-vocabulary classification; never limited to a fixed taxonomy. */
|
|
128
|
+
signalClassification?: {
|
|
129
|
+
label: string;
|
|
130
|
+
slug: string;
|
|
131
|
+
rationale?: string;
|
|
132
|
+
} | null;
|
|
106
133
|
}
|
|
107
134
|
interface OutreachIntelligence {
|
|
108
135
|
urgencyScore: number | null;
|
|
@@ -154,6 +181,84 @@ interface EnrichSignalsV2Result {
|
|
|
154
181
|
processingTimeMs: number;
|
|
155
182
|
};
|
|
156
183
|
}
|
|
184
|
+
interface PersonalizeSignalParams {
|
|
185
|
+
companyDomain: string;
|
|
186
|
+
personName: string;
|
|
187
|
+
title: string;
|
|
188
|
+
campaignOffer: string;
|
|
189
|
+
researchPrompt?: string;
|
|
190
|
+
}
|
|
191
|
+
interface PersonalizeSignalVariation {
|
|
192
|
+
style: 'signal_led' | 'business_case' | 'predictive';
|
|
193
|
+
subjectLine: string;
|
|
194
|
+
openingLine: string;
|
|
195
|
+
cta: string;
|
|
196
|
+
prediction?: string;
|
|
197
|
+
email?: string;
|
|
198
|
+
}
|
|
199
|
+
interface PersonalizeSignalResult {
|
|
200
|
+
success: boolean;
|
|
201
|
+
strongestSignal: string;
|
|
202
|
+
whyNow: string;
|
|
203
|
+
subjectLine: string;
|
|
204
|
+
openingLine: string;
|
|
205
|
+
confidence: number;
|
|
206
|
+
evidenceUrl: string;
|
|
207
|
+
researchPrompt?: string;
|
|
208
|
+
variations: PersonalizeSignalVariation[];
|
|
209
|
+
}
|
|
210
|
+
type FusionPreset = 'general-budget' | 'general-high';
|
|
211
|
+
interface FusionCostSummary {
|
|
212
|
+
total_cost_usd?: number;
|
|
213
|
+
average_cost_usd_per_record?: number;
|
|
214
|
+
average_cost_usd_per_company?: number;
|
|
215
|
+
tokens_used?: number;
|
|
216
|
+
cost_sources?: string[];
|
|
217
|
+
pricing_note?: string;
|
|
218
|
+
}
|
|
219
|
+
interface SignalFusionParams {
|
|
220
|
+
companyName?: string;
|
|
221
|
+
domain?: string;
|
|
222
|
+
companyDomain?: string;
|
|
223
|
+
linkedinUrl?: string;
|
|
224
|
+
companies?: Record<string, unknown>[];
|
|
225
|
+
preset?: FusionPreset;
|
|
226
|
+
researchPrompt?: string;
|
|
227
|
+
signalTypes?: string[];
|
|
228
|
+
lookbackDays?: number;
|
|
229
|
+
targetSignalCount?: number;
|
|
230
|
+
maxToolCalls?: number;
|
|
231
|
+
maxTokens?: number;
|
|
232
|
+
timeoutMs?: number;
|
|
233
|
+
dryRun?: boolean;
|
|
234
|
+
dry_run?: boolean;
|
|
235
|
+
confirmSpend?: boolean;
|
|
236
|
+
confirm_spend?: boolean;
|
|
237
|
+
maxCredits?: number;
|
|
238
|
+
max_credits?: number;
|
|
239
|
+
maxCostUsd?: number;
|
|
240
|
+
max_cost_usd?: number;
|
|
241
|
+
}
|
|
242
|
+
interface SignalFusionResult {
|
|
243
|
+
success: boolean;
|
|
244
|
+
capability: string;
|
|
245
|
+
displayName: string;
|
|
246
|
+
company?: {
|
|
247
|
+
name?: string | null;
|
|
248
|
+
domain?: string | null;
|
|
249
|
+
};
|
|
250
|
+
signals: SignalV2[];
|
|
251
|
+
signalCount: number;
|
|
252
|
+
results: Record<string, unknown>[];
|
|
253
|
+
model?: string;
|
|
254
|
+
fusion?: Record<string, unknown>;
|
|
255
|
+
costUsd: number;
|
|
256
|
+
tokensUsed: number;
|
|
257
|
+
costSummary?: FusionCostSummary;
|
|
258
|
+
creditsUsed: number;
|
|
259
|
+
billingMetadata?: Record<string, unknown>;
|
|
260
|
+
raw: Record<string, unknown>;
|
|
261
|
+
}
|
|
157
262
|
interface CompanyIntelligenceParams {
|
|
158
263
|
companyName: string;
|
|
159
264
|
domain?: string;
|
|
@@ -251,6 +356,8 @@ interface CustomAiMultiModelParams {
|
|
|
251
356
|
max_concurrency?: number;
|
|
252
357
|
maxTokens?: number;
|
|
253
358
|
max_tokens?: number;
|
|
359
|
+
timeoutMs?: number;
|
|
360
|
+
timeout_ms?: number;
|
|
254
361
|
outputFields?: CustomAiOutputField[];
|
|
255
362
|
output_fields?: CustomAiOutputField[];
|
|
256
363
|
attachments?: CustomAiAttachment[];
|
|
@@ -274,6 +381,48 @@ interface CustomAiMultiModelResult {
|
|
|
274
381
|
billingMetadata?: Record<string, unknown>;
|
|
275
382
|
raw: Record<string, unknown>;
|
|
276
383
|
}
|
|
384
|
+
interface AiEnrichmentFusionParams {
|
|
385
|
+
prompt?: string;
|
|
386
|
+
input?: Record<string, unknown>;
|
|
387
|
+
inputs?: Record<string, unknown>[];
|
|
388
|
+
records?: Record<string, unknown>[];
|
|
389
|
+
preset?: FusionPreset;
|
|
390
|
+
systemPrompt?: string;
|
|
391
|
+
system_prompt?: string;
|
|
392
|
+
userTemplate?: string;
|
|
393
|
+
user_template?: string;
|
|
394
|
+
temperature?: number;
|
|
395
|
+
maxToolCalls?: number;
|
|
396
|
+
max_tool_calls?: number;
|
|
397
|
+
maxTokens?: number;
|
|
398
|
+
max_tokens?: number;
|
|
399
|
+
timeoutMs?: number;
|
|
400
|
+
timeout_ms?: number;
|
|
401
|
+
dryRun?: boolean;
|
|
402
|
+
dry_run?: boolean;
|
|
403
|
+
confirmSpend?: boolean;
|
|
404
|
+
confirm_spend?: boolean;
|
|
405
|
+
maxCredits?: number;
|
|
406
|
+
max_credits?: number;
|
|
407
|
+
maxCostUsd?: number;
|
|
408
|
+
max_cost_usd?: number;
|
|
409
|
+
outputFields?: CustomAiOutputField[];
|
|
410
|
+
output_fields?: CustomAiOutputField[];
|
|
411
|
+
}
|
|
412
|
+
interface AiEnrichmentFusionResult {
|
|
413
|
+
success: boolean;
|
|
414
|
+
capability: string;
|
|
415
|
+
displayName: string;
|
|
416
|
+
results: Record<string, unknown>[];
|
|
417
|
+
creditsUsed: number;
|
|
418
|
+
model?: string;
|
|
419
|
+
fusion?: Record<string, unknown>;
|
|
420
|
+
tokensUsed: number;
|
|
421
|
+
costUsd: number;
|
|
422
|
+
costSummary?: FusionCostSummary;
|
|
423
|
+
billingMetadata?: Record<string, unknown>;
|
|
424
|
+
raw: Record<string, unknown>;
|
|
425
|
+
}
|
|
277
426
|
interface WorkspaceInfo {
|
|
278
427
|
id: string;
|
|
279
428
|
name: string;
|
|
@@ -435,10 +584,16 @@ declare class Emails {
|
|
|
435
584
|
declare class Signals {
|
|
436
585
|
private client;
|
|
437
586
|
constructor(client: HttpClient);
|
|
587
|
+
/** Turn the strongest supported company signal into three complete, evidence-backed emails. */
|
|
588
|
+
signalToCopy(params: PersonalizeSignalParams): Promise<PersonalizeSignalResult>;
|
|
589
|
+
/** @deprecated Use signalToCopy. Retained for compatibility. */
|
|
590
|
+
personalize(params: PersonalizeSignalParams): Promise<PersonalizeSignalResult>;
|
|
438
591
|
/** Enrich a company with actionable signals (V1) */
|
|
439
592
|
enrich(params: EnrichSignalsParams): Promise<EnrichSignalsResult>;
|
|
440
593
|
/** Enrich a company with actionable signals (V2 — clean response + online mode) */
|
|
441
594
|
enrichV2(params: EnrichSignalsV2Params): Promise<EnrichSignalsV2Result>;
|
|
595
|
+
/** Plan or run experimental Signal Fusion with explicit spend controls. */
|
|
596
|
+
fusion(params: SignalFusionParams): Promise<SignalFusionResult>;
|
|
442
597
|
}
|
|
443
598
|
|
|
444
599
|
declare class Systems {
|
|
@@ -501,6 +656,7 @@ interface CampaignBuildRequest$1 {
|
|
|
501
656
|
keywords?: string[];
|
|
502
657
|
exclusions?: string[];
|
|
503
658
|
requireVerifiedEmail?: boolean;
|
|
659
|
+
personaExpansionMode?: 'strict' | 'expanded';
|
|
504
660
|
};
|
|
505
661
|
targetCount?: number;
|
|
506
662
|
/** Return a validated plan without launching spendful work. */
|
|
@@ -549,6 +705,7 @@ interface CampaignBuildRequest$1 {
|
|
|
549
705
|
};
|
|
550
706
|
sequenceSteps?: 1 | 2 | 3;
|
|
551
707
|
copySchema?: 'single_message' | 'three_step_email';
|
|
708
|
+
evidenceMode?: 'signal_led' | 'firmographic';
|
|
552
709
|
bannedPhrases?: string[];
|
|
553
710
|
approvalRequired?: boolean;
|
|
554
711
|
qualityTier?: 'quality';
|
|
@@ -731,6 +888,7 @@ interface CampaignCustomerRowCounts {
|
|
|
731
888
|
acceptedRows?: number;
|
|
732
889
|
usableRows?: number;
|
|
733
890
|
copiedRows?: number;
|
|
891
|
+
copySkippedRows?: number;
|
|
734
892
|
approvalReadyRows?: number;
|
|
735
893
|
qaReadyRows?: number;
|
|
736
894
|
deliveredRows?: number;
|
|
@@ -938,6 +1096,7 @@ type CampaignBuildRequest = CampaignBuildRequest$1 & {
|
|
|
938
1096
|
campaignStrategyContext?: UnknownRecord$1;
|
|
939
1097
|
deliveryRisk?: UnknownRecord$1;
|
|
940
1098
|
sourceRouting?: CampaignBuilderSourceRouting;
|
|
1099
|
+
evidence?: CampaignBuilderEvidencePacket;
|
|
941
1100
|
};
|
|
942
1101
|
interface CampaignBuilderSourceRouting {
|
|
943
1102
|
mode?: 'auto' | 'local_leads' | 'company_first' | 'people_first' | 'verified_leads';
|
|
@@ -966,7 +1125,7 @@ type CampaignBuilderProvider = 'signaliz' | 'octave' | 'apollo' | 'ai_ark' | 'cl
|
|
|
966
1125
|
type CampaignBuilderAgentProvider = CampaignBuilderProvider;
|
|
967
1126
|
type CampaignBuilderBuiltInTool = 'lead_generation' | 'local_leads' | 'company_discovery' | 'people_discovery' | 'email_finding' | 'email_verification' | 'signals';
|
|
968
1127
|
type CampaignBuilderStrategyTemplateSlug = 'industrial-ot-resilience' | 'non-medical-home-care' | 'agency-founder-led' | 'cloud-infrastructure-displacement';
|
|
969
|
-
type CampaignBuilderOperatingPlaybookSlug = 'cache-first-large-list' | 'net-new-suppressed-list' | 'proof-first-vertical-gate' | 'signal-led-copy-approval' | 'domain-first-recovery' | 'table-workflow-handoff';
|
|
1128
|
+
type CampaignBuilderOperatingPlaybookSlug = 'cache-first-large-list' | 'net-new-suppressed-list' | 'proof-first-vertical-gate' | 'signal-led-copy-approval' | 'domain-first-recovery' | 'table-workflow-handoff' | 'icp-persona-segmentation' | 'buying-signal-prioritization' | 'multi-channel-sequence-fit' | 'revops-feedback-loop';
|
|
970
1129
|
type CampaignBuilderRouteMode = 'required' | 'if_available' | 'fallback' | 'disabled';
|
|
971
1130
|
type CampaignBuilderProviderRoutingMode = 'preferred' | 'fallback' | 'disabled';
|
|
972
1131
|
type CampaignBuilderProviderInvocationType = 'signaliz_native' | 'mcp' | 'mcp_tool' | 'webhook' | 'api' | 'airbyte' | 'manual' | 'managed_integration';
|
|
@@ -1077,6 +1236,7 @@ interface SignalizCampaignBuilderDefaults {
|
|
|
1077
1236
|
senderContext?: string;
|
|
1078
1237
|
offerContext?: string;
|
|
1079
1238
|
model?: string;
|
|
1239
|
+
evidenceMode?: 'signal_led' | 'firmographic';
|
|
1080
1240
|
};
|
|
1081
1241
|
delivery?: {
|
|
1082
1242
|
enabled?: boolean;
|
|
@@ -1091,6 +1251,54 @@ interface CampaignBuilderApprovalPolicy {
|
|
|
1091
1251
|
requireApprovalFor?: CampaignBuilderApprovalType[];
|
|
1092
1252
|
approvedByDefault?: CampaignBuilderApprovalType[];
|
|
1093
1253
|
}
|
|
1254
|
+
interface CampaignBuilderAttachmentEvidence {
|
|
1255
|
+
name: string;
|
|
1256
|
+
kind?: string;
|
|
1257
|
+
mediaType?: string;
|
|
1258
|
+
redacted?: boolean;
|
|
1259
|
+
columns?: string[];
|
|
1260
|
+
rowCount?: number;
|
|
1261
|
+
contentSummary?: string;
|
|
1262
|
+
evidenceFields?: string[];
|
|
1263
|
+
}
|
|
1264
|
+
interface CampaignBuilderUrlEvidence {
|
|
1265
|
+
url: string;
|
|
1266
|
+
type?: string;
|
|
1267
|
+
host?: string;
|
|
1268
|
+
label?: string;
|
|
1269
|
+
summary?: string;
|
|
1270
|
+
redacted?: boolean;
|
|
1271
|
+
}
|
|
1272
|
+
interface CampaignBuilderAgentEvidence {
|
|
1273
|
+
attachments?: CampaignBuilderAttachmentEvidence[];
|
|
1274
|
+
urls?: CampaignBuilderUrlEvidence[];
|
|
1275
|
+
notes?: string[];
|
|
1276
|
+
}
|
|
1277
|
+
interface CampaignBuilderEvidencePacket {
|
|
1278
|
+
packet_version: 'campaign-builder-evidence.v1';
|
|
1279
|
+
private_safe: true;
|
|
1280
|
+
attachment_summary: Array<{
|
|
1281
|
+
name: string;
|
|
1282
|
+
kind: string | null;
|
|
1283
|
+
media_type: string | null;
|
|
1284
|
+
redacted: boolean;
|
|
1285
|
+
columns: string[];
|
|
1286
|
+
row_count: number | null;
|
|
1287
|
+
content_summary: string | null;
|
|
1288
|
+
evidence_fields: string[];
|
|
1289
|
+
}>;
|
|
1290
|
+
url_summary: Array<{
|
|
1291
|
+
url: string;
|
|
1292
|
+
host: string | null;
|
|
1293
|
+
type: string | null;
|
|
1294
|
+
label: string | null;
|
|
1295
|
+
summary: string | null;
|
|
1296
|
+
redacted: boolean;
|
|
1297
|
+
}>;
|
|
1298
|
+
operator_notes: string[];
|
|
1299
|
+
privacy_boundary: string;
|
|
1300
|
+
raw_private_fields_withheld: string[];
|
|
1301
|
+
}
|
|
1094
1302
|
interface CampaignBuilderAgentRequest {
|
|
1095
1303
|
goal: string;
|
|
1096
1304
|
/** Named private-safe strategy template to merge into the request. */
|
|
@@ -1111,6 +1319,8 @@ interface CampaignBuilderAgentRequest {
|
|
|
1111
1319
|
/** Optional output from gtm_brain_delivery_risk. Required before committed-campaign launch handoff. */
|
|
1112
1320
|
deliveryRisk?: UnknownRecord$1;
|
|
1113
1321
|
workspaceContext?: CampaignBuilderWorkspaceContext;
|
|
1322
|
+
/** Private-safe attachment and URL summaries supplied by chat/runtime context. Never include raw attachment text or rows. */
|
|
1323
|
+
evidence?: CampaignBuilderAgentEvidence;
|
|
1114
1324
|
memory?: CampaignBuilderMemoryPlan;
|
|
1115
1325
|
integrations?: CampaignBuilderIntegrationRoute[];
|
|
1116
1326
|
customerTools?: CampaignBuilderCustomerTool[];
|
|
@@ -1168,6 +1378,7 @@ interface CampaignBuilderOperatingPlaybook {
|
|
|
1168
1378
|
qualityGates: string[];
|
|
1169
1379
|
activationBoundary: string;
|
|
1170
1380
|
memoryKeywords: string[];
|
|
1381
|
+
knowledgeSources: string[];
|
|
1171
1382
|
}
|
|
1172
1383
|
interface CampaignBuilderRequiredApproval {
|
|
1173
1384
|
id: string;
|
|
@@ -1208,6 +1419,7 @@ interface CampaignBuilderAgentPlan {
|
|
|
1208
1419
|
approvals: CampaignBuilderRequiredApproval[];
|
|
1209
1420
|
buildRequest: CampaignBuildRequest;
|
|
1210
1421
|
brainPreflight: UnknownRecord$1;
|
|
1422
|
+
evidence: CampaignBuilderEvidencePacket | null;
|
|
1211
1423
|
operatingPlaybooks: CampaignBuilderOperatingPlaybook[];
|
|
1212
1424
|
strategyMemoryStatus?: UnknownRecord$1;
|
|
1213
1425
|
kernelPlan?: UnknownRecord$1;
|
|
@@ -1275,6 +1487,7 @@ interface CampaignBuilderProofReceipt {
|
|
|
1275
1487
|
estimated_credits: number;
|
|
1276
1488
|
operating_playbooks: string[];
|
|
1277
1489
|
};
|
|
1490
|
+
evidence: CampaignBuilderEvidencePacket | null;
|
|
1278
1491
|
gates: Array<UnknownRecord$1 & {
|
|
1279
1492
|
id: string;
|
|
1280
1493
|
passed: boolean;
|
|
@@ -1480,6 +1693,167 @@ interface CampaignBuilderReadinessPacket {
|
|
|
1480
1693
|
summary: CampaignBuilderReadinessSummary;
|
|
1481
1694
|
nextActions: string[];
|
|
1482
1695
|
}
|
|
1696
|
+
type CampaignBuilderActiveWorkState = 'unknown' | 'planning' | 'blocked' | 'needs_approval' | 'ready_for_dry_run' | 'dry_run_complete' | 'queued_or_running' | 'completed';
|
|
1697
|
+
interface CampaignBuilderActiveWorkReference {
|
|
1698
|
+
kind: 'plan' | 'gtm_campaign' | 'campaign_build' | 'provider_campaign' | 'provider_route' | 'memory' | 'approval' | 'external_job' | (string & {});
|
|
1699
|
+
id: string;
|
|
1700
|
+
label?: string;
|
|
1701
|
+
status?: string;
|
|
1702
|
+
source?: string;
|
|
1703
|
+
}
|
|
1704
|
+
interface CampaignBuilderActiveWorkMcpAction {
|
|
1705
|
+
id: string;
|
|
1706
|
+
tool: string;
|
|
1707
|
+
arguments: UnknownRecord$1;
|
|
1708
|
+
read_only: boolean;
|
|
1709
|
+
approval_required: boolean;
|
|
1710
|
+
safety: string;
|
|
1711
|
+
}
|
|
1712
|
+
interface CampaignBuilderActiveWorkSummary {
|
|
1713
|
+
plan_id: string | null;
|
|
1714
|
+
campaign_name: string | null;
|
|
1715
|
+
target_count: number | null;
|
|
1716
|
+
gtm_campaign_id: string | null;
|
|
1717
|
+
campaign_build_id: string | null;
|
|
1718
|
+
provider_campaign_id: string | null;
|
|
1719
|
+
}
|
|
1720
|
+
interface CampaignBuilderActiveWorkApprovalPacket {
|
|
1721
|
+
packet_version: 'campaign-builder-approval-packet.v1';
|
|
1722
|
+
read_only: true;
|
|
1723
|
+
no_spend: true;
|
|
1724
|
+
no_provider_writes: true;
|
|
1725
|
+
private_safe: true;
|
|
1726
|
+
approval_state: 'unscoped' | 'requires_approval' | 'approved';
|
|
1727
|
+
plan_id: string | null;
|
|
1728
|
+
campaign_name: string | null;
|
|
1729
|
+
requested_approval_types: CampaignBuilderApprovalType[];
|
|
1730
|
+
missing_approval_types: CampaignBuilderApprovalType[];
|
|
1731
|
+
spend_limit_credits_required: number | null;
|
|
1732
|
+
route_ids_required: string[];
|
|
1733
|
+
required_approvals: Array<{
|
|
1734
|
+
id: string;
|
|
1735
|
+
type: CampaignBuilderApprovalType;
|
|
1736
|
+
label: string;
|
|
1737
|
+
reason: string;
|
|
1738
|
+
blocking: boolean;
|
|
1739
|
+
route_id?: string;
|
|
1740
|
+
provider?: CampaignBuilderProvider;
|
|
1741
|
+
estimated_credits?: number;
|
|
1742
|
+
status: 'missing' | 'approved';
|
|
1743
|
+
}>;
|
|
1744
|
+
approval_input: {
|
|
1745
|
+
approved_by: string | null;
|
|
1746
|
+
approved_at: string | null;
|
|
1747
|
+
approved_types: CampaignBuilderApprovalType[];
|
|
1748
|
+
approved_route_ids: string[];
|
|
1749
|
+
spend_limit_credits: number | null;
|
|
1750
|
+
notes?: string;
|
|
1751
|
+
};
|
|
1752
|
+
cli_handoff: {
|
|
1753
|
+
command: string;
|
|
1754
|
+
safety: string;
|
|
1755
|
+
} | null;
|
|
1756
|
+
sdk_handoff: {
|
|
1757
|
+
method: 'campaignBuilderAgent.buildApprovedPlan';
|
|
1758
|
+
approval: {
|
|
1759
|
+
approvedBy: string;
|
|
1760
|
+
approvedTypes: CampaignBuilderApprovalType[];
|
|
1761
|
+
approvedRouteIds: string[];
|
|
1762
|
+
spendLimitCredits?: number;
|
|
1763
|
+
notes?: string;
|
|
1764
|
+
};
|
|
1765
|
+
options: {
|
|
1766
|
+
idempotencyKey: string;
|
|
1767
|
+
};
|
|
1768
|
+
safety: string;
|
|
1769
|
+
} | null;
|
|
1770
|
+
mcp_handoffs: CampaignBuilderActiveWorkMcpAction[];
|
|
1771
|
+
safety_boundary: string;
|
|
1772
|
+
}
|
|
1773
|
+
interface CampaignBuilderOpenAiAgentHandoffTool {
|
|
1774
|
+
id: string;
|
|
1775
|
+
type: 'mcp';
|
|
1776
|
+
server_label: 'signaliz';
|
|
1777
|
+
name: string;
|
|
1778
|
+
arguments: UnknownRecord$1;
|
|
1779
|
+
read_only: boolean;
|
|
1780
|
+
approval_required: boolean;
|
|
1781
|
+
purpose: string;
|
|
1782
|
+
safety: string;
|
|
1783
|
+
}
|
|
1784
|
+
interface CampaignBuilderOpenAiAgentHandoff {
|
|
1785
|
+
packet_version: 'campaign-builder-openai-agent-handoff.v1';
|
|
1786
|
+
surface: 'openai_agents_sdk';
|
|
1787
|
+
agent: {
|
|
1788
|
+
name: 'Signaliz GTM Campaign Agent';
|
|
1789
|
+
handoff_description: string;
|
|
1790
|
+
instructions: string[];
|
|
1791
|
+
output_contract: string[];
|
|
1792
|
+
};
|
|
1793
|
+
context: {
|
|
1794
|
+
state: CampaignBuilderActiveWorkState;
|
|
1795
|
+
summary: CampaignBuilderActiveWorkSummary;
|
|
1796
|
+
refs: CampaignBuilderActiveWorkReference[];
|
|
1797
|
+
blockers: string[];
|
|
1798
|
+
warnings: string[];
|
|
1799
|
+
evidence_context: CampaignBuilderEvidencePacket | null;
|
|
1800
|
+
approval_packet: CampaignBuilderActiveWorkApprovalPacket;
|
|
1801
|
+
approval_boundary: string;
|
|
1802
|
+
next_safe_action: string;
|
|
1803
|
+
conversation_starters: string[];
|
|
1804
|
+
};
|
|
1805
|
+
tools: {
|
|
1806
|
+
mcp_server_label: 'signaliz';
|
|
1807
|
+
remote_mcp_compatible: true;
|
|
1808
|
+
next_safe_mcp_action: CampaignBuilderActiveWorkMcpAction | null;
|
|
1809
|
+
safe_read_tools: CampaignBuilderOpenAiAgentHandoffTool[];
|
|
1810
|
+
approval_gated_tools: CampaignBuilderOpenAiAgentHandoffTool[];
|
|
1811
|
+
};
|
|
1812
|
+
guardrails: {
|
|
1813
|
+
input: string[];
|
|
1814
|
+
tool: string[];
|
|
1815
|
+
human_review_required_for: CampaignBuilderApprovalType[];
|
|
1816
|
+
privacy: string;
|
|
1817
|
+
};
|
|
1818
|
+
}
|
|
1819
|
+
interface CampaignBuilderRememberedWork {
|
|
1820
|
+
planId?: string;
|
|
1821
|
+
gtmCampaignId?: string;
|
|
1822
|
+
campaignBuildId?: string;
|
|
1823
|
+
providerCampaignId?: string;
|
|
1824
|
+
provider?: string;
|
|
1825
|
+
status?: string;
|
|
1826
|
+
refs?: CampaignBuilderActiveWorkReference[];
|
|
1827
|
+
}
|
|
1828
|
+
interface CampaignBuilderActiveWorkContextInput {
|
|
1829
|
+
plan?: CampaignBuilderAgentPlan;
|
|
1830
|
+
readiness?: CampaignBuilderReadinessPacket;
|
|
1831
|
+
remembered?: CampaignBuilderRememberedWork;
|
|
1832
|
+
refs?: CampaignBuilderActiveWorkReference[];
|
|
1833
|
+
approval?: CampaignBuilderApproval;
|
|
1834
|
+
blockers?: string[];
|
|
1835
|
+
warnings?: string[];
|
|
1836
|
+
lastResult?: UnknownRecord$1;
|
|
1837
|
+
}
|
|
1838
|
+
interface CampaignBuilderActiveWorkContextPacket {
|
|
1839
|
+
packet_version: 'campaign-builder-active-work-context.v1';
|
|
1840
|
+
read_only: true;
|
|
1841
|
+
no_spend: true;
|
|
1842
|
+
no_provider_writes: true;
|
|
1843
|
+
private_safe: true;
|
|
1844
|
+
state: CampaignBuilderActiveWorkState;
|
|
1845
|
+
summary: CampaignBuilderActiveWorkSummary;
|
|
1846
|
+
refs: CampaignBuilderActiveWorkReference[];
|
|
1847
|
+
blockers: string[];
|
|
1848
|
+
warnings: string[];
|
|
1849
|
+
missing_approval_types: CampaignBuilderApprovalType[];
|
|
1850
|
+
approval_packet: CampaignBuilderActiveWorkApprovalPacket;
|
|
1851
|
+
approval_boundary: string;
|
|
1852
|
+
next_safe_action: string;
|
|
1853
|
+
next_safe_mcp_action: CampaignBuilderActiveWorkMcpAction | null;
|
|
1854
|
+
conversation_starters: string[];
|
|
1855
|
+
openai_agent_handoff: CampaignBuilderOpenAiAgentHandoff;
|
|
1856
|
+
}
|
|
1483
1857
|
declare const DEFAULT_SIGNALIZ_CAMPAIGN_BUILDER_DEFAULTS: Required<Pick<SignalizCampaignBuilderDefaults, 'requireVerifiedEmail' | 'dedupKeys' | 'allowDownscale'>> & SignalizCampaignBuilderDefaults;
|
|
1484
1858
|
declare const DEFAULT_CAMPAIGN_BUILDER_BUILT_INS: CampaignBuilderBuiltInTool[];
|
|
1485
1859
|
declare const DEFAULT_CAMPAIGN_BUILDER_APPROVAL_TYPES: CampaignBuilderApprovalType[];
|
|
@@ -1490,6 +1864,7 @@ declare class CampaignBuilderAgent {
|
|
|
1490
1864
|
constructor(client: HttpClient);
|
|
1491
1865
|
createPlan(request: CampaignBuilderAgentRequest, options?: CampaignBuilderPlanOptions): Promise<CampaignBuilderAgentPlan>;
|
|
1492
1866
|
readiness(request: CampaignBuilderAgentRequest, options?: CampaignBuilderPlanOptions): Promise<CampaignBuilderReadinessPacket>;
|
|
1867
|
+
activeWorkContext(input: CampaignBuilderActiveWorkContextInput): CampaignBuilderActiveWorkContextPacket;
|
|
1493
1868
|
proof(request: CampaignBuilderAgentRequest, options?: CampaignBuilderProofOptions): Promise<CampaignBuilderProofReceipt>;
|
|
1494
1869
|
buildKit(options?: CampaignBuilderBuildKitOptions): CampaignBuilderBuildKit;
|
|
1495
1870
|
memoryKit(options?: CampaignBuilderMemoryKitOptions): CampaignBuilderMemoryKit;
|
|
@@ -1524,6 +1899,7 @@ declare function createCampaignBuilderAgentPlan(request: CampaignBuilderAgentReq
|
|
|
1524
1899
|
warnings?: string[];
|
|
1525
1900
|
}): CampaignBuilderAgentPlan;
|
|
1526
1901
|
declare function createCampaignBuilderReadiness(plan: CampaignBuilderAgentPlan): CampaignBuilderReadinessPacket;
|
|
1902
|
+
declare function createCampaignBuilderActiveWorkContext(input: CampaignBuilderActiveWorkContextInput): CampaignBuilderActiveWorkContextPacket;
|
|
1527
1903
|
declare function createCampaignBuilderProofReceipt(plan: CampaignBuilderAgentPlan, result: unknown): CampaignBuilderProofReceipt;
|
|
1528
1904
|
declare function getMissingCampaignBuilderApprovals(plan: CampaignBuilderAgentPlan, approval: CampaignBuilderApproval): CampaignBuilderRequiredApproval[];
|
|
1529
1905
|
declare function createCampaignBuilderApproval(plan: CampaignBuilderAgentPlan, input: Omit<CampaignBuilderApproval, 'planId' | 'approvedAt'>): CampaignBuilderApproval;
|
|
@@ -2361,6 +2737,21 @@ interface GtmBrainDeliveryRiskInput {
|
|
|
2361
2737
|
minConfidence?: number;
|
|
2362
2738
|
limit?: number;
|
|
2363
2739
|
}
|
|
2740
|
+
interface GtmMeetingLikelihoodInput {
|
|
2741
|
+
leadRows: UnknownRecord[];
|
|
2742
|
+
inputSource?: string;
|
|
2743
|
+
campaignId?: string;
|
|
2744
|
+
campaignBuildId?: string;
|
|
2745
|
+
days?: number;
|
|
2746
|
+
feedbackLimit?: number;
|
|
2747
|
+
includeFeatures?: boolean;
|
|
2748
|
+
includeGlobal?: boolean;
|
|
2749
|
+
minFeedbackEvents?: number;
|
|
2750
|
+
minHistoricalFeatureSampleSize?: number;
|
|
2751
|
+
minWorkspaceCount?: number;
|
|
2752
|
+
minPrivacyK?: number;
|
|
2753
|
+
limit?: number;
|
|
2754
|
+
}
|
|
2364
2755
|
type GtmCalibrationDimensionType = 'email_domain' | 'email_provider' | 'verification_source' | 'lead_source' | 'provider_chain' | 'icp_shape' | 'copy_pattern' | 'other';
|
|
2365
2756
|
type GtmFailurePatternDimension = 'provider_chain' | 'provider' | 'icp_shape' | 'lead_source' | 'copy_pattern' | 'sequence_step' | 'email_domain';
|
|
2366
2757
|
interface GtmBrainFailurePatternsOptions {
|
|
@@ -2395,7 +2786,7 @@ interface GtmAgencyAutopilotCapabilityCatalogOptions {
|
|
|
2395
2786
|
includeAgentPrompts?: boolean;
|
|
2396
2787
|
}
|
|
2397
2788
|
type GtmAgencyAutopilotPlaybookOutcomeType = 'lead_list' | 'clay_table' | 'gtm_motion' | 'proof_governance';
|
|
2398
|
-
type GtmAgencyAutopilotPlaybookSlug = 'cache-first-large-list' | 'net-new-suppressed-list' | 'proof-first-vertical-gate' | 'signal-led-copy-approval' | 'domain-first-recovery' | 'table-workflow-handoff';
|
|
2789
|
+
type GtmAgencyAutopilotPlaybookSlug = 'cache-first-large-list' | 'net-new-suppressed-list' | 'proof-first-vertical-gate' | 'signal-led-copy-approval' | 'domain-first-recovery' | 'table-workflow-handoff' | 'icp-persona-segmentation' | 'buying-signal-prioritization' | 'multi-channel-sequence-fit' | 'revops-feedback-loop';
|
|
2399
2790
|
interface GtmAgencyAutopilotPlaybookCatalogOptions {
|
|
2400
2791
|
query?: string;
|
|
2401
2792
|
playbookSlug?: GtmAgencyAutopilotPlaybookSlug;
|
|
@@ -2851,6 +3242,8 @@ declare class GtmKernel {
|
|
|
2851
3242
|
calibrateDeliverability(input?: GtmBrainCalibrateDeliverabilityInput): Promise<any>;
|
|
2852
3243
|
/** Estimate pre-send delivery risk from campaign context, lead samples, and Brain calibrations. */
|
|
2853
3244
|
deliveryRisk(input?: GtmBrainDeliveryRiskInput): Promise<any>;
|
|
3245
|
+
/** Predict booked-meeting likelihood for uploaded, inline, or MCP-sourced lead rows without persisting raw rows. */
|
|
3246
|
+
predictMeetingLikelihood(input: GtmMeetingLikelihoodInput): Promise<any>;
|
|
2854
3247
|
/** Rank provider-chain, ICP, source, copy, and sequence failure patterns without writing raw lead data. */
|
|
2855
3248
|
failurePatterns(options?: GtmBrainFailurePatternsOptions): Promise<any>;
|
|
2856
3249
|
/** List provider presets agents can wire into GTM campaign layers, including BYO and Signaliz fallback options. */
|
|
@@ -4255,6 +4648,163 @@ declare class Ai {
|
|
|
4255
4648
|
* requested structured output fields.
|
|
4256
4649
|
*/
|
|
4257
4650
|
multiModel(params: CustomAiMultiModelParams): Promise<CustomAiMultiModelResult>;
|
|
4651
|
+
/**
|
|
4652
|
+
* Plan or run experimental AI Enrichment Fusion with explicit spend controls.
|
|
4653
|
+
*/
|
|
4654
|
+
fusion(params: AiEnrichmentFusionParams): Promise<AiEnrichmentFusionResult>;
|
|
4655
|
+
}
|
|
4656
|
+
|
|
4657
|
+
interface PublicGroundTruthSearchParams {
|
|
4658
|
+
query?: string;
|
|
4659
|
+
search?: string;
|
|
4660
|
+
industry?: string;
|
|
4661
|
+
location?: string;
|
|
4662
|
+
sourceId?: string;
|
|
4663
|
+
source_id?: string;
|
|
4664
|
+
entityType?: string;
|
|
4665
|
+
entity_type?: string;
|
|
4666
|
+
nativeId?: string;
|
|
4667
|
+
native_id?: string;
|
|
4668
|
+
entityName?: string;
|
|
4669
|
+
entity_name?: string;
|
|
4670
|
+
domain?: string;
|
|
4671
|
+
websiteUrl?: string;
|
|
4672
|
+
website_url?: string;
|
|
4673
|
+
phone?: string;
|
|
4674
|
+
email?: string;
|
|
4675
|
+
city?: string;
|
|
4676
|
+
state?: string;
|
|
4677
|
+
postalCode?: string;
|
|
4678
|
+
postal_code?: string;
|
|
4679
|
+
country?: string;
|
|
4680
|
+
sourceUrl?: string;
|
|
4681
|
+
source_url?: string;
|
|
4682
|
+
joinKeys?: Record<string, unknown>;
|
|
4683
|
+
join_keys?: Record<string, unknown>;
|
|
4684
|
+
rowData?: Record<string, unknown>;
|
|
4685
|
+
row_data?: Record<string, unknown>;
|
|
4686
|
+
naics?: string;
|
|
4687
|
+
industryCode?: string;
|
|
4688
|
+
industry_code?: string;
|
|
4689
|
+
industryType?: string;
|
|
4690
|
+
industry_type?: string;
|
|
4691
|
+
year?: string;
|
|
4692
|
+
quarter?: string;
|
|
4693
|
+
areaFips?: string;
|
|
4694
|
+
area_fips?: string;
|
|
4695
|
+
geoId?: string;
|
|
4696
|
+
geo_id?: string;
|
|
4697
|
+
ownCode?: string;
|
|
4698
|
+
own_code?: string;
|
|
4699
|
+
sourceUpdatedAfter?: string;
|
|
4700
|
+
source_updated_after?: string;
|
|
4701
|
+
sourceUpdatedBefore?: string;
|
|
4702
|
+
source_updated_before?: string;
|
|
4703
|
+
observedAfter?: string;
|
|
4704
|
+
observed_after?: string;
|
|
4705
|
+
observedBefore?: string;
|
|
4706
|
+
observed_before?: string;
|
|
4707
|
+
limit?: number;
|
|
4708
|
+
offset?: number;
|
|
4709
|
+
}
|
|
4710
|
+
interface PublicGroundTruthRecord {
|
|
4711
|
+
id: string;
|
|
4712
|
+
source_id: string;
|
|
4713
|
+
source_name: string;
|
|
4714
|
+
native_id: string;
|
|
4715
|
+
entity_type: string;
|
|
4716
|
+
entity_name: string;
|
|
4717
|
+
domain: string | null;
|
|
4718
|
+
website_url?: string | null;
|
|
4719
|
+
phone?: string | null;
|
|
4720
|
+
email?: string | null;
|
|
4721
|
+
city: string | null;
|
|
4722
|
+
state: string | null;
|
|
4723
|
+
postal_code?: string | null;
|
|
4724
|
+
country?: string | null;
|
|
4725
|
+
industry_code?: string | null;
|
|
4726
|
+
industry_name?: string | null;
|
|
4727
|
+
join_keys: Record<string, unknown>;
|
|
4728
|
+
row_data: Record<string, unknown>;
|
|
4729
|
+
source_url?: string | null;
|
|
4730
|
+
source_updated_at?: string | null;
|
|
4731
|
+
observed_at?: string | null;
|
|
4732
|
+
rank: number;
|
|
4733
|
+
match_type: string;
|
|
4734
|
+
}
|
|
4735
|
+
interface PublicGroundTruthResolvedIndustry {
|
|
4736
|
+
code_system: string;
|
|
4737
|
+
code: string;
|
|
4738
|
+
title: string;
|
|
4739
|
+
rank: number;
|
|
4740
|
+
match_type: string;
|
|
4741
|
+
}
|
|
4742
|
+
interface PublicGroundTruthSearchResult {
|
|
4743
|
+
success: boolean;
|
|
4744
|
+
query: string;
|
|
4745
|
+
source_id: string | null;
|
|
4746
|
+
entity_type: string | null;
|
|
4747
|
+
filters?: Record<string, unknown>;
|
|
4748
|
+
limit: number;
|
|
4749
|
+
offset: number;
|
|
4750
|
+
total_count: number;
|
|
4751
|
+
returned_count: number;
|
|
4752
|
+
next_offset: number | null;
|
|
4753
|
+
resolved_industries?: PublicGroundTruthResolvedIndustry[];
|
|
4754
|
+
records: PublicGroundTruthRecord[];
|
|
4755
|
+
searchable_fields?: string[];
|
|
4756
|
+
filterable_fields?: string[];
|
|
4757
|
+
credits_charged?: number;
|
|
4758
|
+
}
|
|
4759
|
+
interface PublicGroundTruthSourcesParams {
|
|
4760
|
+
query?: string;
|
|
4761
|
+
search?: string;
|
|
4762
|
+
status?: string;
|
|
4763
|
+
limit?: number;
|
|
4764
|
+
}
|
|
4765
|
+
interface PublicGroundTruthSource {
|
|
4766
|
+
id: string;
|
|
4767
|
+
name: string;
|
|
4768
|
+
authority: string;
|
|
4769
|
+
source_url: string;
|
|
4770
|
+
bulk_url: string | null;
|
|
4771
|
+
access_mode: string;
|
|
4772
|
+
ground_truth_rung: number;
|
|
4773
|
+
join_key_quality: string;
|
|
4774
|
+
primary_join_key: string | null;
|
|
4775
|
+
join_keys: string[];
|
|
4776
|
+
entity_types: string[];
|
|
4777
|
+
free_bulk_access: boolean;
|
|
4778
|
+
update_cadence: string;
|
|
4779
|
+
commercial_use_status: string;
|
|
4780
|
+
ingestion_status: string;
|
|
4781
|
+
last_attempted_at: string | null;
|
|
4782
|
+
last_successful_snapshot_id: string | null;
|
|
4783
|
+
metadata: Record<string, unknown>;
|
|
4784
|
+
updated_at: string | null;
|
|
4785
|
+
}
|
|
4786
|
+
interface PublicGroundTruthSourcesResult {
|
|
4787
|
+
success: boolean;
|
|
4788
|
+
query: string;
|
|
4789
|
+
status: string | null;
|
|
4790
|
+
total: number;
|
|
4791
|
+
returned_count: number;
|
|
4792
|
+
sources: PublicGroundTruthSource[];
|
|
4793
|
+
credits_charged?: number;
|
|
4794
|
+
}
|
|
4795
|
+
declare class PublicGroundTruth {
|
|
4796
|
+
private client;
|
|
4797
|
+
constructor(client: HttpClient);
|
|
4798
|
+
/**
|
|
4799
|
+
* Search the public-ground-truth cache by company/name/domain/native ID,
|
|
4800
|
+
* or by plain-language industry + location.
|
|
4801
|
+
* Results use the same snake_case wire shape returned by the hosted MCP API.
|
|
4802
|
+
*/
|
|
4803
|
+
search(params: PublicGroundTruthSearchParams): Promise<PublicGroundTruthSearchResult>;
|
|
4804
|
+
/**
|
|
4805
|
+
* List available public-ground-truth cache sources and their join-key metadata.
|
|
4806
|
+
*/
|
|
4807
|
+
listSources(params?: PublicGroundTruthSourcesParams): Promise<PublicGroundTruthSourcesResult>;
|
|
4258
4808
|
}
|
|
4259
4809
|
|
|
4260
4810
|
declare class SignalizError extends Error {
|
|
@@ -4279,6 +4829,7 @@ declare class Signaliz {
|
|
|
4279
4829
|
readonly ops: Ops;
|
|
4280
4830
|
readonly ai: Ai;
|
|
4281
4831
|
readonly gtm: GtmKernel;
|
|
4832
|
+
readonly publicGroundTruth: PublicGroundTruth;
|
|
4282
4833
|
private client;
|
|
4283
4834
|
private toolListCache?;
|
|
4284
4835
|
constructor(config: SignalizConfig);
|
|
@@ -4295,4 +4846,4 @@ declare class Signaliz {
|
|
|
4295
4846
|
discover(query: string, category?: string): Promise<MCPToolInfo[]>;
|
|
4296
4847
|
}
|
|
4297
4848
|
|
|
4298
|
-
export { Ai, type ApproveDeliveryResult, type BuildOptions, CAMPAIGN_BUILDER_OPERATING_PLAYBOOKS, CAMPAIGN_BUILDER_STRATEGY_TEMPLATES, type CampaignAcquisitionMode, type CampaignArtifact, type CampaignArtifactDownload, type CampaignArtifactDownloadOptions, type CampaignArtifactDownloadPart, type CampaignArtifactDownloadResult, type CampaignBuildRequest$1 as CampaignBuildRequest, type CampaignBuildResult$1 as CampaignBuildResult, type CampaignBuildRow, type CampaignBuildStatus, CampaignBuilderAgent, type CampaignBuilderAgentPlan, type CampaignBuilderAgentProvider, type CampaignBuilderAgentRequest, type CampaignBuilderAgentRequestTemplateOptions, type CampaignBuilderApproval, type CampaignBuilderApprovalPolicy, type CampaignBuilderApprovalType, type CampaignBuilderApprovedRunOptions, type CampaignBuilderApprovedRunResult, type CampaignBuilderBuildKit, type CampaignBuilderBuildKitCommand, type CampaignBuilderBuildKitMcpCall, type CampaignBuilderBuildKitOptions, type CampaignBuilderBuildOptions, type CampaignBuilderBuiltInTool, type CampaignBuilderCustomerTool, type CampaignBuilderGtmLayer, type CampaignBuilderIntegrationRoute, type CampaignBuilderLayer, type CampaignBuilderMcpStep, type CampaignBuilderMemoryKit, type CampaignBuilderMemoryKitOptions, type CampaignBuilderMemoryKitSource, type CampaignBuilderMemoryPlan, type CampaignBuilderMemoryQuery, type CampaignBuilderMemoryScope, type CampaignBuilderOperatingPlaybook, type CampaignBuilderOperatingPlaybookSlug, type CampaignBuilderPlanCommitOptions, type CampaignBuilderPlanCommitResult, type CampaignBuilderPlanOptions, type CampaignBuilderProofOptions, type CampaignBuilderProofReceipt, type CampaignBuilderProvider, type CampaignBuilderReadinessGate, type CampaignBuilderReadinessLane, type CampaignBuilderReadinessPacket, type CampaignBuilderReadinessSummary, type CampaignBuilderRequiredApproval, type CampaignBuilderRouteMode, type CampaignBuilderSourceRouting, type CampaignBuilderStrategyTemplate, type CampaignBuilderStrategyTemplateSlug, type CampaignBuilderWorkspaceContext, type CampaignDeliveryMode, type CampaignLearningHoldoutPolicy, type CampaignLearningHoldoutPrimaryMetric, 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_CAMPAIGN_BUILDER_APPROVAL_TYPES, DEFAULT_CAMPAIGN_BUILDER_BUILT_INS, 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 GtmAgencyAutopilotCapabilityCatalogOptions, type GtmAgencyAutopilotCapabilityFamily, type GtmAgencyAutopilotCapabilityPhase, type GtmAgencyAutopilotPlaybookCatalogOptions, type GtmAgencyAutopilotPlaybookOutcomeType, type GtmAgencyAutopilotPlaybookSlug, 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 GtmCampaignAgentPlanInput, type GtmCampaignAgentRequestTemplateInput, 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 GtmCampaignStartContextInput, type GtmCampaignStatus, type GtmCampaignStrategyMemoryStatusInput, type GtmCampaignStrategyTemplateSlug, type GtmCampaignStrategyTemplatesOptions, 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 GtmHoldoutLiftProof, type GtmInstantlyFeedbackPullInput, type GtmInstantlyFeedbackWebhookPrepareInput, type GtmIntegrationRecipeCreateInput, type GtmInvocationType, GtmKernel, type GtmKernelImportPreviewInput, type GtmKernelImportRunInput, type GtmLayer, type GtmLayerRouteSetInput, type GtmLayerRoutesGetOptions, type GtmMemorySearchOptions, type GtmMemoryType, type GtmPatternType, type GtmProviderLinkInput, type GtmProviderRecipePrepareInput, type GtmProviderRouteActivateInput, 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 OpsExecuteAndWaitOptions, type OpsExecuteAndWaitResult, type OpsNangoActionResultGetInput, type OpsNangoConnectSessionCreateInput, type OpsNangoDestinationInput, type OpsNangoIntegrationFlowPrepareInput, type OpsNangoScheduleAndWaitOptions, type OpsNangoScheduleOptions, type OpsNangoToolCallAndWaitInput, type OpsNangoToolCallAndWaitResult, type OpsNangoToolCallInput, type OpsNangoToolsListOptions, 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 OpsRunAndWaitOptions, type OpsRunAndWaitResult, type OpsRunOptions, type OpsRunResult, type OpsSink, type OpsSinkType, type OpsStatusOptions, type OpsStatusResult, type OpsTriggerBatchRunStatus, type OpsTriggerRunStatus, type OpsTriggerRunStatusOptions, type OpsWaitForResultsOptions, type OpsWaitForResultsPoll, type OpsWaitForResultsResult, 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, applyCampaignBuilderStrategyTemplate, collectExecutionReferences, createCampaignBuilderAgentPlan, createCampaignBuilderAgentRequestTemplate, createCampaignBuilderApproval, createCampaignBuilderBuildKit, createCampaignBuilderMemoryKit, createCampaignBuilderProofReceipt, createCampaignBuilderReadiness, createCampaignBuilderToolRoute, getCampaignBuilderOperatingPlaybook, getCampaignBuilderOperatingPlaybooksForRequest, getCampaignBuilderStrategyTemplate, getMissingCampaignBuilderApprovals, normalizeExecutionReference };
|
|
4849
|
+
export { Ai, type AiEnrichmentFusionParams, type AiEnrichmentFusionResult, type ApproveDeliveryResult, type BuildOptions, CAMPAIGN_BUILDER_OPERATING_PLAYBOOKS, CAMPAIGN_BUILDER_STRATEGY_TEMPLATES, type CampaignAcquisitionMode, type CampaignArtifact, type CampaignArtifactDownload, type CampaignArtifactDownloadOptions, type CampaignArtifactDownloadPart, type CampaignArtifactDownloadResult, type CampaignBuildRequest$1 as CampaignBuildRequest, type CampaignBuildResult$1 as CampaignBuildResult, type CampaignBuildRow, type CampaignBuildStatus, type CampaignBuilderActiveWorkApprovalPacket, type CampaignBuilderActiveWorkContextInput, type CampaignBuilderActiveWorkContextPacket, type CampaignBuilderActiveWorkMcpAction, type CampaignBuilderActiveWorkReference, type CampaignBuilderActiveWorkState, type CampaignBuilderActiveWorkSummary, CampaignBuilderAgent, type CampaignBuilderAgentPlan, type CampaignBuilderAgentProvider, type CampaignBuilderAgentRequest, type CampaignBuilderAgentRequestTemplateOptions, type CampaignBuilderApproval, type CampaignBuilderApprovalPolicy, type CampaignBuilderApprovalType, type CampaignBuilderApprovedRunOptions, type CampaignBuilderApprovedRunResult, type CampaignBuilderBuildKit, type CampaignBuilderBuildKitCommand, type CampaignBuilderBuildKitMcpCall, type CampaignBuilderBuildKitOptions, type CampaignBuilderBuildOptions, type CampaignBuilderBuiltInTool, type CampaignBuilderCustomerTool, type CampaignBuilderGtmLayer, type CampaignBuilderIntegrationRoute, type CampaignBuilderLayer, type CampaignBuilderMcpStep, type CampaignBuilderMemoryKit, type CampaignBuilderMemoryKitOptions, type CampaignBuilderMemoryKitSource, type CampaignBuilderMemoryPlan, type CampaignBuilderMemoryQuery, type CampaignBuilderMemoryScope, type CampaignBuilderOpenAiAgentHandoff, type CampaignBuilderOpenAiAgentHandoffTool, type CampaignBuilderOperatingPlaybook, type CampaignBuilderOperatingPlaybookSlug, type CampaignBuilderPlanCommitOptions, type CampaignBuilderPlanCommitResult, type CampaignBuilderPlanOptions, type CampaignBuilderProofOptions, type CampaignBuilderProofReceipt, type CampaignBuilderProvider, type CampaignBuilderReadinessGate, type CampaignBuilderReadinessLane, type CampaignBuilderReadinessPacket, type CampaignBuilderReadinessSummary, type CampaignBuilderRememberedWork, type CampaignBuilderRequiredApproval, type CampaignBuilderRouteMode, type CampaignBuilderSourceRouting, type CampaignBuilderStrategyTemplate, type CampaignBuilderStrategyTemplateSlug, type CampaignBuilderWorkspaceContext, type CampaignDeliveryMode, type CampaignLearningHoldoutPolicy, type CampaignLearningHoldoutPrimaryMetric, 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_CAMPAIGN_BUILDER_APPROVAL_TYPES, DEFAULT_CAMPAIGN_BUILDER_BUILT_INS, DEFAULT_SIGNALIZ_CAMPAIGN_BUILDER_DEFAULTS, type EmailBatchJobResult, type EnrichSignalsParams, type EnrichSignalsResult, type EnrichSignalsV2Params, type EnrichSignalsV2Result, type ErrorType, type ExecutionReference, type ExecutionReferenceInput, type ExecutionReferenceKind, type FindAndVerifyEmailContact, type FindEmailParams, type FindEmailResult, type FusionCostSummary, type FusionPreset, type GenerateLeadsParams, type GenerateLocalLeadsParams, type GtmActorType, type GtmAgencyAutopilotCapabilityCatalogOptions, type GtmAgencyAutopilotCapabilityFamily, type GtmAgencyAutopilotCapabilityPhase, type GtmAgencyAutopilotPlaybookCatalogOptions, type GtmAgencyAutopilotPlaybookOutcomeType, type GtmAgencyAutopilotPlaybookSlug, 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 GtmCampaignAgentPlanInput, type GtmCampaignAgentRequestTemplateInput, 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 GtmCampaignStartContextInput, type GtmCampaignStatus, type GtmCampaignStrategyMemoryStatusInput, type GtmCampaignStrategyTemplateSlug, type GtmCampaignStrategyTemplatesOptions, 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 GtmHoldoutLiftProof, type GtmInstantlyFeedbackPullInput, type GtmInstantlyFeedbackWebhookPrepareInput, type GtmIntegrationRecipeCreateInput, type GtmInvocationType, GtmKernel, type GtmKernelImportPreviewInput, type GtmKernelImportRunInput, type GtmLayer, type GtmLayerRouteSetInput, type GtmLayerRoutesGetOptions, type GtmMeetingLikelihoodInput, type GtmMemorySearchOptions, type GtmMemoryType, type GtmPatternType, type GtmProviderLinkInput, type GtmProviderRecipePrepareInput, type GtmProviderRouteActivateInput, 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 OpsExecuteAndWaitOptions, type OpsExecuteAndWaitResult, type OpsNangoActionResultGetInput, type OpsNangoConnectSessionCreateInput, type OpsNangoDestinationInput, type OpsNangoIntegrationFlowPrepareInput, type OpsNangoScheduleAndWaitOptions, type OpsNangoScheduleOptions, type OpsNangoToolCallAndWaitInput, type OpsNangoToolCallAndWaitResult, type OpsNangoToolCallInput, type OpsNangoToolsListOptions, 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 OpsRunAndWaitOptions, type OpsRunAndWaitResult, type OpsRunOptions, type OpsRunResult, type OpsSink, type OpsSinkType, type OpsStatusOptions, type OpsStatusResult, type OpsTriggerBatchRunStatus, type OpsTriggerRunStatus, type OpsTriggerRunStatusOptions, type OpsWaitForResultsOptions, type OpsWaitForResultsPoll, type OpsWaitForResultsResult, type PersonalizeSignalParams, type PersonalizeSignalResult, type PersonalizeSignalVariation, type PlatformHealth, PublicGroundTruth, type PublicGroundTruthRecord, type PublicGroundTruthResolvedIndustry, type PublicGroundTruthSearchParams, type PublicGroundTruthSearchResult, type PublicGroundTruthSource, type PublicGroundTruthSourcesParams, type PublicGroundTruthSourcesResult, type RunNativeGtmCapabilityParams, type RunProgressEvent, type RunResult, type RunRoutineRequest, type RunSystemParams, type Signal, type SignalFusionParams, type SignalFusionResult, type SignalV2, Signaliz, type SignalizCampaignBuilderDefaults, type SignalizConfig, SignalizError, type SignalizErrorData, type SimpleOpStatus, type SystemResult, type UpdateRoutineRequest, type VerifyEmailResult, type WaitOptions, type WorkspaceInfo, applyCampaignBuilderStrategyTemplate, collectExecutionReferences, createCampaignBuilderActiveWorkContext, createCampaignBuilderAgentPlan, createCampaignBuilderAgentRequestTemplate, createCampaignBuilderApproval, createCampaignBuilderBuildKit, createCampaignBuilderMemoryKit, createCampaignBuilderProofReceipt, createCampaignBuilderReadiness, createCampaignBuilderToolRoute, getCampaignBuilderOperatingPlaybook, getCampaignBuilderOperatingPlaybooksForRequest, getCampaignBuilderStrategyTemplate, getMissingCampaignBuilderApprovals, normalizeExecutionReference };
|