@pipe0/ops 0.0.8 → 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 +8 -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 +1244 -704
- 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 +3 -3
- 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 +498 -182
- 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/searches-catalog.d.ts +3 -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";
|
|
@@ -2232,6 +2232,7 @@ export declare const SearchResultFieldSchema: z.ZodObject<{
|
|
|
2232
2232
|
"company:lookalikes:companyenrich@1": "company:lookalikes:companyenrich@1";
|
|
2233
2233
|
"company:match:logodev@1": "company:match:logodev@1";
|
|
2234
2234
|
"people:posts:crustdata@1": "people:posts:crustdata@1";
|
|
2235
|
+
"company:match:crustdata@1": "company:match:crustdata@1";
|
|
2235
2236
|
"people:profile:workemail:crustdata@1": "people:profile:workemail:crustdata@1";
|
|
2236
2237
|
"people:workemail:profileurl:waterfall@1": "people:workemail:profileurl:waterfall@1";
|
|
2237
2238
|
"people:identity:email:waterfall@1": "people:identity:email:waterfall@1";
|
|
@@ -2443,6 +2444,7 @@ export declare const SearchResultSchema: z.ZodRecord<z.ZodString, z.ZodNullable<
|
|
|
2443
2444
|
"company:lookalikes:companyenrich@1": "company:lookalikes:companyenrich@1";
|
|
2444
2445
|
"company:match:logodev@1": "company:match:logodev@1";
|
|
2445
2446
|
"people:posts:crustdata@1": "people:posts:crustdata@1";
|
|
2447
|
+
"company:match:crustdata@1": "company:match:crustdata@1";
|
|
2446
2448
|
"people:profile:workemail:crustdata@1": "people:profile:workemail:crustdata@1";
|
|
2447
2449
|
"people:workemail:profileurl:waterfall@1": "people:workemail:profileurl:waterfall@1";
|
|
2448
2450
|
"people:identity:email:waterfall@1": "people:identity:email:waterfall@1";
|
|
@@ -2704,6 +2706,7 @@ export declare const SearchesResponseSchema: z.ZodObject<{
|
|
|
2704
2706
|
"company:lookalikes:companyenrich@1": "company:lookalikes:companyenrich@1";
|
|
2705
2707
|
"company:match:logodev@1": "company:match:logodev@1";
|
|
2706
2708
|
"people:posts:crustdata@1": "people:posts:crustdata@1";
|
|
2709
|
+
"company:match:crustdata@1": "company:match:crustdata@1";
|
|
2707
2710
|
"people:profile:workemail:crustdata@1": "people:profile:workemail:crustdata@1";
|
|
2708
2711
|
"people:workemail:profileurl:waterfall@1": "people:workemail:profileurl:waterfall@1";
|
|
2709
2712
|
"people:identity:email:waterfall@1": "people:identity:email:waterfall@1";
|
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",
|