@pipe0/ops 0.0.2 → 0.0.3
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 +6 -0
- package/dist/fields/field-catalog.d.ts +776 -56
- package/dist/fields/json-meta/fields/companyenrich_match.d.ts +63 -0
- package/dist/fields/json-meta/fields/logodev-describe-match.d.ts +31 -0
- package/dist/fields/json-meta/fields/million-verifier-validation-match.d.ts +2 -2
- package/dist/fields/json-meta/fields/role-finder-match.d.ts +9 -0
- package/dist/form-generation/fields.d.ts +33 -7
- package/dist/index.d.ts +1 -0
- package/dist/index.js +3930 -3277
- package/dist/pipes/catalog/entries/company-identity-2.d.ts +4 -4
- package/dist/pipes/catalog/entries/company-lookalikes-companyenrich-1.d.ts +213 -0
- package/dist/pipes/catalog/entries/company-match-logodev-1.d.ts +244 -0
- package/dist/pipes/catalog/entries/company-newssummary-website-1.d.ts +3 -3
- package/dist/pipes/catalog/entries/company-overview-2.d.ts +7 -7
- package/dist/pipes/catalog/entries/company-techstack-builtwith-1.d.ts +7 -7
- package/dist/pipes/catalog/entries/company-websiteurl-email-1.d.ts +3 -3
- package/dist/pipes/catalog/entries/deprecated/company-identity-1.d.ts +3 -3
- package/dist/pipes/catalog/entries/deprecated/company-overview-1.d.ts +6 -6
- package/dist/pipes/catalog/entries/deprecated/people-mobile-number-professional-profile-waterfall-1.d.ts +6 -6
- package/dist/pipes/catalog/entries/deprecated/people-mobile-number-work-email-waterfall-1.d.ts +6 -6
- package/dist/pipes/catalog/entries/deprecated/people-professionalprofile-waterfall-1.d.ts +3 -3
- package/dist/pipes/catalog/entries/deprecated/people-professionalprofileurl-email-waterfall-1.d.ts +6 -6
- package/dist/pipes/catalog/entries/people-email-iswork-1.d.ts +4 -4
- package/dist/pipes/catalog/entries/people-email-validate-zerobounce-2.d.ts +1 -1
- package/dist/pipes/catalog/entries/people-match-role-waterfall-1.d.ts +225 -0
- package/dist/pipes/catalog/entries/people-name-join-1.d.ts +7 -7
- package/dist/pipes/catalog/entries/people-name-split-1.d.ts +4 -4
- package/dist/pipes/catalog/entries/people-personalemail-profile-waterfall-1.d.ts +6 -6
- package/dist/pipes/catalog/entries/people-phone-profile-waterfall-1.d.ts +6 -6
- package/dist/pipes/catalog/entries/people-phone-workemail-waterfall-1.d.ts +6 -6
- package/dist/pipes/catalog/entries/people-profile-waterfall-1.d.ts +4 -4
- package/dist/pipes/catalog/entries/people-profileurl-email-waterfall-1.d.ts +7 -7
- package/dist/pipes/catalog/entries/website-extract-firecrawl-1.d.ts +1 -1
- package/dist/pipes/catalog/pipe.d.ts +347 -31
- package/dist/pipes/catalog/pipes-catalog.d.ts +1325 -259
- package/dist/pipes/catalog/types.d.ts +1 -1
- package/dist/pipes/catalog/utils/get-pipe-hash-key.d.ts +1 -1
- package/dist/pipes/catalog/utils/get-pipe-instances.d.ts +2 -2
- package/dist/pipes/catalog/utils/index.d.ts +34 -34
- package/dist/pipes/pipes-validator/get-output-field-info-from-dev.d.ts +18 -0
- package/dist/pipes/pipes-validator/pipes-validator.d.ts +2 -2
- package/dist/pipes/providers/provider-catalog.d.ts +24 -0
- package/dist/pipes/providers/provider-utils.d.ts +43 -19
- package/dist/pipes/utils/pipes-utils.d.ts +30 -30
- package/dist/pipes/utils/schemas-primitives.d.ts +78 -17
- package/dist/searches/catalog/entries/companies-profiles-icypeas-1.d.ts +4 -8
- package/dist/searches/catalog/searches-catalog.d.ts +198 -12
- package/dist/searches/index.d.ts +4 -8
- package/dist/utils/connection-id.d.ts +1 -1
- package/dist/utils/index.d.ts +4 -1
- package/dist/utils/schemas.d.ts +9 -2
- package/package.json +2 -3
- /package/dist/pipes/catalog/entries/{people-email-validate-million-1.d.ts → people-email-validate-millionverifier-1.d.ts} +0 -0
|
@@ -6,7 +6,7 @@ export type FieldEntry = {
|
|
|
6
6
|
type: RecordFieldType;
|
|
7
7
|
description: string;
|
|
8
8
|
jsonMeta: {
|
|
9
|
-
|
|
9
|
+
zodSchema: null | z.ZodType;
|
|
10
10
|
exampleValue: object | null;
|
|
11
11
|
} | null;
|
|
12
12
|
format: RecordFieldFormat;
|
|
@@ -39,7 +39,7 @@ export declare const fieldCatalog: {
|
|
|
39
39
|
readonly format: "json_list";
|
|
40
40
|
readonly description: "A list of website links.";
|
|
41
41
|
readonly jsonMeta: {
|
|
42
|
-
readonly
|
|
42
|
+
readonly zodSchema: z.ZodArray<z.ZodObject<{
|
|
43
43
|
url: z.ZodURL;
|
|
44
44
|
title: z.ZodNullable<z.ZodString>;
|
|
45
45
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -70,7 +70,7 @@ export declare const fieldCatalog: {
|
|
|
70
70
|
readonly type: "json";
|
|
71
71
|
readonly description: "List of URLs";
|
|
72
72
|
readonly jsonMeta: {
|
|
73
|
-
readonly
|
|
73
|
+
readonly zodSchema: z.ZodArray<z.ZodObject<{
|
|
74
74
|
markdown: z.ZodNullable<z.ZodString>;
|
|
75
75
|
html: z.ZodNullable<z.ZodString>;
|
|
76
76
|
links: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
@@ -96,7 +96,7 @@ export declare const fieldCatalog: {
|
|
|
96
96
|
readonly type: "json";
|
|
97
97
|
readonly description: "List of URLs";
|
|
98
98
|
readonly jsonMeta: {
|
|
99
|
-
readonly
|
|
99
|
+
readonly zodSchema: z.ZodArray<z.ZodString>;
|
|
100
100
|
readonly exampleValue: readonly ["https://pipe0.com", "https://pipe0.com/resources/documentation"];
|
|
101
101
|
};
|
|
102
102
|
readonly format: "json_list_string";
|
|
@@ -106,7 +106,7 @@ export declare const fieldCatalog: {
|
|
|
106
106
|
readonly type: "json";
|
|
107
107
|
readonly description: "List of URLs scraped from a website";
|
|
108
108
|
readonly jsonMeta: {
|
|
109
|
-
readonly
|
|
109
|
+
readonly zodSchema: z.ZodArray<z.ZodString>;
|
|
110
110
|
readonly exampleValue: readonly ["https://pipe0.com", "https://pipe0.com/resources/documentation"];
|
|
111
111
|
};
|
|
112
112
|
readonly format: "json_list_string";
|
|
@@ -116,7 +116,7 @@ export declare const fieldCatalog: {
|
|
|
116
116
|
readonly type: "json";
|
|
117
117
|
readonly description: "Fully enriched people profile";
|
|
118
118
|
readonly jsonMeta: {
|
|
119
|
-
readonly
|
|
119
|
+
readonly zodSchema: z.ZodObject<{
|
|
120
120
|
profile: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
121
121
|
id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
122
122
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -417,7 +417,7 @@ export declare const fieldCatalog: {
|
|
|
417
417
|
readonly type: "json";
|
|
418
418
|
readonly description: "A list of the top competitors for a given company as provided by LeadMagic";
|
|
419
419
|
readonly jsonMeta: {
|
|
420
|
-
readonly
|
|
420
|
+
readonly zodSchema: z.ZodArray<z.ZodObject<{
|
|
421
421
|
company_name: z.ZodNullable<z.ZodString>;
|
|
422
422
|
revenue: z.ZodNullable<z.ZodString>;
|
|
423
423
|
headquarters_region: z.ZodNullable<z.ZodString>;
|
|
@@ -446,7 +446,7 @@ export declare const fieldCatalog: {
|
|
|
446
446
|
company_description: string;
|
|
447
447
|
source_url: string | null;
|
|
448
448
|
}[];
|
|
449
|
-
readonly
|
|
449
|
+
readonly zodSchema: z.ZodArray<z.ZodObject<{
|
|
450
450
|
company_name: z.ZodNullable<z.ZodString>;
|
|
451
451
|
date: z.ZodNullable<z.ZodString>;
|
|
452
452
|
company_description: z.ZodString;
|
|
@@ -465,7 +465,7 @@ export declare const fieldCatalog: {
|
|
|
465
465
|
outlet_name: string | null;
|
|
466
466
|
date: string | null;
|
|
467
467
|
}[];
|
|
468
|
-
readonly
|
|
468
|
+
readonly zodSchema: z.ZodArray<z.ZodObject<{
|
|
469
469
|
title: z.ZodNullable<z.ZodString>;
|
|
470
470
|
outlet_name: z.ZodNullable<z.ZodString>;
|
|
471
471
|
date: z.ZodNullable<z.ZodString>;
|
|
@@ -485,7 +485,7 @@ export declare const fieldCatalog: {
|
|
|
485
485
|
readonly description: "List of corporate funding rounds.";
|
|
486
486
|
readonly format: null;
|
|
487
487
|
readonly jsonMeta: {
|
|
488
|
-
readonly
|
|
488
|
+
readonly zodSchema: z.ZodArray<z.ZodObject<{
|
|
489
489
|
round: z.ZodNullable<z.ZodString>;
|
|
490
490
|
date: z.ZodNullable<z.ZodString>;
|
|
491
491
|
amount: z.ZodNullable<z.ZodString>;
|
|
@@ -522,7 +522,7 @@ export declare const fieldCatalog: {
|
|
|
522
522
|
readonly label: "Technology list";
|
|
523
523
|
readonly description: "A flat list of technologies used by a company";
|
|
524
524
|
readonly jsonMeta: {
|
|
525
|
-
readonly
|
|
525
|
+
readonly zodSchema: z.ZodArray<z.ZodString>;
|
|
526
526
|
readonly exampleValue: string[];
|
|
527
527
|
};
|
|
528
528
|
readonly format: "json_list";
|
|
@@ -540,7 +540,7 @@ export declare const fieldCatalog: {
|
|
|
540
540
|
readonly description: "A datastructure containing the technologies used by this company";
|
|
541
541
|
readonly format: "json_object";
|
|
542
542
|
readonly jsonMeta: {
|
|
543
|
-
readonly
|
|
543
|
+
readonly zodSchema: z.ZodObject<{
|
|
544
544
|
spend_history: z.ZodArray<z.ZodObject<{
|
|
545
545
|
date: z.ZodString;
|
|
546
546
|
spend_usd: z.ZodNumber;
|
|
@@ -621,7 +621,7 @@ export declare const fieldCatalog: {
|
|
|
621
621
|
readonly type: "json";
|
|
622
622
|
readonly description: "The personal email addresses that are associated with a prospect but less likely to be the primary email address of a prospect.";
|
|
623
623
|
readonly jsonMeta: {
|
|
624
|
-
readonly
|
|
624
|
+
readonly zodSchema: z.ZodArray<z.ZodString>;
|
|
625
625
|
readonly exampleValue: readonly ["john@pipe0.com", "jane@pipe0.com"];
|
|
626
626
|
};
|
|
627
627
|
readonly format: "json_list_string";
|
|
@@ -667,7 +667,7 @@ export declare const fieldCatalog: {
|
|
|
667
667
|
readonly format: "json_object";
|
|
668
668
|
readonly type: "json";
|
|
669
669
|
readonly jsonMeta: {
|
|
670
|
-
readonly
|
|
670
|
+
readonly zodSchema: z.ZodObject<{
|
|
671
671
|
profile: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
672
672
|
id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
673
673
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -947,7 +947,7 @@ export declare const fieldCatalog: {
|
|
|
947
947
|
readonly format: "json_object";
|
|
948
948
|
readonly type: "json";
|
|
949
949
|
readonly jsonMeta: {
|
|
950
|
-
readonly
|
|
950
|
+
readonly zodSchema: z.ZodObject<{
|
|
951
951
|
profile: z.ZodObject<{
|
|
952
952
|
id: z.ZodNullable<z.ZodString>;
|
|
953
953
|
name: z.ZodNullable<z.ZodString>;
|
|
@@ -1592,7 +1592,7 @@ export declare const fieldCatalog: {
|
|
|
1592
1592
|
readonly format: "json_object";
|
|
1593
1593
|
readonly type: "json";
|
|
1594
1594
|
readonly jsonMeta: {
|
|
1595
|
-
readonly
|
|
1595
|
+
readonly zodSchema: z.ZodObject<{
|
|
1596
1596
|
firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1597
1597
|
lastname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1598
1598
|
headline: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1638,7 +1638,7 @@ export declare const fieldCatalog: {
|
|
|
1638
1638
|
readonly format: "json_object";
|
|
1639
1639
|
readonly type: "json";
|
|
1640
1640
|
readonly jsonMeta: {
|
|
1641
|
-
readonly
|
|
1641
|
+
readonly zodSchema: z.ZodObject<{
|
|
1642
1642
|
name: z.ZodString;
|
|
1643
1643
|
lid: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1644
1644
|
urn: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1786,7 +1786,7 @@ export declare const fieldCatalog: {
|
|
|
1786
1786
|
readonly description: "A standardized format for returning LinkedIn profile data.";
|
|
1787
1787
|
readonly format: null;
|
|
1788
1788
|
readonly jsonMeta: {
|
|
1789
|
-
readonly
|
|
1789
|
+
readonly zodSchema: z.ZodObject<{
|
|
1790
1790
|
object: z.ZodLiteral<"linkedin_profile">;
|
|
1791
1791
|
name: z.ZodNullable<z.ZodString>;
|
|
1792
1792
|
headline: z.ZodNullable<z.ZodString>;
|
|
@@ -1955,7 +1955,7 @@ export declare const fieldCatalog: {
|
|
|
1955
1955
|
readonly description: "List of recent LinkedIn posts in JSON format.";
|
|
1956
1956
|
readonly format: "json_list";
|
|
1957
1957
|
readonly jsonMeta: {
|
|
1958
|
-
readonly
|
|
1958
|
+
readonly zodSchema: z.ZodArray<z.ZodObject<{
|
|
1959
1959
|
text: z.ZodString;
|
|
1960
1960
|
url: z.ZodURL;
|
|
1961
1961
|
created_at: z.ZodNullable<z.ZodISODateTime>;
|
|
@@ -2070,7 +2070,7 @@ export declare const fieldCatalog: {
|
|
|
2070
2070
|
readonly format: "json_object";
|
|
2071
2071
|
readonly description: "Email validation status. Allowed values are: 'valid', 'invalid', 'catch_all', 'unkown'";
|
|
2072
2072
|
readonly jsonMeta: {
|
|
2073
|
-
readonly
|
|
2073
|
+
readonly zodSchema: z.ZodObject<{
|
|
2074
2074
|
email: z.ZodString;
|
|
2075
2075
|
quality: z.ZodEnum<{
|
|
2076
2076
|
"": "";
|
|
@@ -2080,11 +2080,11 @@ export declare const fieldCatalog: {
|
|
|
2080
2080
|
}>;
|
|
2081
2081
|
result: z.ZodEnum<{
|
|
2082
2082
|
error: "error";
|
|
2083
|
-
invalid: "invalid";
|
|
2084
|
-
disposable: "disposable";
|
|
2085
2083
|
ok: "ok";
|
|
2086
2084
|
catch_all: "catch_all";
|
|
2087
2085
|
unkown: "unkown";
|
|
2086
|
+
disposable: "disposable";
|
|
2087
|
+
invalid: "invalid";
|
|
2088
2088
|
}>;
|
|
2089
2089
|
resultcode: z.ZodInt;
|
|
2090
2090
|
subresult: z.ZodString;
|
|
@@ -2096,7 +2096,7 @@ export declare const fieldCatalog: {
|
|
|
2096
2096
|
readonly exampleValue: {
|
|
2097
2097
|
email: string;
|
|
2098
2098
|
quality: "" | "good" | "bod" | "risky";
|
|
2099
|
-
result: "error" | "
|
|
2099
|
+
result: "error" | "ok" | "catch_all" | "unkown" | "disposable" | "invalid";
|
|
2100
2100
|
resultcode: number;
|
|
2101
2101
|
subresult: string;
|
|
2102
2102
|
free: boolean;
|
|
@@ -2119,7 +2119,7 @@ export declare const fieldCatalog: {
|
|
|
2119
2119
|
readonly format: "json_object";
|
|
2120
2120
|
readonly description: "Full validation object as returned by ZeroBounce";
|
|
2121
2121
|
readonly jsonMeta: {
|
|
2122
|
-
readonly
|
|
2122
|
+
readonly zodSchema: z.ZodObject<{
|
|
2123
2123
|
address: z.ZodEmail;
|
|
2124
2124
|
status: z.ZodUnion<readonly [z.ZodLiteral<"valid">, z.ZodLiteral<"invalid">, z.ZodLiteral<"catch-all">, z.ZodLiteral<"unknown">, z.ZodLiteral<"spamtrap">, z.ZodLiteral<"abuse">, z.ZodLiteral<"do_not_mail">]>;
|
|
2125
2125
|
sub_status: z.ZodUnion<readonly [z.ZodLiteral<"alternate">, z.ZodLiteral<"antispam_system">, z.ZodLiteral<"greylisted">, z.ZodLiteral<"mail_server_temporary_error">, z.ZodLiteral<"forcible_disconnect">, z.ZodLiteral<"mail_server_did_not_respond">, z.ZodLiteral<"timeout_exceeded">, z.ZodLiteral<"failed_smtp_connection">, z.ZodLiteral<"mailbox_quota_exceeded">, z.ZodLiteral<"exception_occurred">, z.ZodLiteral<"possible_trap">, z.ZodLiteral<"role_based">, z.ZodLiteral<"global_suppression">, z.ZodLiteral<"mailbox_not_found">, z.ZodLiteral<"no_dns_entries">, z.ZodLiteral<"failed_syntax_check">, z.ZodLiteral<"possible_typo">, z.ZodLiteral<"unroutable_ip_address">, z.ZodLiteral<"leading_period_removed">, z.ZodLiteral<"does_not_accept_mail">, z.ZodLiteral<"alias_address">, z.ZodLiteral<"role_based_catch_all">, z.ZodLiteral<"disposable">, z.ZodLiteral<"toxic">, z.ZodLiteral<"accept_all">, z.ZodLiteral<"">]>;
|
|
@@ -2146,8 +2146,8 @@ export declare const fieldCatalog: {
|
|
|
2146
2146
|
}, z.core.$strip>;
|
|
2147
2147
|
readonly exampleValue: {
|
|
2148
2148
|
address: string;
|
|
2149
|
-
status: "unknown" | "
|
|
2150
|
-
sub_status: "" | "alternate" | "antispam_system" | "greylisted" | "mail_server_temporary_error" | "forcible_disconnect" | "mail_server_did_not_respond" | "timeout_exceeded" | "failed_smtp_connection" | "mailbox_quota_exceeded" | "exception_occurred" | "possible_trap" | "role_based" | "global_suppression" | "mailbox_not_found" | "no_dns_entries" | "failed_syntax_check" | "possible_typo" | "unroutable_ip_address" | "leading_period_removed" | "does_not_accept_mail" | "alias_address" | "role_based_catch_all" | "
|
|
2149
|
+
status: "unknown" | "invalid" | "valid" | "catch-all" | "spamtrap" | "abuse" | "do_not_mail";
|
|
2150
|
+
sub_status: "" | "disposable" | "alternate" | "antispam_system" | "greylisted" | "mail_server_temporary_error" | "forcible_disconnect" | "mail_server_did_not_respond" | "timeout_exceeded" | "failed_smtp_connection" | "mailbox_quota_exceeded" | "exception_occurred" | "possible_trap" | "role_based" | "global_suppression" | "mailbox_not_found" | "no_dns_entries" | "failed_syntax_check" | "possible_typo" | "unroutable_ip_address" | "leading_period_removed" | "does_not_accept_mail" | "alias_address" | "role_based_catch_all" | "toxic" | "accept_all";
|
|
2151
2151
|
account: string;
|
|
2152
2152
|
domain: string;
|
|
2153
2153
|
did_you_mean: string | null;
|
|
@@ -2195,7 +2195,7 @@ export declare const fieldCatalog: {
|
|
|
2195
2195
|
readonly format: "json_object";
|
|
2196
2196
|
readonly description: "Exa search result.";
|
|
2197
2197
|
readonly jsonMeta: {
|
|
2198
|
-
readonly
|
|
2198
|
+
readonly zodSchema: z.ZodObject<{
|
|
2199
2199
|
criterion: z.ZodString;
|
|
2200
2200
|
reasoning: z.ZodString;
|
|
2201
2201
|
satisfied: z.ZodEnum<{
|
|
@@ -2221,6 +2221,357 @@ export declare const fieldCatalog: {
|
|
|
2221
2221
|
};
|
|
2222
2222
|
};
|
|
2223
2223
|
};
|
|
2224
|
+
readonly companyenrich_match: {
|
|
2225
|
+
readonly label: "Company match";
|
|
2226
|
+
readonly type: "json";
|
|
2227
|
+
readonly format: "json_object";
|
|
2228
|
+
readonly description: "CompanyEnrich response object";
|
|
2229
|
+
readonly jsonMeta: {
|
|
2230
|
+
readonly zodSchema: z.ZodObject<{
|
|
2231
|
+
id: z.ZodString;
|
|
2232
|
+
name: z.ZodNullable<z.ZodString>;
|
|
2233
|
+
domain: z.ZodNullable<z.ZodString>;
|
|
2234
|
+
website: z.ZodNullable<z.ZodString>;
|
|
2235
|
+
type: z.ZodNullable<z.ZodString>;
|
|
2236
|
+
industry: z.ZodNullable<z.ZodString>;
|
|
2237
|
+
industries: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
2238
|
+
categories: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
2239
|
+
employees: z.ZodNullable<z.ZodNumber>;
|
|
2240
|
+
revenue: z.ZodNullable<z.ZodString>;
|
|
2241
|
+
description: z.ZodNullable<z.ZodString>;
|
|
2242
|
+
keywords: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
2243
|
+
technologies: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
2244
|
+
subsidiaries: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
2245
|
+
founded_year: z.ZodNullable<z.ZodNumber>;
|
|
2246
|
+
naics_codes: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
2247
|
+
location: z.ZodNullable<z.ZodObject<{
|
|
2248
|
+
country: z.ZodNullable<z.ZodObject<{
|
|
2249
|
+
code: z.ZodNullable<z.ZodString>;
|
|
2250
|
+
name: z.ZodNullable<z.ZodString>;
|
|
2251
|
+
latitude: z.ZodNullable<z.ZodNumber>;
|
|
2252
|
+
longitude: z.ZodNullable<z.ZodNumber>;
|
|
2253
|
+
}, z.core.$strip>>;
|
|
2254
|
+
state: z.ZodNullable<z.ZodObject<{
|
|
2255
|
+
id: z.ZodNullable<z.ZodNumber>;
|
|
2256
|
+
name: z.ZodNullable<z.ZodString>;
|
|
2257
|
+
code: z.ZodNullable<z.ZodString>;
|
|
2258
|
+
latitude: z.ZodNullable<z.ZodNumber>;
|
|
2259
|
+
longitude: z.ZodNullable<z.ZodNumber>;
|
|
2260
|
+
}, z.core.$strip>>;
|
|
2261
|
+
city: z.ZodNullable<z.ZodString>;
|
|
2262
|
+
address: z.ZodNullable<z.ZodString>;
|
|
2263
|
+
postal_code: z.ZodNullable<z.ZodString>;
|
|
2264
|
+
phone: z.ZodNullable<z.ZodString>;
|
|
2265
|
+
}, z.core.$strip>>;
|
|
2266
|
+
financial: z.ZodNullable<z.ZodObject<{
|
|
2267
|
+
stock_symbol: z.ZodNullable<z.ZodString>;
|
|
2268
|
+
stock_exchange: z.ZodNullable<z.ZodString>;
|
|
2269
|
+
total_funding: z.ZodNullable<z.ZodString>;
|
|
2270
|
+
funding_stage: z.ZodNullable<z.ZodString>;
|
|
2271
|
+
funding_date: z.ZodNullable<z.ZodString>;
|
|
2272
|
+
funding: z.ZodNullable<z.ZodString>;
|
|
2273
|
+
}, z.core.$strip>>;
|
|
2274
|
+
socials: z.ZodNullable<z.ZodObject<{
|
|
2275
|
+
linkedin_url: z.ZodNullable<z.ZodString>;
|
|
2276
|
+
linkedin_id: z.ZodNullable<z.ZodString>;
|
|
2277
|
+
twitter_url: z.ZodNullable<z.ZodString>;
|
|
2278
|
+
facebook_url: z.ZodNullable<z.ZodString>;
|
|
2279
|
+
instagram_url: z.ZodNullable<z.ZodString>;
|
|
2280
|
+
angellist_url: z.ZodNullable<z.ZodString>;
|
|
2281
|
+
crunchbase_url: z.ZodNullable<z.ZodString>;
|
|
2282
|
+
youtube_url: z.ZodNullable<z.ZodString>;
|
|
2283
|
+
g2_url: z.ZodNullable<z.ZodString>;
|
|
2284
|
+
}, z.core.$strip>>;
|
|
2285
|
+
page_rank: z.ZodNullable<z.ZodNumber>;
|
|
2286
|
+
logo_url: z.ZodNullable<z.ZodString>;
|
|
2287
|
+
seo_description: z.ZodNullable<z.ZodString>;
|
|
2288
|
+
updated_at: z.ZodNullable<z.ZodString>;
|
|
2289
|
+
}, z.core.$strip>;
|
|
2290
|
+
readonly exampleValue: {
|
|
2291
|
+
id: string;
|
|
2292
|
+
name: string | null;
|
|
2293
|
+
domain: string | null;
|
|
2294
|
+
website: string | null;
|
|
2295
|
+
type: string | null;
|
|
2296
|
+
industry: string | null;
|
|
2297
|
+
industries: string[] | null;
|
|
2298
|
+
categories: string[] | null;
|
|
2299
|
+
employees: number | null;
|
|
2300
|
+
revenue: string | null;
|
|
2301
|
+
description: string | null;
|
|
2302
|
+
keywords: string[] | null;
|
|
2303
|
+
technologies: string[] | null;
|
|
2304
|
+
subsidiaries: string[] | null;
|
|
2305
|
+
founded_year: number | null;
|
|
2306
|
+
naics_codes: string[] | null;
|
|
2307
|
+
location: {
|
|
2308
|
+
country: {
|
|
2309
|
+
code: string | null;
|
|
2310
|
+
name: string | null;
|
|
2311
|
+
latitude: number | null;
|
|
2312
|
+
longitude: number | null;
|
|
2313
|
+
} | null;
|
|
2314
|
+
state: {
|
|
2315
|
+
id: number | null;
|
|
2316
|
+
name: string | null;
|
|
2317
|
+
code: string | null;
|
|
2318
|
+
latitude: number | null;
|
|
2319
|
+
longitude: number | null;
|
|
2320
|
+
} | null;
|
|
2321
|
+
city: string | null;
|
|
2322
|
+
address: string | null;
|
|
2323
|
+
postal_code: string | null;
|
|
2324
|
+
phone: string | null;
|
|
2325
|
+
} | null;
|
|
2326
|
+
financial: {
|
|
2327
|
+
stock_symbol: string | null;
|
|
2328
|
+
stock_exchange: string | null;
|
|
2329
|
+
total_funding: string | null;
|
|
2330
|
+
funding_stage: string | null;
|
|
2331
|
+
funding_date: string | null;
|
|
2332
|
+
funding: string | null;
|
|
2333
|
+
} | null;
|
|
2334
|
+
socials: {
|
|
2335
|
+
linkedin_url: string | null;
|
|
2336
|
+
linkedin_id: string | null;
|
|
2337
|
+
twitter_url: string | null;
|
|
2338
|
+
facebook_url: string | null;
|
|
2339
|
+
instagram_url: string | null;
|
|
2340
|
+
angellist_url: string | null;
|
|
2341
|
+
crunchbase_url: string | null;
|
|
2342
|
+
youtube_url: string | null;
|
|
2343
|
+
g2_url: string | null;
|
|
2344
|
+
} | null;
|
|
2345
|
+
page_rank: number | null;
|
|
2346
|
+
logo_url: string | null;
|
|
2347
|
+
seo_description: string | null;
|
|
2348
|
+
updated_at: string | null;
|
|
2349
|
+
};
|
|
2350
|
+
};
|
|
2351
|
+
};
|
|
2352
|
+
readonly role_finder_match: {
|
|
2353
|
+
readonly label: "Role finder match";
|
|
2354
|
+
readonly type: "json";
|
|
2355
|
+
readonly format: "json_object";
|
|
2356
|
+
readonly description: "Result of a role finder operation";
|
|
2357
|
+
readonly jsonMeta: {
|
|
2358
|
+
readonly zodSchema: z.ZodObject<{
|
|
2359
|
+
name: z.ZodNullable<z.ZodString>;
|
|
2360
|
+
profile_url: z.ZodNullable<z.ZodString>;
|
|
2361
|
+
company_name: z.ZodNullable<z.ZodString>;
|
|
2362
|
+
company_website_url: z.ZodNullable<z.ZodString>;
|
|
2363
|
+
job_title: z.ZodNullable<z.ZodString>;
|
|
2364
|
+
}, z.core.$strip>;
|
|
2365
|
+
readonly exampleValue: {
|
|
2366
|
+
name: string | null;
|
|
2367
|
+
profile_url: string | null;
|
|
2368
|
+
company_name: string | null;
|
|
2369
|
+
company_website_url: string | null;
|
|
2370
|
+
job_title: string | null;
|
|
2371
|
+
};
|
|
2372
|
+
};
|
|
2373
|
+
};
|
|
2374
|
+
readonly companyenrich_matches: {
|
|
2375
|
+
readonly label: "CompanyEnrich matches";
|
|
2376
|
+
readonly type: "json";
|
|
2377
|
+
readonly format: "json_object";
|
|
2378
|
+
readonly description: "CompanyEnrich response list.";
|
|
2379
|
+
readonly jsonMeta: {
|
|
2380
|
+
readonly zodSchema: z.ZodArray<z.ZodObject<{
|
|
2381
|
+
id: z.ZodString;
|
|
2382
|
+
name: z.ZodNullable<z.ZodString>;
|
|
2383
|
+
domain: z.ZodNullable<z.ZodString>;
|
|
2384
|
+
website: z.ZodNullable<z.ZodString>;
|
|
2385
|
+
type: z.ZodNullable<z.ZodString>;
|
|
2386
|
+
industry: z.ZodNullable<z.ZodString>;
|
|
2387
|
+
industries: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
2388
|
+
categories: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
2389
|
+
employees: z.ZodNullable<z.ZodNumber>;
|
|
2390
|
+
revenue: z.ZodNullable<z.ZodString>;
|
|
2391
|
+
description: z.ZodNullable<z.ZodString>;
|
|
2392
|
+
keywords: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
2393
|
+
technologies: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
2394
|
+
subsidiaries: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
2395
|
+
founded_year: z.ZodNullable<z.ZodNumber>;
|
|
2396
|
+
naics_codes: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
2397
|
+
location: z.ZodNullable<z.ZodObject<{
|
|
2398
|
+
country: z.ZodNullable<z.ZodObject<{
|
|
2399
|
+
code: z.ZodNullable<z.ZodString>;
|
|
2400
|
+
name: z.ZodNullable<z.ZodString>;
|
|
2401
|
+
latitude: z.ZodNullable<z.ZodNumber>;
|
|
2402
|
+
longitude: z.ZodNullable<z.ZodNumber>;
|
|
2403
|
+
}, z.core.$strip>>;
|
|
2404
|
+
state: z.ZodNullable<z.ZodObject<{
|
|
2405
|
+
id: z.ZodNullable<z.ZodNumber>;
|
|
2406
|
+
name: z.ZodNullable<z.ZodString>;
|
|
2407
|
+
code: z.ZodNullable<z.ZodString>;
|
|
2408
|
+
latitude: z.ZodNullable<z.ZodNumber>;
|
|
2409
|
+
longitude: z.ZodNullable<z.ZodNumber>;
|
|
2410
|
+
}, z.core.$strip>>;
|
|
2411
|
+
city: z.ZodNullable<z.ZodString>;
|
|
2412
|
+
address: z.ZodNullable<z.ZodString>;
|
|
2413
|
+
postal_code: z.ZodNullable<z.ZodString>;
|
|
2414
|
+
phone: z.ZodNullable<z.ZodString>;
|
|
2415
|
+
}, z.core.$strip>>;
|
|
2416
|
+
financial: z.ZodNullable<z.ZodObject<{
|
|
2417
|
+
stock_symbol: z.ZodNullable<z.ZodString>;
|
|
2418
|
+
stock_exchange: z.ZodNullable<z.ZodString>;
|
|
2419
|
+
total_funding: z.ZodNullable<z.ZodString>;
|
|
2420
|
+
funding_stage: z.ZodNullable<z.ZodString>;
|
|
2421
|
+
funding_date: z.ZodNullable<z.ZodString>;
|
|
2422
|
+
funding: z.ZodNullable<z.ZodString>;
|
|
2423
|
+
}, z.core.$strip>>;
|
|
2424
|
+
socials: z.ZodNullable<z.ZodObject<{
|
|
2425
|
+
linkedin_url: z.ZodNullable<z.ZodString>;
|
|
2426
|
+
linkedin_id: z.ZodNullable<z.ZodString>;
|
|
2427
|
+
twitter_url: z.ZodNullable<z.ZodString>;
|
|
2428
|
+
facebook_url: z.ZodNullable<z.ZodString>;
|
|
2429
|
+
instagram_url: z.ZodNullable<z.ZodString>;
|
|
2430
|
+
angellist_url: z.ZodNullable<z.ZodString>;
|
|
2431
|
+
crunchbase_url: z.ZodNullable<z.ZodString>;
|
|
2432
|
+
youtube_url: z.ZodNullable<z.ZodString>;
|
|
2433
|
+
g2_url: z.ZodNullable<z.ZodString>;
|
|
2434
|
+
}, z.core.$strip>>;
|
|
2435
|
+
page_rank: z.ZodNullable<z.ZodNumber>;
|
|
2436
|
+
logo_url: z.ZodNullable<z.ZodString>;
|
|
2437
|
+
seo_description: z.ZodNullable<z.ZodString>;
|
|
2438
|
+
updated_at: z.ZodNullable<z.ZodString>;
|
|
2439
|
+
}, z.core.$strip>>;
|
|
2440
|
+
readonly exampleValue: {
|
|
2441
|
+
id: string;
|
|
2442
|
+
name: string | null;
|
|
2443
|
+
domain: string | null;
|
|
2444
|
+
website: string | null;
|
|
2445
|
+
type: string | null;
|
|
2446
|
+
industry: string | null;
|
|
2447
|
+
industries: string[] | null;
|
|
2448
|
+
categories: string[] | null;
|
|
2449
|
+
employees: number | null;
|
|
2450
|
+
revenue: string | null;
|
|
2451
|
+
description: string | null;
|
|
2452
|
+
keywords: string[] | null;
|
|
2453
|
+
technologies: string[] | null;
|
|
2454
|
+
subsidiaries: string[] | null;
|
|
2455
|
+
founded_year: number | null;
|
|
2456
|
+
naics_codes: string[] | null;
|
|
2457
|
+
location: {
|
|
2458
|
+
country: {
|
|
2459
|
+
code: string | null;
|
|
2460
|
+
name: string | null;
|
|
2461
|
+
latitude: number | null;
|
|
2462
|
+
longitude: number | null;
|
|
2463
|
+
} | null;
|
|
2464
|
+
state: {
|
|
2465
|
+
id: number | null;
|
|
2466
|
+
name: string | null;
|
|
2467
|
+
code: string | null;
|
|
2468
|
+
latitude: number | null;
|
|
2469
|
+
longitude: number | null;
|
|
2470
|
+
} | null;
|
|
2471
|
+
city: string | null;
|
|
2472
|
+
address: string | null;
|
|
2473
|
+
postal_code: string | null;
|
|
2474
|
+
phone: string | null;
|
|
2475
|
+
} | null;
|
|
2476
|
+
financial: {
|
|
2477
|
+
stock_symbol: string | null;
|
|
2478
|
+
stock_exchange: string | null;
|
|
2479
|
+
total_funding: string | null;
|
|
2480
|
+
funding_stage: string | null;
|
|
2481
|
+
funding_date: string | null;
|
|
2482
|
+
funding: string | null;
|
|
2483
|
+
} | null;
|
|
2484
|
+
socials: {
|
|
2485
|
+
linkedin_url: string | null;
|
|
2486
|
+
linkedin_id: string | null;
|
|
2487
|
+
twitter_url: string | null;
|
|
2488
|
+
facebook_url: string | null;
|
|
2489
|
+
instagram_url: string | null;
|
|
2490
|
+
angellist_url: string | null;
|
|
2491
|
+
crunchbase_url: string | null;
|
|
2492
|
+
youtube_url: string | null;
|
|
2493
|
+
g2_url: string | null;
|
|
2494
|
+
} | null;
|
|
2495
|
+
page_rank: number | null;
|
|
2496
|
+
logo_url: string | null;
|
|
2497
|
+
seo_description: string | null;
|
|
2498
|
+
updated_at: string | null;
|
|
2499
|
+
}[];
|
|
2500
|
+
};
|
|
2501
|
+
};
|
|
2502
|
+
readonly logo_url: {
|
|
2503
|
+
readonly label: "Logo URL";
|
|
2504
|
+
readonly type: "string";
|
|
2505
|
+
readonly format: "text";
|
|
2506
|
+
readonly description: "Company or organization logo";
|
|
2507
|
+
readonly jsonMeta: null;
|
|
2508
|
+
};
|
|
2509
|
+
readonly logodev_describe_match: {
|
|
2510
|
+
readonly label: "Company match";
|
|
2511
|
+
readonly type: "json";
|
|
2512
|
+
readonly format: "json_object";
|
|
2513
|
+
readonly description: "Get company logos & brand data";
|
|
2514
|
+
readonly jsonMeta: {
|
|
2515
|
+
readonly exampleValue: {
|
|
2516
|
+
name: string;
|
|
2517
|
+
domain: string;
|
|
2518
|
+
description: string;
|
|
2519
|
+
indexed_at: string;
|
|
2520
|
+
logo: string;
|
|
2521
|
+
blurhash: string;
|
|
2522
|
+
colors: {
|
|
2523
|
+
r: number;
|
|
2524
|
+
g: number;
|
|
2525
|
+
b: number;
|
|
2526
|
+
hex: string;
|
|
2527
|
+
}[];
|
|
2528
|
+
socials?: {
|
|
2529
|
+
facebook?: string | undefined;
|
|
2530
|
+
github?: string | undefined;
|
|
2531
|
+
instagram?: string | undefined;
|
|
2532
|
+
linkedin?: string | undefined;
|
|
2533
|
+
pinterest?: string | undefined;
|
|
2534
|
+
reddit?: string | undefined;
|
|
2535
|
+
snapchat?: string | undefined;
|
|
2536
|
+
telegram?: string | undefined;
|
|
2537
|
+
tumblr?: string | undefined;
|
|
2538
|
+
twitter?: string | undefined;
|
|
2539
|
+
wechat?: string | undefined;
|
|
2540
|
+
whatsapp?: string | undefined;
|
|
2541
|
+
youtube?: string | undefined;
|
|
2542
|
+
} | undefined;
|
|
2543
|
+
};
|
|
2544
|
+
readonly zodSchema: z.ZodObject<{
|
|
2545
|
+
name: z.ZodString;
|
|
2546
|
+
domain: z.ZodString;
|
|
2547
|
+
description: z.ZodString;
|
|
2548
|
+
indexed_at: z.ZodISODateTime;
|
|
2549
|
+
socials: z.ZodOptional<z.ZodObject<{
|
|
2550
|
+
facebook: z.ZodOptional<z.ZodURL>;
|
|
2551
|
+
github: z.ZodOptional<z.ZodURL>;
|
|
2552
|
+
instagram: z.ZodOptional<z.ZodURL>;
|
|
2553
|
+
linkedin: z.ZodOptional<z.ZodURL>;
|
|
2554
|
+
pinterest: z.ZodOptional<z.ZodURL>;
|
|
2555
|
+
reddit: z.ZodOptional<z.ZodURL>;
|
|
2556
|
+
snapchat: z.ZodOptional<z.ZodURL>;
|
|
2557
|
+
telegram: z.ZodOptional<z.ZodURL>;
|
|
2558
|
+
tumblr: z.ZodOptional<z.ZodURL>;
|
|
2559
|
+
twitter: z.ZodOptional<z.ZodURL>;
|
|
2560
|
+
wechat: z.ZodOptional<z.ZodURL>;
|
|
2561
|
+
whatsapp: z.ZodOptional<z.ZodURL>;
|
|
2562
|
+
youtube: z.ZodOptional<z.ZodURL>;
|
|
2563
|
+
}, z.core.$strip>>;
|
|
2564
|
+
logo: z.ZodURL;
|
|
2565
|
+
blurhash: z.ZodString;
|
|
2566
|
+
colors: z.ZodArray<z.ZodObject<{
|
|
2567
|
+
r: z.ZodNumber;
|
|
2568
|
+
g: z.ZodNumber;
|
|
2569
|
+
b: z.ZodNumber;
|
|
2570
|
+
hex: z.ZodString;
|
|
2571
|
+
}, z.core.$strip>>;
|
|
2572
|
+
}, z.core.$strip>;
|
|
2573
|
+
};
|
|
2574
|
+
};
|
|
2224
2575
|
/**
|
|
2225
2576
|
* @deprecated Use `company_profile_url` instead.
|
|
2226
2577
|
*/
|
|
@@ -2249,7 +2600,7 @@ export declare const fieldCatalog: {
|
|
|
2249
2600
|
readonly type: "json";
|
|
2250
2601
|
readonly description: "A standardized format for returning LinkedIn profile data.";
|
|
2251
2602
|
readonly jsonMeta: {
|
|
2252
|
-
readonly
|
|
2603
|
+
readonly zodSchema: z.ZodObject<{
|
|
2253
2604
|
object: z.ZodLiteral<"linkedin_profile">;
|
|
2254
2605
|
name: z.ZodNullable<z.ZodString>;
|
|
2255
2606
|
headline: z.ZodNullable<z.ZodString>;
|
|
@@ -2418,7 +2769,8 @@ export declare const fieldCatalog: {
|
|
|
2418
2769
|
};
|
|
2419
2770
|
};
|
|
2420
2771
|
export type FieldCatalog = typeof fieldCatalog;
|
|
2421
|
-
export type
|
|
2772
|
+
export type JsonFieldType<FN extends FieldName> = NonNullable<FieldCatalog[FN]["jsonMeta"]>["zodSchema"] extends z.ZodType ? z.infer<NonNullable<FieldCatalog[FN]["jsonMeta"]>["zodSchema"]> : never;
|
|
2773
|
+
export type FieldSchemaType<S extends FieldName> = FieldCatalog[S]["jsonMeta"] extends object ? FieldCatalog[S]["jsonMeta"]["zodSchema"] : never;
|
|
2422
2774
|
type FieldBehaviorEntry = {
|
|
2423
2775
|
getStaticWidgets?: (_fieldValue: FieldValue) => Widgets;
|
|
2424
2776
|
};
|
|
@@ -2659,7 +3011,24 @@ export declare const fieldBehaviorCatalog: {
|
|
|
2659
3011
|
resend_contact_id: {};
|
|
2660
3012
|
sheet_record_id: {};
|
|
2661
3013
|
sheet_record_ids: {};
|
|
3014
|
+
companyenrich_match: {};
|
|
3015
|
+
companyenrich_matches: {};
|
|
2662
3016
|
input_objects: {};
|
|
3017
|
+
role_finder_match: {};
|
|
3018
|
+
logodev_describe_match: {
|
|
3019
|
+
getStaticWidgets(): {
|
|
3020
|
+
display_value: {
|
|
3021
|
+
label: string;
|
|
3022
|
+
};
|
|
3023
|
+
};
|
|
3024
|
+
};
|
|
3025
|
+
logo_url: {
|
|
3026
|
+
getStaticWidgets(): {
|
|
3027
|
+
display_value: {
|
|
3028
|
+
label: string;
|
|
3029
|
+
};
|
|
3030
|
+
};
|
|
3031
|
+
};
|
|
2663
3032
|
mobile_number: {};
|
|
2664
3033
|
professional_profile: {};
|
|
2665
3034
|
professional_profile_url: {};
|
|
@@ -2708,7 +3077,7 @@ export declare function getField<T extends FieldName>(fieldName: T): {
|
|
|
2708
3077
|
readonly format: "json_list";
|
|
2709
3078
|
readonly description: "A list of website links.";
|
|
2710
3079
|
readonly jsonMeta: {
|
|
2711
|
-
readonly
|
|
3080
|
+
readonly zodSchema: z.ZodArray<z.ZodObject<{
|
|
2712
3081
|
url: z.ZodURL;
|
|
2713
3082
|
title: z.ZodNullable<z.ZodString>;
|
|
2714
3083
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -2739,7 +3108,7 @@ export declare function getField<T extends FieldName>(fieldName: T): {
|
|
|
2739
3108
|
readonly type: "json";
|
|
2740
3109
|
readonly description: "List of URLs";
|
|
2741
3110
|
readonly jsonMeta: {
|
|
2742
|
-
readonly
|
|
3111
|
+
readonly zodSchema: z.ZodArray<z.ZodObject<{
|
|
2743
3112
|
markdown: z.ZodNullable<z.ZodString>;
|
|
2744
3113
|
html: z.ZodNullable<z.ZodString>;
|
|
2745
3114
|
links: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
@@ -2765,7 +3134,7 @@ export declare function getField<T extends FieldName>(fieldName: T): {
|
|
|
2765
3134
|
readonly type: "json";
|
|
2766
3135
|
readonly description: "List of URLs";
|
|
2767
3136
|
readonly jsonMeta: {
|
|
2768
|
-
readonly
|
|
3137
|
+
readonly zodSchema: z.ZodArray<z.ZodString>;
|
|
2769
3138
|
readonly exampleValue: readonly ["https://pipe0.com", "https://pipe0.com/resources/documentation"];
|
|
2770
3139
|
};
|
|
2771
3140
|
readonly format: "json_list_string";
|
|
@@ -2775,7 +3144,7 @@ export declare function getField<T extends FieldName>(fieldName: T): {
|
|
|
2775
3144
|
readonly type: "json";
|
|
2776
3145
|
readonly description: "List of URLs scraped from a website";
|
|
2777
3146
|
readonly jsonMeta: {
|
|
2778
|
-
readonly
|
|
3147
|
+
readonly zodSchema: z.ZodArray<z.ZodString>;
|
|
2779
3148
|
readonly exampleValue: readonly ["https://pipe0.com", "https://pipe0.com/resources/documentation"];
|
|
2780
3149
|
};
|
|
2781
3150
|
readonly format: "json_list_string";
|
|
@@ -2785,7 +3154,7 @@ export declare function getField<T extends FieldName>(fieldName: T): {
|
|
|
2785
3154
|
readonly type: "json";
|
|
2786
3155
|
readonly description: "Fully enriched people profile";
|
|
2787
3156
|
readonly jsonMeta: {
|
|
2788
|
-
readonly
|
|
3157
|
+
readonly zodSchema: z.ZodObject<{
|
|
2789
3158
|
profile: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2790
3159
|
id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2791
3160
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -3086,7 +3455,7 @@ export declare function getField<T extends FieldName>(fieldName: T): {
|
|
|
3086
3455
|
readonly type: "json";
|
|
3087
3456
|
readonly description: "A list of the top competitors for a given company as provided by LeadMagic";
|
|
3088
3457
|
readonly jsonMeta: {
|
|
3089
|
-
readonly
|
|
3458
|
+
readonly zodSchema: z.ZodArray<z.ZodObject<{
|
|
3090
3459
|
company_name: z.ZodNullable<z.ZodString>;
|
|
3091
3460
|
revenue: z.ZodNullable<z.ZodString>;
|
|
3092
3461
|
headquarters_region: z.ZodNullable<z.ZodString>;
|
|
@@ -3115,7 +3484,7 @@ export declare function getField<T extends FieldName>(fieldName: T): {
|
|
|
3115
3484
|
company_description: string;
|
|
3116
3485
|
source_url: string | null;
|
|
3117
3486
|
}[];
|
|
3118
|
-
readonly
|
|
3487
|
+
readonly zodSchema: z.ZodArray<z.ZodObject<{
|
|
3119
3488
|
company_name: z.ZodNullable<z.ZodString>;
|
|
3120
3489
|
date: z.ZodNullable<z.ZodString>;
|
|
3121
3490
|
company_description: z.ZodString;
|
|
@@ -3134,7 +3503,7 @@ export declare function getField<T extends FieldName>(fieldName: T): {
|
|
|
3134
3503
|
outlet_name: string | null;
|
|
3135
3504
|
date: string | null;
|
|
3136
3505
|
}[];
|
|
3137
|
-
readonly
|
|
3506
|
+
readonly zodSchema: z.ZodArray<z.ZodObject<{
|
|
3138
3507
|
title: z.ZodNullable<z.ZodString>;
|
|
3139
3508
|
outlet_name: z.ZodNullable<z.ZodString>;
|
|
3140
3509
|
date: z.ZodNullable<z.ZodString>;
|
|
@@ -3154,7 +3523,7 @@ export declare function getField<T extends FieldName>(fieldName: T): {
|
|
|
3154
3523
|
readonly description: "List of corporate funding rounds.";
|
|
3155
3524
|
readonly format: null;
|
|
3156
3525
|
readonly jsonMeta: {
|
|
3157
|
-
readonly
|
|
3526
|
+
readonly zodSchema: z.ZodArray<z.ZodObject<{
|
|
3158
3527
|
round: z.ZodNullable<z.ZodString>;
|
|
3159
3528
|
date: z.ZodNullable<z.ZodString>;
|
|
3160
3529
|
amount: z.ZodNullable<z.ZodString>;
|
|
@@ -3191,7 +3560,7 @@ export declare function getField<T extends FieldName>(fieldName: T): {
|
|
|
3191
3560
|
readonly label: "Technology list";
|
|
3192
3561
|
readonly description: "A flat list of technologies used by a company";
|
|
3193
3562
|
readonly jsonMeta: {
|
|
3194
|
-
readonly
|
|
3563
|
+
readonly zodSchema: z.ZodArray<z.ZodString>;
|
|
3195
3564
|
readonly exampleValue: string[];
|
|
3196
3565
|
};
|
|
3197
3566
|
readonly format: "json_list";
|
|
@@ -3209,7 +3578,7 @@ export declare function getField<T extends FieldName>(fieldName: T): {
|
|
|
3209
3578
|
readonly description: "A datastructure containing the technologies used by this company";
|
|
3210
3579
|
readonly format: "json_object";
|
|
3211
3580
|
readonly jsonMeta: {
|
|
3212
|
-
readonly
|
|
3581
|
+
readonly zodSchema: z.ZodObject<{
|
|
3213
3582
|
spend_history: z.ZodArray<z.ZodObject<{
|
|
3214
3583
|
date: z.ZodString;
|
|
3215
3584
|
spend_usd: z.ZodNumber;
|
|
@@ -3290,7 +3659,7 @@ export declare function getField<T extends FieldName>(fieldName: T): {
|
|
|
3290
3659
|
readonly type: "json";
|
|
3291
3660
|
readonly description: "The personal email addresses that are associated with a prospect but less likely to be the primary email address of a prospect.";
|
|
3292
3661
|
readonly jsonMeta: {
|
|
3293
|
-
readonly
|
|
3662
|
+
readonly zodSchema: z.ZodArray<z.ZodString>;
|
|
3294
3663
|
readonly exampleValue: readonly ["john@pipe0.com", "jane@pipe0.com"];
|
|
3295
3664
|
};
|
|
3296
3665
|
readonly format: "json_list_string";
|
|
@@ -3336,7 +3705,7 @@ export declare function getField<T extends FieldName>(fieldName: T): {
|
|
|
3336
3705
|
readonly format: "json_object";
|
|
3337
3706
|
readonly type: "json";
|
|
3338
3707
|
readonly jsonMeta: {
|
|
3339
|
-
readonly
|
|
3708
|
+
readonly zodSchema: z.ZodObject<{
|
|
3340
3709
|
profile: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
3341
3710
|
id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3342
3711
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -3616,7 +3985,7 @@ export declare function getField<T extends FieldName>(fieldName: T): {
|
|
|
3616
3985
|
readonly format: "json_object";
|
|
3617
3986
|
readonly type: "json";
|
|
3618
3987
|
readonly jsonMeta: {
|
|
3619
|
-
readonly
|
|
3988
|
+
readonly zodSchema: z.ZodObject<{
|
|
3620
3989
|
profile: z.ZodObject<{
|
|
3621
3990
|
id: z.ZodNullable<z.ZodString>;
|
|
3622
3991
|
name: z.ZodNullable<z.ZodString>;
|
|
@@ -4261,7 +4630,7 @@ export declare function getField<T extends FieldName>(fieldName: T): {
|
|
|
4261
4630
|
readonly format: "json_object";
|
|
4262
4631
|
readonly type: "json";
|
|
4263
4632
|
readonly jsonMeta: {
|
|
4264
|
-
readonly
|
|
4633
|
+
readonly zodSchema: z.ZodObject<{
|
|
4265
4634
|
firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4266
4635
|
lastname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4267
4636
|
headline: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4307,7 +4676,7 @@ export declare function getField<T extends FieldName>(fieldName: T): {
|
|
|
4307
4676
|
readonly format: "json_object";
|
|
4308
4677
|
readonly type: "json";
|
|
4309
4678
|
readonly jsonMeta: {
|
|
4310
|
-
readonly
|
|
4679
|
+
readonly zodSchema: z.ZodObject<{
|
|
4311
4680
|
name: z.ZodString;
|
|
4312
4681
|
lid: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4313
4682
|
urn: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4455,7 +4824,7 @@ export declare function getField<T extends FieldName>(fieldName: T): {
|
|
|
4455
4824
|
readonly description: "A standardized format for returning LinkedIn profile data.";
|
|
4456
4825
|
readonly format: null;
|
|
4457
4826
|
readonly jsonMeta: {
|
|
4458
|
-
readonly
|
|
4827
|
+
readonly zodSchema: z.ZodObject<{
|
|
4459
4828
|
object: z.ZodLiteral<"linkedin_profile">;
|
|
4460
4829
|
name: z.ZodNullable<z.ZodString>;
|
|
4461
4830
|
headline: z.ZodNullable<z.ZodString>;
|
|
@@ -4624,7 +4993,7 @@ export declare function getField<T extends FieldName>(fieldName: T): {
|
|
|
4624
4993
|
readonly description: "List of recent LinkedIn posts in JSON format.";
|
|
4625
4994
|
readonly format: "json_list";
|
|
4626
4995
|
readonly jsonMeta: {
|
|
4627
|
-
readonly
|
|
4996
|
+
readonly zodSchema: z.ZodArray<z.ZodObject<{
|
|
4628
4997
|
text: z.ZodString;
|
|
4629
4998
|
url: z.ZodURL;
|
|
4630
4999
|
created_at: z.ZodNullable<z.ZodISODateTime>;
|
|
@@ -4739,7 +5108,7 @@ export declare function getField<T extends FieldName>(fieldName: T): {
|
|
|
4739
5108
|
readonly format: "json_object";
|
|
4740
5109
|
readonly description: "Email validation status. Allowed values are: 'valid', 'invalid', 'catch_all', 'unkown'";
|
|
4741
5110
|
readonly jsonMeta: {
|
|
4742
|
-
readonly
|
|
5111
|
+
readonly zodSchema: z.ZodObject<{
|
|
4743
5112
|
email: z.ZodString;
|
|
4744
5113
|
quality: z.ZodEnum<{
|
|
4745
5114
|
"": "";
|
|
@@ -4749,11 +5118,11 @@ export declare function getField<T extends FieldName>(fieldName: T): {
|
|
|
4749
5118
|
}>;
|
|
4750
5119
|
result: z.ZodEnum<{
|
|
4751
5120
|
error: "error";
|
|
4752
|
-
invalid: "invalid";
|
|
4753
|
-
disposable: "disposable";
|
|
4754
5121
|
ok: "ok";
|
|
4755
5122
|
catch_all: "catch_all";
|
|
4756
5123
|
unkown: "unkown";
|
|
5124
|
+
disposable: "disposable";
|
|
5125
|
+
invalid: "invalid";
|
|
4757
5126
|
}>;
|
|
4758
5127
|
resultcode: z.ZodInt;
|
|
4759
5128
|
subresult: z.ZodString;
|
|
@@ -4765,7 +5134,7 @@ export declare function getField<T extends FieldName>(fieldName: T): {
|
|
|
4765
5134
|
readonly exampleValue: {
|
|
4766
5135
|
email: string;
|
|
4767
5136
|
quality: "" | "good" | "bod" | "risky";
|
|
4768
|
-
result: "error" | "
|
|
5137
|
+
result: "error" | "ok" | "catch_all" | "unkown" | "disposable" | "invalid";
|
|
4769
5138
|
resultcode: number;
|
|
4770
5139
|
subresult: string;
|
|
4771
5140
|
free: boolean;
|
|
@@ -4788,7 +5157,7 @@ export declare function getField<T extends FieldName>(fieldName: T): {
|
|
|
4788
5157
|
readonly format: "json_object";
|
|
4789
5158
|
readonly description: "Full validation object as returned by ZeroBounce";
|
|
4790
5159
|
readonly jsonMeta: {
|
|
4791
|
-
readonly
|
|
5160
|
+
readonly zodSchema: z.ZodObject<{
|
|
4792
5161
|
address: z.ZodEmail;
|
|
4793
5162
|
status: z.ZodUnion<readonly [z.ZodLiteral<"valid">, z.ZodLiteral<"invalid">, z.ZodLiteral<"catch-all">, z.ZodLiteral<"unknown">, z.ZodLiteral<"spamtrap">, z.ZodLiteral<"abuse">, z.ZodLiteral<"do_not_mail">]>;
|
|
4794
5163
|
sub_status: z.ZodUnion<readonly [z.ZodLiteral<"alternate">, z.ZodLiteral<"antispam_system">, z.ZodLiteral<"greylisted">, z.ZodLiteral<"mail_server_temporary_error">, z.ZodLiteral<"forcible_disconnect">, z.ZodLiteral<"mail_server_did_not_respond">, z.ZodLiteral<"timeout_exceeded">, z.ZodLiteral<"failed_smtp_connection">, z.ZodLiteral<"mailbox_quota_exceeded">, z.ZodLiteral<"exception_occurred">, z.ZodLiteral<"possible_trap">, z.ZodLiteral<"role_based">, z.ZodLiteral<"global_suppression">, z.ZodLiteral<"mailbox_not_found">, z.ZodLiteral<"no_dns_entries">, z.ZodLiteral<"failed_syntax_check">, z.ZodLiteral<"possible_typo">, z.ZodLiteral<"unroutable_ip_address">, z.ZodLiteral<"leading_period_removed">, z.ZodLiteral<"does_not_accept_mail">, z.ZodLiteral<"alias_address">, z.ZodLiteral<"role_based_catch_all">, z.ZodLiteral<"disposable">, z.ZodLiteral<"toxic">, z.ZodLiteral<"accept_all">, z.ZodLiteral<"">]>;
|
|
@@ -4815,8 +5184,8 @@ export declare function getField<T extends FieldName>(fieldName: T): {
|
|
|
4815
5184
|
}, z.core.$strip>;
|
|
4816
5185
|
readonly exampleValue: {
|
|
4817
5186
|
address: string;
|
|
4818
|
-
status: "unknown" | "
|
|
4819
|
-
sub_status: "" | "alternate" | "antispam_system" | "greylisted" | "mail_server_temporary_error" | "forcible_disconnect" | "mail_server_did_not_respond" | "timeout_exceeded" | "failed_smtp_connection" | "mailbox_quota_exceeded" | "exception_occurred" | "possible_trap" | "role_based" | "global_suppression" | "mailbox_not_found" | "no_dns_entries" | "failed_syntax_check" | "possible_typo" | "unroutable_ip_address" | "leading_period_removed" | "does_not_accept_mail" | "alias_address" | "role_based_catch_all" | "
|
|
5187
|
+
status: "unknown" | "invalid" | "valid" | "catch-all" | "spamtrap" | "abuse" | "do_not_mail";
|
|
5188
|
+
sub_status: "" | "disposable" | "alternate" | "antispam_system" | "greylisted" | "mail_server_temporary_error" | "forcible_disconnect" | "mail_server_did_not_respond" | "timeout_exceeded" | "failed_smtp_connection" | "mailbox_quota_exceeded" | "exception_occurred" | "possible_trap" | "role_based" | "global_suppression" | "mailbox_not_found" | "no_dns_entries" | "failed_syntax_check" | "possible_typo" | "unroutable_ip_address" | "leading_period_removed" | "does_not_accept_mail" | "alias_address" | "role_based_catch_all" | "toxic" | "accept_all";
|
|
4820
5189
|
account: string;
|
|
4821
5190
|
domain: string;
|
|
4822
5191
|
did_you_mean: string | null;
|
|
@@ -4864,7 +5233,7 @@ export declare function getField<T extends FieldName>(fieldName: T): {
|
|
|
4864
5233
|
readonly format: "json_object";
|
|
4865
5234
|
readonly description: "Exa search result.";
|
|
4866
5235
|
readonly jsonMeta: {
|
|
4867
|
-
readonly
|
|
5236
|
+
readonly zodSchema: z.ZodObject<{
|
|
4868
5237
|
criterion: z.ZodString;
|
|
4869
5238
|
reasoning: z.ZodString;
|
|
4870
5239
|
satisfied: z.ZodEnum<{
|
|
@@ -4890,6 +5259,357 @@ export declare function getField<T extends FieldName>(fieldName: T): {
|
|
|
4890
5259
|
};
|
|
4891
5260
|
};
|
|
4892
5261
|
};
|
|
5262
|
+
readonly companyenrich_match: {
|
|
5263
|
+
readonly label: "Company match";
|
|
5264
|
+
readonly type: "json";
|
|
5265
|
+
readonly format: "json_object";
|
|
5266
|
+
readonly description: "CompanyEnrich response object";
|
|
5267
|
+
readonly jsonMeta: {
|
|
5268
|
+
readonly zodSchema: z.ZodObject<{
|
|
5269
|
+
id: z.ZodString;
|
|
5270
|
+
name: z.ZodNullable<z.ZodString>;
|
|
5271
|
+
domain: z.ZodNullable<z.ZodString>;
|
|
5272
|
+
website: z.ZodNullable<z.ZodString>;
|
|
5273
|
+
type: z.ZodNullable<z.ZodString>;
|
|
5274
|
+
industry: z.ZodNullable<z.ZodString>;
|
|
5275
|
+
industries: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
5276
|
+
categories: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
5277
|
+
employees: z.ZodNullable<z.ZodNumber>;
|
|
5278
|
+
revenue: z.ZodNullable<z.ZodString>;
|
|
5279
|
+
description: z.ZodNullable<z.ZodString>;
|
|
5280
|
+
keywords: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
5281
|
+
technologies: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
5282
|
+
subsidiaries: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
5283
|
+
founded_year: z.ZodNullable<z.ZodNumber>;
|
|
5284
|
+
naics_codes: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
5285
|
+
location: z.ZodNullable<z.ZodObject<{
|
|
5286
|
+
country: z.ZodNullable<z.ZodObject<{
|
|
5287
|
+
code: z.ZodNullable<z.ZodString>;
|
|
5288
|
+
name: z.ZodNullable<z.ZodString>;
|
|
5289
|
+
latitude: z.ZodNullable<z.ZodNumber>;
|
|
5290
|
+
longitude: z.ZodNullable<z.ZodNumber>;
|
|
5291
|
+
}, z.core.$strip>>;
|
|
5292
|
+
state: z.ZodNullable<z.ZodObject<{
|
|
5293
|
+
id: z.ZodNullable<z.ZodNumber>;
|
|
5294
|
+
name: z.ZodNullable<z.ZodString>;
|
|
5295
|
+
code: z.ZodNullable<z.ZodString>;
|
|
5296
|
+
latitude: z.ZodNullable<z.ZodNumber>;
|
|
5297
|
+
longitude: z.ZodNullable<z.ZodNumber>;
|
|
5298
|
+
}, z.core.$strip>>;
|
|
5299
|
+
city: z.ZodNullable<z.ZodString>;
|
|
5300
|
+
address: z.ZodNullable<z.ZodString>;
|
|
5301
|
+
postal_code: z.ZodNullable<z.ZodString>;
|
|
5302
|
+
phone: z.ZodNullable<z.ZodString>;
|
|
5303
|
+
}, z.core.$strip>>;
|
|
5304
|
+
financial: z.ZodNullable<z.ZodObject<{
|
|
5305
|
+
stock_symbol: z.ZodNullable<z.ZodString>;
|
|
5306
|
+
stock_exchange: z.ZodNullable<z.ZodString>;
|
|
5307
|
+
total_funding: z.ZodNullable<z.ZodString>;
|
|
5308
|
+
funding_stage: z.ZodNullable<z.ZodString>;
|
|
5309
|
+
funding_date: z.ZodNullable<z.ZodString>;
|
|
5310
|
+
funding: z.ZodNullable<z.ZodString>;
|
|
5311
|
+
}, z.core.$strip>>;
|
|
5312
|
+
socials: z.ZodNullable<z.ZodObject<{
|
|
5313
|
+
linkedin_url: z.ZodNullable<z.ZodString>;
|
|
5314
|
+
linkedin_id: z.ZodNullable<z.ZodString>;
|
|
5315
|
+
twitter_url: z.ZodNullable<z.ZodString>;
|
|
5316
|
+
facebook_url: z.ZodNullable<z.ZodString>;
|
|
5317
|
+
instagram_url: z.ZodNullable<z.ZodString>;
|
|
5318
|
+
angellist_url: z.ZodNullable<z.ZodString>;
|
|
5319
|
+
crunchbase_url: z.ZodNullable<z.ZodString>;
|
|
5320
|
+
youtube_url: z.ZodNullable<z.ZodString>;
|
|
5321
|
+
g2_url: z.ZodNullable<z.ZodString>;
|
|
5322
|
+
}, z.core.$strip>>;
|
|
5323
|
+
page_rank: z.ZodNullable<z.ZodNumber>;
|
|
5324
|
+
logo_url: z.ZodNullable<z.ZodString>;
|
|
5325
|
+
seo_description: z.ZodNullable<z.ZodString>;
|
|
5326
|
+
updated_at: z.ZodNullable<z.ZodString>;
|
|
5327
|
+
}, z.core.$strip>;
|
|
5328
|
+
readonly exampleValue: {
|
|
5329
|
+
id: string;
|
|
5330
|
+
name: string | null;
|
|
5331
|
+
domain: string | null;
|
|
5332
|
+
website: string | null;
|
|
5333
|
+
type: string | null;
|
|
5334
|
+
industry: string | null;
|
|
5335
|
+
industries: string[] | null;
|
|
5336
|
+
categories: string[] | null;
|
|
5337
|
+
employees: number | null;
|
|
5338
|
+
revenue: string | null;
|
|
5339
|
+
description: string | null;
|
|
5340
|
+
keywords: string[] | null;
|
|
5341
|
+
technologies: string[] | null;
|
|
5342
|
+
subsidiaries: string[] | null;
|
|
5343
|
+
founded_year: number | null;
|
|
5344
|
+
naics_codes: string[] | null;
|
|
5345
|
+
location: {
|
|
5346
|
+
country: {
|
|
5347
|
+
code: string | null;
|
|
5348
|
+
name: string | null;
|
|
5349
|
+
latitude: number | null;
|
|
5350
|
+
longitude: number | null;
|
|
5351
|
+
} | null;
|
|
5352
|
+
state: {
|
|
5353
|
+
id: number | null;
|
|
5354
|
+
name: string | null;
|
|
5355
|
+
code: string | null;
|
|
5356
|
+
latitude: number | null;
|
|
5357
|
+
longitude: number | null;
|
|
5358
|
+
} | null;
|
|
5359
|
+
city: string | null;
|
|
5360
|
+
address: string | null;
|
|
5361
|
+
postal_code: string | null;
|
|
5362
|
+
phone: string | null;
|
|
5363
|
+
} | null;
|
|
5364
|
+
financial: {
|
|
5365
|
+
stock_symbol: string | null;
|
|
5366
|
+
stock_exchange: string | null;
|
|
5367
|
+
total_funding: string | null;
|
|
5368
|
+
funding_stage: string | null;
|
|
5369
|
+
funding_date: string | null;
|
|
5370
|
+
funding: string | null;
|
|
5371
|
+
} | null;
|
|
5372
|
+
socials: {
|
|
5373
|
+
linkedin_url: string | null;
|
|
5374
|
+
linkedin_id: string | null;
|
|
5375
|
+
twitter_url: string | null;
|
|
5376
|
+
facebook_url: string | null;
|
|
5377
|
+
instagram_url: string | null;
|
|
5378
|
+
angellist_url: string | null;
|
|
5379
|
+
crunchbase_url: string | null;
|
|
5380
|
+
youtube_url: string | null;
|
|
5381
|
+
g2_url: string | null;
|
|
5382
|
+
} | null;
|
|
5383
|
+
page_rank: number | null;
|
|
5384
|
+
logo_url: string | null;
|
|
5385
|
+
seo_description: string | null;
|
|
5386
|
+
updated_at: string | null;
|
|
5387
|
+
};
|
|
5388
|
+
};
|
|
5389
|
+
};
|
|
5390
|
+
readonly role_finder_match: {
|
|
5391
|
+
readonly label: "Role finder match";
|
|
5392
|
+
readonly type: "json";
|
|
5393
|
+
readonly format: "json_object";
|
|
5394
|
+
readonly description: "Result of a role finder operation";
|
|
5395
|
+
readonly jsonMeta: {
|
|
5396
|
+
readonly zodSchema: z.ZodObject<{
|
|
5397
|
+
name: z.ZodNullable<z.ZodString>;
|
|
5398
|
+
profile_url: z.ZodNullable<z.ZodString>;
|
|
5399
|
+
company_name: z.ZodNullable<z.ZodString>;
|
|
5400
|
+
company_website_url: z.ZodNullable<z.ZodString>;
|
|
5401
|
+
job_title: z.ZodNullable<z.ZodString>;
|
|
5402
|
+
}, z.core.$strip>;
|
|
5403
|
+
readonly exampleValue: {
|
|
5404
|
+
name: string | null;
|
|
5405
|
+
profile_url: string | null;
|
|
5406
|
+
company_name: string | null;
|
|
5407
|
+
company_website_url: string | null;
|
|
5408
|
+
job_title: string | null;
|
|
5409
|
+
};
|
|
5410
|
+
};
|
|
5411
|
+
};
|
|
5412
|
+
readonly companyenrich_matches: {
|
|
5413
|
+
readonly label: "CompanyEnrich matches";
|
|
5414
|
+
readonly type: "json";
|
|
5415
|
+
readonly format: "json_object";
|
|
5416
|
+
readonly description: "CompanyEnrich response list.";
|
|
5417
|
+
readonly jsonMeta: {
|
|
5418
|
+
readonly zodSchema: z.ZodArray<z.ZodObject<{
|
|
5419
|
+
id: z.ZodString;
|
|
5420
|
+
name: z.ZodNullable<z.ZodString>;
|
|
5421
|
+
domain: z.ZodNullable<z.ZodString>;
|
|
5422
|
+
website: z.ZodNullable<z.ZodString>;
|
|
5423
|
+
type: z.ZodNullable<z.ZodString>;
|
|
5424
|
+
industry: z.ZodNullable<z.ZodString>;
|
|
5425
|
+
industries: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
5426
|
+
categories: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
5427
|
+
employees: z.ZodNullable<z.ZodNumber>;
|
|
5428
|
+
revenue: z.ZodNullable<z.ZodString>;
|
|
5429
|
+
description: z.ZodNullable<z.ZodString>;
|
|
5430
|
+
keywords: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
5431
|
+
technologies: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
5432
|
+
subsidiaries: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
5433
|
+
founded_year: z.ZodNullable<z.ZodNumber>;
|
|
5434
|
+
naics_codes: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
5435
|
+
location: z.ZodNullable<z.ZodObject<{
|
|
5436
|
+
country: z.ZodNullable<z.ZodObject<{
|
|
5437
|
+
code: z.ZodNullable<z.ZodString>;
|
|
5438
|
+
name: z.ZodNullable<z.ZodString>;
|
|
5439
|
+
latitude: z.ZodNullable<z.ZodNumber>;
|
|
5440
|
+
longitude: z.ZodNullable<z.ZodNumber>;
|
|
5441
|
+
}, z.core.$strip>>;
|
|
5442
|
+
state: z.ZodNullable<z.ZodObject<{
|
|
5443
|
+
id: z.ZodNullable<z.ZodNumber>;
|
|
5444
|
+
name: z.ZodNullable<z.ZodString>;
|
|
5445
|
+
code: z.ZodNullable<z.ZodString>;
|
|
5446
|
+
latitude: z.ZodNullable<z.ZodNumber>;
|
|
5447
|
+
longitude: z.ZodNullable<z.ZodNumber>;
|
|
5448
|
+
}, z.core.$strip>>;
|
|
5449
|
+
city: z.ZodNullable<z.ZodString>;
|
|
5450
|
+
address: z.ZodNullable<z.ZodString>;
|
|
5451
|
+
postal_code: z.ZodNullable<z.ZodString>;
|
|
5452
|
+
phone: z.ZodNullable<z.ZodString>;
|
|
5453
|
+
}, z.core.$strip>>;
|
|
5454
|
+
financial: z.ZodNullable<z.ZodObject<{
|
|
5455
|
+
stock_symbol: z.ZodNullable<z.ZodString>;
|
|
5456
|
+
stock_exchange: z.ZodNullable<z.ZodString>;
|
|
5457
|
+
total_funding: z.ZodNullable<z.ZodString>;
|
|
5458
|
+
funding_stage: z.ZodNullable<z.ZodString>;
|
|
5459
|
+
funding_date: z.ZodNullable<z.ZodString>;
|
|
5460
|
+
funding: z.ZodNullable<z.ZodString>;
|
|
5461
|
+
}, z.core.$strip>>;
|
|
5462
|
+
socials: z.ZodNullable<z.ZodObject<{
|
|
5463
|
+
linkedin_url: z.ZodNullable<z.ZodString>;
|
|
5464
|
+
linkedin_id: z.ZodNullable<z.ZodString>;
|
|
5465
|
+
twitter_url: z.ZodNullable<z.ZodString>;
|
|
5466
|
+
facebook_url: z.ZodNullable<z.ZodString>;
|
|
5467
|
+
instagram_url: z.ZodNullable<z.ZodString>;
|
|
5468
|
+
angellist_url: z.ZodNullable<z.ZodString>;
|
|
5469
|
+
crunchbase_url: z.ZodNullable<z.ZodString>;
|
|
5470
|
+
youtube_url: z.ZodNullable<z.ZodString>;
|
|
5471
|
+
g2_url: z.ZodNullable<z.ZodString>;
|
|
5472
|
+
}, z.core.$strip>>;
|
|
5473
|
+
page_rank: z.ZodNullable<z.ZodNumber>;
|
|
5474
|
+
logo_url: z.ZodNullable<z.ZodString>;
|
|
5475
|
+
seo_description: z.ZodNullable<z.ZodString>;
|
|
5476
|
+
updated_at: z.ZodNullable<z.ZodString>;
|
|
5477
|
+
}, z.core.$strip>>;
|
|
5478
|
+
readonly exampleValue: {
|
|
5479
|
+
id: string;
|
|
5480
|
+
name: string | null;
|
|
5481
|
+
domain: string | null;
|
|
5482
|
+
website: string | null;
|
|
5483
|
+
type: string | null;
|
|
5484
|
+
industry: string | null;
|
|
5485
|
+
industries: string[] | null;
|
|
5486
|
+
categories: string[] | null;
|
|
5487
|
+
employees: number | null;
|
|
5488
|
+
revenue: string | null;
|
|
5489
|
+
description: string | null;
|
|
5490
|
+
keywords: string[] | null;
|
|
5491
|
+
technologies: string[] | null;
|
|
5492
|
+
subsidiaries: string[] | null;
|
|
5493
|
+
founded_year: number | null;
|
|
5494
|
+
naics_codes: string[] | null;
|
|
5495
|
+
location: {
|
|
5496
|
+
country: {
|
|
5497
|
+
code: string | null;
|
|
5498
|
+
name: string | null;
|
|
5499
|
+
latitude: number | null;
|
|
5500
|
+
longitude: number | null;
|
|
5501
|
+
} | null;
|
|
5502
|
+
state: {
|
|
5503
|
+
id: number | null;
|
|
5504
|
+
name: string | null;
|
|
5505
|
+
code: string | null;
|
|
5506
|
+
latitude: number | null;
|
|
5507
|
+
longitude: number | null;
|
|
5508
|
+
} | null;
|
|
5509
|
+
city: string | null;
|
|
5510
|
+
address: string | null;
|
|
5511
|
+
postal_code: string | null;
|
|
5512
|
+
phone: string | null;
|
|
5513
|
+
} | null;
|
|
5514
|
+
financial: {
|
|
5515
|
+
stock_symbol: string | null;
|
|
5516
|
+
stock_exchange: string | null;
|
|
5517
|
+
total_funding: string | null;
|
|
5518
|
+
funding_stage: string | null;
|
|
5519
|
+
funding_date: string | null;
|
|
5520
|
+
funding: string | null;
|
|
5521
|
+
} | null;
|
|
5522
|
+
socials: {
|
|
5523
|
+
linkedin_url: string | null;
|
|
5524
|
+
linkedin_id: string | null;
|
|
5525
|
+
twitter_url: string | null;
|
|
5526
|
+
facebook_url: string | null;
|
|
5527
|
+
instagram_url: string | null;
|
|
5528
|
+
angellist_url: string | null;
|
|
5529
|
+
crunchbase_url: string | null;
|
|
5530
|
+
youtube_url: string | null;
|
|
5531
|
+
g2_url: string | null;
|
|
5532
|
+
} | null;
|
|
5533
|
+
page_rank: number | null;
|
|
5534
|
+
logo_url: string | null;
|
|
5535
|
+
seo_description: string | null;
|
|
5536
|
+
updated_at: string | null;
|
|
5537
|
+
}[];
|
|
5538
|
+
};
|
|
5539
|
+
};
|
|
5540
|
+
readonly logo_url: {
|
|
5541
|
+
readonly label: "Logo URL";
|
|
5542
|
+
readonly type: "string";
|
|
5543
|
+
readonly format: "text";
|
|
5544
|
+
readonly description: "Company or organization logo";
|
|
5545
|
+
readonly jsonMeta: null;
|
|
5546
|
+
};
|
|
5547
|
+
readonly logodev_describe_match: {
|
|
5548
|
+
readonly label: "Company match";
|
|
5549
|
+
readonly type: "json";
|
|
5550
|
+
readonly format: "json_object";
|
|
5551
|
+
readonly description: "Get company logos & brand data";
|
|
5552
|
+
readonly jsonMeta: {
|
|
5553
|
+
readonly exampleValue: {
|
|
5554
|
+
name: string;
|
|
5555
|
+
domain: string;
|
|
5556
|
+
description: string;
|
|
5557
|
+
indexed_at: string;
|
|
5558
|
+
logo: string;
|
|
5559
|
+
blurhash: string;
|
|
5560
|
+
colors: {
|
|
5561
|
+
r: number;
|
|
5562
|
+
g: number;
|
|
5563
|
+
b: number;
|
|
5564
|
+
hex: string;
|
|
5565
|
+
}[];
|
|
5566
|
+
socials?: {
|
|
5567
|
+
facebook?: string | undefined;
|
|
5568
|
+
github?: string | undefined;
|
|
5569
|
+
instagram?: string | undefined;
|
|
5570
|
+
linkedin?: string | undefined;
|
|
5571
|
+
pinterest?: string | undefined;
|
|
5572
|
+
reddit?: string | undefined;
|
|
5573
|
+
snapchat?: string | undefined;
|
|
5574
|
+
telegram?: string | undefined;
|
|
5575
|
+
tumblr?: string | undefined;
|
|
5576
|
+
twitter?: string | undefined;
|
|
5577
|
+
wechat?: string | undefined;
|
|
5578
|
+
whatsapp?: string | undefined;
|
|
5579
|
+
youtube?: string | undefined;
|
|
5580
|
+
} | undefined;
|
|
5581
|
+
};
|
|
5582
|
+
readonly zodSchema: z.ZodObject<{
|
|
5583
|
+
name: z.ZodString;
|
|
5584
|
+
domain: z.ZodString;
|
|
5585
|
+
description: z.ZodString;
|
|
5586
|
+
indexed_at: z.ZodISODateTime;
|
|
5587
|
+
socials: z.ZodOptional<z.ZodObject<{
|
|
5588
|
+
facebook: z.ZodOptional<z.ZodURL>;
|
|
5589
|
+
github: z.ZodOptional<z.ZodURL>;
|
|
5590
|
+
instagram: z.ZodOptional<z.ZodURL>;
|
|
5591
|
+
linkedin: z.ZodOptional<z.ZodURL>;
|
|
5592
|
+
pinterest: z.ZodOptional<z.ZodURL>;
|
|
5593
|
+
reddit: z.ZodOptional<z.ZodURL>;
|
|
5594
|
+
snapchat: z.ZodOptional<z.ZodURL>;
|
|
5595
|
+
telegram: z.ZodOptional<z.ZodURL>;
|
|
5596
|
+
tumblr: z.ZodOptional<z.ZodURL>;
|
|
5597
|
+
twitter: z.ZodOptional<z.ZodURL>;
|
|
5598
|
+
wechat: z.ZodOptional<z.ZodURL>;
|
|
5599
|
+
whatsapp: z.ZodOptional<z.ZodURL>;
|
|
5600
|
+
youtube: z.ZodOptional<z.ZodURL>;
|
|
5601
|
+
}, z.core.$strip>>;
|
|
5602
|
+
logo: z.ZodURL;
|
|
5603
|
+
blurhash: z.ZodString;
|
|
5604
|
+
colors: z.ZodArray<z.ZodObject<{
|
|
5605
|
+
r: z.ZodNumber;
|
|
5606
|
+
g: z.ZodNumber;
|
|
5607
|
+
b: z.ZodNumber;
|
|
5608
|
+
hex: z.ZodString;
|
|
5609
|
+
}, z.core.$strip>>;
|
|
5610
|
+
}, z.core.$strip>;
|
|
5611
|
+
};
|
|
5612
|
+
};
|
|
4893
5613
|
/**
|
|
4894
5614
|
* @deprecated Use `company_profile_url` instead.
|
|
4895
5615
|
*/
|
|
@@ -4918,7 +5638,7 @@ export declare function getField<T extends FieldName>(fieldName: T): {
|
|
|
4918
5638
|
readonly type: "json";
|
|
4919
5639
|
readonly description: "A standardized format for returning LinkedIn profile data.";
|
|
4920
5640
|
readonly jsonMeta: {
|
|
4921
|
-
readonly
|
|
5641
|
+
readonly zodSchema: z.ZodObject<{
|
|
4922
5642
|
object: z.ZodLiteral<"linkedin_profile">;
|
|
4923
5643
|
name: z.ZodNullable<z.ZodString>;
|
|
4924
5644
|
headline: z.ZodNullable<z.ZodString>;
|