@pipe0/client 0.0.7 → 0.0.9
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 +12 -0
- package/README.md +2 -2
- package/dist/generated/openapi.types.d.ts +2138 -863
- package/dist/pipe0.d.ts +16 -11
- package/package.json +1 -1
|
@@ -123,8 +123,8 @@ export interface paths {
|
|
|
123
123
|
};
|
|
124
124
|
};
|
|
125
125
|
};
|
|
126
|
-
/** @enum {string} */
|
|
127
|
-
model?: "gemini-flash-latest" | "openai-gpt-latest" | "openai-gpt-mini-latest";
|
|
126
|
+
/** @enum {string|null} */
|
|
127
|
+
model?: "gemini-flash-latest" | "openai-gpt-latest" | "openai-gpt-mini-latest" | "" | null;
|
|
128
128
|
};
|
|
129
129
|
} | {
|
|
130
130
|
/** @enum {string} */
|
|
@@ -484,6 +484,9 @@ export interface paths {
|
|
|
484
484
|
* "provider": "prospeo"
|
|
485
485
|
* },
|
|
486
486
|
* {
|
|
487
|
+
* "provider": "hunter"
|
|
488
|
+
* },
|
|
489
|
+
* {
|
|
487
490
|
* "provider": "icypeas"
|
|
488
491
|
* },
|
|
489
492
|
* {
|
|
@@ -492,8 +495,12 @@ export interface paths {
|
|
|
492
495
|
* ] */
|
|
493
496
|
providers?: {
|
|
494
497
|
/** @enum {string} */
|
|
495
|
-
provider: "leadmagic" | "prospeo" | "icypeas" | "findymail";
|
|
498
|
+
provider: "leadmagic" | "prospeo" | "hunter" | "icypeas" | "findymail";
|
|
496
499
|
}[];
|
|
500
|
+
/** @default true */
|
|
501
|
+
allow_catch_all_emails?: boolean;
|
|
502
|
+
/** @default true */
|
|
503
|
+
allow_risky_emails?: boolean;
|
|
497
504
|
input_fields?: {
|
|
498
505
|
/** @default {
|
|
499
506
|
* "alias": ""
|
|
@@ -525,6 +532,16 @@ export interface paths {
|
|
|
525
532
|
/** @default true */
|
|
526
533
|
enabled?: boolean;
|
|
527
534
|
};
|
|
535
|
+
/** @default {
|
|
536
|
+
* "alias": "",
|
|
537
|
+
* "enabled": true
|
|
538
|
+
* } */
|
|
539
|
+
email_validation_status?: {
|
|
540
|
+
/** @default */
|
|
541
|
+
alias?: string;
|
|
542
|
+
/** @default true */
|
|
543
|
+
enabled?: boolean;
|
|
544
|
+
};
|
|
528
545
|
};
|
|
529
546
|
};
|
|
530
547
|
} | {
|
|
@@ -1277,11 +1294,11 @@ export interface paths {
|
|
|
1277
1294
|
} | null;
|
|
1278
1295
|
config: {
|
|
1279
1296
|
template: string;
|
|
1280
|
-
/** @enum {string} */
|
|
1281
|
-
model?: "gemini-flash-latest" | "openai-gpt-latest" | "openai-gpt-mini-latest";
|
|
1297
|
+
/** @enum {string|null} */
|
|
1298
|
+
model?: "gemini-flash-latest" | "openai-gpt-latest" | "openai-gpt-mini-latest" | "" | null;
|
|
1282
1299
|
signature: string;
|
|
1283
|
-
/** @enum {string} */
|
|
1284
|
-
persona?: "sales" | "human_resources" | "customer_success";
|
|
1300
|
+
/** @enum {string|null} */
|
|
1301
|
+
persona?: "sales" | "human_resources" | "customer_success" | "" | null;
|
|
1285
1302
|
output_fields?: {
|
|
1286
1303
|
/** @default {
|
|
1287
1304
|
* "alias": "",
|
|
@@ -1662,19 +1679,7 @@ export interface paths {
|
|
|
1662
1679
|
};
|
|
1663
1680
|
} | {
|
|
1664
1681
|
/** @enum {string} */
|
|
1665
|
-
pipe_id: "
|
|
1666
|
-
connector: {
|
|
1667
|
-
/**
|
|
1668
|
-
* @default first
|
|
1669
|
-
* @enum {string}
|
|
1670
|
-
*/
|
|
1671
|
-
strategy?: "first";
|
|
1672
|
-
connections: {
|
|
1673
|
-
/** @enum {string} */
|
|
1674
|
-
type: "vault";
|
|
1675
|
-
connection: string;
|
|
1676
|
-
}[];
|
|
1677
|
-
};
|
|
1682
|
+
pipe_id: "people:posts:crustdata@1";
|
|
1678
1683
|
trigger?: {
|
|
1679
1684
|
/** @enum {string} */
|
|
1680
1685
|
action: "run";
|
|
@@ -1699,14 +1704,25 @@ export interface paths {
|
|
|
1699
1704
|
})[];
|
|
1700
1705
|
};
|
|
1701
1706
|
} | null;
|
|
1702
|
-
|
|
1703
|
-
/**
|
|
1704
|
-
|
|
1707
|
+
connector?: {
|
|
1708
|
+
/**
|
|
1709
|
+
* @default first
|
|
1710
|
+
* @enum {string}
|
|
1711
|
+
*/
|
|
1712
|
+
strategy?: "first";
|
|
1713
|
+
connections: {
|
|
1714
|
+
/** @enum {string} */
|
|
1715
|
+
type: "vault";
|
|
1716
|
+
connection: string;
|
|
1717
|
+
}[];
|
|
1718
|
+
} | null;
|
|
1719
|
+
config?: {
|
|
1720
|
+
limit: number;
|
|
1705
1721
|
input_fields?: {
|
|
1706
1722
|
/** @default {
|
|
1707
1723
|
* "alias": ""
|
|
1708
1724
|
* } */
|
|
1709
|
-
|
|
1725
|
+
profile_url?: {
|
|
1710
1726
|
alias: string;
|
|
1711
1727
|
};
|
|
1712
1728
|
};
|
|
@@ -1715,7 +1731,17 @@ export interface paths {
|
|
|
1715
1731
|
* "alias": "",
|
|
1716
1732
|
* "enabled": true
|
|
1717
1733
|
* } */
|
|
1718
|
-
|
|
1734
|
+
post_list_string?: {
|
|
1735
|
+
/** @default */
|
|
1736
|
+
alias?: string;
|
|
1737
|
+
/** @default true */
|
|
1738
|
+
enabled?: boolean;
|
|
1739
|
+
};
|
|
1740
|
+
/** @default {
|
|
1741
|
+
* "alias": "",
|
|
1742
|
+
* "enabled": true
|
|
1743
|
+
* } */
|
|
1744
|
+
crustdata_post_list?: {
|
|
1719
1745
|
/** @default */
|
|
1720
1746
|
alias?: string;
|
|
1721
1747
|
/** @default true */
|
|
@@ -1725,19 +1751,7 @@ export interface paths {
|
|
|
1725
1751
|
};
|
|
1726
1752
|
} | {
|
|
1727
1753
|
/** @enum {string} */
|
|
1728
|
-
pipe_id: "
|
|
1729
|
-
connector: {
|
|
1730
|
-
/**
|
|
1731
|
-
* @default first
|
|
1732
|
-
* @enum {string}
|
|
1733
|
-
*/
|
|
1734
|
-
strategy?: "first";
|
|
1735
|
-
connections: {
|
|
1736
|
-
/** @enum {string} */
|
|
1737
|
-
type: "vault";
|
|
1738
|
-
connection: string;
|
|
1739
|
-
}[];
|
|
1740
|
-
};
|
|
1754
|
+
pipe_id: "people:profile:workemail:crustdata@1";
|
|
1741
1755
|
trigger?: {
|
|
1742
1756
|
/** @enum {string} */
|
|
1743
1757
|
action: "run";
|
|
@@ -1762,35 +1776,43 @@ export interface paths {
|
|
|
1762
1776
|
})[];
|
|
1763
1777
|
};
|
|
1764
1778
|
} | null;
|
|
1765
|
-
|
|
1766
|
-
/**
|
|
1767
|
-
|
|
1779
|
+
connector?: {
|
|
1780
|
+
/**
|
|
1781
|
+
* @default first
|
|
1782
|
+
* @enum {string}
|
|
1783
|
+
*/
|
|
1784
|
+
strategy?: "first";
|
|
1785
|
+
connections: {
|
|
1786
|
+
/** @enum {string} */
|
|
1787
|
+
type: "vault";
|
|
1788
|
+
connection: string;
|
|
1789
|
+
}[];
|
|
1790
|
+
} | null;
|
|
1791
|
+
config?: {
|
|
1768
1792
|
input_fields?: {
|
|
1769
1793
|
/** @default {
|
|
1770
1794
|
* "alias": ""
|
|
1771
1795
|
* } */
|
|
1772
|
-
|
|
1773
|
-
alias: string;
|
|
1774
|
-
};
|
|
1775
|
-
/** @default {
|
|
1776
|
-
* "alias": ""
|
|
1777
|
-
* } */
|
|
1778
|
-
email_body?: {
|
|
1796
|
+
work_email?: {
|
|
1779
1797
|
alias: string;
|
|
1780
1798
|
};
|
|
1799
|
+
};
|
|
1800
|
+
output_fields?: {
|
|
1781
1801
|
/** @default {
|
|
1782
|
-
* "alias": ""
|
|
1802
|
+
* "alias": "",
|
|
1803
|
+
* "enabled": true
|
|
1783
1804
|
* } */
|
|
1784
|
-
|
|
1785
|
-
|
|
1805
|
+
crustdata_person_match?: {
|
|
1806
|
+
/** @default */
|
|
1807
|
+
alias?: string;
|
|
1808
|
+
/** @default true */
|
|
1809
|
+
enabled?: boolean;
|
|
1786
1810
|
};
|
|
1787
|
-
};
|
|
1788
|
-
output_fields?: {
|
|
1789
1811
|
/** @default {
|
|
1790
1812
|
* "alias": "",
|
|
1791
1813
|
* "enabled": true
|
|
1792
1814
|
* } */
|
|
1793
|
-
|
|
1815
|
+
crustdata_profile_match_score?: {
|
|
1794
1816
|
/** @default */
|
|
1795
1817
|
alias?: string;
|
|
1796
1818
|
/** @default true */
|
|
@@ -1800,7 +1822,7 @@ export interface paths {
|
|
|
1800
1822
|
};
|
|
1801
1823
|
} | {
|
|
1802
1824
|
/** @enum {string} */
|
|
1803
|
-
pipe_id: "
|
|
1825
|
+
pipe_id: "people:identity:workemail:waterfall@1";
|
|
1804
1826
|
connector?: {
|
|
1805
1827
|
/**
|
|
1806
1828
|
* @default first
|
|
@@ -1837,16 +1859,86 @@ export interface paths {
|
|
|
1837
1859
|
})[];
|
|
1838
1860
|
};
|
|
1839
1861
|
} | null;
|
|
1840
|
-
config
|
|
1841
|
-
|
|
1842
|
-
|
|
1843
|
-
|
|
1862
|
+
config?: {
|
|
1863
|
+
/** @default [
|
|
1864
|
+
* {
|
|
1865
|
+
* "provider": "findymail"
|
|
1866
|
+
* },
|
|
1867
|
+
* {
|
|
1868
|
+
* "provider": "hunter"
|
|
1869
|
+
* },
|
|
1870
|
+
* {
|
|
1871
|
+
* "provider": "crustdata"
|
|
1872
|
+
* }
|
|
1873
|
+
* ] */
|
|
1874
|
+
providers?: {
|
|
1875
|
+
/** @enum {string} */
|
|
1876
|
+
provider: "findymail" | "hunter" | "crustdata";
|
|
1877
|
+
}[];
|
|
1878
|
+
input_fields?: {
|
|
1879
|
+
/** @default {
|
|
1880
|
+
* "alias": ""
|
|
1881
|
+
* } */
|
|
1882
|
+
email?: {
|
|
1883
|
+
alias: string;
|
|
1884
|
+
};
|
|
1885
|
+
};
|
|
1844
1886
|
output_fields?: {
|
|
1845
1887
|
/** @default {
|
|
1846
1888
|
* "alias": "",
|
|
1847
1889
|
* "enabled": true
|
|
1848
1890
|
* } */
|
|
1849
|
-
|
|
1891
|
+
name?: {
|
|
1892
|
+
/** @default */
|
|
1893
|
+
alias?: string;
|
|
1894
|
+
/** @default true */
|
|
1895
|
+
enabled?: boolean;
|
|
1896
|
+
};
|
|
1897
|
+
/** @default {
|
|
1898
|
+
* "alias": "",
|
|
1899
|
+
* "enabled": true
|
|
1900
|
+
* } */
|
|
1901
|
+
profile_url?: {
|
|
1902
|
+
/** @default */
|
|
1903
|
+
alias?: string;
|
|
1904
|
+
/** @default true */
|
|
1905
|
+
enabled?: boolean;
|
|
1906
|
+
};
|
|
1907
|
+
/** @default {
|
|
1908
|
+
* "alias": "",
|
|
1909
|
+
* "enabled": true
|
|
1910
|
+
* } */
|
|
1911
|
+
job_title?: {
|
|
1912
|
+
/** @default */
|
|
1913
|
+
alias?: string;
|
|
1914
|
+
/** @default true */
|
|
1915
|
+
enabled?: boolean;
|
|
1916
|
+
};
|
|
1917
|
+
/** @default {
|
|
1918
|
+
* "alias": "",
|
|
1919
|
+
* "enabled": true
|
|
1920
|
+
* } */
|
|
1921
|
+
company_website_url?: {
|
|
1922
|
+
/** @default */
|
|
1923
|
+
alias?: string;
|
|
1924
|
+
/** @default true */
|
|
1925
|
+
enabled?: boolean;
|
|
1926
|
+
};
|
|
1927
|
+
/** @default {
|
|
1928
|
+
* "alias": "",
|
|
1929
|
+
* "enabled": true
|
|
1930
|
+
* } */
|
|
1931
|
+
company_name?: {
|
|
1932
|
+
/** @default */
|
|
1933
|
+
alias?: string;
|
|
1934
|
+
/** @default true */
|
|
1935
|
+
enabled?: boolean;
|
|
1936
|
+
};
|
|
1937
|
+
/** @default {
|
|
1938
|
+
* "alias": "",
|
|
1939
|
+
* "enabled": true
|
|
1940
|
+
* } */
|
|
1941
|
+
company_profile_url?: {
|
|
1850
1942
|
/** @default */
|
|
1851
1943
|
alias?: string;
|
|
1852
1944
|
/** @default true */
|
|
@@ -1856,8 +1948,8 @@ export interface paths {
|
|
|
1856
1948
|
};
|
|
1857
1949
|
} | {
|
|
1858
1950
|
/** @enum {string} */
|
|
1859
|
-
pipe_id: "
|
|
1860
|
-
connector
|
|
1951
|
+
pipe_id: "message:send:slack@1";
|
|
1952
|
+
connector: {
|
|
1861
1953
|
/**
|
|
1862
1954
|
* @default first
|
|
1863
1955
|
* @enum {string}
|
|
@@ -1868,7 +1960,7 @@ export interface paths {
|
|
|
1868
1960
|
type: "vault";
|
|
1869
1961
|
connection: string;
|
|
1870
1962
|
}[];
|
|
1871
|
-
}
|
|
1963
|
+
};
|
|
1872
1964
|
trigger?: {
|
|
1873
1965
|
/** @enum {string} */
|
|
1874
1966
|
action: "run";
|
|
@@ -1894,13 +1986,22 @@ export interface paths {
|
|
|
1894
1986
|
};
|
|
1895
1987
|
} | null;
|
|
1896
1988
|
config: {
|
|
1897
|
-
|
|
1989
|
+
/** @default */
|
|
1990
|
+
channel_id?: string;
|
|
1991
|
+
input_fields?: {
|
|
1992
|
+
/** @default {
|
|
1993
|
+
* "alias": ""
|
|
1994
|
+
* } */
|
|
1995
|
+
message?: {
|
|
1996
|
+
alias: string;
|
|
1997
|
+
};
|
|
1998
|
+
};
|
|
1898
1999
|
output_fields?: {
|
|
1899
2000
|
/** @default {
|
|
1900
2001
|
* "alias": "",
|
|
1901
2002
|
* "enabled": true
|
|
1902
2003
|
* } */
|
|
1903
|
-
|
|
2004
|
+
slack_message_success?: {
|
|
1904
2005
|
/** @default */
|
|
1905
2006
|
alias?: string;
|
|
1906
2007
|
/** @default true */
|
|
@@ -1910,8 +2011,8 @@ export interface paths {
|
|
|
1910
2011
|
};
|
|
1911
2012
|
} | {
|
|
1912
2013
|
/** @enum {string} */
|
|
1913
|
-
pipe_id: "
|
|
1914
|
-
connector
|
|
2014
|
+
pipe_id: "email:send:gmail@1";
|
|
2015
|
+
connector: {
|
|
1915
2016
|
/**
|
|
1916
2017
|
* @default first
|
|
1917
2018
|
* @enum {string}
|
|
@@ -1922,7 +2023,7 @@ export interface paths {
|
|
|
1922
2023
|
type: "vault";
|
|
1923
2024
|
connection: string;
|
|
1924
2025
|
}[];
|
|
1925
|
-
}
|
|
2026
|
+
};
|
|
1926
2027
|
trigger?: {
|
|
1927
2028
|
/** @enum {string} */
|
|
1928
2029
|
action: "run";
|
|
@@ -1947,43 +2048,35 @@ export interface paths {
|
|
|
1947
2048
|
})[];
|
|
1948
2049
|
};
|
|
1949
2050
|
} | null;
|
|
1950
|
-
config
|
|
1951
|
-
/** @default
|
|
1952
|
-
|
|
2051
|
+
config: {
|
|
2052
|
+
/** @default */
|
|
2053
|
+
reply_to?: string;
|
|
1953
2054
|
input_fields?: {
|
|
1954
2055
|
/** @default {
|
|
1955
2056
|
* "alias": ""
|
|
1956
2057
|
* } */
|
|
1957
|
-
|
|
2058
|
+
email?: {
|
|
1958
2059
|
alias: string;
|
|
1959
2060
|
};
|
|
1960
|
-
};
|
|
1961
|
-
output_fields?: {
|
|
1962
2061
|
/** @default {
|
|
1963
|
-
* "alias": ""
|
|
1964
|
-
* "enabled": true
|
|
2062
|
+
* "alias": ""
|
|
1965
2063
|
* } */
|
|
1966
|
-
|
|
1967
|
-
|
|
1968
|
-
alias?: string;
|
|
1969
|
-
/** @default true */
|
|
1970
|
-
enabled?: boolean;
|
|
2064
|
+
email_body?: {
|
|
2065
|
+
alias: string;
|
|
1971
2066
|
};
|
|
1972
2067
|
/** @default {
|
|
1973
|
-
* "alias": ""
|
|
1974
|
-
* "enabled": true
|
|
2068
|
+
* "alias": ""
|
|
1975
2069
|
* } */
|
|
1976
|
-
|
|
1977
|
-
|
|
1978
|
-
alias?: string;
|
|
1979
|
-
/** @default true */
|
|
1980
|
-
enabled?: boolean;
|
|
2070
|
+
email_subject?: {
|
|
2071
|
+
alias: string;
|
|
1981
2072
|
};
|
|
2073
|
+
};
|
|
2074
|
+
output_fields?: {
|
|
1982
2075
|
/** @default {
|
|
1983
2076
|
* "alias": "",
|
|
1984
2077
|
* "enabled": true
|
|
1985
2078
|
* } */
|
|
1986
|
-
|
|
2079
|
+
gmail_email_success?: {
|
|
1987
2080
|
/** @default */
|
|
1988
2081
|
alias?: string;
|
|
1989
2082
|
/** @default true */
|
|
@@ -1993,7 +2086,7 @@ export interface paths {
|
|
|
1993
2086
|
};
|
|
1994
2087
|
} | {
|
|
1995
2088
|
/** @enum {string} */
|
|
1996
|
-
pipe_id: "
|
|
2089
|
+
pipe_id: "message:write@1";
|
|
1997
2090
|
connector?: {
|
|
1998
2091
|
/**
|
|
1999
2092
|
* @default first
|
|
@@ -2030,13 +2123,206 @@ export interface paths {
|
|
|
2030
2123
|
})[];
|
|
2031
2124
|
};
|
|
2032
2125
|
} | null;
|
|
2033
|
-
config
|
|
2034
|
-
|
|
2035
|
-
|
|
2036
|
-
|
|
2037
|
-
|
|
2038
|
-
/** @default {
|
|
2039
|
-
* "alias": ""
|
|
2126
|
+
config: {
|
|
2127
|
+
template: string;
|
|
2128
|
+
/** @enum {string|null} */
|
|
2129
|
+
model?: "gemini-flash-latest" | "openai-gpt-latest" | "openai-gpt-mini-latest" | "" | null;
|
|
2130
|
+
output_fields?: {
|
|
2131
|
+
/** @default {
|
|
2132
|
+
* "alias": "",
|
|
2133
|
+
* "enabled": true
|
|
2134
|
+
* } */
|
|
2135
|
+
message?: {
|
|
2136
|
+
/** @default */
|
|
2137
|
+
alias?: string;
|
|
2138
|
+
/** @default true */
|
|
2139
|
+
enabled?: boolean;
|
|
2140
|
+
};
|
|
2141
|
+
};
|
|
2142
|
+
};
|
|
2143
|
+
} | {
|
|
2144
|
+
/** @enum {string} */
|
|
2145
|
+
pipe_id: "template:fill@1";
|
|
2146
|
+
connector?: {
|
|
2147
|
+
/**
|
|
2148
|
+
* @default first
|
|
2149
|
+
* @enum {string}
|
|
2150
|
+
*/
|
|
2151
|
+
strategy?: "first";
|
|
2152
|
+
connections: {
|
|
2153
|
+
/** @enum {string} */
|
|
2154
|
+
type: "vault";
|
|
2155
|
+
connection: string;
|
|
2156
|
+
}[];
|
|
2157
|
+
} | null;
|
|
2158
|
+
trigger?: {
|
|
2159
|
+
/** @enum {string} */
|
|
2160
|
+
action: "run";
|
|
2161
|
+
when: {
|
|
2162
|
+
/** @enum {string} */
|
|
2163
|
+
logic: "and" | "or";
|
|
2164
|
+
conditions: ({
|
|
2165
|
+
/** @enum {string} */
|
|
2166
|
+
property: "value";
|
|
2167
|
+
field_name: string;
|
|
2168
|
+
/** @enum {string} */
|
|
2169
|
+
operator: "eq" | "neq" | "gt" | "gte" | "lt" | "lte" | "contains";
|
|
2170
|
+
value: number | string | boolean | null;
|
|
2171
|
+
} | {
|
|
2172
|
+
/** @enum {string} */
|
|
2173
|
+
property: "status";
|
|
2174
|
+
field_name: string;
|
|
2175
|
+
/** @enum {string} */
|
|
2176
|
+
operator: "eq" | "neq";
|
|
2177
|
+
/** @enum {string} */
|
|
2178
|
+
value: "failed" | "no_result" | "completed" | "skipped";
|
|
2179
|
+
})[];
|
|
2180
|
+
};
|
|
2181
|
+
} | null;
|
|
2182
|
+
config: {
|
|
2183
|
+
template: string;
|
|
2184
|
+
output_fields?: {
|
|
2185
|
+
/** @default {
|
|
2186
|
+
* "alias": "",
|
|
2187
|
+
* "enabled": true
|
|
2188
|
+
* } */
|
|
2189
|
+
template_output?: {
|
|
2190
|
+
/** @default */
|
|
2191
|
+
alias?: string;
|
|
2192
|
+
/** @default true */
|
|
2193
|
+
enabled?: boolean;
|
|
2194
|
+
};
|
|
2195
|
+
};
|
|
2196
|
+
};
|
|
2197
|
+
} | {
|
|
2198
|
+
/** @enum {string} */
|
|
2199
|
+
pipe_id: "website:scrape:firecrawl@1";
|
|
2200
|
+
connector?: {
|
|
2201
|
+
/**
|
|
2202
|
+
* @default first
|
|
2203
|
+
* @enum {string}
|
|
2204
|
+
*/
|
|
2205
|
+
strategy?: "first";
|
|
2206
|
+
connections: {
|
|
2207
|
+
/** @enum {string} */
|
|
2208
|
+
type: "vault";
|
|
2209
|
+
connection: string;
|
|
2210
|
+
}[];
|
|
2211
|
+
} | null;
|
|
2212
|
+
trigger?: {
|
|
2213
|
+
/** @enum {string} */
|
|
2214
|
+
action: "run";
|
|
2215
|
+
when: {
|
|
2216
|
+
/** @enum {string} */
|
|
2217
|
+
logic: "and" | "or";
|
|
2218
|
+
conditions: ({
|
|
2219
|
+
/** @enum {string} */
|
|
2220
|
+
property: "value";
|
|
2221
|
+
field_name: string;
|
|
2222
|
+
/** @enum {string} */
|
|
2223
|
+
operator: "eq" | "neq" | "gt" | "gte" | "lt" | "lte" | "contains";
|
|
2224
|
+
value: number | string | boolean | null;
|
|
2225
|
+
} | {
|
|
2226
|
+
/** @enum {string} */
|
|
2227
|
+
property: "status";
|
|
2228
|
+
field_name: string;
|
|
2229
|
+
/** @enum {string} */
|
|
2230
|
+
operator: "eq" | "neq";
|
|
2231
|
+
/** @enum {string} */
|
|
2232
|
+
value: "failed" | "no_result" | "completed" | "skipped";
|
|
2233
|
+
})[];
|
|
2234
|
+
};
|
|
2235
|
+
} | null;
|
|
2236
|
+
config?: {
|
|
2237
|
+
/** @default false */
|
|
2238
|
+
scrape_main_only?: boolean | null;
|
|
2239
|
+
input_fields?: {
|
|
2240
|
+
/** @default {
|
|
2241
|
+
* "alias": ""
|
|
2242
|
+
* } */
|
|
2243
|
+
website_url?: {
|
|
2244
|
+
alias: string;
|
|
2245
|
+
};
|
|
2246
|
+
};
|
|
2247
|
+
output_fields?: {
|
|
2248
|
+
/** @default {
|
|
2249
|
+
* "alias": "",
|
|
2250
|
+
* "enabled": true
|
|
2251
|
+
* } */
|
|
2252
|
+
website_markdown?: {
|
|
2253
|
+
/** @default */
|
|
2254
|
+
alias?: string;
|
|
2255
|
+
/** @default true */
|
|
2256
|
+
enabled?: boolean;
|
|
2257
|
+
};
|
|
2258
|
+
/** @default {
|
|
2259
|
+
* "alias": "",
|
|
2260
|
+
* "enabled": true
|
|
2261
|
+
* } */
|
|
2262
|
+
website_html?: {
|
|
2263
|
+
/** @default */
|
|
2264
|
+
alias?: string;
|
|
2265
|
+
/** @default true */
|
|
2266
|
+
enabled?: boolean;
|
|
2267
|
+
};
|
|
2268
|
+
/** @default {
|
|
2269
|
+
* "alias": "",
|
|
2270
|
+
* "enabled": true
|
|
2271
|
+
* } */
|
|
2272
|
+
website_links?: {
|
|
2273
|
+
/** @default */
|
|
2274
|
+
alias?: string;
|
|
2275
|
+
/** @default true */
|
|
2276
|
+
enabled?: boolean;
|
|
2277
|
+
};
|
|
2278
|
+
};
|
|
2279
|
+
};
|
|
2280
|
+
} | {
|
|
2281
|
+
/** @enum {string} */
|
|
2282
|
+
pipe_id: "website:scrapelist:firecrawl@1";
|
|
2283
|
+
connector?: {
|
|
2284
|
+
/**
|
|
2285
|
+
* @default first
|
|
2286
|
+
* @enum {string}
|
|
2287
|
+
*/
|
|
2288
|
+
strategy?: "first";
|
|
2289
|
+
connections: {
|
|
2290
|
+
/** @enum {string} */
|
|
2291
|
+
type: "vault";
|
|
2292
|
+
connection: string;
|
|
2293
|
+
}[];
|
|
2294
|
+
} | null;
|
|
2295
|
+
trigger?: {
|
|
2296
|
+
/** @enum {string} */
|
|
2297
|
+
action: "run";
|
|
2298
|
+
when: {
|
|
2299
|
+
/** @enum {string} */
|
|
2300
|
+
logic: "and" | "or";
|
|
2301
|
+
conditions: ({
|
|
2302
|
+
/** @enum {string} */
|
|
2303
|
+
property: "value";
|
|
2304
|
+
field_name: string;
|
|
2305
|
+
/** @enum {string} */
|
|
2306
|
+
operator: "eq" | "neq" | "gt" | "gte" | "lt" | "lte" | "contains";
|
|
2307
|
+
value: number | string | boolean | null;
|
|
2308
|
+
} | {
|
|
2309
|
+
/** @enum {string} */
|
|
2310
|
+
property: "status";
|
|
2311
|
+
field_name: string;
|
|
2312
|
+
/** @enum {string} */
|
|
2313
|
+
operator: "eq" | "neq";
|
|
2314
|
+
/** @enum {string} */
|
|
2315
|
+
value: "failed" | "no_result" | "completed" | "skipped";
|
|
2316
|
+
})[];
|
|
2317
|
+
};
|
|
2318
|
+
} | null;
|
|
2319
|
+
config?: {
|
|
2320
|
+
/** @default false */
|
|
2321
|
+
scrape_main_only?: boolean | null;
|
|
2322
|
+
formats?: ("markdown" | "html" | "links")[];
|
|
2323
|
+
input_fields?: {
|
|
2324
|
+
/** @default {
|
|
2325
|
+
* "alias": ""
|
|
2040
2326
|
* } */
|
|
2041
2327
|
urls?: {
|
|
2042
2328
|
alias: string;
|
|
@@ -2100,9 +2386,9 @@ export interface paths {
|
|
|
2100
2386
|
};
|
|
2101
2387
|
extraction_prompt: string;
|
|
2102
2388
|
/** @default false */
|
|
2103
|
-
enable_full_domain_crawl?: boolean;
|
|
2389
|
+
enable_full_domain_crawl?: boolean | null;
|
|
2104
2390
|
/** @default false */
|
|
2105
|
-
enable_web_search?: boolean;
|
|
2391
|
+
enable_web_search?: boolean | null;
|
|
2106
2392
|
input_fields?: {
|
|
2107
2393
|
/** @default {
|
|
2108
2394
|
* "alias": ""
|
|
@@ -2164,12 +2450,12 @@ export interface paths {
|
|
|
2164
2450
|
};
|
|
2165
2451
|
} | null;
|
|
2166
2452
|
config?: {
|
|
2167
|
-
page_limit?: number;
|
|
2453
|
+
page_limit?: number | null;
|
|
2168
2454
|
/**
|
|
2169
2455
|
* @default include
|
|
2170
|
-
* @enum {string}
|
|
2456
|
+
* @enum {string|null}
|
|
2171
2457
|
*/
|
|
2172
|
-
sitemap?: "include" | "skip" | "only";
|
|
2458
|
+
sitemap?: "include" | "skip" | "only" | "";
|
|
2173
2459
|
/** @default */
|
|
2174
2460
|
search?: string;
|
|
2175
2461
|
input_fields?: {
|
|
@@ -2519,11 +2805,14 @@ export interface paths {
|
|
|
2519
2805
|
* },
|
|
2520
2806
|
* {
|
|
2521
2807
|
* "provider": "findymail"
|
|
2808
|
+
* },
|
|
2809
|
+
* {
|
|
2810
|
+
* "provider": "clado"
|
|
2522
2811
|
* }
|
|
2523
2812
|
* ] */
|
|
2524
2813
|
providers?: {
|
|
2525
2814
|
/** @enum {string} */
|
|
2526
|
-
provider: "leadmagic" | "prospeo" | "findymail";
|
|
2815
|
+
provider: "leadmagic" | "prospeo" | "findymail" | "clado";
|
|
2527
2816
|
}[];
|
|
2528
2817
|
input_fields?: {
|
|
2529
2818
|
/** @default {
|
|
@@ -3058,7 +3347,19 @@ export interface paths {
|
|
|
3058
3347
|
};
|
|
3059
3348
|
} | {
|
|
3060
3349
|
/** @enum {string} */
|
|
3061
|
-
pipe_id: "
|
|
3350
|
+
pipe_id: "people:workemail:profileurl:waterfall@1";
|
|
3351
|
+
connector?: {
|
|
3352
|
+
/**
|
|
3353
|
+
* @default first
|
|
3354
|
+
* @enum {string}
|
|
3355
|
+
*/
|
|
3356
|
+
strategy?: "first";
|
|
3357
|
+
connections: {
|
|
3358
|
+
/** @enum {string} */
|
|
3359
|
+
type: "vault";
|
|
3360
|
+
connection: string;
|
|
3361
|
+
}[];
|
|
3362
|
+
} | null;
|
|
3062
3363
|
trigger?: {
|
|
3063
3364
|
/** @enum {string} */
|
|
3064
3365
|
action: "run";
|
|
@@ -3083,24 +3384,37 @@ export interface paths {
|
|
|
3083
3384
|
})[];
|
|
3084
3385
|
};
|
|
3085
3386
|
} | null;
|
|
3086
|
-
|
|
3087
|
-
/**
|
|
3088
|
-
*
|
|
3089
|
-
*
|
|
3090
|
-
|
|
3091
|
-
|
|
3092
|
-
|
|
3387
|
+
config?: {
|
|
3388
|
+
/** @default [
|
|
3389
|
+
* {
|
|
3390
|
+
* "provider": "hunter"
|
|
3391
|
+
* },
|
|
3392
|
+
* {
|
|
3393
|
+
* "provider": "findymail"
|
|
3394
|
+
* },
|
|
3395
|
+
* {
|
|
3396
|
+
* "provider": "leadmagic"
|
|
3397
|
+
* },
|
|
3398
|
+
* {
|
|
3399
|
+
* "provider": "crustdata"
|
|
3400
|
+
* },
|
|
3401
|
+
* {
|
|
3402
|
+
* "provider": "clado"
|
|
3403
|
+
* }
|
|
3404
|
+
* ] */
|
|
3405
|
+
providers?: {
|
|
3093
3406
|
/** @enum {string} */
|
|
3094
|
-
|
|
3095
|
-
connection: string;
|
|
3407
|
+
provider: "hunter" | "findymail" | "leadmagic" | "crustdata" | "clado";
|
|
3096
3408
|
}[];
|
|
3097
|
-
|
|
3098
|
-
|
|
3409
|
+
/** @default true */
|
|
3410
|
+
allow_catch_all_emails?: boolean;
|
|
3411
|
+
/** @default true */
|
|
3412
|
+
allow_risky_emails?: boolean;
|
|
3099
3413
|
input_fields?: {
|
|
3100
3414
|
/** @default {
|
|
3101
3415
|
* "alias": ""
|
|
3102
3416
|
* } */
|
|
3103
|
-
|
|
3417
|
+
profile_url?: {
|
|
3104
3418
|
alias: string;
|
|
3105
3419
|
};
|
|
3106
3420
|
};
|
|
@@ -3109,7 +3423,7 @@ export interface paths {
|
|
|
3109
3423
|
* "alias": "",
|
|
3110
3424
|
* "enabled": true
|
|
3111
3425
|
* } */
|
|
3112
|
-
|
|
3426
|
+
work_email?: {
|
|
3113
3427
|
/** @default */
|
|
3114
3428
|
alias?: string;
|
|
3115
3429
|
/** @default true */
|
|
@@ -3119,18 +3433,89 @@ export interface paths {
|
|
|
3119
3433
|
* "alias": "",
|
|
3120
3434
|
* "enabled": true
|
|
3121
3435
|
* } */
|
|
3122
|
-
|
|
3436
|
+
email_validation_status?: {
|
|
3123
3437
|
/** @default */
|
|
3124
3438
|
alias?: string;
|
|
3125
3439
|
/** @default true */
|
|
3126
3440
|
enabled?: boolean;
|
|
3127
3441
|
};
|
|
3128
|
-
|
|
3129
|
-
|
|
3130
|
-
|
|
3131
|
-
|
|
3132
|
-
|
|
3133
|
-
|
|
3442
|
+
};
|
|
3443
|
+
};
|
|
3444
|
+
} | {
|
|
3445
|
+
/** @enum {string} */
|
|
3446
|
+
pipe_id: "company:identity@1";
|
|
3447
|
+
trigger?: {
|
|
3448
|
+
/** @enum {string} */
|
|
3449
|
+
action: "run";
|
|
3450
|
+
when: {
|
|
3451
|
+
/** @enum {string} */
|
|
3452
|
+
logic: "and" | "or";
|
|
3453
|
+
conditions: ({
|
|
3454
|
+
/** @enum {string} */
|
|
3455
|
+
property: "value";
|
|
3456
|
+
field_name: string;
|
|
3457
|
+
/** @enum {string} */
|
|
3458
|
+
operator: "eq" | "neq" | "gt" | "gte" | "lt" | "lte" | "contains";
|
|
3459
|
+
value: number | string | boolean | null;
|
|
3460
|
+
} | {
|
|
3461
|
+
/** @enum {string} */
|
|
3462
|
+
property: "status";
|
|
3463
|
+
field_name: string;
|
|
3464
|
+
/** @enum {string} */
|
|
3465
|
+
operator: "eq" | "neq";
|
|
3466
|
+
/** @enum {string} */
|
|
3467
|
+
value: "failed" | "no_result" | "completed" | "skipped";
|
|
3468
|
+
})[];
|
|
3469
|
+
};
|
|
3470
|
+
} | null;
|
|
3471
|
+
connector?: {
|
|
3472
|
+
/**
|
|
3473
|
+
* @default first
|
|
3474
|
+
* @enum {string}
|
|
3475
|
+
*/
|
|
3476
|
+
strategy?: "first";
|
|
3477
|
+
connections: {
|
|
3478
|
+
/** @enum {string} */
|
|
3479
|
+
type: "vault";
|
|
3480
|
+
connection: string;
|
|
3481
|
+
}[];
|
|
3482
|
+
} | null;
|
|
3483
|
+
config?: {
|
|
3484
|
+
input_fields?: {
|
|
3485
|
+
/** @default {
|
|
3486
|
+
* "alias": ""
|
|
3487
|
+
* } */
|
|
3488
|
+
company_name?: {
|
|
3489
|
+
alias: string;
|
|
3490
|
+
};
|
|
3491
|
+
};
|
|
3492
|
+
output_fields?: {
|
|
3493
|
+
/** @default {
|
|
3494
|
+
* "alias": "",
|
|
3495
|
+
* "enabled": true
|
|
3496
|
+
* } */
|
|
3497
|
+
company_social_url?: {
|
|
3498
|
+
/** @default */
|
|
3499
|
+
alias?: string;
|
|
3500
|
+
/** @default true */
|
|
3501
|
+
enabled?: boolean;
|
|
3502
|
+
};
|
|
3503
|
+
/** @default {
|
|
3504
|
+
* "alias": "",
|
|
3505
|
+
* "enabled": true
|
|
3506
|
+
* } */
|
|
3507
|
+
cleaned_company_name?: {
|
|
3508
|
+
/** @default */
|
|
3509
|
+
alias?: string;
|
|
3510
|
+
/** @default true */
|
|
3511
|
+
enabled?: boolean;
|
|
3512
|
+
};
|
|
3513
|
+
/** @default {
|
|
3514
|
+
* "alias": "",
|
|
3515
|
+
* "enabled": true
|
|
3516
|
+
* } */
|
|
3517
|
+
company_website_url?: {
|
|
3518
|
+
/** @default */
|
|
3134
3519
|
alias?: string;
|
|
3135
3520
|
/** @default true */
|
|
3136
3521
|
enabled?: boolean;
|
|
@@ -3452,12 +3837,12 @@ export interface paths {
|
|
|
3452
3837
|
format?: "json_object" | "json_list" | "json_list_string" | "url" | "website_url" | "profile_url" | "email" | "datetime" | "currency" | "date" | "phone" | "markdown" | "text" | "int" | "decimal" | "address_line_1" | "zip_code" | "percent" | null;
|
|
3453
3838
|
claimed_by?: {
|
|
3454
3839
|
/** @enum {string|null} */
|
|
3455
|
-
ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | null;
|
|
3840
|
+
ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "people:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "people:identity:workemail:waterfall@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | null;
|
|
3456
3841
|
config_hash: string | null;
|
|
3457
3842
|
};
|
|
3458
3843
|
resolved_by?: {
|
|
3459
3844
|
/** @enum {string|null} */
|
|
3460
|
-
ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | null;
|
|
3845
|
+
ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "people:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "people:identity:workemail:waterfall@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | null;
|
|
3461
3846
|
/** @enum {string|null} */
|
|
3462
3847
|
environment: "production" | "sandbox" | null;
|
|
3463
3848
|
config_hash: string | null;
|
|
@@ -3493,11 +3878,11 @@ export interface paths {
|
|
|
3493
3878
|
waterfall?: {
|
|
3494
3879
|
attempted_providers: {
|
|
3495
3880
|
/** @enum {string} */
|
|
3496
|
-
provider: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
|
|
3881
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
|
|
3497
3882
|
}[];
|
|
3498
|
-
available_providers: ("pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
|
|
3883
|
+
available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
|
|
3499
3884
|
/** @enum {string} */
|
|
3500
|
-
successful_provider?: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
|
|
3885
|
+
successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
|
|
3501
3886
|
};
|
|
3502
3887
|
icon?: {
|
|
3503
3888
|
/** @enum {string} */
|
|
@@ -3540,7 +3925,7 @@ export interface paths {
|
|
|
3540
3925
|
type: "string" | "number" | "boolean" | "json" | "unknown";
|
|
3541
3926
|
label: string;
|
|
3542
3927
|
added_by: {
|
|
3543
|
-
ref: ("prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1") | "input";
|
|
3928
|
+
ref: ("prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "people:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "people:identity:workemail:waterfall@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1") | "input";
|
|
3544
3929
|
config_hash: string | null;
|
|
3545
3930
|
pipe_index: number | null;
|
|
3546
3931
|
};
|
|
@@ -3571,12 +3956,12 @@ export interface paths {
|
|
|
3571
3956
|
} | null;
|
|
3572
3957
|
claimed_by: {
|
|
3573
3958
|
/** @enum {string|null} */
|
|
3574
|
-
ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | null;
|
|
3959
|
+
ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "people:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "people:identity:workemail:waterfall@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | null;
|
|
3575
3960
|
config_hash: string | null;
|
|
3576
3961
|
};
|
|
3577
3962
|
resolved_by: {
|
|
3578
3963
|
/** @enum {string|null} */
|
|
3579
|
-
ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | null;
|
|
3964
|
+
ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "people:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "people:identity:workemail:waterfall@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | null;
|
|
3580
3965
|
/** @enum {string|null} */
|
|
3581
3966
|
environment: "production" | "sandbox" | null;
|
|
3582
3967
|
config_hash: string | null;
|
|
@@ -3612,11 +3997,11 @@ export interface paths {
|
|
|
3612
3997
|
waterfall?: {
|
|
3613
3998
|
attempted_providers: {
|
|
3614
3999
|
/** @enum {string} */
|
|
3615
|
-
provider: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
|
|
4000
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
|
|
3616
4001
|
}[];
|
|
3617
|
-
available_providers: ("pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
|
|
4002
|
+
available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
|
|
3618
4003
|
/** @enum {string} */
|
|
3619
|
-
successful_provider?: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
|
|
4004
|
+
successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
|
|
3620
4005
|
};
|
|
3621
4006
|
icon?: {
|
|
3622
4007
|
/** @enum {string} */
|
|
@@ -3832,8 +4217,8 @@ export interface paths {
|
|
|
3832
4217
|
};
|
|
3833
4218
|
};
|
|
3834
4219
|
};
|
|
3835
|
-
/** @enum {string} */
|
|
3836
|
-
model?: "gemini-flash-latest" | "openai-gpt-latest" | "openai-gpt-mini-latest";
|
|
4220
|
+
/** @enum {string|null} */
|
|
4221
|
+
model?: "gemini-flash-latest" | "openai-gpt-latest" | "openai-gpt-mini-latest" | "" | null;
|
|
3837
4222
|
};
|
|
3838
4223
|
} | {
|
|
3839
4224
|
/** @enum {string} */
|
|
@@ -4193,6 +4578,9 @@ export interface paths {
|
|
|
4193
4578
|
* "provider": "prospeo"
|
|
4194
4579
|
* },
|
|
4195
4580
|
* {
|
|
4581
|
+
* "provider": "hunter"
|
|
4582
|
+
* },
|
|
4583
|
+
* {
|
|
4196
4584
|
* "provider": "icypeas"
|
|
4197
4585
|
* },
|
|
4198
4586
|
* {
|
|
@@ -4201,8 +4589,12 @@ export interface paths {
|
|
|
4201
4589
|
* ] */
|
|
4202
4590
|
providers?: {
|
|
4203
4591
|
/** @enum {string} */
|
|
4204
|
-
provider: "leadmagic" | "prospeo" | "icypeas" | "findymail";
|
|
4592
|
+
provider: "leadmagic" | "prospeo" | "hunter" | "icypeas" | "findymail";
|
|
4205
4593
|
}[];
|
|
4594
|
+
/** @default true */
|
|
4595
|
+
allow_catch_all_emails?: boolean;
|
|
4596
|
+
/** @default true */
|
|
4597
|
+
allow_risky_emails?: boolean;
|
|
4206
4598
|
input_fields?: {
|
|
4207
4599
|
/** @default {
|
|
4208
4600
|
* "alias": ""
|
|
@@ -4234,6 +4626,16 @@ export interface paths {
|
|
|
4234
4626
|
/** @default true */
|
|
4235
4627
|
enabled?: boolean;
|
|
4236
4628
|
};
|
|
4629
|
+
/** @default {
|
|
4630
|
+
* "alias": "",
|
|
4631
|
+
* "enabled": true
|
|
4632
|
+
* } */
|
|
4633
|
+
email_validation_status?: {
|
|
4634
|
+
/** @default */
|
|
4635
|
+
alias?: string;
|
|
4636
|
+
/** @default true */
|
|
4637
|
+
enabled?: boolean;
|
|
4638
|
+
};
|
|
4237
4639
|
};
|
|
4238
4640
|
};
|
|
4239
4641
|
} | {
|
|
@@ -4986,11 +5388,11 @@ export interface paths {
|
|
|
4986
5388
|
} | null;
|
|
4987
5389
|
config: {
|
|
4988
5390
|
template: string;
|
|
4989
|
-
/** @enum {string} */
|
|
4990
|
-
model?: "gemini-flash-latest" | "openai-gpt-latest" | "openai-gpt-mini-latest";
|
|
5391
|
+
/** @enum {string|null} */
|
|
5392
|
+
model?: "gemini-flash-latest" | "openai-gpt-latest" | "openai-gpt-mini-latest" | "" | null;
|
|
4991
5393
|
signature: string;
|
|
4992
|
-
/** @enum {string} */
|
|
4993
|
-
persona?: "sales" | "human_resources" | "customer_success";
|
|
5394
|
+
/** @enum {string|null} */
|
|
5395
|
+
persona?: "sales" | "human_resources" | "customer_success" | "" | null;
|
|
4994
5396
|
output_fields?: {
|
|
4995
5397
|
/** @default {
|
|
4996
5398
|
* "alias": "",
|
|
@@ -5371,19 +5773,7 @@ export interface paths {
|
|
|
5371
5773
|
};
|
|
5372
5774
|
} | {
|
|
5373
5775
|
/** @enum {string} */
|
|
5374
|
-
pipe_id: "
|
|
5375
|
-
connector: {
|
|
5376
|
-
/**
|
|
5377
|
-
* @default first
|
|
5378
|
-
* @enum {string}
|
|
5379
|
-
*/
|
|
5380
|
-
strategy?: "first";
|
|
5381
|
-
connections: {
|
|
5382
|
-
/** @enum {string} */
|
|
5383
|
-
type: "vault";
|
|
5384
|
-
connection: string;
|
|
5385
|
-
}[];
|
|
5386
|
-
};
|
|
5776
|
+
pipe_id: "people:posts:crustdata@1";
|
|
5387
5777
|
trigger?: {
|
|
5388
5778
|
/** @enum {string} */
|
|
5389
5779
|
action: "run";
|
|
@@ -5408,14 +5798,25 @@ export interface paths {
|
|
|
5408
5798
|
})[];
|
|
5409
5799
|
};
|
|
5410
5800
|
} | null;
|
|
5411
|
-
|
|
5412
|
-
/**
|
|
5413
|
-
|
|
5801
|
+
connector?: {
|
|
5802
|
+
/**
|
|
5803
|
+
* @default first
|
|
5804
|
+
* @enum {string}
|
|
5805
|
+
*/
|
|
5806
|
+
strategy?: "first";
|
|
5807
|
+
connections: {
|
|
5808
|
+
/** @enum {string} */
|
|
5809
|
+
type: "vault";
|
|
5810
|
+
connection: string;
|
|
5811
|
+
}[];
|
|
5812
|
+
} | null;
|
|
5813
|
+
config?: {
|
|
5814
|
+
limit: number;
|
|
5414
5815
|
input_fields?: {
|
|
5415
5816
|
/** @default {
|
|
5416
5817
|
* "alias": ""
|
|
5417
5818
|
* } */
|
|
5418
|
-
|
|
5819
|
+
profile_url?: {
|
|
5419
5820
|
alias: string;
|
|
5420
5821
|
};
|
|
5421
5822
|
};
|
|
@@ -5424,7 +5825,17 @@ export interface paths {
|
|
|
5424
5825
|
* "alias": "",
|
|
5425
5826
|
* "enabled": true
|
|
5426
5827
|
* } */
|
|
5427
|
-
|
|
5828
|
+
post_list_string?: {
|
|
5829
|
+
/** @default */
|
|
5830
|
+
alias?: string;
|
|
5831
|
+
/** @default true */
|
|
5832
|
+
enabled?: boolean;
|
|
5833
|
+
};
|
|
5834
|
+
/** @default {
|
|
5835
|
+
* "alias": "",
|
|
5836
|
+
* "enabled": true
|
|
5837
|
+
* } */
|
|
5838
|
+
crustdata_post_list?: {
|
|
5428
5839
|
/** @default */
|
|
5429
5840
|
alias?: string;
|
|
5430
5841
|
/** @default true */
|
|
@@ -5434,19 +5845,7 @@ export interface paths {
|
|
|
5434
5845
|
};
|
|
5435
5846
|
} | {
|
|
5436
5847
|
/** @enum {string} */
|
|
5437
|
-
pipe_id: "
|
|
5438
|
-
connector: {
|
|
5439
|
-
/**
|
|
5440
|
-
* @default first
|
|
5441
|
-
* @enum {string}
|
|
5442
|
-
*/
|
|
5443
|
-
strategy?: "first";
|
|
5444
|
-
connections: {
|
|
5445
|
-
/** @enum {string} */
|
|
5446
|
-
type: "vault";
|
|
5447
|
-
connection: string;
|
|
5448
|
-
}[];
|
|
5449
|
-
};
|
|
5848
|
+
pipe_id: "people:profile:workemail:crustdata@1";
|
|
5450
5849
|
trigger?: {
|
|
5451
5850
|
/** @enum {string} */
|
|
5452
5851
|
action: "run";
|
|
@@ -5471,26 +5870,24 @@ export interface paths {
|
|
|
5471
5870
|
})[];
|
|
5472
5871
|
};
|
|
5473
5872
|
} | null;
|
|
5474
|
-
|
|
5475
|
-
/**
|
|
5476
|
-
|
|
5873
|
+
connector?: {
|
|
5874
|
+
/**
|
|
5875
|
+
* @default first
|
|
5876
|
+
* @enum {string}
|
|
5877
|
+
*/
|
|
5878
|
+
strategy?: "first";
|
|
5879
|
+
connections: {
|
|
5880
|
+
/** @enum {string} */
|
|
5881
|
+
type: "vault";
|
|
5882
|
+
connection: string;
|
|
5883
|
+
}[];
|
|
5884
|
+
} | null;
|
|
5885
|
+
config?: {
|
|
5477
5886
|
input_fields?: {
|
|
5478
5887
|
/** @default {
|
|
5479
5888
|
* "alias": ""
|
|
5480
5889
|
* } */
|
|
5481
|
-
|
|
5482
|
-
alias: string;
|
|
5483
|
-
};
|
|
5484
|
-
/** @default {
|
|
5485
|
-
* "alias": ""
|
|
5486
|
-
* } */
|
|
5487
|
-
email_body?: {
|
|
5488
|
-
alias: string;
|
|
5489
|
-
};
|
|
5490
|
-
/** @default {
|
|
5491
|
-
* "alias": ""
|
|
5492
|
-
* } */
|
|
5493
|
-
email_subject?: {
|
|
5890
|
+
work_email?: {
|
|
5494
5891
|
alias: string;
|
|
5495
5892
|
};
|
|
5496
5893
|
};
|
|
@@ -5499,63 +5896,17 @@ export interface paths {
|
|
|
5499
5896
|
* "alias": "",
|
|
5500
5897
|
* "enabled": true
|
|
5501
5898
|
* } */
|
|
5502
|
-
|
|
5899
|
+
crustdata_person_match?: {
|
|
5503
5900
|
/** @default */
|
|
5504
5901
|
alias?: string;
|
|
5505
5902
|
/** @default true */
|
|
5506
5903
|
enabled?: boolean;
|
|
5507
5904
|
};
|
|
5508
|
-
};
|
|
5509
|
-
};
|
|
5510
|
-
} | {
|
|
5511
|
-
/** @enum {string} */
|
|
5512
|
-
pipe_id: "message:write@1";
|
|
5513
|
-
connector?: {
|
|
5514
|
-
/**
|
|
5515
|
-
* @default first
|
|
5516
|
-
* @enum {string}
|
|
5517
|
-
*/
|
|
5518
|
-
strategy?: "first";
|
|
5519
|
-
connections: {
|
|
5520
|
-
/** @enum {string} */
|
|
5521
|
-
type: "vault";
|
|
5522
|
-
connection: string;
|
|
5523
|
-
}[];
|
|
5524
|
-
} | null;
|
|
5525
|
-
trigger?: {
|
|
5526
|
-
/** @enum {string} */
|
|
5527
|
-
action: "run";
|
|
5528
|
-
when: {
|
|
5529
|
-
/** @enum {string} */
|
|
5530
|
-
logic: "and" | "or";
|
|
5531
|
-
conditions: ({
|
|
5532
|
-
/** @enum {string} */
|
|
5533
|
-
property: "value";
|
|
5534
|
-
field_name: string;
|
|
5535
|
-
/** @enum {string} */
|
|
5536
|
-
operator: "eq" | "neq" | "gt" | "gte" | "lt" | "lte" | "contains";
|
|
5537
|
-
value: number | string | boolean | null;
|
|
5538
|
-
} | {
|
|
5539
|
-
/** @enum {string} */
|
|
5540
|
-
property: "status";
|
|
5541
|
-
field_name: string;
|
|
5542
|
-
/** @enum {string} */
|
|
5543
|
-
operator: "eq" | "neq";
|
|
5544
|
-
/** @enum {string} */
|
|
5545
|
-
value: "failed" | "no_result" | "completed" | "skipped";
|
|
5546
|
-
})[];
|
|
5547
|
-
};
|
|
5548
|
-
} | null;
|
|
5549
|
-
config: {
|
|
5550
|
-
template: string;
|
|
5551
|
-
/** @enum {string} */
|
|
5552
|
-
model?: "gemini-flash-latest" | "openai-gpt-latest" | "openai-gpt-mini-latest";
|
|
5553
|
-
output_fields?: {
|
|
5554
5905
|
/** @default {
|
|
5555
5906
|
* "alias": "",
|
|
5556
5907
|
* "enabled": true
|
|
5557
5908
|
* } */
|
|
5558
|
-
|
|
5909
|
+
crustdata_profile_match_score?: {
|
|
5559
5910
|
/** @default */
|
|
5560
5911
|
alias?: string;
|
|
5561
5912
|
/** @default true */
|
|
@@ -5565,7 +5916,7 @@ export interface paths {
|
|
|
5565
5916
|
};
|
|
5566
5917
|
} | {
|
|
5567
5918
|
/** @enum {string} */
|
|
5568
|
-
pipe_id: "
|
|
5919
|
+
pipe_id: "people:identity:workemail:waterfall@1";
|
|
5569
5920
|
connector?: {
|
|
5570
5921
|
/**
|
|
5571
5922
|
* @default first
|
|
@@ -5602,77 +5953,56 @@ export interface paths {
|
|
|
5602
5953
|
})[];
|
|
5603
5954
|
};
|
|
5604
5955
|
} | null;
|
|
5605
|
-
config
|
|
5606
|
-
|
|
5956
|
+
config?: {
|
|
5957
|
+
/** @default [
|
|
5958
|
+
* {
|
|
5959
|
+
* "provider": "findymail"
|
|
5960
|
+
* },
|
|
5961
|
+
* {
|
|
5962
|
+
* "provider": "hunter"
|
|
5963
|
+
* },
|
|
5964
|
+
* {
|
|
5965
|
+
* "provider": "crustdata"
|
|
5966
|
+
* }
|
|
5967
|
+
* ] */
|
|
5968
|
+
providers?: {
|
|
5969
|
+
/** @enum {string} */
|
|
5970
|
+
provider: "findymail" | "hunter" | "crustdata";
|
|
5971
|
+
}[];
|
|
5972
|
+
input_fields?: {
|
|
5973
|
+
/** @default {
|
|
5974
|
+
* "alias": ""
|
|
5975
|
+
* } */
|
|
5976
|
+
email?: {
|
|
5977
|
+
alias: string;
|
|
5978
|
+
};
|
|
5979
|
+
};
|
|
5607
5980
|
output_fields?: {
|
|
5608
5981
|
/** @default {
|
|
5609
5982
|
* "alias": "",
|
|
5610
5983
|
* "enabled": true
|
|
5611
5984
|
* } */
|
|
5612
|
-
|
|
5985
|
+
name?: {
|
|
5613
5986
|
/** @default */
|
|
5614
5987
|
alias?: string;
|
|
5615
5988
|
/** @default true */
|
|
5616
5989
|
enabled?: boolean;
|
|
5617
5990
|
};
|
|
5618
|
-
};
|
|
5619
|
-
};
|
|
5620
|
-
} | {
|
|
5621
|
-
/** @enum {string} */
|
|
5622
|
-
pipe_id: "website:scrape:firecrawl@1";
|
|
5623
|
-
connector?: {
|
|
5624
|
-
/**
|
|
5625
|
-
* @default first
|
|
5626
|
-
* @enum {string}
|
|
5627
|
-
*/
|
|
5628
|
-
strategy?: "first";
|
|
5629
|
-
connections: {
|
|
5630
|
-
/** @enum {string} */
|
|
5631
|
-
type: "vault";
|
|
5632
|
-
connection: string;
|
|
5633
|
-
}[];
|
|
5634
|
-
} | null;
|
|
5635
|
-
trigger?: {
|
|
5636
|
-
/** @enum {string} */
|
|
5637
|
-
action: "run";
|
|
5638
|
-
when: {
|
|
5639
|
-
/** @enum {string} */
|
|
5640
|
-
logic: "and" | "or";
|
|
5641
|
-
conditions: ({
|
|
5642
|
-
/** @enum {string} */
|
|
5643
|
-
property: "value";
|
|
5644
|
-
field_name: string;
|
|
5645
|
-
/** @enum {string} */
|
|
5646
|
-
operator: "eq" | "neq" | "gt" | "gte" | "lt" | "lte" | "contains";
|
|
5647
|
-
value: number | string | boolean | null;
|
|
5648
|
-
} | {
|
|
5649
|
-
/** @enum {string} */
|
|
5650
|
-
property: "status";
|
|
5651
|
-
field_name: string;
|
|
5652
|
-
/** @enum {string} */
|
|
5653
|
-
operator: "eq" | "neq";
|
|
5654
|
-
/** @enum {string} */
|
|
5655
|
-
value: "failed" | "no_result" | "completed" | "skipped";
|
|
5656
|
-
})[];
|
|
5657
|
-
};
|
|
5658
|
-
} | null;
|
|
5659
|
-
config?: {
|
|
5660
|
-
/** @default false */
|
|
5661
|
-
scrape_main_only?: boolean;
|
|
5662
|
-
input_fields?: {
|
|
5663
5991
|
/** @default {
|
|
5664
|
-
* "alias": ""
|
|
5992
|
+
* "alias": "",
|
|
5993
|
+
* "enabled": true
|
|
5665
5994
|
* } */
|
|
5666
|
-
|
|
5667
|
-
|
|
5995
|
+
profile_url?: {
|
|
5996
|
+
/** @default */
|
|
5997
|
+
alias?: string;
|
|
5998
|
+
/** @default true */
|
|
5999
|
+
enabled?: boolean;
|
|
5668
6000
|
};
|
|
5669
|
-
};
|
|
5670
|
-
output_fields?: {
|
|
5671
6001
|
/** @default {
|
|
5672
6002
|
* "alias": "",
|
|
5673
6003
|
* "enabled": true
|
|
5674
6004
|
* } */
|
|
5675
|
-
|
|
6005
|
+
job_title?: {
|
|
5676
6006
|
/** @default */
|
|
5677
6007
|
alias?: string;
|
|
5678
6008
|
/** @default true */
|
|
@@ -5682,7 +6012,7 @@ export interface paths {
|
|
|
5682
6012
|
* "alias": "",
|
|
5683
6013
|
* "enabled": true
|
|
5684
6014
|
* } */
|
|
5685
|
-
|
|
6015
|
+
company_website_url?: {
|
|
5686
6016
|
/** @default */
|
|
5687
6017
|
alias?: string;
|
|
5688
6018
|
/** @default true */
|
|
@@ -5692,7 +6022,17 @@ export interface paths {
|
|
|
5692
6022
|
* "alias": "",
|
|
5693
6023
|
* "enabled": true
|
|
5694
6024
|
* } */
|
|
5695
|
-
|
|
6025
|
+
company_name?: {
|
|
6026
|
+
/** @default */
|
|
6027
|
+
alias?: string;
|
|
6028
|
+
/** @default true */
|
|
6029
|
+
enabled?: boolean;
|
|
6030
|
+
};
|
|
6031
|
+
/** @default {
|
|
6032
|
+
* "alias": "",
|
|
6033
|
+
* "enabled": true
|
|
6034
|
+
* } */
|
|
6035
|
+
company_profile_url?: {
|
|
5696
6036
|
/** @default */
|
|
5697
6037
|
alias?: string;
|
|
5698
6038
|
/** @default true */
|
|
@@ -5702,8 +6042,8 @@ export interface paths {
|
|
|
5702
6042
|
};
|
|
5703
6043
|
} | {
|
|
5704
6044
|
/** @enum {string} */
|
|
5705
|
-
pipe_id: "
|
|
5706
|
-
connector
|
|
6045
|
+
pipe_id: "message:send:slack@1";
|
|
6046
|
+
connector: {
|
|
5707
6047
|
/**
|
|
5708
6048
|
* @default first
|
|
5709
6049
|
* @enum {string}
|
|
@@ -5714,7 +6054,7 @@ export interface paths {
|
|
|
5714
6054
|
type: "vault";
|
|
5715
6055
|
connection: string;
|
|
5716
6056
|
}[];
|
|
5717
|
-
}
|
|
6057
|
+
};
|
|
5718
6058
|
trigger?: {
|
|
5719
6059
|
/** @enum {string} */
|
|
5720
6060
|
action: "run";
|
|
@@ -5739,15 +6079,14 @@ export interface paths {
|
|
|
5739
6079
|
})[];
|
|
5740
6080
|
};
|
|
5741
6081
|
} | null;
|
|
5742
|
-
config
|
|
5743
|
-
/** @default
|
|
5744
|
-
|
|
5745
|
-
formats?: ("markdown" | "html" | "links")[];
|
|
6082
|
+
config: {
|
|
6083
|
+
/** @default */
|
|
6084
|
+
channel_id?: string;
|
|
5746
6085
|
input_fields?: {
|
|
5747
6086
|
/** @default {
|
|
5748
6087
|
* "alias": ""
|
|
5749
6088
|
* } */
|
|
5750
|
-
|
|
6089
|
+
message?: {
|
|
5751
6090
|
alias: string;
|
|
5752
6091
|
};
|
|
5753
6092
|
};
|
|
@@ -5756,7 +6095,7 @@ export interface paths {
|
|
|
5756
6095
|
* "alias": "",
|
|
5757
6096
|
* "enabled": true
|
|
5758
6097
|
* } */
|
|
5759
|
-
|
|
6098
|
+
slack_message_success?: {
|
|
5760
6099
|
/** @default */
|
|
5761
6100
|
alias?: string;
|
|
5762
6101
|
/** @default true */
|
|
@@ -5766,8 +6105,8 @@ export interface paths {
|
|
|
5766
6105
|
};
|
|
5767
6106
|
} | {
|
|
5768
6107
|
/** @enum {string} */
|
|
5769
|
-
pipe_id: "
|
|
5770
|
-
connector
|
|
6108
|
+
pipe_id: "email:send:gmail@1";
|
|
6109
|
+
connector: {
|
|
5771
6110
|
/**
|
|
5772
6111
|
* @default first
|
|
5773
6112
|
* @enum {string}
|
|
@@ -5778,7 +6117,7 @@ export interface paths {
|
|
|
5778
6117
|
type: "vault";
|
|
5779
6118
|
connection: string;
|
|
5780
6119
|
}[];
|
|
5781
|
-
}
|
|
6120
|
+
};
|
|
5782
6121
|
trigger?: {
|
|
5783
6122
|
/** @enum {string} */
|
|
5784
6123
|
action: "run";
|
|
@@ -5804,19 +6143,25 @@ export interface paths {
|
|
|
5804
6143
|
};
|
|
5805
6144
|
} | null;
|
|
5806
6145
|
config: {
|
|
5807
|
-
|
|
5808
|
-
|
|
5809
|
-
};
|
|
5810
|
-
extraction_prompt: string;
|
|
5811
|
-
/** @default false */
|
|
5812
|
-
enable_full_domain_crawl?: boolean;
|
|
5813
|
-
/** @default false */
|
|
5814
|
-
enable_web_search?: boolean;
|
|
6146
|
+
/** @default */
|
|
6147
|
+
reply_to?: string;
|
|
5815
6148
|
input_fields?: {
|
|
5816
6149
|
/** @default {
|
|
5817
6150
|
* "alias": ""
|
|
5818
6151
|
* } */
|
|
5819
|
-
|
|
6152
|
+
email?: {
|
|
6153
|
+
alias: string;
|
|
6154
|
+
};
|
|
6155
|
+
/** @default {
|
|
6156
|
+
* "alias": ""
|
|
6157
|
+
* } */
|
|
6158
|
+
email_body?: {
|
|
6159
|
+
alias: string;
|
|
6160
|
+
};
|
|
6161
|
+
/** @default {
|
|
6162
|
+
* "alias": ""
|
|
6163
|
+
* } */
|
|
6164
|
+
email_subject?: {
|
|
5820
6165
|
alias: string;
|
|
5821
6166
|
};
|
|
5822
6167
|
};
|
|
@@ -5825,7 +6170,7 @@ export interface paths {
|
|
|
5825
6170
|
* "alias": "",
|
|
5826
6171
|
* "enabled": true
|
|
5827
6172
|
* } */
|
|
5828
|
-
|
|
6173
|
+
gmail_email_success?: {
|
|
5829
6174
|
/** @default */
|
|
5830
6175
|
alias?: string;
|
|
5831
6176
|
/** @default true */
|
|
@@ -5835,7 +6180,7 @@ export interface paths {
|
|
|
5835
6180
|
};
|
|
5836
6181
|
} | {
|
|
5837
6182
|
/** @enum {string} */
|
|
5838
|
-
pipe_id: "
|
|
6183
|
+
pipe_id: "message:write@1";
|
|
5839
6184
|
connector?: {
|
|
5840
6185
|
/**
|
|
5841
6186
|
* @default first
|
|
@@ -5872,29 +6217,16 @@ export interface paths {
|
|
|
5872
6217
|
})[];
|
|
5873
6218
|
};
|
|
5874
6219
|
} | null;
|
|
5875
|
-
config
|
|
5876
|
-
|
|
5877
|
-
/**
|
|
5878
|
-
|
|
5879
|
-
* @enum {string}
|
|
5880
|
-
*/
|
|
5881
|
-
sitemap?: "include" | "skip" | "only";
|
|
5882
|
-
/** @default */
|
|
5883
|
-
search?: string;
|
|
5884
|
-
input_fields?: {
|
|
5885
|
-
/** @default {
|
|
5886
|
-
* "alias": ""
|
|
5887
|
-
* } */
|
|
5888
|
-
website_url?: {
|
|
5889
|
-
alias: string;
|
|
5890
|
-
};
|
|
5891
|
-
};
|
|
6220
|
+
config: {
|
|
6221
|
+
template: string;
|
|
6222
|
+
/** @enum {string|null} */
|
|
6223
|
+
model?: "gemini-flash-latest" | "openai-gpt-latest" | "openai-gpt-mini-latest" | "" | null;
|
|
5892
6224
|
output_fields?: {
|
|
5893
6225
|
/** @default {
|
|
5894
6226
|
* "alias": "",
|
|
5895
6227
|
* "enabled": true
|
|
5896
6228
|
* } */
|
|
5897
|
-
|
|
6229
|
+
message?: {
|
|
5898
6230
|
/** @default */
|
|
5899
6231
|
alias?: string;
|
|
5900
6232
|
/** @default true */
|
|
@@ -5904,8 +6236,8 @@ export interface paths {
|
|
|
5904
6236
|
};
|
|
5905
6237
|
} | {
|
|
5906
6238
|
/** @enum {string} */
|
|
5907
|
-
pipe_id: "
|
|
5908
|
-
connector
|
|
6239
|
+
pipe_id: "template:fill@1";
|
|
6240
|
+
connector?: {
|
|
5909
6241
|
/**
|
|
5910
6242
|
* @default first
|
|
5911
6243
|
* @enum {string}
|
|
@@ -5916,7 +6248,7 @@ export interface paths {
|
|
|
5916
6248
|
type: "vault";
|
|
5917
6249
|
connection: string;
|
|
5918
6250
|
}[];
|
|
5919
|
-
};
|
|
6251
|
+
} | null;
|
|
5920
6252
|
trigger?: {
|
|
5921
6253
|
/** @enum {string} */
|
|
5922
6254
|
action: "run";
|
|
@@ -5942,18 +6274,13 @@ export interface paths {
|
|
|
5942
6274
|
};
|
|
5943
6275
|
} | null;
|
|
5944
6276
|
config: {
|
|
5945
|
-
|
|
5946
|
-
/** @default true */
|
|
5947
|
-
run?: boolean;
|
|
5948
|
-
/** @default true */
|
|
5949
|
-
allow_field_creation?: boolean;
|
|
5950
|
-
included_fields?: string[];
|
|
6277
|
+
template: string;
|
|
5951
6278
|
output_fields?: {
|
|
5952
6279
|
/** @default {
|
|
5953
6280
|
* "alias": "",
|
|
5954
6281
|
* "enabled": true
|
|
5955
6282
|
* } */
|
|
5956
|
-
|
|
6283
|
+
template_output?: {
|
|
5957
6284
|
/** @default */
|
|
5958
6285
|
alias?: string;
|
|
5959
6286
|
/** @default true */
|
|
@@ -5963,8 +6290,8 @@ export interface paths {
|
|
|
5963
6290
|
};
|
|
5964
6291
|
} | {
|
|
5965
6292
|
/** @enum {string} */
|
|
5966
|
-
pipe_id: "
|
|
5967
|
-
connector
|
|
6293
|
+
pipe_id: "website:scrape:firecrawl@1";
|
|
6294
|
+
connector?: {
|
|
5968
6295
|
/**
|
|
5969
6296
|
* @default first
|
|
5970
6297
|
* @enum {string}
|
|
@@ -5975,7 +6302,7 @@ export interface paths {
|
|
|
5975
6302
|
type: "vault";
|
|
5976
6303
|
connection: string;
|
|
5977
6304
|
}[];
|
|
5978
|
-
};
|
|
6305
|
+
} | null;
|
|
5979
6306
|
trigger?: {
|
|
5980
6307
|
/** @enum {string} */
|
|
5981
6308
|
action: "run";
|
|
@@ -6000,17 +6327,14 @@ export interface paths {
|
|
|
6000
6327
|
})[];
|
|
6001
6328
|
};
|
|
6002
6329
|
} | null;
|
|
6003
|
-
config
|
|
6004
|
-
|
|
6005
|
-
|
|
6006
|
-
run?: boolean;
|
|
6007
|
-
/** @default true */
|
|
6008
|
-
allow_field_creation?: boolean;
|
|
6330
|
+
config?: {
|
|
6331
|
+
/** @default false */
|
|
6332
|
+
scrape_main_only?: boolean | null;
|
|
6009
6333
|
input_fields?: {
|
|
6010
6334
|
/** @default {
|
|
6011
6335
|
* "alias": ""
|
|
6012
6336
|
* } */
|
|
6013
|
-
|
|
6337
|
+
website_url?: {
|
|
6014
6338
|
alias: string;
|
|
6015
6339
|
};
|
|
6016
6340
|
};
|
|
@@ -6019,7 +6343,27 @@ export interface paths {
|
|
|
6019
6343
|
* "alias": "",
|
|
6020
6344
|
* "enabled": true
|
|
6021
6345
|
* } */
|
|
6022
|
-
|
|
6346
|
+
website_markdown?: {
|
|
6347
|
+
/** @default */
|
|
6348
|
+
alias?: string;
|
|
6349
|
+
/** @default true */
|
|
6350
|
+
enabled?: boolean;
|
|
6351
|
+
};
|
|
6352
|
+
/** @default {
|
|
6353
|
+
* "alias": "",
|
|
6354
|
+
* "enabled": true
|
|
6355
|
+
* } */
|
|
6356
|
+
website_html?: {
|
|
6357
|
+
/** @default */
|
|
6358
|
+
alias?: string;
|
|
6359
|
+
/** @default true */
|
|
6360
|
+
enabled?: boolean;
|
|
6361
|
+
};
|
|
6362
|
+
/** @default {
|
|
6363
|
+
* "alias": "",
|
|
6364
|
+
* "enabled": true
|
|
6365
|
+
* } */
|
|
6366
|
+
website_links?: {
|
|
6023
6367
|
/** @default */
|
|
6024
6368
|
alias?: string;
|
|
6025
6369
|
/** @default true */
|
|
@@ -6029,7 +6373,19 @@ export interface paths {
|
|
|
6029
6373
|
};
|
|
6030
6374
|
} | {
|
|
6031
6375
|
/** @enum {string} */
|
|
6032
|
-
pipe_id: "
|
|
6376
|
+
pipe_id: "website:scrapelist:firecrawl@1";
|
|
6377
|
+
connector?: {
|
|
6378
|
+
/**
|
|
6379
|
+
* @default first
|
|
6380
|
+
* @enum {string}
|
|
6381
|
+
*/
|
|
6382
|
+
strategy?: "first";
|
|
6383
|
+
connections: {
|
|
6384
|
+
/** @enum {string} */
|
|
6385
|
+
type: "vault";
|
|
6386
|
+
connection: string;
|
|
6387
|
+
}[];
|
|
6388
|
+
} | null;
|
|
6033
6389
|
trigger?: {
|
|
6034
6390
|
/** @enum {string} */
|
|
6035
6391
|
action: "run";
|
|
@@ -6054,34 +6410,15 @@ export interface paths {
|
|
|
6054
6410
|
})[];
|
|
6055
6411
|
};
|
|
6056
6412
|
} | null;
|
|
6057
|
-
|
|
6058
|
-
/**
|
|
6059
|
-
|
|
6060
|
-
|
|
6061
|
-
*/
|
|
6062
|
-
strategy?: "first";
|
|
6063
|
-
connections: {
|
|
6064
|
-
/** @enum {string} */
|
|
6065
|
-
type: "vault";
|
|
6066
|
-
connection: string;
|
|
6067
|
-
}[];
|
|
6068
|
-
} | null;
|
|
6069
|
-
config: {
|
|
6070
|
-
/** @default [
|
|
6071
|
-
* {
|
|
6072
|
-
* "provider": "leadmagic"
|
|
6073
|
-
* }
|
|
6074
|
-
* ] */
|
|
6075
|
-
providers?: {
|
|
6076
|
-
/** @enum {string} */
|
|
6077
|
-
provider: "leadmagic";
|
|
6078
|
-
}[];
|
|
6079
|
-
roles: string[];
|
|
6413
|
+
config?: {
|
|
6414
|
+
/** @default false */
|
|
6415
|
+
scrape_main_only?: boolean | null;
|
|
6416
|
+
formats?: ("markdown" | "html" | "links")[];
|
|
6080
6417
|
input_fields?: {
|
|
6081
6418
|
/** @default {
|
|
6082
6419
|
* "alias": ""
|
|
6083
6420
|
* } */
|
|
6084
|
-
|
|
6421
|
+
urls?: {
|
|
6085
6422
|
alias: string;
|
|
6086
6423
|
};
|
|
6087
6424
|
};
|
|
@@ -6090,7 +6427,7 @@ export interface paths {
|
|
|
6090
6427
|
* "alias": "",
|
|
6091
6428
|
* "enabled": true
|
|
6092
6429
|
* } */
|
|
6093
|
-
|
|
6430
|
+
scrape_list_response?: {
|
|
6094
6431
|
/** @default */
|
|
6095
6432
|
alias?: string;
|
|
6096
6433
|
/** @default true */
|
|
@@ -6100,7 +6437,19 @@ export interface paths {
|
|
|
6100
6437
|
};
|
|
6101
6438
|
} | {
|
|
6102
6439
|
/** @enum {string} */
|
|
6103
|
-
pipe_id: "
|
|
6440
|
+
pipe_id: "website:extract:firecrawl@1";
|
|
6441
|
+
connector?: {
|
|
6442
|
+
/**
|
|
6443
|
+
* @default first
|
|
6444
|
+
* @enum {string}
|
|
6445
|
+
*/
|
|
6446
|
+
strategy?: "first";
|
|
6447
|
+
connections: {
|
|
6448
|
+
/** @enum {string} */
|
|
6449
|
+
type: "vault";
|
|
6450
|
+
connection: string;
|
|
6451
|
+
}[];
|
|
6452
|
+
} | null;
|
|
6104
6453
|
trigger?: {
|
|
6105
6454
|
/** @enum {string} */
|
|
6106
6455
|
action: "run";
|
|
@@ -6125,24 +6474,89 @@ export interface paths {
|
|
|
6125
6474
|
})[];
|
|
6126
6475
|
};
|
|
6127
6476
|
} | null;
|
|
6128
|
-
|
|
6129
|
-
|
|
6130
|
-
|
|
6131
|
-
|
|
6132
|
-
|
|
6133
|
-
|
|
6477
|
+
config: {
|
|
6478
|
+
json_schema: {
|
|
6479
|
+
[key: string]: unknown;
|
|
6480
|
+
};
|
|
6481
|
+
extraction_prompt: string;
|
|
6482
|
+
/** @default false */
|
|
6483
|
+
enable_full_domain_crawl?: boolean | null;
|
|
6484
|
+
/** @default false */
|
|
6485
|
+
enable_web_search?: boolean | null;
|
|
6486
|
+
input_fields?: {
|
|
6487
|
+
/** @default {
|
|
6488
|
+
* "alias": ""
|
|
6489
|
+
* } */
|
|
6490
|
+
website_url?: {
|
|
6491
|
+
alias: string;
|
|
6492
|
+
};
|
|
6493
|
+
};
|
|
6494
|
+
output_fields?: {
|
|
6495
|
+
/** @default {
|
|
6496
|
+
* "alias": "",
|
|
6497
|
+
* "enabled": true
|
|
6498
|
+
* } */
|
|
6499
|
+
firecrawl_extract_result?: {
|
|
6500
|
+
/** @default */
|
|
6501
|
+
alias?: string;
|
|
6502
|
+
/** @default true */
|
|
6503
|
+
enabled?: boolean;
|
|
6504
|
+
};
|
|
6505
|
+
};
|
|
6506
|
+
};
|
|
6507
|
+
} | {
|
|
6508
|
+
/** @enum {string} */
|
|
6509
|
+
pipe_id: "website:maplinks:firecrawl@1";
|
|
6510
|
+
connector?: {
|
|
6511
|
+
/**
|
|
6512
|
+
* @default first
|
|
6513
|
+
* @enum {string}
|
|
6514
|
+
*/
|
|
6515
|
+
strategy?: "first";
|
|
6134
6516
|
connections: {
|
|
6135
6517
|
/** @enum {string} */
|
|
6136
6518
|
type: "vault";
|
|
6137
6519
|
connection: string;
|
|
6138
6520
|
}[];
|
|
6139
6521
|
} | null;
|
|
6522
|
+
trigger?: {
|
|
6523
|
+
/** @enum {string} */
|
|
6524
|
+
action: "run";
|
|
6525
|
+
when: {
|
|
6526
|
+
/** @enum {string} */
|
|
6527
|
+
logic: "and" | "or";
|
|
6528
|
+
conditions: ({
|
|
6529
|
+
/** @enum {string} */
|
|
6530
|
+
property: "value";
|
|
6531
|
+
field_name: string;
|
|
6532
|
+
/** @enum {string} */
|
|
6533
|
+
operator: "eq" | "neq" | "gt" | "gte" | "lt" | "lte" | "contains";
|
|
6534
|
+
value: number | string | boolean | null;
|
|
6535
|
+
} | {
|
|
6536
|
+
/** @enum {string} */
|
|
6537
|
+
property: "status";
|
|
6538
|
+
field_name: string;
|
|
6539
|
+
/** @enum {string} */
|
|
6540
|
+
operator: "eq" | "neq";
|
|
6541
|
+
/** @enum {string} */
|
|
6542
|
+
value: "failed" | "no_result" | "completed" | "skipped";
|
|
6543
|
+
})[];
|
|
6544
|
+
};
|
|
6545
|
+
} | null;
|
|
6140
6546
|
config?: {
|
|
6547
|
+
page_limit?: number | null;
|
|
6548
|
+
/**
|
|
6549
|
+
* @default include
|
|
6550
|
+
* @enum {string|null}
|
|
6551
|
+
*/
|
|
6552
|
+
sitemap?: "include" | "skip" | "only" | "";
|
|
6553
|
+
/** @default */
|
|
6554
|
+
search?: string;
|
|
6141
6555
|
input_fields?: {
|
|
6142
6556
|
/** @default {
|
|
6143
6557
|
* "alias": ""
|
|
6144
6558
|
* } */
|
|
6145
|
-
|
|
6559
|
+
website_url?: {
|
|
6146
6560
|
alias: string;
|
|
6147
6561
|
};
|
|
6148
6562
|
};
|
|
@@ -6151,27 +6565,132 @@ export interface paths {
|
|
|
6151
6565
|
* "alias": "",
|
|
6152
6566
|
* "enabled": true
|
|
6153
6567
|
* } */
|
|
6154
|
-
|
|
6568
|
+
mapped_links?: {
|
|
6155
6569
|
/** @default */
|
|
6156
6570
|
alias?: string;
|
|
6157
6571
|
/** @default true */
|
|
6158
6572
|
enabled?: boolean;
|
|
6159
6573
|
};
|
|
6574
|
+
};
|
|
6575
|
+
};
|
|
6576
|
+
} | {
|
|
6577
|
+
/** @enum {string} */
|
|
6578
|
+
pipe_id: "sheet:append@1";
|
|
6579
|
+
connector: {
|
|
6580
|
+
/**
|
|
6581
|
+
* @default first
|
|
6582
|
+
* @enum {string}
|
|
6583
|
+
*/
|
|
6584
|
+
strategy?: "first";
|
|
6585
|
+
connections: {
|
|
6586
|
+
/** @enum {string} */
|
|
6587
|
+
type: "vault";
|
|
6588
|
+
connection: string;
|
|
6589
|
+
}[];
|
|
6590
|
+
};
|
|
6591
|
+
trigger?: {
|
|
6592
|
+
/** @enum {string} */
|
|
6593
|
+
action: "run";
|
|
6594
|
+
when: {
|
|
6595
|
+
/** @enum {string} */
|
|
6596
|
+
logic: "and" | "or";
|
|
6597
|
+
conditions: ({
|
|
6598
|
+
/** @enum {string} */
|
|
6599
|
+
property: "value";
|
|
6600
|
+
field_name: string;
|
|
6601
|
+
/** @enum {string} */
|
|
6602
|
+
operator: "eq" | "neq" | "gt" | "gte" | "lt" | "lte" | "contains";
|
|
6603
|
+
value: number | string | boolean | null;
|
|
6604
|
+
} | {
|
|
6605
|
+
/** @enum {string} */
|
|
6606
|
+
property: "status";
|
|
6607
|
+
field_name: string;
|
|
6608
|
+
/** @enum {string} */
|
|
6609
|
+
operator: "eq" | "neq";
|
|
6610
|
+
/** @enum {string} */
|
|
6611
|
+
value: "failed" | "no_result" | "completed" | "skipped";
|
|
6612
|
+
})[];
|
|
6613
|
+
};
|
|
6614
|
+
} | null;
|
|
6615
|
+
config: {
|
|
6616
|
+
sheet: string;
|
|
6617
|
+
/** @default true */
|
|
6618
|
+
run?: boolean;
|
|
6619
|
+
/** @default true */
|
|
6620
|
+
allow_field_creation?: boolean;
|
|
6621
|
+
included_fields?: string[];
|
|
6622
|
+
output_fields?: {
|
|
6160
6623
|
/** @default {
|
|
6161
6624
|
* "alias": "",
|
|
6162
6625
|
* "enabled": true
|
|
6163
6626
|
* } */
|
|
6164
|
-
|
|
6627
|
+
sheet_record_id?: {
|
|
6165
6628
|
/** @default */
|
|
6166
6629
|
alias?: string;
|
|
6167
6630
|
/** @default true */
|
|
6168
6631
|
enabled?: boolean;
|
|
6169
6632
|
};
|
|
6633
|
+
};
|
|
6634
|
+
};
|
|
6635
|
+
} | {
|
|
6636
|
+
/** @enum {string} */
|
|
6637
|
+
pipe_id: "sheet:expandappend@1";
|
|
6638
|
+
connector: {
|
|
6639
|
+
/**
|
|
6640
|
+
* @default first
|
|
6641
|
+
* @enum {string}
|
|
6642
|
+
*/
|
|
6643
|
+
strategy?: "first";
|
|
6644
|
+
connections: {
|
|
6645
|
+
/** @enum {string} */
|
|
6646
|
+
type: "vault";
|
|
6647
|
+
connection: string;
|
|
6648
|
+
}[];
|
|
6649
|
+
};
|
|
6650
|
+
trigger?: {
|
|
6651
|
+
/** @enum {string} */
|
|
6652
|
+
action: "run";
|
|
6653
|
+
when: {
|
|
6654
|
+
/** @enum {string} */
|
|
6655
|
+
logic: "and" | "or";
|
|
6656
|
+
conditions: ({
|
|
6657
|
+
/** @enum {string} */
|
|
6658
|
+
property: "value";
|
|
6659
|
+
field_name: string;
|
|
6660
|
+
/** @enum {string} */
|
|
6661
|
+
operator: "eq" | "neq" | "gt" | "gte" | "lt" | "lte" | "contains";
|
|
6662
|
+
value: number | string | boolean | null;
|
|
6663
|
+
} | {
|
|
6664
|
+
/** @enum {string} */
|
|
6665
|
+
property: "status";
|
|
6666
|
+
field_name: string;
|
|
6667
|
+
/** @enum {string} */
|
|
6668
|
+
operator: "eq" | "neq";
|
|
6669
|
+
/** @enum {string} */
|
|
6670
|
+
value: "failed" | "no_result" | "completed" | "skipped";
|
|
6671
|
+
})[];
|
|
6672
|
+
};
|
|
6673
|
+
} | null;
|
|
6674
|
+
config: {
|
|
6675
|
+
sheet: string;
|
|
6676
|
+
/** @default true */
|
|
6677
|
+
run?: boolean;
|
|
6678
|
+
/** @default true */
|
|
6679
|
+
allow_field_creation?: boolean;
|
|
6680
|
+
input_fields?: {
|
|
6681
|
+
/** @default {
|
|
6682
|
+
* "alias": ""
|
|
6683
|
+
* } */
|
|
6684
|
+
input_objects?: {
|
|
6685
|
+
alias: string;
|
|
6686
|
+
};
|
|
6687
|
+
};
|
|
6688
|
+
output_fields?: {
|
|
6170
6689
|
/** @default {
|
|
6171
6690
|
* "alias": "",
|
|
6172
6691
|
* "enabled": true
|
|
6173
6692
|
* } */
|
|
6174
|
-
|
|
6693
|
+
sheet_record_ids?: {
|
|
6175
6694
|
/** @default */
|
|
6176
6695
|
alias?: string;
|
|
6177
6696
|
/** @default true */
|
|
@@ -6181,7 +6700,7 @@ export interface paths {
|
|
|
6181
6700
|
};
|
|
6182
6701
|
} | {
|
|
6183
6702
|
/** @enum {string} */
|
|
6184
|
-
pipe_id: "people:
|
|
6703
|
+
pipe_id: "people:match:role:waterfall@1";
|
|
6185
6704
|
trigger?: {
|
|
6186
6705
|
/** @enum {string} */
|
|
6187
6706
|
action: "run";
|
|
@@ -6218,27 +6737,22 @@ export interface paths {
|
|
|
6218
6737
|
connection: string;
|
|
6219
6738
|
}[];
|
|
6220
6739
|
} | null;
|
|
6221
|
-
config
|
|
6740
|
+
config: {
|
|
6222
6741
|
/** @default [
|
|
6223
6742
|
* {
|
|
6224
6743
|
* "provider": "leadmagic"
|
|
6225
|
-
* },
|
|
6226
|
-
* {
|
|
6227
|
-
* "provider": "prospeo"
|
|
6228
|
-
* },
|
|
6229
|
-
* {
|
|
6230
|
-
* "provider": "findymail"
|
|
6231
6744
|
* }
|
|
6232
6745
|
* ] */
|
|
6233
6746
|
providers?: {
|
|
6234
6747
|
/** @enum {string} */
|
|
6235
|
-
provider: "leadmagic"
|
|
6748
|
+
provider: "leadmagic";
|
|
6236
6749
|
}[];
|
|
6750
|
+
roles: string[];
|
|
6237
6751
|
input_fields?: {
|
|
6238
6752
|
/** @default {
|
|
6239
6753
|
* "alias": ""
|
|
6240
6754
|
* } */
|
|
6241
|
-
|
|
6755
|
+
company_website_url?: {
|
|
6242
6756
|
alias: string;
|
|
6243
6757
|
};
|
|
6244
6758
|
};
|
|
@@ -6247,7 +6761,7 @@ export interface paths {
|
|
|
6247
6761
|
* "alias": "",
|
|
6248
6762
|
* "enabled": true
|
|
6249
6763
|
* } */
|
|
6250
|
-
|
|
6764
|
+
role_finder_match?: {
|
|
6251
6765
|
/** @default */
|
|
6252
6766
|
alias?: string;
|
|
6253
6767
|
/** @default true */
|
|
@@ -6257,7 +6771,7 @@ export interface paths {
|
|
|
6257
6771
|
};
|
|
6258
6772
|
} | {
|
|
6259
6773
|
/** @enum {string} */
|
|
6260
|
-
pipe_id: "
|
|
6774
|
+
pipe_id: "company:identity@2";
|
|
6261
6775
|
trigger?: {
|
|
6262
6776
|
/** @enum {string} */
|
|
6263
6777
|
action: "run";
|
|
@@ -6295,23 +6809,11 @@ export interface paths {
|
|
|
6295
6809
|
}[];
|
|
6296
6810
|
} | null;
|
|
6297
6811
|
config?: {
|
|
6298
|
-
/** @default [
|
|
6299
|
-
* {
|
|
6300
|
-
* "provider": "leadmagic"
|
|
6301
|
-
* },
|
|
6302
|
-
* {
|
|
6303
|
-
* "provider": "clado"
|
|
6304
|
-
* }
|
|
6305
|
-
* ] */
|
|
6306
|
-
providers?: {
|
|
6307
|
-
/** @enum {string} */
|
|
6308
|
-
provider: "clado" | "leadmagic";
|
|
6309
|
-
}[];
|
|
6310
6812
|
input_fields?: {
|
|
6311
6813
|
/** @default {
|
|
6312
6814
|
* "alias": ""
|
|
6313
6815
|
* } */
|
|
6314
|
-
|
|
6816
|
+
company_name?: {
|
|
6315
6817
|
alias: string;
|
|
6316
6818
|
};
|
|
6317
6819
|
};
|
|
@@ -6320,7 +6822,7 @@ export interface paths {
|
|
|
6320
6822
|
* "alias": "",
|
|
6321
6823
|
* "enabled": true
|
|
6322
6824
|
* } */
|
|
6323
|
-
|
|
6825
|
+
company_profile_url?: {
|
|
6324
6826
|
/** @default */
|
|
6325
6827
|
alias?: string;
|
|
6326
6828
|
/** @default true */
|
|
@@ -6330,7 +6832,17 @@ export interface paths {
|
|
|
6330
6832
|
* "alias": "",
|
|
6331
6833
|
* "enabled": true
|
|
6332
6834
|
* } */
|
|
6333
|
-
|
|
6835
|
+
cleaned_company_name?: {
|
|
6836
|
+
/** @default */
|
|
6837
|
+
alias?: string;
|
|
6838
|
+
/** @default true */
|
|
6839
|
+
enabled?: boolean;
|
|
6840
|
+
};
|
|
6841
|
+
/** @default {
|
|
6842
|
+
* "alias": "",
|
|
6843
|
+
* "enabled": true
|
|
6844
|
+
* } */
|
|
6845
|
+
company_website_url?: {
|
|
6334
6846
|
/** @default */
|
|
6335
6847
|
alias?: string;
|
|
6336
6848
|
/** @default true */
|
|
@@ -6340,7 +6852,7 @@ export interface paths {
|
|
|
6340
6852
|
};
|
|
6341
6853
|
} | {
|
|
6342
6854
|
/** @enum {string} */
|
|
6343
|
-
pipe_id: "people:profile:waterfall@1";
|
|
6855
|
+
pipe_id: "people:phone:profile:waterfall@1";
|
|
6344
6856
|
trigger?: {
|
|
6345
6857
|
/** @enum {string} */
|
|
6346
6858
|
action: "run";
|
|
@@ -6380,18 +6892,21 @@ export interface paths {
|
|
|
6380
6892
|
config?: {
|
|
6381
6893
|
/** @default [
|
|
6382
6894
|
* {
|
|
6383
|
-
* "provider": "
|
|
6895
|
+
* "provider": "leadmagic"
|
|
6384
6896
|
* },
|
|
6385
6897
|
* {
|
|
6386
6898
|
* "provider": "prospeo"
|
|
6387
6899
|
* },
|
|
6388
6900
|
* {
|
|
6389
|
-
* "provider": "
|
|
6901
|
+
* "provider": "findymail"
|
|
6902
|
+
* },
|
|
6903
|
+
* {
|
|
6904
|
+
* "provider": "clado"
|
|
6390
6905
|
* }
|
|
6391
6906
|
* ] */
|
|
6392
6907
|
providers?: {
|
|
6393
6908
|
/** @enum {string} */
|
|
6394
|
-
provider: "prospeo" | "
|
|
6909
|
+
provider: "leadmagic" | "prospeo" | "findymail" | "clado";
|
|
6395
6910
|
}[];
|
|
6396
6911
|
input_fields?: {
|
|
6397
6912
|
/** @default {
|
|
@@ -6406,7 +6921,7 @@ export interface paths {
|
|
|
6406
6921
|
* "alias": "",
|
|
6407
6922
|
* "enabled": true
|
|
6408
6923
|
* } */
|
|
6409
|
-
|
|
6924
|
+
mobile?: {
|
|
6410
6925
|
/** @default */
|
|
6411
6926
|
alias?: string;
|
|
6412
6927
|
/** @default true */
|
|
@@ -6416,7 +6931,7 @@ export interface paths {
|
|
|
6416
6931
|
};
|
|
6417
6932
|
} | {
|
|
6418
6933
|
/** @enum {string} */
|
|
6419
|
-
pipe_id: "people:
|
|
6934
|
+
pipe_id: "people:personalemail:profile:waterfall@1";
|
|
6420
6935
|
trigger?: {
|
|
6421
6936
|
/** @enum {string} */
|
|
6422
6937
|
action: "run";
|
|
@@ -6457,23 +6972,20 @@ export interface paths {
|
|
|
6457
6972
|
/** @default [
|
|
6458
6973
|
* {
|
|
6459
6974
|
* "provider": "leadmagic"
|
|
6975
|
+
* },
|
|
6976
|
+
* {
|
|
6977
|
+
* "provider": "clado"
|
|
6460
6978
|
* }
|
|
6461
6979
|
* ] */
|
|
6462
6980
|
providers?: {
|
|
6463
6981
|
/** @enum {string} */
|
|
6464
|
-
provider: "leadmagic";
|
|
6982
|
+
provider: "clado" | "leadmagic";
|
|
6465
6983
|
}[];
|
|
6466
6984
|
input_fields?: {
|
|
6467
6985
|
/** @default {
|
|
6468
6986
|
* "alias": ""
|
|
6469
6987
|
* } */
|
|
6470
|
-
|
|
6471
|
-
alias: string;
|
|
6472
|
-
};
|
|
6473
|
-
/** @default {
|
|
6474
|
-
* "alias": ""
|
|
6475
|
-
* } */
|
|
6476
|
-
work_email?: {
|
|
6988
|
+
profile_url?: {
|
|
6477
6989
|
alias: string;
|
|
6478
6990
|
};
|
|
6479
6991
|
};
|
|
@@ -6482,14 +6994,176 @@ export interface paths {
|
|
|
6482
6994
|
* "alias": "",
|
|
6483
6995
|
* "enabled": true
|
|
6484
6996
|
* } */
|
|
6485
|
-
|
|
6997
|
+
personal_email?: {
|
|
6486
6998
|
/** @default */
|
|
6487
6999
|
alias?: string;
|
|
6488
7000
|
/** @default true */
|
|
6489
7001
|
enabled?: boolean;
|
|
6490
7002
|
};
|
|
6491
|
-
|
|
6492
|
-
|
|
7003
|
+
/** @default {
|
|
7004
|
+
* "alias": "",
|
|
7005
|
+
* "enabled": true
|
|
7006
|
+
* } */
|
|
7007
|
+
alternate_personal_emails?: {
|
|
7008
|
+
/** @default */
|
|
7009
|
+
alias?: string;
|
|
7010
|
+
/** @default true */
|
|
7011
|
+
enabled?: boolean;
|
|
7012
|
+
};
|
|
7013
|
+
};
|
|
7014
|
+
};
|
|
7015
|
+
} | {
|
|
7016
|
+
/** @enum {string} */
|
|
7017
|
+
pipe_id: "people:profile:waterfall@1";
|
|
7018
|
+
trigger?: {
|
|
7019
|
+
/** @enum {string} */
|
|
7020
|
+
action: "run";
|
|
7021
|
+
when: {
|
|
7022
|
+
/** @enum {string} */
|
|
7023
|
+
logic: "and" | "or";
|
|
7024
|
+
conditions: ({
|
|
7025
|
+
/** @enum {string} */
|
|
7026
|
+
property: "value";
|
|
7027
|
+
field_name: string;
|
|
7028
|
+
/** @enum {string} */
|
|
7029
|
+
operator: "eq" | "neq" | "gt" | "gte" | "lt" | "lte" | "contains";
|
|
7030
|
+
value: number | string | boolean | null;
|
|
7031
|
+
} | {
|
|
7032
|
+
/** @enum {string} */
|
|
7033
|
+
property: "status";
|
|
7034
|
+
field_name: string;
|
|
7035
|
+
/** @enum {string} */
|
|
7036
|
+
operator: "eq" | "neq";
|
|
7037
|
+
/** @enum {string} */
|
|
7038
|
+
value: "failed" | "no_result" | "completed" | "skipped";
|
|
7039
|
+
})[];
|
|
7040
|
+
};
|
|
7041
|
+
} | null;
|
|
7042
|
+
connector?: {
|
|
7043
|
+
/**
|
|
7044
|
+
* @default first
|
|
7045
|
+
* @enum {string}
|
|
7046
|
+
*/
|
|
7047
|
+
strategy?: "first";
|
|
7048
|
+
connections: {
|
|
7049
|
+
/** @enum {string} */
|
|
7050
|
+
type: "vault";
|
|
7051
|
+
connection: string;
|
|
7052
|
+
}[];
|
|
7053
|
+
} | null;
|
|
7054
|
+
config?: {
|
|
7055
|
+
/** @default [
|
|
7056
|
+
* {
|
|
7057
|
+
* "provider": "clado"
|
|
7058
|
+
* },
|
|
7059
|
+
* {
|
|
7060
|
+
* "provider": "prospeo"
|
|
7061
|
+
* },
|
|
7062
|
+
* {
|
|
7063
|
+
* "provider": "icypeas"
|
|
7064
|
+
* }
|
|
7065
|
+
* ] */
|
|
7066
|
+
providers?: {
|
|
7067
|
+
/** @enum {string} */
|
|
7068
|
+
provider: "prospeo" | "icypeas" | "clado";
|
|
7069
|
+
}[];
|
|
7070
|
+
input_fields?: {
|
|
7071
|
+
/** @default {
|
|
7072
|
+
* "alias": ""
|
|
7073
|
+
* } */
|
|
7074
|
+
profile_url?: {
|
|
7075
|
+
alias: string;
|
|
7076
|
+
};
|
|
7077
|
+
};
|
|
7078
|
+
output_fields?: {
|
|
7079
|
+
/** @default {
|
|
7080
|
+
* "alias": "",
|
|
7081
|
+
* "enabled": true
|
|
7082
|
+
* } */
|
|
7083
|
+
profile?: {
|
|
7084
|
+
/** @default */
|
|
7085
|
+
alias?: string;
|
|
7086
|
+
/** @default true */
|
|
7087
|
+
enabled?: boolean;
|
|
7088
|
+
};
|
|
7089
|
+
};
|
|
7090
|
+
};
|
|
7091
|
+
} | {
|
|
7092
|
+
/** @enum {string} */
|
|
7093
|
+
pipe_id: "people:profileurl:email:waterfall@1";
|
|
7094
|
+
trigger?: {
|
|
7095
|
+
/** @enum {string} */
|
|
7096
|
+
action: "run";
|
|
7097
|
+
when: {
|
|
7098
|
+
/** @enum {string} */
|
|
7099
|
+
logic: "and" | "or";
|
|
7100
|
+
conditions: ({
|
|
7101
|
+
/** @enum {string} */
|
|
7102
|
+
property: "value";
|
|
7103
|
+
field_name: string;
|
|
7104
|
+
/** @enum {string} */
|
|
7105
|
+
operator: "eq" | "neq" | "gt" | "gte" | "lt" | "lte" | "contains";
|
|
7106
|
+
value: number | string | boolean | null;
|
|
7107
|
+
} | {
|
|
7108
|
+
/** @enum {string} */
|
|
7109
|
+
property: "status";
|
|
7110
|
+
field_name: string;
|
|
7111
|
+
/** @enum {string} */
|
|
7112
|
+
operator: "eq" | "neq";
|
|
7113
|
+
/** @enum {string} */
|
|
7114
|
+
value: "failed" | "no_result" | "completed" | "skipped";
|
|
7115
|
+
})[];
|
|
7116
|
+
};
|
|
7117
|
+
} | null;
|
|
7118
|
+
connector?: {
|
|
7119
|
+
/**
|
|
7120
|
+
* @default first
|
|
7121
|
+
* @enum {string}
|
|
7122
|
+
*/
|
|
7123
|
+
strategy?: "first";
|
|
7124
|
+
connections: {
|
|
7125
|
+
/** @enum {string} */
|
|
7126
|
+
type: "vault";
|
|
7127
|
+
connection: string;
|
|
7128
|
+
}[];
|
|
7129
|
+
} | null;
|
|
7130
|
+
config?: {
|
|
7131
|
+
/** @default [
|
|
7132
|
+
* {
|
|
7133
|
+
* "provider": "leadmagic"
|
|
7134
|
+
* }
|
|
7135
|
+
* ] */
|
|
7136
|
+
providers?: {
|
|
7137
|
+
/** @enum {string} */
|
|
7138
|
+
provider: "leadmagic";
|
|
7139
|
+
}[];
|
|
7140
|
+
input_fields?: {
|
|
7141
|
+
/** @default {
|
|
7142
|
+
* "alias": ""
|
|
7143
|
+
* } */
|
|
7144
|
+
email?: {
|
|
7145
|
+
alias: string;
|
|
7146
|
+
};
|
|
7147
|
+
/** @default {
|
|
7148
|
+
* "alias": ""
|
|
7149
|
+
* } */
|
|
7150
|
+
work_email?: {
|
|
7151
|
+
alias: string;
|
|
7152
|
+
};
|
|
7153
|
+
};
|
|
7154
|
+
output_fields?: {
|
|
7155
|
+
/** @default {
|
|
7156
|
+
* "alias": "",
|
|
7157
|
+
* "enabled": true
|
|
7158
|
+
* } */
|
|
7159
|
+
profile_url?: {
|
|
7160
|
+
/** @default */
|
|
7161
|
+
alias?: string;
|
|
7162
|
+
/** @default true */
|
|
7163
|
+
enabled?: boolean;
|
|
7164
|
+
};
|
|
7165
|
+
};
|
|
7166
|
+
};
|
|
6493
7167
|
} | {
|
|
6494
7168
|
/** @enum {string} */
|
|
6495
7169
|
pipe_id: "people:profileurl:name@1";
|
|
@@ -6765,6 +7439,102 @@ export interface paths {
|
|
|
6765
7439
|
};
|
|
6766
7440
|
};
|
|
6767
7441
|
};
|
|
7442
|
+
} | {
|
|
7443
|
+
/** @enum {string} */
|
|
7444
|
+
pipe_id: "people:workemail:profileurl:waterfall@1";
|
|
7445
|
+
connector?: {
|
|
7446
|
+
/**
|
|
7447
|
+
* @default first
|
|
7448
|
+
* @enum {string}
|
|
7449
|
+
*/
|
|
7450
|
+
strategy?: "first";
|
|
7451
|
+
connections: {
|
|
7452
|
+
/** @enum {string} */
|
|
7453
|
+
type: "vault";
|
|
7454
|
+
connection: string;
|
|
7455
|
+
}[];
|
|
7456
|
+
} | null;
|
|
7457
|
+
trigger?: {
|
|
7458
|
+
/** @enum {string} */
|
|
7459
|
+
action: "run";
|
|
7460
|
+
when: {
|
|
7461
|
+
/** @enum {string} */
|
|
7462
|
+
logic: "and" | "or";
|
|
7463
|
+
conditions: ({
|
|
7464
|
+
/** @enum {string} */
|
|
7465
|
+
property: "value";
|
|
7466
|
+
field_name: string;
|
|
7467
|
+
/** @enum {string} */
|
|
7468
|
+
operator: "eq" | "neq" | "gt" | "gte" | "lt" | "lte" | "contains";
|
|
7469
|
+
value: number | string | boolean | null;
|
|
7470
|
+
} | {
|
|
7471
|
+
/** @enum {string} */
|
|
7472
|
+
property: "status";
|
|
7473
|
+
field_name: string;
|
|
7474
|
+
/** @enum {string} */
|
|
7475
|
+
operator: "eq" | "neq";
|
|
7476
|
+
/** @enum {string} */
|
|
7477
|
+
value: "failed" | "no_result" | "completed" | "skipped";
|
|
7478
|
+
})[];
|
|
7479
|
+
};
|
|
7480
|
+
} | null;
|
|
7481
|
+
config?: {
|
|
7482
|
+
/** @default [
|
|
7483
|
+
* {
|
|
7484
|
+
* "provider": "hunter"
|
|
7485
|
+
* },
|
|
7486
|
+
* {
|
|
7487
|
+
* "provider": "findymail"
|
|
7488
|
+
* },
|
|
7489
|
+
* {
|
|
7490
|
+
* "provider": "leadmagic"
|
|
7491
|
+
* },
|
|
7492
|
+
* {
|
|
7493
|
+
* "provider": "crustdata"
|
|
7494
|
+
* },
|
|
7495
|
+
* {
|
|
7496
|
+
* "provider": "clado"
|
|
7497
|
+
* }
|
|
7498
|
+
* ] */
|
|
7499
|
+
providers?: {
|
|
7500
|
+
/** @enum {string} */
|
|
7501
|
+
provider: "hunter" | "findymail" | "leadmagic" | "crustdata" | "clado";
|
|
7502
|
+
}[];
|
|
7503
|
+
/** @default true */
|
|
7504
|
+
allow_catch_all_emails?: boolean;
|
|
7505
|
+
/** @default true */
|
|
7506
|
+
allow_risky_emails?: boolean;
|
|
7507
|
+
input_fields?: {
|
|
7508
|
+
/** @default {
|
|
7509
|
+
* "alias": ""
|
|
7510
|
+
* } */
|
|
7511
|
+
profile_url?: {
|
|
7512
|
+
alias: string;
|
|
7513
|
+
};
|
|
7514
|
+
};
|
|
7515
|
+
output_fields?: {
|
|
7516
|
+
/** @default {
|
|
7517
|
+
* "alias": "",
|
|
7518
|
+
* "enabled": true
|
|
7519
|
+
* } */
|
|
7520
|
+
work_email?: {
|
|
7521
|
+
/** @default */
|
|
7522
|
+
alias?: string;
|
|
7523
|
+
/** @default true */
|
|
7524
|
+
enabled?: boolean;
|
|
7525
|
+
};
|
|
7526
|
+
/** @default {
|
|
7527
|
+
* "alias": "",
|
|
7528
|
+
* "enabled": true
|
|
7529
|
+
* } */
|
|
7530
|
+
email_validation_status?: {
|
|
7531
|
+
/** @default */
|
|
7532
|
+
alias?: string;
|
|
7533
|
+
/** @default true */
|
|
7534
|
+
enabled?: boolean;
|
|
7535
|
+
};
|
|
7536
|
+
};
|
|
7537
|
+
};
|
|
6768
7538
|
} | {
|
|
6769
7539
|
/** @enum {string} */
|
|
6770
7540
|
pipe_id: "company:identity@1";
|
|
@@ -7161,12 +7931,12 @@ export interface paths {
|
|
|
7161
7931
|
format?: "json_object" | "json_list" | "json_list_string" | "url" | "website_url" | "profile_url" | "email" | "datetime" | "currency" | "date" | "phone" | "markdown" | "text" | "int" | "decimal" | "address_line_1" | "zip_code" | "percent" | null;
|
|
7162
7932
|
claimed_by?: {
|
|
7163
7933
|
/** @enum {string|null} */
|
|
7164
|
-
ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | null;
|
|
7934
|
+
ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "people:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "people:identity:workemail:waterfall@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | null;
|
|
7165
7935
|
config_hash: string | null;
|
|
7166
7936
|
};
|
|
7167
7937
|
resolved_by?: {
|
|
7168
7938
|
/** @enum {string|null} */
|
|
7169
|
-
ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | null;
|
|
7939
|
+
ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "people:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "people:identity:workemail:waterfall@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | null;
|
|
7170
7940
|
/** @enum {string|null} */
|
|
7171
7941
|
environment: "production" | "sandbox" | null;
|
|
7172
7942
|
config_hash: string | null;
|
|
@@ -7202,11 +7972,11 @@ export interface paths {
|
|
|
7202
7972
|
waterfall?: {
|
|
7203
7973
|
attempted_providers: {
|
|
7204
7974
|
/** @enum {string} */
|
|
7205
|
-
provider: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
|
|
7975
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
|
|
7206
7976
|
}[];
|
|
7207
|
-
available_providers: ("pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
|
|
7977
|
+
available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
|
|
7208
7978
|
/** @enum {string} */
|
|
7209
|
-
successful_provider?: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
|
|
7979
|
+
successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
|
|
7210
7980
|
};
|
|
7211
7981
|
icon?: {
|
|
7212
7982
|
/** @enum {string} */
|
|
@@ -7249,7 +8019,7 @@ export interface paths {
|
|
|
7249
8019
|
type: "string" | "number" | "boolean" | "json" | "unknown";
|
|
7250
8020
|
label: string;
|
|
7251
8021
|
added_by: {
|
|
7252
|
-
ref: ("prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1") | "input";
|
|
8022
|
+
ref: ("prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "people:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "people:identity:workemail:waterfall@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1") | "input";
|
|
7253
8023
|
config_hash: string | null;
|
|
7254
8024
|
pipe_index: number | null;
|
|
7255
8025
|
};
|
|
@@ -7280,12 +8050,12 @@ export interface paths {
|
|
|
7280
8050
|
} | null;
|
|
7281
8051
|
claimed_by: {
|
|
7282
8052
|
/** @enum {string|null} */
|
|
7283
|
-
ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | null;
|
|
8053
|
+
ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "people:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "people:identity:workemail:waterfall@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | null;
|
|
7284
8054
|
config_hash: string | null;
|
|
7285
8055
|
};
|
|
7286
8056
|
resolved_by: {
|
|
7287
8057
|
/** @enum {string|null} */
|
|
7288
|
-
ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | null;
|
|
8058
|
+
ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "people:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "people:identity:workemail:waterfall@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | null;
|
|
7289
8059
|
/** @enum {string|null} */
|
|
7290
8060
|
environment: "production" | "sandbox" | null;
|
|
7291
8061
|
config_hash: string | null;
|
|
@@ -7321,11 +8091,11 @@ export interface paths {
|
|
|
7321
8091
|
waterfall?: {
|
|
7322
8092
|
attempted_providers: {
|
|
7323
8093
|
/** @enum {string} */
|
|
7324
|
-
provider: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
|
|
8094
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
|
|
7325
8095
|
}[];
|
|
7326
|
-
available_providers: ("pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
|
|
8096
|
+
available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
|
|
7327
8097
|
/** @enum {string} */
|
|
7328
|
-
successful_provider?: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
|
|
8098
|
+
successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
|
|
7329
8099
|
};
|
|
7330
8100
|
icon?: {
|
|
7331
8101
|
/** @enum {string} */
|
|
@@ -7456,7 +8226,7 @@ export interface paths {
|
|
|
7456
8226
|
type: "string" | "number" | "boolean" | "json" | "unknown";
|
|
7457
8227
|
label: string;
|
|
7458
8228
|
added_by: {
|
|
7459
|
-
ref: ("prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1") | "input";
|
|
8229
|
+
ref: ("prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "people:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "people:identity:workemail:waterfall@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1") | "input";
|
|
7460
8230
|
config_hash: string | null;
|
|
7461
8231
|
pipe_index: number | null;
|
|
7462
8232
|
};
|
|
@@ -7487,12 +8257,12 @@ export interface paths {
|
|
|
7487
8257
|
} | null;
|
|
7488
8258
|
claimed_by: {
|
|
7489
8259
|
/** @enum {string|null} */
|
|
7490
|
-
ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | null;
|
|
8260
|
+
ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "people:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "people:identity:workemail:waterfall@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | null;
|
|
7491
8261
|
config_hash: string | null;
|
|
7492
8262
|
};
|
|
7493
8263
|
resolved_by: {
|
|
7494
8264
|
/** @enum {string|null} */
|
|
7495
|
-
ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | null;
|
|
8265
|
+
ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "people:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "people:identity:workemail:waterfall@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | null;
|
|
7496
8266
|
/** @enum {string|null} */
|
|
7497
8267
|
environment: "production" | "sandbox" | null;
|
|
7498
8268
|
config_hash: string | null;
|
|
@@ -7528,11 +8298,11 @@ export interface paths {
|
|
|
7528
8298
|
waterfall?: {
|
|
7529
8299
|
attempted_providers: {
|
|
7530
8300
|
/** @enum {string} */
|
|
7531
|
-
provider: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
|
|
8301
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
|
|
7532
8302
|
}[];
|
|
7533
|
-
available_providers: ("pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
|
|
8303
|
+
available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
|
|
7534
8304
|
/** @enum {string} */
|
|
7535
|
-
successful_provider?: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
|
|
8305
|
+
successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
|
|
7536
8306
|
};
|
|
7537
8307
|
icon?: {
|
|
7538
8308
|
/** @enum {string} */
|
|
@@ -7671,7 +8441,7 @@ export interface paths {
|
|
|
7671
8441
|
format?: "json_object" | "json_list" | "json_list_string" | "url" | "website_url" | "profile_url" | "email" | "datetime" | "currency" | "date" | "phone" | "markdown" | "text" | "int" | "decimal" | "address_line_1" | "zip_code" | "percent" | null;
|
|
7672
8442
|
resolved_by?: {
|
|
7673
8443
|
/** @enum {string|null} */
|
|
7674
|
-
ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | null;
|
|
8444
|
+
ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "people:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "people:identity:workemail:waterfall@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | null;
|
|
7675
8445
|
/** @enum {string|null} */
|
|
7676
8446
|
environment: "production" | "sandbox" | null;
|
|
7677
8447
|
config_hash: string | null;
|
|
@@ -7707,11 +8477,11 @@ export interface paths {
|
|
|
7707
8477
|
waterfall?: {
|
|
7708
8478
|
attempted_providers: {
|
|
7709
8479
|
/** @enum {string} */
|
|
7710
|
-
provider: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
|
|
8480
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
|
|
7711
8481
|
}[];
|
|
7712
|
-
available_providers: ("pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
|
|
8482
|
+
available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
|
|
7713
8483
|
/** @enum {string} */
|
|
7714
|
-
successful_provider?: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
|
|
8484
|
+
successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
|
|
7715
8485
|
};
|
|
7716
8486
|
icon?: {
|
|
7717
8487
|
/** @enum {string} */
|
|
@@ -7737,7 +8507,7 @@ export interface paths {
|
|
|
7737
8507
|
search_statuses: {
|
|
7738
8508
|
search: {
|
|
7739
8509
|
/** @enum {string} */
|
|
7740
|
-
ref: "people:profiles:icypeas@1" | "companies:profiles:icypeas@1" | "people:profiles:clado@1" | "people:profiles:clado@2" | "people:employees:leadmagic@1" | "companies:profiles:exa@1" | "people:profiles:exa@1";
|
|
8510
|
+
ref: "people:profiles:icypeas@1" | "companies:profiles:icypeas@1" | "people:profiles:clado@1" | "people:profiles:clado@2" | "people:employees:leadmagic@1" | "companies:profiles:exa@1" | "people:profiles:exa@1" | "companies:profiles:crustdata@1" | "people:profiles:crustdata@1";
|
|
7741
8511
|
};
|
|
7742
8512
|
/** @enum {string} */
|
|
7743
8513
|
status: "pending" | "processing" | "failed" | "completed";
|
|
@@ -7754,8 +8524,13 @@ export interface paths {
|
|
|
7754
8524
|
offset?: number;
|
|
7755
8525
|
};
|
|
7756
8526
|
};
|
|
7757
|
-
|
|
7758
|
-
|
|
8527
|
+
crustdata?: {
|
|
8528
|
+
pagination: {
|
|
8529
|
+
cursor: string | null;
|
|
8530
|
+
};
|
|
8531
|
+
};
|
|
8532
|
+
};
|
|
8533
|
+
};
|
|
7759
8534
|
}[];
|
|
7760
8535
|
organizationId: string;
|
|
7761
8536
|
};
|
|
@@ -7879,7 +8654,7 @@ export interface paths {
|
|
|
7879
8654
|
};
|
|
7880
8655
|
searches: ({
|
|
7881
8656
|
/** @enum {string} */
|
|
7882
|
-
search_id: "people:profiles:
|
|
8657
|
+
search_id: "people:profiles:crustdata@1";
|
|
7883
8658
|
connector?: {
|
|
7884
8659
|
/**
|
|
7885
8660
|
* @default first
|
|
@@ -7895,6 +8670,7 @@ export interface paths {
|
|
|
7895
8670
|
config: {
|
|
7896
8671
|
/** @default 100 */
|
|
7897
8672
|
limit?: number;
|
|
8673
|
+
cursor: string;
|
|
7898
8674
|
output_fields?: {
|
|
7899
8675
|
/** @default {
|
|
7900
8676
|
* "alias": "",
|
|
@@ -7906,26 +8682,6 @@ export interface paths {
|
|
|
7906
8682
|
/** @default true */
|
|
7907
8683
|
enabled?: boolean;
|
|
7908
8684
|
};
|
|
7909
|
-
/** @default {
|
|
7910
|
-
* "alias": "",
|
|
7911
|
-
* "enabled": true
|
|
7912
|
-
* } */
|
|
7913
|
-
job_title?: {
|
|
7914
|
-
/** @default */
|
|
7915
|
-
alias?: string;
|
|
7916
|
-
/** @default true */
|
|
7917
|
-
enabled?: boolean;
|
|
7918
|
-
};
|
|
7919
|
-
/** @default {
|
|
7920
|
-
* "alias": "",
|
|
7921
|
-
* "enabled": true
|
|
7922
|
-
* } */
|
|
7923
|
-
profile_headline?: {
|
|
7924
|
-
/** @default */
|
|
7925
|
-
alias?: string;
|
|
7926
|
-
/** @default true */
|
|
7927
|
-
enabled?: boolean;
|
|
7928
|
-
};
|
|
7929
8685
|
/** @default {
|
|
7930
8686
|
* "alias": "",
|
|
7931
8687
|
* "enabled": true
|
|
@@ -7940,7 +8696,7 @@ export interface paths {
|
|
|
7940
8696
|
* "alias": "",
|
|
7941
8697
|
* "enabled": true
|
|
7942
8698
|
* } */
|
|
7943
|
-
|
|
8699
|
+
profile_url?: {
|
|
7944
8700
|
/** @default */
|
|
7945
8701
|
alias?: string;
|
|
7946
8702
|
/** @default true */
|
|
@@ -7950,7 +8706,7 @@ export interface paths {
|
|
|
7950
8706
|
* "alias": "",
|
|
7951
8707
|
* "enabled": true
|
|
7952
8708
|
* } */
|
|
7953
|
-
|
|
8709
|
+
job_title?: {
|
|
7954
8710
|
/** @default */
|
|
7955
8711
|
alias?: string;
|
|
7956
8712
|
/** @default true */
|
|
@@ -7960,7 +8716,7 @@ export interface paths {
|
|
|
7960
8716
|
* "alias": "",
|
|
7961
8717
|
* "enabled": true
|
|
7962
8718
|
* } */
|
|
7963
|
-
|
|
8719
|
+
crustdata_person_match?: {
|
|
7964
8720
|
/** @default */
|
|
7965
8721
|
alias?: string;
|
|
7966
8722
|
/** @default true */
|
|
@@ -7968,77 +8724,63 @@ export interface paths {
|
|
|
7968
8724
|
};
|
|
7969
8725
|
};
|
|
7970
8726
|
filters: {
|
|
7971
|
-
|
|
7972
|
-
|
|
7973
|
-
|
|
7974
|
-
|
|
7975
|
-
|
|
7976
|
-
|
|
7977
|
-
|
|
7978
|
-
|
|
7979
|
-
|
|
7980
|
-
|
|
7981
|
-
|
|
7982
|
-
|
|
7983
|
-
|
|
7984
|
-
|
|
7985
|
-
include?: string[];
|
|
7986
|
-
/** @default [] */
|
|
7987
|
-
exclude?: string[];
|
|
7988
|
-
};
|
|
7989
|
-
pastJobTitle?: {
|
|
7990
|
-
/** @default [] */
|
|
7991
|
-
include?: string[];
|
|
7992
|
-
/** @default [] */
|
|
7993
|
-
exclude?: string[];
|
|
7994
|
-
};
|
|
7995
|
-
currentCompanyName?: {
|
|
7996
|
-
/** @default [] */
|
|
7997
|
-
include?: string[];
|
|
7998
|
-
/** @default [] */
|
|
7999
|
-
exclude?: string[];
|
|
8000
|
-
};
|
|
8001
|
-
pastCompanyName?: {
|
|
8002
|
-
/** @default [] */
|
|
8003
|
-
include?: string[];
|
|
8004
|
-
/** @default [] */
|
|
8005
|
-
exclude?: string[];
|
|
8006
|
-
};
|
|
8007
|
-
school?: {
|
|
8008
|
-
/** @default [] */
|
|
8009
|
-
include?: string[];
|
|
8010
|
-
/** @default [] */
|
|
8011
|
-
exclude?: string[];
|
|
8012
|
-
};
|
|
8013
|
-
location?: {
|
|
8014
|
-
/** @default [] */
|
|
8015
|
-
include?: string[];
|
|
8016
|
-
/** @default [] */
|
|
8017
|
-
exclude?: string[];
|
|
8018
|
-
};
|
|
8019
|
-
languages?: {
|
|
8727
|
+
locations?: string[];
|
|
8728
|
+
/** @default [] */
|
|
8729
|
+
profile_headline_keywords?: string[];
|
|
8730
|
+
/** @default [] */
|
|
8731
|
+
profile_summary_keywords?: string[];
|
|
8732
|
+
profile_languages?: ("Arabic" | "English" | "Spanish" | "Portuguese" | "Chinese" | "French" | "Italian" | "Russian" | "German" | "Dutch" | "Turkish" | "Tagalog" | "Polish" | "Korean" | "Japanese" | "Malay" | "Norwegian" | "Danish" | "Romanian" | "Swedish" | "Bahasa Indonesia" | "Czech")[];
|
|
8733
|
+
languages?: string[];
|
|
8734
|
+
skills?: string[];
|
|
8735
|
+
years_of_experience?: ("Less than 1 year" | "1 to 2 years" | "3 to 5 years" | "6 to 10 years" | "More than 10 years")[];
|
|
8736
|
+
/** @default {
|
|
8737
|
+
* "include": [],
|
|
8738
|
+
* "exclude": []
|
|
8739
|
+
* } */
|
|
8740
|
+
current_seniority_levels?: {
|
|
8020
8741
|
/** @default [] */
|
|
8021
8742
|
include?: string[];
|
|
8022
8743
|
/** @default [] */
|
|
8023
8744
|
exclude?: string[];
|
|
8024
8745
|
};
|
|
8025
|
-
|
|
8026
|
-
|
|
8027
|
-
|
|
8028
|
-
|
|
8029
|
-
|
|
8030
|
-
|
|
8031
|
-
|
|
8746
|
+
/** @default [] */
|
|
8747
|
+
current_employers?: string[];
|
|
8748
|
+
/** @default [] */
|
|
8749
|
+
current_job_titles?: string[];
|
|
8750
|
+
current_employers_linkedin_industries?: string[];
|
|
8751
|
+
years_at_current_company?: ("Less than 1 year" | "1 to 2 years" | "3 to 5 years" | "6 to 10 years" | "More than 10 years")[];
|
|
8752
|
+
/** @default {
|
|
8753
|
+
* "include": [],
|
|
8754
|
+
* "exclude": []
|
|
8755
|
+
* } */
|
|
8756
|
+
previous_seniority_levels?: {
|
|
8032
8757
|
/** @default [] */
|
|
8033
8758
|
include?: string[];
|
|
8034
8759
|
/** @default [] */
|
|
8035
8760
|
exclude?: string[];
|
|
8036
8761
|
};
|
|
8762
|
+
/** @default [] */
|
|
8763
|
+
previous_employers?: string[];
|
|
8764
|
+
/** @default [] */
|
|
8765
|
+
previous_job_titles?: string[];
|
|
8766
|
+
previous_employers_linkedin_industries?: string[];
|
|
8767
|
+
/** @default [] */
|
|
8768
|
+
certifications?: string[];
|
|
8769
|
+
/** @default [] */
|
|
8770
|
+
honors?: string[];
|
|
8771
|
+
/** @default null */
|
|
8772
|
+
recently_changed_jobs?: boolean | null;
|
|
8773
|
+
fields_of_study?: string[];
|
|
8774
|
+
degree_names?: string[];
|
|
8775
|
+
school_names?: string[];
|
|
8776
|
+
current_school_names?: string[];
|
|
8777
|
+
/** @default [] */
|
|
8778
|
+
extracurricular_activities?: string[];
|
|
8037
8779
|
};
|
|
8038
8780
|
};
|
|
8039
8781
|
} | {
|
|
8040
8782
|
/** @enum {string} */
|
|
8041
|
-
search_id: "companies:profiles:
|
|
8783
|
+
search_id: "companies:profiles:crustdata@1";
|
|
8042
8784
|
connector?: {
|
|
8043
8785
|
/**
|
|
8044
8786
|
* @default first
|
|
@@ -8054,6 +8796,7 @@ export interface paths {
|
|
|
8054
8796
|
config: {
|
|
8055
8797
|
/** @default 100 */
|
|
8056
8798
|
limit?: number;
|
|
8799
|
+
cursor: string;
|
|
8057
8800
|
output_fields?: {
|
|
8058
8801
|
/** @default {
|
|
8059
8802
|
* "alias": "",
|
|
@@ -8065,26 +8808,6 @@ export interface paths {
|
|
|
8065
8808
|
/** @default true */
|
|
8066
8809
|
enabled?: boolean;
|
|
8067
8810
|
};
|
|
8068
|
-
/** @default {
|
|
8069
|
-
* "alias": "",
|
|
8070
|
-
* "enabled": true
|
|
8071
|
-
* } */
|
|
8072
|
-
company_industry?: {
|
|
8073
|
-
/** @default */
|
|
8074
|
-
alias?: string;
|
|
8075
|
-
/** @default true */
|
|
8076
|
-
enabled?: boolean;
|
|
8077
|
-
};
|
|
8078
|
-
/** @default {
|
|
8079
|
-
* "alias": "",
|
|
8080
|
-
* "enabled": true
|
|
8081
|
-
* } */
|
|
8082
|
-
company_description?: {
|
|
8083
|
-
/** @default */
|
|
8084
|
-
alias?: string;
|
|
8085
|
-
/** @default true */
|
|
8086
|
-
enabled?: boolean;
|
|
8087
|
-
};
|
|
8088
8811
|
/** @default {
|
|
8089
8812
|
* "alias": "",
|
|
8090
8813
|
* "enabled": true
|
|
@@ -8099,17 +8822,7 @@ export interface paths {
|
|
|
8099
8822
|
* "alias": "",
|
|
8100
8823
|
* "enabled": true
|
|
8101
8824
|
* } */
|
|
8102
|
-
|
|
8103
|
-
/** @default */
|
|
8104
|
-
alias?: string;
|
|
8105
|
-
/** @default true */
|
|
8106
|
-
enabled?: boolean;
|
|
8107
|
-
};
|
|
8108
|
-
/** @default {
|
|
8109
|
-
* "alias": "",
|
|
8110
|
-
* "enabled": true
|
|
8111
|
-
* } */
|
|
8112
|
-
company_region?: {
|
|
8825
|
+
company_description?: {
|
|
8113
8826
|
/** @default */
|
|
8114
8827
|
alias?: string;
|
|
8115
8828
|
/** @default true */
|
|
@@ -8129,7 +8842,7 @@ export interface paths {
|
|
|
8129
8842
|
* "alias": "",
|
|
8130
8843
|
* "enabled": true
|
|
8131
8844
|
* } */
|
|
8132
|
-
|
|
8845
|
+
crustdata_company_match?: {
|
|
8133
8846
|
/** @default */
|
|
8134
8847
|
alias?: string;
|
|
8135
8848
|
/** @default true */
|
|
@@ -8137,51 +8850,44 @@ export interface paths {
|
|
|
8137
8850
|
};
|
|
8138
8851
|
};
|
|
8139
8852
|
filters: {
|
|
8140
|
-
|
|
8141
|
-
|
|
8142
|
-
|
|
8143
|
-
|
|
8144
|
-
|
|
8145
|
-
|
|
8146
|
-
|
|
8147
|
-
|
|
8148
|
-
|
|
8149
|
-
|
|
8150
|
-
|
|
8151
|
-
|
|
8152
|
-
|
|
8153
|
-
|
|
8154
|
-
|
|
8155
|
-
/** @default [] */
|
|
8156
|
-
exclude?: string[];
|
|
8157
|
-
};
|
|
8158
|
-
location?: {
|
|
8159
|
-
/** @default [] */
|
|
8160
|
-
include?: string[];
|
|
8161
|
-
/** @default [] */
|
|
8162
|
-
exclude?: string[];
|
|
8163
|
-
};
|
|
8164
|
-
headcount?: {
|
|
8853
|
+
hq_locations?: string[];
|
|
8854
|
+
crunchbase_categories?: string[];
|
|
8855
|
+
crunchbase_investors?: string[];
|
|
8856
|
+
tracxn_investors?: string[];
|
|
8857
|
+
company_types?: ("Public Company" | "Privately Held" | "Non Profit" | "Educational Institution" | "Partnership" | "Self Employed" | "Self Owned" | "Government Agency")[];
|
|
8858
|
+
linkedin_industries?: string[];
|
|
8859
|
+
markets?: string[];
|
|
8860
|
+
linkedin_categories?: string[];
|
|
8861
|
+
headcount?: ("1-10" | "11-50" | "51-200" | "201-500" | "501-1,000" | "1,001-5,000" | "5,001-10,000" | "10,001+")[];
|
|
8862
|
+
headcount_growth_last_6m_in_percent?: ("0-10%" | "10-20%" | "20-50%" | "50-70%" | "70%+")[];
|
|
8863
|
+
/** @default {
|
|
8864
|
+
* "from": null,
|
|
8865
|
+
* "to": null
|
|
8866
|
+
* } */
|
|
8867
|
+
revenue_in_usd?: {
|
|
8165
8868
|
from?: number | null;
|
|
8166
8869
|
to?: number | null;
|
|
8167
8870
|
};
|
|
8168
|
-
|
|
8169
|
-
|
|
8170
|
-
|
|
8171
|
-
|
|
8172
|
-
|
|
8173
|
-
|
|
8174
|
-
|
|
8175
|
-
|
|
8176
|
-
include?: string[];
|
|
8177
|
-
/** @default [] */
|
|
8178
|
-
exclude?: string[];
|
|
8871
|
+
last_funding_type?: ("Series A" | "Series B" | "Series C" | "Series D")[];
|
|
8872
|
+
/** @default {
|
|
8873
|
+
* "from": null,
|
|
8874
|
+
* "to": null
|
|
8875
|
+
* } */
|
|
8876
|
+
last_funding_amount?: {
|
|
8877
|
+
from?: number | null;
|
|
8878
|
+
to?: number | null;
|
|
8179
8879
|
};
|
|
8880
|
+
number_of_followers?: ("1-500" | "501-1000" | "1001-5000" | "5001-10000" | "10001-30000" | "30000+")[];
|
|
8881
|
+
follower_growth_last_6m_in_percent?: ("0-10%" | "10-20%" | "20-50%" | "50-70%" | "70%+")[];
|
|
8882
|
+
/** @default [] */
|
|
8883
|
+
profile_summary_keywords?: string[];
|
|
8884
|
+
/** @default [] */
|
|
8885
|
+
competitor_websites?: string[];
|
|
8180
8886
|
};
|
|
8181
8887
|
};
|
|
8182
8888
|
} | {
|
|
8183
8889
|
/** @enum {string} */
|
|
8184
|
-
search_id: "
|
|
8890
|
+
search_id: "companies:profiles:exa@1";
|
|
8185
8891
|
connector?: {
|
|
8186
8892
|
/**
|
|
8187
8893
|
* @default first
|
|
@@ -8195,14 +8901,14 @@ export interface paths {
|
|
|
8195
8901
|
}[];
|
|
8196
8902
|
} | null;
|
|
8197
8903
|
config: {
|
|
8198
|
-
/** @default
|
|
8904
|
+
/** @default 10 */
|
|
8199
8905
|
limit?: number;
|
|
8200
8906
|
output_fields?: {
|
|
8201
8907
|
/** @default {
|
|
8202
8908
|
* "alias": "",
|
|
8203
8909
|
* "enabled": true
|
|
8204
8910
|
* } */
|
|
8205
|
-
|
|
8911
|
+
company_name?: {
|
|
8206
8912
|
/** @default */
|
|
8207
8913
|
alias?: string;
|
|
8208
8914
|
/** @default true */
|
|
@@ -8212,7 +8918,7 @@ export interface paths {
|
|
|
8212
8918
|
* "alias": "",
|
|
8213
8919
|
* "enabled": true
|
|
8214
8920
|
* } */
|
|
8215
|
-
|
|
8921
|
+
company_website_url?: {
|
|
8216
8922
|
/** @default */
|
|
8217
8923
|
alias?: string;
|
|
8218
8924
|
/** @default true */
|
|
@@ -8222,7 +8928,7 @@ export interface paths {
|
|
|
8222
8928
|
* "alias": "",
|
|
8223
8929
|
* "enabled": true
|
|
8224
8930
|
* } */
|
|
8225
|
-
|
|
8931
|
+
company_description?: {
|
|
8226
8932
|
/** @default */
|
|
8227
8933
|
alias?: string;
|
|
8228
8934
|
/** @default true */
|
|
@@ -8232,7 +8938,7 @@ export interface paths {
|
|
|
8232
8938
|
* "alias": "",
|
|
8233
8939
|
* "enabled": true
|
|
8234
8940
|
* } */
|
|
8235
|
-
|
|
8941
|
+
company_industry?: {
|
|
8236
8942
|
/** @default */
|
|
8237
8943
|
alias?: string;
|
|
8238
8944
|
/** @default true */
|
|
@@ -8242,7 +8948,7 @@ export interface paths {
|
|
|
8242
8948
|
* "alias": "",
|
|
8243
8949
|
* "enabled": true
|
|
8244
8950
|
* } */
|
|
8245
|
-
|
|
8951
|
+
headcount?: {
|
|
8246
8952
|
/** @default */
|
|
8247
8953
|
alias?: string;
|
|
8248
8954
|
/** @default true */
|
|
@@ -8252,7 +8958,7 @@ export interface paths {
|
|
|
8252
8958
|
* "alias": "",
|
|
8253
8959
|
* "enabled": true
|
|
8254
8960
|
* } */
|
|
8255
|
-
|
|
8961
|
+
exa_match_evaluation?: {
|
|
8256
8962
|
/** @default */
|
|
8257
8963
|
alias?: string;
|
|
8258
8964
|
/** @default true */
|
|
@@ -8265,7 +8971,7 @@ export interface paths {
|
|
|
8265
8971
|
};
|
|
8266
8972
|
} | {
|
|
8267
8973
|
/** @enum {string} */
|
|
8268
|
-
search_id: "people:
|
|
8974
|
+
search_id: "people:profiles:exa@1";
|
|
8269
8975
|
connector?: {
|
|
8270
8976
|
/**
|
|
8271
8977
|
* @default first
|
|
@@ -8279,7 +8985,7 @@ export interface paths {
|
|
|
8279
8985
|
}[];
|
|
8280
8986
|
} | null;
|
|
8281
8987
|
config: {
|
|
8282
|
-
/** @default
|
|
8988
|
+
/** @default 10 */
|
|
8283
8989
|
limit?: number;
|
|
8284
8990
|
output_fields?: {
|
|
8285
8991
|
/** @default {
|
|
@@ -8292,6 +8998,26 @@ export interface paths {
|
|
|
8292
8998
|
/** @default true */
|
|
8293
8999
|
enabled?: boolean;
|
|
8294
9000
|
};
|
|
9001
|
+
/** @default {
|
|
9002
|
+
* "alias": "",
|
|
9003
|
+
* "enabled": true
|
|
9004
|
+
* } */
|
|
9005
|
+
profile_url?: {
|
|
9006
|
+
/** @default */
|
|
9007
|
+
alias?: string;
|
|
9008
|
+
/** @default true */
|
|
9009
|
+
enabled?: boolean;
|
|
9010
|
+
};
|
|
9011
|
+
/** @default {
|
|
9012
|
+
* "alias": "",
|
|
9013
|
+
* "enabled": true
|
|
9014
|
+
* } */
|
|
9015
|
+
job_title?: {
|
|
9016
|
+
/** @default */
|
|
9017
|
+
alias?: string;
|
|
9018
|
+
/** @default true */
|
|
9019
|
+
enabled?: boolean;
|
|
9020
|
+
};
|
|
8295
9021
|
/** @default {
|
|
8296
9022
|
* "alias": "",
|
|
8297
9023
|
* "enabled": true
|
|
@@ -8306,7 +9032,7 @@ export interface paths {
|
|
|
8306
9032
|
* "alias": "",
|
|
8307
9033
|
* "enabled": true
|
|
8308
9034
|
* } */
|
|
8309
|
-
|
|
9035
|
+
company_region?: {
|
|
8310
9036
|
/** @default */
|
|
8311
9037
|
alias?: string;
|
|
8312
9038
|
/** @default true */
|
|
@@ -8316,7 +9042,7 @@ export interface paths {
|
|
|
8316
9042
|
* "alias": "",
|
|
8317
9043
|
* "enabled": true
|
|
8318
9044
|
* } */
|
|
8319
|
-
|
|
9045
|
+
exa_match_evaluation?: {
|
|
8320
9046
|
/** @default */
|
|
8321
9047
|
alias?: string;
|
|
8322
9048
|
/** @default true */
|
|
@@ -8324,12 +9050,12 @@ export interface paths {
|
|
|
8324
9050
|
};
|
|
8325
9051
|
};
|
|
8326
9052
|
filters: {
|
|
8327
|
-
|
|
9053
|
+
query: string;
|
|
8328
9054
|
};
|
|
8329
9055
|
};
|
|
8330
9056
|
} | {
|
|
8331
9057
|
/** @enum {string} */
|
|
8332
|
-
search_id: "
|
|
9058
|
+
search_id: "people:profiles:icypeas@1";
|
|
8333
9059
|
connector?: {
|
|
8334
9060
|
/**
|
|
8335
9061
|
* @default first
|
|
@@ -8343,14 +9069,14 @@ export interface paths {
|
|
|
8343
9069
|
}[];
|
|
8344
9070
|
} | null;
|
|
8345
9071
|
config: {
|
|
8346
|
-
/** @default
|
|
9072
|
+
/** @default 100 */
|
|
8347
9073
|
limit?: number;
|
|
8348
9074
|
output_fields?: {
|
|
8349
9075
|
/** @default {
|
|
8350
9076
|
* "alias": "",
|
|
8351
9077
|
* "enabled": true
|
|
8352
9078
|
* } */
|
|
8353
|
-
|
|
9079
|
+
name?: {
|
|
8354
9080
|
/** @default */
|
|
8355
9081
|
alias?: string;
|
|
8356
9082
|
/** @default true */
|
|
@@ -8360,7 +9086,7 @@ export interface paths {
|
|
|
8360
9086
|
* "alias": "",
|
|
8361
9087
|
* "enabled": true
|
|
8362
9088
|
* } */
|
|
8363
|
-
|
|
9089
|
+
job_title?: {
|
|
8364
9090
|
/** @default */
|
|
8365
9091
|
alias?: string;
|
|
8366
9092
|
/** @default true */
|
|
@@ -8370,7 +9096,7 @@ export interface paths {
|
|
|
8370
9096
|
* "alias": "",
|
|
8371
9097
|
* "enabled": true
|
|
8372
9098
|
* } */
|
|
8373
|
-
|
|
9099
|
+
profile_headline?: {
|
|
8374
9100
|
/** @default */
|
|
8375
9101
|
alias?: string;
|
|
8376
9102
|
/** @default true */
|
|
@@ -8380,7 +9106,7 @@ export interface paths {
|
|
|
8380
9106
|
* "alias": "",
|
|
8381
9107
|
* "enabled": true
|
|
8382
9108
|
* } */
|
|
8383
|
-
|
|
9109
|
+
company_website_url?: {
|
|
8384
9110
|
/** @default */
|
|
8385
9111
|
alias?: string;
|
|
8386
9112
|
/** @default true */
|
|
@@ -8390,7 +9116,7 @@ export interface paths {
|
|
|
8390
9116
|
* "alias": "",
|
|
8391
9117
|
* "enabled": true
|
|
8392
9118
|
* } */
|
|
8393
|
-
|
|
9119
|
+
company_profile_url?: {
|
|
8394
9120
|
/** @default */
|
|
8395
9121
|
alias?: string;
|
|
8396
9122
|
/** @default true */
|
|
@@ -8400,51 +9126,116 @@ export interface paths {
|
|
|
8400
9126
|
* "alias": "",
|
|
8401
9127
|
* "enabled": true
|
|
8402
9128
|
* } */
|
|
8403
|
-
|
|
9129
|
+
profile_url?: {
|
|
8404
9130
|
/** @default */
|
|
8405
9131
|
alias?: string;
|
|
8406
9132
|
/** @default true */
|
|
8407
9133
|
enabled?: boolean;
|
|
8408
9134
|
};
|
|
8409
|
-
};
|
|
8410
|
-
filters: {
|
|
8411
|
-
query: string;
|
|
8412
|
-
};
|
|
8413
|
-
};
|
|
8414
|
-
} | {
|
|
8415
|
-
/** @enum {string} */
|
|
8416
|
-
search_id: "people:profiles:exa@1";
|
|
8417
|
-
connector?: {
|
|
8418
|
-
/**
|
|
8419
|
-
* @default first
|
|
8420
|
-
* @enum {string}
|
|
8421
|
-
*/
|
|
8422
|
-
strategy?: "first";
|
|
8423
|
-
connections: {
|
|
8424
|
-
/** @enum {string} */
|
|
8425
|
-
type: "vault";
|
|
8426
|
-
connection: string;
|
|
8427
|
-
}[];
|
|
8428
|
-
} | null;
|
|
8429
|
-
config: {
|
|
8430
|
-
/** @default 10 */
|
|
8431
|
-
limit?: number;
|
|
8432
|
-
output_fields?: {
|
|
8433
9135
|
/** @default {
|
|
8434
9136
|
* "alias": "",
|
|
8435
9137
|
* "enabled": true
|
|
8436
9138
|
* } */
|
|
8437
|
-
|
|
9139
|
+
icypeas_person_match?: {
|
|
8438
9140
|
/** @default */
|
|
8439
9141
|
alias?: string;
|
|
8440
9142
|
/** @default true */
|
|
8441
9143
|
enabled?: boolean;
|
|
8442
9144
|
};
|
|
8443
|
-
|
|
8444
|
-
|
|
8445
|
-
|
|
8446
|
-
|
|
8447
|
-
|
|
9145
|
+
};
|
|
9146
|
+
filters: {
|
|
9147
|
+
firstname?: {
|
|
9148
|
+
/** @default [] */
|
|
9149
|
+
include?: string[];
|
|
9150
|
+
/** @default [] */
|
|
9151
|
+
exclude?: string[];
|
|
9152
|
+
};
|
|
9153
|
+
lastname?: {
|
|
9154
|
+
/** @default [] */
|
|
9155
|
+
include?: string[];
|
|
9156
|
+
/** @default [] */
|
|
9157
|
+
exclude?: string[];
|
|
9158
|
+
};
|
|
9159
|
+
currentJobTitle?: {
|
|
9160
|
+
/** @default [] */
|
|
9161
|
+
include?: string[];
|
|
9162
|
+
/** @default [] */
|
|
9163
|
+
exclude?: string[];
|
|
9164
|
+
};
|
|
9165
|
+
pastJobTitle?: {
|
|
9166
|
+
/** @default [] */
|
|
9167
|
+
include?: string[];
|
|
9168
|
+
/** @default [] */
|
|
9169
|
+
exclude?: string[];
|
|
9170
|
+
};
|
|
9171
|
+
currentCompanyName?: {
|
|
9172
|
+
/** @default [] */
|
|
9173
|
+
include?: string[];
|
|
9174
|
+
/** @default [] */
|
|
9175
|
+
exclude?: string[];
|
|
9176
|
+
};
|
|
9177
|
+
pastCompanyName?: {
|
|
9178
|
+
/** @default [] */
|
|
9179
|
+
include?: string[];
|
|
9180
|
+
/** @default [] */
|
|
9181
|
+
exclude?: string[];
|
|
9182
|
+
};
|
|
9183
|
+
school?: {
|
|
9184
|
+
/** @default [] */
|
|
9185
|
+
include?: string[];
|
|
9186
|
+
/** @default [] */
|
|
9187
|
+
exclude?: string[];
|
|
9188
|
+
};
|
|
9189
|
+
location?: {
|
|
9190
|
+
/** @default [] */
|
|
9191
|
+
include?: string[];
|
|
9192
|
+
/** @default [] */
|
|
9193
|
+
exclude?: string[];
|
|
9194
|
+
};
|
|
9195
|
+
languages?: {
|
|
9196
|
+
/** @default [] */
|
|
9197
|
+
include?: string[];
|
|
9198
|
+
/** @default [] */
|
|
9199
|
+
exclude?: string[];
|
|
9200
|
+
};
|
|
9201
|
+
skills?: {
|
|
9202
|
+
/** @default [] */
|
|
9203
|
+
include?: string[];
|
|
9204
|
+
/** @default [] */
|
|
9205
|
+
exclude?: string[];
|
|
9206
|
+
};
|
|
9207
|
+
keyword?: {
|
|
9208
|
+
/** @default [] */
|
|
9209
|
+
include?: string[];
|
|
9210
|
+
/** @default [] */
|
|
9211
|
+
exclude?: string[];
|
|
9212
|
+
};
|
|
9213
|
+
};
|
|
9214
|
+
};
|
|
9215
|
+
} | {
|
|
9216
|
+
/** @enum {string} */
|
|
9217
|
+
search_id: "companies:profiles:icypeas@1";
|
|
9218
|
+
connector?: {
|
|
9219
|
+
/**
|
|
9220
|
+
* @default first
|
|
9221
|
+
* @enum {string}
|
|
9222
|
+
*/
|
|
9223
|
+
strategy?: "first";
|
|
9224
|
+
connections: {
|
|
9225
|
+
/** @enum {string} */
|
|
9226
|
+
type: "vault";
|
|
9227
|
+
connection: string;
|
|
9228
|
+
}[];
|
|
9229
|
+
} | null;
|
|
9230
|
+
config: {
|
|
9231
|
+
/** @default 100 */
|
|
9232
|
+
limit?: number;
|
|
9233
|
+
output_fields?: {
|
|
9234
|
+
/** @default {
|
|
9235
|
+
* "alias": "",
|
|
9236
|
+
* "enabled": true
|
|
9237
|
+
* } */
|
|
9238
|
+
company_name?: {
|
|
8448
9239
|
/** @default */
|
|
8449
9240
|
alias?: string;
|
|
8450
9241
|
/** @default true */
|
|
@@ -8454,7 +9245,7 @@ export interface paths {
|
|
|
8454
9245
|
* "alias": "",
|
|
8455
9246
|
* "enabled": true
|
|
8456
9247
|
* } */
|
|
8457
|
-
|
|
9248
|
+
company_industry?: {
|
|
8458
9249
|
/** @default */
|
|
8459
9250
|
alias?: string;
|
|
8460
9251
|
/** @default true */
|
|
@@ -8464,7 +9255,27 @@ export interface paths {
|
|
|
8464
9255
|
* "alias": "",
|
|
8465
9256
|
* "enabled": true
|
|
8466
9257
|
* } */
|
|
8467
|
-
|
|
9258
|
+
company_description?: {
|
|
9259
|
+
/** @default */
|
|
9260
|
+
alias?: string;
|
|
9261
|
+
/** @default true */
|
|
9262
|
+
enabled?: boolean;
|
|
9263
|
+
};
|
|
9264
|
+
/** @default {
|
|
9265
|
+
* "alias": "",
|
|
9266
|
+
* "enabled": true
|
|
9267
|
+
* } */
|
|
9268
|
+
company_website_url?: {
|
|
9269
|
+
/** @default */
|
|
9270
|
+
alias?: string;
|
|
9271
|
+
/** @default true */
|
|
9272
|
+
enabled?: boolean;
|
|
9273
|
+
};
|
|
9274
|
+
/** @default {
|
|
9275
|
+
* "alias": "",
|
|
9276
|
+
* "enabled": true
|
|
9277
|
+
* } */
|
|
9278
|
+
headcount?: {
|
|
8468
9279
|
/** @default */
|
|
8469
9280
|
alias?: string;
|
|
8470
9281
|
/** @default true */
|
|
@@ -8484,7 +9295,17 @@ export interface paths {
|
|
|
8484
9295
|
* "alias": "",
|
|
8485
9296
|
* "enabled": true
|
|
8486
9297
|
* } */
|
|
8487
|
-
|
|
9298
|
+
company_profile_url?: {
|
|
9299
|
+
/** @default */
|
|
9300
|
+
alias?: string;
|
|
9301
|
+
/** @default true */
|
|
9302
|
+
enabled?: boolean;
|
|
9303
|
+
};
|
|
9304
|
+
/** @default {
|
|
9305
|
+
* "alias": "",
|
|
9306
|
+
* "enabled": true
|
|
9307
|
+
* } */
|
|
9308
|
+
icypeas_company_match?: {
|
|
8488
9309
|
/** @default */
|
|
8489
9310
|
alias?: string;
|
|
8490
9311
|
/** @default true */
|
|
@@ -8492,12 +9313,63 @@ export interface paths {
|
|
|
8492
9313
|
};
|
|
8493
9314
|
};
|
|
8494
9315
|
filters: {
|
|
8495
|
-
|
|
9316
|
+
name?: {
|
|
9317
|
+
/** @default [] */
|
|
9318
|
+
include?: string[];
|
|
9319
|
+
/** @default [] */
|
|
9320
|
+
exclude?: string[];
|
|
9321
|
+
};
|
|
9322
|
+
/** @default {
|
|
9323
|
+
* "include": [],
|
|
9324
|
+
* "exclude": []
|
|
9325
|
+
* } */
|
|
9326
|
+
type?: {
|
|
9327
|
+
/** @default [] */
|
|
9328
|
+
include?: string[];
|
|
9329
|
+
/** @default [] */
|
|
9330
|
+
exclude?: string[];
|
|
9331
|
+
};
|
|
9332
|
+
/** @default {
|
|
9333
|
+
* "include": [],
|
|
9334
|
+
* "exclude": []
|
|
9335
|
+
* } */
|
|
9336
|
+
industry?: {
|
|
9337
|
+
/** @default [] */
|
|
9338
|
+
include?: string[];
|
|
9339
|
+
/** @default [] */
|
|
9340
|
+
exclude?: string[];
|
|
9341
|
+
};
|
|
9342
|
+
location?: {
|
|
9343
|
+
/** @default [] */
|
|
9344
|
+
include?: string[];
|
|
9345
|
+
/** @default [] */
|
|
9346
|
+
exclude?: string[];
|
|
9347
|
+
};
|
|
9348
|
+
/** @default {
|
|
9349
|
+
* "from": null,
|
|
9350
|
+
* "to": null
|
|
9351
|
+
* } */
|
|
9352
|
+
headcount?: {
|
|
9353
|
+
from?: number | null;
|
|
9354
|
+
to?: number | null;
|
|
9355
|
+
};
|
|
9356
|
+
urn?: {
|
|
9357
|
+
/** @default [] */
|
|
9358
|
+
include?: string[];
|
|
9359
|
+
/** @default [] */
|
|
9360
|
+
exclude?: string[];
|
|
9361
|
+
};
|
|
9362
|
+
lid?: {
|
|
9363
|
+
/** @default [] */
|
|
9364
|
+
include?: string[];
|
|
9365
|
+
/** @default [] */
|
|
9366
|
+
exclude?: string[];
|
|
9367
|
+
};
|
|
8496
9368
|
};
|
|
8497
9369
|
};
|
|
8498
9370
|
} | {
|
|
8499
9371
|
/** @enum {string} */
|
|
8500
|
-
search_id: "people:
|
|
9372
|
+
search_id: "people:employees:leadmagic@1";
|
|
8501
9373
|
connector?: {
|
|
8502
9374
|
/**
|
|
8503
9375
|
* @default first
|
|
@@ -8511,11 +9383,72 @@ export interface paths {
|
|
|
8511
9383
|
}[];
|
|
8512
9384
|
} | null;
|
|
8513
9385
|
config: {
|
|
8514
|
-
/** @default
|
|
9386
|
+
/** @default 50 */
|
|
9387
|
+
limit?: number;
|
|
9388
|
+
output_fields?: {
|
|
9389
|
+
/** @default {
|
|
9390
|
+
* "alias": "",
|
|
9391
|
+
* "enabled": true
|
|
9392
|
+
* } */
|
|
9393
|
+
name?: {
|
|
9394
|
+
/** @default */
|
|
9395
|
+
alias?: string;
|
|
9396
|
+
/** @default true */
|
|
9397
|
+
enabled?: boolean;
|
|
9398
|
+
};
|
|
9399
|
+
/** @default {
|
|
9400
|
+
* "alias": "",
|
|
9401
|
+
* "enabled": true
|
|
9402
|
+
* } */
|
|
9403
|
+
company_name?: {
|
|
9404
|
+
/** @default */
|
|
9405
|
+
alias?: string;
|
|
9406
|
+
/** @default true */
|
|
9407
|
+
enabled?: boolean;
|
|
9408
|
+
};
|
|
9409
|
+
/** @default {
|
|
9410
|
+
* "alias": "",
|
|
9411
|
+
* "enabled": true
|
|
9412
|
+
* } */
|
|
9413
|
+
company_website_url?: {
|
|
9414
|
+
/** @default */
|
|
9415
|
+
alias?: string;
|
|
9416
|
+
/** @default true */
|
|
9417
|
+
enabled?: boolean;
|
|
9418
|
+
};
|
|
9419
|
+
/** @default {
|
|
9420
|
+
* "alias": "",
|
|
9421
|
+
* "enabled": true
|
|
9422
|
+
* } */
|
|
9423
|
+
job_title?: {
|
|
9424
|
+
/** @default */
|
|
9425
|
+
alias?: string;
|
|
9426
|
+
/** @default true */
|
|
9427
|
+
enabled?: boolean;
|
|
9428
|
+
};
|
|
9429
|
+
};
|
|
9430
|
+
filters: {
|
|
9431
|
+
company_website_url: string;
|
|
9432
|
+
};
|
|
9433
|
+
};
|
|
9434
|
+
} | {
|
|
9435
|
+
/** @enum {string} */
|
|
9436
|
+
search_id: "people:profiles:clado@1";
|
|
9437
|
+
connector?: {
|
|
9438
|
+
/**
|
|
9439
|
+
* @default first
|
|
9440
|
+
* @enum {string}
|
|
9441
|
+
*/
|
|
9442
|
+
strategy?: "first";
|
|
9443
|
+
connections: {
|
|
9444
|
+
/** @enum {string} */
|
|
9445
|
+
type: "vault";
|
|
9446
|
+
connection: string;
|
|
9447
|
+
}[];
|
|
9448
|
+
} | null;
|
|
9449
|
+
config: {
|
|
9450
|
+
/** @default 20 */
|
|
8515
9451
|
limit?: number;
|
|
8516
|
-
/** @default */
|
|
8517
|
-
search_id?: string;
|
|
8518
|
-
offset?: number;
|
|
8519
9452
|
output_fields?: {
|
|
8520
9453
|
/** @default {
|
|
8521
9454
|
* "alias": "",
|
|
@@ -8571,20 +9504,107 @@ export interface paths {
|
|
|
8571
9504
|
* "alias": "",
|
|
8572
9505
|
* "enabled": true
|
|
8573
9506
|
* } */
|
|
8574
|
-
|
|
9507
|
+
clado_person_match?: {
|
|
8575
9508
|
/** @default */
|
|
8576
9509
|
alias?: string;
|
|
8577
9510
|
/** @default true */
|
|
8578
9511
|
enabled?: boolean;
|
|
8579
9512
|
};
|
|
8580
9513
|
};
|
|
8581
|
-
filters
|
|
8582
|
-
|
|
8583
|
-
query?: string;
|
|
9514
|
+
filters: {
|
|
9515
|
+
query: string;
|
|
8584
9516
|
};
|
|
8585
9517
|
};
|
|
8586
|
-
}
|
|
8587
|
-
|
|
9518
|
+
} | {
|
|
9519
|
+
/** @enum {string} */
|
|
9520
|
+
search_id: "people:profiles:clado@2";
|
|
9521
|
+
connector?: {
|
|
9522
|
+
/**
|
|
9523
|
+
* @default first
|
|
9524
|
+
* @enum {string}
|
|
9525
|
+
*/
|
|
9526
|
+
strategy?: "first";
|
|
9527
|
+
connections: {
|
|
9528
|
+
/** @enum {string} */
|
|
9529
|
+
type: "vault";
|
|
9530
|
+
connection: string;
|
|
9531
|
+
}[];
|
|
9532
|
+
} | null;
|
|
9533
|
+
config: {
|
|
9534
|
+
/** @default 100 */
|
|
9535
|
+
limit?: number;
|
|
9536
|
+
/** @default */
|
|
9537
|
+
search_id?: string;
|
|
9538
|
+
offset?: number | null;
|
|
9539
|
+
output_fields?: {
|
|
9540
|
+
/** @default {
|
|
9541
|
+
* "alias": "",
|
|
9542
|
+
* "enabled": true
|
|
9543
|
+
* } */
|
|
9544
|
+
name?: {
|
|
9545
|
+
/** @default */
|
|
9546
|
+
alias?: string;
|
|
9547
|
+
/** @default true */
|
|
9548
|
+
enabled?: boolean;
|
|
9549
|
+
};
|
|
9550
|
+
/** @default {
|
|
9551
|
+
* "alias": "",
|
|
9552
|
+
* "enabled": true
|
|
9553
|
+
* } */
|
|
9554
|
+
job_title?: {
|
|
9555
|
+
/** @default */
|
|
9556
|
+
alias?: string;
|
|
9557
|
+
/** @default true */
|
|
9558
|
+
enabled?: boolean;
|
|
9559
|
+
};
|
|
9560
|
+
/** @default {
|
|
9561
|
+
* "alias": "",
|
|
9562
|
+
* "enabled": true
|
|
9563
|
+
* } */
|
|
9564
|
+
company_profile_url?: {
|
|
9565
|
+
/** @default */
|
|
9566
|
+
alias?: string;
|
|
9567
|
+
/** @default true */
|
|
9568
|
+
enabled?: boolean;
|
|
9569
|
+
};
|
|
9570
|
+
/** @default {
|
|
9571
|
+
* "alias": "",
|
|
9572
|
+
* "enabled": true
|
|
9573
|
+
* } */
|
|
9574
|
+
company_name?: {
|
|
9575
|
+
/** @default */
|
|
9576
|
+
alias?: string;
|
|
9577
|
+
/** @default true */
|
|
9578
|
+
enabled?: boolean;
|
|
9579
|
+
};
|
|
9580
|
+
/** @default {
|
|
9581
|
+
* "alias": "",
|
|
9582
|
+
* "enabled": true
|
|
9583
|
+
* } */
|
|
9584
|
+
profile_url?: {
|
|
9585
|
+
/** @default */
|
|
9586
|
+
alias?: string;
|
|
9587
|
+
/** @default true */
|
|
9588
|
+
enabled?: boolean;
|
|
9589
|
+
};
|
|
9590
|
+
/** @default {
|
|
9591
|
+
* "alias": "",
|
|
9592
|
+
* "enabled": true
|
|
9593
|
+
* } */
|
|
9594
|
+
clado_person_match_v2?: {
|
|
9595
|
+
/** @default */
|
|
9596
|
+
alias?: string;
|
|
9597
|
+
/** @default true */
|
|
9598
|
+
enabled?: boolean;
|
|
9599
|
+
};
|
|
9600
|
+
};
|
|
9601
|
+
filters?: {
|
|
9602
|
+
/** @default */
|
|
9603
|
+
query?: string;
|
|
9604
|
+
};
|
|
9605
|
+
};
|
|
9606
|
+
})[];
|
|
9607
|
+
};
|
|
8588
9608
|
};
|
|
8589
9609
|
};
|
|
8590
9610
|
responses: {
|
|
@@ -8610,7 +9630,7 @@ export interface paths {
|
|
|
8610
9630
|
format?: "json_object" | "json_list" | "json_list_string" | "url" | "website_url" | "profile_url" | "email" | "datetime" | "currency" | "date" | "phone" | "markdown" | "text" | "int" | "decimal" | "address_line_1" | "zip_code" | "percent" | null;
|
|
8611
9631
|
resolved_by?: {
|
|
8612
9632
|
/** @enum {string|null} */
|
|
8613
|
-
ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | null;
|
|
9633
|
+
ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "people:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "people:identity:workemail:waterfall@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | null;
|
|
8614
9634
|
/** @enum {string|null} */
|
|
8615
9635
|
environment: "production" | "sandbox" | null;
|
|
8616
9636
|
config_hash: string | null;
|
|
@@ -8646,11 +9666,11 @@ export interface paths {
|
|
|
8646
9666
|
waterfall?: {
|
|
8647
9667
|
attempted_providers: {
|
|
8648
9668
|
/** @enum {string} */
|
|
8649
|
-
provider: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
|
|
9669
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
|
|
8650
9670
|
}[];
|
|
8651
|
-
available_providers: ("pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
|
|
9671
|
+
available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
|
|
8652
9672
|
/** @enum {string} */
|
|
8653
|
-
successful_provider?: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
|
|
9673
|
+
successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
|
|
8654
9674
|
};
|
|
8655
9675
|
icon?: {
|
|
8656
9676
|
/** @enum {string} */
|
|
@@ -8676,7 +9696,7 @@ export interface paths {
|
|
|
8676
9696
|
search_statuses: {
|
|
8677
9697
|
search: {
|
|
8678
9698
|
/** @enum {string} */
|
|
8679
|
-
ref: "people:profiles:icypeas@1" | "companies:profiles:icypeas@1" | "people:profiles:clado@1" | "people:profiles:clado@2" | "people:employees:leadmagic@1" | "companies:profiles:exa@1" | "people:profiles:exa@1";
|
|
9699
|
+
ref: "people:profiles:icypeas@1" | "companies:profiles:icypeas@1" | "people:profiles:clado@1" | "people:profiles:clado@2" | "people:employees:leadmagic@1" | "companies:profiles:exa@1" | "people:profiles:exa@1" | "companies:profiles:crustdata@1" | "people:profiles:crustdata@1";
|
|
8680
9700
|
};
|
|
8681
9701
|
/** @enum {string} */
|
|
8682
9702
|
status: "pending" | "processing" | "failed" | "completed";
|
|
@@ -8693,6 +9713,11 @@ export interface paths {
|
|
|
8693
9713
|
offset?: number;
|
|
8694
9714
|
};
|
|
8695
9715
|
};
|
|
9716
|
+
crustdata?: {
|
|
9717
|
+
pagination: {
|
|
9718
|
+
cursor: string | null;
|
|
9719
|
+
};
|
|
9720
|
+
};
|
|
8696
9721
|
};
|
|
8697
9722
|
};
|
|
8698
9723
|
}[];
|
|
@@ -8813,8 +9838,409 @@ export interface paths {
|
|
|
8813
9838
|
/** @default false */
|
|
8814
9839
|
enabled?: boolean;
|
|
8815
9840
|
};
|
|
8816
|
-
};
|
|
8817
|
-
searches: ({
|
|
9841
|
+
};
|
|
9842
|
+
searches: ({
|
|
9843
|
+
/** @enum {string} */
|
|
9844
|
+
search_id: "people:profiles:crustdata@1";
|
|
9845
|
+
connector?: {
|
|
9846
|
+
/**
|
|
9847
|
+
* @default first
|
|
9848
|
+
* @enum {string}
|
|
9849
|
+
*/
|
|
9850
|
+
strategy?: "first";
|
|
9851
|
+
connections: {
|
|
9852
|
+
/** @enum {string} */
|
|
9853
|
+
type: "vault";
|
|
9854
|
+
connection: string;
|
|
9855
|
+
}[];
|
|
9856
|
+
} | null;
|
|
9857
|
+
config: {
|
|
9858
|
+
/** @default 100 */
|
|
9859
|
+
limit?: number;
|
|
9860
|
+
cursor: string;
|
|
9861
|
+
output_fields?: {
|
|
9862
|
+
/** @default {
|
|
9863
|
+
* "alias": "",
|
|
9864
|
+
* "enabled": true
|
|
9865
|
+
* } */
|
|
9866
|
+
name?: {
|
|
9867
|
+
/** @default */
|
|
9868
|
+
alias?: string;
|
|
9869
|
+
/** @default true */
|
|
9870
|
+
enabled?: boolean;
|
|
9871
|
+
};
|
|
9872
|
+
/** @default {
|
|
9873
|
+
* "alias": "",
|
|
9874
|
+
* "enabled": true
|
|
9875
|
+
* } */
|
|
9876
|
+
company_website_url?: {
|
|
9877
|
+
/** @default */
|
|
9878
|
+
alias?: string;
|
|
9879
|
+
/** @default true */
|
|
9880
|
+
enabled?: boolean;
|
|
9881
|
+
};
|
|
9882
|
+
/** @default {
|
|
9883
|
+
* "alias": "",
|
|
9884
|
+
* "enabled": true
|
|
9885
|
+
* } */
|
|
9886
|
+
profile_url?: {
|
|
9887
|
+
/** @default */
|
|
9888
|
+
alias?: string;
|
|
9889
|
+
/** @default true */
|
|
9890
|
+
enabled?: boolean;
|
|
9891
|
+
};
|
|
9892
|
+
/** @default {
|
|
9893
|
+
* "alias": "",
|
|
9894
|
+
* "enabled": true
|
|
9895
|
+
* } */
|
|
9896
|
+
job_title?: {
|
|
9897
|
+
/** @default */
|
|
9898
|
+
alias?: string;
|
|
9899
|
+
/** @default true */
|
|
9900
|
+
enabled?: boolean;
|
|
9901
|
+
};
|
|
9902
|
+
/** @default {
|
|
9903
|
+
* "alias": "",
|
|
9904
|
+
* "enabled": true
|
|
9905
|
+
* } */
|
|
9906
|
+
crustdata_person_match?: {
|
|
9907
|
+
/** @default */
|
|
9908
|
+
alias?: string;
|
|
9909
|
+
/** @default true */
|
|
9910
|
+
enabled?: boolean;
|
|
9911
|
+
};
|
|
9912
|
+
};
|
|
9913
|
+
filters: {
|
|
9914
|
+
locations?: string[];
|
|
9915
|
+
/** @default [] */
|
|
9916
|
+
profile_headline_keywords?: string[];
|
|
9917
|
+
/** @default [] */
|
|
9918
|
+
profile_summary_keywords?: string[];
|
|
9919
|
+
profile_languages?: ("Arabic" | "English" | "Spanish" | "Portuguese" | "Chinese" | "French" | "Italian" | "Russian" | "German" | "Dutch" | "Turkish" | "Tagalog" | "Polish" | "Korean" | "Japanese" | "Malay" | "Norwegian" | "Danish" | "Romanian" | "Swedish" | "Bahasa Indonesia" | "Czech")[];
|
|
9920
|
+
languages?: string[];
|
|
9921
|
+
skills?: string[];
|
|
9922
|
+
years_of_experience?: ("Less than 1 year" | "1 to 2 years" | "3 to 5 years" | "6 to 10 years" | "More than 10 years")[];
|
|
9923
|
+
/** @default {
|
|
9924
|
+
* "include": [],
|
|
9925
|
+
* "exclude": []
|
|
9926
|
+
* } */
|
|
9927
|
+
current_seniority_levels?: {
|
|
9928
|
+
/** @default [] */
|
|
9929
|
+
include?: string[];
|
|
9930
|
+
/** @default [] */
|
|
9931
|
+
exclude?: string[];
|
|
9932
|
+
};
|
|
9933
|
+
/** @default [] */
|
|
9934
|
+
current_employers?: string[];
|
|
9935
|
+
/** @default [] */
|
|
9936
|
+
current_job_titles?: string[];
|
|
9937
|
+
current_employers_linkedin_industries?: string[];
|
|
9938
|
+
years_at_current_company?: ("Less than 1 year" | "1 to 2 years" | "3 to 5 years" | "6 to 10 years" | "More than 10 years")[];
|
|
9939
|
+
/** @default {
|
|
9940
|
+
* "include": [],
|
|
9941
|
+
* "exclude": []
|
|
9942
|
+
* } */
|
|
9943
|
+
previous_seniority_levels?: {
|
|
9944
|
+
/** @default [] */
|
|
9945
|
+
include?: string[];
|
|
9946
|
+
/** @default [] */
|
|
9947
|
+
exclude?: string[];
|
|
9948
|
+
};
|
|
9949
|
+
/** @default [] */
|
|
9950
|
+
previous_employers?: string[];
|
|
9951
|
+
/** @default [] */
|
|
9952
|
+
previous_job_titles?: string[];
|
|
9953
|
+
previous_employers_linkedin_industries?: string[];
|
|
9954
|
+
/** @default [] */
|
|
9955
|
+
certifications?: string[];
|
|
9956
|
+
/** @default [] */
|
|
9957
|
+
honors?: string[];
|
|
9958
|
+
/** @default null */
|
|
9959
|
+
recently_changed_jobs?: boolean | null;
|
|
9960
|
+
fields_of_study?: string[];
|
|
9961
|
+
degree_names?: string[];
|
|
9962
|
+
school_names?: string[];
|
|
9963
|
+
current_school_names?: string[];
|
|
9964
|
+
/** @default [] */
|
|
9965
|
+
extracurricular_activities?: string[];
|
|
9966
|
+
};
|
|
9967
|
+
};
|
|
9968
|
+
} | {
|
|
9969
|
+
/** @enum {string} */
|
|
9970
|
+
search_id: "companies:profiles:crustdata@1";
|
|
9971
|
+
connector?: {
|
|
9972
|
+
/**
|
|
9973
|
+
* @default first
|
|
9974
|
+
* @enum {string}
|
|
9975
|
+
*/
|
|
9976
|
+
strategy?: "first";
|
|
9977
|
+
connections: {
|
|
9978
|
+
/** @enum {string} */
|
|
9979
|
+
type: "vault";
|
|
9980
|
+
connection: string;
|
|
9981
|
+
}[];
|
|
9982
|
+
} | null;
|
|
9983
|
+
config: {
|
|
9984
|
+
/** @default 100 */
|
|
9985
|
+
limit?: number;
|
|
9986
|
+
cursor: string;
|
|
9987
|
+
output_fields?: {
|
|
9988
|
+
/** @default {
|
|
9989
|
+
* "alias": "",
|
|
9990
|
+
* "enabled": true
|
|
9991
|
+
* } */
|
|
9992
|
+
company_name?: {
|
|
9993
|
+
/** @default */
|
|
9994
|
+
alias?: string;
|
|
9995
|
+
/** @default true */
|
|
9996
|
+
enabled?: boolean;
|
|
9997
|
+
};
|
|
9998
|
+
/** @default {
|
|
9999
|
+
* "alias": "",
|
|
10000
|
+
* "enabled": true
|
|
10001
|
+
* } */
|
|
10002
|
+
company_website_url?: {
|
|
10003
|
+
/** @default */
|
|
10004
|
+
alias?: string;
|
|
10005
|
+
/** @default true */
|
|
10006
|
+
enabled?: boolean;
|
|
10007
|
+
};
|
|
10008
|
+
/** @default {
|
|
10009
|
+
* "alias": "",
|
|
10010
|
+
* "enabled": true
|
|
10011
|
+
* } */
|
|
10012
|
+
company_description?: {
|
|
10013
|
+
/** @default */
|
|
10014
|
+
alias?: string;
|
|
10015
|
+
/** @default true */
|
|
10016
|
+
enabled?: boolean;
|
|
10017
|
+
};
|
|
10018
|
+
/** @default {
|
|
10019
|
+
* "alias": "",
|
|
10020
|
+
* "enabled": true
|
|
10021
|
+
* } */
|
|
10022
|
+
company_profile_url?: {
|
|
10023
|
+
/** @default */
|
|
10024
|
+
alias?: string;
|
|
10025
|
+
/** @default true */
|
|
10026
|
+
enabled?: boolean;
|
|
10027
|
+
};
|
|
10028
|
+
/** @default {
|
|
10029
|
+
* "alias": "",
|
|
10030
|
+
* "enabled": true
|
|
10031
|
+
* } */
|
|
10032
|
+
crustdata_company_match?: {
|
|
10033
|
+
/** @default */
|
|
10034
|
+
alias?: string;
|
|
10035
|
+
/** @default true */
|
|
10036
|
+
enabled?: boolean;
|
|
10037
|
+
};
|
|
10038
|
+
};
|
|
10039
|
+
filters: {
|
|
10040
|
+
hq_locations?: string[];
|
|
10041
|
+
crunchbase_categories?: string[];
|
|
10042
|
+
crunchbase_investors?: string[];
|
|
10043
|
+
tracxn_investors?: string[];
|
|
10044
|
+
company_types?: ("Public Company" | "Privately Held" | "Non Profit" | "Educational Institution" | "Partnership" | "Self Employed" | "Self Owned" | "Government Agency")[];
|
|
10045
|
+
linkedin_industries?: string[];
|
|
10046
|
+
markets?: string[];
|
|
10047
|
+
linkedin_categories?: string[];
|
|
10048
|
+
headcount?: ("1-10" | "11-50" | "51-200" | "201-500" | "501-1,000" | "1,001-5,000" | "5,001-10,000" | "10,001+")[];
|
|
10049
|
+
headcount_growth_last_6m_in_percent?: ("0-10%" | "10-20%" | "20-50%" | "50-70%" | "70%+")[];
|
|
10050
|
+
/** @default {
|
|
10051
|
+
* "from": null,
|
|
10052
|
+
* "to": null
|
|
10053
|
+
* } */
|
|
10054
|
+
revenue_in_usd?: {
|
|
10055
|
+
from?: number | null;
|
|
10056
|
+
to?: number | null;
|
|
10057
|
+
};
|
|
10058
|
+
last_funding_type?: ("Series A" | "Series B" | "Series C" | "Series D")[];
|
|
10059
|
+
/** @default {
|
|
10060
|
+
* "from": null,
|
|
10061
|
+
* "to": null
|
|
10062
|
+
* } */
|
|
10063
|
+
last_funding_amount?: {
|
|
10064
|
+
from?: number | null;
|
|
10065
|
+
to?: number | null;
|
|
10066
|
+
};
|
|
10067
|
+
number_of_followers?: ("1-500" | "501-1000" | "1001-5000" | "5001-10000" | "10001-30000" | "30000+")[];
|
|
10068
|
+
follower_growth_last_6m_in_percent?: ("0-10%" | "10-20%" | "20-50%" | "50-70%" | "70%+")[];
|
|
10069
|
+
/** @default [] */
|
|
10070
|
+
profile_summary_keywords?: string[];
|
|
10071
|
+
/** @default [] */
|
|
10072
|
+
competitor_websites?: string[];
|
|
10073
|
+
};
|
|
10074
|
+
};
|
|
10075
|
+
} | {
|
|
10076
|
+
/** @enum {string} */
|
|
10077
|
+
search_id: "companies:profiles:exa@1";
|
|
10078
|
+
connector?: {
|
|
10079
|
+
/**
|
|
10080
|
+
* @default first
|
|
10081
|
+
* @enum {string}
|
|
10082
|
+
*/
|
|
10083
|
+
strategy?: "first";
|
|
10084
|
+
connections: {
|
|
10085
|
+
/** @enum {string} */
|
|
10086
|
+
type: "vault";
|
|
10087
|
+
connection: string;
|
|
10088
|
+
}[];
|
|
10089
|
+
} | null;
|
|
10090
|
+
config: {
|
|
10091
|
+
/** @default 10 */
|
|
10092
|
+
limit?: number;
|
|
10093
|
+
output_fields?: {
|
|
10094
|
+
/** @default {
|
|
10095
|
+
* "alias": "",
|
|
10096
|
+
* "enabled": true
|
|
10097
|
+
* } */
|
|
10098
|
+
company_name?: {
|
|
10099
|
+
/** @default */
|
|
10100
|
+
alias?: string;
|
|
10101
|
+
/** @default true */
|
|
10102
|
+
enabled?: boolean;
|
|
10103
|
+
};
|
|
10104
|
+
/** @default {
|
|
10105
|
+
* "alias": "",
|
|
10106
|
+
* "enabled": true
|
|
10107
|
+
* } */
|
|
10108
|
+
company_website_url?: {
|
|
10109
|
+
/** @default */
|
|
10110
|
+
alias?: string;
|
|
10111
|
+
/** @default true */
|
|
10112
|
+
enabled?: boolean;
|
|
10113
|
+
};
|
|
10114
|
+
/** @default {
|
|
10115
|
+
* "alias": "",
|
|
10116
|
+
* "enabled": true
|
|
10117
|
+
* } */
|
|
10118
|
+
company_description?: {
|
|
10119
|
+
/** @default */
|
|
10120
|
+
alias?: string;
|
|
10121
|
+
/** @default true */
|
|
10122
|
+
enabled?: boolean;
|
|
10123
|
+
};
|
|
10124
|
+
/** @default {
|
|
10125
|
+
* "alias": "",
|
|
10126
|
+
* "enabled": true
|
|
10127
|
+
* } */
|
|
10128
|
+
company_industry?: {
|
|
10129
|
+
/** @default */
|
|
10130
|
+
alias?: string;
|
|
10131
|
+
/** @default true */
|
|
10132
|
+
enabled?: boolean;
|
|
10133
|
+
};
|
|
10134
|
+
/** @default {
|
|
10135
|
+
* "alias": "",
|
|
10136
|
+
* "enabled": true
|
|
10137
|
+
* } */
|
|
10138
|
+
headcount?: {
|
|
10139
|
+
/** @default */
|
|
10140
|
+
alias?: string;
|
|
10141
|
+
/** @default true */
|
|
10142
|
+
enabled?: boolean;
|
|
10143
|
+
};
|
|
10144
|
+
/** @default {
|
|
10145
|
+
* "alias": "",
|
|
10146
|
+
* "enabled": true
|
|
10147
|
+
* } */
|
|
10148
|
+
exa_match_evaluation?: {
|
|
10149
|
+
/** @default */
|
|
10150
|
+
alias?: string;
|
|
10151
|
+
/** @default true */
|
|
10152
|
+
enabled?: boolean;
|
|
10153
|
+
};
|
|
10154
|
+
};
|
|
10155
|
+
filters: {
|
|
10156
|
+
query: string;
|
|
10157
|
+
};
|
|
10158
|
+
};
|
|
10159
|
+
} | {
|
|
10160
|
+
/** @enum {string} */
|
|
10161
|
+
search_id: "people:profiles:exa@1";
|
|
10162
|
+
connector?: {
|
|
10163
|
+
/**
|
|
10164
|
+
* @default first
|
|
10165
|
+
* @enum {string}
|
|
10166
|
+
*/
|
|
10167
|
+
strategy?: "first";
|
|
10168
|
+
connections: {
|
|
10169
|
+
/** @enum {string} */
|
|
10170
|
+
type: "vault";
|
|
10171
|
+
connection: string;
|
|
10172
|
+
}[];
|
|
10173
|
+
} | null;
|
|
10174
|
+
config: {
|
|
10175
|
+
/** @default 10 */
|
|
10176
|
+
limit?: number;
|
|
10177
|
+
output_fields?: {
|
|
10178
|
+
/** @default {
|
|
10179
|
+
* "alias": "",
|
|
10180
|
+
* "enabled": true
|
|
10181
|
+
* } */
|
|
10182
|
+
name?: {
|
|
10183
|
+
/** @default */
|
|
10184
|
+
alias?: string;
|
|
10185
|
+
/** @default true */
|
|
10186
|
+
enabled?: boolean;
|
|
10187
|
+
};
|
|
10188
|
+
/** @default {
|
|
10189
|
+
* "alias": "",
|
|
10190
|
+
* "enabled": true
|
|
10191
|
+
* } */
|
|
10192
|
+
profile_url?: {
|
|
10193
|
+
/** @default */
|
|
10194
|
+
alias?: string;
|
|
10195
|
+
/** @default true */
|
|
10196
|
+
enabled?: boolean;
|
|
10197
|
+
};
|
|
10198
|
+
/** @default {
|
|
10199
|
+
* "alias": "",
|
|
10200
|
+
* "enabled": true
|
|
10201
|
+
* } */
|
|
10202
|
+
job_title?: {
|
|
10203
|
+
/** @default */
|
|
10204
|
+
alias?: string;
|
|
10205
|
+
/** @default true */
|
|
10206
|
+
enabled?: boolean;
|
|
10207
|
+
};
|
|
10208
|
+
/** @default {
|
|
10209
|
+
* "alias": "",
|
|
10210
|
+
* "enabled": true
|
|
10211
|
+
* } */
|
|
10212
|
+
company_name?: {
|
|
10213
|
+
/** @default */
|
|
10214
|
+
alias?: string;
|
|
10215
|
+
/** @default true */
|
|
10216
|
+
enabled?: boolean;
|
|
10217
|
+
};
|
|
10218
|
+
/** @default {
|
|
10219
|
+
* "alias": "",
|
|
10220
|
+
* "enabled": true
|
|
10221
|
+
* } */
|
|
10222
|
+
company_region?: {
|
|
10223
|
+
/** @default */
|
|
10224
|
+
alias?: string;
|
|
10225
|
+
/** @default true */
|
|
10226
|
+
enabled?: boolean;
|
|
10227
|
+
};
|
|
10228
|
+
/** @default {
|
|
10229
|
+
* "alias": "",
|
|
10230
|
+
* "enabled": true
|
|
10231
|
+
* } */
|
|
10232
|
+
exa_match_evaluation?: {
|
|
10233
|
+
/** @default */
|
|
10234
|
+
alias?: string;
|
|
10235
|
+
/** @default true */
|
|
10236
|
+
enabled?: boolean;
|
|
10237
|
+
};
|
|
10238
|
+
};
|
|
10239
|
+
filters: {
|
|
10240
|
+
query: string;
|
|
10241
|
+
};
|
|
10242
|
+
};
|
|
10243
|
+
} | {
|
|
8818
10244
|
/** @enum {string} */
|
|
8819
10245
|
search_id: "people:profiles:icypeas@1";
|
|
8820
10246
|
connector?: {
|
|
@@ -9080,12 +10506,20 @@ export interface paths {
|
|
|
9080
10506
|
/** @default [] */
|
|
9081
10507
|
exclude?: string[];
|
|
9082
10508
|
};
|
|
10509
|
+
/** @default {
|
|
10510
|
+
* "include": [],
|
|
10511
|
+
* "exclude": []
|
|
10512
|
+
* } */
|
|
9083
10513
|
type?: {
|
|
9084
10514
|
/** @default [] */
|
|
9085
10515
|
include?: string[];
|
|
9086
10516
|
/** @default [] */
|
|
9087
10517
|
exclude?: string[];
|
|
9088
10518
|
};
|
|
10519
|
+
/** @default {
|
|
10520
|
+
* "include": [],
|
|
10521
|
+
* "exclude": []
|
|
10522
|
+
* } */
|
|
9089
10523
|
industry?: {
|
|
9090
10524
|
/** @default [] */
|
|
9091
10525
|
include?: string[];
|
|
@@ -9098,6 +10532,10 @@ export interface paths {
|
|
|
9098
10532
|
/** @default [] */
|
|
9099
10533
|
exclude?: string[];
|
|
9100
10534
|
};
|
|
10535
|
+
/** @default {
|
|
10536
|
+
* "from": null,
|
|
10537
|
+
* "to": null
|
|
10538
|
+
* } */
|
|
9101
10539
|
headcount?: {
|
|
9102
10540
|
from?: number | null;
|
|
9103
10541
|
to?: number | null;
|
|
@@ -9116,90 +10554,6 @@ export interface paths {
|
|
|
9116
10554
|
};
|
|
9117
10555
|
};
|
|
9118
10556
|
};
|
|
9119
|
-
} | {
|
|
9120
|
-
/** @enum {string} */
|
|
9121
|
-
search_id: "people:profiles:clado@1";
|
|
9122
|
-
connector?: {
|
|
9123
|
-
/**
|
|
9124
|
-
* @default first
|
|
9125
|
-
* @enum {string}
|
|
9126
|
-
*/
|
|
9127
|
-
strategy?: "first";
|
|
9128
|
-
connections: {
|
|
9129
|
-
/** @enum {string} */
|
|
9130
|
-
type: "vault";
|
|
9131
|
-
connection: string;
|
|
9132
|
-
}[];
|
|
9133
|
-
} | null;
|
|
9134
|
-
config: {
|
|
9135
|
-
/** @default 20 */
|
|
9136
|
-
limit?: number;
|
|
9137
|
-
output_fields?: {
|
|
9138
|
-
/** @default {
|
|
9139
|
-
* "alias": "",
|
|
9140
|
-
* "enabled": true
|
|
9141
|
-
* } */
|
|
9142
|
-
name?: {
|
|
9143
|
-
/** @default */
|
|
9144
|
-
alias?: string;
|
|
9145
|
-
/** @default true */
|
|
9146
|
-
enabled?: boolean;
|
|
9147
|
-
};
|
|
9148
|
-
/** @default {
|
|
9149
|
-
* "alias": "",
|
|
9150
|
-
* "enabled": true
|
|
9151
|
-
* } */
|
|
9152
|
-
job_title?: {
|
|
9153
|
-
/** @default */
|
|
9154
|
-
alias?: string;
|
|
9155
|
-
/** @default true */
|
|
9156
|
-
enabled?: boolean;
|
|
9157
|
-
};
|
|
9158
|
-
/** @default {
|
|
9159
|
-
* "alias": "",
|
|
9160
|
-
* "enabled": true
|
|
9161
|
-
* } */
|
|
9162
|
-
company_profile_url?: {
|
|
9163
|
-
/** @default */
|
|
9164
|
-
alias?: string;
|
|
9165
|
-
/** @default true */
|
|
9166
|
-
enabled?: boolean;
|
|
9167
|
-
};
|
|
9168
|
-
/** @default {
|
|
9169
|
-
* "alias": "",
|
|
9170
|
-
* "enabled": true
|
|
9171
|
-
* } */
|
|
9172
|
-
company_name?: {
|
|
9173
|
-
/** @default */
|
|
9174
|
-
alias?: string;
|
|
9175
|
-
/** @default true */
|
|
9176
|
-
enabled?: boolean;
|
|
9177
|
-
};
|
|
9178
|
-
/** @default {
|
|
9179
|
-
* "alias": "",
|
|
9180
|
-
* "enabled": true
|
|
9181
|
-
* } */
|
|
9182
|
-
profile_url?: {
|
|
9183
|
-
/** @default */
|
|
9184
|
-
alias?: string;
|
|
9185
|
-
/** @default true */
|
|
9186
|
-
enabled?: boolean;
|
|
9187
|
-
};
|
|
9188
|
-
/** @default {
|
|
9189
|
-
* "alias": "",
|
|
9190
|
-
* "enabled": true
|
|
9191
|
-
* } */
|
|
9192
|
-
clado_person_match?: {
|
|
9193
|
-
/** @default */
|
|
9194
|
-
alias?: string;
|
|
9195
|
-
/** @default true */
|
|
9196
|
-
enabled?: boolean;
|
|
9197
|
-
};
|
|
9198
|
-
};
|
|
9199
|
-
filters: {
|
|
9200
|
-
query: string;
|
|
9201
|
-
};
|
|
9202
|
-
};
|
|
9203
10557
|
} | {
|
|
9204
10558
|
/** @enum {string} */
|
|
9205
10559
|
search_id: "people:employees:leadmagic@1";
|
|
@@ -9266,91 +10620,7 @@ export interface paths {
|
|
|
9266
10620
|
};
|
|
9267
10621
|
} | {
|
|
9268
10622
|
/** @enum {string} */
|
|
9269
|
-
search_id: "
|
|
9270
|
-
connector?: {
|
|
9271
|
-
/**
|
|
9272
|
-
* @default first
|
|
9273
|
-
* @enum {string}
|
|
9274
|
-
*/
|
|
9275
|
-
strategy?: "first";
|
|
9276
|
-
connections: {
|
|
9277
|
-
/** @enum {string} */
|
|
9278
|
-
type: "vault";
|
|
9279
|
-
connection: string;
|
|
9280
|
-
}[];
|
|
9281
|
-
} | null;
|
|
9282
|
-
config: {
|
|
9283
|
-
/** @default 10 */
|
|
9284
|
-
limit?: number;
|
|
9285
|
-
output_fields?: {
|
|
9286
|
-
/** @default {
|
|
9287
|
-
* "alias": "",
|
|
9288
|
-
* "enabled": true
|
|
9289
|
-
* } */
|
|
9290
|
-
company_name?: {
|
|
9291
|
-
/** @default */
|
|
9292
|
-
alias?: string;
|
|
9293
|
-
/** @default true */
|
|
9294
|
-
enabled?: boolean;
|
|
9295
|
-
};
|
|
9296
|
-
/** @default {
|
|
9297
|
-
* "alias": "",
|
|
9298
|
-
* "enabled": true
|
|
9299
|
-
* } */
|
|
9300
|
-
company_website_url?: {
|
|
9301
|
-
/** @default */
|
|
9302
|
-
alias?: string;
|
|
9303
|
-
/** @default true */
|
|
9304
|
-
enabled?: boolean;
|
|
9305
|
-
};
|
|
9306
|
-
/** @default {
|
|
9307
|
-
* "alias": "",
|
|
9308
|
-
* "enabled": true
|
|
9309
|
-
* } */
|
|
9310
|
-
company_description?: {
|
|
9311
|
-
/** @default */
|
|
9312
|
-
alias?: string;
|
|
9313
|
-
/** @default true */
|
|
9314
|
-
enabled?: boolean;
|
|
9315
|
-
};
|
|
9316
|
-
/** @default {
|
|
9317
|
-
* "alias": "",
|
|
9318
|
-
* "enabled": true
|
|
9319
|
-
* } */
|
|
9320
|
-
company_industry?: {
|
|
9321
|
-
/** @default */
|
|
9322
|
-
alias?: string;
|
|
9323
|
-
/** @default true */
|
|
9324
|
-
enabled?: boolean;
|
|
9325
|
-
};
|
|
9326
|
-
/** @default {
|
|
9327
|
-
* "alias": "",
|
|
9328
|
-
* "enabled": true
|
|
9329
|
-
* } */
|
|
9330
|
-
headcount?: {
|
|
9331
|
-
/** @default */
|
|
9332
|
-
alias?: string;
|
|
9333
|
-
/** @default true */
|
|
9334
|
-
enabled?: boolean;
|
|
9335
|
-
};
|
|
9336
|
-
/** @default {
|
|
9337
|
-
* "alias": "",
|
|
9338
|
-
* "enabled": true
|
|
9339
|
-
* } */
|
|
9340
|
-
exa_match_evaluation?: {
|
|
9341
|
-
/** @default */
|
|
9342
|
-
alias?: string;
|
|
9343
|
-
/** @default true */
|
|
9344
|
-
enabled?: boolean;
|
|
9345
|
-
};
|
|
9346
|
-
};
|
|
9347
|
-
filters: {
|
|
9348
|
-
query: string;
|
|
9349
|
-
};
|
|
9350
|
-
};
|
|
9351
|
-
} | {
|
|
9352
|
-
/** @enum {string} */
|
|
9353
|
-
search_id: "people:profiles:exa@1";
|
|
10623
|
+
search_id: "people:profiles:clado@1";
|
|
9354
10624
|
connector?: {
|
|
9355
10625
|
/**
|
|
9356
10626
|
* @default first
|
|
@@ -9364,7 +10634,7 @@ export interface paths {
|
|
|
9364
10634
|
}[];
|
|
9365
10635
|
} | null;
|
|
9366
10636
|
config: {
|
|
9367
|
-
/** @default
|
|
10637
|
+
/** @default 20 */
|
|
9368
10638
|
limit?: number;
|
|
9369
10639
|
output_fields?: {
|
|
9370
10640
|
/** @default {
|
|
@@ -9381,7 +10651,7 @@ export interface paths {
|
|
|
9381
10651
|
* "alias": "",
|
|
9382
10652
|
* "enabled": true
|
|
9383
10653
|
* } */
|
|
9384
|
-
|
|
10654
|
+
job_title?: {
|
|
9385
10655
|
/** @default */
|
|
9386
10656
|
alias?: string;
|
|
9387
10657
|
/** @default true */
|
|
@@ -9391,7 +10661,7 @@ export interface paths {
|
|
|
9391
10661
|
* "alias": "",
|
|
9392
10662
|
* "enabled": true
|
|
9393
10663
|
* } */
|
|
9394
|
-
|
|
10664
|
+
company_profile_url?: {
|
|
9395
10665
|
/** @default */
|
|
9396
10666
|
alias?: string;
|
|
9397
10667
|
/** @default true */
|
|
@@ -9411,7 +10681,7 @@ export interface paths {
|
|
|
9411
10681
|
* "alias": "",
|
|
9412
10682
|
* "enabled": true
|
|
9413
10683
|
* } */
|
|
9414
|
-
|
|
10684
|
+
profile_url?: {
|
|
9415
10685
|
/** @default */
|
|
9416
10686
|
alias?: string;
|
|
9417
10687
|
/** @default true */
|
|
@@ -9421,7 +10691,7 @@ export interface paths {
|
|
|
9421
10691
|
* "alias": "",
|
|
9422
10692
|
* "enabled": true
|
|
9423
10693
|
* } */
|
|
9424
|
-
|
|
10694
|
+
clado_person_match?: {
|
|
9425
10695
|
/** @default */
|
|
9426
10696
|
alias?: string;
|
|
9427
10697
|
/** @default true */
|
|
@@ -9452,7 +10722,7 @@ export interface paths {
|
|
|
9452
10722
|
limit?: number;
|
|
9453
10723
|
/** @default */
|
|
9454
10724
|
search_id?: string;
|
|
9455
|
-
offset?: number;
|
|
10725
|
+
offset?: number | null;
|
|
9456
10726
|
output_fields?: {
|
|
9457
10727
|
/** @default {
|
|
9458
10728
|
* "alias": "",
|
|
@@ -9547,7 +10817,7 @@ export interface paths {
|
|
|
9547
10817
|
format?: "json_object" | "json_list" | "json_list_string" | "url" | "website_url" | "profile_url" | "email" | "datetime" | "currency" | "date" | "phone" | "markdown" | "text" | "int" | "decimal" | "address_line_1" | "zip_code" | "percent" | null;
|
|
9548
10818
|
resolved_by?: {
|
|
9549
10819
|
/** @enum {string|null} */
|
|
9550
|
-
ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | null;
|
|
10820
|
+
ref: "prompt:run@1" | "company:newssummary:website@1" | "company:techstack:builtwith@1" | "company:websiteurl:email@1" | "company:funding:leadmagic@1" | "people:workemail:waterfall@1" | "people:email:iswork@1" | "people:name:split@1" | "people:name:join@1" | "people:validate:email:zerobounce@1" | "people:email:validate:zerobounce@2" | "people:mobilenumber:workemail:waterfall@1" | "company:overview@1" | "company:overview@2" | "json:extract@1" | "email:write@1" | "message:write@1" | "email:send:resend@1" | "email:send:gmail@1" | "message:send:slack@1" | "template:fill@1" | "contact:create:resend@1" | "people:match:role:waterfall@1" | "company:identity@2" | "people:phone:profile:waterfall@1" | "people:personalemail:profile:waterfall@1" | "people:profile:waterfall@1" | "people:profileurl:email:waterfall@1" | "people:profileurl:name@1" | "people:email:validate:zerobounce@1" | "people:email:validate:millionverifier@1" | "people:phone:workemail:waterfall@1" | "fields:merge@1" | "website:scrape:firecrawl@1" | "website:scrapelist:firecrawl@1" | "website:extract:firecrawl@1" | "website:maplinks:firecrawl@1" | "sheet:append@1" | "sheet:expandappend@1" | "company:lookalikes:companyenrich@1" | "company:match:logodev@1" | "people:posts:crustdata@1" | "people:profile:workemail:crustdata@1" | "people:workemail:profileurl:waterfall@1" | "people:identity:workemail:waterfall@1" | "company:identity@1" | "people:professionalprofile:waterfall@1" | "people:professionalprofileurl:name@1" | "people:professionalprofileurl:email:waterfall@1" | "people:mobilenumber:professionalprofile:waterfall@1" | "input" | "system" | null;
|
|
9551
10821
|
/** @enum {string|null} */
|
|
9552
10822
|
environment: "production" | "sandbox" | null;
|
|
9553
10823
|
config_hash: string | null;
|
|
@@ -9583,11 +10853,11 @@ export interface paths {
|
|
|
9583
10853
|
waterfall?: {
|
|
9584
10854
|
attempted_providers: {
|
|
9585
10855
|
/** @enum {string} */
|
|
9586
|
-
provider: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
|
|
10856
|
+
provider: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
|
|
9587
10857
|
}[];
|
|
9588
|
-
available_providers: ("pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
|
|
10858
|
+
available_providers: ("pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev")[];
|
|
9589
10859
|
/** @enum {string} */
|
|
9590
|
-
successful_provider?: "pipe0" | "findymail" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
|
|
10860
|
+
successful_provider?: "pipe0" | "findymail" | "crustdata" | "hunter" | "zerobounce" | "millionverifier" | "googlemaps" | "gemini" | "leadmagic" | "builtwith" | "perplexity" | "serper" | "icypeas" | "prospeo" | "clado" | "resend" | "slack" | "gmail" | "firecrawl" | "exa" | "openai" | "companyenrich" | "logodev";
|
|
9591
10861
|
};
|
|
9592
10862
|
icon?: {
|
|
9593
10863
|
/** @enum {string} */
|
|
@@ -9613,7 +10883,7 @@ export interface paths {
|
|
|
9613
10883
|
search_statuses: {
|
|
9614
10884
|
search: {
|
|
9615
10885
|
/** @enum {string} */
|
|
9616
|
-
ref: "people:profiles:icypeas@1" | "companies:profiles:icypeas@1" | "people:profiles:clado@1" | "people:profiles:clado@2" | "people:employees:leadmagic@1" | "companies:profiles:exa@1" | "people:profiles:exa@1";
|
|
10886
|
+
ref: "people:profiles:icypeas@1" | "companies:profiles:icypeas@1" | "people:profiles:clado@1" | "people:profiles:clado@2" | "people:employees:leadmagic@1" | "companies:profiles:exa@1" | "people:profiles:exa@1" | "companies:profiles:crustdata@1" | "people:profiles:crustdata@1";
|
|
9617
10887
|
};
|
|
9618
10888
|
/** @enum {string} */
|
|
9619
10889
|
status: "pending" | "processing" | "failed" | "completed";
|
|
@@ -9630,6 +10900,11 @@ export interface paths {
|
|
|
9630
10900
|
offset?: number;
|
|
9631
10901
|
};
|
|
9632
10902
|
};
|
|
10903
|
+
crustdata?: {
|
|
10904
|
+
pagination: {
|
|
10905
|
+
cursor: string | null;
|
|
10906
|
+
};
|
|
10907
|
+
};
|
|
9633
10908
|
};
|
|
9634
10909
|
};
|
|
9635
10910
|
}[];
|