@pipe0/ops 0.0.6 → 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 +16 -0
- package/dist/index.js +37 -7
- package/dist/pipes/catalog/entries/people-identity-email-waterfall-1.d.ts +4 -4
- package/dist/pipes/catalog/entries/people-profile-workemail-curstdata-1.d.ts +1 -1
- package/dist/pipes/catalog/pipes-catalog.d.ts +25 -25
- package/dist/pipes/catalog/utils/get-pipe-instances.d.ts +2 -2
- package/dist/pipes/catalog/utils/index.d.ts +12 -12
- package/dist/pipes/utils/pipes-utils.d.ts +12 -12
- package/dist/pipes/utils/schemas-primitives.d.ts +14 -14
- package/dist/pipes/utils/sheet-schemas-primitives.d.ts +7 -7
- package/dist/searches/catalog/entries/people-profiles-crustdata-1.d.ts +6 -0
- package/dist/searches/catalog/searches-catalog.d.ts +15 -3
- package/dist/searches/index.d.ts +4 -0
- package/package.json +2 -2
|
@@ -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[];
|
|
@@ -2226,7 +2234,7 @@ export declare const SearchResultFieldSchema: z.ZodObject<{
|
|
|
2226
2234
|
"people:posts:crustdata@1": "people:posts:crustdata@1";
|
|
2227
2235
|
"people:profile:workemail:crustdata@1": "people:profile:workemail:crustdata@1";
|
|
2228
2236
|
"people:workemail:profileurl:waterfall@1": "people:workemail:profileurl:waterfall@1";
|
|
2229
|
-
"people:identity:
|
|
2237
|
+
"people:identity:email:waterfall@1": "people:identity:email:waterfall@1";
|
|
2230
2238
|
"company:identity@1": "company:identity@1";
|
|
2231
2239
|
"people:professionalprofile:waterfall@1": "people:professionalprofile:waterfall@1";
|
|
2232
2240
|
"people:professionalprofileurl:name@1": "people:professionalprofileurl:name@1";
|
|
@@ -2437,7 +2445,7 @@ export declare const SearchResultSchema: z.ZodRecord<z.ZodString, z.ZodNullable<
|
|
|
2437
2445
|
"people:posts:crustdata@1": "people:posts:crustdata@1";
|
|
2438
2446
|
"people:profile:workemail:crustdata@1": "people:profile:workemail:crustdata@1";
|
|
2439
2447
|
"people:workemail:profileurl:waterfall@1": "people:workemail:profileurl:waterfall@1";
|
|
2440
|
-
"people:identity:
|
|
2448
|
+
"people:identity:email:waterfall@1": "people:identity:email:waterfall@1";
|
|
2441
2449
|
"company:identity@1": "company:identity@1";
|
|
2442
2450
|
"people:professionalprofile:waterfall@1": "people:professionalprofile:waterfall@1";
|
|
2443
2451
|
"people:professionalprofileurl:name@1": "people:professionalprofileurl:name@1";
|
|
@@ -2698,7 +2706,7 @@ export declare const SearchesResponseSchema: z.ZodObject<{
|
|
|
2698
2706
|
"people:posts:crustdata@1": "people:posts:crustdata@1";
|
|
2699
2707
|
"people:profile:workemail:crustdata@1": "people:profile:workemail:crustdata@1";
|
|
2700
2708
|
"people:workemail:profileurl:waterfall@1": "people:workemail:profileurl:waterfall@1";
|
|
2701
|
-
"people:identity:
|
|
2709
|
+
"people:identity:email:waterfall@1": "people:identity:email:waterfall@1";
|
|
2702
2710
|
"company:identity@1": "company:identity@1";
|
|
2703
2711
|
"people:professionalprofile:waterfall@1": "people:professionalprofile:waterfall@1";
|
|
2704
2712
|
"people:professionalprofileurl:name@1": "people:professionalprofileurl:name@1";
|
|
@@ -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",
|