@pipe0/ops 0.0.7 → 0.0.8
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/index.js +32 -2
- package/dist/pipes/catalog/entries/people-profile-workemail-curstdata-1.d.ts +1 -1
- package/dist/pipes/catalog/pipes-catalog.d.ts +2 -2
- package/dist/searches/catalog/entries/people-profiles-crustdata-1.d.ts +6 -0
- package/dist/searches/catalog/searches-catalog.d.ts +12 -0
- package/dist/searches/index.d.ts +4 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -26361,7 +26361,7 @@ const PeopleProfileWorkemailCrustdataPipeClass1 = class extends Pipe {
|
|
|
26361
26361
|
inputFieldMode: "static",
|
|
26362
26362
|
outputFieldMode: "static",
|
|
26363
26363
|
basePipe: getBasePipeName(pipeId$13),
|
|
26364
|
-
label: "
|
|
26364
|
+
label: "Profile from work email",
|
|
26365
26365
|
executionMode: "single",
|
|
26366
26366
|
categories: ["people_data"],
|
|
26367
26367
|
lifecycle: null,
|
|
@@ -27707,7 +27707,7 @@ var pipeId$1 = "people:workemail:profileurl:waterfall@1", profileUrlInput = getF
|
|
|
27707
27707
|
groupPath: "config.general",
|
|
27708
27708
|
required: !1,
|
|
27709
27709
|
sectionKey: "general",
|
|
27710
|
-
description: "
|
|
27710
|
+
description: "Higher chance of bouncing or being marked as spam.",
|
|
27711
27711
|
label: "Allow risky emails"
|
|
27712
27712
|
}),
|
|
27713
27713
|
input_fields: inputFields(object({ [profileUrlInput.name]: pipesInputField({ fieldName: profileUrlInput.name }) })),
|
|
@@ -29774,6 +29774,14 @@ var limit$1 = 100, nameOutput = getField("name"), companyWebsiteOutput$1 = getFi
|
|
|
29774
29774
|
}));
|
|
29775
29775
|
}
|
|
29776
29776
|
}),
|
|
29777
|
+
current_employers_website_urls: searchesMultiCreateInput({
|
|
29778
|
+
path: "config.filters.current_employers_website_urls",
|
|
29779
|
+
sectionKey: "config.filters",
|
|
29780
|
+
label: "Current employers website URLs",
|
|
29781
|
+
description: "",
|
|
29782
|
+
maxItems: 200,
|
|
29783
|
+
groupPath: "config.filters.experience"
|
|
29784
|
+
}),
|
|
29777
29785
|
current_job_titles: searchesMultiCreateInput({
|
|
29778
29786
|
path: "config.filters.current_job_titles",
|
|
29779
29787
|
sectionKey: "config.filters",
|
|
@@ -29842,6 +29850,14 @@ var limit$1 = 100, nameOutput = getField("name"), companyWebsiteOutput$1 = getFi
|
|
|
29842
29850
|
label: a
|
|
29843
29851
|
}))
|
|
29844
29852
|
}),
|
|
29853
|
+
previous_employers_website_urls: searchesMultiCreateInput({
|
|
29854
|
+
path: "config.filters.previous_employers_website_urls",
|
|
29855
|
+
sectionKey: "config.filters",
|
|
29856
|
+
label: "Previous employers website URLs",
|
|
29857
|
+
description: "",
|
|
29858
|
+
maxItems: 200,
|
|
29859
|
+
groupPath: "config.filters.experience"
|
|
29860
|
+
}),
|
|
29845
29861
|
previous_seniority_levels: searchesIncludeExcludeSelectInput({
|
|
29846
29862
|
path: "config.filters.previous_seniority_levels",
|
|
29847
29863
|
sectionKey: "config.filters",
|
|
@@ -30098,6 +30114,12 @@ var limit$1 = 100, nameOutput = getField("name"), companyWebsiteOutput$1 = getFi
|
|
|
30098
30114
|
}));
|
|
30099
30115
|
}
|
|
30100
30116
|
})
|
|
30117
|
+
}).check((a) => {
|
|
30118
|
+
isFiltersEmpty(a.value) && a.issues.push({
|
|
30119
|
+
code: "custom",
|
|
30120
|
+
message: "You must set at least one filter.",
|
|
30121
|
+
input: a.value
|
|
30122
|
+
});
|
|
30101
30123
|
})
|
|
30102
30124
|
})
|
|
30103
30125
|
}), defaultDedupConfig$1 = { default: { input: [{ fields: [] }] } };
|
|
@@ -30183,6 +30205,8 @@ const PeopleProfilesCrustdataClass1 = class extends Search {
|
|
|
30183
30205
|
certifications: [],
|
|
30184
30206
|
honors: [],
|
|
30185
30207
|
current_employers_linkedin_industries: [],
|
|
30208
|
+
current_employers_website_urls: [],
|
|
30209
|
+
previous_employers_website_urls: [],
|
|
30186
30210
|
current_seniority_levels: {
|
|
30187
30211
|
include: [],
|
|
30188
30212
|
exclude: []
|
|
@@ -30550,6 +30574,12 @@ var limit = 100, companyNameOutput = getField("company_name"), companyWebsiteOut
|
|
|
30550
30574
|
description: "Ex. 'google.com'",
|
|
30551
30575
|
groupPath: "config.filters.competitors"
|
|
30552
30576
|
})
|
|
30577
|
+
}).check((a) => {
|
|
30578
|
+
isFiltersEmpty(a.value) && a.issues.push({
|
|
30579
|
+
code: "custom",
|
|
30580
|
+
message: "You must set at least one filter.",
|
|
30581
|
+
input: a.value
|
|
30582
|
+
});
|
|
30553
30583
|
})
|
|
30554
30584
|
})
|
|
30555
30585
|
}), defaultDedupConfig = { default: { input: [{ fields: [] }] } };
|
|
@@ -164,7 +164,7 @@ export declare const PeopleProfileWorkemailCrustdataEntry1: {
|
|
|
164
164
|
readonly inputFieldMode: "static";
|
|
165
165
|
readonly outputFieldMode: "static";
|
|
166
166
|
readonly basePipe: string;
|
|
167
|
-
readonly label: "
|
|
167
|
+
readonly label: "Profile from work email";
|
|
168
168
|
readonly executionMode: "single";
|
|
169
169
|
readonly categories: ["people_data"];
|
|
170
170
|
readonly lifecycle: null;
|
|
@@ -5121,7 +5121,7 @@ export declare const pipeCatalog: {
|
|
|
5121
5121
|
readonly inputFieldMode: "static";
|
|
5122
5122
|
readonly outputFieldMode: "static";
|
|
5123
5123
|
readonly basePipe: string;
|
|
5124
|
-
readonly label: "
|
|
5124
|
+
readonly label: "Profile from work email";
|
|
5125
5125
|
readonly executionMode: "single";
|
|
5126
5126
|
readonly categories: ["people_data"];
|
|
5127
5127
|
readonly lifecycle: null;
|
|
@@ -12666,7 +12666,7 @@ export declare function getPipeEntry(pipeId: PipeId): {
|
|
|
12666
12666
|
readonly inputFieldMode: "static";
|
|
12667
12667
|
readonly outputFieldMode: "static";
|
|
12668
12668
|
readonly basePipe: string;
|
|
12669
|
-
readonly label: "
|
|
12669
|
+
readonly label: "Profile from work email";
|
|
12670
12670
|
readonly executionMode: "single";
|
|
12671
12671
|
readonly categories: ["people_data"];
|
|
12672
12672
|
readonly lifecycle: null;
|
|
@@ -61,6 +61,7 @@ declare const PayloadSchema: z.ZodObject<{
|
|
|
61
61
|
exclude: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
62
62
|
}, z.core.$strip>>;
|
|
63
63
|
current_employers: z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
64
|
+
current_employers_website_urls: z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
64
65
|
current_job_titles: z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
65
66
|
current_employers_linkedin_industries: z.ZodArray<z.ZodString> | z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
66
67
|
years_at_current_company: z.ZodArray<z.ZodEnum<{
|
|
@@ -68,6 +69,7 @@ declare const PayloadSchema: z.ZodObject<{
|
|
|
68
69
|
}>> | z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
69
70
|
[x: string]: string;
|
|
70
71
|
}>>>;
|
|
72
|
+
previous_employers_website_urls: z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
71
73
|
previous_seniority_levels: z.ZodDefault<z.ZodObject<{
|
|
72
74
|
include: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
73
75
|
exclude: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
@@ -154,6 +156,7 @@ export declare const PeopleProfilesCrustdataPayloadSchema1: z.ZodObject<{
|
|
|
154
156
|
exclude: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
155
157
|
}, z.core.$strip>>;
|
|
156
158
|
current_employers: z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
159
|
+
current_employers_website_urls: z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
157
160
|
current_job_titles: z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
158
161
|
current_employers_linkedin_industries: z.ZodArray<z.ZodString> | z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
159
162
|
years_at_current_company: z.ZodArray<z.ZodEnum<{
|
|
@@ -161,6 +164,7 @@ export declare const PeopleProfilesCrustdataPayloadSchema1: z.ZodObject<{
|
|
|
161
164
|
}>> | z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
162
165
|
[x: string]: string;
|
|
163
166
|
}>>>;
|
|
167
|
+
previous_employers_website_urls: z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
164
168
|
previous_seniority_levels: z.ZodDefault<z.ZodObject<{
|
|
165
169
|
include: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
166
170
|
exclude: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
@@ -234,6 +238,8 @@ export declare const PeopleProfilesCrustdataEntry1: {
|
|
|
234
238
|
certifications: never[];
|
|
235
239
|
honors: never[];
|
|
236
240
|
current_employers_linkedin_industries: never[];
|
|
241
|
+
current_employers_website_urls: never[];
|
|
242
|
+
previous_employers_website_urls: never[];
|
|
237
243
|
current_seniority_levels: {
|
|
238
244
|
include: never[];
|
|
239
245
|
exclude: never[];
|
|
@@ -62,6 +62,7 @@ export declare const searchPayloadSchemaCatalog: {
|
|
|
62
62
|
exclude: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
63
63
|
}, z.core.$strip>>;
|
|
64
64
|
current_employers: z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
65
|
+
current_employers_website_urls: z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
65
66
|
current_job_titles: z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
66
67
|
current_employers_linkedin_industries: z.ZodArray<z.ZodString> | z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
67
68
|
years_at_current_company: z.ZodArray<z.ZodEnum<{
|
|
@@ -69,6 +70,7 @@ export declare const searchPayloadSchemaCatalog: {
|
|
|
69
70
|
}>> | z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
70
71
|
[x: string]: string;
|
|
71
72
|
}>>>;
|
|
73
|
+
previous_employers_website_urls: z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
72
74
|
previous_seniority_levels: z.ZodDefault<z.ZodObject<{
|
|
73
75
|
include: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
74
76
|
exclude: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
@@ -615,6 +617,8 @@ export declare const searchCatalog: {
|
|
|
615
617
|
certifications: never[];
|
|
616
618
|
honors: never[];
|
|
617
619
|
current_employers_linkedin_industries: never[];
|
|
620
|
+
current_employers_website_urls: never[];
|
|
621
|
+
previous_employers_website_urls: never[];
|
|
618
622
|
current_seniority_levels: {
|
|
619
623
|
include: never[];
|
|
620
624
|
exclude: never[];
|
|
@@ -1596,6 +1600,7 @@ export declare function getSearchPayloadSchema(seachId: SearchId): z.ZodObject<{
|
|
|
1596
1600
|
exclude: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1597
1601
|
}, z.core.$strip>>;
|
|
1598
1602
|
current_employers: z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1603
|
+
current_employers_website_urls: z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1599
1604
|
current_job_titles: z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1600
1605
|
current_employers_linkedin_industries: z.ZodArray<z.ZodString> | z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1601
1606
|
years_at_current_company: z.ZodArray<z.ZodEnum<{
|
|
@@ -1603,6 +1608,7 @@ export declare function getSearchPayloadSchema(seachId: SearchId): z.ZodObject<{
|
|
|
1603
1608
|
}>> | z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1604
1609
|
[x: string]: string;
|
|
1605
1610
|
}>>>;
|
|
1611
|
+
previous_employers_website_urls: z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1606
1612
|
previous_seniority_levels: z.ZodDefault<z.ZodObject<{
|
|
1607
1613
|
include: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1608
1614
|
exclude: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
@@ -2064,6 +2070,8 @@ export declare function getSearchDefaultPayload(seachId: SearchId): {
|
|
|
2064
2070
|
certifications: never[];
|
|
2065
2071
|
honors: never[];
|
|
2066
2072
|
current_employers_linkedin_industries: never[];
|
|
2073
|
+
current_employers_website_urls: never[];
|
|
2074
|
+
previous_employers_website_urls: never[];
|
|
2067
2075
|
current_seniority_levels: {
|
|
2068
2076
|
include: never[];
|
|
2069
2077
|
exclude: never[];
|
|
@@ -3410,6 +3418,7 @@ export declare const SearchesRequestSchema: z.ZodObject<{
|
|
|
3410
3418
|
exclude: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3411
3419
|
}, z.core.$strip>>;
|
|
3412
3420
|
current_employers: z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3421
|
+
current_employers_website_urls: z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3413
3422
|
current_job_titles: z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3414
3423
|
current_employers_linkedin_industries: z.ZodArray<z.ZodString> | z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3415
3424
|
years_at_current_company: z.ZodArray<z.ZodEnum<{
|
|
@@ -3417,6 +3426,7 @@ export declare const SearchesRequestSchema: z.ZodObject<{
|
|
|
3417
3426
|
}>> | z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3418
3427
|
[x: string]: string;
|
|
3419
3428
|
}>>>;
|
|
3429
|
+
previous_employers_website_urls: z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3420
3430
|
previous_seniority_levels: z.ZodDefault<z.ZodObject<{
|
|
3421
3431
|
include: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3422
3432
|
exclude: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
@@ -3972,6 +3982,8 @@ export declare function getSearchEntry(searchId: SearchId): {
|
|
|
3972
3982
|
certifications: never[];
|
|
3973
3983
|
honors: never[];
|
|
3974
3984
|
current_employers_linkedin_industries: never[];
|
|
3985
|
+
current_employers_website_urls: never[];
|
|
3986
|
+
previous_employers_website_urls: never[];
|
|
3975
3987
|
current_seniority_levels: {
|
|
3976
3988
|
include: never[];
|
|
3977
3989
|
exclude: never[];
|
package/dist/searches/index.d.ts
CHANGED
|
@@ -396,9 +396,11 @@ export declare class Searches {
|
|
|
396
396
|
exclude: string[];
|
|
397
397
|
};
|
|
398
398
|
current_employers: string[];
|
|
399
|
+
current_employers_website_urls: string[];
|
|
399
400
|
current_job_titles: string[];
|
|
400
401
|
current_employers_linkedin_industries: string[] | undefined;
|
|
401
402
|
years_at_current_company: string[] | undefined;
|
|
403
|
+
previous_employers_website_urls: string[];
|
|
402
404
|
previous_seniority_levels: {
|
|
403
405
|
include: string[];
|
|
404
406
|
exclude: string[];
|
|
@@ -888,9 +890,11 @@ export declare class Searches {
|
|
|
888
890
|
exclude: string[];
|
|
889
891
|
};
|
|
890
892
|
current_employers: string[];
|
|
893
|
+
current_employers_website_urls: string[];
|
|
891
894
|
current_job_titles: string[];
|
|
892
895
|
current_employers_linkedin_industries: string[] | undefined;
|
|
893
896
|
years_at_current_company: string[] | undefined;
|
|
897
|
+
previous_employers_website_urls: string[];
|
|
894
898
|
previous_seniority_levels: {
|
|
895
899
|
include: string[];
|
|
896
900
|
exclude: string[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pipe0/ops",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.8",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "",
|
|
6
6
|
"type": "module",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"openapi-fetch": "^0.13.4",
|
|
47
47
|
"xxhash-wasm": "^1.1.0",
|
|
48
48
|
"zod": "4.1.12",
|
|
49
|
-
"@pipe0/client": "0.0.
|
|
49
|
+
"@pipe0/client": "0.0.11"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@types/json-schema": "^7.0.15",
|