@pipe0/ops 0.0.13 → 0.0.14
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 +6 -0
- package/README.md +1 -1
- package/dist/fields/field-catalog.d.ts +8 -4
- package/dist/fields/json-meta/fields/clado-person-match-v2.d.ts +2 -2
- package/dist/fields/json-meta/fields/crustdata-person-match.d.ts +1 -0
- package/dist/form-generation/fields.d.ts +1 -1
- package/dist/index.js +115 -102
- package/dist/pipes/catalog/entries/company-funding-leadmagic-1.d.ts +1 -1
- package/dist/pipes/catalog/entries/company-identity-2.d.ts +1 -1
- package/dist/pipes/catalog/entries/company-lookalikes-companyenrich-1.d.ts +1 -1
- package/dist/pipes/catalog/entries/company-match-crustdata-1.d.ts +1 -1
- package/dist/pipes/catalog/entries/company-match-logodev-1.d.ts +1 -1
- package/dist/pipes/catalog/entries/company-newssummary-website-1.d.ts +1 -1
- package/dist/pipes/catalog/entries/company-overview-2.d.ts +1 -1
- package/dist/pipes/catalog/entries/company-techstack-builtwith-1.d.ts +1 -1
- package/dist/pipes/catalog/entries/company-websiteurl-email-1.d.ts +1 -1
- package/dist/pipes/catalog/entries/contact-create-resent-1.d.ts +1 -1
- package/dist/pipes/catalog/entries/email-send-gmail.d.ts +1 -1
- package/dist/pipes/catalog/entries/email-send-resend-1.d.ts +1 -1
- package/dist/pipes/catalog/entries/email-write-1.d.ts +1 -1
- package/dist/pipes/catalog/entries/field-domainify-1.d.ts +1 -1
- package/dist/pipes/catalog/entries/field-slugify-1.d.ts +1 -1
- package/dist/pipes/catalog/entries/fields-merge-1.d.ts +1 -1
- package/dist/pipes/catalog/entries/json-extract-1.d.ts +1 -1
- package/dist/pipes/catalog/entries/message-send-slack-1.d.ts +1 -1
- package/dist/pipes/catalog/entries/message-write-1.d.ts +1 -1
- package/dist/pipes/catalog/entries/people-email-iswork-1.d.ts +1 -1
- package/dist/pipes/catalog/entries/people-email-validate-millionverifier-1.d.ts +1 -1
- package/dist/pipes/catalog/entries/people-email-validate-zerobounce-2.d.ts +1 -1
- package/dist/pipes/catalog/entries/people-identity-amplemarket-1.d.ts +1 -1
- package/dist/pipes/catalog/entries/people-identity-email-waterfall-1.d.ts +1 -1
- package/dist/pipes/catalog/entries/people-match-amplemarket-1.d.ts +1 -1
- package/dist/pipes/catalog/entries/people-match-role-waterfall-1.d.ts +1 -1
- package/dist/pipes/catalog/entries/people-name-join-1.d.ts +1 -1
- package/dist/pipes/catalog/entries/people-name-split-1.d.ts +1 -1
- package/dist/pipes/catalog/entries/people-personalemail-profile-waterfall-1.d.ts +1 -1
- package/dist/pipes/catalog/entries/people-phone-profile-waterfall-1.d.ts +1 -1
- package/dist/pipes/catalog/entries/people-phone-workemail-waterfall-1.d.ts +1 -1
- package/dist/pipes/catalog/entries/people-posts-crustdata-1.d.ts +1 -1
- package/dist/pipes/catalog/entries/people-profile-waterfall-1.d.ts +1 -1
- package/dist/pipes/catalog/entries/people-profile-workemail-curstdata-1.d.ts +1 -1
- package/dist/pipes/catalog/entries/people-profileurl-email-waterfall-1.d.ts +1 -1
- package/dist/pipes/catalog/entries/people-profileurl-name-1.d.ts +1 -1
- package/dist/pipes/catalog/entries/people-workemail-profileurl-waterfall-1.d.ts +1 -1
- package/dist/pipes/catalog/entries/people-workemail-waterfall-1.d.ts +1 -1
- package/dist/pipes/catalog/entries/prompt-run-1.d.ts +1 -1
- package/dist/pipes/catalog/entries/sheet-row-append-1.d.ts +1 -1
- package/dist/pipes/catalog/entries/sheet-row-append-sheet-1.d.ts +1 -1
- package/dist/pipes/catalog/entries/sheet-row-expandappend-1.d.ts +1 -1
- package/dist/pipes/catalog/entries/template-fill-1.d.ts +1 -1
- package/dist/pipes/catalog/entries/website-extract-firecrawl-1.d.ts +1 -1
- package/dist/pipes/catalog/entries/website-maplinks-firecrawl-1.d.ts +1 -1
- package/dist/pipes/catalog/entries/website-scrape-firecrawl-1.d.ts +1 -1
- package/dist/pipes/catalog/entries/website-scrapelist-firecrawl-1.d.ts +1 -1
- package/dist/pipes/catalog/pipe.d.ts +4 -2
- package/dist/pipes/catalog/pipes-catalog.d.ts +94 -94
- package/dist/pipes/catalog/utils/index.d.ts +1 -0
- package/dist/searches/catalog/entries/{people-profiles-clado-2.d.ts → deprecated/people-profiles-clado-2.d.ts} +10 -7
- package/dist/searches/catalog/searches-catalog.d.ts +12 -6
- package/dist/searches/catalog/utils/index.d.ts +2 -1
- package/package.json +1 -1
|
@@ -375,6 +375,7 @@ export declare function markRecordFieldAsProcessing(field: RecordField): {
|
|
|
375
375
|
} | undefined;
|
|
376
376
|
};
|
|
377
377
|
export declare function getBasePipeName(pipeId: string): string;
|
|
378
|
+
export declare function getPipeDocsURI(pipeId: string): string;
|
|
378
379
|
export declare function catalogInput(field: NamedFieldEntry, config: {
|
|
379
380
|
input_fields?: Record<string, {
|
|
380
381
|
alias?: string | undefined;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { z, ZodType } from "zod";
|
|
2
|
-
import type { PipeConnectionRequirement, SearchOutputField } from "
|
|
3
|
-
import type { SearchId } from "
|
|
4
|
-
import type { DedupConfig } from "
|
|
5
|
-
import { Search } from "
|
|
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
6
|
export declare const searchId = "people:profiles:clado@2";
|
|
7
7
|
declare const PayloadSchema: z.ZodObject<{
|
|
8
8
|
search_id: z.ZodLiteral<"people:profiles:clado@2">;
|
|
@@ -111,12 +111,15 @@ export declare const PeopleProfilesCladoEntry2: {
|
|
|
111
111
|
searchId: "people:profiles:clado@2";
|
|
112
112
|
baseSearch: string;
|
|
113
113
|
label: string;
|
|
114
|
-
categories: "
|
|
114
|
+
categories: "deprecated"[];
|
|
115
115
|
hasManagedConnection: true;
|
|
116
116
|
allowsUserConnection: true;
|
|
117
|
-
lifecycle:
|
|
117
|
+
lifecycle: {
|
|
118
|
+
deprecatedOn: string;
|
|
119
|
+
replacedBy: "people:profiles:clado@2";
|
|
120
|
+
};
|
|
118
121
|
description: string;
|
|
119
|
-
tags:
|
|
122
|
+
tags: never[];
|
|
120
123
|
docPath: string;
|
|
121
124
|
cost: {
|
|
122
125
|
mode: "per_page";
|
|
@@ -1127,12 +1127,15 @@ export declare const searchCatalog: {
|
|
|
1127
1127
|
searchId: "people:profiles:clado@2";
|
|
1128
1128
|
baseSearch: string;
|
|
1129
1129
|
label: string;
|
|
1130
|
-
categories: "
|
|
1130
|
+
categories: "deprecated"[];
|
|
1131
1131
|
hasManagedConnection: true;
|
|
1132
1132
|
allowsUserConnection: true;
|
|
1133
|
-
lifecycle:
|
|
1133
|
+
lifecycle: {
|
|
1134
|
+
deprecatedOn: string;
|
|
1135
|
+
replacedBy: "people:profiles:clado@2";
|
|
1136
|
+
};
|
|
1134
1137
|
description: string;
|
|
1135
|
-
tags:
|
|
1138
|
+
tags: never[];
|
|
1136
1139
|
docPath: string;
|
|
1137
1140
|
cost: {
|
|
1138
1141
|
mode: "per_page";
|
|
@@ -3793,12 +3796,15 @@ export declare function getSearchEntry(searchId: SearchId): {
|
|
|
3793
3796
|
searchId: "people:profiles:clado@2";
|
|
3794
3797
|
baseSearch: string;
|
|
3795
3798
|
label: string;
|
|
3796
|
-
categories: "
|
|
3799
|
+
categories: "deprecated"[];
|
|
3797
3800
|
hasManagedConnection: true;
|
|
3798
3801
|
allowsUserConnection: true;
|
|
3799
|
-
lifecycle:
|
|
3802
|
+
lifecycle: {
|
|
3803
|
+
deprecatedOn: string;
|
|
3804
|
+
replacedBy: "people:profiles:clado@2";
|
|
3805
|
+
};
|
|
3800
3806
|
description: string;
|
|
3801
|
-
tags:
|
|
3807
|
+
tags: never[];
|
|
3802
3808
|
docPath: string;
|
|
3803
3809
|
cost: {
|
|
3804
3810
|
mode: "per_page";
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
export
|
|
1
|
+
export declare function getBaseSearchName(searchId: string): string;
|
|
2
|
+
export declare function getSearchDocsURI(searchId: string): string;
|