@pipe0/base 0.5.15 → 0.5.17
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/CHANGELOG.md +16 -0
- package/dist/index.d.mts +1399 -128
- package/dist/index.mjs +30 -30
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -106,6 +106,36 @@ declare const autocompleteRegistry: {
|
|
|
106
106
|
label: string;
|
|
107
107
|
}[]>;
|
|
108
108
|
};
|
|
109
|
+
readonly "company.categories.crustdata": {
|
|
110
|
+
readonly type: "provider";
|
|
111
|
+
readonly provider: "crustdata";
|
|
112
|
+
readonly resolve: (query: string | undefined, limit: number, config: {
|
|
113
|
+
apiKey: string;
|
|
114
|
+
}) => Promise<{
|
|
115
|
+
value: string;
|
|
116
|
+
label: string;
|
|
117
|
+
}[]>;
|
|
118
|
+
};
|
|
119
|
+
readonly "company.specialities.crustdata": {
|
|
120
|
+
readonly type: "provider";
|
|
121
|
+
readonly provider: "crustdata";
|
|
122
|
+
readonly resolve: (query: string | undefined, limit: number, config: {
|
|
123
|
+
apiKey: string;
|
|
124
|
+
}) => Promise<{
|
|
125
|
+
value: string;
|
|
126
|
+
label: string;
|
|
127
|
+
}[]>;
|
|
128
|
+
};
|
|
129
|
+
readonly "company.technologies.crustdata": {
|
|
130
|
+
readonly type: "provider";
|
|
131
|
+
readonly provider: "crustdata";
|
|
132
|
+
readonly resolve: (query: string | undefined, limit: number, config: {
|
|
133
|
+
apiKey: string;
|
|
134
|
+
}) => Promise<{
|
|
135
|
+
value: string;
|
|
136
|
+
label: string;
|
|
137
|
+
}[]>;
|
|
138
|
+
};
|
|
109
139
|
readonly "company.linkedin_categories.crustdata": {
|
|
110
140
|
readonly type: "provider";
|
|
111
141
|
readonly provider: "crustdata";
|
|
@@ -326,6 +356,26 @@ declare const autocompleteRegistry: {
|
|
|
326
356
|
readonly filter: "contains";
|
|
327
357
|
readonly values: StaticOption[];
|
|
328
358
|
};
|
|
359
|
+
readonly "crustdata2.countries": {
|
|
360
|
+
readonly type: "static";
|
|
361
|
+
readonly filter: "contains";
|
|
362
|
+
readonly values: StaticOption[];
|
|
363
|
+
};
|
|
364
|
+
readonly "crustdata2.markets": {
|
|
365
|
+
readonly type: "static";
|
|
366
|
+
readonly filter: "contains";
|
|
367
|
+
readonly values: StaticOption[];
|
|
368
|
+
};
|
|
369
|
+
readonly "crustdata2.company_types": {
|
|
370
|
+
readonly type: "static";
|
|
371
|
+
readonly filter: "contains";
|
|
372
|
+
readonly values: StaticOption[];
|
|
373
|
+
};
|
|
374
|
+
readonly "crustdata2.function_headcount": {
|
|
375
|
+
readonly type: "static";
|
|
376
|
+
readonly filter: "contains";
|
|
377
|
+
readonly values: StaticOption[];
|
|
378
|
+
};
|
|
329
379
|
readonly "linkedin.industries": {
|
|
330
380
|
readonly type: "static";
|
|
331
381
|
readonly filter: "contains";
|
|
@@ -442,6 +492,7 @@ declare const StoreOptionWidgetSchema: z.ZodObject<{
|
|
|
442
492
|
output: "output";
|
|
443
493
|
input: "input";
|
|
444
494
|
text: "text";
|
|
495
|
+
award: "award";
|
|
445
496
|
code: "code";
|
|
446
497
|
filter: "filter";
|
|
447
498
|
search: "search";
|
|
@@ -474,7 +525,6 @@ declare const StoreOptionWidgetSchema: z.ZodObject<{
|
|
|
474
525
|
sparkles: "sparkles";
|
|
475
526
|
sliders: "sliders";
|
|
476
527
|
factory: "factory";
|
|
477
|
-
award: "award";
|
|
478
528
|
tags: "tags";
|
|
479
529
|
handshake: "handshake";
|
|
480
530
|
mail: "mail";
|
|
@@ -1103,6 +1153,7 @@ declare const FieldAnnotationSchema: z.ZodObject<{
|
|
|
1103
1153
|
example_value: z.ZodNullable<z.ZodAny>;
|
|
1104
1154
|
schema: z.ZodNullable<z.ZodAny>;
|
|
1105
1155
|
}, z.core.$strip>>>;
|
|
1156
|
+
order: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1106
1157
|
}, z.core.$strip>;
|
|
1107
1158
|
type FieldAnnotation = z.infer<typeof FieldAnnotationSchema>;
|
|
1108
1159
|
declare const FieldAnnotationsSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -1138,8 +1189,21 @@ declare const FieldAnnotationsSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
1138
1189
|
example_value: z.ZodNullable<z.ZodAny>;
|
|
1139
1190
|
schema: z.ZodNullable<z.ZodAny>;
|
|
1140
1191
|
}, z.core.$strip>>>;
|
|
1192
|
+
order: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1141
1193
|
}, z.core.$strip>>;
|
|
1142
1194
|
type FieldAnnotationsType = z.infer<typeof FieldAnnotationsSchema>;
|
|
1195
|
+
/**
|
|
1196
|
+
* THE contract of annotation properties the SYNCHRONOUS route
|
|
1197
|
+
* (`PATCH /sheets/{id}/current-schema/annotations`) may mutate — properties
|
|
1198
|
+
* that can never break schema validity (display metadata only). Structural
|
|
1199
|
+
* properties (type/format/name) must go through sheet effects. Adding a key
|
|
1200
|
+
* here widens a route that bypasses the effects chassis: it requires review
|
|
1201
|
+
* and must keep the key-set contract test in sync.
|
|
1202
|
+
*/
|
|
1203
|
+
declare const SafeFieldAnnotationPatchSchema: z.ZodObject<{
|
|
1204
|
+
/** Set or clear (null) the persisted display order. */order: z.ZodNullable<z.ZodNumber>;
|
|
1205
|
+
}, z.core.$strict>;
|
|
1206
|
+
type SafeFieldAnnotationPatch = z.infer<typeof SafeFieldAnnotationPatchSchema>;
|
|
1143
1207
|
declare const RecordClaimedBySchema: z.ZodObject<{
|
|
1144
1208
|
ref: z.ZodNullable<z.ZodEnum<{
|
|
1145
1209
|
input: "input";
|
|
@@ -3981,6 +4045,7 @@ declare const FieldNameSchema: z.ZodEnum<{
|
|
|
3981
4045
|
logodev_describe_match: "logodev_describe_match";
|
|
3982
4046
|
logo_url: "logo_url";
|
|
3983
4047
|
crustdata_company_match: "crustdata_company_match";
|
|
4048
|
+
crustdata_company_match_v2: "crustdata_company_match_v2";
|
|
3984
4049
|
crustdata_companyenrich_match: "crustdata_companyenrich_match";
|
|
3985
4050
|
crustdata_company_identity_matches: "crustdata_company_identity_matches";
|
|
3986
4051
|
crustdata_person_match: "crustdata_person_match";
|
|
@@ -4129,7 +4194,7 @@ declare const ProviderNameSchema: z.ZodEnum<{
|
|
|
4129
4194
|
type ProviderRateLimitOperation = "pipe0_logic" | "pipe0_generic" | "pipe0_api_operation" | "pipe0_scraper" | "findymail_generic" | "findymail_email_lookup" | "findymail_email_b2b_lookup" | "findymail_phone_lookup" | "dropcontact_generic" | "hunter_generic" | "hunter_email_finder" | "hunter_email_enrichment" | "zerobounce_generic" | "millionverifier_generic" | "googlemaps_generic" | "gemini_35_flash" | "gemini_20_flash" | "anthropic_opus" | "anthropic_sonnet" | "leadmagic_company_search" | "leadmagic_email_lookup" | "leadmagic_email_b2b_lookup" | "leadmagic_email_to_b2b_profile" | "leadmagic_personal_email_finder" | "leadmagic_mobile_number_lookup" | "leadmagic_company_funding" | "leadmagic_role_finder" | "contactout_generic" | "builtwith_generic" | "perplexity_generic" | "serper_search" | "clado_search_people" | "clado_contact_information" | "icypeas_scrape_profile" | "icypeas_lead_database" | "icypeas_company_database" | "icypeas_email_lookup" | "prospeo_phone_number_lookup" | "prospeo_social_profile_lookup" | "clado_social_profile_lookup" | "prospeo_email_lookup" | "resend_generic" | "slack_post_message" | "gmail_send_email" | "gmail_create_draft" | "googlecalendar_api" | "leadmagic_employee_finder" | "firecrawl_generic" | "firecrawl_map_requests" | "firecrawl_extract" | "exa_websets" | "parallel_search_base" | "parallel_entity_search" | "parallel_extract" | "openai_gpt-5" | "openai_gpt-5-6-terra" | "company_enrich_generic" | "logodev_describe" | "crustdata_company_db_search" | "crustdata_company_enrich" | "crustdata_company_identify" | "crustdata_people_db_search" | "crustdata_realtime_post_fetch" | "crustdata_social_post_search" | "crustdata_realtime_person_enrich" | "crustdata_realtime_company_enrich" | "crustdata_contact_enrich" | "amplemarket_generic" | "amplemarket-person-reveal" | "amplemarket_people_search" | "amplemarket_company_search" | "amplemarket_account_operation" | "mixrank-person-match" | "luma_get_guests" | "postgres_query" | "databricks_query" | "lemlist_create_lead" | "hubspot_crm_search" | "hubspot_generic" | "salesforce_api" | "attio_query" | "attio_generic" | "attio_write" | "attio_sql";
|
|
4130
4195
|
type ProviderName = z.infer<typeof ProviderNameSchema>;
|
|
4131
4196
|
type ExternalProviderName = Exclude<ProviderName, "pipe0">;
|
|
4132
|
-
type BillableOperation = "companies-profiles-amplemarket-v1" | "companies-profiles-amplemarket-v2" | "companies-profiles-crustdata-v1" | "companies-profiles-crustdata-v2" | "companies-entitysearch-parallel-v1" | "people-entitysearch-parallel-v1" | "people-eventguests-luma-v1" | "events-googlecalendar-v1" | "posts-content-crustdata-v1" | "data-query-postgres-v1" | "data-query-databricks-v1" | "company-domain-workemail-v1-pipe0" | "bucket-claim-v1-pipe0" | "bucket-count-v1-pipe0" | "bucket-check-v1-pipe0" | "bucket-countif-v1-pipe0" | "bucket-entries-v1-pipe0" | "field-timestamp-v1-pipe0" | "rows-delete-sheet-v1-pipe0" | "signals-personprofilematch-v1-pipe0" | "formula-run-v1-pipe0" | "company-funding-leadmagic-v1-leadmagic" | "company-funding-leadmagic-v2-leadmagic" | "company-funding-waterfall-v1-amplemarket" | "company-funding-waterfall-v1-leadmagic" | "company-identity-v1-pipe0" | "company-identity-v2-pipe0" | "company-identity-v3-pipe0" | "company-lookalikes-companyenrich-v1-companyenrich" | "company-lookalikes-companyenrich-v2-companyenrich" | "company-identity-crustdata-v1-crustdata" | "company-match-crustdata-v1-crustdata" | "company-match-crustdata-v2-crustdata" | "company-match-logodev-v1-logodev" | "company-match-logodev-v2-logodev" | "company-newssummary-domain-v1-pipe0" | "company-newssummary-website-v1-pipe0" | "company-overview-v1-pipe0" | "company-overview-v2-pipe0" | "company-overview-v3-pipe0" | "company-techstack-builtwith-v1-builtwith" | "company-techstack-builtwith-v2-builtwith" | "company-websiteurl-email-v1-pipe0" | "contact-create-resend-v1-resend" | "contacts-hubspot-v1" | "companies-hubspot-v1" | "deals-hubspot-v1" | "owners-hubspot-v1" | "contact-match-hubspot-v1-hubspot" | "company-match-hubspot-v1-hubspot" | "deal-match-hubspot-v1-hubspot" | "object-update-hubspot-v1-hubspot" | "object-associations-hubspot-v1-hubspot" | "activity-log-hubspot-v1-hubspot" | "contacts-salesforce-v1" | "leads-salesforce-v1" | "accounts-salesforce-v1" | "opportunities-salesforce-v1" | "users-salesforce-v1" | "query-salesforce-v1" | "person-match-salesforce-v1-salesforce" | "account-match-salesforce-v1-salesforce" | "opportunity-match-salesforce-v1-salesforce" | "record-lookup-salesforce-v1-salesforce" | "record-update-salesforce-v1-salesforce" | "record-assert-salesforce-v1-salesforce" | "activities-find-salesforce-v1-salesforce" | "activity-log-salesforce-v1-salesforce" | "people-attio-v1" | "companies-attio-v1" | "deals-attio-v1" | "entries-attio-v1" | "records-attio-v1" | "query-attio-v1" | "users-attio-v1" | "person-match-attio-v1-attio" | "company-match-attio-v1-attio" | "deal-match-attio-v1-attio" | "record-match-attio-v1-attio" | "record-lookup-attio-v1-attio" | "record-update-attio-v1-attio" | "activities-find-attio-v1-attio" | "lead-enroll-lemlist-v1-lemlist" | "lead-enroll-amplemarket-v1-amplemarket" | "email-iswork-v1-pipe0" | "email-send-gmail-v1-gmail" | "email-draft-gmail-v1-gmail" | "email-send-resend-v1-resend" | "email-validate-zerobounce-v1-zerobounce" | "email-write-v1-in-google-low" | "email-write-v1-in-openai-high" | "email-write-v1-in-openai-medium" | "email-write-v1-in-anthropic-high" | "email-write-v1-in-anthropic-low" | "email-write-v1-out-google-low" | "email-write-v1-out-openai-high" | "email-write-v1-out-openai-medium" | "email-write-v1-out-anthropic-high" | "email-write-v1-out-anthropic-low" | "field-domainify-v1-pipe0" | "field-slugify-v1-pipe0" | "fields-merge-v1-pipe0" | "http-request-v1-pipe0" | "json-extract-multi-v1-pipe0" | "message-send-slack-v1-slack" | "message-write-v1-in-google-low" | "message-write-v1-in-openai-high" | "message-write-v1-in-openai-medium" | "message-write-v1-in-anthropic-high" | "message-write-v1-in-anthropic-low" | "message-write-v1-out-google-low" | "message-write-v1-out-openai-high" | "message-write-v1-out-openai-medium" | "message-write-v1-out-anthropic-high" | "message-write-v1-out-anthropic-low" | "people-email-iswork-v1-pipe0" | "people-email-validate-zerobounce-v1-zerobounce" | "people-email-validate-zerobounce-v2-zerobounce" | "people-identity-email-waterfall-v1-crustdata" | "people-identity-email-waterfall-v1-findymail" | "people-identity-email-waterfall-v1-hunter" | "people-match-role-waterfall-v1-leadmagic" | "people-mobilenumber-professionalprofile-waterfall-v1-leadmagic" | "people-mobilenumber-professionalprofile-waterfall-v1-prospeo" | "people-mobilenumber-workemail-waterfall-v1-leadmagic" | "people-name-split-v1-pipe0" | "people-personalemail-profile-waterfall-v1-clado" | "people-personalemail-profile-waterfall-v1-leadmagic" | "people-personalemail-profile-waterfall-v1-mixrank" | "people-phone-profile-waterfall-v1-amplemarket" | "people-phone-profile-waterfall-v1-clado" | "people-phone-profile-waterfall-v1-findymail" | "people-phone-profile-waterfall-v1-leadmagic" | "people-phone-profile-waterfall-v1-prospeo" | "people-phone-workemail-waterfall-v1-amplemarket" | "people-phone-workemail-waterfall-v1-leadmagic" | "people-professionalprofile-waterfall-v1-icypeas" | "people-professionalprofile-waterfall-v1-prospeo" | "people-professionalprofileurl-email-waterfall-v1-leadmagic" | "people-professionalprofileurl-name-v1-pipe0" | "people-profile-waterfall-v1-amplemarket" | "people-profile-waterfall-v1-clado" | "people-profile-waterfall-v1-icypeas" | "people-profile-waterfall-v1-prospeo" | "people-profile-workemail-crustdata-v1-crustdata" | "people-profiles-amplemarket-v1" | "people-profiles-amplemarket-v2" | "people-profiles-crustdata-v1" | "people-profiles-crustdata-v2" | "people-profiles-crustdata-v3" | "people-profileurl-email-waterfall-v1-leadmagic" | "people-validate-email-zerobounce-v1-zerobounce" | "people-workemail-profileurl-waterfall-v1-amplemarket" | "people-workemail-profileurl-waterfall-v1-clado" | "people-workemail-profileurl-waterfall-v1-crustdata" | "people-workemail-profileurl-waterfall-v1-findymail" | "people-workemail-profileurl-waterfall-v1-hunter" | "people-workemail-profileurl-waterfall-v1-leadmagic" | "people-workemail-waterfall-v1-amplemarket" | "people-workemail-waterfall-v1-findymail" | "people-workemail-waterfall-v1-hunter" | "people-workemail-waterfall-v1-icypeas" | "people-workemail-waterfall-v1-leadmagic" | "people-workemail-waterfall-v1-prospeo" | "person-email-validate-millionverifier-v1-millionverifier" | "person-identity-amplemarket-v1-amplemarket" | "person-identity-email-waterfall-v1-crustdata" | "person-identity-email-waterfall-v1-findymail" | "person-identity-email-waterfall-v1-hunter" | "person-identity-email-waterfall-v2-crustdata" | "person-identity-email-waterfall-v2-hunter" | "person-identity-email-waterfall-v2-mixrank" | "person-match-amplemarket-v1-amplemarket" | "person-match-role-waterfall-v1-leadmagic" | "person-mobile-profileurl-waterfall-v1-amplemarket" | "person-mobile-profileurl-waterfall-v1-crustdata" | "person-mobile-profileurl-waterfall-v1-findymail" | "person-mobile-profileurl-waterfall-v1-leadmagic" | "person-mobile-profileurl-waterfall-v1-prospeo" | "person-mobile-workemail-waterfall-v1-amplemarket" | "person-mobile-workemail-waterfall-v1-crustdata" | "person-mobile-workemail-waterfall-v1-leadmagic" | "person-devprofileurl-profileurl-waterfall-v1-crustdata" | "person-name-join-v1-pipe0" | "person-name-split-v1-pipe0" | "person-personalemail-profileurl-waterfall-v1-leadmagic" | "person-personalemail-profileurl-waterfall-v1-mixrank" | "person-posts-crustdata-v1-crustdata" | "person-profile-waterfall-v1-amplemarket" | "person-profile-waterfall-v1-icypeas" | "person-profile-waterfall-v1-prospeo" | "person-profile-waterfall-v2-amplemarket" | "person-profile-waterfall-v2-crustdata" | "person-profile-waterfall-v2-prospeo" | "person-profile-workemail-crustdata-v1-crustdata" | "person-profileurl-email-waterfall-v1-leadmagic" | "person-profileurl-name-v1-pipe0" | "person-workemail-profileurl-waterfall-v1-amplemarket" | "person-workemail-profileurl-waterfall-v1-crustdata" | "person-workemail-profileurl-waterfall-v1-findymail" | "person-workemail-profileurl-waterfall-v1-hunter" | "person-workemail-profileurl-waterfall-v1-leadmagic" | "person-workemail-waterfall-v1-amplemarket" | "person-workemail-waterfall-v1-findymail" | "person-workemail-waterfall-v1-hunter" | "person-workemail-waterfall-v1-icypeas" | "person-workemail-waterfall-v1-leadmagic" | "person-workemail-waterfall-v1-prospeo" | "agent-run-v1-in-google-low" | "agent-run-v1-in-openai-high" | "agent-run-v1-in-openai-medium" | "agent-run-v1-in-anthropic-high" | "agent-run-v1-in-anthropic-low" | "agent-run-v1-out-google-low" | "agent-run-v1-out-openai-high" | "agent-run-v1-out-openai-medium" | "agent-run-v1-out-anthropic-high" | "agent-run-v1-out-anthropic-low" | "agent-run-v1-search-parallel" | "agent-run-v1-extract-parallel" | "agent-sheets-v1-search-parallel" | "agent-sheets-v1-extract-parallel" | "prompt-run-v1-in-google-low" | "prompt-run-v1-in-openai-high" | "prompt-run-v1-in-openai-medium" | "prompt-run-v1-in-anthropic-high" | "prompt-run-v1-in-anthropic-low" | "prompt-run-v1-out-google-low" | "prompt-run-v1-out-openai-high" | "prompt-run-v1-out-openai-medium" | "prompt-run-v1-out-anthropic-high" | "prompt-run-v1-out-anthropic-low" | "rows-filter-prompt-v1-in-google-low" | "rows-filter-prompt-v1-in-openai-high" | "rows-filter-prompt-v1-in-openai-medium" | "rows-filter-prompt-v1-in-anthropic-high" | "rows-filter-prompt-v1-in-anthropic-low" | "rows-filter-prompt-v1-out-google-low" | "rows-filter-prompt-v1-out-openai-high" | "rows-filter-prompt-v1-out-openai-medium" | "rows-filter-prompt-v1-out-anthropic-high" | "rows-filter-prompt-v1-out-anthropic-low" | "report-generate-v1-in-google-low" | "report-generate-v1-in-openai-high" | "report-generate-v1-in-openai-medium" | "report-generate-v1-in-anthropic-high" | "report-generate-v1-in-anthropic-low" | "report-generate-v1-out-google-low" | "report-generate-v1-out-openai-high" | "report-generate-v1-out-openai-medium" | "report-generate-v1-out-anthropic-high" | "report-generate-v1-out-anthropic-low" | "row-append-sheet-v1-pipe0" | "row-roundrobin-sheet-v1-pipe0" | "rows-find-sheet-v1-pipe0" | "rows-find-postgres-v1-postgres" | "rows-find-databricks-v1-databricks" | "sheet-items-v1-pipe0" | "rows-dedupe-v1-pipe0" | "rows-duplicate-v1-pipe0" | "row-expandappend-sheet-v1-pipe0" | "template-fill-v1-pipe0" | "website-extract-firecrawl-v1-firecrawl" | "website-extract-parallel-v1-parallel" | "website-maplinks-firecrawl-v1-firecrawl" | "website-scrape-firecrawl-v1-firecrawl" | "website-scrapelist-firecrawl-v1-firecrawl";
|
|
4197
|
+
type BillableOperation = "companies-profiles-amplemarket-v1" | "companies-profiles-amplemarket-v2" | "companies-profiles-crustdata-v1" | "companies-profiles-crustdata-v2" | "companies-profiles-crustdata-v3" | "companies-entitysearch-parallel-v1" | "people-entitysearch-parallel-v1" | "people-eventguests-luma-v1" | "events-googlecalendar-v1" | "posts-content-crustdata-v1" | "data-query-postgres-v1" | "data-query-databricks-v1" | "company-domain-workemail-v1-pipe0" | "bucket-claim-v1-pipe0" | "bucket-count-v1-pipe0" | "bucket-check-v1-pipe0" | "bucket-countif-v1-pipe0" | "bucket-entries-v1-pipe0" | "field-timestamp-v1-pipe0" | "rows-delete-sheet-v1-pipe0" | "signals-personprofilematch-v1-pipe0" | "formula-run-v1-pipe0" | "company-funding-leadmagic-v1-leadmagic" | "company-funding-leadmagic-v2-leadmagic" | "company-funding-waterfall-v1-amplemarket" | "company-funding-waterfall-v1-leadmagic" | "company-identity-v1-pipe0" | "company-identity-v2-pipe0" | "company-identity-v3-pipe0" | "company-lookalikes-companyenrich-v1-companyenrich" | "company-lookalikes-companyenrich-v2-companyenrich" | "company-identity-crustdata-v1-crustdata" | "company-match-crustdata-v1-crustdata" | "company-match-crustdata-v2-crustdata" | "company-match-logodev-v1-logodev" | "company-match-logodev-v2-logodev" | "company-newssummary-domain-v1-pipe0" | "company-newssummary-website-v1-pipe0" | "company-overview-v1-pipe0" | "company-overview-v2-pipe0" | "company-overview-v3-pipe0" | "company-techstack-builtwith-v1-builtwith" | "company-techstack-builtwith-v2-builtwith" | "company-websiteurl-email-v1-pipe0" | "contact-create-resend-v1-resend" | "contacts-hubspot-v1" | "companies-hubspot-v1" | "deals-hubspot-v1" | "owners-hubspot-v1" | "contact-match-hubspot-v1-hubspot" | "company-match-hubspot-v1-hubspot" | "deal-match-hubspot-v1-hubspot" | "object-update-hubspot-v1-hubspot" | "object-associations-hubspot-v1-hubspot" | "activity-log-hubspot-v1-hubspot" | "contacts-salesforce-v1" | "leads-salesforce-v1" | "accounts-salesforce-v1" | "opportunities-salesforce-v1" | "users-salesforce-v1" | "query-salesforce-v1" | "person-match-salesforce-v1-salesforce" | "account-match-salesforce-v1-salesforce" | "opportunity-match-salesforce-v1-salesforce" | "record-lookup-salesforce-v1-salesforce" | "record-update-salesforce-v1-salesforce" | "record-assert-salesforce-v1-salesforce" | "activities-find-salesforce-v1-salesforce" | "activity-log-salesforce-v1-salesforce" | "people-attio-v1" | "companies-attio-v1" | "deals-attio-v1" | "entries-attio-v1" | "records-attio-v1" | "query-attio-v1" | "users-attio-v1" | "person-match-attio-v1-attio" | "company-match-attio-v1-attio" | "deal-match-attio-v1-attio" | "record-match-attio-v1-attio" | "record-lookup-attio-v1-attio" | "record-update-attio-v1-attio" | "activities-find-attio-v1-attio" | "lead-enroll-lemlist-v1-lemlist" | "lead-enroll-amplemarket-v1-amplemarket" | "email-iswork-v1-pipe0" | "email-send-gmail-v1-gmail" | "email-draft-gmail-v1-gmail" | "email-send-resend-v1-resend" | "email-validate-zerobounce-v1-zerobounce" | "email-write-v1-in-google-low" | "email-write-v1-in-openai-high" | "email-write-v1-in-openai-medium" | "email-write-v1-in-anthropic-high" | "email-write-v1-in-anthropic-low" | "email-write-v1-out-google-low" | "email-write-v1-out-openai-high" | "email-write-v1-out-openai-medium" | "email-write-v1-out-anthropic-high" | "email-write-v1-out-anthropic-low" | "field-domainify-v1-pipe0" | "field-slugify-v1-pipe0" | "fields-merge-v1-pipe0" | "http-request-v1-pipe0" | "json-extract-multi-v1-pipe0" | "message-send-slack-v1-slack" | "message-write-v1-in-google-low" | "message-write-v1-in-openai-high" | "message-write-v1-in-openai-medium" | "message-write-v1-in-anthropic-high" | "message-write-v1-in-anthropic-low" | "message-write-v1-out-google-low" | "message-write-v1-out-openai-high" | "message-write-v1-out-openai-medium" | "message-write-v1-out-anthropic-high" | "message-write-v1-out-anthropic-low" | "people-email-iswork-v1-pipe0" | "people-email-validate-zerobounce-v1-zerobounce" | "people-email-validate-zerobounce-v2-zerobounce" | "people-identity-email-waterfall-v1-crustdata" | "people-identity-email-waterfall-v1-findymail" | "people-identity-email-waterfall-v1-hunter" | "people-match-role-waterfall-v1-leadmagic" | "people-mobilenumber-professionalprofile-waterfall-v1-leadmagic" | "people-mobilenumber-professionalprofile-waterfall-v1-prospeo" | "people-mobilenumber-workemail-waterfall-v1-leadmagic" | "people-name-split-v1-pipe0" | "people-personalemail-profile-waterfall-v1-clado" | "people-personalemail-profile-waterfall-v1-leadmagic" | "people-personalemail-profile-waterfall-v1-mixrank" | "people-phone-profile-waterfall-v1-amplemarket" | "people-phone-profile-waterfall-v1-clado" | "people-phone-profile-waterfall-v1-findymail" | "people-phone-profile-waterfall-v1-leadmagic" | "people-phone-profile-waterfall-v1-prospeo" | "people-phone-workemail-waterfall-v1-amplemarket" | "people-phone-workemail-waterfall-v1-leadmagic" | "people-professionalprofile-waterfall-v1-icypeas" | "people-professionalprofile-waterfall-v1-prospeo" | "people-professionalprofileurl-email-waterfall-v1-leadmagic" | "people-professionalprofileurl-name-v1-pipe0" | "people-profile-waterfall-v1-amplemarket" | "people-profile-waterfall-v1-clado" | "people-profile-waterfall-v1-icypeas" | "people-profile-waterfall-v1-prospeo" | "people-profile-workemail-crustdata-v1-crustdata" | "people-profiles-amplemarket-v1" | "people-profiles-amplemarket-v2" | "people-profiles-crustdata-v1" | "people-profiles-crustdata-v2" | "people-profiles-crustdata-v3" | "people-profileurl-email-waterfall-v1-leadmagic" | "people-validate-email-zerobounce-v1-zerobounce" | "people-workemail-profileurl-waterfall-v1-amplemarket" | "people-workemail-profileurl-waterfall-v1-clado" | "people-workemail-profileurl-waterfall-v1-crustdata" | "people-workemail-profileurl-waterfall-v1-findymail" | "people-workemail-profileurl-waterfall-v1-hunter" | "people-workemail-profileurl-waterfall-v1-leadmagic" | "people-workemail-waterfall-v1-amplemarket" | "people-workemail-waterfall-v1-findymail" | "people-workemail-waterfall-v1-hunter" | "people-workemail-waterfall-v1-icypeas" | "people-workemail-waterfall-v1-leadmagic" | "people-workemail-waterfall-v1-prospeo" | "person-email-validate-millionverifier-v1-millionverifier" | "person-identity-amplemarket-v1-amplemarket" | "person-identity-email-waterfall-v1-crustdata" | "person-identity-email-waterfall-v1-findymail" | "person-identity-email-waterfall-v1-hunter" | "person-identity-email-waterfall-v2-crustdata" | "person-identity-email-waterfall-v2-hunter" | "person-identity-email-waterfall-v2-mixrank" | "person-match-amplemarket-v1-amplemarket" | "person-match-role-waterfall-v1-leadmagic" | "person-mobile-profileurl-waterfall-v1-amplemarket" | "person-mobile-profileurl-waterfall-v1-crustdata" | "person-mobile-profileurl-waterfall-v1-findymail" | "person-mobile-profileurl-waterfall-v1-leadmagic" | "person-mobile-profileurl-waterfall-v1-prospeo" | "person-mobile-workemail-waterfall-v1-amplemarket" | "person-mobile-workemail-waterfall-v1-crustdata" | "person-mobile-workemail-waterfall-v1-leadmagic" | "person-devprofileurl-profileurl-waterfall-v1-crustdata" | "person-name-join-v1-pipe0" | "person-name-split-v1-pipe0" | "person-personalemail-profileurl-waterfall-v1-leadmagic" | "person-personalemail-profileurl-waterfall-v1-mixrank" | "person-posts-crustdata-v1-crustdata" | "person-profile-waterfall-v1-amplemarket" | "person-profile-waterfall-v1-icypeas" | "person-profile-waterfall-v1-prospeo" | "person-profile-waterfall-v2-amplemarket" | "person-profile-waterfall-v2-crustdata" | "person-profile-waterfall-v2-prospeo" | "person-profile-workemail-crustdata-v1-crustdata" | "person-profileurl-email-waterfall-v1-leadmagic" | "person-profileurl-name-v1-pipe0" | "person-workemail-profileurl-waterfall-v1-amplemarket" | "person-workemail-profileurl-waterfall-v1-crustdata" | "person-workemail-profileurl-waterfall-v1-findymail" | "person-workemail-profileurl-waterfall-v1-hunter" | "person-workemail-profileurl-waterfall-v1-leadmagic" | "person-workemail-waterfall-v1-amplemarket" | "person-workemail-waterfall-v1-findymail" | "person-workemail-waterfall-v1-hunter" | "person-workemail-waterfall-v1-icypeas" | "person-workemail-waterfall-v1-leadmagic" | "person-workemail-waterfall-v1-prospeo" | "agent-run-v1-in-google-low" | "agent-run-v1-in-openai-high" | "agent-run-v1-in-openai-medium" | "agent-run-v1-in-anthropic-high" | "agent-run-v1-in-anthropic-low" | "agent-run-v1-out-google-low" | "agent-run-v1-out-openai-high" | "agent-run-v1-out-openai-medium" | "agent-run-v1-out-anthropic-high" | "agent-run-v1-out-anthropic-low" | "agent-run-v1-search-parallel" | "agent-run-v1-extract-parallel" | "agent-sheets-v1-search-parallel" | "agent-sheets-v1-extract-parallel" | "prompt-run-v1-in-google-low" | "prompt-run-v1-in-openai-high" | "prompt-run-v1-in-openai-medium" | "prompt-run-v1-in-anthropic-high" | "prompt-run-v1-in-anthropic-low" | "prompt-run-v1-out-google-low" | "prompt-run-v1-out-openai-high" | "prompt-run-v1-out-openai-medium" | "prompt-run-v1-out-anthropic-high" | "prompt-run-v1-out-anthropic-low" | "rows-filter-prompt-v1-in-google-low" | "rows-filter-prompt-v1-in-openai-high" | "rows-filter-prompt-v1-in-openai-medium" | "rows-filter-prompt-v1-in-anthropic-high" | "rows-filter-prompt-v1-in-anthropic-low" | "rows-filter-prompt-v1-out-google-low" | "rows-filter-prompt-v1-out-openai-high" | "rows-filter-prompt-v1-out-openai-medium" | "rows-filter-prompt-v1-out-anthropic-high" | "rows-filter-prompt-v1-out-anthropic-low" | "report-generate-v1-in-google-low" | "report-generate-v1-in-openai-high" | "report-generate-v1-in-openai-medium" | "report-generate-v1-in-anthropic-high" | "report-generate-v1-in-anthropic-low" | "report-generate-v1-out-google-low" | "report-generate-v1-out-openai-high" | "report-generate-v1-out-openai-medium" | "report-generate-v1-out-anthropic-high" | "report-generate-v1-out-anthropic-low" | "row-append-sheet-v1-pipe0" | "row-roundrobin-sheet-v1-pipe0" | "rows-find-sheet-v1-pipe0" | "rows-find-postgres-v1-postgres" | "rows-find-databricks-v1-databricks" | "sheet-items-v1-pipe0" | "rows-dedupe-v1-pipe0" | "rows-duplicate-v1-pipe0" | "row-expandappend-sheet-v1-pipe0" | "template-fill-v1-pipe0" | "website-extract-firecrawl-v1-firecrawl" | "website-extract-parallel-v1-parallel" | "website-maplinks-firecrawl-v1-firecrawl" | "website-scrape-firecrawl-v1-firecrawl" | "website-scrapelist-firecrawl-v1-firecrawl";
|
|
4133
4198
|
//#endregion
|
|
4134
4199
|
//#region src/pipes/catalog/categories.d.ts
|
|
4135
4200
|
type PipeCategory = "people_data" | "company_data" | "tools" | "find_comapnies" | "find_people" | "actions" | "integrations" | "deprecated";
|
|
@@ -23099,6 +23164,7 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
23099
23164
|
example_value: z.ZodNullable<z.ZodAny>;
|
|
23100
23165
|
schema: z.ZodNullable<z.ZodAny>;
|
|
23101
23166
|
}, z.core.$strip>>>;
|
|
23167
|
+
order: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
23102
23168
|
}, z.core.$strip>>>;
|
|
23103
23169
|
pipes: z.ZodArray<z.ZodDiscriminatedUnion<readonly [z.ZodObject<{
|
|
23104
23170
|
pipe_id: z.ZodLiteral<"prompt:run@1">;
|
|
@@ -32786,6 +32852,7 @@ declare const StoreOptionSchema: z.ZodObject<{
|
|
|
32786
32852
|
output: "output";
|
|
32787
32853
|
input: "input";
|
|
32788
32854
|
text: "text";
|
|
32855
|
+
award: "award";
|
|
32789
32856
|
code: "code";
|
|
32790
32857
|
filter: "filter";
|
|
32791
32858
|
search: "search";
|
|
@@ -32818,7 +32885,6 @@ declare const StoreOptionSchema: z.ZodObject<{
|
|
|
32818
32885
|
sparkles: "sparkles";
|
|
32819
32886
|
sliders: "sliders";
|
|
32820
32887
|
factory: "factory";
|
|
32821
|
-
award: "award";
|
|
32822
32888
|
tags: "tags";
|
|
32823
32889
|
handshake: "handshake";
|
|
32824
32890
|
mail: "mail";
|
|
@@ -32901,6 +32967,7 @@ declare const FormStoreSchema: z.ZodObject<{
|
|
|
32901
32967
|
output: "output";
|
|
32902
32968
|
input: "input";
|
|
32903
32969
|
text: "text";
|
|
32970
|
+
award: "award";
|
|
32904
32971
|
code: "code";
|
|
32905
32972
|
filter: "filter";
|
|
32906
32973
|
search: "search";
|
|
@@ -32933,7 +33000,6 @@ declare const FormStoreSchema: z.ZodObject<{
|
|
|
32933
33000
|
sparkles: "sparkles";
|
|
32934
33001
|
sliders: "sliders";
|
|
32935
33002
|
factory: "factory";
|
|
32936
|
-
award: "award";
|
|
32937
33003
|
tags: "tags";
|
|
32938
33004
|
handshake: "handshake";
|
|
32939
33005
|
mail: "mail";
|
|
@@ -33156,10 +33222,11 @@ interface FormResolvers {
|
|
|
33156
33222
|
}
|
|
33157
33223
|
//#endregion
|
|
33158
33224
|
//#region src/search/schemas.d.ts
|
|
33159
|
-
declare const SEARCH_IDS: readonly ["companies:profiles:crustdata@1", "companies:profiles:crustdata@2", "companies:profiles:amplemarket@1", "companies:profiles:amplemarket@2", "people:profiles:crustdata@1", "people:profiles:crustdata@2", "people:profiles:crustdata@3", "people:profiles:amplemarket@1", "people:profiles:amplemarket@2", "companies:entitysearch:parallel@1", "people:entitysearch:parallel@1", "people:eventguests:luma@1", "events:googlecalendar@1", "sheet:rows@1", "bucket:entries@1", "query:postgres@1", "query:databricks@1", "posts:content:crustdata@1", "contacts:hubspot@1", "companies:hubspot@1", "deals:hubspot@1", "owners:hubspot@1", "contacts:salesforce@1", "leads:salesforce@1", "accounts:salesforce@1", "opportunities:salesforce@1", "users:salesforce@1", "query:salesforce@1", "people:attio@1", "companies:attio@1", "deals:attio@1", "records:attio@1", "entries:attio@1", "query:attio@1", "users:attio@1"];
|
|
33225
|
+
declare const SEARCH_IDS: readonly ["companies:profiles:crustdata@1", "companies:profiles:crustdata@2", "companies:profiles:crustdata@3", "companies:profiles:amplemarket@1", "companies:profiles:amplemarket@2", "people:profiles:crustdata@1", "people:profiles:crustdata@2", "people:profiles:crustdata@3", "people:profiles:amplemarket@1", "people:profiles:amplemarket@2", "companies:entitysearch:parallel@1", "people:entitysearch:parallel@1", "people:eventguests:luma@1", "events:googlecalendar@1", "sheet:rows@1", "bucket:entries@1", "query:postgres@1", "query:databricks@1", "posts:content:crustdata@1", "contacts:hubspot@1", "companies:hubspot@1", "deals:hubspot@1", "owners:hubspot@1", "contacts:salesforce@1", "leads:salesforce@1", "accounts:salesforce@1", "opportunities:salesforce@1", "users:salesforce@1", "query:salesforce@1", "people:attio@1", "companies:attio@1", "deals:attio@1", "records:attio@1", "entries:attio@1", "query:attio@1", "users:attio@1"];
|
|
33160
33226
|
declare const SearchIdSchema: z.ZodEnum<{
|
|
33161
33227
|
"companies:profiles:crustdata@1": "companies:profiles:crustdata@1";
|
|
33162
33228
|
"companies:profiles:crustdata@2": "companies:profiles:crustdata@2";
|
|
33229
|
+
"companies:profiles:crustdata@3": "companies:profiles:crustdata@3";
|
|
33163
33230
|
"companies:profiles:amplemarket@1": "companies:profiles:amplemarket@1";
|
|
33164
33231
|
"companies:profiles:amplemarket@2": "companies:profiles:amplemarket@2";
|
|
33165
33232
|
"people:profiles:crustdata@1": "people:profiles:crustdata@1";
|
|
@@ -33290,12 +33357,16 @@ declare const personProfileMatchExample1: PersonProfileField;
|
|
|
33290
33357
|
*/
|
|
33291
33358
|
declare const SIGNAL_TYPES: readonly ["joined_company", "left_company", "returned_to_company", "promotion_to_senior_ic", "promotion_to_manager", "promotion_to_leadership", "promotion_to_c_suite", "changed_role", "work_anniversary", "graduated"];
|
|
33292
33359
|
type SignalType = (typeof SIGNAL_TYPES)[number];
|
|
33293
|
-
declare const SIGNAL_CATEGORIES: readonly ["employment", "education", "company_growth", "company_news", "
|
|
33294
|
-
declare const SIGNAL_SUBCATEGORIES: readonly ["job_change", "promotion", "role_change", "tenure_milestone", "education"];
|
|
33360
|
+
declare const SIGNAL_CATEGORIES: readonly ["employment", "education", "achievement", "engagement", "social_activity", "company_growth", "company_news", "technology", "intent", "other"];
|
|
33361
|
+
declare const SIGNAL_SUBCATEGORIES: readonly ["job_change", "promotion", "role_change", "tenure_milestone", "education", "enrollment", "certification", "award", "speaking_engagement", "publication", "product_usage", "website_activity", "content_engagement", "social_engagement", "event_activity", "outreach_engagement", "community_activity", "advocacy", "post_published", "content_interaction", "topic_mention", "profile_update", "headcount_change", "hiring", "expansion", "financial_growth", "funding", "merger_acquisition", "ipo", "leadership_change", "product_launch", "partnership", "workforce_reduction", "recognition", "legal_regulatory", "tech_added", "tech_removed", "research_intent", "review_activity", "other"];
|
|
33295
33362
|
declare const SIGNAL_SCOPES: readonly ["person", "company"];
|
|
33296
33363
|
type SignalCategory = (typeof SIGNAL_CATEGORIES)[number];
|
|
33297
33364
|
type SignalSubcategory = (typeof SIGNAL_SUBCATEGORIES)[number];
|
|
33298
33365
|
type SignalScope = (typeof SIGNAL_SCOPES)[number];
|
|
33366
|
+
declare const CATEGORY_META: Record<SignalCategory, {
|
|
33367
|
+
subcategories: readonly SignalSubcategory[];
|
|
33368
|
+
scopes: readonly SignalScope[];
|
|
33369
|
+
}>;
|
|
33299
33370
|
declare const SIGNAL_TAXONOMY: Record<SignalType, {
|
|
33300
33371
|
category: SignalCategory;
|
|
33301
33372
|
subcategory: SignalSubcategory;
|
|
@@ -33304,7 +33375,11 @@ declare const SIGNAL_TAXONOMY: Record<SignalType, {
|
|
|
33304
33375
|
declare const SIGNAL_LABELS: Record<SignalType, string>;
|
|
33305
33376
|
interface Signal {
|
|
33306
33377
|
signal_id: string;
|
|
33307
|
-
|
|
33378
|
+
/**
|
|
33379
|
+
* Open string, not SignalType: user-defined signals carry custom types.
|
|
33380
|
+
* Built-in producers emit SIGNAL_TYPES values.
|
|
33381
|
+
*/
|
|
33382
|
+
signal: string;
|
|
33308
33383
|
signal_category: SignalCategory;
|
|
33309
33384
|
signal_subcategory: SignalSubcategory;
|
|
33310
33385
|
signal_scope: SignalScope;
|
|
@@ -33327,7 +33402,7 @@ declare const MAX_SIGNALS_PER_SCAN = 100;
|
|
|
33327
33402
|
* (`bucket:claim@1` on this id) depends on this stability.
|
|
33328
33403
|
*/
|
|
33329
33404
|
declare function buildSignalId(args: {
|
|
33330
|
-
signal:
|
|
33405
|
+
signal: string;
|
|
33331
33406
|
personKey: string;
|
|
33332
33407
|
fromCompanyKey: string;
|
|
33333
33408
|
toCompanyKey: string;
|
|
@@ -33415,31 +33490,60 @@ declare const fieldCatalog: {
|
|
|
33415
33490
|
readonly jsonMeta: {
|
|
33416
33491
|
readonly zodSchema: z.ZodArray<z.ZodObject<{
|
|
33417
33492
|
signal_id: z.ZodString;
|
|
33418
|
-
signal: z.
|
|
33419
|
-
joined_company: "joined_company";
|
|
33420
|
-
left_company: "left_company";
|
|
33421
|
-
returned_to_company: "returned_to_company";
|
|
33422
|
-
promotion_to_senior_ic: "promotion_to_senior_ic";
|
|
33423
|
-
promotion_to_manager: "promotion_to_manager";
|
|
33424
|
-
promotion_to_leadership: "promotion_to_leadership";
|
|
33425
|
-
promotion_to_c_suite: "promotion_to_c_suite";
|
|
33426
|
-
changed_role: "changed_role";
|
|
33427
|
-
work_anniversary: "work_anniversary";
|
|
33428
|
-
graduated: "graduated";
|
|
33429
|
-
}>;
|
|
33493
|
+
signal: z.ZodString;
|
|
33430
33494
|
signal_category: z.ZodEnum<{
|
|
33431
33495
|
employment: "employment";
|
|
33432
33496
|
education: "education";
|
|
33497
|
+
achievement: "achievement";
|
|
33498
|
+
engagement: "engagement";
|
|
33499
|
+
social_activity: "social_activity";
|
|
33433
33500
|
company_growth: "company_growth";
|
|
33434
33501
|
company_news: "company_news";
|
|
33435
|
-
|
|
33502
|
+
technology: "technology";
|
|
33503
|
+
intent: "intent";
|
|
33504
|
+
other: "other";
|
|
33436
33505
|
}>;
|
|
33437
33506
|
signal_subcategory: z.ZodEnum<{
|
|
33438
33507
|
education: "education";
|
|
33508
|
+
other: "other";
|
|
33439
33509
|
job_change: "job_change";
|
|
33440
33510
|
promotion: "promotion";
|
|
33441
33511
|
role_change: "role_change";
|
|
33442
33512
|
tenure_milestone: "tenure_milestone";
|
|
33513
|
+
enrollment: "enrollment";
|
|
33514
|
+
certification: "certification";
|
|
33515
|
+
award: "award";
|
|
33516
|
+
speaking_engagement: "speaking_engagement";
|
|
33517
|
+
publication: "publication";
|
|
33518
|
+
product_usage: "product_usage";
|
|
33519
|
+
website_activity: "website_activity";
|
|
33520
|
+
content_engagement: "content_engagement";
|
|
33521
|
+
social_engagement: "social_engagement";
|
|
33522
|
+
event_activity: "event_activity";
|
|
33523
|
+
outreach_engagement: "outreach_engagement";
|
|
33524
|
+
community_activity: "community_activity";
|
|
33525
|
+
advocacy: "advocacy";
|
|
33526
|
+
post_published: "post_published";
|
|
33527
|
+
content_interaction: "content_interaction";
|
|
33528
|
+
topic_mention: "topic_mention";
|
|
33529
|
+
profile_update: "profile_update";
|
|
33530
|
+
headcount_change: "headcount_change";
|
|
33531
|
+
hiring: "hiring";
|
|
33532
|
+
expansion: "expansion";
|
|
33533
|
+
financial_growth: "financial_growth";
|
|
33534
|
+
funding: "funding";
|
|
33535
|
+
merger_acquisition: "merger_acquisition";
|
|
33536
|
+
ipo: "ipo";
|
|
33537
|
+
leadership_change: "leadership_change";
|
|
33538
|
+
product_launch: "product_launch";
|
|
33539
|
+
partnership: "partnership";
|
|
33540
|
+
workforce_reduction: "workforce_reduction";
|
|
33541
|
+
recognition: "recognition";
|
|
33542
|
+
legal_regulatory: "legal_regulatory";
|
|
33543
|
+
tech_added: "tech_added";
|
|
33544
|
+
tech_removed: "tech_removed";
|
|
33545
|
+
research_intent: "research_intent";
|
|
33546
|
+
review_activity: "review_activity";
|
|
33443
33547
|
}>;
|
|
33444
33548
|
signal_scope: z.ZodEnum<{
|
|
33445
33549
|
person: "person";
|
|
@@ -33465,31 +33569,60 @@ declare const fieldCatalog: {
|
|
|
33465
33569
|
readonly jsonMeta: {
|
|
33466
33570
|
readonly zodSchema: z.ZodObject<{
|
|
33467
33571
|
signal_id: z.ZodString;
|
|
33468
|
-
signal: z.
|
|
33469
|
-
joined_company: "joined_company";
|
|
33470
|
-
left_company: "left_company";
|
|
33471
|
-
returned_to_company: "returned_to_company";
|
|
33472
|
-
promotion_to_senior_ic: "promotion_to_senior_ic";
|
|
33473
|
-
promotion_to_manager: "promotion_to_manager";
|
|
33474
|
-
promotion_to_leadership: "promotion_to_leadership";
|
|
33475
|
-
promotion_to_c_suite: "promotion_to_c_suite";
|
|
33476
|
-
changed_role: "changed_role";
|
|
33477
|
-
work_anniversary: "work_anniversary";
|
|
33478
|
-
graduated: "graduated";
|
|
33479
|
-
}>;
|
|
33572
|
+
signal: z.ZodString;
|
|
33480
33573
|
signal_category: z.ZodEnum<{
|
|
33481
33574
|
employment: "employment";
|
|
33482
33575
|
education: "education";
|
|
33576
|
+
achievement: "achievement";
|
|
33577
|
+
engagement: "engagement";
|
|
33578
|
+
social_activity: "social_activity";
|
|
33483
33579
|
company_growth: "company_growth";
|
|
33484
33580
|
company_news: "company_news";
|
|
33485
|
-
|
|
33581
|
+
technology: "technology";
|
|
33582
|
+
intent: "intent";
|
|
33583
|
+
other: "other";
|
|
33486
33584
|
}>;
|
|
33487
33585
|
signal_subcategory: z.ZodEnum<{
|
|
33488
33586
|
education: "education";
|
|
33587
|
+
other: "other";
|
|
33489
33588
|
job_change: "job_change";
|
|
33490
33589
|
promotion: "promotion";
|
|
33491
33590
|
role_change: "role_change";
|
|
33492
33591
|
tenure_milestone: "tenure_milestone";
|
|
33592
|
+
enrollment: "enrollment";
|
|
33593
|
+
certification: "certification";
|
|
33594
|
+
award: "award";
|
|
33595
|
+
speaking_engagement: "speaking_engagement";
|
|
33596
|
+
publication: "publication";
|
|
33597
|
+
product_usage: "product_usage";
|
|
33598
|
+
website_activity: "website_activity";
|
|
33599
|
+
content_engagement: "content_engagement";
|
|
33600
|
+
social_engagement: "social_engagement";
|
|
33601
|
+
event_activity: "event_activity";
|
|
33602
|
+
outreach_engagement: "outreach_engagement";
|
|
33603
|
+
community_activity: "community_activity";
|
|
33604
|
+
advocacy: "advocacy";
|
|
33605
|
+
post_published: "post_published";
|
|
33606
|
+
content_interaction: "content_interaction";
|
|
33607
|
+
topic_mention: "topic_mention";
|
|
33608
|
+
profile_update: "profile_update";
|
|
33609
|
+
headcount_change: "headcount_change";
|
|
33610
|
+
hiring: "hiring";
|
|
33611
|
+
expansion: "expansion";
|
|
33612
|
+
financial_growth: "financial_growth";
|
|
33613
|
+
funding: "funding";
|
|
33614
|
+
merger_acquisition: "merger_acquisition";
|
|
33615
|
+
ipo: "ipo";
|
|
33616
|
+
leadership_change: "leadership_change";
|
|
33617
|
+
product_launch: "product_launch";
|
|
33618
|
+
partnership: "partnership";
|
|
33619
|
+
workforce_reduction: "workforce_reduction";
|
|
33620
|
+
recognition: "recognition";
|
|
33621
|
+
legal_regulatory: "legal_regulatory";
|
|
33622
|
+
tech_added: "tech_added";
|
|
33623
|
+
tech_removed: "tech_removed";
|
|
33624
|
+
research_intent: "research_intent";
|
|
33625
|
+
review_activity: "review_activity";
|
|
33493
33626
|
}>;
|
|
33494
33627
|
signal_scope: z.ZodEnum<{
|
|
33495
33628
|
person: "person";
|
|
@@ -35802,13 +35935,13 @@ declare const fieldCatalog: {
|
|
|
35802
35935
|
event_end: z.ZodNullable<z.ZodString>;
|
|
35803
35936
|
event_timezone: z.ZodNullable<z.ZodString>;
|
|
35804
35937
|
event_type: z.ZodEnum<{
|
|
35938
|
+
other: "other";
|
|
35805
35939
|
meeting: "meeting";
|
|
35806
35940
|
out_of_office: "out_of_office";
|
|
35807
35941
|
focus_time: "focus_time";
|
|
35808
35942
|
working_location: "working_location";
|
|
35809
35943
|
birthday: "birthday";
|
|
35810
35944
|
from_gmail: "from_gmail";
|
|
35811
|
-
other: "other";
|
|
35812
35945
|
}>;
|
|
35813
35946
|
event_location: z.ZodNullable<z.ZodString>;
|
|
35814
35947
|
event_url: z.ZodNullable<z.ZodString>;
|
|
@@ -35821,7 +35954,7 @@ declare const fieldCatalog: {
|
|
|
35821
35954
|
event_start: string | null;
|
|
35822
35955
|
event_end: string | null;
|
|
35823
35956
|
event_timezone: string | null;
|
|
35824
|
-
event_type: "meeting" | "out_of_office" | "focus_time" | "working_location" | "birthday" | "from_gmail"
|
|
35957
|
+
event_type: "other" | "meeting" | "out_of_office" | "focus_time" | "working_location" | "birthday" | "from_gmail";
|
|
35825
35958
|
event_location: string | null;
|
|
35826
35959
|
event_url: string | null;
|
|
35827
35960
|
organizer_email: string | null;
|
|
@@ -36952,6 +37085,140 @@ declare const fieldCatalog: {
|
|
|
36952
37085
|
};
|
|
36953
37086
|
};
|
|
36954
37087
|
};
|
|
37088
|
+
readonly crustdata_company_match_v2: {
|
|
37089
|
+
readonly label: "Company match";
|
|
37090
|
+
readonly type: "json";
|
|
37091
|
+
readonly format: "json_object";
|
|
37092
|
+
readonly description: "Crustdata company match object (2025-11-01 API generation): identity, headcount and growth, funding, locations, taxonomy, revenue, and social profiles.";
|
|
37093
|
+
readonly jsonMeta: {
|
|
37094
|
+
readonly zodSchema: z.ZodObject<{
|
|
37095
|
+
crustdata_company_id: z.ZodNullable<z.ZodNumber>;
|
|
37096
|
+
basic_info: z.ZodObject<{
|
|
37097
|
+
name: z.ZodNullable<z.ZodString>;
|
|
37098
|
+
primary_domain: z.ZodNullable<z.ZodString>;
|
|
37099
|
+
website_url: z.ZodNullable<z.ZodString>;
|
|
37100
|
+
professional_network_url: z.ZodNullable<z.ZodString>;
|
|
37101
|
+
description: z.ZodNullable<z.ZodString>;
|
|
37102
|
+
company_type: z.ZodNullable<z.ZodString>;
|
|
37103
|
+
year_founded: z.ZodNullable<z.ZodNumber>;
|
|
37104
|
+
employee_count_range: z.ZodNullable<z.ZodString>;
|
|
37105
|
+
markets: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
37106
|
+
industries: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
37107
|
+
logo_url: z.ZodNullable<z.ZodString>;
|
|
37108
|
+
}, z.core.$strip>;
|
|
37109
|
+
headcount: z.ZodObject<{
|
|
37110
|
+
total: z.ZodNullable<z.ZodNumber>;
|
|
37111
|
+
largest_headcount_country: z.ZodNullable<z.ZodString>;
|
|
37112
|
+
growth_percent_1m: z.ZodNullable<z.ZodNumber>;
|
|
37113
|
+
growth_percent_3m: z.ZodNullable<z.ZodNumber>;
|
|
37114
|
+
growth_percent_6m: z.ZodNullable<z.ZodNumber>;
|
|
37115
|
+
growth_percent_12m: z.ZodNullable<z.ZodNumber>;
|
|
37116
|
+
growth_absolute_1m: z.ZodNullable<z.ZodNumber>;
|
|
37117
|
+
growth_absolute_3m: z.ZodNullable<z.ZodNumber>;
|
|
37118
|
+
growth_absolute_6m: z.ZodNullable<z.ZodNumber>;
|
|
37119
|
+
growth_absolute_12m: z.ZodNullable<z.ZodNumber>;
|
|
37120
|
+
}, z.core.$strip>;
|
|
37121
|
+
funding: z.ZodObject<{
|
|
37122
|
+
total_investment_usd: z.ZodNullable<z.ZodNumber>;
|
|
37123
|
+
last_round_amount_usd: z.ZodNullable<z.ZodNumber>;
|
|
37124
|
+
last_fundraise_date: z.ZodNullable<z.ZodString>;
|
|
37125
|
+
last_round_type: z.ZodNullable<z.ZodString>;
|
|
37126
|
+
investors: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
37127
|
+
}, z.core.$strip>;
|
|
37128
|
+
locations: z.ZodObject<{
|
|
37129
|
+
country: z.ZodNullable<z.ZodString>;
|
|
37130
|
+
headquarters: z.ZodNullable<z.ZodString>;
|
|
37131
|
+
state: z.ZodNullable<z.ZodString>;
|
|
37132
|
+
street_address: z.ZodNullable<z.ZodString>;
|
|
37133
|
+
all_office_addresses: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
37134
|
+
}, z.core.$strip>;
|
|
37135
|
+
taxonomy: z.ZodObject<{
|
|
37136
|
+
professional_network_industry: z.ZodNullable<z.ZodString>;
|
|
37137
|
+
professional_network_industries: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
37138
|
+
professional_network_specialities: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
37139
|
+
categories: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
37140
|
+
}, z.core.$strip>;
|
|
37141
|
+
revenue: z.ZodObject<{
|
|
37142
|
+
estimated_lower_bound_usd: z.ZodNullable<z.ZodNumber>;
|
|
37143
|
+
estimated_upper_bound_usd: z.ZodNullable<z.ZodNumber>;
|
|
37144
|
+
ipo_date: z.ZodNullable<z.ZodString>;
|
|
37145
|
+
stock_symbols: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
37146
|
+
fiscal_year_end: z.ZodNullable<z.ZodString>;
|
|
37147
|
+
acquisition_status: z.ZodNullable<z.ZodString>;
|
|
37148
|
+
}, z.core.$strip>;
|
|
37149
|
+
social_profiles: z.ZodObject<{
|
|
37150
|
+
crunchbase_url: z.ZodNullable<z.ZodString>;
|
|
37151
|
+
crunchbase_uuid: z.ZodNullable<z.ZodString>;
|
|
37152
|
+
twitter_url: z.ZodNullable<z.ZodString>;
|
|
37153
|
+
professional_network_url: z.ZodNullable<z.ZodString>;
|
|
37154
|
+
professional_network_id: z.ZodNullable<z.ZodString>;
|
|
37155
|
+
}, z.core.$strip>;
|
|
37156
|
+
}, z.core.$strip>;
|
|
37157
|
+
readonly exampleValue: {
|
|
37158
|
+
crustdata_company_id: number | null;
|
|
37159
|
+
basic_info: {
|
|
37160
|
+
name: string | null;
|
|
37161
|
+
primary_domain: string | null;
|
|
37162
|
+
website_url: string | null;
|
|
37163
|
+
professional_network_url: string | null;
|
|
37164
|
+
description: string | null;
|
|
37165
|
+
company_type: string | null;
|
|
37166
|
+
year_founded: number | null;
|
|
37167
|
+
employee_count_range: string | null;
|
|
37168
|
+
markets: string[] | null;
|
|
37169
|
+
industries: string[] | null;
|
|
37170
|
+
logo_url: string | null;
|
|
37171
|
+
};
|
|
37172
|
+
headcount: {
|
|
37173
|
+
total: number | null;
|
|
37174
|
+
largest_headcount_country: string | null;
|
|
37175
|
+
growth_percent_1m: number | null;
|
|
37176
|
+
growth_percent_3m: number | null;
|
|
37177
|
+
growth_percent_6m: number | null;
|
|
37178
|
+
growth_percent_12m: number | null;
|
|
37179
|
+
growth_absolute_1m: number | null;
|
|
37180
|
+
growth_absolute_3m: number | null;
|
|
37181
|
+
growth_absolute_6m: number | null;
|
|
37182
|
+
growth_absolute_12m: number | null;
|
|
37183
|
+
};
|
|
37184
|
+
funding: {
|
|
37185
|
+
total_investment_usd: number | null;
|
|
37186
|
+
last_round_amount_usd: number | null;
|
|
37187
|
+
last_fundraise_date: string | null;
|
|
37188
|
+
last_round_type: string | null;
|
|
37189
|
+
investors: string[] | null;
|
|
37190
|
+
};
|
|
37191
|
+
locations: {
|
|
37192
|
+
country: string | null;
|
|
37193
|
+
headquarters: string | null;
|
|
37194
|
+
state: string | null;
|
|
37195
|
+
street_address: string | null;
|
|
37196
|
+
all_office_addresses: string[] | null;
|
|
37197
|
+
};
|
|
37198
|
+
taxonomy: {
|
|
37199
|
+
professional_network_industry: string | null;
|
|
37200
|
+
professional_network_industries: string[] | null;
|
|
37201
|
+
professional_network_specialities: string[] | null;
|
|
37202
|
+
categories: string[] | null;
|
|
37203
|
+
};
|
|
37204
|
+
revenue: {
|
|
37205
|
+
estimated_lower_bound_usd: number | null;
|
|
37206
|
+
estimated_upper_bound_usd: number | null;
|
|
37207
|
+
ipo_date: string | null;
|
|
37208
|
+
stock_symbols: string[] | null;
|
|
37209
|
+
fiscal_year_end: string | null;
|
|
37210
|
+
acquisition_status: string | null;
|
|
37211
|
+
};
|
|
37212
|
+
social_profiles: {
|
|
37213
|
+
crunchbase_url: string | null;
|
|
37214
|
+
crunchbase_uuid: string | null;
|
|
37215
|
+
twitter_url: string | null;
|
|
37216
|
+
professional_network_url: string | null;
|
|
37217
|
+
professional_network_id: string | null;
|
|
37218
|
+
};
|
|
37219
|
+
};
|
|
37220
|
+
};
|
|
37221
|
+
};
|
|
36955
37222
|
readonly crustdata_companyenrich_match: {
|
|
36956
37223
|
readonly label: "Company enrichment match";
|
|
36957
37224
|
readonly type: "json";
|
|
@@ -40263,6 +40530,7 @@ declare const fieldBehaviorCatalog: {
|
|
|
40263
40530
|
};
|
|
40264
40531
|
};
|
|
40265
40532
|
crustdata_company_match: {};
|
|
40533
|
+
crustdata_company_match_v2: {};
|
|
40266
40534
|
crustdata_company_identity_matches: {};
|
|
40267
40535
|
crustdata_person_match: {};
|
|
40268
40536
|
parallel_person_entity_match: {};
|
|
@@ -40496,31 +40764,60 @@ declare function getField<T extends FieldName>(fieldName: T): {
|
|
|
40496
40764
|
readonly jsonMeta: {
|
|
40497
40765
|
readonly zodSchema: z.ZodArray<z.ZodObject<{
|
|
40498
40766
|
signal_id: z.ZodString;
|
|
40499
|
-
signal: z.
|
|
40500
|
-
joined_company: "joined_company";
|
|
40501
|
-
left_company: "left_company";
|
|
40502
|
-
returned_to_company: "returned_to_company";
|
|
40503
|
-
promotion_to_senior_ic: "promotion_to_senior_ic";
|
|
40504
|
-
promotion_to_manager: "promotion_to_manager";
|
|
40505
|
-
promotion_to_leadership: "promotion_to_leadership";
|
|
40506
|
-
promotion_to_c_suite: "promotion_to_c_suite";
|
|
40507
|
-
changed_role: "changed_role";
|
|
40508
|
-
work_anniversary: "work_anniversary";
|
|
40509
|
-
graduated: "graduated";
|
|
40510
|
-
}>;
|
|
40767
|
+
signal: z.ZodString;
|
|
40511
40768
|
signal_category: z.ZodEnum<{
|
|
40512
40769
|
employment: "employment";
|
|
40513
40770
|
education: "education";
|
|
40771
|
+
achievement: "achievement";
|
|
40772
|
+
engagement: "engagement";
|
|
40773
|
+
social_activity: "social_activity";
|
|
40514
40774
|
company_growth: "company_growth";
|
|
40515
40775
|
company_news: "company_news";
|
|
40516
|
-
|
|
40776
|
+
technology: "technology";
|
|
40777
|
+
intent: "intent";
|
|
40778
|
+
other: "other";
|
|
40517
40779
|
}>;
|
|
40518
40780
|
signal_subcategory: z.ZodEnum<{
|
|
40519
40781
|
education: "education";
|
|
40782
|
+
other: "other";
|
|
40520
40783
|
job_change: "job_change";
|
|
40521
40784
|
promotion: "promotion";
|
|
40522
40785
|
role_change: "role_change";
|
|
40523
40786
|
tenure_milestone: "tenure_milestone";
|
|
40787
|
+
enrollment: "enrollment";
|
|
40788
|
+
certification: "certification";
|
|
40789
|
+
award: "award";
|
|
40790
|
+
speaking_engagement: "speaking_engagement";
|
|
40791
|
+
publication: "publication";
|
|
40792
|
+
product_usage: "product_usage";
|
|
40793
|
+
website_activity: "website_activity";
|
|
40794
|
+
content_engagement: "content_engagement";
|
|
40795
|
+
social_engagement: "social_engagement";
|
|
40796
|
+
event_activity: "event_activity";
|
|
40797
|
+
outreach_engagement: "outreach_engagement";
|
|
40798
|
+
community_activity: "community_activity";
|
|
40799
|
+
advocacy: "advocacy";
|
|
40800
|
+
post_published: "post_published";
|
|
40801
|
+
content_interaction: "content_interaction";
|
|
40802
|
+
topic_mention: "topic_mention";
|
|
40803
|
+
profile_update: "profile_update";
|
|
40804
|
+
headcount_change: "headcount_change";
|
|
40805
|
+
hiring: "hiring";
|
|
40806
|
+
expansion: "expansion";
|
|
40807
|
+
financial_growth: "financial_growth";
|
|
40808
|
+
funding: "funding";
|
|
40809
|
+
merger_acquisition: "merger_acquisition";
|
|
40810
|
+
ipo: "ipo";
|
|
40811
|
+
leadership_change: "leadership_change";
|
|
40812
|
+
product_launch: "product_launch";
|
|
40813
|
+
partnership: "partnership";
|
|
40814
|
+
workforce_reduction: "workforce_reduction";
|
|
40815
|
+
recognition: "recognition";
|
|
40816
|
+
legal_regulatory: "legal_regulatory";
|
|
40817
|
+
tech_added: "tech_added";
|
|
40818
|
+
tech_removed: "tech_removed";
|
|
40819
|
+
research_intent: "research_intent";
|
|
40820
|
+
review_activity: "review_activity";
|
|
40524
40821
|
}>;
|
|
40525
40822
|
signal_scope: z.ZodEnum<{
|
|
40526
40823
|
person: "person";
|
|
@@ -40546,31 +40843,60 @@ declare function getField<T extends FieldName>(fieldName: T): {
|
|
|
40546
40843
|
readonly jsonMeta: {
|
|
40547
40844
|
readonly zodSchema: z.ZodObject<{
|
|
40548
40845
|
signal_id: z.ZodString;
|
|
40549
|
-
signal: z.
|
|
40550
|
-
joined_company: "joined_company";
|
|
40551
|
-
left_company: "left_company";
|
|
40552
|
-
returned_to_company: "returned_to_company";
|
|
40553
|
-
promotion_to_senior_ic: "promotion_to_senior_ic";
|
|
40554
|
-
promotion_to_manager: "promotion_to_manager";
|
|
40555
|
-
promotion_to_leadership: "promotion_to_leadership";
|
|
40556
|
-
promotion_to_c_suite: "promotion_to_c_suite";
|
|
40557
|
-
changed_role: "changed_role";
|
|
40558
|
-
work_anniversary: "work_anniversary";
|
|
40559
|
-
graduated: "graduated";
|
|
40560
|
-
}>;
|
|
40846
|
+
signal: z.ZodString;
|
|
40561
40847
|
signal_category: z.ZodEnum<{
|
|
40562
40848
|
employment: "employment";
|
|
40563
40849
|
education: "education";
|
|
40850
|
+
achievement: "achievement";
|
|
40851
|
+
engagement: "engagement";
|
|
40852
|
+
social_activity: "social_activity";
|
|
40564
40853
|
company_growth: "company_growth";
|
|
40565
40854
|
company_news: "company_news";
|
|
40566
|
-
|
|
40855
|
+
technology: "technology";
|
|
40856
|
+
intent: "intent";
|
|
40857
|
+
other: "other";
|
|
40567
40858
|
}>;
|
|
40568
40859
|
signal_subcategory: z.ZodEnum<{
|
|
40569
40860
|
education: "education";
|
|
40861
|
+
other: "other";
|
|
40570
40862
|
job_change: "job_change";
|
|
40571
40863
|
promotion: "promotion";
|
|
40572
40864
|
role_change: "role_change";
|
|
40573
40865
|
tenure_milestone: "tenure_milestone";
|
|
40866
|
+
enrollment: "enrollment";
|
|
40867
|
+
certification: "certification";
|
|
40868
|
+
award: "award";
|
|
40869
|
+
speaking_engagement: "speaking_engagement";
|
|
40870
|
+
publication: "publication";
|
|
40871
|
+
product_usage: "product_usage";
|
|
40872
|
+
website_activity: "website_activity";
|
|
40873
|
+
content_engagement: "content_engagement";
|
|
40874
|
+
social_engagement: "social_engagement";
|
|
40875
|
+
event_activity: "event_activity";
|
|
40876
|
+
outreach_engagement: "outreach_engagement";
|
|
40877
|
+
community_activity: "community_activity";
|
|
40878
|
+
advocacy: "advocacy";
|
|
40879
|
+
post_published: "post_published";
|
|
40880
|
+
content_interaction: "content_interaction";
|
|
40881
|
+
topic_mention: "topic_mention";
|
|
40882
|
+
profile_update: "profile_update";
|
|
40883
|
+
headcount_change: "headcount_change";
|
|
40884
|
+
hiring: "hiring";
|
|
40885
|
+
expansion: "expansion";
|
|
40886
|
+
financial_growth: "financial_growth";
|
|
40887
|
+
funding: "funding";
|
|
40888
|
+
merger_acquisition: "merger_acquisition";
|
|
40889
|
+
ipo: "ipo";
|
|
40890
|
+
leadership_change: "leadership_change";
|
|
40891
|
+
product_launch: "product_launch";
|
|
40892
|
+
partnership: "partnership";
|
|
40893
|
+
workforce_reduction: "workforce_reduction";
|
|
40894
|
+
recognition: "recognition";
|
|
40895
|
+
legal_regulatory: "legal_regulatory";
|
|
40896
|
+
tech_added: "tech_added";
|
|
40897
|
+
tech_removed: "tech_removed";
|
|
40898
|
+
research_intent: "research_intent";
|
|
40899
|
+
review_activity: "review_activity";
|
|
40574
40900
|
}>;
|
|
40575
40901
|
signal_scope: z.ZodEnum<{
|
|
40576
40902
|
person: "person";
|
|
@@ -42883,13 +43209,13 @@ declare function getField<T extends FieldName>(fieldName: T): {
|
|
|
42883
43209
|
event_end: z.ZodNullable<z.ZodString>;
|
|
42884
43210
|
event_timezone: z.ZodNullable<z.ZodString>;
|
|
42885
43211
|
event_type: z.ZodEnum<{
|
|
43212
|
+
other: "other";
|
|
42886
43213
|
meeting: "meeting";
|
|
42887
43214
|
out_of_office: "out_of_office";
|
|
42888
43215
|
focus_time: "focus_time";
|
|
42889
43216
|
working_location: "working_location";
|
|
42890
43217
|
birthday: "birthday";
|
|
42891
43218
|
from_gmail: "from_gmail";
|
|
42892
|
-
other: "other";
|
|
42893
43219
|
}>;
|
|
42894
43220
|
event_location: z.ZodNullable<z.ZodString>;
|
|
42895
43221
|
event_url: z.ZodNullable<z.ZodString>;
|
|
@@ -42902,7 +43228,7 @@ declare function getField<T extends FieldName>(fieldName: T): {
|
|
|
42902
43228
|
event_start: string | null;
|
|
42903
43229
|
event_end: string | null;
|
|
42904
43230
|
event_timezone: string | null;
|
|
42905
|
-
event_type: "meeting" | "out_of_office" | "focus_time" | "working_location" | "birthday" | "from_gmail"
|
|
43231
|
+
event_type: "other" | "meeting" | "out_of_office" | "focus_time" | "working_location" | "birthday" | "from_gmail";
|
|
42906
43232
|
event_location: string | null;
|
|
42907
43233
|
event_url: string | null;
|
|
42908
43234
|
organizer_email: string | null;
|
|
@@ -44033,6 +44359,140 @@ declare function getField<T extends FieldName>(fieldName: T): {
|
|
|
44033
44359
|
};
|
|
44034
44360
|
};
|
|
44035
44361
|
};
|
|
44362
|
+
readonly crustdata_company_match_v2: {
|
|
44363
|
+
readonly label: "Company match";
|
|
44364
|
+
readonly type: "json";
|
|
44365
|
+
readonly format: "json_object";
|
|
44366
|
+
readonly description: "Crustdata company match object (2025-11-01 API generation): identity, headcount and growth, funding, locations, taxonomy, revenue, and social profiles.";
|
|
44367
|
+
readonly jsonMeta: {
|
|
44368
|
+
readonly zodSchema: z.ZodObject<{
|
|
44369
|
+
crustdata_company_id: z.ZodNullable<z.ZodNumber>;
|
|
44370
|
+
basic_info: z.ZodObject<{
|
|
44371
|
+
name: z.ZodNullable<z.ZodString>;
|
|
44372
|
+
primary_domain: z.ZodNullable<z.ZodString>;
|
|
44373
|
+
website_url: z.ZodNullable<z.ZodString>;
|
|
44374
|
+
professional_network_url: z.ZodNullable<z.ZodString>;
|
|
44375
|
+
description: z.ZodNullable<z.ZodString>;
|
|
44376
|
+
company_type: z.ZodNullable<z.ZodString>;
|
|
44377
|
+
year_founded: z.ZodNullable<z.ZodNumber>;
|
|
44378
|
+
employee_count_range: z.ZodNullable<z.ZodString>;
|
|
44379
|
+
markets: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
44380
|
+
industries: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
44381
|
+
logo_url: z.ZodNullable<z.ZodString>;
|
|
44382
|
+
}, z.core.$strip>;
|
|
44383
|
+
headcount: z.ZodObject<{
|
|
44384
|
+
total: z.ZodNullable<z.ZodNumber>;
|
|
44385
|
+
largest_headcount_country: z.ZodNullable<z.ZodString>;
|
|
44386
|
+
growth_percent_1m: z.ZodNullable<z.ZodNumber>;
|
|
44387
|
+
growth_percent_3m: z.ZodNullable<z.ZodNumber>;
|
|
44388
|
+
growth_percent_6m: z.ZodNullable<z.ZodNumber>;
|
|
44389
|
+
growth_percent_12m: z.ZodNullable<z.ZodNumber>;
|
|
44390
|
+
growth_absolute_1m: z.ZodNullable<z.ZodNumber>;
|
|
44391
|
+
growth_absolute_3m: z.ZodNullable<z.ZodNumber>;
|
|
44392
|
+
growth_absolute_6m: z.ZodNullable<z.ZodNumber>;
|
|
44393
|
+
growth_absolute_12m: z.ZodNullable<z.ZodNumber>;
|
|
44394
|
+
}, z.core.$strip>;
|
|
44395
|
+
funding: z.ZodObject<{
|
|
44396
|
+
total_investment_usd: z.ZodNullable<z.ZodNumber>;
|
|
44397
|
+
last_round_amount_usd: z.ZodNullable<z.ZodNumber>;
|
|
44398
|
+
last_fundraise_date: z.ZodNullable<z.ZodString>;
|
|
44399
|
+
last_round_type: z.ZodNullable<z.ZodString>;
|
|
44400
|
+
investors: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
44401
|
+
}, z.core.$strip>;
|
|
44402
|
+
locations: z.ZodObject<{
|
|
44403
|
+
country: z.ZodNullable<z.ZodString>;
|
|
44404
|
+
headquarters: z.ZodNullable<z.ZodString>;
|
|
44405
|
+
state: z.ZodNullable<z.ZodString>;
|
|
44406
|
+
street_address: z.ZodNullable<z.ZodString>;
|
|
44407
|
+
all_office_addresses: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
44408
|
+
}, z.core.$strip>;
|
|
44409
|
+
taxonomy: z.ZodObject<{
|
|
44410
|
+
professional_network_industry: z.ZodNullable<z.ZodString>;
|
|
44411
|
+
professional_network_industries: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
44412
|
+
professional_network_specialities: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
44413
|
+
categories: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
44414
|
+
}, z.core.$strip>;
|
|
44415
|
+
revenue: z.ZodObject<{
|
|
44416
|
+
estimated_lower_bound_usd: z.ZodNullable<z.ZodNumber>;
|
|
44417
|
+
estimated_upper_bound_usd: z.ZodNullable<z.ZodNumber>;
|
|
44418
|
+
ipo_date: z.ZodNullable<z.ZodString>;
|
|
44419
|
+
stock_symbols: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
44420
|
+
fiscal_year_end: z.ZodNullable<z.ZodString>;
|
|
44421
|
+
acquisition_status: z.ZodNullable<z.ZodString>;
|
|
44422
|
+
}, z.core.$strip>;
|
|
44423
|
+
social_profiles: z.ZodObject<{
|
|
44424
|
+
crunchbase_url: z.ZodNullable<z.ZodString>;
|
|
44425
|
+
crunchbase_uuid: z.ZodNullable<z.ZodString>;
|
|
44426
|
+
twitter_url: z.ZodNullable<z.ZodString>;
|
|
44427
|
+
professional_network_url: z.ZodNullable<z.ZodString>;
|
|
44428
|
+
professional_network_id: z.ZodNullable<z.ZodString>;
|
|
44429
|
+
}, z.core.$strip>;
|
|
44430
|
+
}, z.core.$strip>;
|
|
44431
|
+
readonly exampleValue: {
|
|
44432
|
+
crustdata_company_id: number | null;
|
|
44433
|
+
basic_info: {
|
|
44434
|
+
name: string | null;
|
|
44435
|
+
primary_domain: string | null;
|
|
44436
|
+
website_url: string | null;
|
|
44437
|
+
professional_network_url: string | null;
|
|
44438
|
+
description: string | null;
|
|
44439
|
+
company_type: string | null;
|
|
44440
|
+
year_founded: number | null;
|
|
44441
|
+
employee_count_range: string | null;
|
|
44442
|
+
markets: string[] | null;
|
|
44443
|
+
industries: string[] | null;
|
|
44444
|
+
logo_url: string | null;
|
|
44445
|
+
};
|
|
44446
|
+
headcount: {
|
|
44447
|
+
total: number | null;
|
|
44448
|
+
largest_headcount_country: string | null;
|
|
44449
|
+
growth_percent_1m: number | null;
|
|
44450
|
+
growth_percent_3m: number | null;
|
|
44451
|
+
growth_percent_6m: number | null;
|
|
44452
|
+
growth_percent_12m: number | null;
|
|
44453
|
+
growth_absolute_1m: number | null;
|
|
44454
|
+
growth_absolute_3m: number | null;
|
|
44455
|
+
growth_absolute_6m: number | null;
|
|
44456
|
+
growth_absolute_12m: number | null;
|
|
44457
|
+
};
|
|
44458
|
+
funding: {
|
|
44459
|
+
total_investment_usd: number | null;
|
|
44460
|
+
last_round_amount_usd: number | null;
|
|
44461
|
+
last_fundraise_date: string | null;
|
|
44462
|
+
last_round_type: string | null;
|
|
44463
|
+
investors: string[] | null;
|
|
44464
|
+
};
|
|
44465
|
+
locations: {
|
|
44466
|
+
country: string | null;
|
|
44467
|
+
headquarters: string | null;
|
|
44468
|
+
state: string | null;
|
|
44469
|
+
street_address: string | null;
|
|
44470
|
+
all_office_addresses: string[] | null;
|
|
44471
|
+
};
|
|
44472
|
+
taxonomy: {
|
|
44473
|
+
professional_network_industry: string | null;
|
|
44474
|
+
professional_network_industries: string[] | null;
|
|
44475
|
+
professional_network_specialities: string[] | null;
|
|
44476
|
+
categories: string[] | null;
|
|
44477
|
+
};
|
|
44478
|
+
revenue: {
|
|
44479
|
+
estimated_lower_bound_usd: number | null;
|
|
44480
|
+
estimated_upper_bound_usd: number | null;
|
|
44481
|
+
ipo_date: string | null;
|
|
44482
|
+
stock_symbols: string[] | null;
|
|
44483
|
+
fiscal_year_end: string | null;
|
|
44484
|
+
acquisition_status: string | null;
|
|
44485
|
+
};
|
|
44486
|
+
social_profiles: {
|
|
44487
|
+
crunchbase_url: string | null;
|
|
44488
|
+
crunchbase_uuid: string | null;
|
|
44489
|
+
twitter_url: string | null;
|
|
44490
|
+
professional_network_url: string | null;
|
|
44491
|
+
professional_network_id: string | null;
|
|
44492
|
+
};
|
|
44493
|
+
};
|
|
44494
|
+
};
|
|
44495
|
+
};
|
|
44036
44496
|
readonly crustdata_companyenrich_match: {
|
|
44037
44497
|
readonly label: "Company enrichment match";
|
|
44038
44498
|
readonly type: "json";
|
|
@@ -47879,6 +48339,129 @@ declare const searchPayloadSchemaCatalog: {
|
|
|
47879
48339
|
}, z$1.core.$strip>;
|
|
47880
48340
|
}, z$1.core.$strip>;
|
|
47881
48341
|
}, z$1.core.$strip>;
|
|
48342
|
+
"companies:profiles:crustdata@3": z$1.ZodObject<{
|
|
48343
|
+
search_id: z$1.ZodLiteral<"companies:profiles:crustdata@3">;
|
|
48344
|
+
connector: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
|
|
48345
|
+
strategy: z$1.ZodDefault<z$1.ZodEnum<{
|
|
48346
|
+
first: "first";
|
|
48347
|
+
}>>;
|
|
48348
|
+
connections: z$1.ZodArray<z$1.ZodObject<{
|
|
48349
|
+
type: z$1.ZodLiteral<"vault">;
|
|
48350
|
+
connection: z$1.ZodString;
|
|
48351
|
+
}, z$1.core.$strip>>;
|
|
48352
|
+
}, z$1.core.$strip>>>;
|
|
48353
|
+
config: z$1.ZodObject<{
|
|
48354
|
+
limit: z$1.ZodDefault<z$1.ZodPipe<z$1.ZodUnknown, z$1.ZodCoercedNumber<unknown>>>;
|
|
48355
|
+
cursor: z$1.ZodNullable<z$1.ZodCoercedString<unknown>>;
|
|
48356
|
+
output_fields: z$1.ZodOptional<z$1.ZodObject<{
|
|
48357
|
+
company_name: z$1.ZodDefault<z$1.ZodObject<{
|
|
48358
|
+
alias: z$1.ZodDefault<z$1.ZodString>;
|
|
48359
|
+
enabled: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
48360
|
+
}, z$1.core.$strip>>;
|
|
48361
|
+
company_domain: z$1.ZodDefault<z$1.ZodObject<{
|
|
48362
|
+
alias: z$1.ZodDefault<z$1.ZodString>;
|
|
48363
|
+
enabled: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
48364
|
+
}, z$1.core.$strip>>;
|
|
48365
|
+
company_profile_url: z$1.ZodDefault<z$1.ZodObject<{
|
|
48366
|
+
alias: z$1.ZodDefault<z$1.ZodString>;
|
|
48367
|
+
enabled: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
48368
|
+
}, z$1.core.$strip>>;
|
|
48369
|
+
crustdata_company_match_v2: z$1.ZodDefault<z$1.ZodObject<{
|
|
48370
|
+
alias: z$1.ZodDefault<z$1.ZodString>;
|
|
48371
|
+
enabled: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
48372
|
+
}, z$1.core.$strip>>;
|
|
48373
|
+
}, z$1.core.$strip>>;
|
|
48374
|
+
filters: z$1.ZodObject<{
|
|
48375
|
+
company_names: z$1.ZodDefault<z$1.ZodObject<{
|
|
48376
|
+
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
48377
|
+
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
48378
|
+
}, z$1.core.$strip>>;
|
|
48379
|
+
company_domains: z$1.ZodDefault<z$1.ZodObject<{
|
|
48380
|
+
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
48381
|
+
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
48382
|
+
}, z$1.core.$strip>>;
|
|
48383
|
+
company_profile_urls: z$1.ZodDefault<z$1.ZodObject<{
|
|
48384
|
+
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
48385
|
+
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
48386
|
+
}, z$1.core.$strip>>;
|
|
48387
|
+
company_types: z$1.ZodDefault<z$1.ZodArray<z$1.ZodEnum<{
|
|
48388
|
+
[x: string]: string;
|
|
48389
|
+
}>>>;
|
|
48390
|
+
year_founded: z$1.ZodDefault<z$1.ZodObject<{
|
|
48391
|
+
from: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
48392
|
+
to: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
48393
|
+
}, z$1.core.$strip>>;
|
|
48394
|
+
hq_locations: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
48395
|
+
hq_countries: z$1.ZodDefault<z$1.ZodObject<{
|
|
48396
|
+
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
48397
|
+
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
48398
|
+
}, z$1.core.$strip>>;
|
|
48399
|
+
industries: z$1.ZodDefault<z$1.ZodObject<{
|
|
48400
|
+
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
48401
|
+
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
48402
|
+
}, z$1.core.$strip>>;
|
|
48403
|
+
categories: z$1.ZodDefault<z$1.ZodObject<{
|
|
48404
|
+
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
48405
|
+
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
48406
|
+
}, z$1.core.$strip>>;
|
|
48407
|
+
specialities_keywords: z$1.ZodDefault<z$1.ZodObject<{
|
|
48408
|
+
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
48409
|
+
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
48410
|
+
}, z$1.core.$strip>>;
|
|
48411
|
+
headcount_brackets: z$1.ZodDefault<z$1.ZodArray<z$1.ZodEnum<{
|
|
48412
|
+
[x: string]: string;
|
|
48413
|
+
}>>>;
|
|
48414
|
+
engineering_headcount_brackets: z$1.ZodDefault<z$1.ZodArray<z$1.ZodEnum<{
|
|
48415
|
+
[x: string]: string;
|
|
48416
|
+
}>>>;
|
|
48417
|
+
sales_headcount_brackets: z$1.ZodDefault<z$1.ZodArray<z$1.ZodEnum<{
|
|
48418
|
+
[x: string]: string;
|
|
48419
|
+
}>>>;
|
|
48420
|
+
headcount_growth_l6m_in_percent: z$1.ZodDefault<z$1.ZodObject<{
|
|
48421
|
+
from: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
48422
|
+
to: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
48423
|
+
}, z$1.core.$strip>>;
|
|
48424
|
+
revenue_in_usd: z$1.ZodDefault<z$1.ZodObject<{
|
|
48425
|
+
from: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
48426
|
+
to: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
48427
|
+
}, z$1.core.$strip>>;
|
|
48428
|
+
last_funding_round_types: z$1.ZodDefault<z$1.ZodArray<z$1.ZodEnum<{
|
|
48429
|
+
[x: string]: string;
|
|
48430
|
+
}>>>;
|
|
48431
|
+
last_funding_within: z$1.ZodDefault<z$1.ZodString> | z$1.ZodDefault<z$1.ZodDefault<z$1.ZodString>>;
|
|
48432
|
+
last_funding_amount_in_usd: z$1.ZodDefault<z$1.ZodObject<{
|
|
48433
|
+
from: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
48434
|
+
to: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
48435
|
+
}, z$1.core.$strip>>;
|
|
48436
|
+
total_funding_amount_in_usd: z$1.ZodDefault<z$1.ZodObject<{
|
|
48437
|
+
from: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
48438
|
+
to: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
48439
|
+
}, z$1.core.$strip>>;
|
|
48440
|
+
investors: z$1.ZodDefault<z$1.ZodObject<{
|
|
48441
|
+
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
48442
|
+
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
48443
|
+
}, z$1.core.$strip>>;
|
|
48444
|
+
is_acquired: z$1.ZodDefault<z$1.ZodNullable<z$1.ZodBoolean>>;
|
|
48445
|
+
ipo_within: z$1.ZodDefault<z$1.ZodString> | z$1.ZodDefault<z$1.ZodDefault<z$1.ZodString>>;
|
|
48446
|
+
markets: z$1.ZodDefault<z$1.ZodObject<{
|
|
48447
|
+
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
48448
|
+
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
48449
|
+
}, z$1.core.$strip>>;
|
|
48450
|
+
follower_count_brackets: z$1.ZodDefault<z$1.ZodArray<z$1.ZodEnum<{
|
|
48451
|
+
[x: string]: string;
|
|
48452
|
+
}>>>;
|
|
48453
|
+
follower_growth_l6m_in_percent: z$1.ZodDefault<z$1.ZodObject<{
|
|
48454
|
+
from: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
48455
|
+
to: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
48456
|
+
}, z$1.core.$strip>>;
|
|
48457
|
+
technologies: z$1.ZodDefault<z$1.ZodObject<{
|
|
48458
|
+
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
48459
|
+
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
48460
|
+
}, z$1.core.$strip>>;
|
|
48461
|
+
competitor_domains: z$1.ZodArray<z$1.ZodString> | z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
48462
|
+
}, z$1.core.$strip>;
|
|
48463
|
+
}, z$1.core.$strip>;
|
|
48464
|
+
}, z$1.core.$strip>;
|
|
47882
48465
|
"people:profiles:amplemarket@1": z$1.ZodObject<{
|
|
47883
48466
|
search_id: z$1.ZodLiteral<"people:profiles:amplemarket@1">;
|
|
47884
48467
|
connector: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
|
|
@@ -47999,7 +48582,7 @@ declare const searchPayloadSchemaCatalog: {
|
|
|
47999
48582
|
}, z$1.core.$strip>>;
|
|
48000
48583
|
}, z$1.core.$strip>>;
|
|
48001
48584
|
filters: z$1.ZodObject<{
|
|
48002
|
-
|
|
48585
|
+
person_name: z$1.ZodDefault<z$1.ZodCoercedString<unknown>>;
|
|
48003
48586
|
current_locations: z$1.ZodDefault<z$1.ZodObject<{
|
|
48004
48587
|
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
48005
48588
|
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
@@ -48038,10 +48621,7 @@ declare const searchPayloadSchemaCatalog: {
|
|
|
48038
48621
|
}, z$1.core.$strip>>;
|
|
48039
48622
|
current_employer_investors: z$1.ZodArray<z$1.ZodString> | z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
48040
48623
|
current_employer_open_position_titles: z$1.ZodArray<z$1.ZodString> | z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
48041
|
-
school_names: z$1.ZodDefault<z$1.
|
|
48042
|
-
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
48043
|
-
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
48044
|
-
}, z$1.core.$strip>>;
|
|
48624
|
+
school_names: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
48045
48625
|
}, z$1.core.$strip>;
|
|
48046
48626
|
}, z$1.core.$strip>;
|
|
48047
48627
|
}, z$1.core.$strip>;
|
|
@@ -49994,6 +50574,128 @@ declare const SearchRequestSchema: z$1.ZodObject<{
|
|
|
49994
50574
|
}, z$1.core.$strip>>;
|
|
49995
50575
|
}, z$1.core.$strip>;
|
|
49996
50576
|
}, z$1.core.$strip>;
|
|
50577
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
50578
|
+
search_id: z$1.ZodLiteral<"companies:profiles:crustdata@3">;
|
|
50579
|
+
connector: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
|
|
50580
|
+
strategy: z$1.ZodDefault<z$1.ZodEnum<{
|
|
50581
|
+
first: "first";
|
|
50582
|
+
}>>;
|
|
50583
|
+
connections: z$1.ZodArray<z$1.ZodObject<{
|
|
50584
|
+
type: z$1.ZodLiteral<"vault">;
|
|
50585
|
+
connection: z$1.ZodString;
|
|
50586
|
+
}, z$1.core.$strip>>;
|
|
50587
|
+
}, z$1.core.$strip>>>;
|
|
50588
|
+
config: z$1.ZodObject<{
|
|
50589
|
+
limit: z$1.ZodDefault<z$1.ZodPipe<z$1.ZodUnknown, z$1.ZodCoercedNumber<unknown>>>;
|
|
50590
|
+
cursor: z$1.ZodNullable<z$1.ZodCoercedString<unknown>>;
|
|
50591
|
+
output_fields: z$1.ZodOptional<z$1.ZodObject<{
|
|
50592
|
+
company_name: z$1.ZodDefault<z$1.ZodObject<{
|
|
50593
|
+
alias: z$1.ZodDefault<z$1.ZodString>;
|
|
50594
|
+
enabled: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
50595
|
+
}, z$1.core.$strip>>;
|
|
50596
|
+
company_domain: z$1.ZodDefault<z$1.ZodObject<{
|
|
50597
|
+
alias: z$1.ZodDefault<z$1.ZodString>;
|
|
50598
|
+
enabled: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
50599
|
+
}, z$1.core.$strip>>;
|
|
50600
|
+
company_profile_url: z$1.ZodDefault<z$1.ZodObject<{
|
|
50601
|
+
alias: z$1.ZodDefault<z$1.ZodString>;
|
|
50602
|
+
enabled: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
50603
|
+
}, z$1.core.$strip>>;
|
|
50604
|
+
crustdata_company_match_v2: z$1.ZodDefault<z$1.ZodObject<{
|
|
50605
|
+
alias: z$1.ZodDefault<z$1.ZodString>;
|
|
50606
|
+
enabled: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
50607
|
+
}, z$1.core.$strip>>;
|
|
50608
|
+
}, z$1.core.$strip>>;
|
|
50609
|
+
filters: z$1.ZodObject<{
|
|
50610
|
+
company_names: z$1.ZodDefault<z$1.ZodObject<{
|
|
50611
|
+
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
50612
|
+
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
50613
|
+
}, z$1.core.$strip>>;
|
|
50614
|
+
company_domains: z$1.ZodDefault<z$1.ZodObject<{
|
|
50615
|
+
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
50616
|
+
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
50617
|
+
}, z$1.core.$strip>>;
|
|
50618
|
+
company_profile_urls: z$1.ZodDefault<z$1.ZodObject<{
|
|
50619
|
+
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
50620
|
+
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
50621
|
+
}, z$1.core.$strip>>;
|
|
50622
|
+
company_types: z$1.ZodDefault<z$1.ZodArray<z$1.ZodEnum<{
|
|
50623
|
+
[x: string]: string;
|
|
50624
|
+
}>>>;
|
|
50625
|
+
year_founded: z$1.ZodDefault<z$1.ZodObject<{
|
|
50626
|
+
from: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
50627
|
+
to: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
50628
|
+
}, z$1.core.$strip>>;
|
|
50629
|
+
hq_locations: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
50630
|
+
hq_countries: z$1.ZodDefault<z$1.ZodObject<{
|
|
50631
|
+
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
50632
|
+
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
50633
|
+
}, z$1.core.$strip>>;
|
|
50634
|
+
industries: z$1.ZodDefault<z$1.ZodObject<{
|
|
50635
|
+
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
50636
|
+
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
50637
|
+
}, z$1.core.$strip>>;
|
|
50638
|
+
categories: z$1.ZodDefault<z$1.ZodObject<{
|
|
50639
|
+
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
50640
|
+
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
50641
|
+
}, z$1.core.$strip>>;
|
|
50642
|
+
specialities_keywords: z$1.ZodDefault<z$1.ZodObject<{
|
|
50643
|
+
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
50644
|
+
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
50645
|
+
}, z$1.core.$strip>>;
|
|
50646
|
+
headcount_brackets: z$1.ZodDefault<z$1.ZodArray<z$1.ZodEnum<{
|
|
50647
|
+
[x: string]: string;
|
|
50648
|
+
}>>>;
|
|
50649
|
+
engineering_headcount_brackets: z$1.ZodDefault<z$1.ZodArray<z$1.ZodEnum<{
|
|
50650
|
+
[x: string]: string;
|
|
50651
|
+
}>>>;
|
|
50652
|
+
sales_headcount_brackets: z$1.ZodDefault<z$1.ZodArray<z$1.ZodEnum<{
|
|
50653
|
+
[x: string]: string;
|
|
50654
|
+
}>>>;
|
|
50655
|
+
headcount_growth_l6m_in_percent: z$1.ZodDefault<z$1.ZodObject<{
|
|
50656
|
+
from: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
50657
|
+
to: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
50658
|
+
}, z$1.core.$strip>>;
|
|
50659
|
+
revenue_in_usd: z$1.ZodDefault<z$1.ZodObject<{
|
|
50660
|
+
from: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
50661
|
+
to: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
50662
|
+
}, z$1.core.$strip>>;
|
|
50663
|
+
last_funding_round_types: z$1.ZodDefault<z$1.ZodArray<z$1.ZodEnum<{
|
|
50664
|
+
[x: string]: string;
|
|
50665
|
+
}>>>;
|
|
50666
|
+
last_funding_within: z$1.ZodDefault<z$1.ZodString> | z$1.ZodDefault<z$1.ZodDefault<z$1.ZodString>>;
|
|
50667
|
+
last_funding_amount_in_usd: z$1.ZodDefault<z$1.ZodObject<{
|
|
50668
|
+
from: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
50669
|
+
to: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
50670
|
+
}, z$1.core.$strip>>;
|
|
50671
|
+
total_funding_amount_in_usd: z$1.ZodDefault<z$1.ZodObject<{
|
|
50672
|
+
from: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
50673
|
+
to: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
50674
|
+
}, z$1.core.$strip>>;
|
|
50675
|
+
investors: z$1.ZodDefault<z$1.ZodObject<{
|
|
50676
|
+
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
50677
|
+
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
50678
|
+
}, z$1.core.$strip>>;
|
|
50679
|
+
is_acquired: z$1.ZodDefault<z$1.ZodNullable<z$1.ZodBoolean>>;
|
|
50680
|
+
ipo_within: z$1.ZodDefault<z$1.ZodString> | z$1.ZodDefault<z$1.ZodDefault<z$1.ZodString>>;
|
|
50681
|
+
markets: z$1.ZodDefault<z$1.ZodObject<{
|
|
50682
|
+
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
50683
|
+
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
50684
|
+
}, z$1.core.$strip>>;
|
|
50685
|
+
follower_count_brackets: z$1.ZodDefault<z$1.ZodArray<z$1.ZodEnum<{
|
|
50686
|
+
[x: string]: string;
|
|
50687
|
+
}>>>;
|
|
50688
|
+
follower_growth_l6m_in_percent: z$1.ZodDefault<z$1.ZodObject<{
|
|
50689
|
+
from: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
50690
|
+
to: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
50691
|
+
}, z$1.core.$strip>>;
|
|
50692
|
+
technologies: z$1.ZodDefault<z$1.ZodObject<{
|
|
50693
|
+
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
50694
|
+
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
50695
|
+
}, z$1.core.$strip>>;
|
|
50696
|
+
competitor_domains: z$1.ZodArray<z$1.ZodString> | z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
50697
|
+
}, z$1.core.$strip>;
|
|
50698
|
+
}, z$1.core.$strip>;
|
|
49997
50699
|
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
49998
50700
|
search_id: z$1.ZodLiteral<"companies:profiles:amplemarket@1">;
|
|
49999
50701
|
connector: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
|
|
@@ -50696,7 +51398,7 @@ declare const SearchRequestSchema: z$1.ZodObject<{
|
|
|
50696
51398
|
}, z$1.core.$strip>>;
|
|
50697
51399
|
}, z$1.core.$strip>>;
|
|
50698
51400
|
filters: z$1.ZodObject<{
|
|
50699
|
-
|
|
51401
|
+
person_name: z$1.ZodDefault<z$1.ZodCoercedString<unknown>>;
|
|
50700
51402
|
current_locations: z$1.ZodDefault<z$1.ZodObject<{
|
|
50701
51403
|
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
50702
51404
|
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
@@ -50735,10 +51437,7 @@ declare const SearchRequestSchema: z$1.ZodObject<{
|
|
|
50735
51437
|
}, z$1.core.$strip>>;
|
|
50736
51438
|
current_employer_investors: z$1.ZodArray<z$1.ZodString> | z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
50737
51439
|
current_employer_open_position_titles: z$1.ZodArray<z$1.ZodString> | z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
50738
|
-
school_names: z$1.ZodDefault<z$1.
|
|
50739
|
-
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
50740
|
-
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
50741
|
-
}, z$1.core.$strip>>;
|
|
51440
|
+
school_names: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
50742
51441
|
}, z$1.core.$strip>;
|
|
50743
51442
|
}, z$1.core.$strip>;
|
|
50744
51443
|
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
@@ -53552,6 +54251,128 @@ declare function getSearchPayloadSchema(seachId: SearchId): z$1.ZodObject<{
|
|
|
53552
54251
|
}, z$1.core.$strip>>;
|
|
53553
54252
|
}, z$1.core.$strip>;
|
|
53554
54253
|
}, z$1.core.$strip>;
|
|
54254
|
+
}, z$1.core.$strip> | z$1.ZodObject<{
|
|
54255
|
+
search_id: z$1.ZodLiteral<"companies:profiles:crustdata@3">;
|
|
54256
|
+
connector: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
|
|
54257
|
+
strategy: z$1.ZodDefault<z$1.ZodEnum<{
|
|
54258
|
+
first: "first";
|
|
54259
|
+
}>>;
|
|
54260
|
+
connections: z$1.ZodArray<z$1.ZodObject<{
|
|
54261
|
+
type: z$1.ZodLiteral<"vault">;
|
|
54262
|
+
connection: z$1.ZodString;
|
|
54263
|
+
}, z$1.core.$strip>>;
|
|
54264
|
+
}, z$1.core.$strip>>>;
|
|
54265
|
+
config: z$1.ZodObject<{
|
|
54266
|
+
limit: z$1.ZodDefault<z$1.ZodPipe<z$1.ZodUnknown, z$1.ZodCoercedNumber<unknown>>>;
|
|
54267
|
+
cursor: z$1.ZodNullable<z$1.ZodCoercedString<unknown>>;
|
|
54268
|
+
output_fields: z$1.ZodOptional<z$1.ZodObject<{
|
|
54269
|
+
company_name: z$1.ZodDefault<z$1.ZodObject<{
|
|
54270
|
+
alias: z$1.ZodDefault<z$1.ZodString>;
|
|
54271
|
+
enabled: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
54272
|
+
}, z$1.core.$strip>>;
|
|
54273
|
+
company_domain: z$1.ZodDefault<z$1.ZodObject<{
|
|
54274
|
+
alias: z$1.ZodDefault<z$1.ZodString>;
|
|
54275
|
+
enabled: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
54276
|
+
}, z$1.core.$strip>>;
|
|
54277
|
+
company_profile_url: z$1.ZodDefault<z$1.ZodObject<{
|
|
54278
|
+
alias: z$1.ZodDefault<z$1.ZodString>;
|
|
54279
|
+
enabled: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
54280
|
+
}, z$1.core.$strip>>;
|
|
54281
|
+
crustdata_company_match_v2: z$1.ZodDefault<z$1.ZodObject<{
|
|
54282
|
+
alias: z$1.ZodDefault<z$1.ZodString>;
|
|
54283
|
+
enabled: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
54284
|
+
}, z$1.core.$strip>>;
|
|
54285
|
+
}, z$1.core.$strip>>;
|
|
54286
|
+
filters: z$1.ZodObject<{
|
|
54287
|
+
company_names: z$1.ZodDefault<z$1.ZodObject<{
|
|
54288
|
+
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
54289
|
+
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
54290
|
+
}, z$1.core.$strip>>;
|
|
54291
|
+
company_domains: z$1.ZodDefault<z$1.ZodObject<{
|
|
54292
|
+
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
54293
|
+
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
54294
|
+
}, z$1.core.$strip>>;
|
|
54295
|
+
company_profile_urls: z$1.ZodDefault<z$1.ZodObject<{
|
|
54296
|
+
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
54297
|
+
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
54298
|
+
}, z$1.core.$strip>>;
|
|
54299
|
+
company_types: z$1.ZodDefault<z$1.ZodArray<z$1.ZodEnum<{
|
|
54300
|
+
[x: string]: string;
|
|
54301
|
+
}>>>;
|
|
54302
|
+
year_founded: z$1.ZodDefault<z$1.ZodObject<{
|
|
54303
|
+
from: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
54304
|
+
to: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
54305
|
+
}, z$1.core.$strip>>;
|
|
54306
|
+
hq_locations: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
54307
|
+
hq_countries: z$1.ZodDefault<z$1.ZodObject<{
|
|
54308
|
+
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
54309
|
+
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
54310
|
+
}, z$1.core.$strip>>;
|
|
54311
|
+
industries: z$1.ZodDefault<z$1.ZodObject<{
|
|
54312
|
+
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
54313
|
+
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
54314
|
+
}, z$1.core.$strip>>;
|
|
54315
|
+
categories: z$1.ZodDefault<z$1.ZodObject<{
|
|
54316
|
+
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
54317
|
+
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
54318
|
+
}, z$1.core.$strip>>;
|
|
54319
|
+
specialities_keywords: z$1.ZodDefault<z$1.ZodObject<{
|
|
54320
|
+
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
54321
|
+
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
54322
|
+
}, z$1.core.$strip>>;
|
|
54323
|
+
headcount_brackets: z$1.ZodDefault<z$1.ZodArray<z$1.ZodEnum<{
|
|
54324
|
+
[x: string]: string;
|
|
54325
|
+
}>>>;
|
|
54326
|
+
engineering_headcount_brackets: z$1.ZodDefault<z$1.ZodArray<z$1.ZodEnum<{
|
|
54327
|
+
[x: string]: string;
|
|
54328
|
+
}>>>;
|
|
54329
|
+
sales_headcount_brackets: z$1.ZodDefault<z$1.ZodArray<z$1.ZodEnum<{
|
|
54330
|
+
[x: string]: string;
|
|
54331
|
+
}>>>;
|
|
54332
|
+
headcount_growth_l6m_in_percent: z$1.ZodDefault<z$1.ZodObject<{
|
|
54333
|
+
from: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
54334
|
+
to: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
54335
|
+
}, z$1.core.$strip>>;
|
|
54336
|
+
revenue_in_usd: z$1.ZodDefault<z$1.ZodObject<{
|
|
54337
|
+
from: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
54338
|
+
to: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
54339
|
+
}, z$1.core.$strip>>;
|
|
54340
|
+
last_funding_round_types: z$1.ZodDefault<z$1.ZodArray<z$1.ZodEnum<{
|
|
54341
|
+
[x: string]: string;
|
|
54342
|
+
}>>>;
|
|
54343
|
+
last_funding_within: z$1.ZodDefault<z$1.ZodString> | z$1.ZodDefault<z$1.ZodDefault<z$1.ZodString>>;
|
|
54344
|
+
last_funding_amount_in_usd: z$1.ZodDefault<z$1.ZodObject<{
|
|
54345
|
+
from: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
54346
|
+
to: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
54347
|
+
}, z$1.core.$strip>>;
|
|
54348
|
+
total_funding_amount_in_usd: z$1.ZodDefault<z$1.ZodObject<{
|
|
54349
|
+
from: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
54350
|
+
to: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
54351
|
+
}, z$1.core.$strip>>;
|
|
54352
|
+
investors: z$1.ZodDefault<z$1.ZodObject<{
|
|
54353
|
+
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
54354
|
+
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
54355
|
+
}, z$1.core.$strip>>;
|
|
54356
|
+
is_acquired: z$1.ZodDefault<z$1.ZodNullable<z$1.ZodBoolean>>;
|
|
54357
|
+
ipo_within: z$1.ZodDefault<z$1.ZodString> | z$1.ZodDefault<z$1.ZodDefault<z$1.ZodString>>;
|
|
54358
|
+
markets: z$1.ZodDefault<z$1.ZodObject<{
|
|
54359
|
+
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
54360
|
+
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
54361
|
+
}, z$1.core.$strip>>;
|
|
54362
|
+
follower_count_brackets: z$1.ZodDefault<z$1.ZodArray<z$1.ZodEnum<{
|
|
54363
|
+
[x: string]: string;
|
|
54364
|
+
}>>>;
|
|
54365
|
+
follower_growth_l6m_in_percent: z$1.ZodDefault<z$1.ZodObject<{
|
|
54366
|
+
from: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
54367
|
+
to: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
54368
|
+
}, z$1.core.$strip>>;
|
|
54369
|
+
technologies: z$1.ZodDefault<z$1.ZodObject<{
|
|
54370
|
+
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
54371
|
+
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
54372
|
+
}, z$1.core.$strip>>;
|
|
54373
|
+
competitor_domains: z$1.ZodArray<z$1.ZodString> | z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
54374
|
+
}, z$1.core.$strip>;
|
|
54375
|
+
}, z$1.core.$strip>;
|
|
53555
54376
|
}, z$1.core.$strip> | z$1.ZodObject<{
|
|
53556
54377
|
search_id: z$1.ZodLiteral<"people:profiles:amplemarket@1">;
|
|
53557
54378
|
connector: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
|
|
@@ -53671,7 +54492,7 @@ declare function getSearchPayloadSchema(seachId: SearchId): z$1.ZodObject<{
|
|
|
53671
54492
|
}, z$1.core.$strip>>;
|
|
53672
54493
|
}, z$1.core.$strip>>;
|
|
53673
54494
|
filters: z$1.ZodObject<{
|
|
53674
|
-
|
|
54495
|
+
person_name: z$1.ZodDefault<z$1.ZodCoercedString<unknown>>;
|
|
53675
54496
|
current_locations: z$1.ZodDefault<z$1.ZodObject<{
|
|
53676
54497
|
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
53677
54498
|
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
@@ -53710,10 +54531,7 @@ declare function getSearchPayloadSchema(seachId: SearchId): z$1.ZodObject<{
|
|
|
53710
54531
|
}, z$1.core.$strip>>;
|
|
53711
54532
|
current_employer_investors: z$1.ZodArray<z$1.ZodString> | z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
53712
54533
|
current_employer_open_position_titles: z$1.ZodArray<z$1.ZodString> | z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
53713
|
-
school_names: z$1.ZodDefault<z$1.
|
|
53714
|
-
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
53715
|
-
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
53716
|
-
}, z$1.core.$strip>>;
|
|
54534
|
+
school_names: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
53717
54535
|
}, z$1.core.$strip>;
|
|
53718
54536
|
}, z$1.core.$strip>;
|
|
53719
54537
|
}, z$1.core.$strip> | z$1.ZodObject<{
|
|
@@ -55407,6 +56225,7 @@ declare const SearchResponseSchema: z$1.ZodObject<{
|
|
|
55407
56225
|
search_id: z$1.ZodEnum<{
|
|
55408
56226
|
"companies:profiles:crustdata@1": "companies:profiles:crustdata@1";
|
|
55409
56227
|
"companies:profiles:crustdata@2": "companies:profiles:crustdata@2";
|
|
56228
|
+
"companies:profiles:crustdata@3": "companies:profiles:crustdata@3";
|
|
55410
56229
|
"companies:profiles:amplemarket@1": "companies:profiles:amplemarket@1";
|
|
55411
56230
|
"companies:profiles:amplemarket@2": "companies:profiles:amplemarket@2";
|
|
55412
56231
|
"people:profiles:crustdata@1": "people:profiles:crustdata@1";
|
|
@@ -56000,6 +56819,128 @@ declare const SearchResponseSchema: z$1.ZodObject<{
|
|
|
56000
56819
|
}, z$1.core.$strip>>;
|
|
56001
56820
|
}, z$1.core.$strip>;
|
|
56002
56821
|
}, z$1.core.$strip>;
|
|
56822
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
56823
|
+
search_id: z$1.ZodLiteral<"companies:profiles:crustdata@3">;
|
|
56824
|
+
connector: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
|
|
56825
|
+
strategy: z$1.ZodDefault<z$1.ZodEnum<{
|
|
56826
|
+
first: "first";
|
|
56827
|
+
}>>;
|
|
56828
|
+
connections: z$1.ZodArray<z$1.ZodObject<{
|
|
56829
|
+
type: z$1.ZodLiteral<"vault">;
|
|
56830
|
+
connection: z$1.ZodString;
|
|
56831
|
+
}, z$1.core.$strip>>;
|
|
56832
|
+
}, z$1.core.$strip>>>;
|
|
56833
|
+
config: z$1.ZodObject<{
|
|
56834
|
+
limit: z$1.ZodDefault<z$1.ZodPipe<z$1.ZodUnknown, z$1.ZodCoercedNumber<unknown>>>;
|
|
56835
|
+
cursor: z$1.ZodNullable<z$1.ZodCoercedString<unknown>>;
|
|
56836
|
+
output_fields: z$1.ZodOptional<z$1.ZodObject<{
|
|
56837
|
+
company_name: z$1.ZodDefault<z$1.ZodObject<{
|
|
56838
|
+
alias: z$1.ZodDefault<z$1.ZodString>;
|
|
56839
|
+
enabled: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
56840
|
+
}, z$1.core.$strip>>;
|
|
56841
|
+
company_domain: z$1.ZodDefault<z$1.ZodObject<{
|
|
56842
|
+
alias: z$1.ZodDefault<z$1.ZodString>;
|
|
56843
|
+
enabled: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
56844
|
+
}, z$1.core.$strip>>;
|
|
56845
|
+
company_profile_url: z$1.ZodDefault<z$1.ZodObject<{
|
|
56846
|
+
alias: z$1.ZodDefault<z$1.ZodString>;
|
|
56847
|
+
enabled: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
56848
|
+
}, z$1.core.$strip>>;
|
|
56849
|
+
crustdata_company_match_v2: z$1.ZodDefault<z$1.ZodObject<{
|
|
56850
|
+
alias: z$1.ZodDefault<z$1.ZodString>;
|
|
56851
|
+
enabled: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
56852
|
+
}, z$1.core.$strip>>;
|
|
56853
|
+
}, z$1.core.$strip>>;
|
|
56854
|
+
filters: z$1.ZodObject<{
|
|
56855
|
+
company_names: z$1.ZodDefault<z$1.ZodObject<{
|
|
56856
|
+
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
56857
|
+
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
56858
|
+
}, z$1.core.$strip>>;
|
|
56859
|
+
company_domains: z$1.ZodDefault<z$1.ZodObject<{
|
|
56860
|
+
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
56861
|
+
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
56862
|
+
}, z$1.core.$strip>>;
|
|
56863
|
+
company_profile_urls: z$1.ZodDefault<z$1.ZodObject<{
|
|
56864
|
+
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
56865
|
+
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
56866
|
+
}, z$1.core.$strip>>;
|
|
56867
|
+
company_types: z$1.ZodDefault<z$1.ZodArray<z$1.ZodEnum<{
|
|
56868
|
+
[x: string]: string;
|
|
56869
|
+
}>>>;
|
|
56870
|
+
year_founded: z$1.ZodDefault<z$1.ZodObject<{
|
|
56871
|
+
from: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
56872
|
+
to: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
56873
|
+
}, z$1.core.$strip>>;
|
|
56874
|
+
hq_locations: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
56875
|
+
hq_countries: z$1.ZodDefault<z$1.ZodObject<{
|
|
56876
|
+
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
56877
|
+
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
56878
|
+
}, z$1.core.$strip>>;
|
|
56879
|
+
industries: z$1.ZodDefault<z$1.ZodObject<{
|
|
56880
|
+
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
56881
|
+
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
56882
|
+
}, z$1.core.$strip>>;
|
|
56883
|
+
categories: z$1.ZodDefault<z$1.ZodObject<{
|
|
56884
|
+
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
56885
|
+
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
56886
|
+
}, z$1.core.$strip>>;
|
|
56887
|
+
specialities_keywords: z$1.ZodDefault<z$1.ZodObject<{
|
|
56888
|
+
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
56889
|
+
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
56890
|
+
}, z$1.core.$strip>>;
|
|
56891
|
+
headcount_brackets: z$1.ZodDefault<z$1.ZodArray<z$1.ZodEnum<{
|
|
56892
|
+
[x: string]: string;
|
|
56893
|
+
}>>>;
|
|
56894
|
+
engineering_headcount_brackets: z$1.ZodDefault<z$1.ZodArray<z$1.ZodEnum<{
|
|
56895
|
+
[x: string]: string;
|
|
56896
|
+
}>>>;
|
|
56897
|
+
sales_headcount_brackets: z$1.ZodDefault<z$1.ZodArray<z$1.ZodEnum<{
|
|
56898
|
+
[x: string]: string;
|
|
56899
|
+
}>>>;
|
|
56900
|
+
headcount_growth_l6m_in_percent: z$1.ZodDefault<z$1.ZodObject<{
|
|
56901
|
+
from: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
56902
|
+
to: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
56903
|
+
}, z$1.core.$strip>>;
|
|
56904
|
+
revenue_in_usd: z$1.ZodDefault<z$1.ZodObject<{
|
|
56905
|
+
from: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
56906
|
+
to: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
56907
|
+
}, z$1.core.$strip>>;
|
|
56908
|
+
last_funding_round_types: z$1.ZodDefault<z$1.ZodArray<z$1.ZodEnum<{
|
|
56909
|
+
[x: string]: string;
|
|
56910
|
+
}>>>;
|
|
56911
|
+
last_funding_within: z$1.ZodDefault<z$1.ZodString> | z$1.ZodDefault<z$1.ZodDefault<z$1.ZodString>>;
|
|
56912
|
+
last_funding_amount_in_usd: z$1.ZodDefault<z$1.ZodObject<{
|
|
56913
|
+
from: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
56914
|
+
to: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
56915
|
+
}, z$1.core.$strip>>;
|
|
56916
|
+
total_funding_amount_in_usd: z$1.ZodDefault<z$1.ZodObject<{
|
|
56917
|
+
from: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
56918
|
+
to: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
56919
|
+
}, z$1.core.$strip>>;
|
|
56920
|
+
investors: z$1.ZodDefault<z$1.ZodObject<{
|
|
56921
|
+
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
56922
|
+
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
56923
|
+
}, z$1.core.$strip>>;
|
|
56924
|
+
is_acquired: z$1.ZodDefault<z$1.ZodNullable<z$1.ZodBoolean>>;
|
|
56925
|
+
ipo_within: z$1.ZodDefault<z$1.ZodString> | z$1.ZodDefault<z$1.ZodDefault<z$1.ZodString>>;
|
|
56926
|
+
markets: z$1.ZodDefault<z$1.ZodObject<{
|
|
56927
|
+
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
56928
|
+
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
56929
|
+
}, z$1.core.$strip>>;
|
|
56930
|
+
follower_count_brackets: z$1.ZodDefault<z$1.ZodArray<z$1.ZodEnum<{
|
|
56931
|
+
[x: string]: string;
|
|
56932
|
+
}>>>;
|
|
56933
|
+
follower_growth_l6m_in_percent: z$1.ZodDefault<z$1.ZodObject<{
|
|
56934
|
+
from: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
56935
|
+
to: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNumber>>;
|
|
56936
|
+
}, z$1.core.$strip>>;
|
|
56937
|
+
technologies: z$1.ZodDefault<z$1.ZodObject<{
|
|
56938
|
+
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
56939
|
+
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
56940
|
+
}, z$1.core.$strip>>;
|
|
56941
|
+
competitor_domains: z$1.ZodArray<z$1.ZodString> | z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
56942
|
+
}, z$1.core.$strip>;
|
|
56943
|
+
}, z$1.core.$strip>;
|
|
56003
56944
|
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
56004
56945
|
search_id: z$1.ZodLiteral<"companies:profiles:amplemarket@1">;
|
|
56005
56946
|
connector: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
|
|
@@ -56702,7 +57643,7 @@ declare const SearchResponseSchema: z$1.ZodObject<{
|
|
|
56702
57643
|
}, z$1.core.$strip>>;
|
|
56703
57644
|
}, z$1.core.$strip>>;
|
|
56704
57645
|
filters: z$1.ZodObject<{
|
|
56705
|
-
|
|
57646
|
+
person_name: z$1.ZodDefault<z$1.ZodCoercedString<unknown>>;
|
|
56706
57647
|
current_locations: z$1.ZodDefault<z$1.ZodObject<{
|
|
56707
57648
|
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
56708
57649
|
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
@@ -56741,10 +57682,7 @@ declare const SearchResponseSchema: z$1.ZodObject<{
|
|
|
56741
57682
|
}, z$1.core.$strip>>;
|
|
56742
57683
|
current_employer_investors: z$1.ZodArray<z$1.ZodString> | z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
56743
57684
|
current_employer_open_position_titles: z$1.ZodArray<z$1.ZodString> | z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
56744
|
-
school_names: z$1.ZodDefault<z$1.
|
|
56745
|
-
include: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
56746
|
-
exclude: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
56747
|
-
}, z$1.core.$strip>>;
|
|
57685
|
+
school_names: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
56748
57686
|
}, z$1.core.$strip>;
|
|
56749
57687
|
}, z$1.core.$strip>;
|
|
56750
57688
|
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
@@ -58290,6 +59228,7 @@ declare const SearchResponseSchema: z$1.ZodObject<{
|
|
|
58290
59228
|
example_value: z$1.ZodNullable<z$1.ZodAny>;
|
|
58291
59229
|
schema: z$1.ZodNullable<z$1.ZodAny>;
|
|
58292
59230
|
}, z$1.core.$strip>>>;
|
|
59231
|
+
order: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodNumber>>;
|
|
58293
59232
|
}, z$1.core.$strip>>>;
|
|
58294
59233
|
}, z$1.core.$strip>;
|
|
58295
59234
|
type SearchRequestType = z$1.infer<typeof SearchRequestSchema>;
|
|
@@ -58317,12 +59256,12 @@ declare function getSearchEntry(searchId: SearchId): SearchDef<any>;
|
|
|
58317
59256
|
declare function getInitialSearchTableData(category: SearchCategory | null): SearchCatalogTableData[];
|
|
58318
59257
|
declare function getDefaultSearchOutputFields(searchId: SearchId): string[];
|
|
58319
59258
|
declare function getSearchTableDataAggregates(initialTableData: SearchCatalogTableData[], category: SearchCategory | null): {
|
|
58320
|
-
searchIdsByOutputField: Record<string, ("companies:profiles:crustdata@1" | "companies:profiles:crustdata@2" | "companies:profiles:amplemarket@1" | "companies:profiles:amplemarket@2" | "people:profiles:crustdata@1" | "people:profiles:crustdata@2" | "people:profiles:crustdata@3" | "people:profiles:amplemarket@1" | "people:profiles:amplemarket@2" | "companies:entitysearch:parallel@1" | "people:entitysearch:parallel@1" | "people:eventguests:luma@1" | "events:googlecalendar@1" | "sheet:rows@1" | "bucket:entries@1" | "query:postgres@1" | "query:databricks@1" | "posts:content:crustdata@1" | "contacts:hubspot@1" | "companies:hubspot@1" | "deals:hubspot@1" | "owners:hubspot@1" | "contacts:salesforce@1" | "leads:salesforce@1" | "accounts:salesforce@1" | "opportunities:salesforce@1" | "users:salesforce@1" | "query:salesforce@1" | "people:attio@1" | "companies:attio@1" | "deals:attio@1" | "records:attio@1" | "entries:attio@1" | "query:attio@1" | "users:attio@1")[]>;
|
|
58321
|
-
searchIdsByTag: Record<string, ("companies:profiles:crustdata@1" | "companies:profiles:crustdata@2" | "companies:profiles:amplemarket@1" | "companies:profiles:amplemarket@2" | "people:profiles:crustdata@1" | "people:profiles:crustdata@2" | "people:profiles:crustdata@3" | "people:profiles:amplemarket@1" | "people:profiles:amplemarket@2" | "companies:entitysearch:parallel@1" | "people:entitysearch:parallel@1" | "people:eventguests:luma@1" | "events:googlecalendar@1" | "sheet:rows@1" | "bucket:entries@1" | "query:postgres@1" | "query:databricks@1" | "posts:content:crustdata@1" | "contacts:hubspot@1" | "companies:hubspot@1" | "deals:hubspot@1" | "owners:hubspot@1" | "contacts:salesforce@1" | "leads:salesforce@1" | "accounts:salesforce@1" | "opportunities:salesforce@1" | "users:salesforce@1" | "query:salesforce@1" | "people:attio@1" | "companies:attio@1" | "deals:attio@1" | "records:attio@1" | "entries:attio@1" | "query:attio@1" | "users:attio@1")[]>;
|
|
58322
|
-
searchIdsByProvider: Record<string, ("companies:profiles:crustdata@1" | "companies:profiles:crustdata@2" | "companies:profiles:amplemarket@1" | "companies:profiles:amplemarket@2" | "people:profiles:crustdata@1" | "people:profiles:crustdata@2" | "people:profiles:crustdata@3" | "people:profiles:amplemarket@1" | "people:profiles:amplemarket@2" | "companies:entitysearch:parallel@1" | "people:entitysearch:parallel@1" | "people:eventguests:luma@1" | "events:googlecalendar@1" | "sheet:rows@1" | "bucket:entries@1" | "query:postgres@1" | "query:databricks@1" | "posts:content:crustdata@1" | "contacts:hubspot@1" | "companies:hubspot@1" | "deals:hubspot@1" | "owners:hubspot@1" | "contacts:salesforce@1" | "leads:salesforce@1" | "accounts:salesforce@1" | "opportunities:salesforce@1" | "users:salesforce@1" | "query:salesforce@1" | "people:attio@1" | "companies:attio@1" | "deals:attio@1" | "records:attio@1" | "entries:attio@1" | "query:attio@1" | "users:attio@1")[]>;
|
|
58323
|
-
sortedTagEntries: [string, ("companies:profiles:crustdata@1" | "companies:profiles:crustdata@2" | "companies:profiles:amplemarket@1" | "companies:profiles:amplemarket@2" | "people:profiles:crustdata@1" | "people:profiles:crustdata@2" | "people:profiles:crustdata@3" | "people:profiles:amplemarket@1" | "people:profiles:amplemarket@2" | "companies:entitysearch:parallel@1" | "people:entitysearch:parallel@1" | "people:eventguests:luma@1" | "events:googlecalendar@1" | "sheet:rows@1" | "bucket:entries@1" | "query:postgres@1" | "query:databricks@1" | "posts:content:crustdata@1" | "contacts:hubspot@1" | "companies:hubspot@1" | "deals:hubspot@1" | "owners:hubspot@1" | "contacts:salesforce@1" | "leads:salesforce@1" | "accounts:salesforce@1" | "opportunities:salesforce@1" | "users:salesforce@1" | "query:salesforce@1" | "people:attio@1" | "companies:attio@1" | "deals:attio@1" | "records:attio@1" | "entries:attio@1" | "query:attio@1" | "users:attio@1")[]][];
|
|
58324
|
-
sortedOutputFieldEntries: [string, ("companies:profiles:crustdata@1" | "companies:profiles:crustdata@2" | "companies:profiles:amplemarket@1" | "companies:profiles:amplemarket@2" | "people:profiles:crustdata@1" | "people:profiles:crustdata@2" | "people:profiles:crustdata@3" | "people:profiles:amplemarket@1" | "people:profiles:amplemarket@2" | "companies:entitysearch:parallel@1" | "people:entitysearch:parallel@1" | "people:eventguests:luma@1" | "events:googlecalendar@1" | "sheet:rows@1" | "bucket:entries@1" | "query:postgres@1" | "query:databricks@1" | "posts:content:crustdata@1" | "contacts:hubspot@1" | "companies:hubspot@1" | "deals:hubspot@1" | "owners:hubspot@1" | "contacts:salesforce@1" | "leads:salesforce@1" | "accounts:salesforce@1" | "opportunities:salesforce@1" | "users:salesforce@1" | "query:salesforce@1" | "people:attio@1" | "companies:attio@1" | "deals:attio@1" | "records:attio@1" | "entries:attio@1" | "query:attio@1" | "users:attio@1")[]][];
|
|
58325
|
-
sortedProviderEntries: [string, ("companies:profiles:crustdata@1" | "companies:profiles:crustdata@2" | "companies:profiles:amplemarket@1" | "companies:profiles:amplemarket@2" | "people:profiles:crustdata@1" | "people:profiles:crustdata@2" | "people:profiles:crustdata@3" | "people:profiles:amplemarket@1" | "people:profiles:amplemarket@2" | "companies:entitysearch:parallel@1" | "people:entitysearch:parallel@1" | "people:eventguests:luma@1" | "events:googlecalendar@1" | "sheet:rows@1" | "bucket:entries@1" | "query:postgres@1" | "query:databricks@1" | "posts:content:crustdata@1" | "contacts:hubspot@1" | "companies:hubspot@1" | "deals:hubspot@1" | "owners:hubspot@1" | "contacts:salesforce@1" | "leads:salesforce@1" | "accounts:salesforce@1" | "opportunities:salesforce@1" | "users:salesforce@1" | "query:salesforce@1" | "people:attio@1" | "companies:attio@1" | "deals:attio@1" | "records:attio@1" | "entries:attio@1" | "query:attio@1" | "users:attio@1")[]][];
|
|
59259
|
+
searchIdsByOutputField: Record<string, ("companies:profiles:crustdata@1" | "companies:profiles:crustdata@2" | "companies:profiles:crustdata@3" | "companies:profiles:amplemarket@1" | "companies:profiles:amplemarket@2" | "people:profiles:crustdata@1" | "people:profiles:crustdata@2" | "people:profiles:crustdata@3" | "people:profiles:amplemarket@1" | "people:profiles:amplemarket@2" | "companies:entitysearch:parallel@1" | "people:entitysearch:parallel@1" | "people:eventguests:luma@1" | "events:googlecalendar@1" | "sheet:rows@1" | "bucket:entries@1" | "query:postgres@1" | "query:databricks@1" | "posts:content:crustdata@1" | "contacts:hubspot@1" | "companies:hubspot@1" | "deals:hubspot@1" | "owners:hubspot@1" | "contacts:salesforce@1" | "leads:salesforce@1" | "accounts:salesforce@1" | "opportunities:salesforce@1" | "users:salesforce@1" | "query:salesforce@1" | "people:attio@1" | "companies:attio@1" | "deals:attio@1" | "records:attio@1" | "entries:attio@1" | "query:attio@1" | "users:attio@1")[]>;
|
|
59260
|
+
searchIdsByTag: Record<string, ("companies:profiles:crustdata@1" | "companies:profiles:crustdata@2" | "companies:profiles:crustdata@3" | "companies:profiles:amplemarket@1" | "companies:profiles:amplemarket@2" | "people:profiles:crustdata@1" | "people:profiles:crustdata@2" | "people:profiles:crustdata@3" | "people:profiles:amplemarket@1" | "people:profiles:amplemarket@2" | "companies:entitysearch:parallel@1" | "people:entitysearch:parallel@1" | "people:eventguests:luma@1" | "events:googlecalendar@1" | "sheet:rows@1" | "bucket:entries@1" | "query:postgres@1" | "query:databricks@1" | "posts:content:crustdata@1" | "contacts:hubspot@1" | "companies:hubspot@1" | "deals:hubspot@1" | "owners:hubspot@1" | "contacts:salesforce@1" | "leads:salesforce@1" | "accounts:salesforce@1" | "opportunities:salesforce@1" | "users:salesforce@1" | "query:salesforce@1" | "people:attio@1" | "companies:attio@1" | "deals:attio@1" | "records:attio@1" | "entries:attio@1" | "query:attio@1" | "users:attio@1")[]>;
|
|
59261
|
+
searchIdsByProvider: Record<string, ("companies:profiles:crustdata@1" | "companies:profiles:crustdata@2" | "companies:profiles:crustdata@3" | "companies:profiles:amplemarket@1" | "companies:profiles:amplemarket@2" | "people:profiles:crustdata@1" | "people:profiles:crustdata@2" | "people:profiles:crustdata@3" | "people:profiles:amplemarket@1" | "people:profiles:amplemarket@2" | "companies:entitysearch:parallel@1" | "people:entitysearch:parallel@1" | "people:eventguests:luma@1" | "events:googlecalendar@1" | "sheet:rows@1" | "bucket:entries@1" | "query:postgres@1" | "query:databricks@1" | "posts:content:crustdata@1" | "contacts:hubspot@1" | "companies:hubspot@1" | "deals:hubspot@1" | "owners:hubspot@1" | "contacts:salesforce@1" | "leads:salesforce@1" | "accounts:salesforce@1" | "opportunities:salesforce@1" | "users:salesforce@1" | "query:salesforce@1" | "people:attio@1" | "companies:attio@1" | "deals:attio@1" | "records:attio@1" | "entries:attio@1" | "query:attio@1" | "users:attio@1")[]>;
|
|
59262
|
+
sortedTagEntries: [string, ("companies:profiles:crustdata@1" | "companies:profiles:crustdata@2" | "companies:profiles:crustdata@3" | "companies:profiles:amplemarket@1" | "companies:profiles:amplemarket@2" | "people:profiles:crustdata@1" | "people:profiles:crustdata@2" | "people:profiles:crustdata@3" | "people:profiles:amplemarket@1" | "people:profiles:amplemarket@2" | "companies:entitysearch:parallel@1" | "people:entitysearch:parallel@1" | "people:eventguests:luma@1" | "events:googlecalendar@1" | "sheet:rows@1" | "bucket:entries@1" | "query:postgres@1" | "query:databricks@1" | "posts:content:crustdata@1" | "contacts:hubspot@1" | "companies:hubspot@1" | "deals:hubspot@1" | "owners:hubspot@1" | "contacts:salesforce@1" | "leads:salesforce@1" | "accounts:salesforce@1" | "opportunities:salesforce@1" | "users:salesforce@1" | "query:salesforce@1" | "people:attio@1" | "companies:attio@1" | "deals:attio@1" | "records:attio@1" | "entries:attio@1" | "query:attio@1" | "users:attio@1")[]][];
|
|
59263
|
+
sortedOutputFieldEntries: [string, ("companies:profiles:crustdata@1" | "companies:profiles:crustdata@2" | "companies:profiles:crustdata@3" | "companies:profiles:amplemarket@1" | "companies:profiles:amplemarket@2" | "people:profiles:crustdata@1" | "people:profiles:crustdata@2" | "people:profiles:crustdata@3" | "people:profiles:amplemarket@1" | "people:profiles:amplemarket@2" | "companies:entitysearch:parallel@1" | "people:entitysearch:parallel@1" | "people:eventguests:luma@1" | "events:googlecalendar@1" | "sheet:rows@1" | "bucket:entries@1" | "query:postgres@1" | "query:databricks@1" | "posts:content:crustdata@1" | "contacts:hubspot@1" | "companies:hubspot@1" | "deals:hubspot@1" | "owners:hubspot@1" | "contacts:salesforce@1" | "leads:salesforce@1" | "accounts:salesforce@1" | "opportunities:salesforce@1" | "users:salesforce@1" | "query:salesforce@1" | "people:attio@1" | "companies:attio@1" | "deals:attio@1" | "records:attio@1" | "entries:attio@1" | "query:attio@1" | "users:attio@1")[]][];
|
|
59264
|
+
sortedProviderEntries: [string, ("companies:profiles:crustdata@1" | "companies:profiles:crustdata@2" | "companies:profiles:crustdata@3" | "companies:profiles:amplemarket@1" | "companies:profiles:amplemarket@2" | "people:profiles:crustdata@1" | "people:profiles:crustdata@2" | "people:profiles:crustdata@3" | "people:profiles:amplemarket@1" | "people:profiles:amplemarket@2" | "companies:entitysearch:parallel@1" | "people:entitysearch:parallel@1" | "people:eventguests:luma@1" | "events:googlecalendar@1" | "sheet:rows@1" | "bucket:entries@1" | "query:postgres@1" | "query:databricks@1" | "posts:content:crustdata@1" | "contacts:hubspot@1" | "companies:hubspot@1" | "deals:hubspot@1" | "owners:hubspot@1" | "contacts:salesforce@1" | "leads:salesforce@1" | "accounts:salesforce@1" | "opportunities:salesforce@1" | "users:salesforce@1" | "query:salesforce@1" | "people:attio@1" | "companies:attio@1" | "deals:attio@1" | "records:attio@1" | "entries:attio@1" | "query:attio@1" | "users:attio@1")[]][];
|
|
58326
59265
|
searchEntriesByBaseSearch: Record<string, SearchMetaEntryWithId[]>;
|
|
58327
59266
|
};
|
|
58328
59267
|
declare function getStartingCostPerSearchProvider(search_id: SearchId): {
|
|
@@ -62868,7 +63807,7 @@ declare function getStartingCostPerSearchesProvider(search_id: SearchesId): {
|
|
|
62868
63807
|
* HTTP endpoints and agent tools (e.g. `create_sheet`, `name_workspace`,
|
|
62869
63808
|
* `PATCH /v1/sheets/{id}`) and must NOT be added here.
|
|
62870
63809
|
*/
|
|
62871
|
-
declare const SHEET_EFFECT_IDS: readonly ["rows:dedupe@1", "rows:duplicate@1", "rows:enrich@1", "rows:adopt@1", "rows:add@1", "rows:import@1", "row:update@1", "rows:remove@1", "rows:removeempty@1", "rows:copy_to_sheet@1", "rows:filter:prompt@1", "pipe:add@1", "pipe:update@1", "pipe:remove@1", "fields:remove@1", "fields:patch@1", "fields:duplicate@1", "fields:add@1", "fields:deletesparse:input@1", "env:change@1", "timetravel:create@1", "timetravel:travel@1", "sheet:export@1", "search:run@1", "sheet:reset@1"];
|
|
63810
|
+
declare const SHEET_EFFECT_IDS: readonly ["rows:dedupe@1", "rows:duplicate@1", "rows:enrich@1", "rows:adopt@1", "rows:add@1", "rows:import@1", "row:update@1", "rows:remove@1", "rows:removeempty@1", "rows:copy_to_sheet@1", "rows:filter:prompt@1", "pipe:add@1", "pipe:update@1", "pipe:remove@1", "fields:remove@1", "fields:patch@1", "fields:duplicate@1", "fields:add@1", "fields:order:reset@1", "fields:deletesparse:input@1", "env:change@1", "timetravel:create@1", "timetravel:travel@1", "sheet:export@1", "search:run@1", "sheet:reset@1"];
|
|
62872
63811
|
declare const SheetEffectIdSchema: z.ZodEnum<{
|
|
62873
63812
|
"rows:dedupe@1": "rows:dedupe@1";
|
|
62874
63813
|
"rows:duplicate@1": "rows:duplicate@1";
|
|
@@ -62888,6 +63827,7 @@ declare const SheetEffectIdSchema: z.ZodEnum<{
|
|
|
62888
63827
|
"fields:patch@1": "fields:patch@1";
|
|
62889
63828
|
"fields:duplicate@1": "fields:duplicate@1";
|
|
62890
63829
|
"fields:add@1": "fields:add@1";
|
|
63830
|
+
"fields:order:reset@1": "fields:order:reset@1";
|
|
62891
63831
|
"fields:deletesparse:input@1": "fields:deletesparse:input@1";
|
|
62892
63832
|
"env:change@1": "env:change@1";
|
|
62893
63833
|
"timetravel:create@1": "timetravel:create@1";
|
|
@@ -63187,6 +64127,11 @@ declare const FieldsAddPayloadSchema1: z.ZodObject<{
|
|
|
63187
64127
|
percent: "percent";
|
|
63188
64128
|
}>>>;
|
|
63189
64129
|
label: z.ZodOptional<z.ZodString>;
|
|
64130
|
+
insert_relative_to: z.ZodOptional<z.ZodString>;
|
|
64131
|
+
insert_position: z.ZodOptional<z.ZodEnum<{
|
|
64132
|
+
before: "before";
|
|
64133
|
+
after: "after";
|
|
64134
|
+
}>>;
|
|
63190
64135
|
}, z.core.$strip>;
|
|
63191
64136
|
}, z.core.$strip>;
|
|
63192
64137
|
//#endregion
|
|
@@ -63234,6 +64179,21 @@ declare const FieldsDuplicatePayloadSchema1: z.ZodObject<{
|
|
|
63234
64179
|
}, z.core.$strip>;
|
|
63235
64180
|
}, z.core.$strip>;
|
|
63236
64181
|
//#endregion
|
|
64182
|
+
//#region src/sheet-effects/catalog/entries/fields-order-reset-1.d.ts
|
|
64183
|
+
declare const FieldsOrderResetPayloadSchema1: z.ZodObject<{
|
|
64184
|
+
effect_id: z.ZodLiteral<"fields:order:reset@1">;
|
|
64185
|
+
connector: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
64186
|
+
strategy: z.ZodDefault<z.ZodEnum<{
|
|
64187
|
+
first: "first";
|
|
64188
|
+
}>>;
|
|
64189
|
+
connections: z.ZodArray<z.ZodObject<{
|
|
64190
|
+
type: z.ZodLiteral<"vault">;
|
|
64191
|
+
connection: z.ZodString;
|
|
64192
|
+
}, z.core.$strip>>;
|
|
64193
|
+
}, z.core.$strip>>>;
|
|
64194
|
+
config: z.ZodObject<{}, z.core.$strip>;
|
|
64195
|
+
}, z.core.$strip>;
|
|
64196
|
+
//#endregion
|
|
63237
64197
|
//#region src/sheet-effects/catalog/entries/fields-patch-1.d.ts
|
|
63238
64198
|
declare const FieldsPatchPayloadSchema1: z.ZodObject<{
|
|
63239
64199
|
effect_id: z.ZodLiteral<"fields:patch@1">;
|
|
@@ -101024,6 +101984,7 @@ declare const RecordActionDetailSchema: z.ZodObject<{
|
|
|
101024
101984
|
"fields:patch@1": "fields:patch@1";
|
|
101025
101985
|
"fields:duplicate@1": "fields:duplicate@1";
|
|
101026
101986
|
"fields:add@1": "fields:add@1";
|
|
101987
|
+
"fields:order:reset@1": "fields:order:reset@1";
|
|
101027
101988
|
"fields:deletesparse:input@1": "fields:deletesparse:input@1";
|
|
101028
101989
|
"env:change@1": "env:change@1";
|
|
101029
101990
|
"timetravel:create@1": "timetravel:create@1";
|
|
@@ -101075,6 +102036,7 @@ declare const UpdatedActionDetailSchema: z.ZodObject<{
|
|
|
101075
102036
|
"fields:patch@1": "fields:patch@1";
|
|
101076
102037
|
"fields:duplicate@1": "fields:duplicate@1";
|
|
101077
102038
|
"fields:add@1": "fields:add@1";
|
|
102039
|
+
"fields:order:reset@1": "fields:order:reset@1";
|
|
101078
102040
|
"fields:deletesparse:input@1": "fields:deletesparse:input@1";
|
|
101079
102041
|
"env:change@1": "env:change@1";
|
|
101080
102042
|
"timetravel:create@1": "timetravel:create@1";
|
|
@@ -101117,6 +102079,7 @@ declare const RecordDiffEntrySchema: z.ZodObject<{
|
|
|
101117
102079
|
"fields:patch@1": "fields:patch@1";
|
|
101118
102080
|
"fields:duplicate@1": "fields:duplicate@1";
|
|
101119
102081
|
"fields:add@1": "fields:add@1";
|
|
102082
|
+
"fields:order:reset@1": "fields:order:reset@1";
|
|
101120
102083
|
"fields:deletesparse:input@1": "fields:deletesparse:input@1";
|
|
101121
102084
|
"env:change@1": "env:change@1";
|
|
101122
102085
|
"timetravel:create@1": "timetravel:create@1";
|
|
@@ -101154,6 +102117,7 @@ declare const RecordDiffEntrySchema: z.ZodObject<{
|
|
|
101154
102117
|
"fields:patch@1": "fields:patch@1";
|
|
101155
102118
|
"fields:duplicate@1": "fields:duplicate@1";
|
|
101156
102119
|
"fields:add@1": "fields:add@1";
|
|
102120
|
+
"fields:order:reset@1": "fields:order:reset@1";
|
|
101157
102121
|
"fields:deletesparse:input@1": "fields:deletesparse:input@1";
|
|
101158
102122
|
"env:change@1": "env:change@1";
|
|
101159
102123
|
"timetravel:create@1": "timetravel:create@1";
|
|
@@ -101194,6 +102158,7 @@ declare const RecordDiffEntrySchema: z.ZodObject<{
|
|
|
101194
102158
|
"fields:patch@1": "fields:patch@1";
|
|
101195
102159
|
"fields:duplicate@1": "fields:duplicate@1";
|
|
101196
102160
|
"fields:add@1": "fields:add@1";
|
|
102161
|
+
"fields:order:reset@1": "fields:order:reset@1";
|
|
101197
102162
|
"fields:deletesparse:input@1": "fields:deletesparse:input@1";
|
|
101198
102163
|
"env:change@1": "env:change@1";
|
|
101199
102164
|
"timetravel:create@1": "timetravel:create@1";
|
|
@@ -101240,6 +102205,7 @@ declare const SheetEffectsDiffSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
101240
102205
|
"fields:patch@1": "fields:patch@1";
|
|
101241
102206
|
"fields:duplicate@1": "fields:duplicate@1";
|
|
101242
102207
|
"fields:add@1": "fields:add@1";
|
|
102208
|
+
"fields:order:reset@1": "fields:order:reset@1";
|
|
101243
102209
|
"fields:deletesparse:input@1": "fields:deletesparse:input@1";
|
|
101244
102210
|
"env:change@1": "env:change@1";
|
|
101245
102211
|
"timetravel:create@1": "timetravel:create@1";
|
|
@@ -101277,6 +102243,7 @@ declare const SheetEffectsDiffSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
101277
102243
|
"fields:patch@1": "fields:patch@1";
|
|
101278
102244
|
"fields:duplicate@1": "fields:duplicate@1";
|
|
101279
102245
|
"fields:add@1": "fields:add@1";
|
|
102246
|
+
"fields:order:reset@1": "fields:order:reset@1";
|
|
101280
102247
|
"fields:deletesparse:input@1": "fields:deletesparse:input@1";
|
|
101281
102248
|
"env:change@1": "env:change@1";
|
|
101282
102249
|
"timetravel:create@1": "timetravel:create@1";
|
|
@@ -101317,6 +102284,7 @@ declare const SheetEffectsDiffSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
101317
102284
|
"fields:patch@1": "fields:patch@1";
|
|
101318
102285
|
"fields:duplicate@1": "fields:duplicate@1";
|
|
101319
102286
|
"fields:add@1": "fields:add@1";
|
|
102287
|
+
"fields:order:reset@1": "fields:order:reset@1";
|
|
101320
102288
|
"fields:deletesparse:input@1": "fields:deletesparse:input@1";
|
|
101321
102289
|
"env:change@1": "env:change@1";
|
|
101322
102290
|
"timetravel:create@1": "timetravel:create@1";
|
|
@@ -101358,6 +102326,7 @@ declare const SheetEffectStepSummarySchema: z.ZodObject<{
|
|
|
101358
102326
|
"fields:patch@1": "fields:patch@1";
|
|
101359
102327
|
"fields:duplicate@1": "fields:duplicate@1";
|
|
101360
102328
|
"fields:add@1": "fields:add@1";
|
|
102329
|
+
"fields:order:reset@1": "fields:order:reset@1";
|
|
101361
102330
|
"fields:deletesparse:input@1": "fields:deletesparse:input@1";
|
|
101362
102331
|
"env:change@1": "env:change@1";
|
|
101363
102332
|
"timetravel:create@1": "timetravel:create@1";
|
|
@@ -101438,6 +102407,7 @@ type SheetEffectPayloadSchemas = {
|
|
|
101438
102407
|
"fields:patch@1": typeof FieldsPatchPayloadSchema1;
|
|
101439
102408
|
"fields:duplicate@1": typeof FieldsDuplicatePayloadSchema1;
|
|
101440
102409
|
"fields:add@1": typeof FieldsAddPayloadSchema1;
|
|
102410
|
+
"fields:order:reset@1": typeof FieldsOrderResetPayloadSchema1;
|
|
101441
102411
|
"fields:deletesparse:input@1": typeof FieldsDeletesparseInputPayloadSchema1;
|
|
101442
102412
|
"env:change@1": typeof EnvChangePayloadSchema1;
|
|
101443
102413
|
"timetravel:create@1": typeof TimetravelCreatePayloadSchema1;
|
|
@@ -101520,6 +102490,7 @@ declare const EffectsResponseSchema: z$1.ZodObject<{
|
|
|
101520
102490
|
"fields:patch@1": "fields:patch@1";
|
|
101521
102491
|
"fields:duplicate@1": "fields:duplicate@1";
|
|
101522
102492
|
"fields:add@1": "fields:add@1";
|
|
102493
|
+
"fields:order:reset@1": "fields:order:reset@1";
|
|
101523
102494
|
"fields:deletesparse:input@1": "fields:deletesparse:input@1";
|
|
101524
102495
|
"env:change@1": "env:change@1";
|
|
101525
102496
|
"timetravel:create@1": "timetravel:create@1";
|
|
@@ -101571,6 +102542,7 @@ declare const EffectsResponseSchema: z$1.ZodObject<{
|
|
|
101571
102542
|
"fields:patch@1": "fields:patch@1";
|
|
101572
102543
|
"fields:duplicate@1": "fields:duplicate@1";
|
|
101573
102544
|
"fields:add@1": "fields:add@1";
|
|
102545
|
+
"fields:order:reset@1": "fields:order:reset@1";
|
|
101574
102546
|
"fields:deletesparse:input@1": "fields:deletesparse:input@1";
|
|
101575
102547
|
"env:change@1": "env:change@1";
|
|
101576
102548
|
"timetravel:create@1": "timetravel:create@1";
|
|
@@ -101608,6 +102580,7 @@ declare const EffectsResponseSchema: z$1.ZodObject<{
|
|
|
101608
102580
|
"fields:patch@1": "fields:patch@1";
|
|
101609
102581
|
"fields:duplicate@1": "fields:duplicate@1";
|
|
101610
102582
|
"fields:add@1": "fields:add@1";
|
|
102583
|
+
"fields:order:reset@1": "fields:order:reset@1";
|
|
101611
102584
|
"fields:deletesparse:input@1": "fields:deletesparse:input@1";
|
|
101612
102585
|
"env:change@1": "env:change@1";
|
|
101613
102586
|
"timetravel:create@1": "timetravel:create@1";
|
|
@@ -101648,6 +102621,7 @@ declare const EffectsResponseSchema: z$1.ZodObject<{
|
|
|
101648
102621
|
"fields:patch@1": "fields:patch@1";
|
|
101649
102622
|
"fields:duplicate@1": "fields:duplicate@1";
|
|
101650
102623
|
"fields:add@1": "fields:add@1";
|
|
102624
|
+
"fields:order:reset@1": "fields:order:reset@1";
|
|
101651
102625
|
"fields:deletesparse:input@1": "fields:deletesparse:input@1";
|
|
101652
102626
|
"env:change@1": "env:change@1";
|
|
101653
102627
|
"timetravel:create@1": "timetravel:create@1";
|
|
@@ -101692,6 +102666,7 @@ declare const EffectsValidateStepSchema: z$1.ZodObject<{
|
|
|
101692
102666
|
"fields:patch@1": "fields:patch@1";
|
|
101693
102667
|
"fields:duplicate@1": "fields:duplicate@1";
|
|
101694
102668
|
"fields:add@1": "fields:add@1";
|
|
102669
|
+
"fields:order:reset@1": "fields:order:reset@1";
|
|
101695
102670
|
"fields:deletesparse:input@1": "fields:deletesparse:input@1";
|
|
101696
102671
|
"env:change@1": "env:change@1";
|
|
101697
102672
|
"timetravel:create@1": "timetravel:create@1";
|
|
@@ -101727,6 +102702,7 @@ declare const EffectsValidateResponseSchema: z$1.ZodObject<{
|
|
|
101727
102702
|
"fields:patch@1": "fields:patch@1";
|
|
101728
102703
|
"fields:duplicate@1": "fields:duplicate@1";
|
|
101729
102704
|
"fields:add@1": "fields:add@1";
|
|
102705
|
+
"fields:order:reset@1": "fields:order:reset@1";
|
|
101730
102706
|
"fields:deletesparse:input@1": "fields:deletesparse:input@1";
|
|
101731
102707
|
"env:change@1": "env:change@1";
|
|
101732
102708
|
"timetravel:create@1": "timetravel:create@1";
|
|
@@ -101770,7 +102746,19 @@ declare class FieldAnnotations {
|
|
|
101770
102746
|
inferCatalogFields?: boolean;
|
|
101771
102747
|
addIdColumn?: boolean;
|
|
101772
102748
|
}): FieldAnnotations;
|
|
101773
|
-
merge(source: FieldAnnotationsType | FieldAnnotations, overwrite?: boolean
|
|
102749
|
+
merge(source: FieldAnnotationsType | FieldAnnotations, overwrite?: boolean, {
|
|
102750
|
+
appendOrders
|
|
102751
|
+
}?: {
|
|
102752
|
+
/**
|
|
102753
|
+
* Shift the source's `order` stamps past this destination's maximum so
|
|
102754
|
+
* incoming columns APPEND instead of interleaving user-arranged ones.
|
|
102755
|
+
* For IMPORT-SHAPED merges only (fresh `fromInput` stamps) — never for
|
|
102756
|
+
* sources whose orders live in the destination's own number space
|
|
102757
|
+
* (kept-fields re-annotation, validator re-persist), which it would
|
|
102758
|
+
* corrupt.
|
|
102759
|
+
*/
|
|
102760
|
+
appendOrders?: boolean;
|
|
102761
|
+
}): FieldAnnotations;
|
|
101774
102762
|
deleteKey(fieldName: string): FieldAnnotations;
|
|
101775
102763
|
}
|
|
101776
102764
|
//#endregion
|
|
@@ -101934,40 +102922,69 @@ declare abstract class Pipe<Payload extends {
|
|
|
101934
102922
|
resolveFormat?: (_lazyContext: LazyResolveContext) => RecordFieldFormat;
|
|
101935
102923
|
isPrimaryOutput?: boolean;
|
|
101936
102924
|
}): {
|
|
101937
|
-
name: "name" | "profile_url" | "skills" | "job_title" | "company_name" | "company_social_url" | "job_description" | "headcount" | "company_industry" | "message" | "email" | "company_description" | "cleaned_company_name" | "company_region" | "location_hint" | "estimated_revenue" | "founded_year" | "technology_list" | "spending_trend" | "technology_match_builtwith" | "number_of_social_followers" | "personal_email" | "alternate_personal_emails" | "company_news_summary" | "work_email" | "company_website_url" | "company_domain" | "first_name" | "addressee_name" | "address_line_1" | "address_line_2" | "profile_headline" | "address_city" | "address_country" | "address_state" | "zip_code" | "last_name" | "is_work_email" | "companyenrich_match" | "companyenrich_matches" | "ip_address" | "avatar_url" | "estimated_salary" | "is_email_valid" | "developer_profile_url" | "alternative_developer_profile_urls" | "company_profile_url" | "profile_posts" | "clado_person_match" | "clado_person_match_v2" | "icypeas_person_match" | "icypeas_company_match" | "clado_person_profile" | "resend_email_success" | "email_body" | "email_subject" | "profile" | "mobile" | "landline" | "phone" | "slack_message_success" | "funding_history" | "funding_total_usd" | "deal_name" | "deal_amount" | "template_output" | "gmail_email_success" | "gmail_draft_id" | "zerobounce_validation_status" | "zerobounce_validation_match" | "leadmagic_competitor_list" | "leadmagic_acquisition_history" | "leadmagic_company_news_list" | "merge_result" | "mapped_links" | "website_markdown" | "website_html" | "website_url" | "urls" | "website_links" | "firecrawl_extract_result" | "parallel_extract_result" | "exa_match_evaluation" | "email_validation_status" | "million_validation_match" | "scrape_list_response" | "resend_contact_id" | "sheet_record_id" | "sheet_record_ids" | "sheet_rows_found_count" | "sheet_deleted_count" | "sheet_found_rows" | "sheet_found_row_ids" | "db_rows_found_count" | "db_found_rows" | "input_objects" | "role_finder_match" | "logodev_describe_match" | "logo_url" | "crustdata_company_match" | "crustdata_companyenrich_match" | "crustdata_company_identity_matches" | "crustdata_person_match" | "person_profile_match" | "primary_job_title" | "primary_seniority" | "primary_company_domain" | "parallel_person_entity_match" | "parallel_company_entity_match" | "post_list_string" | "crustdata_post_list" | "crustdata_profile_match_score" | "amplemarket_person_match" | "amplemarket_company_match" | "created_sheet" | "sheet" | "string_input" | "domain" | "url_input" | "slugified" | "timestamp" | "http_response_status" | "http_response_body" | "http_response_headers" | "luma_id" | "registered_at" | "luma_event_guest_match" | "google_calendar_event_id" | "event_title" | "attendee_emails" | "calendar_event_match" | "post_match" | "post_text" | "post_id" | "lemlist_lead_id" | "lemlist_enrollment_result" | "amplemarket_sequence_id" | "is_claim_successful" | "bucket_counter" | "found_in_bucket" | "bucket_event_count" | "bucket_event_last_at" | "signal_list" | "signal_match" | "signal_count" | "signal_window_start" | "formula_result" | "hubspot_contact_found" | "hubspot_contact_match" | "hubspot_companies_found_count" | "hubspot_company_match" | "hubspot_company_matches" | "hubspot_deals_found_count" | "hubspot_deal_match" | "hubspot_deal_matches" | "hubspot_owner_id" | "hubspot_owned_count" | "hubspot_owner_match" | "hubspot_object_id" | "hubspot_update_result" | "hubspot_associated_count" | "hubspot_associated_objects" | "hubspot_activity_result" | "salesforce_record_id" | "salesforce_owned_count" | "salesforce_person_found" | "salesforce_accounts_found_count" | "salesforce_opportunities_found_count" | "salesforce_record_found" | "salesforce_record_created" | "salesforce_contact_match" | "salesforce_lead_match" | "salesforce_account_match" | "salesforce_account_matches" | "salesforce_opportunity_match" | "salesforce_opportunity_matches" | "salesforce_user_match" | "salesforce_person_match" | "salesforce_record_match" | "salesforce_update_result" | "salesforce_activities" | "salesforce_activities_found_count" | "salesforce_last_activity_date" | "salesforce_activity_result" | "attio_record_id" | "attio_entry_id" | "attio_person_found" | "attio_person_match" | "attio_companies_found_count" | "attio_company_match" | "attio_company_matches" | "attio_deals_found_count" | "attio_deal_match" | "attio_deal_matches" | "attio_entry_match" | "attio_record_found" | "attio_record_match" | "attio_update_result" | "attio_activities" | "attio_activities_found_count" | "attio_last_activity_date" | "attio_workspace_member_id" | "attio_workspace_member_match" | "professional_profile_url" | "professional_profile" | "mobile_number";
|
|
102925
|
+
name: "name" | "profile_url" | "skills" | "job_title" | "company_name" | "company_social_url" | "job_description" | "headcount" | "company_industry" | "message" | "email" | "company_description" | "cleaned_company_name" | "company_region" | "location_hint" | "estimated_revenue" | "founded_year" | "technology_list" | "spending_trend" | "technology_match_builtwith" | "number_of_social_followers" | "personal_email" | "alternate_personal_emails" | "company_news_summary" | "work_email" | "company_website_url" | "company_domain" | "first_name" | "addressee_name" | "address_line_1" | "address_line_2" | "profile_headline" | "address_city" | "address_country" | "address_state" | "zip_code" | "last_name" | "is_work_email" | "companyenrich_match" | "companyenrich_matches" | "ip_address" | "avatar_url" | "estimated_salary" | "is_email_valid" | "developer_profile_url" | "alternative_developer_profile_urls" | "company_profile_url" | "profile_posts" | "clado_person_match" | "clado_person_match_v2" | "icypeas_person_match" | "icypeas_company_match" | "clado_person_profile" | "resend_email_success" | "email_body" | "email_subject" | "profile" | "mobile" | "landline" | "phone" | "slack_message_success" | "funding_history" | "funding_total_usd" | "deal_name" | "deal_amount" | "template_output" | "gmail_email_success" | "gmail_draft_id" | "zerobounce_validation_status" | "zerobounce_validation_match" | "leadmagic_competitor_list" | "leadmagic_acquisition_history" | "leadmagic_company_news_list" | "merge_result" | "mapped_links" | "website_markdown" | "website_html" | "website_url" | "urls" | "website_links" | "firecrawl_extract_result" | "parallel_extract_result" | "exa_match_evaluation" | "email_validation_status" | "million_validation_match" | "scrape_list_response" | "resend_contact_id" | "sheet_record_id" | "sheet_record_ids" | "sheet_rows_found_count" | "sheet_deleted_count" | "sheet_found_rows" | "sheet_found_row_ids" | "db_rows_found_count" | "db_found_rows" | "input_objects" | "role_finder_match" | "logodev_describe_match" | "logo_url" | "crustdata_company_match" | "crustdata_company_match_v2" | "crustdata_companyenrich_match" | "crustdata_company_identity_matches" | "crustdata_person_match" | "person_profile_match" | "primary_job_title" | "primary_seniority" | "primary_company_domain" | "parallel_person_entity_match" | "parallel_company_entity_match" | "post_list_string" | "crustdata_post_list" | "crustdata_profile_match_score" | "amplemarket_person_match" | "amplemarket_company_match" | "created_sheet" | "sheet" | "string_input" | "domain" | "url_input" | "slugified" | "timestamp" | "http_response_status" | "http_response_body" | "http_response_headers" | "luma_id" | "registered_at" | "luma_event_guest_match" | "google_calendar_event_id" | "event_title" | "attendee_emails" | "calendar_event_match" | "post_match" | "post_text" | "post_id" | "lemlist_lead_id" | "lemlist_enrollment_result" | "amplemarket_sequence_id" | "is_claim_successful" | "bucket_counter" | "found_in_bucket" | "bucket_event_count" | "bucket_event_last_at" | "signal_list" | "signal_match" | "signal_count" | "signal_window_start" | "formula_result" | "hubspot_contact_found" | "hubspot_contact_match" | "hubspot_companies_found_count" | "hubspot_company_match" | "hubspot_company_matches" | "hubspot_deals_found_count" | "hubspot_deal_match" | "hubspot_deal_matches" | "hubspot_owner_id" | "hubspot_owned_count" | "hubspot_owner_match" | "hubspot_object_id" | "hubspot_update_result" | "hubspot_associated_count" | "hubspot_associated_objects" | "hubspot_activity_result" | "salesforce_record_id" | "salesforce_owned_count" | "salesforce_person_found" | "salesforce_accounts_found_count" | "salesforce_opportunities_found_count" | "salesforce_record_found" | "salesforce_record_created" | "salesforce_contact_match" | "salesforce_lead_match" | "salesforce_account_match" | "salesforce_account_matches" | "salesforce_opportunity_match" | "salesforce_opportunity_matches" | "salesforce_user_match" | "salesforce_person_match" | "salesforce_record_match" | "salesforce_update_result" | "salesforce_activities" | "salesforce_activities_found_count" | "salesforce_last_activity_date" | "salesforce_activity_result" | "attio_record_id" | "attio_entry_id" | "attio_person_found" | "attio_person_match" | "attio_companies_found_count" | "attio_company_match" | "attio_company_matches" | "attio_deals_found_count" | "attio_deal_match" | "attio_deal_matches" | "attio_entry_match" | "attio_record_found" | "attio_record_match" | "attio_update_result" | "attio_activities" | "attio_activities_found_count" | "attio_last_activity_date" | "attio_workspace_member_id" | "attio_workspace_member_match" | "professional_profile_url" | "professional_profile" | "mobile_number";
|
|
101938
102926
|
enabled: boolean;
|
|
101939
102927
|
type: "string" | "number" | "boolean" | "unknown" | "json" | ((_lazyContext: LazyResolveContext) => RecordFieldType);
|
|
101940
102928
|
format: "profile_url" | "int" | "date" | "email" | "url" | "address_line_1" | "zip_code" | "phone" | "website_url" | "datetime" | "json_object" | "json_list" | "json_list_string" | "currency" | "markdown" | "text" | "decimal" | "percent" | ((_lazyContext: LazyResolveContext) => RecordFieldFormat) | null;
|
|
101941
102929
|
resolvedName: any;
|
|
101942
|
-
description: "Whether this row won the bucket claim (true → proceed) or the key was already taken (resolves no_result)." | "The number a counter bucket assigned to this row's key (stable across re-runs of the same key)." | "Whether the row's key is present (and live) in the checked bucket." | "How often this row's key has matched the countif condition so far (0 before any event). Alias it to name what is counted (e.g. error_count)." | "When this row's key last matched the countif condition (ISO 8601, UTC; null before any event). Alias it to name the moment (e.g. last_successfully_enriched_at)." | "Sales signals detected in the scan window — one entry per moment in time (job change, promotion, role change, work anniversary, graduation), each with a stable signal_id for downstream dedup." | "ONE standardized sales signal — the single input column of a signals table. Every signals:* producer emits this same shape (person- or company-scoped), so the table needs no other input columns: every downstream column (signal_id, category, occurred_at, company_domain, profile_url, metadata details, …) is json-extracted from this payload." | "Number of signals in the latest scan (0 when none) — flat mirror of the signals list so conditions can reference it." | "Per-row scan-window start date (YYYY-MM-DD). Feed it to a signals pipe to override the default lookback — e.g. computed from re-enrichment cadence by formula:run@1." | "The value returned by the formula. Type and format follow the formula pipe's result type setting." | "A summary of the main business purpose and objectives." | "The standardized and cleaned version of the company name, ensuring consistency across different entries." | "Markdown-formatted scrape of a website." | "A list of website links." | "HTML-formatted scrape of a website." | "Generic URL of a website." | "List of URLs" | "List of URLs scraped from a website" | "Fully enriched people profile" | "The industry in which the company operates." | "The region corresponding to the company's country." | "An optional hint to help pinpoint a person's or company's location." | "A list of the top competitors for a given company as provided by LeadMagic" | "A list of acquisitions by a given company" | "A list of company news" | "The estimated annual revenue of the company." | "List of corporate funding rounds." | "Amount of total known funding" | "Name of the sales deal / opportunity." | "Monetary value of the sales deal / opportunity." | "The year the company was founded." | "A flat list of technologies used by a company" | "Technology spending trend over the last 2 years. Average deviation between measuring points in %." | "A datastructure containing the technologies used by this company" | "Social followers (or zero if not found)." | "Mobile telephone number of a person." | "A generic field for phone numbers. Can be mobile or landline." | "A landline phone number" | "Current job title of a person" | "Description of current job" | "A union field that can contain both professional and personal email addresses." | "The personal email address of a prospect." | "The personal email addresses that are associated with a prospect but less likely to be the primary email address of a prospect." | "Latest company news." | "Email address of a person connection to their place of employment." | "Total number of people employed in a particular organization" | "Website URL of a related company." | "Bare domain of a related company. Example: stripe.com (no scheme, no path)." | "Name of a company." | "Object returned from a Clado people search." | "Object returned from a Icypeas people search" | "First name of a person." | "Recipient name in the format required by postal services." | "URL for profile picture" | "First line of an address (e.g. street address)" | "The formatted address of a company’s headquarters." | "Name of a city as needed for an address." | "Name of a country as needed for an address." | "Name of a state." | "A postal zip code. Usually a combination of numbers and letters." | "Last name of a person." | "Estimated total salary in USD." | "List of professional skills" | "Check if a given email is a work email." | "The full name of a person. Usually a combination of first and last name." | "IP Address of a person" | "Check if an email address is valid and can receive emails." | "A standardized format for returning LinkedIn profile data." | "A person's LinkedIn profile URL." | "A person's primary developer profile URL (e.g. GitHub)." | "Additional developer profile URLs (GitHub, GitLab, etc.) discovered for the person." | "List of recent LinkedIn posts in JSON format." | "Professional profile headline" | "Company LinkedIn URL." | "Result of email sending action using Resend" | "Id of a single resend contact" | "Id of the lead created in a lemlist campaign." | "Leaner snake_case object describing a lead's enrollment into a lemlist campaign." | "Id of the Amplemarket sequence the lead was enrolled into." | "Name of a pipe0 sheet" | "Input field of type string" | "A domain field." | "Input field of type string and URL format" | "A value that has been stripped of characters not found in slugs." | "The date-time at which the pipe ran (ISO 8601, UTC), optionally shifted/truncated by the pipe's config. Alias it to name the moment it records (e.g. last_attempted_at, next_review_at)." | "HTTP status code returned by the upstream endpoint." | "Parsed JSON body returned by the upstream endpoint." | "Response headers returned by the upstream endpoint as a flat key-value map." | "Unique identifier of the guest's event registration in Luma." | "ISO timestamp of when the guest registered for the event." | "Full event guest object returned by Luma." | "Identifier of the event in Google Calendar, used for dedup and single-event lookups. Recurring events are expanded, so each occurrence has its own stable instance ID." | "Title (summary) of the calendar event." | "Email addresses of the event's attendees. Meeting rooms and other resources are excluded; large events may return a truncated guest list." | "Standardized calendar event (provider-neutral): title, start/end, timezone, normalized type, location, organizer and attendee emails, event link, and virtual meeting link." | "ID of sheet record" | "IDs sheet records" | "Total number of matching rows in the target sheet (not capped by the row limit)" | "Number of rows deleted from the target sheet (0 when nothing matched or the sheet does not exist yet)." | "The matching rows of the target sheet — each row is its record id plus one entry per column" | "Stable record IDs of the matching rows in the target sheet" | "Total number of rows matched by the query (not capped by the row limit)" | "The rows returned by the query, keyed by the result set's column names" | "Result of email sending action using Gmail" | "ID of the draft created in the connected Gmail account" | "Result of sending a message using Slack" | "The test of an email formatted as markdown" | "A markdown message that be send to any chat app." | "Subject line for email" | "Template value where the tags are replaces with real values" | "Email validation status. Allowed values are: 'valid', 'invalid', 'catch_all', 'unknown'" | "Validation status as returned from ZeroBounce single validation" | "Full validation object as returned by ZeroBounce" | "List of unstructured input objects" | "Reference to a created sheet" | "Result of a firecrawl extract operation" | "Flat list of Parallel Extract results (url, title, publish_date, excerpts)." | "Exa search result." | "CompanyEnrich response object" | "Crustdata company match object" | "Standardized LinkedIn person profile: identity, location, employment and education history, skills, and languages." | "Job title at the person's primary current employer (mirrors person_profile_match.primary_job_title). Null when the person has no current employment." | "Highest seniority bucket across the person's current roles (mirrors person_profile_match.highest_current_seniority_level). One of: \"c_suite\", \"leadership\", \"manager\", \"senior_ic\", \"ic\", \"frontline\", \"junior\", \"unknown\" — so a condition like matches \"^(c_suite|leadership|manager)$\" selects manager-and-above." | "Company domain of the person's primary current employer (mirrors person_profile_match.primary_company_domain) — feeds CRM company-match pipes directly." | "A detailed representation of a LinkedIn post" | "Parallel person match object parsed from the entity description" | "Parallel company match object parsed from the entity description" | "A number between 1 and 0 indicating the confidence that the profile belongs to the input email address." | "Crustdata company enrichment match." | "List of Crustdata company candidates matched by name or domain." | "LinkedIn post list" | "Rich JSON post list" | "Result of a role finder operation" | "Raw text content of a social media post" | "Stable identifier of the post (its LinkedIn share URN)" | "Person match object as returned by Amplemarket" | "Company match object as returned by Amplemarket" | "CompanyEnrich response list." | "Company or organization logo" | "Get company logos & brand data" | "Social Media URL for a given company (e.g. LinkedIn profile URL)." | "Whether a HubSpot contact matched the email (a clean miss is not an error)." | "One HubSpot contact record: id, url, and the standard property set as flat keys; picked custom properties nest under custom_properties. Match-pipe output also carries matched_by." | "Number of HubSpot companies matching the domain. Domain is HubSpot's dedupe key but not unique — multiple matches are normal." | "One HubSpot company record: id, url, and the standard property set as flat keys; picked custom properties nest under custom_properties." | "All HubSpot companies matching the domain, each with id, url, matched_by, and the selected properties." | "Number of HubSpot deals associated with the matched company or contact." | "One HubSpot deal record: id, url, and the standard property set as flat keys; picked custom properties nest under custom_properties." | "Matched HubSpot deals (sorted by close date, newest first), each with id, url, and the selected properties." | "Record ID (hs_object_id) of the HubSpot record — the identifier to write back to it (object:update, object:associations)." | "ID of the HubSpot owner (user) — the value stored in `hubspot_owner_id` properties on contacts, companies, and deals." | "Number of records of the selected object type owned by this HubSpot owner (only when ownership counts are enabled)." | "The HubSpot owner record: id, email, name, archived flag, and team memberships." | "Result of the HubSpot update: id, url, object type, and updated property names." | "Number of associated HubSpot objects found for the source record." | "Associated HubSpot objects, each with id, url, association labels, and the selected properties under properties." | "Result of logging a HubSpot engagement: id, url, the engagement type, and the record it was associated to." | "18-character ID of the Salesforce record — the identifier to write back to it (record:update, record:lookup). Every Salesforce surface emits this same column, so it chains regardless of source." | "Number of records of the selected object type owned by this Salesforce user (only when ownership counts are enabled)." | "Whether the email matched a Salesforce Contact, Lead, or Person Account (a clean miss is not an error)." | "Number of Salesforce accounts matching the domain. Accounts have no unique domain key — multiple matches are normal." | "Number of Salesforce opportunities reached via the matched account or contact role." | "Whether the record ID resolved to a live Salesforce record (deleted/missing is a clean miss, not an error)." | "Whether the assert created a new record (true) or updated an existing one matched by the external ID (false)." | "One Salesforce contact record: id, url, and the standard field set as flat typed keys; picked custom fields nest under custom_properties." | "One Salesforce lead record: id, url, and the standard field set as flat typed keys (including IsConverted/ConvertedContactId); picked custom fields nest under custom_properties." | "One Salesforce account record: id, url, and the standard field set as flat typed keys; picked custom fields nest under custom_properties." | "All Salesforce accounts matching the domain (oldest first), each with id, url, matched_variant, and the selected fields." | "One Salesforce opportunity record: id, url, and the standard field set as flat typed keys (IsClosed/IsWon carry the org-invariant status); picked custom fields nest under custom_properties." | "Matched Salesforce opportunities (newest close date first), each with id, url, contact_roles edge metadata, and the selected fields." | "One Salesforce user record: id, url, and the standard field set as flat typed keys; picked custom fields nest under custom_properties." | "The matched Salesforce person across Contact, Lead, and Person Account shapes: object_type says which; keys foreign to the matched shape are null. Carries matched_by and is_converted_redirect." | "A generic Salesforce record (any object): id, url, object_type, and ALL fields visible to the connected user nested under record." | "Result of the Salesforce update: id, url, object type, updated field names, and the fresh post-write record (formulas/triggers may rewrite values after save)." | "Total tasks and events on the record's timeline matching the filters — the true total before the display limit." | "Most recent activity date across the record's tasks and events (null when the timeline is empty) — chain a run_if on it to gate stale records." | "The record's activity timeline (tasks and events, newest first), each with id, url, object_type, subject, status, activity_date, subtype, who_id/what_id anchors, and picked custom fields under custom_properties." | "Result of logging a Salesforce activity: id, url, subject, subtype, the who_id/what_id anchors, and created (false only when an idempotency key matched an existing record)." | "Record ID of the Attio record — the identifier to write back to it (record:lookup, record:update)." | "ID of the Attio list entry (a record can sit in a list more than once; the entry carries the list-level attributes such as stage)." | "Whether an Attio person matched the email (a clean miss is not an error)." | "One Attio person record: id, url, and the standard attribute set as flat keys; picked custom attributes nest under custom_properties. Match-pipe output also carries matched_by." | "Number of Attio companies matching the domain. Exact domain values are unique (≤1); root-domain matching can legitimately return several subdomain records." | "One Attio company record: id, url, and the standard attribute set as flat keys; picked custom attributes nest under custom_properties." | "All Attio companies matching the domain, each with id, url, matched_on, and the selected attributes." | "Number of Attio deals associated with the matched company or person." | "One Attio deal record: id, url, and the standard attribute set as flat keys; picked custom attributes nest under custom_properties. Stage titles are workspace-defined." | "Matched Attio deals (newest first), each with id, url, and the selected attributes." | "One Attio list entry: entry id, the parent record's url and id, entry-level attribute values under entry_values, and picked parent attributes under custom_properties." | "Whether an Attio record was found (a clean miss is not an error)." | "One Attio record of any object (custom objects included): id, url, object, attribute values under values, and picked attributes under custom_properties." | "Result of the Attio update: id, url, object, and updated attribute slugs." | "Number of Attio activities (notes, meetings, tasks) linked to the record — the true total before the display cap." | "Timestamp of the most recent Attio activity linked to the record — the chainable staleness gate (null when there is none)." | "Per-record activity timeline merged from Attio notes, meetings, and tasks (newest first): each item carries id, type, title, content, occurred_at, url, and type-specific fields." | "Workspace member ID of the Attio user — matches actor-reference attributes (e.g. a deal's owner) on other Attio records." | "One Attio workspace member: id, email, name, access level, and avatar URL.";
|
|
102930
|
+
description: "Whether this row won the bucket claim (true → proceed) or the key was already taken (resolves no_result)." | "The number a counter bucket assigned to this row's key (stable across re-runs of the same key)." | "Whether the row's key is present (and live) in the checked bucket." | "How often this row's key has matched the countif condition so far (0 before any event). Alias it to name what is counted (e.g. error_count)." | "When this row's key last matched the countif condition (ISO 8601, UTC; null before any event). Alias it to name the moment (e.g. last_successfully_enriched_at)." | "Sales signals detected in the scan window — one entry per moment in time (job change, promotion, role change, work anniversary, graduation), each with a stable signal_id for downstream dedup." | "ONE standardized sales signal — the single input column of a signals table. Every signals:* producer emits this same shape (person- or company-scoped), so the table needs no other input columns: every downstream column (signal_id, category, occurred_at, company_domain, profile_url, metadata details, …) is json-extracted from this payload." | "Number of signals in the latest scan (0 when none) — flat mirror of the signals list so conditions can reference it." | "Per-row scan-window start date (YYYY-MM-DD). Feed it to a signals pipe to override the default lookback — e.g. computed from re-enrichment cadence by formula:run@1." | "The value returned by the formula. Type and format follow the formula pipe's result type setting." | "A summary of the main business purpose and objectives." | "The standardized and cleaned version of the company name, ensuring consistency across different entries." | "Markdown-formatted scrape of a website." | "A list of website links." | "HTML-formatted scrape of a website." | "Generic URL of a website." | "List of URLs" | "List of URLs scraped from a website" | "Fully enriched people profile" | "The industry in which the company operates." | "The region corresponding to the company's country." | "An optional hint to help pinpoint a person's or company's location." | "A list of the top competitors for a given company as provided by LeadMagic" | "A list of acquisitions by a given company" | "A list of company news" | "The estimated annual revenue of the company." | "List of corporate funding rounds." | "Amount of total known funding" | "Name of the sales deal / opportunity." | "Monetary value of the sales deal / opportunity." | "The year the company was founded." | "A flat list of technologies used by a company" | "Technology spending trend over the last 2 years. Average deviation between measuring points in %." | "A datastructure containing the technologies used by this company" | "Social followers (or zero if not found)." | "Mobile telephone number of a person." | "A generic field for phone numbers. Can be mobile or landline." | "A landline phone number" | "Current job title of a person" | "Description of current job" | "A union field that can contain both professional and personal email addresses." | "The personal email address of a prospect." | "The personal email addresses that are associated with a prospect but less likely to be the primary email address of a prospect." | "Latest company news." | "Email address of a person connection to their place of employment." | "Total number of people employed in a particular organization" | "Website URL of a related company." | "Bare domain of a related company. Example: stripe.com (no scheme, no path)." | "Name of a company." | "Object returned from a Clado people search." | "Object returned from a Icypeas people search" | "First name of a person." | "Recipient name in the format required by postal services." | "URL for profile picture" | "First line of an address (e.g. street address)" | "The formatted address of a company’s headquarters." | "Name of a city as needed for an address." | "Name of a country as needed for an address." | "Name of a state." | "A postal zip code. Usually a combination of numbers and letters." | "Last name of a person." | "Estimated total salary in USD." | "List of professional skills" | "Check if a given email is a work email." | "The full name of a person. Usually a combination of first and last name." | "IP Address of a person" | "Check if an email address is valid and can receive emails." | "A standardized format for returning LinkedIn profile data." | "A person's LinkedIn profile URL." | "A person's primary developer profile URL (e.g. GitHub)." | "Additional developer profile URLs (GitHub, GitLab, etc.) discovered for the person." | "List of recent LinkedIn posts in JSON format." | "Professional profile headline" | "Company LinkedIn URL." | "Result of email sending action using Resend" | "Id of a single resend contact" | "Id of the lead created in a lemlist campaign." | "Leaner snake_case object describing a lead's enrollment into a lemlist campaign." | "Id of the Amplemarket sequence the lead was enrolled into." | "Name of a pipe0 sheet" | "Input field of type string" | "A domain field." | "Input field of type string and URL format" | "A value that has been stripped of characters not found in slugs." | "The date-time at which the pipe ran (ISO 8601, UTC), optionally shifted/truncated by the pipe's config. Alias it to name the moment it records (e.g. last_attempted_at, next_review_at)." | "HTTP status code returned by the upstream endpoint." | "Parsed JSON body returned by the upstream endpoint." | "Response headers returned by the upstream endpoint as a flat key-value map." | "Unique identifier of the guest's event registration in Luma." | "ISO timestamp of when the guest registered for the event." | "Full event guest object returned by Luma." | "Identifier of the event in Google Calendar, used for dedup and single-event lookups. Recurring events are expanded, so each occurrence has its own stable instance ID." | "Title (summary) of the calendar event." | "Email addresses of the event's attendees. Meeting rooms and other resources are excluded; large events may return a truncated guest list." | "Standardized calendar event (provider-neutral): title, start/end, timezone, normalized type, location, organizer and attendee emails, event link, and virtual meeting link." | "ID of sheet record" | "IDs sheet records" | "Total number of matching rows in the target sheet (not capped by the row limit)" | "Number of rows deleted from the target sheet (0 when nothing matched or the sheet does not exist yet)." | "The matching rows of the target sheet — each row is its record id plus one entry per column" | "Stable record IDs of the matching rows in the target sheet" | "Total number of rows matched by the query (not capped by the row limit)" | "The rows returned by the query, keyed by the result set's column names" | "Result of email sending action using Gmail" | "ID of the draft created in the connected Gmail account" | "Result of sending a message using Slack" | "The test of an email formatted as markdown" | "A markdown message that be send to any chat app." | "Subject line for email" | "Template value where the tags are replaces with real values" | "Email validation status. Allowed values are: 'valid', 'invalid', 'catch_all', 'unknown'" | "Validation status as returned from ZeroBounce single validation" | "Full validation object as returned by ZeroBounce" | "List of unstructured input objects" | "Reference to a created sheet" | "Result of a firecrawl extract operation" | "Flat list of Parallel Extract results (url, title, publish_date, excerpts)." | "Exa search result." | "CompanyEnrich response object" | "Crustdata company match object" | "Standardized LinkedIn person profile: identity, location, employment and education history, skills, and languages." | "Job title at the person's primary current employer (mirrors person_profile_match.primary_job_title). Null when the person has no current employment." | "Highest seniority bucket across the person's current roles (mirrors person_profile_match.highest_current_seniority_level). One of: \"c_suite\", \"leadership\", \"manager\", \"senior_ic\", \"ic\", \"frontline\", \"junior\", \"unknown\" — so a condition like matches \"^(c_suite|leadership|manager)$\" selects manager-and-above." | "Company domain of the person's primary current employer (mirrors person_profile_match.primary_company_domain) — feeds CRM company-match pipes directly." | "A detailed representation of a LinkedIn post" | "Parallel person match object parsed from the entity description" | "Parallel company match object parsed from the entity description" | "A number between 1 and 0 indicating the confidence that the profile belongs to the input email address." | "Crustdata company match object (2025-11-01 API generation): identity, headcount and growth, funding, locations, taxonomy, revenue, and social profiles." | "Crustdata company enrichment match." | "List of Crustdata company candidates matched by name or domain." | "LinkedIn post list" | "Rich JSON post list" | "Result of a role finder operation" | "Raw text content of a social media post" | "Stable identifier of the post (its LinkedIn share URN)" | "Person match object as returned by Amplemarket" | "Company match object as returned by Amplemarket" | "CompanyEnrich response list." | "Company or organization logo" | "Get company logos & brand data" | "Social Media URL for a given company (e.g. LinkedIn profile URL)." | "Whether a HubSpot contact matched the email (a clean miss is not an error)." | "One HubSpot contact record: id, url, and the standard property set as flat keys; picked custom properties nest under custom_properties. Match-pipe output also carries matched_by." | "Number of HubSpot companies matching the domain. Domain is HubSpot's dedupe key but not unique — multiple matches are normal." | "One HubSpot company record: id, url, and the standard property set as flat keys; picked custom properties nest under custom_properties." | "All HubSpot companies matching the domain, each with id, url, matched_by, and the selected properties." | "Number of HubSpot deals associated with the matched company or contact." | "One HubSpot deal record: id, url, and the standard property set as flat keys; picked custom properties nest under custom_properties." | "Matched HubSpot deals (sorted by close date, newest first), each with id, url, and the selected properties." | "Record ID (hs_object_id) of the HubSpot record — the identifier to write back to it (object:update, object:associations)." | "ID of the HubSpot owner (user) — the value stored in `hubspot_owner_id` properties on contacts, companies, and deals." | "Number of records of the selected object type owned by this HubSpot owner (only when ownership counts are enabled)." | "The HubSpot owner record: id, email, name, archived flag, and team memberships." | "Result of the HubSpot update: id, url, object type, and updated property names." | "Number of associated HubSpot objects found for the source record." | "Associated HubSpot objects, each with id, url, association labels, and the selected properties under properties." | "Result of logging a HubSpot engagement: id, url, the engagement type, and the record it was associated to." | "18-character ID of the Salesforce record — the identifier to write back to it (record:update, record:lookup). Every Salesforce surface emits this same column, so it chains regardless of source." | "Number of records of the selected object type owned by this Salesforce user (only when ownership counts are enabled)." | "Whether the email matched a Salesforce Contact, Lead, or Person Account (a clean miss is not an error)." | "Number of Salesforce accounts matching the domain. Accounts have no unique domain key — multiple matches are normal." | "Number of Salesforce opportunities reached via the matched account or contact role." | "Whether the record ID resolved to a live Salesforce record (deleted/missing is a clean miss, not an error)." | "Whether the assert created a new record (true) or updated an existing one matched by the external ID (false)." | "One Salesforce contact record: id, url, and the standard field set as flat typed keys; picked custom fields nest under custom_properties." | "One Salesforce lead record: id, url, and the standard field set as flat typed keys (including IsConverted/ConvertedContactId); picked custom fields nest under custom_properties." | "One Salesforce account record: id, url, and the standard field set as flat typed keys; picked custom fields nest under custom_properties." | "All Salesforce accounts matching the domain (oldest first), each with id, url, matched_variant, and the selected fields." | "One Salesforce opportunity record: id, url, and the standard field set as flat typed keys (IsClosed/IsWon carry the org-invariant status); picked custom fields nest under custom_properties." | "Matched Salesforce opportunities (newest close date first), each with id, url, contact_roles edge metadata, and the selected fields." | "One Salesforce user record: id, url, and the standard field set as flat typed keys; picked custom fields nest under custom_properties." | "The matched Salesforce person across Contact, Lead, and Person Account shapes: object_type says which; keys foreign to the matched shape are null. Carries matched_by and is_converted_redirect." | "A generic Salesforce record (any object): id, url, object_type, and ALL fields visible to the connected user nested under record." | "Result of the Salesforce update: id, url, object type, updated field names, and the fresh post-write record (formulas/triggers may rewrite values after save)." | "Total tasks and events on the record's timeline matching the filters — the true total before the display limit." | "Most recent activity date across the record's tasks and events (null when the timeline is empty) — chain a run_if on it to gate stale records." | "The record's activity timeline (tasks and events, newest first), each with id, url, object_type, subject, status, activity_date, subtype, who_id/what_id anchors, and picked custom fields under custom_properties." | "Result of logging a Salesforce activity: id, url, subject, subtype, the who_id/what_id anchors, and created (false only when an idempotency key matched an existing record)." | "Record ID of the Attio record — the identifier to write back to it (record:lookup, record:update)." | "ID of the Attio list entry (a record can sit in a list more than once; the entry carries the list-level attributes such as stage)." | "Whether an Attio person matched the email (a clean miss is not an error)." | "One Attio person record: id, url, and the standard attribute set as flat keys; picked custom attributes nest under custom_properties. Match-pipe output also carries matched_by." | "Number of Attio companies matching the domain. Exact domain values are unique (≤1); root-domain matching can legitimately return several subdomain records." | "One Attio company record: id, url, and the standard attribute set as flat keys; picked custom attributes nest under custom_properties." | "All Attio companies matching the domain, each with id, url, matched_on, and the selected attributes." | "Number of Attio deals associated with the matched company or person." | "One Attio deal record: id, url, and the standard attribute set as flat keys; picked custom attributes nest under custom_properties. Stage titles are workspace-defined." | "Matched Attio deals (newest first), each with id, url, and the selected attributes." | "One Attio list entry: entry id, the parent record's url and id, entry-level attribute values under entry_values, and picked parent attributes under custom_properties." | "Whether an Attio record was found (a clean miss is not an error)." | "One Attio record of any object (custom objects included): id, url, object, attribute values under values, and picked attributes under custom_properties." | "Result of the Attio update: id, url, object, and updated attribute slugs." | "Number of Attio activities (notes, meetings, tasks) linked to the record — the true total before the display cap." | "Timestamp of the most recent Attio activity linked to the record — the chainable staleness gate (null when there is none)." | "Per-record activity timeline merged from Attio notes, meetings, and tasks (newest first): each item carries id, type, title, content, occurred_at, url, and type-specific fields." | "Workspace member ID of the Attio user — matches actor-reference attributes (e.g. a deal's owner) on other Attio records." | "One Attio workspace member: id, email, name, access level, and avatar URL.";
|
|
101943
102931
|
jsonMeta: {
|
|
101944
102932
|
readonly zodSchema: z.ZodArray<z.ZodObject<{
|
|
101945
102933
|
signal_id: z.ZodString;
|
|
101946
|
-
signal: z.
|
|
101947
|
-
joined_company: "joined_company";
|
|
101948
|
-
left_company: "left_company";
|
|
101949
|
-
returned_to_company: "returned_to_company";
|
|
101950
|
-
promotion_to_senior_ic: "promotion_to_senior_ic";
|
|
101951
|
-
promotion_to_manager: "promotion_to_manager";
|
|
101952
|
-
promotion_to_leadership: "promotion_to_leadership";
|
|
101953
|
-
promotion_to_c_suite: "promotion_to_c_suite";
|
|
101954
|
-
changed_role: "changed_role";
|
|
101955
|
-
work_anniversary: "work_anniversary";
|
|
101956
|
-
graduated: "graduated";
|
|
101957
|
-
}>;
|
|
102934
|
+
signal: z.ZodString;
|
|
101958
102935
|
signal_category: z.ZodEnum<{
|
|
101959
102936
|
employment: "employment";
|
|
101960
102937
|
education: "education";
|
|
102938
|
+
achievement: "achievement";
|
|
102939
|
+
engagement: "engagement";
|
|
102940
|
+
social_activity: "social_activity";
|
|
101961
102941
|
company_growth: "company_growth";
|
|
101962
102942
|
company_news: "company_news";
|
|
101963
|
-
|
|
102943
|
+
technology: "technology";
|
|
102944
|
+
intent: "intent";
|
|
102945
|
+
other: "other";
|
|
101964
102946
|
}>;
|
|
101965
102947
|
signal_subcategory: z.ZodEnum<{
|
|
101966
102948
|
education: "education";
|
|
102949
|
+
other: "other";
|
|
101967
102950
|
job_change: "job_change";
|
|
101968
102951
|
promotion: "promotion";
|
|
101969
102952
|
role_change: "role_change";
|
|
101970
102953
|
tenure_milestone: "tenure_milestone";
|
|
102954
|
+
enrollment: "enrollment";
|
|
102955
|
+
certification: "certification";
|
|
102956
|
+
award: "award";
|
|
102957
|
+
speaking_engagement: "speaking_engagement";
|
|
102958
|
+
publication: "publication";
|
|
102959
|
+
product_usage: "product_usage";
|
|
102960
|
+
website_activity: "website_activity";
|
|
102961
|
+
content_engagement: "content_engagement";
|
|
102962
|
+
social_engagement: "social_engagement";
|
|
102963
|
+
event_activity: "event_activity";
|
|
102964
|
+
outreach_engagement: "outreach_engagement";
|
|
102965
|
+
community_activity: "community_activity";
|
|
102966
|
+
advocacy: "advocacy";
|
|
102967
|
+
post_published: "post_published";
|
|
102968
|
+
content_interaction: "content_interaction";
|
|
102969
|
+
topic_mention: "topic_mention";
|
|
102970
|
+
profile_update: "profile_update";
|
|
102971
|
+
headcount_change: "headcount_change";
|
|
102972
|
+
hiring: "hiring";
|
|
102973
|
+
expansion: "expansion";
|
|
102974
|
+
financial_growth: "financial_growth";
|
|
102975
|
+
funding: "funding";
|
|
102976
|
+
merger_acquisition: "merger_acquisition";
|
|
102977
|
+
ipo: "ipo";
|
|
102978
|
+
leadership_change: "leadership_change";
|
|
102979
|
+
product_launch: "product_launch";
|
|
102980
|
+
partnership: "partnership";
|
|
102981
|
+
workforce_reduction: "workforce_reduction";
|
|
102982
|
+
recognition: "recognition";
|
|
102983
|
+
legal_regulatory: "legal_regulatory";
|
|
102984
|
+
tech_added: "tech_added";
|
|
102985
|
+
tech_removed: "tech_removed";
|
|
102986
|
+
research_intent: "research_intent";
|
|
102987
|
+
review_activity: "review_activity";
|
|
101971
102988
|
}>;
|
|
101972
102989
|
signal_scope: z.ZodEnum<{
|
|
101973
102990
|
person: "person";
|
|
@@ -101986,31 +103003,60 @@ declare abstract class Pipe<Payload extends {
|
|
|
101986
103003
|
} | {
|
|
101987
103004
|
readonly zodSchema: z.ZodObject<{
|
|
101988
103005
|
signal_id: z.ZodString;
|
|
101989
|
-
signal: z.
|
|
101990
|
-
joined_company: "joined_company";
|
|
101991
|
-
left_company: "left_company";
|
|
101992
|
-
returned_to_company: "returned_to_company";
|
|
101993
|
-
promotion_to_senior_ic: "promotion_to_senior_ic";
|
|
101994
|
-
promotion_to_manager: "promotion_to_manager";
|
|
101995
|
-
promotion_to_leadership: "promotion_to_leadership";
|
|
101996
|
-
promotion_to_c_suite: "promotion_to_c_suite";
|
|
101997
|
-
changed_role: "changed_role";
|
|
101998
|
-
work_anniversary: "work_anniversary";
|
|
101999
|
-
graduated: "graduated";
|
|
102000
|
-
}>;
|
|
103006
|
+
signal: z.ZodString;
|
|
102001
103007
|
signal_category: z.ZodEnum<{
|
|
102002
103008
|
employment: "employment";
|
|
102003
103009
|
education: "education";
|
|
103010
|
+
achievement: "achievement";
|
|
103011
|
+
engagement: "engagement";
|
|
103012
|
+
social_activity: "social_activity";
|
|
102004
103013
|
company_growth: "company_growth";
|
|
102005
103014
|
company_news: "company_news";
|
|
102006
|
-
|
|
103015
|
+
technology: "technology";
|
|
103016
|
+
intent: "intent";
|
|
103017
|
+
other: "other";
|
|
102007
103018
|
}>;
|
|
102008
103019
|
signal_subcategory: z.ZodEnum<{
|
|
102009
103020
|
education: "education";
|
|
103021
|
+
other: "other";
|
|
102010
103022
|
job_change: "job_change";
|
|
102011
103023
|
promotion: "promotion";
|
|
102012
103024
|
role_change: "role_change";
|
|
102013
103025
|
tenure_milestone: "tenure_milestone";
|
|
103026
|
+
enrollment: "enrollment";
|
|
103027
|
+
certification: "certification";
|
|
103028
|
+
award: "award";
|
|
103029
|
+
speaking_engagement: "speaking_engagement";
|
|
103030
|
+
publication: "publication";
|
|
103031
|
+
product_usage: "product_usage";
|
|
103032
|
+
website_activity: "website_activity";
|
|
103033
|
+
content_engagement: "content_engagement";
|
|
103034
|
+
social_engagement: "social_engagement";
|
|
103035
|
+
event_activity: "event_activity";
|
|
103036
|
+
outreach_engagement: "outreach_engagement";
|
|
103037
|
+
community_activity: "community_activity";
|
|
103038
|
+
advocacy: "advocacy";
|
|
103039
|
+
post_published: "post_published";
|
|
103040
|
+
content_interaction: "content_interaction";
|
|
103041
|
+
topic_mention: "topic_mention";
|
|
103042
|
+
profile_update: "profile_update";
|
|
103043
|
+
headcount_change: "headcount_change";
|
|
103044
|
+
hiring: "hiring";
|
|
103045
|
+
expansion: "expansion";
|
|
103046
|
+
financial_growth: "financial_growth";
|
|
103047
|
+
funding: "funding";
|
|
103048
|
+
merger_acquisition: "merger_acquisition";
|
|
103049
|
+
ipo: "ipo";
|
|
103050
|
+
leadership_change: "leadership_change";
|
|
103051
|
+
product_launch: "product_launch";
|
|
103052
|
+
partnership: "partnership";
|
|
103053
|
+
workforce_reduction: "workforce_reduction";
|
|
103054
|
+
recognition: "recognition";
|
|
103055
|
+
legal_regulatory: "legal_regulatory";
|
|
103056
|
+
tech_added: "tech_added";
|
|
103057
|
+
tech_removed: "tech_removed";
|
|
103058
|
+
research_intent: "research_intent";
|
|
103059
|
+
review_activity: "review_activity";
|
|
102014
103060
|
}>;
|
|
102015
103061
|
signal_scope: z.ZodEnum<{
|
|
102016
103062
|
person: "person";
|
|
@@ -103672,13 +104718,13 @@ declare abstract class Pipe<Payload extends {
|
|
|
103672
104718
|
event_end: z.ZodNullable<z.ZodString>;
|
|
103673
104719
|
event_timezone: z.ZodNullable<z.ZodString>;
|
|
103674
104720
|
event_type: z.ZodEnum<{
|
|
104721
|
+
other: "other";
|
|
103675
104722
|
meeting: "meeting";
|
|
103676
104723
|
out_of_office: "out_of_office";
|
|
103677
104724
|
focus_time: "focus_time";
|
|
103678
104725
|
working_location: "working_location";
|
|
103679
104726
|
birthday: "birthday";
|
|
103680
104727
|
from_gmail: "from_gmail";
|
|
103681
|
-
other: "other";
|
|
103682
104728
|
}>;
|
|
103683
104729
|
event_location: z.ZodNullable<z.ZodString>;
|
|
103684
104730
|
event_url: z.ZodNullable<z.ZodString>;
|
|
@@ -103691,7 +104737,7 @@ declare abstract class Pipe<Payload extends {
|
|
|
103691
104737
|
event_start: string | null;
|
|
103692
104738
|
event_end: string | null;
|
|
103693
104739
|
event_timezone: string | null;
|
|
103694
|
-
event_type: "meeting" | "out_of_office" | "focus_time" | "working_location" | "birthday" | "from_gmail"
|
|
104740
|
+
event_type: "other" | "meeting" | "out_of_office" | "focus_time" | "working_location" | "birthday" | "from_gmail";
|
|
103695
104741
|
event_location: string | null;
|
|
103696
104742
|
event_url: string | null;
|
|
103697
104743
|
organizer_email: string | null;
|
|
@@ -104568,6 +105614,133 @@ declare abstract class Pipe<Payload extends {
|
|
|
104568
105614
|
twitter_profile_url?: string | undefined;
|
|
104569
105615
|
twitter_handle?: string | undefined;
|
|
104570
105616
|
};
|
|
105617
|
+
} | {
|
|
105618
|
+
readonly zodSchema: z.ZodObject<{
|
|
105619
|
+
crustdata_company_id: z.ZodNullable<z.ZodNumber>;
|
|
105620
|
+
basic_info: z.ZodObject<{
|
|
105621
|
+
name: z.ZodNullable<z.ZodString>;
|
|
105622
|
+
primary_domain: z.ZodNullable<z.ZodString>;
|
|
105623
|
+
website_url: z.ZodNullable<z.ZodString>;
|
|
105624
|
+
professional_network_url: z.ZodNullable<z.ZodString>;
|
|
105625
|
+
description: z.ZodNullable<z.ZodString>;
|
|
105626
|
+
company_type: z.ZodNullable<z.ZodString>;
|
|
105627
|
+
year_founded: z.ZodNullable<z.ZodNumber>;
|
|
105628
|
+
employee_count_range: z.ZodNullable<z.ZodString>;
|
|
105629
|
+
markets: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
105630
|
+
industries: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
105631
|
+
logo_url: z.ZodNullable<z.ZodString>;
|
|
105632
|
+
}, z.core.$strip>;
|
|
105633
|
+
headcount: z.ZodObject<{
|
|
105634
|
+
total: z.ZodNullable<z.ZodNumber>;
|
|
105635
|
+
largest_headcount_country: z.ZodNullable<z.ZodString>;
|
|
105636
|
+
growth_percent_1m: z.ZodNullable<z.ZodNumber>;
|
|
105637
|
+
growth_percent_3m: z.ZodNullable<z.ZodNumber>;
|
|
105638
|
+
growth_percent_6m: z.ZodNullable<z.ZodNumber>;
|
|
105639
|
+
growth_percent_12m: z.ZodNullable<z.ZodNumber>;
|
|
105640
|
+
growth_absolute_1m: z.ZodNullable<z.ZodNumber>;
|
|
105641
|
+
growth_absolute_3m: z.ZodNullable<z.ZodNumber>;
|
|
105642
|
+
growth_absolute_6m: z.ZodNullable<z.ZodNumber>;
|
|
105643
|
+
growth_absolute_12m: z.ZodNullable<z.ZodNumber>;
|
|
105644
|
+
}, z.core.$strip>;
|
|
105645
|
+
funding: z.ZodObject<{
|
|
105646
|
+
total_investment_usd: z.ZodNullable<z.ZodNumber>;
|
|
105647
|
+
last_round_amount_usd: z.ZodNullable<z.ZodNumber>;
|
|
105648
|
+
last_fundraise_date: z.ZodNullable<z.ZodString>;
|
|
105649
|
+
last_round_type: z.ZodNullable<z.ZodString>;
|
|
105650
|
+
investors: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
105651
|
+
}, z.core.$strip>;
|
|
105652
|
+
locations: z.ZodObject<{
|
|
105653
|
+
country: z.ZodNullable<z.ZodString>;
|
|
105654
|
+
headquarters: z.ZodNullable<z.ZodString>;
|
|
105655
|
+
state: z.ZodNullable<z.ZodString>;
|
|
105656
|
+
street_address: z.ZodNullable<z.ZodString>;
|
|
105657
|
+
all_office_addresses: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
105658
|
+
}, z.core.$strip>;
|
|
105659
|
+
taxonomy: z.ZodObject<{
|
|
105660
|
+
professional_network_industry: z.ZodNullable<z.ZodString>;
|
|
105661
|
+
professional_network_industries: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
105662
|
+
professional_network_specialities: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
105663
|
+
categories: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
105664
|
+
}, z.core.$strip>;
|
|
105665
|
+
revenue: z.ZodObject<{
|
|
105666
|
+
estimated_lower_bound_usd: z.ZodNullable<z.ZodNumber>;
|
|
105667
|
+
estimated_upper_bound_usd: z.ZodNullable<z.ZodNumber>;
|
|
105668
|
+
ipo_date: z.ZodNullable<z.ZodString>;
|
|
105669
|
+
stock_symbols: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
105670
|
+
fiscal_year_end: z.ZodNullable<z.ZodString>;
|
|
105671
|
+
acquisition_status: z.ZodNullable<z.ZodString>;
|
|
105672
|
+
}, z.core.$strip>;
|
|
105673
|
+
social_profiles: z.ZodObject<{
|
|
105674
|
+
crunchbase_url: z.ZodNullable<z.ZodString>;
|
|
105675
|
+
crunchbase_uuid: z.ZodNullable<z.ZodString>;
|
|
105676
|
+
twitter_url: z.ZodNullable<z.ZodString>;
|
|
105677
|
+
professional_network_url: z.ZodNullable<z.ZodString>;
|
|
105678
|
+
professional_network_id: z.ZodNullable<z.ZodString>;
|
|
105679
|
+
}, z.core.$strip>;
|
|
105680
|
+
}, z.core.$strip>;
|
|
105681
|
+
readonly exampleValue: {
|
|
105682
|
+
crustdata_company_id: number | null;
|
|
105683
|
+
basic_info: {
|
|
105684
|
+
name: string | null;
|
|
105685
|
+
primary_domain: string | null;
|
|
105686
|
+
website_url: string | null;
|
|
105687
|
+
professional_network_url: string | null;
|
|
105688
|
+
description: string | null;
|
|
105689
|
+
company_type: string | null;
|
|
105690
|
+
year_founded: number | null;
|
|
105691
|
+
employee_count_range: string | null;
|
|
105692
|
+
markets: string[] | null;
|
|
105693
|
+
industries: string[] | null;
|
|
105694
|
+
logo_url: string | null;
|
|
105695
|
+
};
|
|
105696
|
+
headcount: {
|
|
105697
|
+
total: number | null;
|
|
105698
|
+
largest_headcount_country: string | null;
|
|
105699
|
+
growth_percent_1m: number | null;
|
|
105700
|
+
growth_percent_3m: number | null;
|
|
105701
|
+
growth_percent_6m: number | null;
|
|
105702
|
+
growth_percent_12m: number | null;
|
|
105703
|
+
growth_absolute_1m: number | null;
|
|
105704
|
+
growth_absolute_3m: number | null;
|
|
105705
|
+
growth_absolute_6m: number | null;
|
|
105706
|
+
growth_absolute_12m: number | null;
|
|
105707
|
+
};
|
|
105708
|
+
funding: {
|
|
105709
|
+
total_investment_usd: number | null;
|
|
105710
|
+
last_round_amount_usd: number | null;
|
|
105711
|
+
last_fundraise_date: string | null;
|
|
105712
|
+
last_round_type: string | null;
|
|
105713
|
+
investors: string[] | null;
|
|
105714
|
+
};
|
|
105715
|
+
locations: {
|
|
105716
|
+
country: string | null;
|
|
105717
|
+
headquarters: string | null;
|
|
105718
|
+
state: string | null;
|
|
105719
|
+
street_address: string | null;
|
|
105720
|
+
all_office_addresses: string[] | null;
|
|
105721
|
+
};
|
|
105722
|
+
taxonomy: {
|
|
105723
|
+
professional_network_industry: string | null;
|
|
105724
|
+
professional_network_industries: string[] | null;
|
|
105725
|
+
professional_network_specialities: string[] | null;
|
|
105726
|
+
categories: string[] | null;
|
|
105727
|
+
};
|
|
105728
|
+
revenue: {
|
|
105729
|
+
estimated_lower_bound_usd: number | null;
|
|
105730
|
+
estimated_upper_bound_usd: number | null;
|
|
105731
|
+
ipo_date: string | null;
|
|
105732
|
+
stock_symbols: string[] | null;
|
|
105733
|
+
fiscal_year_end: string | null;
|
|
105734
|
+
acquisition_status: string | null;
|
|
105735
|
+
};
|
|
105736
|
+
social_profiles: {
|
|
105737
|
+
crunchbase_url: string | null;
|
|
105738
|
+
crunchbase_uuid: string | null;
|
|
105739
|
+
twitter_url: string | null;
|
|
105740
|
+
professional_network_url: string | null;
|
|
105741
|
+
professional_network_id: string | null;
|
|
105742
|
+
};
|
|
105743
|
+
};
|
|
104571
105744
|
} | {
|
|
104572
105745
|
readonly zodSchema: z.ZodObject<{
|
|
104573
105746
|
company_id: z.ZodNumber;
|
|
@@ -106953,7 +108126,7 @@ declare abstract class Pipe<Payload extends {
|
|
|
106953
108126
|
} | null;
|
|
106954
108127
|
label: "Claimed" | "Bucket counter" | "Found in bucket" | "Event count" | "Last event at" | "Sales signals" | "Signal" | "Signal count" | "Signal window start" | "Formula result" | "Company description" | "Cleaned company name" | "Scrape result - Markdown" | "Website internal links" | "Scrape result - HTML" | "Website URL" | "URLs" | "Clado person profile" | "Full name" | "Profile headline" | "LinkedIn profile URL" | "Job title" | "Company industry" | "Company region" | "Location hint" | "Competitor list" | "Acquisition history" | "Company news list" | "Estimated Annual Revenue" | "Funding history" | "Total funding (USD)" | "Deal name" | "Deal amount" | "Founding year" | "Technology list" | "Spending Trend" | "Builtwith technology response" | "Follower count" | "Mobile" | "Phone" | "Landline" | "Job description" | "Email address" | "Personal email" | "Alternate personal email" | "Latest news" | "Work email" | "Headcount" | "Company website URL" | "Company domain" | "Company name" | "Clado person match" | "Icypeas person match" | "Icypeas company match" | "First name" | "Addressee name" | "Avatar URL" | "Address line 1" | "Address line 2" | "Address city" | "Address country" | "State" | "Zip code" | "Last name" | "Estimated salary" | "Skills" | "Is work email result" | "IP address" | "Email validation" | "Professional profile" | "Developer profile URL" | "Alternative developer profile URLs" | "Recrent linkedIn posts" | "Company LinkedIn profile URL" | "Resend mail success" | "Resend contact id" | "lemlist lead id" | "lemlist enrollment" | "Amplemarket sequence id" | "Sheet name" | "String input" | "Domain" | "URL input" | "Slugified value" | "Timestamp" | "HTTP response status" | "HTTP response body" | "HTTP response headers" | "Luma ID" | "Registered at" | "Event guest match" | "Google Calendar event ID" | "Event title" | "Attendee emails" | "Event match" | "Record ID" | "Record IDs" | "Rows found" | "Rows deleted" | "Matching rows" | "Matching row IDs" | "Gmail e-mail success" | "Gmail draft ID" | "Slack message success" | "A markdown email" | "Message" | "Subject Line" | "Template Output" | "Validation status" | "Million Verifier match" | "ZeroBounce Validation Status" | "ZeroBounce Validation Match" | "Input objects" | "Created sheet" | "Merge Result" | "Extract Result" | "Exa Match Evaluation" | "Company match" | "Person match" | "Person profile" | "Primary job title" | "Primary seniority" | "Primary company domain" | "LinkedIn post" | "Match score" | "Company enrichment match" | "Company identity matches" | "Post list" | "Crustdata Post list" | "Role finder match" | "Post text" | "Post ID" | "CompanyEnrich matches" | "Logo URL" | "Company Social URL" | "Professional profile (LinkedIn)" | "HubSpot contact found" | "HubSpot contact" | "HubSpot companies found" | "HubSpot company" | "HubSpot company matches" | "HubSpot deals found" | "HubSpot deal" | "HubSpot deal matches" | "HubSpot object ID" | "HubSpot owner ID" | "Owned records" | "HubSpot owner" | "HubSpot update result" | "HubSpot associations found" | "HubSpot associated objects" | "HubSpot activity result" | "Salesforce record ID" | "Salesforce person found" | "Salesforce accounts found" | "Salesforce opportunities found" | "Salesforce record found" | "Salesforce record created" | "Salesforce contact" | "Salesforce lead" | "Salesforce account" | "Salesforce account matches" | "Salesforce opportunity" | "Salesforce opportunity matches" | "Salesforce user" | "Salesforce person" | "Salesforce record" | "Salesforce update result" | "Salesforce activities found" | "Salesforce last activity date" | "Salesforce activities" | "Salesforce activity result" | "LinkedIn Profile URL" | "Attio record ID" | "Attio entry ID" | "Attio person found" | "Attio person" | "Attio companies found" | "Attio company" | "Attio company matches" | "Attio deals found" | "Attio deal" | "Attio deal matches" | "Attio list entry" | "Attio record found" | "Attio record" | "Attio update result" | "Attio activities found" | "Attio last activity date" | "Attio activities" | "Attio workspace member ID" | "Attio workspace member";
|
|
106955
108128
|
isCatalogFIeld: boolean;
|
|
106956
|
-
order: 10 | 45 | 46 | 30 | 43 | 42 | 41 |
|
|
108129
|
+
order: 10 | 40 | 45 | 46 | 30 | 43 | 42 | 41 | 11 | 20 | 21 | 22 | 12 | 90 | 50 | undefined;
|
|
106957
108130
|
isPrimaryOutput: boolean;
|
|
106958
108131
|
};
|
|
106959
108132
|
getOutputFields(): Record<string, PipeOutputField>;
|
|
@@ -107500,6 +108673,73 @@ declare const CladoPersonMatchV2Schema: z.ZodObject<{
|
|
|
107500
108673
|
}, z.core.$strip>;
|
|
107501
108674
|
type CladoPersonMatchV2 = z.infer<typeof CladoPersonMatchV2Schema>;
|
|
107502
108675
|
//#endregion
|
|
108676
|
+
//#region src/fields/json-meta/fields/crustdata-company-match-v2.d.ts
|
|
108677
|
+
declare const CrustdataCompanyMatchV2Schema: z.ZodObject<{
|
|
108678
|
+
crustdata_company_id: z.ZodNullable<z.ZodNumber>;
|
|
108679
|
+
basic_info: z.ZodObject<{
|
|
108680
|
+
name: z.ZodNullable<z.ZodString>;
|
|
108681
|
+
primary_domain: z.ZodNullable<z.ZodString>;
|
|
108682
|
+
website_url: z.ZodNullable<z.ZodString>;
|
|
108683
|
+
professional_network_url: z.ZodNullable<z.ZodString>;
|
|
108684
|
+
description: z.ZodNullable<z.ZodString>;
|
|
108685
|
+
company_type: z.ZodNullable<z.ZodString>;
|
|
108686
|
+
year_founded: z.ZodNullable<z.ZodNumber>;
|
|
108687
|
+
employee_count_range: z.ZodNullable<z.ZodString>;
|
|
108688
|
+
markets: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
108689
|
+
industries: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
108690
|
+
logo_url: z.ZodNullable<z.ZodString>;
|
|
108691
|
+
}, z.core.$strip>;
|
|
108692
|
+
headcount: z.ZodObject<{
|
|
108693
|
+
total: z.ZodNullable<z.ZodNumber>;
|
|
108694
|
+
largest_headcount_country: z.ZodNullable<z.ZodString>;
|
|
108695
|
+
growth_percent_1m: z.ZodNullable<z.ZodNumber>;
|
|
108696
|
+
growth_percent_3m: z.ZodNullable<z.ZodNumber>;
|
|
108697
|
+
growth_percent_6m: z.ZodNullable<z.ZodNumber>;
|
|
108698
|
+
growth_percent_12m: z.ZodNullable<z.ZodNumber>;
|
|
108699
|
+
growth_absolute_1m: z.ZodNullable<z.ZodNumber>;
|
|
108700
|
+
growth_absolute_3m: z.ZodNullable<z.ZodNumber>;
|
|
108701
|
+
growth_absolute_6m: z.ZodNullable<z.ZodNumber>;
|
|
108702
|
+
growth_absolute_12m: z.ZodNullable<z.ZodNumber>;
|
|
108703
|
+
}, z.core.$strip>;
|
|
108704
|
+
funding: z.ZodObject<{
|
|
108705
|
+
total_investment_usd: z.ZodNullable<z.ZodNumber>;
|
|
108706
|
+
last_round_amount_usd: z.ZodNullable<z.ZodNumber>;
|
|
108707
|
+
last_fundraise_date: z.ZodNullable<z.ZodString>;
|
|
108708
|
+
last_round_type: z.ZodNullable<z.ZodString>;
|
|
108709
|
+
investors: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
108710
|
+
}, z.core.$strip>;
|
|
108711
|
+
locations: z.ZodObject<{
|
|
108712
|
+
country: z.ZodNullable<z.ZodString>;
|
|
108713
|
+
headquarters: z.ZodNullable<z.ZodString>;
|
|
108714
|
+
state: z.ZodNullable<z.ZodString>;
|
|
108715
|
+
street_address: z.ZodNullable<z.ZodString>;
|
|
108716
|
+
all_office_addresses: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
108717
|
+
}, z.core.$strip>;
|
|
108718
|
+
taxonomy: z.ZodObject<{
|
|
108719
|
+
professional_network_industry: z.ZodNullable<z.ZodString>;
|
|
108720
|
+
professional_network_industries: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
108721
|
+
professional_network_specialities: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
108722
|
+
categories: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
108723
|
+
}, z.core.$strip>;
|
|
108724
|
+
revenue: z.ZodObject<{
|
|
108725
|
+
estimated_lower_bound_usd: z.ZodNullable<z.ZodNumber>;
|
|
108726
|
+
estimated_upper_bound_usd: z.ZodNullable<z.ZodNumber>;
|
|
108727
|
+
ipo_date: z.ZodNullable<z.ZodString>;
|
|
108728
|
+
stock_symbols: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
108729
|
+
fiscal_year_end: z.ZodNullable<z.ZodString>;
|
|
108730
|
+
acquisition_status: z.ZodNullable<z.ZodString>;
|
|
108731
|
+
}, z.core.$strip>;
|
|
108732
|
+
social_profiles: z.ZodObject<{
|
|
108733
|
+
crunchbase_url: z.ZodNullable<z.ZodString>;
|
|
108734
|
+
crunchbase_uuid: z.ZodNullable<z.ZodString>;
|
|
108735
|
+
twitter_url: z.ZodNullable<z.ZodString>;
|
|
108736
|
+
professional_network_url: z.ZodNullable<z.ZodString>;
|
|
108737
|
+
professional_network_id: z.ZodNullable<z.ZodString>;
|
|
108738
|
+
}, z.core.$strip>;
|
|
108739
|
+
}, z.core.$strip>;
|
|
108740
|
+
type CrustdataCompanyMatchV2Field = z.infer<typeof CrustdataCompanyMatchV2Schema>;
|
|
108741
|
+
declare const crustdataCompanyMatchV2ExampleValue: CrustdataCompanyMatchV2Field;
|
|
108742
|
+
//#endregion
|
|
107503
108743
|
//#region src/fields/json-meta/fields/hubspot-matches.d.ts
|
|
107504
108744
|
declare const CONTACT_STANDARD_PROPERTIES: readonly ["email", "firstname", "lastname", "phone", "mobilephone", "jobtitle", "company", "lifecyclestage", "hs_lead_status", "hubspot_owner_id", "city", "country", "website", "createdate", "lastmodifieddate"];
|
|
107505
108745
|
declare const COMPANY_STANDARD_PROPERTIES: readonly ["name", "domain", "website", "industry", "numberofemployees", "annualrevenue", "phone", "city", "country", "lifecyclestage", "hubspot_owner_id", "description", "createdate", "hs_lastmodifieddate"];
|
|
@@ -112958,14 +114198,45 @@ declare function catalogInput(field: NamedFieldEntry, config: {
|
|
|
112958
114198
|
alias?: string | undefined;
|
|
112959
114199
|
}> | undefined;
|
|
112960
114200
|
} | null | undefined): {
|
|
112961
|
-
name: "name" | "profile_url" | "skills" | "job_title" | "company_name" | "company_social_url" | "job_description" | "headcount" | "company_industry" | "message" | "email" | "company_description" | "cleaned_company_name" | "company_region" | "location_hint" | "estimated_revenue" | "founded_year" | "technology_list" | "spending_trend" | "technology_match_builtwith" | "number_of_social_followers" | "personal_email" | "alternate_personal_emails" | "company_news_summary" | "work_email" | "company_website_url" | "company_domain" | "first_name" | "addressee_name" | "address_line_1" | "address_line_2" | "profile_headline" | "address_city" | "address_country" | "address_state" | "zip_code" | "last_name" | "is_work_email" | "companyenrich_match" | "companyenrich_matches" | "ip_address" | "avatar_url" | "estimated_salary" | "is_email_valid" | "developer_profile_url" | "alternative_developer_profile_urls" | "company_profile_url" | "profile_posts" | "clado_person_match" | "clado_person_match_v2" | "icypeas_person_match" | "icypeas_company_match" | "clado_person_profile" | "resend_email_success" | "email_body" | "email_subject" | "profile" | "mobile" | "landline" | "phone" | "slack_message_success" | "funding_history" | "funding_total_usd" | "deal_name" | "deal_amount" | "template_output" | "gmail_email_success" | "gmail_draft_id" | "zerobounce_validation_status" | "zerobounce_validation_match" | "leadmagic_competitor_list" | "leadmagic_acquisition_history" | "leadmagic_company_news_list" | "merge_result" | "mapped_links" | "website_markdown" | "website_html" | "website_url" | "urls" | "website_links" | "firecrawl_extract_result" | "parallel_extract_result" | "exa_match_evaluation" | "email_validation_status" | "million_validation_match" | "scrape_list_response" | "resend_contact_id" | "sheet_record_id" | "sheet_record_ids" | "sheet_rows_found_count" | "sheet_deleted_count" | "sheet_found_rows" | "sheet_found_row_ids" | "db_rows_found_count" | "db_found_rows" | "input_objects" | "role_finder_match" | "logodev_describe_match" | "logo_url" | "crustdata_company_match" | "crustdata_companyenrich_match" | "crustdata_company_identity_matches" | "crustdata_person_match" | "person_profile_match" | "primary_job_title" | "primary_seniority" | "primary_company_domain" | "parallel_person_entity_match" | "parallel_company_entity_match" | "post_list_string" | "crustdata_post_list" | "crustdata_profile_match_score" | "amplemarket_person_match" | "amplemarket_company_match" | "created_sheet" | "sheet" | "string_input" | "domain" | "url_input" | "slugified" | "timestamp" | "http_response_status" | "http_response_body" | "http_response_headers" | "luma_id" | "registered_at" | "luma_event_guest_match" | "google_calendar_event_id" | "event_title" | "attendee_emails" | "calendar_event_match" | "post_match" | "post_text" | "post_id" | "lemlist_lead_id" | "lemlist_enrollment_result" | "amplemarket_sequence_id" | "is_claim_successful" | "bucket_counter" | "found_in_bucket" | "bucket_event_count" | "bucket_event_last_at" | "signal_list" | "signal_match" | "signal_count" | "signal_window_start" | "formula_result" | "hubspot_contact_found" | "hubspot_contact_match" | "hubspot_companies_found_count" | "hubspot_company_match" | "hubspot_company_matches" | "hubspot_deals_found_count" | "hubspot_deal_match" | "hubspot_deal_matches" | "hubspot_owner_id" | "hubspot_owned_count" | "hubspot_owner_match" | "hubspot_object_id" | "hubspot_update_result" | "hubspot_associated_count" | "hubspot_associated_objects" | "hubspot_activity_result" | "salesforce_record_id" | "salesforce_owned_count" | "salesforce_person_found" | "salesforce_accounts_found_count" | "salesforce_opportunities_found_count" | "salesforce_record_found" | "salesforce_record_created" | "salesforce_contact_match" | "salesforce_lead_match" | "salesforce_account_match" | "salesforce_account_matches" | "salesforce_opportunity_match" | "salesforce_opportunity_matches" | "salesforce_user_match" | "salesforce_person_match" | "salesforce_record_match" | "salesforce_update_result" | "salesforce_activities" | "salesforce_activities_found_count" | "salesforce_last_activity_date" | "salesforce_activity_result" | "attio_record_id" | "attio_entry_id" | "attio_person_found" | "attio_person_match" | "attio_companies_found_count" | "attio_company_match" | "attio_company_matches" | "attio_deals_found_count" | "attio_deal_match" | "attio_deal_matches" | "attio_entry_match" | "attio_record_found" | "attio_record_match" | "attio_update_result" | "attio_activities" | "attio_activities_found_count" | "attio_last_activity_date" | "attio_workspace_member_id" | "attio_workspace_member_match" | "professional_profile_url" | "professional_profile" | "mobile_number";
|
|
112962
|
-
description: "Whether this row won the bucket claim (true → proceed) or the key was already taken (resolves no_result)." | "The number a counter bucket assigned to this row's key (stable across re-runs of the same key)." | "Whether the row's key is present (and live) in the checked bucket." | "How often this row's key has matched the countif condition so far (0 before any event). Alias it to name what is counted (e.g. error_count)." | "When this row's key last matched the countif condition (ISO 8601, UTC; null before any event). Alias it to name the moment (e.g. last_successfully_enriched_at)." | "Sales signals detected in the scan window — one entry per moment in time (job change, promotion, role change, work anniversary, graduation), each with a stable signal_id for downstream dedup." | "ONE standardized sales signal — the single input column of a signals table. Every signals:* producer emits this same shape (person- or company-scoped), so the table needs no other input columns: every downstream column (signal_id, category, occurred_at, company_domain, profile_url, metadata details, …) is json-extracted from this payload." | "Number of signals in the latest scan (0 when none) — flat mirror of the signals list so conditions can reference it." | "Per-row scan-window start date (YYYY-MM-DD). Feed it to a signals pipe to override the default lookback — e.g. computed from re-enrichment cadence by formula:run@1." | "The value returned by the formula. Type and format follow the formula pipe's result type setting." | "A summary of the main business purpose and objectives." | "The standardized and cleaned version of the company name, ensuring consistency across different entries." | "Markdown-formatted scrape of a website." | "A list of website links." | "HTML-formatted scrape of a website." | "Generic URL of a website." | "List of URLs" | "List of URLs scraped from a website" | "Fully enriched people profile" | "The industry in which the company operates." | "The region corresponding to the company's country." | "An optional hint to help pinpoint a person's or company's location." | "A list of the top competitors for a given company as provided by LeadMagic" | "A list of acquisitions by a given company" | "A list of company news" | "The estimated annual revenue of the company." | "List of corporate funding rounds." | "Amount of total known funding" | "Name of the sales deal / opportunity." | "Monetary value of the sales deal / opportunity." | "The year the company was founded." | "A flat list of technologies used by a company" | "Technology spending trend over the last 2 years. Average deviation between measuring points in %." | "A datastructure containing the technologies used by this company" | "Social followers (or zero if not found)." | "Mobile telephone number of a person." | "A generic field for phone numbers. Can be mobile or landline." | "A landline phone number" | "Current job title of a person" | "Description of current job" | "A union field that can contain both professional and personal email addresses." | "The personal email address of a prospect." | "The personal email addresses that are associated with a prospect but less likely to be the primary email address of a prospect." | "Latest company news." | "Email address of a person connection to their place of employment." | "Total number of people employed in a particular organization" | "Website URL of a related company." | "Bare domain of a related company. Example: stripe.com (no scheme, no path)." | "Name of a company." | "Object returned from a Clado people search." | "Object returned from a Icypeas people search" | "First name of a person." | "Recipient name in the format required by postal services." | "URL for profile picture" | "First line of an address (e.g. street address)" | "The formatted address of a company’s headquarters." | "Name of a city as needed for an address." | "Name of a country as needed for an address." | "Name of a state." | "A postal zip code. Usually a combination of numbers and letters." | "Last name of a person." | "Estimated total salary in USD." | "List of professional skills" | "Check if a given email is a work email." | "The full name of a person. Usually a combination of first and last name." | "IP Address of a person" | "Check if an email address is valid and can receive emails." | "A standardized format for returning LinkedIn profile data." | "A person's LinkedIn profile URL." | "A person's primary developer profile URL (e.g. GitHub)." | "Additional developer profile URLs (GitHub, GitLab, etc.) discovered for the person." | "List of recent LinkedIn posts in JSON format." | "Professional profile headline" | "Company LinkedIn URL." | "Result of email sending action using Resend" | "Id of a single resend contact" | "Id of the lead created in a lemlist campaign." | "Leaner snake_case object describing a lead's enrollment into a lemlist campaign." | "Id of the Amplemarket sequence the lead was enrolled into." | "Name of a pipe0 sheet" | "Input field of type string" | "A domain field." | "Input field of type string and URL format" | "A value that has been stripped of characters not found in slugs." | "The date-time at which the pipe ran (ISO 8601, UTC), optionally shifted/truncated by the pipe's config. Alias it to name the moment it records (e.g. last_attempted_at, next_review_at)." | "HTTP status code returned by the upstream endpoint." | "Parsed JSON body returned by the upstream endpoint." | "Response headers returned by the upstream endpoint as a flat key-value map." | "Unique identifier of the guest's event registration in Luma." | "ISO timestamp of when the guest registered for the event." | "Full event guest object returned by Luma." | "Identifier of the event in Google Calendar, used for dedup and single-event lookups. Recurring events are expanded, so each occurrence has its own stable instance ID." | "Title (summary) of the calendar event." | "Email addresses of the event's attendees. Meeting rooms and other resources are excluded; large events may return a truncated guest list." | "Standardized calendar event (provider-neutral): title, start/end, timezone, normalized type, location, organizer and attendee emails, event link, and virtual meeting link." | "ID of sheet record" | "IDs sheet records" | "Total number of matching rows in the target sheet (not capped by the row limit)" | "Number of rows deleted from the target sheet (0 when nothing matched or the sheet does not exist yet)." | "The matching rows of the target sheet — each row is its record id plus one entry per column" | "Stable record IDs of the matching rows in the target sheet" | "Total number of rows matched by the query (not capped by the row limit)" | "The rows returned by the query, keyed by the result set's column names" | "Result of email sending action using Gmail" | "ID of the draft created in the connected Gmail account" | "Result of sending a message using Slack" | "The test of an email formatted as markdown" | "A markdown message that be send to any chat app." | "Subject line for email" | "Template value where the tags are replaces with real values" | "Email validation status. Allowed values are: 'valid', 'invalid', 'catch_all', 'unknown'" | "Validation status as returned from ZeroBounce single validation" | "Full validation object as returned by ZeroBounce" | "List of unstructured input objects" | "Reference to a created sheet" | "Result of a firecrawl extract operation" | "Flat list of Parallel Extract results (url, title, publish_date, excerpts)." | "Exa search result." | "CompanyEnrich response object" | "Crustdata company match object" | "Standardized LinkedIn person profile: identity, location, employment and education history, skills, and languages." | "Job title at the person's primary current employer (mirrors person_profile_match.primary_job_title). Null when the person has no current employment." | "Highest seniority bucket across the person's current roles (mirrors person_profile_match.highest_current_seniority_level). One of: \"c_suite\", \"leadership\", \"manager\", \"senior_ic\", \"ic\", \"frontline\", \"junior\", \"unknown\" — so a condition like matches \"^(c_suite|leadership|manager)$\" selects manager-and-above." | "Company domain of the person's primary current employer (mirrors person_profile_match.primary_company_domain) — feeds CRM company-match pipes directly." | "A detailed representation of a LinkedIn post" | "Parallel person match object parsed from the entity description" | "Parallel company match object parsed from the entity description" | "A number between 1 and 0 indicating the confidence that the profile belongs to the input email address." | "Crustdata company enrichment match." | "List of Crustdata company candidates matched by name or domain." | "LinkedIn post list" | "Rich JSON post list" | "Result of a role finder operation" | "Raw text content of a social media post" | "Stable identifier of the post (its LinkedIn share URN)" | "Person match object as returned by Amplemarket" | "Company match object as returned by Amplemarket" | "CompanyEnrich response list." | "Company or organization logo" | "Get company logos & brand data" | "Social Media URL for a given company (e.g. LinkedIn profile URL)." | "Whether a HubSpot contact matched the email (a clean miss is not an error)." | "One HubSpot contact record: id, url, and the standard property set as flat keys; picked custom properties nest under custom_properties. Match-pipe output also carries matched_by." | "Number of HubSpot companies matching the domain. Domain is HubSpot's dedupe key but not unique — multiple matches are normal." | "One HubSpot company record: id, url, and the standard property set as flat keys; picked custom properties nest under custom_properties." | "All HubSpot companies matching the domain, each with id, url, matched_by, and the selected properties." | "Number of HubSpot deals associated with the matched company or contact." | "One HubSpot deal record: id, url, and the standard property set as flat keys; picked custom properties nest under custom_properties." | "Matched HubSpot deals (sorted by close date, newest first), each with id, url, and the selected properties." | "Record ID (hs_object_id) of the HubSpot record — the identifier to write back to it (object:update, object:associations)." | "ID of the HubSpot owner (user) — the value stored in `hubspot_owner_id` properties on contacts, companies, and deals." | "Number of records of the selected object type owned by this HubSpot owner (only when ownership counts are enabled)." | "The HubSpot owner record: id, email, name, archived flag, and team memberships." | "Result of the HubSpot update: id, url, object type, and updated property names." | "Number of associated HubSpot objects found for the source record." | "Associated HubSpot objects, each with id, url, association labels, and the selected properties under properties." | "Result of logging a HubSpot engagement: id, url, the engagement type, and the record it was associated to." | "18-character ID of the Salesforce record — the identifier to write back to it (record:update, record:lookup). Every Salesforce surface emits this same column, so it chains regardless of source." | "Number of records of the selected object type owned by this Salesforce user (only when ownership counts are enabled)." | "Whether the email matched a Salesforce Contact, Lead, or Person Account (a clean miss is not an error)." | "Number of Salesforce accounts matching the domain. Accounts have no unique domain key — multiple matches are normal." | "Number of Salesforce opportunities reached via the matched account or contact role." | "Whether the record ID resolved to a live Salesforce record (deleted/missing is a clean miss, not an error)." | "Whether the assert created a new record (true) or updated an existing one matched by the external ID (false)." | "One Salesforce contact record: id, url, and the standard field set as flat typed keys; picked custom fields nest under custom_properties." | "One Salesforce lead record: id, url, and the standard field set as flat typed keys (including IsConverted/ConvertedContactId); picked custom fields nest under custom_properties." | "One Salesforce account record: id, url, and the standard field set as flat typed keys; picked custom fields nest under custom_properties." | "All Salesforce accounts matching the domain (oldest first), each with id, url, matched_variant, and the selected fields." | "One Salesforce opportunity record: id, url, and the standard field set as flat typed keys (IsClosed/IsWon carry the org-invariant status); picked custom fields nest under custom_properties." | "Matched Salesforce opportunities (newest close date first), each with id, url, contact_roles edge metadata, and the selected fields." | "One Salesforce user record: id, url, and the standard field set as flat typed keys; picked custom fields nest under custom_properties." | "The matched Salesforce person across Contact, Lead, and Person Account shapes: object_type says which; keys foreign to the matched shape are null. Carries matched_by and is_converted_redirect." | "A generic Salesforce record (any object): id, url, object_type, and ALL fields visible to the connected user nested under record." | "Result of the Salesforce update: id, url, object type, updated field names, and the fresh post-write record (formulas/triggers may rewrite values after save)." | "Total tasks and events on the record's timeline matching the filters — the true total before the display limit." | "Most recent activity date across the record's tasks and events (null when the timeline is empty) — chain a run_if on it to gate stale records." | "The record's activity timeline (tasks and events, newest first), each with id, url, object_type, subject, status, activity_date, subtype, who_id/what_id anchors, and picked custom fields under custom_properties." | "Result of logging a Salesforce activity: id, url, subject, subtype, the who_id/what_id anchors, and created (false only when an idempotency key matched an existing record)." | "Record ID of the Attio record — the identifier to write back to it (record:lookup, record:update)." | "ID of the Attio list entry (a record can sit in a list more than once; the entry carries the list-level attributes such as stage)." | "Whether an Attio person matched the email (a clean miss is not an error)." | "One Attio person record: id, url, and the standard attribute set as flat keys; picked custom attributes nest under custom_properties. Match-pipe output also carries matched_by." | "Number of Attio companies matching the domain. Exact domain values are unique (≤1); root-domain matching can legitimately return several subdomain records." | "One Attio company record: id, url, and the standard attribute set as flat keys; picked custom attributes nest under custom_properties." | "All Attio companies matching the domain, each with id, url, matched_on, and the selected attributes." | "Number of Attio deals associated with the matched company or person." | "One Attio deal record: id, url, and the standard attribute set as flat keys; picked custom attributes nest under custom_properties. Stage titles are workspace-defined." | "Matched Attio deals (newest first), each with id, url, and the selected attributes." | "One Attio list entry: entry id, the parent record's url and id, entry-level attribute values under entry_values, and picked parent attributes under custom_properties." | "Whether an Attio record was found (a clean miss is not an error)." | "One Attio record of any object (custom objects included): id, url, object, attribute values under values, and picked attributes under custom_properties." | "Result of the Attio update: id, url, object, and updated attribute slugs." | "Number of Attio activities (notes, meetings, tasks) linked to the record — the true total before the display cap." | "Timestamp of the most recent Attio activity linked to the record — the chainable staleness gate (null when there is none)." | "Per-record activity timeline merged from Attio notes, meetings, and tasks (newest first): each item carries id, type, title, content, occurred_at, url, and type-specific fields." | "Workspace member ID of the Attio user — matches actor-reference attributes (e.g. a deal's owner) on other Attio records." | "One Attio workspace member: id, email, name, access level, and avatar URL.";
|
|
114201
|
+
name: "name" | "profile_url" | "skills" | "job_title" | "company_name" | "company_social_url" | "job_description" | "headcount" | "company_industry" | "message" | "email" | "company_description" | "cleaned_company_name" | "company_region" | "location_hint" | "estimated_revenue" | "founded_year" | "technology_list" | "spending_trend" | "technology_match_builtwith" | "number_of_social_followers" | "personal_email" | "alternate_personal_emails" | "company_news_summary" | "work_email" | "company_website_url" | "company_domain" | "first_name" | "addressee_name" | "address_line_1" | "address_line_2" | "profile_headline" | "address_city" | "address_country" | "address_state" | "zip_code" | "last_name" | "is_work_email" | "companyenrich_match" | "companyenrich_matches" | "ip_address" | "avatar_url" | "estimated_salary" | "is_email_valid" | "developer_profile_url" | "alternative_developer_profile_urls" | "company_profile_url" | "profile_posts" | "clado_person_match" | "clado_person_match_v2" | "icypeas_person_match" | "icypeas_company_match" | "clado_person_profile" | "resend_email_success" | "email_body" | "email_subject" | "profile" | "mobile" | "landline" | "phone" | "slack_message_success" | "funding_history" | "funding_total_usd" | "deal_name" | "deal_amount" | "template_output" | "gmail_email_success" | "gmail_draft_id" | "zerobounce_validation_status" | "zerobounce_validation_match" | "leadmagic_competitor_list" | "leadmagic_acquisition_history" | "leadmagic_company_news_list" | "merge_result" | "mapped_links" | "website_markdown" | "website_html" | "website_url" | "urls" | "website_links" | "firecrawl_extract_result" | "parallel_extract_result" | "exa_match_evaluation" | "email_validation_status" | "million_validation_match" | "scrape_list_response" | "resend_contact_id" | "sheet_record_id" | "sheet_record_ids" | "sheet_rows_found_count" | "sheet_deleted_count" | "sheet_found_rows" | "sheet_found_row_ids" | "db_rows_found_count" | "db_found_rows" | "input_objects" | "role_finder_match" | "logodev_describe_match" | "logo_url" | "crustdata_company_match" | "crustdata_company_match_v2" | "crustdata_companyenrich_match" | "crustdata_company_identity_matches" | "crustdata_person_match" | "person_profile_match" | "primary_job_title" | "primary_seniority" | "primary_company_domain" | "parallel_person_entity_match" | "parallel_company_entity_match" | "post_list_string" | "crustdata_post_list" | "crustdata_profile_match_score" | "amplemarket_person_match" | "amplemarket_company_match" | "created_sheet" | "sheet" | "string_input" | "domain" | "url_input" | "slugified" | "timestamp" | "http_response_status" | "http_response_body" | "http_response_headers" | "luma_id" | "registered_at" | "luma_event_guest_match" | "google_calendar_event_id" | "event_title" | "attendee_emails" | "calendar_event_match" | "post_match" | "post_text" | "post_id" | "lemlist_lead_id" | "lemlist_enrollment_result" | "amplemarket_sequence_id" | "is_claim_successful" | "bucket_counter" | "found_in_bucket" | "bucket_event_count" | "bucket_event_last_at" | "signal_list" | "signal_match" | "signal_count" | "signal_window_start" | "formula_result" | "hubspot_contact_found" | "hubspot_contact_match" | "hubspot_companies_found_count" | "hubspot_company_match" | "hubspot_company_matches" | "hubspot_deals_found_count" | "hubspot_deal_match" | "hubspot_deal_matches" | "hubspot_owner_id" | "hubspot_owned_count" | "hubspot_owner_match" | "hubspot_object_id" | "hubspot_update_result" | "hubspot_associated_count" | "hubspot_associated_objects" | "hubspot_activity_result" | "salesforce_record_id" | "salesforce_owned_count" | "salesforce_person_found" | "salesforce_accounts_found_count" | "salesforce_opportunities_found_count" | "salesforce_record_found" | "salesforce_record_created" | "salesforce_contact_match" | "salesforce_lead_match" | "salesforce_account_match" | "salesforce_account_matches" | "salesforce_opportunity_match" | "salesforce_opportunity_matches" | "salesforce_user_match" | "salesforce_person_match" | "salesforce_record_match" | "salesforce_update_result" | "salesforce_activities" | "salesforce_activities_found_count" | "salesforce_last_activity_date" | "salesforce_activity_result" | "attio_record_id" | "attio_entry_id" | "attio_person_found" | "attio_person_match" | "attio_companies_found_count" | "attio_company_match" | "attio_company_matches" | "attio_deals_found_count" | "attio_deal_match" | "attio_deal_matches" | "attio_entry_match" | "attio_record_found" | "attio_record_match" | "attio_update_result" | "attio_activities" | "attio_activities_found_count" | "attio_last_activity_date" | "attio_workspace_member_id" | "attio_workspace_member_match" | "professional_profile_url" | "professional_profile" | "mobile_number";
|
|
114202
|
+
description: "Whether this row won the bucket claim (true → proceed) or the key was already taken (resolves no_result)." | "The number a counter bucket assigned to this row's key (stable across re-runs of the same key)." | "Whether the row's key is present (and live) in the checked bucket." | "How often this row's key has matched the countif condition so far (0 before any event). Alias it to name what is counted (e.g. error_count)." | "When this row's key last matched the countif condition (ISO 8601, UTC; null before any event). Alias it to name the moment (e.g. last_successfully_enriched_at)." | "Sales signals detected in the scan window — one entry per moment in time (job change, promotion, role change, work anniversary, graduation), each with a stable signal_id for downstream dedup." | "ONE standardized sales signal — the single input column of a signals table. Every signals:* producer emits this same shape (person- or company-scoped), so the table needs no other input columns: every downstream column (signal_id, category, occurred_at, company_domain, profile_url, metadata details, …) is json-extracted from this payload." | "Number of signals in the latest scan (0 when none) — flat mirror of the signals list so conditions can reference it." | "Per-row scan-window start date (YYYY-MM-DD). Feed it to a signals pipe to override the default lookback — e.g. computed from re-enrichment cadence by formula:run@1." | "The value returned by the formula. Type and format follow the formula pipe's result type setting." | "A summary of the main business purpose and objectives." | "The standardized and cleaned version of the company name, ensuring consistency across different entries." | "Markdown-formatted scrape of a website." | "A list of website links." | "HTML-formatted scrape of a website." | "Generic URL of a website." | "List of URLs" | "List of URLs scraped from a website" | "Fully enriched people profile" | "The industry in which the company operates." | "The region corresponding to the company's country." | "An optional hint to help pinpoint a person's or company's location." | "A list of the top competitors for a given company as provided by LeadMagic" | "A list of acquisitions by a given company" | "A list of company news" | "The estimated annual revenue of the company." | "List of corporate funding rounds." | "Amount of total known funding" | "Name of the sales deal / opportunity." | "Monetary value of the sales deal / opportunity." | "The year the company was founded." | "A flat list of technologies used by a company" | "Technology spending trend over the last 2 years. Average deviation between measuring points in %." | "A datastructure containing the technologies used by this company" | "Social followers (or zero if not found)." | "Mobile telephone number of a person." | "A generic field for phone numbers. Can be mobile or landline." | "A landline phone number" | "Current job title of a person" | "Description of current job" | "A union field that can contain both professional and personal email addresses." | "The personal email address of a prospect." | "The personal email addresses that are associated with a prospect but less likely to be the primary email address of a prospect." | "Latest company news." | "Email address of a person connection to their place of employment." | "Total number of people employed in a particular organization" | "Website URL of a related company." | "Bare domain of a related company. Example: stripe.com (no scheme, no path)." | "Name of a company." | "Object returned from a Clado people search." | "Object returned from a Icypeas people search" | "First name of a person." | "Recipient name in the format required by postal services." | "URL for profile picture" | "First line of an address (e.g. street address)" | "The formatted address of a company’s headquarters." | "Name of a city as needed for an address." | "Name of a country as needed for an address." | "Name of a state." | "A postal zip code. Usually a combination of numbers and letters." | "Last name of a person." | "Estimated total salary in USD." | "List of professional skills" | "Check if a given email is a work email." | "The full name of a person. Usually a combination of first and last name." | "IP Address of a person" | "Check if an email address is valid and can receive emails." | "A standardized format for returning LinkedIn profile data." | "A person's LinkedIn profile URL." | "A person's primary developer profile URL (e.g. GitHub)." | "Additional developer profile URLs (GitHub, GitLab, etc.) discovered for the person." | "List of recent LinkedIn posts in JSON format." | "Professional profile headline" | "Company LinkedIn URL." | "Result of email sending action using Resend" | "Id of a single resend contact" | "Id of the lead created in a lemlist campaign." | "Leaner snake_case object describing a lead's enrollment into a lemlist campaign." | "Id of the Amplemarket sequence the lead was enrolled into." | "Name of a pipe0 sheet" | "Input field of type string" | "A domain field." | "Input field of type string and URL format" | "A value that has been stripped of characters not found in slugs." | "The date-time at which the pipe ran (ISO 8601, UTC), optionally shifted/truncated by the pipe's config. Alias it to name the moment it records (e.g. last_attempted_at, next_review_at)." | "HTTP status code returned by the upstream endpoint." | "Parsed JSON body returned by the upstream endpoint." | "Response headers returned by the upstream endpoint as a flat key-value map." | "Unique identifier of the guest's event registration in Luma." | "ISO timestamp of when the guest registered for the event." | "Full event guest object returned by Luma." | "Identifier of the event in Google Calendar, used for dedup and single-event lookups. Recurring events are expanded, so each occurrence has its own stable instance ID." | "Title (summary) of the calendar event." | "Email addresses of the event's attendees. Meeting rooms and other resources are excluded; large events may return a truncated guest list." | "Standardized calendar event (provider-neutral): title, start/end, timezone, normalized type, location, organizer and attendee emails, event link, and virtual meeting link." | "ID of sheet record" | "IDs sheet records" | "Total number of matching rows in the target sheet (not capped by the row limit)" | "Number of rows deleted from the target sheet (0 when nothing matched or the sheet does not exist yet)." | "The matching rows of the target sheet — each row is its record id plus one entry per column" | "Stable record IDs of the matching rows in the target sheet" | "Total number of rows matched by the query (not capped by the row limit)" | "The rows returned by the query, keyed by the result set's column names" | "Result of email sending action using Gmail" | "ID of the draft created in the connected Gmail account" | "Result of sending a message using Slack" | "The test of an email formatted as markdown" | "A markdown message that be send to any chat app." | "Subject line for email" | "Template value where the tags are replaces with real values" | "Email validation status. Allowed values are: 'valid', 'invalid', 'catch_all', 'unknown'" | "Validation status as returned from ZeroBounce single validation" | "Full validation object as returned by ZeroBounce" | "List of unstructured input objects" | "Reference to a created sheet" | "Result of a firecrawl extract operation" | "Flat list of Parallel Extract results (url, title, publish_date, excerpts)." | "Exa search result." | "CompanyEnrich response object" | "Crustdata company match object" | "Standardized LinkedIn person profile: identity, location, employment and education history, skills, and languages." | "Job title at the person's primary current employer (mirrors person_profile_match.primary_job_title). Null when the person has no current employment." | "Highest seniority bucket across the person's current roles (mirrors person_profile_match.highest_current_seniority_level). One of: \"c_suite\", \"leadership\", \"manager\", \"senior_ic\", \"ic\", \"frontline\", \"junior\", \"unknown\" — so a condition like matches \"^(c_suite|leadership|manager)$\" selects manager-and-above." | "Company domain of the person's primary current employer (mirrors person_profile_match.primary_company_domain) — feeds CRM company-match pipes directly." | "A detailed representation of a LinkedIn post" | "Parallel person match object parsed from the entity description" | "Parallel company match object parsed from the entity description" | "A number between 1 and 0 indicating the confidence that the profile belongs to the input email address." | "Crustdata company match object (2025-11-01 API generation): identity, headcount and growth, funding, locations, taxonomy, revenue, and social profiles." | "Crustdata company enrichment match." | "List of Crustdata company candidates matched by name or domain." | "LinkedIn post list" | "Rich JSON post list" | "Result of a role finder operation" | "Raw text content of a social media post" | "Stable identifier of the post (its LinkedIn share URN)" | "Person match object as returned by Amplemarket" | "Company match object as returned by Amplemarket" | "CompanyEnrich response list." | "Company or organization logo" | "Get company logos & brand data" | "Social Media URL for a given company (e.g. LinkedIn profile URL)." | "Whether a HubSpot contact matched the email (a clean miss is not an error)." | "One HubSpot contact record: id, url, and the standard property set as flat keys; picked custom properties nest under custom_properties. Match-pipe output also carries matched_by." | "Number of HubSpot companies matching the domain. Domain is HubSpot's dedupe key but not unique — multiple matches are normal." | "One HubSpot company record: id, url, and the standard property set as flat keys; picked custom properties nest under custom_properties." | "All HubSpot companies matching the domain, each with id, url, matched_by, and the selected properties." | "Number of HubSpot deals associated with the matched company or contact." | "One HubSpot deal record: id, url, and the standard property set as flat keys; picked custom properties nest under custom_properties." | "Matched HubSpot deals (sorted by close date, newest first), each with id, url, and the selected properties." | "Record ID (hs_object_id) of the HubSpot record — the identifier to write back to it (object:update, object:associations)." | "ID of the HubSpot owner (user) — the value stored in `hubspot_owner_id` properties on contacts, companies, and deals." | "Number of records of the selected object type owned by this HubSpot owner (only when ownership counts are enabled)." | "The HubSpot owner record: id, email, name, archived flag, and team memberships." | "Result of the HubSpot update: id, url, object type, and updated property names." | "Number of associated HubSpot objects found for the source record." | "Associated HubSpot objects, each with id, url, association labels, and the selected properties under properties." | "Result of logging a HubSpot engagement: id, url, the engagement type, and the record it was associated to." | "18-character ID of the Salesforce record — the identifier to write back to it (record:update, record:lookup). Every Salesforce surface emits this same column, so it chains regardless of source." | "Number of records of the selected object type owned by this Salesforce user (only when ownership counts are enabled)." | "Whether the email matched a Salesforce Contact, Lead, or Person Account (a clean miss is not an error)." | "Number of Salesforce accounts matching the domain. Accounts have no unique domain key — multiple matches are normal." | "Number of Salesforce opportunities reached via the matched account or contact role." | "Whether the record ID resolved to a live Salesforce record (deleted/missing is a clean miss, not an error)." | "Whether the assert created a new record (true) or updated an existing one matched by the external ID (false)." | "One Salesforce contact record: id, url, and the standard field set as flat typed keys; picked custom fields nest under custom_properties." | "One Salesforce lead record: id, url, and the standard field set as flat typed keys (including IsConverted/ConvertedContactId); picked custom fields nest under custom_properties." | "One Salesforce account record: id, url, and the standard field set as flat typed keys; picked custom fields nest under custom_properties." | "All Salesforce accounts matching the domain (oldest first), each with id, url, matched_variant, and the selected fields." | "One Salesforce opportunity record: id, url, and the standard field set as flat typed keys (IsClosed/IsWon carry the org-invariant status); picked custom fields nest under custom_properties." | "Matched Salesforce opportunities (newest close date first), each with id, url, contact_roles edge metadata, and the selected fields." | "One Salesforce user record: id, url, and the standard field set as flat typed keys; picked custom fields nest under custom_properties." | "The matched Salesforce person across Contact, Lead, and Person Account shapes: object_type says which; keys foreign to the matched shape are null. Carries matched_by and is_converted_redirect." | "A generic Salesforce record (any object): id, url, object_type, and ALL fields visible to the connected user nested under record." | "Result of the Salesforce update: id, url, object type, updated field names, and the fresh post-write record (formulas/triggers may rewrite values after save)." | "Total tasks and events on the record's timeline matching the filters — the true total before the display limit." | "Most recent activity date across the record's tasks and events (null when the timeline is empty) — chain a run_if on it to gate stale records." | "The record's activity timeline (tasks and events, newest first), each with id, url, object_type, subject, status, activity_date, subtype, who_id/what_id anchors, and picked custom fields under custom_properties." | "Result of logging a Salesforce activity: id, url, subject, subtype, the who_id/what_id anchors, and created (false only when an idempotency key matched an existing record)." | "Record ID of the Attio record — the identifier to write back to it (record:lookup, record:update)." | "ID of the Attio list entry (a record can sit in a list more than once; the entry carries the list-level attributes such as stage)." | "Whether an Attio person matched the email (a clean miss is not an error)." | "One Attio person record: id, url, and the standard attribute set as flat keys; picked custom attributes nest under custom_properties. Match-pipe output also carries matched_by." | "Number of Attio companies matching the domain. Exact domain values are unique (≤1); root-domain matching can legitimately return several subdomain records." | "One Attio company record: id, url, and the standard attribute set as flat keys; picked custom attributes nest under custom_properties." | "All Attio companies matching the domain, each with id, url, matched_on, and the selected attributes." | "Number of Attio deals associated with the matched company or person." | "One Attio deal record: id, url, and the standard attribute set as flat keys; picked custom attributes nest under custom_properties. Stage titles are workspace-defined." | "Matched Attio deals (newest first), each with id, url, and the selected attributes." | "One Attio list entry: entry id, the parent record's url and id, entry-level attribute values under entry_values, and picked parent attributes under custom_properties." | "Whether an Attio record was found (a clean miss is not an error)." | "One Attio record of any object (custom objects included): id, url, object, attribute values under values, and picked attributes under custom_properties." | "Result of the Attio update: id, url, object, and updated attribute slugs." | "Number of Attio activities (notes, meetings, tasks) linked to the record — the true total before the display cap." | "Timestamp of the most recent Attio activity linked to the record — the chainable staleness gate (null when there is none)." | "Per-record activity timeline merged from Attio notes, meetings, and tasks (newest first): each item carries id, type, title, content, occurred_at, url, and type-specific fields." | "Workspace member ID of the Attio user — matches actor-reference attributes (e.g. a deal's owner) on other Attio records." | "One Attio workspace member: id, email, name, access level, and avatar URL.";
|
|
112963
114203
|
resolvedName: string;
|
|
112964
114204
|
type: "string" | "number" | "boolean" | "unknown" | "json";
|
|
112965
114205
|
label: "Claimed" | "Bucket counter" | "Found in bucket" | "Event count" | "Last event at" | "Sales signals" | "Signal" | "Signal count" | "Signal window start" | "Formula result" | "Company description" | "Cleaned company name" | "Scrape result - Markdown" | "Website internal links" | "Scrape result - HTML" | "Website URL" | "URLs" | "Clado person profile" | "Full name" | "Profile headline" | "LinkedIn profile URL" | "Job title" | "Company industry" | "Company region" | "Location hint" | "Competitor list" | "Acquisition history" | "Company news list" | "Estimated Annual Revenue" | "Funding history" | "Total funding (USD)" | "Deal name" | "Deal amount" | "Founding year" | "Technology list" | "Spending Trend" | "Builtwith technology response" | "Follower count" | "Mobile" | "Phone" | "Landline" | "Job description" | "Email address" | "Personal email" | "Alternate personal email" | "Latest news" | "Work email" | "Headcount" | "Company website URL" | "Company domain" | "Company name" | "Clado person match" | "Icypeas person match" | "Icypeas company match" | "First name" | "Addressee name" | "Avatar URL" | "Address line 1" | "Address line 2" | "Address city" | "Address country" | "State" | "Zip code" | "Last name" | "Estimated salary" | "Skills" | "Is work email result" | "IP address" | "Email validation" | "Professional profile" | "Developer profile URL" | "Alternative developer profile URLs" | "Recrent linkedIn posts" | "Company LinkedIn profile URL" | "Resend mail success" | "Resend contact id" | "lemlist lead id" | "lemlist enrollment" | "Amplemarket sequence id" | "Sheet name" | "String input" | "Domain" | "URL input" | "Slugified value" | "Timestamp" | "HTTP response status" | "HTTP response body" | "HTTP response headers" | "Luma ID" | "Registered at" | "Event guest match" | "Google Calendar event ID" | "Event title" | "Attendee emails" | "Event match" | "Record ID" | "Record IDs" | "Rows found" | "Rows deleted" | "Matching rows" | "Matching row IDs" | "Gmail e-mail success" | "Gmail draft ID" | "Slack message success" | "A markdown email" | "Message" | "Subject Line" | "Template Output" | "Validation status" | "Million Verifier match" | "ZeroBounce Validation Status" | "ZeroBounce Validation Match" | "Input objects" | "Created sheet" | "Merge Result" | "Extract Result" | "Exa Match Evaluation" | "Company match" | "Person match" | "Person profile" | "Primary job title" | "Primary seniority" | "Primary company domain" | "LinkedIn post" | "Match score" | "Company enrichment match" | "Company identity matches" | "Post list" | "Crustdata Post list" | "Role finder match" | "Post text" | "Post ID" | "CompanyEnrich matches" | "Logo URL" | "Company Social URL" | "Professional profile (LinkedIn)" | "HubSpot contact found" | "HubSpot contact" | "HubSpot companies found" | "HubSpot company" | "HubSpot company matches" | "HubSpot deals found" | "HubSpot deal" | "HubSpot deal matches" | "HubSpot object ID" | "HubSpot owner ID" | "Owned records" | "HubSpot owner" | "HubSpot update result" | "HubSpot associations found" | "HubSpot associated objects" | "HubSpot activity result" | "Salesforce record ID" | "Salesforce person found" | "Salesforce accounts found" | "Salesforce opportunities found" | "Salesforce record found" | "Salesforce record created" | "Salesforce contact" | "Salesforce lead" | "Salesforce account" | "Salesforce account matches" | "Salesforce opportunity" | "Salesforce opportunity matches" | "Salesforce user" | "Salesforce person" | "Salesforce record" | "Salesforce update result" | "Salesforce activities found" | "Salesforce last activity date" | "Salesforce activities" | "Salesforce activity result" | "LinkedIn Profile URL" | "Attio record ID" | "Attio entry ID" | "Attio person found" | "Attio person" | "Attio companies found" | "Attio company" | "Attio company matches" | "Attio deals found" | "Attio deal" | "Attio deal matches" | "Attio list entry" | "Attio record found" | "Attio record" | "Attio update result" | "Attio activities found" | "Attio last activity date" | "Attio activities" | "Attio workspace member ID" | "Attio workspace member";
|
|
112966
114206
|
format: "profile_url" | "int" | "date" | "email" | "url" | "address_line_1" | "zip_code" | "phone" | "website_url" | "datetime" | "json_object" | "json_list" | "json_list_string" | "currency" | "markdown" | "text" | "decimal" | "percent" | null;
|
|
112967
114207
|
};
|
|
112968
114208
|
//#endregion
|
|
114209
|
+
//#region src/pipes/pipes-validator/derived-order.d.ts
|
|
114210
|
+
/** Group key of the input-column group; pipe groups use the pipe's config hash. */
|
|
114211
|
+
declare const INPUT_GROUP_KEY = "input";
|
|
114212
|
+
type DerivedGroupedFieldOrder = {
|
|
114213
|
+
/** Group keys in display order ("input" always first). */groupOrder: string[]; /** Per-group resolved field names in display order. */
|
|
114214
|
+
fieldOrder: Record<string, string[]>;
|
|
114215
|
+
};
|
|
114216
|
+
/**
|
|
114217
|
+
* The single definition of column display order, shared by the dash renderer
|
|
114218
|
+
* and the schema-evolution placement math so they can never disagree.
|
|
114219
|
+
*
|
|
114220
|
+
* Groups render contiguously: input first, then pipe groups by the MIN
|
|
114221
|
+
* persisted annotation order among their member fields (topological
|
|
114222
|
+
* `pipe_index` when none — so never-dragged pipes append in dependency
|
|
114223
|
+
* order). Group position must read RAW annotation orders only, never
|
|
114224
|
+
* `def.order`: its pipe-hint fallback (0, 1, 2, …) would put every freshly
|
|
114225
|
+
* added pipe group in front of user-dragged ones.
|
|
114226
|
+
*
|
|
114227
|
+
* Fields within a group: persisted annotation order first; ties (both
|
|
114228
|
+
* absent/equal) fall back to the legacy comparator — primary output first,
|
|
114229
|
+
* then the `def.order` hint (catalog guidance / pipe-declared), then name —
|
|
114230
|
+
* so sheets without persisted orders render exactly as before.
|
|
114231
|
+
*/
|
|
114232
|
+
declare function deriveGroupedFieldOrder({
|
|
114233
|
+
fieldDefinitions,
|
|
114234
|
+
fieldAnnotations
|
|
114235
|
+
}: {
|
|
114236
|
+
fieldDefinitions: Record<string, PipesFieldDefinition>;
|
|
114237
|
+
fieldAnnotations?: FieldAnnotationsType;
|
|
114238
|
+
}): DerivedGroupedFieldOrder;
|
|
114239
|
+
//#endregion
|
|
112969
114240
|
//#region src/pipes/pipes-validator/get-output-field-info-from-dev.d.ts
|
|
112970
114241
|
declare function getOutputFieldInfoFromDef(resolvedName: string, def: PipesFieldDefinition, context: ValidationContext): {
|
|
112971
114242
|
isPrimaryOutput: boolean;
|
|
@@ -118264,13 +119535,13 @@ declare const CalendarEventMatchSchema: z.ZodObject<{
|
|
|
118264
119535
|
event_end: z.ZodNullable<z.ZodString>;
|
|
118265
119536
|
event_timezone: z.ZodNullable<z.ZodString>;
|
|
118266
119537
|
event_type: z.ZodEnum<{
|
|
119538
|
+
other: "other";
|
|
118267
119539
|
meeting: "meeting";
|
|
118268
119540
|
out_of_office: "out_of_office";
|
|
118269
119541
|
focus_time: "focus_time";
|
|
118270
119542
|
working_location: "working_location";
|
|
118271
119543
|
birthday: "birthday";
|
|
118272
119544
|
from_gmail: "from_gmail";
|
|
118273
|
-
other: "other";
|
|
118274
119545
|
}>;
|
|
118275
119546
|
event_location: z.ZodNullable<z.ZodString>;
|
|
118276
119547
|
event_url: z.ZodNullable<z.ZodString>;
|
|
@@ -118580,4 +119851,4 @@ declare const ProfileFieldSchema: z.ZodObject<{
|
|
|
118580
119851
|
}, z.core.$strip>;
|
|
118581
119852
|
type ProfielField = z.infer<typeof ProfileFieldSchema>;
|
|
118582
119853
|
//#endregion
|
|
118583
|
-
export { AI_MODELS, AI_MODEL_CATALOG, AI_MODEL_RAW_USD, ATTIO_APP_SCOPES, ATTIO_ATTRIBUTE_TYPE_TABLE, ATTIO_COMPANIES_STANDARD_PROPERTIES, ATTIO_DEALS_STANDARD_PROPERTIES, ATTIO_PEOPLE_STANDARD_PROPERTIES, ATTIO_SCOPES_ACTIVITY_READ, ATTIO_SCOPES_LISTS_READ, ATTIO_SCOPES_MEMBERS_READ, ATTIO_SCOPES_RECORDS_READ, ATTIO_SCOPES_RECORDS_WRITE, ATTIO_SCOPES_SQL, ATTIO_STANDARD_PROPERTIES_BY_OBJECT, type AgentContext, type AgentContextCtx, type AgentQueryRunner, type AiModelId, type AnalysisResult, AnyPipeConstructor, AnyReportEffectConstructor, AnySheetEffectConstructor, AppError, AsyncIncludeExcludeSelectMeta, AsyncMultiSelectMeta, AttioAttributeRef, AttioAttributeTypeRule, AttioConditionOperator, AttioCoreObject, AttioFlattenRule, AttioStandardProperty, type AutocompleteOption, type AutocompleteSourceKey, type B2BPostMatchField, B2BPostMatchSchema, BUCKET_TYPES, BaseScheetSchemaDto, BillableOperation, BillableOperationDef, BillableOperationEstimate, BillableOperations, BillingMode, BooleanMeta, BucketClaimConfig, BucketClaimConfigSchema, BucketConfig, BucketCounterConfig, BucketCounterConfigSchema, BucketCreationSettings, BucketEntryField, BucketEntryFields, BucketEventCounterConfig, BucketEventCounterConfigSchema, BucketFieldDef, BucketFieldDefSchema, BucketFieldType, BucketFieldTypeSchema, BucketRequirement, BucketSchema, BucketSchemaSchema, BucketType, type BuiltWithTechStackTransformedRespoonse as BuiltWithDomainStack, type BuiltWithTechStackTransformedRespoonse, CALENDAR_EVENT_TYPES, CALLOUT_VARIANTS, CATALOG_SEARCH_WEIGHTS, COMPANY_STANDARD_PROPERTIES, CONTACT_STANDARD_PROPERTIES, CREDIT_USD_VALUE, CURRENT_BUCKET_TYPE_VERSION, type CalendarEventMatch, type CalendarEventType, CalloutVariant, type CatalogEntityFilter, type CatalogFilter, type CatalogPattern, CatalogSchemaRef, CatalogSchemaRefSchema, type CatalogSearchFields, type CatalogSearchTarget, type CladoPersonMatch, type CladoPersonMatchV2, ConciseFieldValue, ConciseFieldValueSchema, Condition, ConditionBlock, ConditionBlockMeta, ConditionBlockSchema, ConditionEvaluationError, ConditionFieldNotFoundError, ConditionOperators, ConditionOperatorsSchema, ConfigField, ConnectorConnection, ConnectorMeta, type ConstantSuggestion, ContextSelectMeta, CostEstimateContext, CursorPaginationMeta, DEAL_STANDARD_PROPERTIES, DEFAULT_MODEL_COPY_WRITING, DEFAULT_MODEL_FAST_REASONING, DEFAULT_MODEL_REASONING, DateRangeMeta, type DedupConfig, type DedupStrategy, type DependencyGraphRelation, DerivedInputFields, type DetectPersonProfileSignalsOptions, Effect, EffectAllSelectionSchema, EffectRowsSelectionSchema, EffectSelectionDto, EffectSelectionSchema, EffectWindowSelectionSchema, EffectsRequest, EffectsRequestSchema, EffectsResponse, EffectsResponseSchema, EffectsRunStatus, EffectsRunStatusSchema, EffectsValidateRequestSchema, EffectsValidateResponseSchema, EffectsValidateStepSchema, EmailValidationStatus, type EnabledIf, type EnabledResult, type EntryAccessLevel, EvaluableField, EvaluableFields, ExactRangeMeta, ExecutionMode, ExpandedFieldValue, ExpandedFieldValueSchema, ExternalProviderName, FIELD_PLACEHOLDERS, FORMULA_RESULT_TYPES, FieldAnnotation, FieldAnnotationSchema, FieldAnnotations, FieldAnnotationsSchema, FieldAnnotationsType, FieldCatalog, type FieldContextArgs, FieldContextCapableMeta, type FieldContextClient, type FieldContextSheetField, type FieldContextSheetSummary, FieldEntry, FieldGroup, FieldMode, FieldName, FieldNameSchema, type FieldPlaceholderKey, FieldReason, FieldReasonSchema, FieldSchemaType, FieldSelectMeta, FieldValue, FieldValueMap, FieldValueSchema, FieldsSelectMeta, FieldsToObjectsConfig, FormCustomization, type FormMask, type FormMaskCatalog, type FormResolvers, FormSection, FormSectionMeta, type FormStore, FormStoreSchema, type FormulaResultType, GeneratedFormInputType, GeneratedInputMeta, GeneratedInputMetaMap, type GetConnectionsArgs, type GetConstantsArgs, type GetSecretsArgs, GroupMap, GroupOverride, HIGH_VOLUME_PRICING_MIN_CREDITS, type HighVolumeEligibleOperation, HighVolumeLevel, type HighVolumeTier, type IconKey, IconWidgetKey, type IcypeasCompanyMatch, type IcypeasPersonMatch, IncludeExcludeMeta, IncludeExcludeSelectMeta, IntegerMeta, JSONExtractSchema, JSONExtraction, JSONExtractionMeta, JSONMeta, JSONMetaSchema, JSONSchemaMeta, JsonFieldType, LazyResolveContext, LooseObjectMeta, type LumaEventGuestMatch, MANAGED_TOKEN_MARGIN, MANUAL_DEFAULT, MAX_SIGNALS_PER_SCAN, ManagedCredits, MinMaxIntMeta, MultiCreateMeta, MultiSelectMeta, NamedFieldEntry, NoConnector, NoConnectorSchema, NullableBooleanMeta, NumberMeta, ObjectHasher, OptionalConnector, OptionalConnectorSchema, type OptionsDef, OrderedMultiCreateMeta, type OrgAccessLevel, type OutputDecl, OutputFieldMeta, PIPE0_DEFAULT_CONNECTION_PUBLIC_ID, PIPE_IDS, PLAYBOOK_IDS, PaginationType, PaginationTypeSchema, ParsedSheetChain, PathMap, PathOverride, type PersonProfileField, PersonProfileFieldSchema, PersonWorkemailWaterfall1Entry, PersonWorkemailWaterfall1PayloadSchema, PersonWorkemailWaterfall1PipeClass, Pipe, Pipe0Error, PipeBaseConfig, PipeCatalog, PipeCatalogEntry, PipeCategory, PipeCategoryEntry, PipeConfigMapByExpecutionType, PipeConnectionRequirement, PipeDef, PipeEntryWithLatestVersion, type PipeFieldContextDef, PipeFitInput, PipeFitOutputField, PipeFitResult, PipeId, PipeIdSchema, PipeInputField, PipeModuleExport, PipeOutputField, PipePayload, PipePayloadInput, PipePayloadMap, PipePayloadSchema, PipePayloadSchemaCatalog, PipeRequestPayloadMap, PipeRunIf, PipeRunIfSchema, PipelineValidationError, type PipesEnvironment, PipesEnvironmentSchema, PipesError, PipesErrorSchema, PipesFieldDefinition, PipesFieldDefinitionSchema, PipesFieldDefinitionWithName, PipesFieldDefinitions, PipesFieldDefinitionsSchema, PipesInMemoryResponse, PipesInput, PipesInputSchema, PipesRecord, PipesRequest, PipesRequestConfig, PipesRequestConfigSchema, PipesRequestPayload, PipesRequestSchema, PipesResponse, PipesResponseSchema, PipesRunIfMeta, PlaybookDef, PlaybookId, PlaybookStep, PlaybookStepKind, PlaybookVariant, ProcessedPipePayloadSchema, ProcessedSearchPayloadSchema, ProcessedSearchesPayloadSchema, ProcessedSheetEffectPayloadSchema, type ProfielField, PromptMeta, PropertyListMeta, ProviderCatalogEntry, ProviderName, ProviderNameSchema, ProviderRateLimitOperation, ProvidersInputMeta, RECORD_FIELD_FORMATS, RECORD_FIELD_TYPES, REJOIN_GAP_DAYS, REPORT_EFFECT_IDS, REPORT_ROW_CAP, REPORT_TAGS, RESERVED_FIELD_NAMES, RUN_IF_OPERATOR_LABELS, RUN_IF_STATUS_OPERATORS, RUN_IF_VALUE_OPERATORS, RUN_STATUS_OPTIONS, RangeMeta, RecordActionDetail, RecordActionDetailSchema, RecordClaimedBy, RecordClaimedBySchema, RecordDiffEntry, RecordDiffEntrySchema, RecordField, RecordFieldFormat, RecordFieldFormatSchema, RecordFieldSchema, RecordFieldStatus, RecordFieldStatusSchema, RecordFieldType, RecordFieldTypeSchema, RecordId, RecordIdSchema, RecordResolvedBy, RecordResolvedBySchema, RecordSchema, ReportChartData, ReportChartDataSchema, ReportData, ReportDataSchema, ReportDataValue, ReportDataValueSchema, ReportEffect, ReportEffectCatalog, ReportEffectDef, ReportEffectId, ReportEffectIdSchema, ReportEffectLifeCycle, ReportEffectPayload, ReportEffectPayloadCatalog, ReportEffectPayloadInput, ReportEffectPayloadMap, ReportEffectPayloadSchema, ReportEffectRunPayload, ReportEffectStepSummary, ReportEffectStepSummarySchema, ReportEffectsOperationResult, ReportEffectsRequest, ReportEffectsRequestSchema, ReportEffectsResponse, ReportEffectsResponseSchema, ReportEffectsValidationResult, ReportEffectsValidationStep, ReportMetricData, ReportMetricDataSchema, type ReportParseIssue, type ReportParseResult, type ReportSegment, ReportStatsData, ReportStatsDataSchema, ReportTableColumn, ReportTableData, ReportTableDataSchema, ReportTagName, ReportUpdateComputeResult, type ReportValidationIssue, type ReportValidationResult, RequestValidationError, RequiredConnector, RequiredConnectorSchema, type Requirement, RequirementSatisfactionResult, ResultColumn, type RichTextNode, RunIfStatusOperatorsSchema, RunIfStatusValueSchema, RunIfValueOperatorsSchema, RunStatus, RunStatusSchema, SALESFORCE_ACCOUNT_STANDARD_PROPERTIES, SALESFORCE_CONTACT_STANDARD_PROPERTIES, SALESFORCE_FIELD_TYPE_TABLE, SALESFORCE_LEAD_STANDARD_PROPERTIES, SALESFORCE_OPPORTUNITY_STANDARD_PROPERTIES, SALESFORCE_PERSON_STANDARD_PROPERTIES, SALESFORCE_STANDARD_PROPERTIES_BY_OBJECT, SALESFORCE_USER_STANDARD_PROPERTIES, SCHEDULED_DEFAULT, SEARCHES_IDS, SEARCH_IDS, SENIORITY_LEVELS, SHEET_EFFECT_IDS, SIGNAL_CATEGORIES, SIGNAL_LABELS, SIGNAL_SCOPES, SIGNAL_SUBCATEGORIES, SIGNAL_TAXONOMY, SIGNAL_TYPES, SIGNAL_WINDOW_DAYS, SalesforceApiError, SalesforceConditionOperator, SalesforceCoreObject, SalesforceDuplicateInfo, SalesforceErrorClass, SalesforceFieldTypeRule, SalesforceStandardProperty, SalesforceValueEncoding, SchemaEvolution, SchemaInputs, SchemaRowMigration, Search, SearchCatalog, SearchCatalogEntry, SearchCatalogTableData, SearchCategory, SearchCategoryEntry, SearchError, SearchErrorSchema, SearchId, SearchIdSchema, SearchMetaEntryWithId, SearchOutputField, SearchPayload, SearchPayloadCatalog, SearchPayloadInput, SearchPayloadInputMeta, SearchPayloadMap, SearchPayloadSchema, SearchRequestPayload, SearchRequestPayloadMap, SearchRequestSchema, SearchRequestType, SearchResponse, SearchResponseSchema, SearchResult, SearchResultField, SearchResultFieldSchema, SearchResultSchema, SearchValidationResult, SearchesCatalog, SearchesCatalogEntry, SearchesCatalogTableData, SearchesCostPerResult, SearchesCostPerResultEntry, SearchesError, SearchesErrorSchema, SearchesId, SearchesIdSchema, SearchesMetaEntryWithId, SearchesPayload, SearchesPayloadCatalog, SearchesPayloadInput, SearchesPayloadMap, SearchesPayloadSchema, SearchesRequest, SearchesRequestBaseConfig, SearchesRequestBaseConfigSchema, SearchesRequestPayload, SearchesRequestPayloadMap, SearchesRequestSchema, SearchesResponse, SearchesResponseSchema, SearchesResult, SearchesResultField, SearchesResultFieldSchema, SearchesResultSchema, SearchesSearch, SearchesStatus, SearchesStatusSchema, SearchesValidationResult, type SecretSuggestion, SectionKeys, SectionMap, SectionOverride, SelectMeta, type SeniorityLevel, SheetEffect, SheetEffectCatalog, SheetEffectCatalogEntry, SheetEffectCatalogTableData, SheetEffectCategory, SheetEffectCategoryEntry, SheetEffectDef, SheetEffectId, SheetEffectIdSchema, SheetEffectLifeCycle, SheetEffectLockScope, SheetEffectLockingMode, SheetEffectMetaEntryWithId, SheetEffectPayload, SheetEffectPayloadCatalog, SheetEffectPayloadInput, SheetEffectPayloadMap, SheetEffectPayloadSchema, SheetEffectRequestPayloadMap, type SheetEffectSelectionMode, SheetEffectStepSummary, SheetEffectStepSummarySchema, SheetEffectStepValidation, SheetEffectValidationError, SheetEffectsCounts, SheetEffectsCountsSchema, SheetEffectsDiff, SheetEffectsDiffSchema, SheetEffectsOperationResult, SheetEffectsValidationResult, type Signal, type SignalCategory, type SignalScope, type SignalSubcategory, type SignalType, type StoreOption, StoreOptionAutocompleteOption, StoreOptionsDef, SupportedTags, TAG_ALLOWED_ATTRS, TAG_DATA_KIND, TOKEN_BLOCK_SIZE_INPUT, TOKEN_BLOCK_SIZE_OUTPUT, TYPES_TO_FORMATS, TaggedOrderedMultiCreateMeta, TaggedTextMeta, TemplateInputMeta, type Tenure, TextMeta, TextareaMeta, Tier, TokenBlockAccumulator, type TransformIntoResponseConfig, TypedFieldsSelectMeta, UpdatedActionDetail, UpdatedActionDetailSchema, type UserConnection, ValidatedSheetEffects, ValidationContext, ValueCondition, ValueConditionBlock, ValueConditionBlockSchema, type Widget, Widgets, type StoreOptionWidget as WidgetsByKind, StoreOptionWidgetSchema as WidgetsByKindSchema, WidgetsSchema, all, analyzeLiquidTemplate, analyzePipeFit, and, any, applyDataPatch, applyReportEdits, applyReportUpdate, assertSoqlIdentifier, assertUniqueBillableOperations, autocomplete, b2bPostMatchExample, bucketConfigSchemaFor, bucketSchemaFieldNames, bucketSchemasEqual, bucketSlugValue, buildAiModelTokenBillableOperations, buildAttioProjectionSet, buildCatalogSearchTarget, buildDependencyGraph, buildInputRequirementFromTemplates, buildKeysetPredicate, buildResultColumns, buildSalesforceFetchSet, buildSignalId, buildSoqlInList, buildTokenNote, catalogInput, chunkBySize, classifyEffectChainKind, classifySalesforceError, cleanObject, cleanUrl, cleanWebsiteUrl, collectConstantReferencesFromTemplates, collectPipeContextSelectFields, collectRequirementFields, collectSearchContextSelectFields, collectSecretReferencesFromTemplates, collectSheetEffectContextSelectFields, compilePattern, computeTenure, configDefaults, creditsPerBlock, decodeBucketContract, dedupeColumnNames, defaultBucketConfig, describeRequirement, detectPersonProfileSignals, domainToWebsiteVariants, encodeBucketContract, entityLogoFavicon, entityLogoProfessionalProfileUrl, escapeSoqlLikeValue, escapeSoqlString, estimateGuardCredits, evaluateConditionBlock, explainEffectIds, extractDuplicateInfo, extractFormMetadata, field, fieldBehaviorCatalog, fieldCatalog, fieldNameStr, fieldTypeFromValue, fieldsToObject, filterPipeEntries, filterSearchEntries, filterSearchesEntries, findMissingAttioScopes, formatSoqlBooleanValue, formatSoqlDateValue, formatSoqlNumberValue, getAgentAllowedEffectIds, getAgentAllowedReportEffectIds, getAiModelConnectionRequirements, getAiModelProviders, getAiModelTokenBillingKeys, getAiModelTokenCredits, getAllAiModelProviders, getAttioAttributeTypeRule, getBaseEffectName, getBasePipeName, getBaseSheetEffectName, getCatalogFieldOrder, getDefaultOutputFields, getDefaultPipeProviders, getDefaultSearchOutputFields, getDefaultSearchesOutputFields, getDependentPipeNamesForInputProperty, getDependentPipeNamesForPipe, getDomain, getEffectConfigHash, getExpansionState, getFaviconUrlGoogle, getField, getFieldBehavior, getFieldDisplayLabel, getFieldWidgets, getInitialSearchTableData, getInitialSearchesTableData, getInitialSheetEffectTableData, getInitialTableData, getInputHash, getJsonMetaForFieldDef, getLoweestSearchCreditAmount, getLoweestSearchesCreditAmount, getLowestPipeCreditAmount, getLowestSheetEffectCreditAmount, getOutputFieldInfoFromDef, getPipeAccessLevel, getPipeBillableOperationDef, getPipeCategoryEntries, getPipeCategoryEntry, getPipeClass, getPipeConfigHash, getPipeDefaultPayload, getPipeDocsURI, getPipeEntry, getPipeFormMask, getPipeInstances, getPipePayloadFormConfig, getPipePayloadSchema, getPipeSearchTarget, getPipeVersion, getPlaybookAccessLevel, getPlaybookEntry, getPlaybooksForPrimitive, getProviderBillableOperation, getProviderCreditsFromBillableOperations, getProviderEntry, getReadableFieldStatus, getReportEffectClass, getReportEffectEntry, getReportEffectInstance, getReportEffectPayloadSchema, getSalesforceFieldTypeRule, getSandboxConnections, getSandboxConnectionsForPipe, getSandboxConnectionsForSearch, getSandboxConnectionsForSearches, getSearchAccessLevel, getSearchCategoryEntries, getSearchCategoryEntry, getSearchClass, getSearchDefaultPayload, getSearchEntry, getSearchFieldWidgets, getSearchFormMask, getSearchInstance, getSearchPayloadFormConfig, getSearchPayloadSchema, getSearchSearchTarget, getSearchTableDataAggregates, getSearchVersion, getSearchesClass, getSearchesDefaultPayload, getSearchesEntry, getSearchesFieldWidgets, getSearchesInstances, getSearchesPayloadSchema, getSearchesSearchTarget, getSearchesTableDataAggregates, getSearchesVersion, getSeniorityEmojiFromTitle, getSeniorityLevelFromTitle, getSheetEffectCategoryEntries, getSheetEffectCategoryEntry, getSheetEffectClass, getSheetEffectConfigHash, getSheetEffectDefaultPayload, getSheetEffectEntry, getSheetEffectFormMask, getSheetEffectInstance, getSheetEffectPayloadFormConfig, getSheetEffectPayloadSchema, getSheetEffectSearchTarget, getStartingCostPerPipesProvider, getStartingCostPerSearchProvider, getStartingCostPerSearchesProvider, getTableDataAggregates, getTier, getUnexpandedValue, ifDefined, inputFields, inputFromRecord, inputFromRecordArr, inputFromRecords, inputGuards, isAgentAllowedEffect, isAgentAllowedReportEffect, isCatalogField, isEmptyValue, isEntryAccessible, isFieldName, isHighVolumeEligible, isPipeAllowed, isProviderAllowed, isRequirementMet, isRequirementSatisfiedByRecord, isReservedFieldName, isSearchAllowed, isSearchesAllowed, isSoqlDateLiteral, isTokenBilledOperations, isValidSalesforceId, isValidSoqlIdentifier, joinConnectionString, listHighVolumeEligibleOperations, listTiers, managedDefaultCreditOf, mappedBucketFieldNames, markRecordFieldAsComplete, markRecordFieldAsFailed, markRecordFieldAsNoResult, markRecordFieldAsPending, markRecordFieldAsProcessing, markRecordFieldAsSkipped, matchesAny, matchesPattern, mergeFormConfig, mergeWidgets, noConnectorInput, normalizeColumnName, normalizeDomain, optional, optionalConnectorInput, or, orgAccessLevelFromFlags, outputFields, parseAttributeRef, parseLiquidTemplate, parseOutputTagArgs, parseRecordValueOrError, parseRelaxedObject, parseReportSegments, parseRichText, parseSalesforceErrorBody, parseSheetChainDetailed, perUnit, personProfileMatchExample1, pipeCatalog, pipeCategoryCatalog, pipeClassCatalog, pipePayloadSchemaCatalog, pipesAliasableFieldsSelectInput, pipesAsyncIncludeExcludeSelectInput, pipesConditionInput, pipesContextSelectInput, pipesDateRangeInput, pipesDestinationFieldConfig, pipesFieldSelectInput, pipesFieldsSelectInput, pipesIncludeExcludeInput, pipesIncludeExcludeSelectInput, pipesInputField, pipesIntInput, pipesJsonExtractionInput, pipesJsonSchemaField, pipesLLMSelectInput, pipesLooseObjectInput, pipesMultiCreateInput, pipesMultiSelectInput, pipesNumberInput, pipesOptionalBooleanInput, pipesOrderedMultiCreateInput, pipesOutputField, pipesPayloadRegistry, pipesPromptInput, pipesPropertyListInput, pipesProviderInput, pipesRangeInput, pipesRowConditionInput, pipesRunIfInput, pipesSelectInput, pipesSnippetCatalog, pipesTaggedOrderedMultiCreateInput, pipesTaggedTextInput, pipesTemplateInput, pipesTextInput, pipesTextareaInput, pipesTypedFieldsSelectInput, placeholder, playbookCatalog, processInputObjects, projectOptionsDef, projectScopedSheetOptionsDef, providedCreationName, providedCreationPolicy, providerCatalog, rateLimitRatioFallingProgression, renameFieldInPipePayloads, renderAttioOperatorMatrix, renderLiquidTemplate, renderLiquidTemplateSync, renderSalesforceOperatorMatrix, reportEffectCatalog, reportEffectClassCatalog, reportEffectPayloadSchemaCatalog, requiredConnectorInput, requirementToInputFields, requirementUnmetMessage, requiresConnection, requiresField, resolveFormMask, resolveMappingEntry, roundrobinBucketSlug, roundrobinFilterKey, runReportEffectsValidation, runSheetEffectsValidation, runStatusesToQueueConfig, salesforceRecordUrl, schemaEvolutionFrom, scoreCatalogSearch, searchCatalog, searchCategoryCatalog, searchClassCatalog, searchPayloadSchemaCatalog, searchSnippetCatalog, searchesAsyncIncludeExcludeSelectInput, searchesAsyncMultiSelectInput, searchesCatalog, searchesClassCatalog, searchesConditionInput, searchesContextSelectInput, searchesDateRangeInput, searchesExactRangeInput, searchesIncludeExcludeInput, searchesIncludeExcludeSelectInput, searchesIntInput, searchesMinMaxIntInput, searchesMultiCreateInput, searchesMultiSelectInput, searchesNumberField, searchesOptionalBooleanInput, searchesOptionalConnectorInput, searchesOptionalNullableBooleanInput, searchesOrderedMultiCreateInput, searchesOutputField, searchesPayloadRegistry, searchesPayloadSchemaCatalog, searchesPropertyListInput, searchesRangeInput, searchesRequiredConnectorInput, searchesSelectInput, searchesTextInput, searchesTextareaField, seniorityLevelSchema, sheetColumnsOptionsDef, sheetEffectCatalog, sheetEffectCategoryCatalog, sheetEffectClassCatalog, sheetEffectPayloadSchemaCatalog, sheetEffectSnippetCatalog, sheetEffectsConditionInput, sheetEffectsContextSelectInput, sheetEffectsFieldsSelectInput, sheetEffectsIntInput, sheetEffectsLLMSelectInput, sheetEffectsMultiSelectInput, sheetEffectsNoConnectorInput, sheetEffectsOptionalBooleanInput, sheetEffectsOptionalConnectorInput, sheetEffectsOptionalIntInput, sheetEffectsPayloadRegistry, sheetEffectsRequiredConnectorInput, sheetEffectsSearchPayloadInput, sheetEffectsSelectInput, sheetEffectsSelectionInput, sheetEffectsTextInput, sheetEffectsTextareaInput, sheetOptionsDef, soqlStringLiteral, sortObjectKeys, sortPipeCatalogByBasePipe, sortSearchCatalogByBaseSearch, sortSearchesCatalogByBaseSearch, sortSheetEffectCatalogByBaseEffect, splitConnectionString, staticAutocomplete, staticOptions, stringify, stripStaticWidgets, summarizeEffectRun, summarizeReportEffectRun, tagPrimaryCurrentEducation, tagPrimaryCurrentEmployment, tagStaticWidgets, testPrint, tierAtOrBelow, tokenEstimate, tokenizeCatalogQuery, transformIntoResponse, tryDecodeBucketContract, tryParseRelaxedObject, validatePipesOrError, validateReportChainAgainstVersion, validateReportMarkdown, validateSearches, validateSheetEffectsOrError, validationErrorMessages, websiteToDomain };
|
|
119854
|
+
export { AI_MODELS, AI_MODEL_CATALOG, AI_MODEL_RAW_USD, ATTIO_APP_SCOPES, ATTIO_ATTRIBUTE_TYPE_TABLE, ATTIO_COMPANIES_STANDARD_PROPERTIES, ATTIO_DEALS_STANDARD_PROPERTIES, ATTIO_PEOPLE_STANDARD_PROPERTIES, ATTIO_SCOPES_ACTIVITY_READ, ATTIO_SCOPES_LISTS_READ, ATTIO_SCOPES_MEMBERS_READ, ATTIO_SCOPES_RECORDS_READ, ATTIO_SCOPES_RECORDS_WRITE, ATTIO_SCOPES_SQL, ATTIO_STANDARD_PROPERTIES_BY_OBJECT, type AgentContext, type AgentContextCtx, type AgentQueryRunner, type AiModelId, type AnalysisResult, AnyPipeConstructor, AnyReportEffectConstructor, AnySheetEffectConstructor, AppError, AsyncIncludeExcludeSelectMeta, AsyncMultiSelectMeta, AttioAttributeRef, AttioAttributeTypeRule, AttioConditionOperator, AttioCoreObject, AttioFlattenRule, AttioStandardProperty, type AutocompleteOption, type AutocompleteSourceKey, type B2BPostMatchField, B2BPostMatchSchema, BUCKET_TYPES, BaseScheetSchemaDto, BillableOperation, BillableOperationDef, BillableOperationEstimate, BillableOperations, BillingMode, BooleanMeta, BucketClaimConfig, BucketClaimConfigSchema, BucketConfig, BucketCounterConfig, BucketCounterConfigSchema, BucketCreationSettings, BucketEntryField, BucketEntryFields, BucketEventCounterConfig, BucketEventCounterConfigSchema, BucketFieldDef, BucketFieldDefSchema, BucketFieldType, BucketFieldTypeSchema, BucketRequirement, BucketSchema, BucketSchemaSchema, BucketType, type BuiltWithTechStackTransformedRespoonse as BuiltWithDomainStack, type BuiltWithTechStackTransformedRespoonse, CALENDAR_EVENT_TYPES, CALLOUT_VARIANTS, CATALOG_SEARCH_WEIGHTS, CATEGORY_META, COMPANY_STANDARD_PROPERTIES, CONTACT_STANDARD_PROPERTIES, CREDIT_USD_VALUE, CURRENT_BUCKET_TYPE_VERSION, type CalendarEventMatch, type CalendarEventType, CalloutVariant, type CatalogEntityFilter, type CatalogFilter, type CatalogPattern, CatalogSchemaRef, CatalogSchemaRefSchema, type CatalogSearchFields, type CatalogSearchTarget, type CladoPersonMatch, type CladoPersonMatchV2, ConciseFieldValue, ConciseFieldValueSchema, Condition, ConditionBlock, ConditionBlockMeta, ConditionBlockSchema, ConditionEvaluationError, ConditionFieldNotFoundError, ConditionOperators, ConditionOperatorsSchema, ConfigField, ConnectorConnection, ConnectorMeta, type ConstantSuggestion, ContextSelectMeta, CostEstimateContext, type CrustdataCompanyMatchV2Field, CrustdataCompanyMatchV2Schema, CursorPaginationMeta, DEAL_STANDARD_PROPERTIES, DEFAULT_MODEL_COPY_WRITING, DEFAULT_MODEL_FAST_REASONING, DEFAULT_MODEL_REASONING, DateRangeMeta, type DedupConfig, type DedupStrategy, type DependencyGraphRelation, DerivedGroupedFieldOrder, DerivedInputFields, type DetectPersonProfileSignalsOptions, Effect, EffectAllSelectionSchema, EffectRowsSelectionSchema, EffectSelectionDto, EffectSelectionSchema, EffectWindowSelectionSchema, EffectsRequest, EffectsRequestSchema, EffectsResponse, EffectsResponseSchema, EffectsRunStatus, EffectsRunStatusSchema, EffectsValidateRequestSchema, EffectsValidateResponseSchema, EffectsValidateStepSchema, EmailValidationStatus, type EnabledIf, type EnabledResult, type EntryAccessLevel, EvaluableField, EvaluableFields, ExactRangeMeta, ExecutionMode, ExpandedFieldValue, ExpandedFieldValueSchema, ExternalProviderName, FIELD_PLACEHOLDERS, FORMULA_RESULT_TYPES, FieldAnnotation, FieldAnnotationSchema, FieldAnnotations, FieldAnnotationsSchema, FieldAnnotationsType, FieldCatalog, type FieldContextArgs, FieldContextCapableMeta, type FieldContextClient, type FieldContextSheetField, type FieldContextSheetSummary, FieldEntry, FieldGroup, FieldMode, FieldName, FieldNameSchema, type FieldPlaceholderKey, FieldReason, FieldReasonSchema, FieldSchemaType, FieldSelectMeta, FieldValue, FieldValueMap, FieldValueSchema, FieldsSelectMeta, FieldsToObjectsConfig, FormCustomization, type FormMask, type FormMaskCatalog, type FormResolvers, FormSection, FormSectionMeta, type FormStore, FormStoreSchema, type FormulaResultType, GeneratedFormInputType, GeneratedInputMeta, GeneratedInputMetaMap, type GetConnectionsArgs, type GetConstantsArgs, type GetSecretsArgs, GroupMap, GroupOverride, HIGH_VOLUME_PRICING_MIN_CREDITS, type HighVolumeEligibleOperation, HighVolumeLevel, type HighVolumeTier, INPUT_GROUP_KEY, type IconKey, IconWidgetKey, type IcypeasCompanyMatch, type IcypeasPersonMatch, IncludeExcludeMeta, IncludeExcludeSelectMeta, IntegerMeta, JSONExtractSchema, JSONExtraction, JSONExtractionMeta, JSONMeta, JSONMetaSchema, JSONSchemaMeta, JsonFieldType, LazyResolveContext, LooseObjectMeta, type LumaEventGuestMatch, MANAGED_TOKEN_MARGIN, MANUAL_DEFAULT, MAX_SIGNALS_PER_SCAN, ManagedCredits, MinMaxIntMeta, MultiCreateMeta, MultiSelectMeta, NamedFieldEntry, NoConnector, NoConnectorSchema, NullableBooleanMeta, NumberMeta, ObjectHasher, OptionalConnector, OptionalConnectorSchema, type OptionsDef, OrderedMultiCreateMeta, type OrgAccessLevel, type OutputDecl, OutputFieldMeta, PIPE0_DEFAULT_CONNECTION_PUBLIC_ID, PIPE_IDS, PLAYBOOK_IDS, PaginationType, PaginationTypeSchema, ParsedSheetChain, PathMap, PathOverride, type PersonProfileField, PersonProfileFieldSchema, PersonWorkemailWaterfall1Entry, PersonWorkemailWaterfall1PayloadSchema, PersonWorkemailWaterfall1PipeClass, Pipe, Pipe0Error, PipeBaseConfig, PipeCatalog, PipeCatalogEntry, PipeCategory, PipeCategoryEntry, PipeConfigMapByExpecutionType, PipeConnectionRequirement, PipeDef, PipeEntryWithLatestVersion, type PipeFieldContextDef, PipeFitInput, PipeFitOutputField, PipeFitResult, PipeId, PipeIdSchema, PipeInputField, PipeModuleExport, PipeOutputField, PipePayload, PipePayloadInput, PipePayloadMap, PipePayloadSchema, PipePayloadSchemaCatalog, PipeRequestPayloadMap, PipeRunIf, PipeRunIfSchema, PipelineValidationError, type PipesEnvironment, PipesEnvironmentSchema, PipesError, PipesErrorSchema, PipesFieldDefinition, PipesFieldDefinitionSchema, PipesFieldDefinitionWithName, PipesFieldDefinitions, PipesFieldDefinitionsSchema, PipesInMemoryResponse, PipesInput, PipesInputSchema, PipesRecord, PipesRequest, PipesRequestConfig, PipesRequestConfigSchema, PipesRequestPayload, PipesRequestSchema, PipesResponse, PipesResponseSchema, PipesRunIfMeta, PlaybookDef, PlaybookId, PlaybookStep, PlaybookStepKind, PlaybookVariant, ProcessedPipePayloadSchema, ProcessedSearchPayloadSchema, ProcessedSearchesPayloadSchema, ProcessedSheetEffectPayloadSchema, type ProfielField, PromptMeta, PropertyListMeta, ProviderCatalogEntry, ProviderName, ProviderNameSchema, ProviderRateLimitOperation, ProvidersInputMeta, RECORD_FIELD_FORMATS, RECORD_FIELD_TYPES, REJOIN_GAP_DAYS, REPORT_EFFECT_IDS, REPORT_ROW_CAP, REPORT_TAGS, RESERVED_FIELD_NAMES, RUN_IF_OPERATOR_LABELS, RUN_IF_STATUS_OPERATORS, RUN_IF_VALUE_OPERATORS, RUN_STATUS_OPTIONS, RangeMeta, RecordActionDetail, RecordActionDetailSchema, RecordClaimedBy, RecordClaimedBySchema, RecordDiffEntry, RecordDiffEntrySchema, RecordField, RecordFieldFormat, RecordFieldFormatSchema, RecordFieldSchema, RecordFieldStatus, RecordFieldStatusSchema, RecordFieldType, RecordFieldTypeSchema, RecordId, RecordIdSchema, RecordResolvedBy, RecordResolvedBySchema, RecordSchema, ReportChartData, ReportChartDataSchema, ReportData, ReportDataSchema, ReportDataValue, ReportDataValueSchema, ReportEffect, ReportEffectCatalog, ReportEffectDef, ReportEffectId, ReportEffectIdSchema, ReportEffectLifeCycle, ReportEffectPayload, ReportEffectPayloadCatalog, ReportEffectPayloadInput, ReportEffectPayloadMap, ReportEffectPayloadSchema, ReportEffectRunPayload, ReportEffectStepSummary, ReportEffectStepSummarySchema, ReportEffectsOperationResult, ReportEffectsRequest, ReportEffectsRequestSchema, ReportEffectsResponse, ReportEffectsResponseSchema, ReportEffectsValidationResult, ReportEffectsValidationStep, ReportMetricData, ReportMetricDataSchema, type ReportParseIssue, type ReportParseResult, type ReportSegment, ReportStatsData, ReportStatsDataSchema, ReportTableColumn, ReportTableData, ReportTableDataSchema, ReportTagName, ReportUpdateComputeResult, type ReportValidationIssue, type ReportValidationResult, RequestValidationError, RequiredConnector, RequiredConnectorSchema, type Requirement, RequirementSatisfactionResult, ResultColumn, type RichTextNode, RunIfStatusOperatorsSchema, RunIfStatusValueSchema, RunIfValueOperatorsSchema, RunStatus, RunStatusSchema, SALESFORCE_ACCOUNT_STANDARD_PROPERTIES, SALESFORCE_CONTACT_STANDARD_PROPERTIES, SALESFORCE_FIELD_TYPE_TABLE, SALESFORCE_LEAD_STANDARD_PROPERTIES, SALESFORCE_OPPORTUNITY_STANDARD_PROPERTIES, SALESFORCE_PERSON_STANDARD_PROPERTIES, SALESFORCE_STANDARD_PROPERTIES_BY_OBJECT, SALESFORCE_USER_STANDARD_PROPERTIES, SCHEDULED_DEFAULT, SEARCHES_IDS, SEARCH_IDS, SENIORITY_LEVELS, SHEET_EFFECT_IDS, SIGNAL_CATEGORIES, SIGNAL_LABELS, SIGNAL_SCOPES, SIGNAL_SUBCATEGORIES, SIGNAL_TAXONOMY, SIGNAL_TYPES, SIGNAL_WINDOW_DAYS, SafeFieldAnnotationPatch, SafeFieldAnnotationPatchSchema, SalesforceApiError, SalesforceConditionOperator, SalesforceCoreObject, SalesforceDuplicateInfo, SalesforceErrorClass, SalesforceFieldTypeRule, SalesforceStandardProperty, SalesforceValueEncoding, SchemaEvolution, SchemaInputs, SchemaRowMigration, Search, SearchCatalog, SearchCatalogEntry, SearchCatalogTableData, SearchCategory, SearchCategoryEntry, SearchError, SearchErrorSchema, SearchId, SearchIdSchema, SearchMetaEntryWithId, SearchOutputField, SearchPayload, SearchPayloadCatalog, SearchPayloadInput, SearchPayloadInputMeta, SearchPayloadMap, SearchPayloadSchema, SearchRequestPayload, SearchRequestPayloadMap, SearchRequestSchema, SearchRequestType, SearchResponse, SearchResponseSchema, SearchResult, SearchResultField, SearchResultFieldSchema, SearchResultSchema, SearchValidationResult, SearchesCatalog, SearchesCatalogEntry, SearchesCatalogTableData, SearchesCostPerResult, SearchesCostPerResultEntry, SearchesError, SearchesErrorSchema, SearchesId, SearchesIdSchema, SearchesMetaEntryWithId, SearchesPayload, SearchesPayloadCatalog, SearchesPayloadInput, SearchesPayloadMap, SearchesPayloadSchema, SearchesRequest, SearchesRequestBaseConfig, SearchesRequestBaseConfigSchema, SearchesRequestPayload, SearchesRequestPayloadMap, SearchesRequestSchema, SearchesResponse, SearchesResponseSchema, SearchesResult, SearchesResultField, SearchesResultFieldSchema, SearchesResultSchema, SearchesSearch, SearchesStatus, SearchesStatusSchema, SearchesValidationResult, type SecretSuggestion, SectionKeys, SectionMap, SectionOverride, SelectMeta, type SeniorityLevel, SheetEffect, SheetEffectCatalog, SheetEffectCatalogEntry, SheetEffectCatalogTableData, SheetEffectCategory, SheetEffectCategoryEntry, SheetEffectDef, SheetEffectId, SheetEffectIdSchema, SheetEffectLifeCycle, SheetEffectLockScope, SheetEffectLockingMode, SheetEffectMetaEntryWithId, SheetEffectPayload, SheetEffectPayloadCatalog, SheetEffectPayloadInput, SheetEffectPayloadMap, SheetEffectPayloadSchema, SheetEffectRequestPayloadMap, type SheetEffectSelectionMode, SheetEffectStepSummary, SheetEffectStepSummarySchema, SheetEffectStepValidation, SheetEffectValidationError, SheetEffectsCounts, SheetEffectsCountsSchema, SheetEffectsDiff, SheetEffectsDiffSchema, SheetEffectsOperationResult, SheetEffectsValidationResult, type Signal, type SignalCategory, type SignalScope, type SignalSubcategory, type SignalType, type StoreOption, StoreOptionAutocompleteOption, StoreOptionsDef, SupportedTags, TAG_ALLOWED_ATTRS, TAG_DATA_KIND, TOKEN_BLOCK_SIZE_INPUT, TOKEN_BLOCK_SIZE_OUTPUT, TYPES_TO_FORMATS, TaggedOrderedMultiCreateMeta, TaggedTextMeta, TemplateInputMeta, type Tenure, TextMeta, TextareaMeta, Tier, TokenBlockAccumulator, type TransformIntoResponseConfig, TypedFieldsSelectMeta, UpdatedActionDetail, UpdatedActionDetailSchema, type UserConnection, ValidatedSheetEffects, ValidationContext, ValueCondition, ValueConditionBlock, ValueConditionBlockSchema, type Widget, Widgets, type StoreOptionWidget as WidgetsByKind, StoreOptionWidgetSchema as WidgetsByKindSchema, WidgetsSchema, all, analyzeLiquidTemplate, analyzePipeFit, and, any, applyDataPatch, applyReportEdits, applyReportUpdate, assertSoqlIdentifier, assertUniqueBillableOperations, autocomplete, b2bPostMatchExample, bucketConfigSchemaFor, bucketSchemaFieldNames, bucketSchemasEqual, bucketSlugValue, buildAiModelTokenBillableOperations, buildAttioProjectionSet, buildCatalogSearchTarget, buildDependencyGraph, buildInputRequirementFromTemplates, buildKeysetPredicate, buildResultColumns, buildSalesforceFetchSet, buildSignalId, buildSoqlInList, buildTokenNote, catalogInput, chunkBySize, classifyEffectChainKind, classifySalesforceError, cleanObject, cleanUrl, cleanWebsiteUrl, collectConstantReferencesFromTemplates, collectPipeContextSelectFields, collectRequirementFields, collectSearchContextSelectFields, collectSecretReferencesFromTemplates, collectSheetEffectContextSelectFields, compilePattern, computeTenure, configDefaults, creditsPerBlock, crustdataCompanyMatchV2ExampleValue, decodeBucketContract, dedupeColumnNames, defaultBucketConfig, deriveGroupedFieldOrder, describeRequirement, detectPersonProfileSignals, domainToWebsiteVariants, encodeBucketContract, entityLogoFavicon, entityLogoProfessionalProfileUrl, escapeSoqlLikeValue, escapeSoqlString, estimateGuardCredits, evaluateConditionBlock, explainEffectIds, extractDuplicateInfo, extractFormMetadata, field, fieldBehaviorCatalog, fieldCatalog, fieldNameStr, fieldTypeFromValue, fieldsToObject, filterPipeEntries, filterSearchEntries, filterSearchesEntries, findMissingAttioScopes, formatSoqlBooleanValue, formatSoqlDateValue, formatSoqlNumberValue, getAgentAllowedEffectIds, getAgentAllowedReportEffectIds, getAiModelConnectionRequirements, getAiModelProviders, getAiModelTokenBillingKeys, getAiModelTokenCredits, getAllAiModelProviders, getAttioAttributeTypeRule, getBaseEffectName, getBasePipeName, getBaseSheetEffectName, getCatalogFieldOrder, getDefaultOutputFields, getDefaultPipeProviders, getDefaultSearchOutputFields, getDefaultSearchesOutputFields, getDependentPipeNamesForInputProperty, getDependentPipeNamesForPipe, getDomain, getEffectConfigHash, getExpansionState, getFaviconUrlGoogle, getField, getFieldBehavior, getFieldDisplayLabel, getFieldWidgets, getInitialSearchTableData, getInitialSearchesTableData, getInitialSheetEffectTableData, getInitialTableData, getInputHash, getJsonMetaForFieldDef, getLoweestSearchCreditAmount, getLoweestSearchesCreditAmount, getLowestPipeCreditAmount, getLowestSheetEffectCreditAmount, getOutputFieldInfoFromDef, getPipeAccessLevel, getPipeBillableOperationDef, getPipeCategoryEntries, getPipeCategoryEntry, getPipeClass, getPipeConfigHash, getPipeDefaultPayload, getPipeDocsURI, getPipeEntry, getPipeFormMask, getPipeInstances, getPipePayloadFormConfig, getPipePayloadSchema, getPipeSearchTarget, getPipeVersion, getPlaybookAccessLevel, getPlaybookEntry, getPlaybooksForPrimitive, getProviderBillableOperation, getProviderCreditsFromBillableOperations, getProviderEntry, getReadableFieldStatus, getReportEffectClass, getReportEffectEntry, getReportEffectInstance, getReportEffectPayloadSchema, getSalesforceFieldTypeRule, getSandboxConnections, getSandboxConnectionsForPipe, getSandboxConnectionsForSearch, getSandboxConnectionsForSearches, getSearchAccessLevel, getSearchCategoryEntries, getSearchCategoryEntry, getSearchClass, getSearchDefaultPayload, getSearchEntry, getSearchFieldWidgets, getSearchFormMask, getSearchInstance, getSearchPayloadFormConfig, getSearchPayloadSchema, getSearchSearchTarget, getSearchTableDataAggregates, getSearchVersion, getSearchesClass, getSearchesDefaultPayload, getSearchesEntry, getSearchesFieldWidgets, getSearchesInstances, getSearchesPayloadSchema, getSearchesSearchTarget, getSearchesTableDataAggregates, getSearchesVersion, getSeniorityEmojiFromTitle, getSeniorityLevelFromTitle, getSheetEffectCategoryEntries, getSheetEffectCategoryEntry, getSheetEffectClass, getSheetEffectConfigHash, getSheetEffectDefaultPayload, getSheetEffectEntry, getSheetEffectFormMask, getSheetEffectInstance, getSheetEffectPayloadFormConfig, getSheetEffectPayloadSchema, getSheetEffectSearchTarget, getStartingCostPerPipesProvider, getStartingCostPerSearchProvider, getStartingCostPerSearchesProvider, getTableDataAggregates, getTier, getUnexpandedValue, ifDefined, inputFields, inputFromRecord, inputFromRecordArr, inputFromRecords, inputGuards, isAgentAllowedEffect, isAgentAllowedReportEffect, isCatalogField, isEmptyValue, isEntryAccessible, isFieldName, isHighVolumeEligible, isPipeAllowed, isProviderAllowed, isRequirementMet, isRequirementSatisfiedByRecord, isReservedFieldName, isSearchAllowed, isSearchesAllowed, isSoqlDateLiteral, isTokenBilledOperations, isValidSalesforceId, isValidSoqlIdentifier, joinConnectionString, listHighVolumeEligibleOperations, listTiers, managedDefaultCreditOf, mappedBucketFieldNames, markRecordFieldAsComplete, markRecordFieldAsFailed, markRecordFieldAsNoResult, markRecordFieldAsPending, markRecordFieldAsProcessing, markRecordFieldAsSkipped, matchesAny, matchesPattern, mergeFormConfig, mergeWidgets, noConnectorInput, normalizeColumnName, normalizeDomain, optional, optionalConnectorInput, or, orgAccessLevelFromFlags, outputFields, parseAttributeRef, parseLiquidTemplate, parseOutputTagArgs, parseRecordValueOrError, parseRelaxedObject, parseReportSegments, parseRichText, parseSalesforceErrorBody, parseSheetChainDetailed, perUnit, personProfileMatchExample1, pipeCatalog, pipeCategoryCatalog, pipeClassCatalog, pipePayloadSchemaCatalog, pipesAliasableFieldsSelectInput, pipesAsyncIncludeExcludeSelectInput, pipesConditionInput, pipesContextSelectInput, pipesDateRangeInput, pipesDestinationFieldConfig, pipesFieldSelectInput, pipesFieldsSelectInput, pipesIncludeExcludeInput, pipesIncludeExcludeSelectInput, pipesInputField, pipesIntInput, pipesJsonExtractionInput, pipesJsonSchemaField, pipesLLMSelectInput, pipesLooseObjectInput, pipesMultiCreateInput, pipesMultiSelectInput, pipesNumberInput, pipesOptionalBooleanInput, pipesOrderedMultiCreateInput, pipesOutputField, pipesPayloadRegistry, pipesPromptInput, pipesPropertyListInput, pipesProviderInput, pipesRangeInput, pipesRowConditionInput, pipesRunIfInput, pipesSelectInput, pipesSnippetCatalog, pipesTaggedOrderedMultiCreateInput, pipesTaggedTextInput, pipesTemplateInput, pipesTextInput, pipesTextareaInput, pipesTypedFieldsSelectInput, placeholder, playbookCatalog, processInputObjects, projectOptionsDef, projectScopedSheetOptionsDef, providedCreationName, providedCreationPolicy, providerCatalog, rateLimitRatioFallingProgression, renameFieldInPipePayloads, renderAttioOperatorMatrix, renderLiquidTemplate, renderLiquidTemplateSync, renderSalesforceOperatorMatrix, reportEffectCatalog, reportEffectClassCatalog, reportEffectPayloadSchemaCatalog, requiredConnectorInput, requirementToInputFields, requirementUnmetMessage, requiresConnection, requiresField, resolveFormMask, resolveMappingEntry, roundrobinBucketSlug, roundrobinFilterKey, runReportEffectsValidation, runSheetEffectsValidation, runStatusesToQueueConfig, salesforceRecordUrl, schemaEvolutionFrom, scoreCatalogSearch, searchCatalog, searchCategoryCatalog, searchClassCatalog, searchPayloadSchemaCatalog, searchSnippetCatalog, searchesAsyncIncludeExcludeSelectInput, searchesAsyncMultiSelectInput, searchesCatalog, searchesClassCatalog, searchesConditionInput, searchesContextSelectInput, searchesDateRangeInput, searchesExactRangeInput, searchesIncludeExcludeInput, searchesIncludeExcludeSelectInput, searchesIntInput, searchesMinMaxIntInput, searchesMultiCreateInput, searchesMultiSelectInput, searchesNumberField, searchesOptionalBooleanInput, searchesOptionalConnectorInput, searchesOptionalNullableBooleanInput, searchesOrderedMultiCreateInput, searchesOutputField, searchesPayloadRegistry, searchesPayloadSchemaCatalog, searchesPropertyListInput, searchesRangeInput, searchesRequiredConnectorInput, searchesSelectInput, searchesTextInput, searchesTextareaField, seniorityLevelSchema, sheetColumnsOptionsDef, sheetEffectCatalog, sheetEffectCategoryCatalog, sheetEffectClassCatalog, sheetEffectPayloadSchemaCatalog, sheetEffectSnippetCatalog, sheetEffectsConditionInput, sheetEffectsContextSelectInput, sheetEffectsFieldsSelectInput, sheetEffectsIntInput, sheetEffectsLLMSelectInput, sheetEffectsMultiSelectInput, sheetEffectsNoConnectorInput, sheetEffectsOptionalBooleanInput, sheetEffectsOptionalConnectorInput, sheetEffectsOptionalIntInput, sheetEffectsPayloadRegistry, sheetEffectsRequiredConnectorInput, sheetEffectsSearchPayloadInput, sheetEffectsSelectInput, sheetEffectsSelectionInput, sheetEffectsTextInput, sheetEffectsTextareaInput, sheetOptionsDef, soqlStringLiteral, sortObjectKeys, sortPipeCatalogByBasePipe, sortSearchCatalogByBaseSearch, sortSearchesCatalogByBaseSearch, sortSheetEffectCatalogByBaseEffect, splitConnectionString, staticAutocomplete, staticOptions, stringify, stripStaticWidgets, summarizeEffectRun, summarizeReportEffectRun, tagPrimaryCurrentEducation, tagPrimaryCurrentEmployment, tagStaticWidgets, testPrint, tierAtOrBelow, tokenEstimate, tokenizeCatalogQuery, transformIntoResponse, tryDecodeBucketContract, tryParseRelaxedObject, validatePipesOrError, validateReportChainAgainstVersion, validateReportMarkdown, validateSearches, validateSheetEffectsOrError, validationErrorMessages, websiteToDomain };
|