@pipe0/ops 0.0.7 → 0.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/dist/fields/field-catalog.d.ts +561 -0
- package/dist/fields/json-meta/fields/crustdata-companyenrich-match.d.ts +139 -0
- package/dist/index.js +1276 -706
- package/dist/pipes/catalog/entries/company-identity-2.d.ts +3 -3
- package/dist/pipes/catalog/entries/company-lookalikes-companyenrich-1.d.ts +3 -3
- package/dist/pipes/catalog/entries/company-match-crustdata-1.d.ts +208 -0
- package/dist/pipes/catalog/entries/company-match-logodev-1.d.ts +3 -3
- 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/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 +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 +3 -3
- package/dist/pipes/catalog/entries/people-profile-waterfall-1.d.ts +3 -3
- package/dist/pipes/catalog/entries/people-profile-workemail-curstdata-1.d.ts +4 -4
- package/dist/pipes/catalog/entries/people-profileurl-email-waterfall-1.d.ts +6 -6
- package/dist/pipes/catalog/pipe.d.ts +276 -3
- package/dist/pipes/catalog/pipes-catalog.d.ts +500 -184
- package/dist/pipes/catalog/utils/get-pipe-instances.d.ts +2 -2
- package/dist/pipes/catalog/utils/index.d.ts +15 -15
- package/dist/pipes/utils/pipes-utils.d.ts +12 -12
- package/dist/pipes/utils/schemas-primitives.d.ts +14 -1
- package/dist/pipes/utils/sheet-schemas-primitives.d.ts +190 -0
- package/dist/searches/catalog/entries/people-profiles-crustdata-1.d.ts +6 -0
- package/dist/searches/catalog/searches-catalog.d.ts +15 -0
- package/dist/searches/index.d.ts +4 -0
- package/dist/utils/schemas.d.ts +3 -2
- package/package.json +2 -2
|
@@ -2909,6 +2909,68 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
2909
2909
|
}, z.z.core.$strip>>;
|
|
2910
2910
|
}, z.z.core.$strip>>;
|
|
2911
2911
|
}, z.z.core.$strip>>;
|
|
2912
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
2913
|
+
pipe_id: z.ZodLiteral<"company:match:crustdata@1">;
|
|
2914
|
+
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
2915
|
+
action: z.ZodEnum<{
|
|
2916
|
+
run: "run";
|
|
2917
|
+
}>;
|
|
2918
|
+
when: z.ZodObject<{
|
|
2919
|
+
logic: z.ZodEnum<{
|
|
2920
|
+
and: "and";
|
|
2921
|
+
or: "or";
|
|
2922
|
+
}>;
|
|
2923
|
+
conditions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2924
|
+
property: z.ZodLiteral<"value">;
|
|
2925
|
+
field_name: z.ZodString;
|
|
2926
|
+
operator: z.ZodEnum<{
|
|
2927
|
+
eq: "eq";
|
|
2928
|
+
neq: "neq";
|
|
2929
|
+
gt: "gt";
|
|
2930
|
+
gte: "gte";
|
|
2931
|
+
lt: "lt";
|
|
2932
|
+
lte: "lte";
|
|
2933
|
+
contains: "contains";
|
|
2934
|
+
}>;
|
|
2935
|
+
value: z.ZodUnion<readonly [z.ZodNumber, z.ZodString, z.ZodBoolean, z.ZodNull]>;
|
|
2936
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
2937
|
+
property: z.ZodLiteral<"status">;
|
|
2938
|
+
field_name: z.ZodString;
|
|
2939
|
+
operator: z.ZodEnum<{
|
|
2940
|
+
eq: "eq";
|
|
2941
|
+
neq: "neq";
|
|
2942
|
+
}>;
|
|
2943
|
+
value: z.ZodEnum<{
|
|
2944
|
+
completed: "completed";
|
|
2945
|
+
failed: "failed";
|
|
2946
|
+
no_result: "no_result";
|
|
2947
|
+
skipped: "skipped";
|
|
2948
|
+
}>;
|
|
2949
|
+
}, z.z.core.$strip>], "property">>;
|
|
2950
|
+
}, z.z.core.$strip>;
|
|
2951
|
+
}, z.z.core.$strip>>>;
|
|
2952
|
+
connector: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2953
|
+
strategy: z.ZodDefault<z.ZodEnum<{
|
|
2954
|
+
first: "first";
|
|
2955
|
+
}>>;
|
|
2956
|
+
connections: z.ZodArray<z.ZodObject<{
|
|
2957
|
+
type: z.ZodLiteral<"vault">;
|
|
2958
|
+
connection: z.ZodString;
|
|
2959
|
+
}, z.z.core.$strip>>;
|
|
2960
|
+
}, z.z.core.$strip>>>;
|
|
2961
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
2962
|
+
input_fields: z.ZodOptional<z.ZodObject<{
|
|
2963
|
+
company_website_url: z.ZodDefault<z.ZodObject<{
|
|
2964
|
+
alias: z.ZodString;
|
|
2965
|
+
}, z.z.core.$strip>>;
|
|
2966
|
+
}, z.z.core.$strip>>;
|
|
2967
|
+
output_fields: z.ZodOptional<z.ZodObject<{
|
|
2968
|
+
crustdata_companyenrich_match: z.ZodDefault<z.ZodObject<{
|
|
2969
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
2970
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
2971
|
+
}, z.z.core.$strip>>;
|
|
2972
|
+
}, z.z.core.$strip>>;
|
|
2973
|
+
}, z.z.core.$strip>>;
|
|
2912
2974
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
2913
2975
|
pipe_id: z.ZodLiteral<"people:profile:workemail:crustdata@1">;
|
|
2914
2976
|
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -6395,6 +6457,68 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
6395
6457
|
}, z.z.core.$strip>>;
|
|
6396
6458
|
}, z.z.core.$strip>>;
|
|
6397
6459
|
}, z.z.core.$strip>>;
|
|
6460
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
6461
|
+
pipe_id: z.ZodLiteral<"company:match:crustdata@1">;
|
|
6462
|
+
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
6463
|
+
action: z.ZodEnum<{
|
|
6464
|
+
run: "run";
|
|
6465
|
+
}>;
|
|
6466
|
+
when: z.ZodObject<{
|
|
6467
|
+
logic: z.ZodEnum<{
|
|
6468
|
+
and: "and";
|
|
6469
|
+
or: "or";
|
|
6470
|
+
}>;
|
|
6471
|
+
conditions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
6472
|
+
property: z.ZodLiteral<"value">;
|
|
6473
|
+
field_name: z.ZodString;
|
|
6474
|
+
operator: z.ZodEnum<{
|
|
6475
|
+
eq: "eq";
|
|
6476
|
+
neq: "neq";
|
|
6477
|
+
gt: "gt";
|
|
6478
|
+
gte: "gte";
|
|
6479
|
+
lt: "lt";
|
|
6480
|
+
lte: "lte";
|
|
6481
|
+
contains: "contains";
|
|
6482
|
+
}>;
|
|
6483
|
+
value: z.ZodUnion<readonly [z.ZodNumber, z.ZodString, z.ZodBoolean, z.ZodNull]>;
|
|
6484
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
6485
|
+
property: z.ZodLiteral<"status">;
|
|
6486
|
+
field_name: z.ZodString;
|
|
6487
|
+
operator: z.ZodEnum<{
|
|
6488
|
+
eq: "eq";
|
|
6489
|
+
neq: "neq";
|
|
6490
|
+
}>;
|
|
6491
|
+
value: z.ZodEnum<{
|
|
6492
|
+
completed: "completed";
|
|
6493
|
+
failed: "failed";
|
|
6494
|
+
no_result: "no_result";
|
|
6495
|
+
skipped: "skipped";
|
|
6496
|
+
}>;
|
|
6497
|
+
}, z.z.core.$strip>], "property">>;
|
|
6498
|
+
}, z.z.core.$strip>;
|
|
6499
|
+
}, z.z.core.$strip>>>;
|
|
6500
|
+
connector: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
6501
|
+
strategy: z.ZodDefault<z.ZodEnum<{
|
|
6502
|
+
first: "first";
|
|
6503
|
+
}>>;
|
|
6504
|
+
connections: z.ZodArray<z.ZodObject<{
|
|
6505
|
+
type: z.ZodLiteral<"vault">;
|
|
6506
|
+
connection: z.ZodString;
|
|
6507
|
+
}, z.z.core.$strip>>;
|
|
6508
|
+
}, z.z.core.$strip>>>;
|
|
6509
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
6510
|
+
input_fields: z.ZodOptional<z.ZodObject<{
|
|
6511
|
+
company_website_url: z.ZodDefault<z.ZodObject<{
|
|
6512
|
+
alias: z.ZodString;
|
|
6513
|
+
}, z.z.core.$strip>>;
|
|
6514
|
+
}, z.z.core.$strip>>;
|
|
6515
|
+
output_fields: z.ZodOptional<z.ZodObject<{
|
|
6516
|
+
crustdata_companyenrich_match: z.ZodDefault<z.ZodObject<{
|
|
6517
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
6518
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
6519
|
+
}, z.z.core.$strip>>;
|
|
6520
|
+
}, z.z.core.$strip>>;
|
|
6521
|
+
}, z.z.core.$strip>>;
|
|
6398
6522
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
6399
6523
|
pipe_id: z.ZodLiteral<"people:profile:workemail:crustdata@1">;
|
|
6400
6524
|
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -9875,6 +9999,68 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
9875
9999
|
}, z.z.core.$strip>>;
|
|
9876
10000
|
}, z.z.core.$strip>>;
|
|
9877
10001
|
}, z.z.core.$strip>>;
|
|
10002
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
10003
|
+
pipe_id: z.ZodLiteral<"company:match:crustdata@1">;
|
|
10004
|
+
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
10005
|
+
action: z.ZodEnum<{
|
|
10006
|
+
run: "run";
|
|
10007
|
+
}>;
|
|
10008
|
+
when: z.ZodObject<{
|
|
10009
|
+
logic: z.ZodEnum<{
|
|
10010
|
+
and: "and";
|
|
10011
|
+
or: "or";
|
|
10012
|
+
}>;
|
|
10013
|
+
conditions: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
10014
|
+
property: z.ZodLiteral<"value">;
|
|
10015
|
+
field_name: z.ZodString;
|
|
10016
|
+
operator: z.ZodEnum<{
|
|
10017
|
+
eq: "eq";
|
|
10018
|
+
neq: "neq";
|
|
10019
|
+
gt: "gt";
|
|
10020
|
+
gte: "gte";
|
|
10021
|
+
lt: "lt";
|
|
10022
|
+
lte: "lte";
|
|
10023
|
+
contains: "contains";
|
|
10024
|
+
}>;
|
|
10025
|
+
value: z.ZodUnion<readonly [z.ZodNumber, z.ZodString, z.ZodBoolean, z.ZodNull]>;
|
|
10026
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
10027
|
+
property: z.ZodLiteral<"status">;
|
|
10028
|
+
field_name: z.ZodString;
|
|
10029
|
+
operator: z.ZodEnum<{
|
|
10030
|
+
eq: "eq";
|
|
10031
|
+
neq: "neq";
|
|
10032
|
+
}>;
|
|
10033
|
+
value: z.ZodEnum<{
|
|
10034
|
+
completed: "completed";
|
|
10035
|
+
failed: "failed";
|
|
10036
|
+
no_result: "no_result";
|
|
10037
|
+
skipped: "skipped";
|
|
10038
|
+
}>;
|
|
10039
|
+
}, z.z.core.$strip>], "property">>;
|
|
10040
|
+
}, z.z.core.$strip>;
|
|
10041
|
+
}, z.z.core.$strip>>>;
|
|
10042
|
+
connector: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
10043
|
+
strategy: z.ZodDefault<z.ZodEnum<{
|
|
10044
|
+
first: "first";
|
|
10045
|
+
}>>;
|
|
10046
|
+
connections: z.ZodArray<z.ZodObject<{
|
|
10047
|
+
type: z.ZodLiteral<"vault">;
|
|
10048
|
+
connection: z.ZodString;
|
|
10049
|
+
}, z.z.core.$strip>>;
|
|
10050
|
+
}, z.z.core.$strip>>>;
|
|
10051
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
10052
|
+
input_fields: z.ZodOptional<z.ZodObject<{
|
|
10053
|
+
company_website_url: z.ZodDefault<z.ZodObject<{
|
|
10054
|
+
alias: z.ZodString;
|
|
10055
|
+
}, z.z.core.$strip>>;
|
|
10056
|
+
}, z.z.core.$strip>>;
|
|
10057
|
+
output_fields: z.ZodOptional<z.ZodObject<{
|
|
10058
|
+
crustdata_companyenrich_match: z.ZodDefault<z.ZodObject<{
|
|
10059
|
+
alias: z.ZodDefault<z.ZodString>;
|
|
10060
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
10061
|
+
}, z.z.core.$strip>>;
|
|
10062
|
+
}, z.z.core.$strip>>;
|
|
10063
|
+
}, z.z.core.$strip>>;
|
|
9878
10064
|
}, z.z.core.$strip>, z.ZodObject<{
|
|
9879
10065
|
pipe_id: z.ZodLiteral<"people:profile:workemail:crustdata@1">;
|
|
9880
10066
|
trigger: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -10537,6 +10723,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
10537
10723
|
"company:lookalikes:companyenrich@1": "company:lookalikes:companyenrich@1";
|
|
10538
10724
|
"company:match:logodev@1": "company:match:logodev@1";
|
|
10539
10725
|
"people:posts:crustdata@1": "people:posts:crustdata@1";
|
|
10726
|
+
"company:match:crustdata@1": "company:match:crustdata@1";
|
|
10540
10727
|
"people:profile:workemail:crustdata@1": "people:profile:workemail:crustdata@1";
|
|
10541
10728
|
"people:workemail:profileurl:waterfall@1": "people:workemail:profileurl:waterfall@1";
|
|
10542
10729
|
"people:identity:email:waterfall@1": "people:identity:email:waterfall@1";
|
|
@@ -10593,6 +10780,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
10593
10780
|
"company:lookalikes:companyenrich@1": "company:lookalikes:companyenrich@1";
|
|
10594
10781
|
"company:match:logodev@1": "company:match:logodev@1";
|
|
10595
10782
|
"people:posts:crustdata@1": "people:posts:crustdata@1";
|
|
10783
|
+
"company:match:crustdata@1": "company:match:crustdata@1";
|
|
10596
10784
|
"people:profile:workemail:crustdata@1": "people:profile:workemail:crustdata@1";
|
|
10597
10785
|
"people:workemail:profileurl:waterfall@1": "people:workemail:profileurl:waterfall@1";
|
|
10598
10786
|
"people:identity:email:waterfall@1": "people:identity:email:waterfall@1";
|
|
@@ -10825,6 +11013,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
10825
11013
|
"company:lookalikes:companyenrich@1": "company:lookalikes:companyenrich@1";
|
|
10826
11014
|
"company:match:logodev@1": "company:match:logodev@1";
|
|
10827
11015
|
"people:posts:crustdata@1": "people:posts:crustdata@1";
|
|
11016
|
+
"company:match:crustdata@1": "company:match:crustdata@1";
|
|
10828
11017
|
"people:profile:workemail:crustdata@1": "people:profile:workemail:crustdata@1";
|
|
10829
11018
|
"people:workemail:profileurl:waterfall@1": "people:workemail:profileurl:waterfall@1";
|
|
10830
11019
|
"people:identity:email:waterfall@1": "people:identity:email:waterfall@1";
|
|
@@ -10881,6 +11070,7 @@ export declare const SheetOperationPayloadSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
10881
11070
|
"company:lookalikes:companyenrich@1": "company:lookalikes:companyenrich@1";
|
|
10882
11071
|
"company:match:logodev@1": "company:match:logodev@1";
|
|
10883
11072
|
"people:posts:crustdata@1": "people:posts:crustdata@1";
|
|
11073
|
+
"company:match:crustdata@1": "company:match:crustdata@1";
|
|
10884
11074
|
"people:profile:workemail:crustdata@1": "people:profile:workemail:crustdata@1";
|
|
10885
11075
|
"people:workemail:profileurl:waterfall@1": "people:workemail:profileurl:waterfall@1";
|
|
10886
11076
|
"people:identity:email:waterfall@1": "people:identity:email:waterfall@1";
|
|
@@ -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[];
|
|
@@ -2224,6 +2232,7 @@ export declare const SearchResultFieldSchema: z.ZodObject<{
|
|
|
2224
2232
|
"company:lookalikes:companyenrich@1": "company:lookalikes:companyenrich@1";
|
|
2225
2233
|
"company:match:logodev@1": "company:match:logodev@1";
|
|
2226
2234
|
"people:posts:crustdata@1": "people:posts:crustdata@1";
|
|
2235
|
+
"company:match:crustdata@1": "company:match:crustdata@1";
|
|
2227
2236
|
"people:profile:workemail:crustdata@1": "people:profile:workemail:crustdata@1";
|
|
2228
2237
|
"people:workemail:profileurl:waterfall@1": "people:workemail:profileurl:waterfall@1";
|
|
2229
2238
|
"people:identity:email:waterfall@1": "people:identity:email:waterfall@1";
|
|
@@ -2435,6 +2444,7 @@ export declare const SearchResultSchema: z.ZodRecord<z.ZodString, z.ZodNullable<
|
|
|
2435
2444
|
"company:lookalikes:companyenrich@1": "company:lookalikes:companyenrich@1";
|
|
2436
2445
|
"company:match:logodev@1": "company:match:logodev@1";
|
|
2437
2446
|
"people:posts:crustdata@1": "people:posts:crustdata@1";
|
|
2447
|
+
"company:match:crustdata@1": "company:match:crustdata@1";
|
|
2438
2448
|
"people:profile:workemail:crustdata@1": "people:profile:workemail:crustdata@1";
|
|
2439
2449
|
"people:workemail:profileurl:waterfall@1": "people:workemail:profileurl:waterfall@1";
|
|
2440
2450
|
"people:identity:email:waterfall@1": "people:identity:email:waterfall@1";
|
|
@@ -2696,6 +2706,7 @@ export declare const SearchesResponseSchema: z.ZodObject<{
|
|
|
2696
2706
|
"company:lookalikes:companyenrich@1": "company:lookalikes:companyenrich@1";
|
|
2697
2707
|
"company:match:logodev@1": "company:match:logodev@1";
|
|
2698
2708
|
"people:posts:crustdata@1": "people:posts:crustdata@1";
|
|
2709
|
+
"company:match:crustdata@1": "company:match:crustdata@1";
|
|
2699
2710
|
"people:profile:workemail:crustdata@1": "people:profile:workemail:crustdata@1";
|
|
2700
2711
|
"people:workemail:profileurl:waterfall@1": "people:workemail:profileurl:waterfall@1";
|
|
2701
2712
|
"people:identity:email:waterfall@1": "people:identity:email:waterfall@1";
|
|
@@ -3410,6 +3421,7 @@ export declare const SearchesRequestSchema: z.ZodObject<{
|
|
|
3410
3421
|
exclude: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3411
3422
|
}, z.core.$strip>>;
|
|
3412
3423
|
current_employers: z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3424
|
+
current_employers_website_urls: z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3413
3425
|
current_job_titles: z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3414
3426
|
current_employers_linkedin_industries: z.ZodArray<z.ZodString> | z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3415
3427
|
years_at_current_company: z.ZodArray<z.ZodEnum<{
|
|
@@ -3417,6 +3429,7 @@ export declare const SearchesRequestSchema: z.ZodObject<{
|
|
|
3417
3429
|
}>> | z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3418
3430
|
[x: string]: string;
|
|
3419
3431
|
}>>>;
|
|
3432
|
+
previous_employers_website_urls: z.ZodArray<z.ZodString> | z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3420
3433
|
previous_seniority_levels: z.ZodDefault<z.ZodObject<{
|
|
3421
3434
|
include: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3422
3435
|
exclude: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
@@ -3972,6 +3985,8 @@ export declare function getSearchEntry(searchId: SearchId): {
|
|
|
3972
3985
|
certifications: never[];
|
|
3973
3986
|
honors: never[];
|
|
3974
3987
|
current_employers_linkedin_industries: never[];
|
|
3988
|
+
current_employers_website_urls: never[];
|
|
3989
|
+
previous_employers_website_urls: never[];
|
|
3975
3990
|
current_seniority_levels: {
|
|
3976
3991
|
include: never[];
|
|
3977
3992
|
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/dist/utils/schemas.d.ts
CHANGED
|
@@ -86,6 +86,7 @@ export declare const FieldNameSchema: z.ZodEnum<{
|
|
|
86
86
|
logodev_describe_match: "logodev_describe_match";
|
|
87
87
|
logo_url: "logo_url";
|
|
88
88
|
crustdata_company_match: "crustdata_company_match";
|
|
89
|
+
crustdata_companyenrich_match: "crustdata_companyenrich_match";
|
|
89
90
|
crustdata_person_match: "crustdata_person_match";
|
|
90
91
|
post_list_string: "post_list_string";
|
|
91
92
|
crustdata_post_list: "crustdata_post_list";
|
|
@@ -121,7 +122,7 @@ export declare const ProviderNameSchema: z.ZodEnum<{
|
|
|
121
122
|
companyenrich: "companyenrich";
|
|
122
123
|
logodev: "logodev";
|
|
123
124
|
}>;
|
|
124
|
-
export type ProviderRateLimitOperation = "pipe0_logic" | "pipe0_generic" | "pipe0-sheet-operation" | "pipe0_scraper" | "findymail_generic" | "findymail_email_lookup" | "findymail_email_b2b_lookup" | "findymail_phone_lookup" | "dropcontact_generic" | "hunter_generic" | "hunter_email_finder" | "hunter_email_enrichment" | "zerobounce_generic" | "millionverifier_generic" | "googlemaps_generic" | "gemini_25_flash_preview" | "gemini_20_flash" | "leadmagic_company_search" | "leadmagic_email_lookup" | "leadmagic_email_b2b_lookup" | "leadmagic_email_to_b2b_profile" | "leadmagic_personal_email_finder" | "leadmagic_mobile_number_lookup" | "leadmagic_company_funding" | "leadmagic_role_finder" | "contactout_generic" | "builtwith_generic" | "perplexity_generic" | "serper_search" | "clado_search_people" | "clado_contact_information" | "icypeas_scrape_profile" | "icypeas_lead_database" | "icypeas_company_database" | "icypeas_email_lookup" | "prospeo_phone_number_lookup" | "prospeo_social_profile_lookup" | "clado_social_profile_lookup" | "prospeo_email_lookup" | "resend_generic" | "slack_post_message" | "gmail_send_email" | "leadmagic_employee_finder" | "firecrawl_generic" | "firecrawl_map_requests" | "firecrawl_extract" | "exa_websets" | "openai_gpt-5" | "openai_gpt-5-mini" | "company_enrich_generic" | "logodev_describe" | "crustdata_company_db_search" | "crustdata_people_db_search" | "crustdata_realtime_post_fetch" | "crustdata_realtime_person_enrich";
|
|
125
|
+
export type ProviderRateLimitOperation = "pipe0_logic" | "pipe0_generic" | "pipe0-sheet-operation" | "pipe0_scraper" | "findymail_generic" | "findymail_email_lookup" | "findymail_email_b2b_lookup" | "findymail_phone_lookup" | "dropcontact_generic" | "hunter_generic" | "hunter_email_finder" | "hunter_email_enrichment" | "zerobounce_generic" | "millionverifier_generic" | "googlemaps_generic" | "gemini_25_flash_preview" | "gemini_20_flash" | "leadmagic_company_search" | "leadmagic_email_lookup" | "leadmagic_email_b2b_lookup" | "leadmagic_email_to_b2b_profile" | "leadmagic_personal_email_finder" | "leadmagic_mobile_number_lookup" | "leadmagic_company_funding" | "leadmagic_role_finder" | "contactout_generic" | "builtwith_generic" | "perplexity_generic" | "serper_search" | "clado_search_people" | "clado_contact_information" | "icypeas_scrape_profile" | "icypeas_lead_database" | "icypeas_company_database" | "icypeas_email_lookup" | "prospeo_phone_number_lookup" | "prospeo_social_profile_lookup" | "clado_social_profile_lookup" | "prospeo_email_lookup" | "resend_generic" | "slack_post_message" | "gmail_send_email" | "leadmagic_employee_finder" | "firecrawl_generic" | "firecrawl_map_requests" | "firecrawl_extract" | "exa_websets" | "openai_gpt-5" | "openai_gpt-5-mini" | "company_enrich_generic" | "logodev_describe" | "crustdata_company_db_search" | "crustdata_company_enrich" | "crustdata_people_db_search" | "crustdata_realtime_post_fetch" | "crustdata_realtime_person_enrich";
|
|
125
126
|
export type ProviderName = z.infer<typeof ProviderNameSchema>;
|
|
126
127
|
export type ExternalProviderName = Exclude<ProviderName, "pipe0">;
|
|
127
|
-
export type BillableOperation = "builtwith-get-financial-profile1" | "pipe0-get-company-identity" | "pipe0-get-company-news-summary" | "pipe0-get-company-overview" | "gemini-flash-latest-prompt" | "prospeo-get-work-email" | "leadmagic-get-work-email" | "icypeas-get-work-email" | "pipe0-get-website-url" | "pipe0-extract-json" | "pipe0-is-workemail-check" | "pipe0-join-name" | "pipe0-split-name" | "leadmagic-mobile-from-profile" | "leadmagic-mobile-from-workemail" | "prospeo-mobile-from-profile" | "clado-personal-email-from-profile" | "leadmagic-personal-email-from-profile" | "leadmagic-find-role" | "findymail-find-role" | "findymail-reverse-email-lookup" | "icypeas-get-professional-profile" | "prospeo-get-professional-profile" | "clado-get-professional-profile" | "leadmagic-profile-url-from-email" | "pipe0-get-profileurl-from-name" | "pipe0-split-name" | "zerobounce-validate-email" | "millionverifier-validate-email" | "builtwith-get-technology-stack" | "send-email-resend" | "gemini-flash-latest-write-email" | "gemini-flash-latest-write-message" | "openai-gpt-latest-write-message" | "openai-gpt-mini-latest-write-message" | "send-message-slack" | "findymail-get-work-email" | "findymail-mobile-from-profile" | "get-company-funding-leadmagic" | "template-fill" | "send-email-gmail" | "pipe0-field-or" | "firecrawl-website-scrape" | "firecrawl-list-url-scrape" | "firecrawl-website-extract" | "firecrawl-website-maplinks" | "openai-gpt-latest-write-email" | "openai-gpt-mini-latest-write-email" | "openai-gpt-latest-prompt" | "openai-gpt-mini-latest-prompt" | "contact-create-resend" | "sheets-append-pipe0" | "sheets-appendexpand-pipe0" | "companyenrich_lookalike_result" | "logodev-company-describe" | "crustdata-single-post-fetch" | "crustdata-reverse-email-lookup" | "crustdata-profile-from-workemail" | "crustdata-workemail-profileurl" | "leadmagic-workemail-profileurl" | "findymail-workemail-profileurl" | "hunter-workemail-profileurl" | "hunter-get-work-email" | "hunter-reverse-email-lookup" | "clado-mobile-from-profile" | "clado-workemail-profileurl";
|
|
128
|
+
export type BillableOperation = "builtwith-get-financial-profile1" | "pipe0-get-company-identity" | "pipe0-get-company-news-summary" | "pipe0-get-company-overview" | "gemini-flash-latest-prompt" | "prospeo-get-work-email" | "leadmagic-get-work-email" | "icypeas-get-work-email" | "pipe0-get-website-url" | "pipe0-extract-json" | "pipe0-is-workemail-check" | "pipe0-join-name" | "pipe0-split-name" | "leadmagic-mobile-from-profile" | "leadmagic-mobile-from-workemail" | "prospeo-mobile-from-profile" | "clado-personal-email-from-profile" | "leadmagic-personal-email-from-profile" | "leadmagic-find-role" | "findymail-find-role" | "findymail-reverse-email-lookup" | "icypeas-get-professional-profile" | "prospeo-get-professional-profile" | "clado-get-professional-profile" | "leadmagic-profile-url-from-email" | "pipe0-get-profileurl-from-name" | "pipe0-split-name" | "zerobounce-validate-email" | "millionverifier-validate-email" | "builtwith-get-technology-stack" | "send-email-resend" | "gemini-flash-latest-write-email" | "gemini-flash-latest-write-message" | "openai-gpt-latest-write-message" | "openai-gpt-mini-latest-write-message" | "send-message-slack" | "findymail-get-work-email" | "findymail-mobile-from-profile" | "get-company-funding-leadmagic" | "template-fill" | "send-email-gmail" | "pipe0-field-or" | "firecrawl-website-scrape" | "firecrawl-list-url-scrape" | "firecrawl-website-extract" | "firecrawl-website-maplinks" | "openai-gpt-latest-write-email" | "openai-gpt-mini-latest-write-email" | "openai-gpt-latest-prompt" | "openai-gpt-mini-latest-prompt" | "contact-create-resend" | "sheets-append-pipe0" | "sheets-appendexpand-pipe0" | "companyenrich_lookalike_result" | "logodev-company-describe" | "crustdata-single-post-fetch" | "crustdata-reverse-email-lookup" | "crustdata-profile-from-workemail" | "crustdata-workemail-profileurl" | "leadmagic-workemail-profileurl" | "findymail-workemail-profileurl" | "hunter-workemail-profileurl" | "hunter-get-work-email" | "hunter-reverse-email-lookup" | "clado-mobile-from-profile" | "clado-workemail-profileurl" | "crustdata_company_enrich";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pipe0/ops",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.9",
|
|
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.12"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@types/json-schema": "^7.0.15",
|