@pipe0/ops 0.0.4 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/dist/fields/field-catalog.d.ts +934 -0
- package/dist/fields/json-meta/fields/crustdata-company-match.d.ts +79 -0
- package/dist/fields/json-meta/fields/crustdata-person-match.d.ts +115 -0
- package/dist/fields/json-meta/fields/crustdata-post-list.d.ts +29 -0
- package/dist/form-generation/fields.d.ts +92 -40
- package/dist/index.js +4234 -1938
- package/dist/payload-config/country-codes.d.ts +7 -0
- package/dist/payload-config/linkedin-standard-industries.d.ts +1 -0
- package/dist/pipes/catalog/entries/company-identity-2.d.ts +3 -3
- package/dist/pipes/catalog/entries/company-lookalikes-companyenrich-1.d.ts +5 -5
- package/dist/pipes/catalog/entries/company-match-logodev-1.d.ts +4 -4
- package/dist/pipes/catalog/entries/company-newssummary-website-1.d.ts +3 -3
- package/dist/pipes/catalog/entries/company-overview-2.d.ts +6 -6
- package/dist/pipes/catalog/entries/company-techstack-builtwith-1.d.ts +6 -6
- package/dist/pipes/catalog/entries/company-websiteurl-email-1.d.ts +3 -3
- package/dist/pipes/catalog/entries/contact-create-resent-1.d.ts +2 -2
- 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/email-write-1.d.ts +16 -16
- package/dist/pipes/catalog/entries/message-write-1.d.ts +8 -8
- package/dist/pipes/catalog/entries/people-email-iswork-1.d.ts +3 -3
- package/dist/pipes/catalog/entries/people-match-role-waterfall-1.d.ts +3 -3
- package/dist/pipes/catalog/entries/people-name-join-1.d.ts +6 -6
- package/dist/pipes/catalog/entries/people-name-split-1.d.ts +3 -3
- 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-posts-crustdata-1.d.ts +225 -0
- package/dist/pipes/catalog/entries/people-profile-waterfall-1.d.ts +3 -3
- package/dist/pipes/catalog/entries/people-profileurl-email-waterfall-1.d.ts +6 -6
- package/dist/pipes/catalog/entries/prompt-run-1.d.ts +8 -8
- package/dist/pipes/catalog/entries/sheet-append-1.d.ts +4 -4
- package/dist/pipes/catalog/entries/sheet-expandappend-1.d.ts +4 -4
- package/dist/pipes/catalog/entries/website-extract-firecrawl-1.d.ts +4 -4
- package/dist/pipes/catalog/entries/website-maplinks-firecrawl-1.d.ts +10 -10
- package/dist/pipes/catalog/entries/website-scrape-firecrawl-1.d.ts +2 -2
- package/dist/pipes/catalog/entries/website-scrapelist-firecrawl-1.d.ts +2 -2
- package/dist/pipes/catalog/pipe.d.ts +433 -3
- package/dist/pipes/catalog/pipes-catalog.d.ts +619 -265
- package/dist/pipes/catalog/utils/get-pipe-instances.d.ts +2 -2
- package/dist/pipes/catalog/utils/index.d.ts +33 -33
- package/dist/pipes/catalog/utils/partner-logos.d.ts +3 -0
- package/dist/pipes/providers/provider-catalog.d.ts +12 -0
- package/dist/pipes/providers/provider-utils.d.ts +33 -21
- package/dist/pipes/utils/pipes-utils.d.ts +30 -30
- package/dist/pipes/utils/schemas-primitives.d.ts +29 -1
- package/dist/pipes/utils/sheet-schemas-primitives.d.ts +304 -93
- package/dist/searches/catalog/entries/companies-profiles-crustdata-1.d.ts +264 -0
- package/dist/searches/catalog/entries/companies-profiles-exa-1.d.ts +2 -2
- package/dist/searches/catalog/entries/companies-profiles-icypeas-1.d.ts +14 -14
- package/dist/searches/catalog/entries/deprecated/people-profiles-clado-1.d.ts +2 -2
- package/dist/searches/catalog/entries/people-employees-leadmagic-1.d.ts +2 -2
- package/dist/searches/catalog/entries/people-profiles-clado-2.d.ts +5 -5
- package/dist/searches/catalog/entries/people-profiles-crustdata-1.d.ts +261 -0
- package/dist/searches/catalog/entries/people-profiles-exa-1.d.ts +2 -2
- package/dist/searches/catalog/entries/people-profiles-icypeas-1.d.ts +2 -2
- package/dist/searches/catalog/entries/utils/crustdata-options-helpers.d.ts +13 -0
- package/dist/searches/catalog/searches-catalog.d.ts +1210 -266
- package/dist/searches/index.d.ts +270 -16
- package/dist/searches/schemas.d.ts +3 -1
- package/dist/utils/connection-id.d.ts +1 -1
- package/dist/utils/icons.d.ts +1 -1
- package/dist/utils/schemas.d.ts +7 -2
- package/package.json +3 -2
- package/dist/payload-config/provider-info.d.ts +0 -1
|
@@ -0,0 +1,261 @@
|
|
|
1
|
+
import { z, ZodType } from "zod";
|
|
2
|
+
import type { PipeConnectionRequirement, SearchOutputField } from "../../../pipes/catalog/types.js";
|
|
3
|
+
import type { SearchId } from "../../schemas.js";
|
|
4
|
+
import type { DedupConfig } from "../../types.js";
|
|
5
|
+
import { Search } from "../search.js";
|
|
6
|
+
export declare const searchId = "people:profiles:crustdata@1";
|
|
7
|
+
declare const PayloadSchema: z.ZodObject<{
|
|
8
|
+
search_id: z.ZodLiteral<"people:profiles:crustdata@1">;
|
|
9
|
+
connector: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
10
|
+
strategy: z.ZodDefault<z.ZodEnum<{
|
|
11
|
+
first: "first";
|
|
12
|
+
}>>;
|
|
13
|
+
connections: z.ZodArray<z.ZodObject<{
|
|
14
|
+
type: z.ZodLiteral<"vault">;
|
|
15
|
+
connection: z.ZodString;
|
|
16
|
+
}, z.core.$strip>>;
|
|
17
|
+
}, z.core.$strip>>>>>;
|
|
18
|
+
config: z.ZodObject<{
|
|
19
|
+
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>> | z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodCoercedNumber<unknown>>>>;
|
|
20
|
+
cursor: z.ZodString;
|
|
21
|
+
output_fields: z.ZodOptional<z.ZodObject<{
|
|
22
|
+
name: z.ZodDefault<z.ZodObject<{
|
|
23
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
24
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
25
|
+
}, z.core.$strip>>;
|
|
26
|
+
company_website_url: z.ZodDefault<z.ZodObject<{
|
|
27
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
28
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
29
|
+
}, z.core.$strip>>;
|
|
30
|
+
profile_url: z.ZodDefault<z.ZodObject<{
|
|
31
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
32
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
33
|
+
}, z.core.$strip>>;
|
|
34
|
+
job_title: z.ZodDefault<z.ZodObject<{
|
|
35
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
36
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
37
|
+
}, z.core.$strip>>;
|
|
38
|
+
crustdata_person_match: z.ZodDefault<z.ZodObject<{
|
|
39
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
40
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
41
|
+
}, z.core.$strip>>;
|
|
42
|
+
}, z.core.$strip>>;
|
|
43
|
+
filters: z.ZodObject<{
|
|
44
|
+
locations: z.ZodArray<z.ZodString> | z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
45
|
+
profile_headline_keywords: z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
46
|
+
profile_summary_keywords: z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
47
|
+
profile_languages: z.ZodArray<z.ZodEnum<{
|
|
48
|
+
[x: string]: string;
|
|
49
|
+
}>> | z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
50
|
+
[x: string]: string;
|
|
51
|
+
}>>>;
|
|
52
|
+
languages: z.ZodArray<z.ZodString> | z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
53
|
+
skills: z.ZodArray<z.ZodString> | z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
54
|
+
years_of_experience: z.ZodArray<z.ZodEnum<{
|
|
55
|
+
[x: string]: string;
|
|
56
|
+
}>> | z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
57
|
+
[x: string]: string;
|
|
58
|
+
}>>>;
|
|
59
|
+
current_seniority_levels: z.ZodDefault<z.ZodObject<{
|
|
60
|
+
include: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
61
|
+
exclude: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
62
|
+
}, z.core.$strip>>;
|
|
63
|
+
current_employers: z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
64
|
+
current_job_titles: z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
65
|
+
current_employers_linkedin_industries: z.ZodArray<z.ZodString> | z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
66
|
+
years_at_current_company: z.ZodArray<z.ZodEnum<{
|
|
67
|
+
[x: string]: string;
|
|
68
|
+
}>> | z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
69
|
+
[x: string]: string;
|
|
70
|
+
}>>>;
|
|
71
|
+
previous_seniority_levels: z.ZodDefault<z.ZodObject<{
|
|
72
|
+
include: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
73
|
+
exclude: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
74
|
+
}, z.core.$strip>>;
|
|
75
|
+
previous_employers: z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
76
|
+
previous_job_titles: z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
77
|
+
previous_employers_linkedin_industries: z.ZodArray<z.ZodString> | z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
78
|
+
certifications: z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
79
|
+
honors: z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
80
|
+
recently_changed_jobs: z.ZodBoolean | z.ZodDefault<z.ZodBoolean> | z.ZodDefault<z.ZodNullable<z.ZodBoolean>> | z.ZodDefault<z.ZodDefault<z.ZodNullable<z.ZodBoolean>>>;
|
|
81
|
+
fields_of_study: z.ZodArray<z.ZodString> | z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
82
|
+
degree_names: z.ZodArray<z.ZodString> | z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
83
|
+
school_names: z.ZodArray<z.ZodString> | z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
84
|
+
current_school_names: z.ZodArray<z.ZodString> | z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
85
|
+
extracurricular_activities: z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
86
|
+
}, z.core.$strip>;
|
|
87
|
+
}, z.core.$strip>;
|
|
88
|
+
}, z.core.$strip>;
|
|
89
|
+
type Config = z.infer<typeof PayloadSchema>;
|
|
90
|
+
declare class SearchClass extends Search<Config> {
|
|
91
|
+
searchId: SearchId;
|
|
92
|
+
schema: ZodType;
|
|
93
|
+
payload: Config;
|
|
94
|
+
constructor(config: Config);
|
|
95
|
+
getRawOutputFields(): Record<string, SearchOutputField>;
|
|
96
|
+
getConnectionsRequirements(): Array<PipeConnectionRequirement>;
|
|
97
|
+
getDedupConfig(): DedupConfig;
|
|
98
|
+
}
|
|
99
|
+
export declare const PeopleProfilesCrustdataClass1: typeof SearchClass;
|
|
100
|
+
export declare const PeopleProfilesCrustdataPayloadSchema1: z.ZodObject<{
|
|
101
|
+
search_id: z.ZodLiteral<"people:profiles:crustdata@1">;
|
|
102
|
+
connector: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
103
|
+
strategy: z.ZodDefault<z.ZodEnum<{
|
|
104
|
+
first: "first";
|
|
105
|
+
}>>;
|
|
106
|
+
connections: z.ZodArray<z.ZodObject<{
|
|
107
|
+
type: z.ZodLiteral<"vault">;
|
|
108
|
+
connection: z.ZodString;
|
|
109
|
+
}, z.core.$strip>>;
|
|
110
|
+
}, z.core.$strip>>>>>;
|
|
111
|
+
config: z.ZodObject<{
|
|
112
|
+
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>> | z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodCoercedNumber<unknown>>>>;
|
|
113
|
+
cursor: z.ZodString;
|
|
114
|
+
output_fields: z.ZodOptional<z.ZodObject<{
|
|
115
|
+
name: z.ZodDefault<z.ZodObject<{
|
|
116
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
117
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
118
|
+
}, z.core.$strip>>;
|
|
119
|
+
company_website_url: z.ZodDefault<z.ZodObject<{
|
|
120
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
121
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
122
|
+
}, z.core.$strip>>;
|
|
123
|
+
profile_url: z.ZodDefault<z.ZodObject<{
|
|
124
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
125
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
126
|
+
}, z.core.$strip>>;
|
|
127
|
+
job_title: z.ZodDefault<z.ZodObject<{
|
|
128
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
129
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
130
|
+
}, z.core.$strip>>;
|
|
131
|
+
crustdata_person_match: z.ZodDefault<z.ZodObject<{
|
|
132
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
133
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
134
|
+
}, z.core.$strip>>;
|
|
135
|
+
}, z.core.$strip>>;
|
|
136
|
+
filters: z.ZodObject<{
|
|
137
|
+
locations: z.ZodArray<z.ZodString> | z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
138
|
+
profile_headline_keywords: z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
139
|
+
profile_summary_keywords: z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
140
|
+
profile_languages: z.ZodArray<z.ZodEnum<{
|
|
141
|
+
[x: string]: string;
|
|
142
|
+
}>> | z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
143
|
+
[x: string]: string;
|
|
144
|
+
}>>>;
|
|
145
|
+
languages: z.ZodArray<z.ZodString> | z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
146
|
+
skills: z.ZodArray<z.ZodString> | z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
147
|
+
years_of_experience: z.ZodArray<z.ZodEnum<{
|
|
148
|
+
[x: string]: string;
|
|
149
|
+
}>> | z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
150
|
+
[x: string]: string;
|
|
151
|
+
}>>>;
|
|
152
|
+
current_seniority_levels: z.ZodDefault<z.ZodObject<{
|
|
153
|
+
include: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
154
|
+
exclude: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
155
|
+
}, z.core.$strip>>;
|
|
156
|
+
current_employers: z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
157
|
+
current_job_titles: z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
158
|
+
current_employers_linkedin_industries: z.ZodArray<z.ZodString> | z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
159
|
+
years_at_current_company: z.ZodArray<z.ZodEnum<{
|
|
160
|
+
[x: string]: string;
|
|
161
|
+
}>> | z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
162
|
+
[x: string]: string;
|
|
163
|
+
}>>>;
|
|
164
|
+
previous_seniority_levels: z.ZodDefault<z.ZodObject<{
|
|
165
|
+
include: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
166
|
+
exclude: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
167
|
+
}, z.core.$strip>>;
|
|
168
|
+
previous_employers: z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
169
|
+
previous_job_titles: z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
170
|
+
previous_employers_linkedin_industries: z.ZodArray<z.ZodString> | z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
171
|
+
certifications: z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
172
|
+
honors: z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
173
|
+
recently_changed_jobs: z.ZodBoolean | z.ZodDefault<z.ZodBoolean> | z.ZodDefault<z.ZodNullable<z.ZodBoolean>> | z.ZodDefault<z.ZodDefault<z.ZodNullable<z.ZodBoolean>>>;
|
|
174
|
+
fields_of_study: z.ZodArray<z.ZodString> | z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
175
|
+
degree_names: z.ZodArray<z.ZodString> | z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
176
|
+
school_names: z.ZodArray<z.ZodString> | z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
177
|
+
current_school_names: z.ZodArray<z.ZodString> | z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
178
|
+
extracurricular_activities: z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
179
|
+
}, z.core.$strip>;
|
|
180
|
+
}, z.core.$strip>;
|
|
181
|
+
}, z.core.$strip>;
|
|
182
|
+
export declare const PeopleProfilesCrustdataEntry1: {
|
|
183
|
+
searchId: "people:profiles:crustdata@1";
|
|
184
|
+
baseSearch: string;
|
|
185
|
+
label: string;
|
|
186
|
+
categories: "people"[];
|
|
187
|
+
hasManagedConnection: true;
|
|
188
|
+
allowsUserConnection: true;
|
|
189
|
+
lifecycle: null;
|
|
190
|
+
description: string;
|
|
191
|
+
tags: "People Profiles"[];
|
|
192
|
+
docPath: string;
|
|
193
|
+
cost: {
|
|
194
|
+
mode: "per_page";
|
|
195
|
+
creditsPerPage: number;
|
|
196
|
+
};
|
|
197
|
+
provider: "crustdata";
|
|
198
|
+
defaultPayload: {
|
|
199
|
+
search_id: "people:profiles:crustdata@1";
|
|
200
|
+
connector: null;
|
|
201
|
+
config: {
|
|
202
|
+
limit: number;
|
|
203
|
+
cursor: string;
|
|
204
|
+
output_fields: {
|
|
205
|
+
name: {
|
|
206
|
+
enabled: true;
|
|
207
|
+
alias: string;
|
|
208
|
+
};
|
|
209
|
+
job_title: {
|
|
210
|
+
enabled: true;
|
|
211
|
+
alias: string;
|
|
212
|
+
};
|
|
213
|
+
profile_url: {
|
|
214
|
+
enabled: true;
|
|
215
|
+
alias: string;
|
|
216
|
+
};
|
|
217
|
+
company_website_url: {
|
|
218
|
+
enabled: true;
|
|
219
|
+
alias: string;
|
|
220
|
+
};
|
|
221
|
+
crustdata_person_match: {
|
|
222
|
+
enabled: true;
|
|
223
|
+
alias: string;
|
|
224
|
+
};
|
|
225
|
+
};
|
|
226
|
+
filters: {
|
|
227
|
+
profile_headline_keywords: never[];
|
|
228
|
+
languages: never[];
|
|
229
|
+
profile_summary_keywords: never[];
|
|
230
|
+
previous_job_titles: never[];
|
|
231
|
+
current_employers: never[];
|
|
232
|
+
current_school_names: never[];
|
|
233
|
+
years_at_current_company: never[];
|
|
234
|
+
certifications: never[];
|
|
235
|
+
honors: never[];
|
|
236
|
+
current_employers_linkedin_industries: never[];
|
|
237
|
+
current_seniority_levels: {
|
|
238
|
+
include: never[];
|
|
239
|
+
exclude: never[];
|
|
240
|
+
};
|
|
241
|
+
previous_seniority_levels: {
|
|
242
|
+
include: never[];
|
|
243
|
+
exclude: never[];
|
|
244
|
+
};
|
|
245
|
+
degree_names: never[];
|
|
246
|
+
locations: never[];
|
|
247
|
+
profile_languages: never[];
|
|
248
|
+
recently_changed_jobs: null;
|
|
249
|
+
extracurricular_activities: never[];
|
|
250
|
+
school_names: never[];
|
|
251
|
+
fields_of_study: never[];
|
|
252
|
+
previous_employers: never[];
|
|
253
|
+
current_job_titles: never[];
|
|
254
|
+
skills: never[];
|
|
255
|
+
years_of_experience: never[];
|
|
256
|
+
previous_employers_linkedin_industries: never[];
|
|
257
|
+
};
|
|
258
|
+
};
|
|
259
|
+
};
|
|
260
|
+
};
|
|
261
|
+
export {};
|
|
@@ -16,7 +16,7 @@ declare const PayloadSchema: z.ZodObject<{
|
|
|
16
16
|
}, z.core.$strip>>;
|
|
17
17
|
}, z.core.$strip>>>>>;
|
|
18
18
|
config: z.ZodObject<{
|
|
19
|
-
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>> | z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown
|
|
19
|
+
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>> | z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodCoercedNumber<unknown>>>>;
|
|
20
20
|
output_fields: z.ZodOptional<z.ZodObject<{
|
|
21
21
|
name: z.ZodDefault<z.ZodObject<{
|
|
22
22
|
alias: z.ZodDefault<z.ZodString>;
|
|
@@ -71,7 +71,7 @@ export declare const PeopleProfilesExaPayloadSchema1: z.ZodObject<{
|
|
|
71
71
|
}, z.core.$strip>>;
|
|
72
72
|
}, z.core.$strip>>>>>;
|
|
73
73
|
config: z.ZodObject<{
|
|
74
|
-
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>> | z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown
|
|
74
|
+
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>> | z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodCoercedNumber<unknown>>>>;
|
|
75
75
|
output_fields: z.ZodOptional<z.ZodObject<{
|
|
76
76
|
name: z.ZodDefault<z.ZodObject<{
|
|
77
77
|
alias: z.ZodDefault<z.ZodString>;
|
|
@@ -17,7 +17,7 @@ declare const PayloadSchema: z.ZodObject<{
|
|
|
17
17
|
}, z.core.$strip>>;
|
|
18
18
|
}, z.core.$strip>>>>>;
|
|
19
19
|
config: z.ZodObject<{
|
|
20
|
-
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>> | z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown
|
|
20
|
+
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>> | z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodCoercedNumber<unknown>>>>;
|
|
21
21
|
output_fields: z.ZodOptional<z.ZodObject<{
|
|
22
22
|
name: z.ZodDefault<z.ZodObject<{
|
|
23
23
|
alias: z.ZodDefault<z.ZodString>;
|
|
@@ -119,7 +119,7 @@ export declare const PeopleProfilesIcypeasPayloadSchema1: z.ZodObject<{
|
|
|
119
119
|
}, z.core.$strip>>;
|
|
120
120
|
}, z.core.$strip>>>>>;
|
|
121
121
|
config: z.ZodObject<{
|
|
122
|
-
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>> | z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown
|
|
122
|
+
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>> | z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodCoercedNumber<unknown>>>>;
|
|
123
123
|
output_fields: z.ZodOptional<z.ZodObject<{
|
|
124
124
|
name: z.ZodDefault<z.ZodObject<{
|
|
125
125
|
alias: z.ZodDefault<z.ZodString>;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export declare const crustDataCompanySizeOptions: string[];
|
|
2
|
+
export declare const crustdataCompanyFollowerOptions: string[];
|
|
3
|
+
export declare const crustdataFundingRoundOptions: string[];
|
|
4
|
+
export declare const crustdataPersonCompanySize: string[];
|
|
5
|
+
export declare const crustdataPersonProfileLanguageOptions: string[];
|
|
6
|
+
export declare const crustdataPersonSenorityOptions: string[];
|
|
7
|
+
export declare const crustdataPersonYearsAtCurrenCompanyOptions: string[];
|
|
8
|
+
export declare const crustdataPersonYearsInCurrentPositionOptions: string[];
|
|
9
|
+
export declare const crustdataYearsOfExperienceOptions: string[];
|
|
10
|
+
export declare const crustdataFunctionOptoins: string[];
|
|
11
|
+
export declare const crustdataCompanyTypeOptions: string[];
|
|
12
|
+
export declare const customCrustdataHeadcountGrowth: string[];
|
|
13
|
+
export declare const customCrustdataFollowerGrowth: string[];
|