@pipe0/ops 0.0.3 → 0.0.4

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.
Files changed (34) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/dist/index.js +62 -65
  3. package/dist/pipes/catalog/entries/company-funding-leadmagic-1.d.ts +2 -2
  4. package/dist/pipes/catalog/entries/company-match-logodev-1.d.ts +1 -1
  5. package/dist/pipes/catalog/entries/company-newssummary-website-1.d.ts +1 -1
  6. package/dist/pipes/catalog/entries/company-overview-2.d.ts +1 -1
  7. package/dist/pipes/catalog/entries/company-techstack-builtwith-1.d.ts +2 -2
  8. package/dist/pipes/catalog/entries/company-websiteurl-email-1.d.ts +2 -2
  9. package/dist/pipes/catalog/entries/contact-create-resent-1.d.ts +1 -1
  10. package/dist/pipes/catalog/entries/deprecated/people-mobile-number-professional-profile-waterfall-1.d.ts +1 -1
  11. package/dist/pipes/catalog/entries/deprecated/people-mobile-number-work-email-waterfall-1.d.ts +1 -1
  12. package/dist/pipes/catalog/entries/email-send-gmail.d.ts +2 -2
  13. package/dist/pipes/catalog/entries/email-send-resend-1.d.ts +1 -1
  14. package/dist/pipes/catalog/entries/email-write-1.d.ts +1 -1
  15. package/dist/pipes/catalog/entries/fields-merge-1.d.ts +1 -1
  16. package/dist/pipes/catalog/entries/json-extract-1.d.ts +1 -1
  17. package/dist/pipes/catalog/entries/message-send-slack-1.d.ts +2 -2
  18. package/dist/pipes/catalog/entries/people-email-iswork-1.d.ts +2 -2
  19. package/dist/pipes/catalog/entries/people-match-role-waterfall-1.d.ts +1 -1
  20. package/dist/pipes/catalog/entries/people-name-join-1.d.ts +1 -1
  21. package/dist/pipes/catalog/entries/people-personalemail-profile-waterfall-1.d.ts +2 -2
  22. package/dist/pipes/catalog/entries/people-phone-profile-waterfall-1.d.ts +1 -1
  23. package/dist/pipes/catalog/entries/people-phone-workemail-waterfall-1.d.ts +1 -1
  24. package/dist/pipes/catalog/entries/people-workemail-waterfall-1.d.ts +1 -1
  25. package/dist/pipes/catalog/entries/sheet-expandappend-1.d.ts +1 -1
  26. package/dist/pipes/catalog/entries/website-extract-firecrawl-1.d.ts +1 -1
  27. package/dist/pipes/catalog/entries/website-maplinks-firecrawl-1.d.ts +1 -1
  28. package/dist/pipes/catalog/entries/website-scrape-firecrawl-1.d.ts +1 -1
  29. package/dist/pipes/catalog/entries/website-scrapelist-firecrawl-1.d.ts +1 -1
  30. package/dist/pipes/catalog/pipes-catalog.d.ts +70 -70
  31. package/dist/pipes/utils/schemas-primitives.d.ts +26 -6
  32. package/dist/pipes/utils/sheet-schemas-primitives.d.ts +10129 -0
  33. package/dist/searches/catalog/searches-catalog.d.ts +6 -6
  34. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @pipe0/ops
2
2
 
3
+ ## 0.0.4
4
+
5
+ ### Patch Changes
6
+
7
+ - 6aaf957: Add new pipes and readme
8
+
3
9
  ## 0.0.3
4
10
 
5
11
  ### Patch Changes
package/dist/index.js CHANGED
@@ -12867,7 +12867,9 @@ const FieldNameSchema = _enum(/* @__PURE__ */ "company_description.cleaned_compa
12867
12867
  "address_line_1",
12868
12868
  "zip_code",
12869
12869
  "percent"
12870
- ], RecordFieldFormatSchema = _enum(RECORD_FIELD_FORMATS).nullable(), JSONMetaSchema = object({
12870
+ ], RecordFieldFormatSchema = _enum(RECORD_FIELD_FORMATS);
12871
+ RecordFieldFormatSchema.nullable();
12872
+ const JSONMetaSchema = object({
12871
12873
  example_value: any().nullable(),
12872
12874
  schema: any().nullable()
12873
12875
  });
@@ -12903,7 +12905,7 @@ const WidgetsSchema = object({
12903
12905
  }), FieldAnnotationSchema = object({
12904
12906
  type: RecordFieldTypeSchema,
12905
12907
  label: string$1().nullable().optional(),
12906
- format: RecordFieldFormatSchema.optional(),
12908
+ format: RecordFieldFormatSchema.nullable().optional(),
12907
12909
  json_metadata: JSONMetaSchema.nullable().optional()
12908
12910
  }), FieldAnnotationsSchema = record(string$1(), FieldAnnotationSchema);
12909
12911
  var FieldProcessorSchema = _enum([...PIPE_IDS, "input"]).nullable(), FieldResolvedByRefSchema = _enum([
@@ -12927,7 +12929,7 @@ const RecordClaimedBySchema = object({
12927
12929
  claimed_by: RecordClaimedBySchema,
12928
12930
  resolved_by: RecordResolvedBySchema.nullable(),
12929
12931
  widgets: WidgetsSchema.optional(),
12930
- format: RecordFieldFormatSchema
12932
+ format: RecordFieldFormatSchema.nullable()
12931
12933
  }), ExpandedFieldValueSchema = object({
12932
12934
  value: FieldValueSchema,
12933
12935
  status: RecordFieldStatusSchema,
@@ -12951,14 +12953,14 @@ const RecordClaimedBySchema = object({
12951
12953
  config_hash: string$1().nullable(),
12952
12954
  pipe_index: number$1().nullable()
12953
12955
  }),
12954
- format: RecordFieldFormatSchema
12956
+ format: RecordFieldFormatSchema.nullable()
12955
12957
  }), PipesFieldDefinitionsSchema = record(string$1(), PipesFieldDefinitionSchema), JSONExtractSchema = object({
12956
12958
  field_name: string$1().min(1),
12957
12959
  extractions: array(object({
12958
12960
  path: string$1().min(1),
12959
12961
  output_field: object({
12960
12962
  name: string$1().min(1),
12961
- format: RecordFieldFormatSchema.default(null),
12963
+ format: RecordFieldFormatSchema.nullable().default(null),
12962
12964
  label: string$1().optional(),
12963
12965
  type: RecordFieldTypeSchema
12964
12966
  })
@@ -21101,8 +21103,8 @@ const CompanyFundingHistoryPipeClass1 = class extends Pipe {
21101
21103
  executionMode: "single",
21102
21104
  categories: ["company_data"],
21103
21105
  lifecycle: null,
21104
- description: "Get funding history of a company with detailed information on investors and size of rounds.",
21105
- tags: [CATALOG_TAGS.EMAIL],
21106
+ description: "Information on funding rounds, acquisition, competitors, and investors.",
21107
+ tags: [CATALOG_TAGS.FINANCIAL_DATA],
21106
21108
  docPath: "/resources/pipe-catalog/company:funding:leadmagic/1",
21107
21109
  billableOperations: BILLABLE_OPERATIONS$45,
21108
21110
  inputFieldMode: "static",
@@ -21144,7 +21146,7 @@ const CompanyFundingHistoryPipeClass1 = class extends Pipe {
21144
21146
  }
21145
21147
  }
21146
21148
  };
21147
- var companyName$4 = getField("company_name"), companyProfileUrl$2 = getField("company_profile_url"), companyWebsiteUrl$4 = getField("company_website_url"), cleanedCompanyName$1 = getField("cleaned_company_name");
21149
+ var companyName$4 = getField("company_name"), companyProfileUrl$3 = getField("company_profile_url"), companyWebsiteUrl$4 = getField("company_website_url"), cleanedCompanyName$1 = getField("cleaned_company_name");
21148
21150
  const pipeId$44 = "company:identity@2", PayloadSchema$51 = object({
21149
21151
  pipe_id: literal(pipeId$44),
21150
21152
  trigger: pipesTriggerInput(),
@@ -21152,7 +21154,7 @@ const pipeId$44 = "company:identity@2", PayloadSchema$51 = object({
21152
21154
  config: object({
21153
21155
  input_fields: inputFields(object({ [companyName$4.name]: pipesInputField({ fieldName: companyName$4.name }) })),
21154
21156
  output_fields: outputFields(object({
21155
- [companyProfileUrl$2.name]: pipesOutputField({ fieldName: companyProfileUrl$2.name }),
21157
+ [companyProfileUrl$3.name]: pipesOutputField({ fieldName: companyProfileUrl$3.name }),
21156
21158
  [cleanedCompanyName$1.name]: pipesOutputField({ fieldName: cleanedCompanyName$1.name }),
21157
21159
  [companyWebsiteUrl$4.name]: pipesOutputField({ fieldName: companyWebsiteUrl$4.name })
21158
21160
  }))
@@ -21186,7 +21188,7 @@ const CompanyIdentity2PipeClass = class extends Pipe {
21186
21188
  }
21187
21189
  getRawOutputFields() {
21188
21190
  return {
21189
- [companyProfileUrl$2.name]: this.catalogOutput(companyProfileUrl$2),
21191
+ [companyProfileUrl$3.name]: this.catalogOutput(companyProfileUrl$3),
21190
21192
  [companyWebsiteUrl$4.name]: this.catalogOutput(companyWebsiteUrl$4),
21191
21193
  [cleanedCompanyName$1.name]: this.catalogOutput(cleanedCompanyName$1)
21192
21194
  };
@@ -21424,7 +21426,7 @@ const CompanyMatchLogoDevPipeClass1 = class extends Pipe {
21424
21426
  executionMode: "single",
21425
21427
  categories: ["company_data"],
21426
21428
  lifecycle: null,
21427
- description: "Brand API returns company logos and data from domains. Get company logos, colors, social links via Logo API.",
21429
+ description: "Find brand data like logos, colors, and social links via the Logo.dev API.",
21428
21430
  tags: [CATALOG_TAGS.WEBSITE, CATALOG_TAGS.LINKEDIN],
21429
21431
  docPath: "/resources/pipe-catalog/company:match:logodev/2",
21430
21432
  billableOperations: BILLABLE_OPERATIONS$42,
@@ -21514,7 +21516,7 @@ const CompanyNewsSummaryWebsite1PipeClass = class extends Pipe {
21514
21516
  executionMode: "single",
21515
21517
  categories: ["company_data"],
21516
21518
  lifecycle: null,
21517
- description: "Find recent comapny news by doing a websearch and scrape.",
21519
+ description: "Find recent company news by performing a search and scrape.",
21518
21520
  tags: [CATALOG_TAGS.NEWS],
21519
21521
  docPath: "/resources/pipe-catalog/company:newssummary:website/1",
21520
21522
  billableOperations: BILLABLE_OPERATIONS$41,
@@ -21626,7 +21628,7 @@ const CompanyOverviewPipeClass2 = class extends Pipe {
21626
21628
  executionMode: "mix",
21627
21629
  categories: ["company_data"],
21628
21630
  lifecycle: null,
21629
- description: "Find high-level business and financial information like company description, estimated revenue, and headcount.",
21631
+ description: "Business description, industry, and financial information.",
21630
21632
  docPath: "/resources/pipe-catalog/company:overview/2",
21631
21633
  tags: [
21632
21634
  CATALOG_TAGS.WEBSITE,
@@ -21737,11 +21739,11 @@ const WebsiteGetTechnologiesStackBuiltWith1PipeClass = class extends Pipe {
21737
21739
  basePipe: getBasePipeName(pipeId$39),
21738
21740
  managedProviders: ["builtwith"],
21739
21741
  allowedUserConnectionProviders: ["builtwith"],
21740
- label: "Company tech stack",
21742
+ label: "Tech stack",
21741
21743
  executionMode: "single",
21742
21744
  categories: ["company_data"],
21743
21745
  lifecycle: null,
21744
- description: "Identifies all technologies and frameworks powering a given website.",
21746
+ description: "All technologies and frameworks powering a given website.",
21745
21747
  tags: [CATALOG_TAGS.WEBSITE],
21746
21748
  inputFieldMode: "static",
21747
21749
  outputFieldMode: "static",
@@ -21823,11 +21825,11 @@ const CompanyWebsiteUrlEmail1PipeClass = class extends Pipe {
21823
21825
  basePipe: getBasePipeName(pipeId$38),
21824
21826
  inputFieldMode: "static",
21825
21827
  outputFieldMode: "static",
21826
- label: "Website URL from email",
21828
+ label: "Website from email",
21827
21829
  executionMode: "single",
21828
21830
  categories: ["company_data"],
21829
21831
  lifecycle: null,
21830
- description: "Extract company website URL from a work email domain with a RegEx-based approach.",
21832
+ description: "Extract the company website URL from a work email address.",
21831
21833
  tags: [
21832
21834
  CATALOG_TAGS.EMAIL,
21833
21835
  CATALOG_TAGS.WORK_EMAIL,
@@ -21926,7 +21928,7 @@ const ActionAddContactResendPipeClass1 = class extends Pipe {
21926
21928
  executionMode: "single",
21927
21929
  categories: ["actions"],
21928
21930
  lifecycle: null,
21929
- description: "Create a contact inside a Resend audience",
21931
+ description: "Create a contact inside a Resend audience.",
21930
21932
  tags: [CATALOG_TAGS.EMAIL],
21931
21933
  docPath: "/resources/pipe-catalog/contact:create:resend/1",
21932
21934
  billableOperations: BILLABLE_OPERATIONS$37,
@@ -21956,7 +21958,7 @@ const ActionAddContactResendPipeClass1 = class extends Pipe {
21956
21958
  }
21957
21959
  }
21958
21960
  };
21959
- var companyName$3 = getField("company_name"), companyProfileUrl$1 = getField("company_social_url"), companyWebsiteUrl$3 = getField("company_website_url"), cleanedCompanyName = getField("cleaned_company_name");
21961
+ var companyName$3 = getField("company_name"), companyProfileUrl$2 = getField("company_social_url"), companyWebsiteUrl$3 = getField("company_website_url"), cleanedCompanyName = getField("cleaned_company_name");
21960
21962
  const pipeId$36 = "company:identity@1", PayloadSchema$43 = object({
21961
21963
  pipe_id: literal(pipeId$36),
21962
21964
  trigger: pipesTriggerInput(),
@@ -21964,7 +21966,7 @@ const pipeId$36 = "company:identity@1", PayloadSchema$43 = object({
21964
21966
  config: object({
21965
21967
  input_fields: inputFields(object({ [companyName$3.name]: pipesInputField({ fieldName: companyName$3.name }) })),
21966
21968
  output_fields: outputFields(object({
21967
- [companyProfileUrl$1.name]: pipesOutputField({ fieldName: companyProfileUrl$1.name }),
21969
+ [companyProfileUrl$2.name]: pipesOutputField({ fieldName: companyProfileUrl$2.name }),
21968
21970
  [cleanedCompanyName.name]: pipesOutputField({ fieldName: cleanedCompanyName.name }),
21969
21971
  [companyWebsiteUrl$3.name]: pipesOutputField({ fieldName: companyWebsiteUrl$3.name })
21970
21972
  }))
@@ -21998,7 +22000,7 @@ const CompanyIndentity1PipeClass = class extends Pipe {
21998
22000
  }
21999
22001
  getRawOutputFields() {
22000
22002
  return {
22001
- [companyProfileUrl$1.name]: this.catalogOutput(companyProfileUrl$1),
22003
+ [companyProfileUrl$2.name]: this.catalogOutput(companyProfileUrl$2),
22002
22004
  [companyWebsiteUrl$3.name]: this.catalogOutput(companyWebsiteUrl$3),
22003
22005
  [cleanedCompanyName.name]: this.catalogOutput(cleanedCompanyName)
22004
22006
  };
@@ -22418,7 +22420,7 @@ const PeopleMobileNumberProfessionalProfileWaterfall1PipeClass = class extends P
22418
22420
  deprecatedOn: "2025-11-01",
22419
22421
  replacedBy: "people:phone:profile:waterfall@1"
22420
22422
  },
22421
- description: "Find mobile phone number for any prospect using multiple data providers in a waterfall motion.",
22423
+ description: "Find a mobile phone number for any prospect using multiple data providers in a waterfall motion.",
22422
22424
  docPath: "/resources/pipe-catalog/people:mobilenumber:professionalprofile:waterfall/1",
22423
22425
  tags: [CATALOG_TAGS.PHONE, CATALOG_TAGS.WATERFALL],
22424
22426
  billableOperations: BILLABLE_OPERATIONS$33,
@@ -22502,7 +22504,7 @@ const PeopleMobileNumberWorkEmailWaterfall1PipeClass = class extends Pipe {
22502
22504
  deprecatedOn: "2025-11-01",
22503
22505
  replacedBy: "people:phone:workemail:waterfall@1"
22504
22506
  },
22505
- description: "Find mobile phone number for any prospect by using their work email address as input.",
22507
+ description: "Find a mobile phone number for any prospect by using their work email address as input.",
22506
22508
  tags: [CATALOG_TAGS.PHONE, CATALOG_TAGS.WATERFALL],
22507
22509
  docPath: "/resources/pipe-catalog/people:mobilenumber:workemail:waterfall/1",
22508
22510
  billableOperations: BILLABLE_OPERATIONS$32,
@@ -22964,11 +22966,11 @@ const ActionSendMailGmailPipeClass1 = class extends Pipe {
22964
22966
  }, ActionSendMailGmailPayloadSchema1 = PayloadSchema$34, ActionSendMailGmailEntry1 = {
22965
22967
  pipeId: pipeId$27,
22966
22968
  basePipe: getBasePipeName(pipeId$27),
22967
- label: "Send email with Gmail",
22969
+ label: "Send email",
22968
22970
  executionMode: "single",
22969
22971
  categories: ["actions"],
22970
22972
  lifecycle: null,
22971
- description: "Send email with Gmail",
22973
+ description: "Send an email with Gmail",
22972
22974
  tags: [CATALOG_TAGS.EMAIL],
22973
22975
  docPath: "/resources/pipe-catalog/email:send:gmail/1",
22974
22976
  billableOperations: BILLABLE_OPERATIONS$27,
@@ -23081,7 +23083,7 @@ const ActionSendMailResend1PipeClass = class extends Pipe {
23081
23083
  executionMode: "single",
23082
23084
  categories: ["actions"],
23083
23085
  lifecycle: null,
23084
- description: "Send email with Resend",
23086
+ description: "Send an email with Resend",
23085
23087
  tags: [CATALOG_TAGS.EMAIL],
23086
23088
  docPath: "/resources/pipe-catalog/email:send:resend/1",
23087
23089
  billableOperations: BILLABLE_OPERATIONS$26,
@@ -23592,7 +23594,7 @@ function parsePromptTemplate({ template: a, jsonSchemas: s = {}, supportedTags:
23592
23594
  if (!u.description || typeof u.description != "string" || u.description.length === 0) throw new PipelineValidationError([validationErrorMessages.MissingOutputFieldDescription({ outputName: c })]);
23593
23595
  let l;
23594
23596
  if (u.format) {
23595
- let a = RecordFieldFormatSchema.safeParse(u.format);
23597
+ let a = RecordFieldFormatSchema.nullable().safeParse(u.format);
23596
23598
  if (!a.success) throw new PipelineValidationError([validationErrorMessages.InvalidFormatTag({
23597
23599
  outputName: c,
23598
23600
  format: u.format
@@ -23844,7 +23846,7 @@ const EmailWrite1PipeClass = class extends Pipe {
23844
23846
  inputFieldMode: "config",
23845
23847
  outputFieldMode: "static",
23846
23848
  basePipe: getBasePipeName(pipeId$25),
23847
- label: "Mail writer",
23849
+ label: "Email writer",
23848
23850
  executionMode: "single",
23849
23851
  categories: ["tools"],
23850
23852
  lifecycle: null,
@@ -23960,7 +23962,7 @@ const FieldsOrPipeClass1 = class extends Pipe {
23960
23962
  executionMode: "single",
23961
23963
  categories: ["tools"],
23962
23964
  lifecycle: null,
23963
- description: "Join multiple fields into one fields. The final result will be the first defined field.",
23965
+ description: "Join multiple fields into one field. The final result will be the first defined field.",
23964
23966
  tags: [CATALOG_TAGS.FIELDS, CATALOG_TAGS.LOGIC],
23965
23967
  docPath: "/resources/pipe-catalog/fields:merge/1",
23966
23968
  defaultInputGroups: [],
@@ -24046,7 +24048,7 @@ const JSONExtract1PipeClass = class extends Pipe {
24046
24048
  executionMode: "single",
24047
24049
  categories: ["tools"],
24048
24050
  lifecycle: null,
24049
- description: "Extract nested JSON properteis into new output fields.",
24051
+ description: "Extract nested JSON properties into new output fields.",
24050
24052
  docPath: "/resources/pipe-catalog/json:extract/1",
24051
24053
  tags: [CATALOG_TAGS.JSON],
24052
24054
  managedProviders: ["pipe0"],
@@ -24120,11 +24122,11 @@ const MessageSendSlackPipeClass1 = class extends Pipe {
24120
24122
  }, MessageSendSlackPayloadSchema1 = PayloadSchema$29, MessageSendSlackEntry1 = {
24121
24123
  pipeId: pipeId$22,
24122
24124
  basePipe: getBasePipeName(pipeId$22),
24123
- label: "Send message with Slack",
24125
+ label: "Send message",
24124
24126
  executionMode: "single",
24125
24127
  categories: ["actions"],
24126
24128
  lifecycle: null,
24127
- description: "Send message to an authorized Slack channel.",
24129
+ description: "Send a Slack message to a channel by ID.",
24128
24130
  tags: [CATALOG_TAGS.CHAT],
24129
24131
  docPath: "/resources/pipe-catalog/message:send:slack/1",
24130
24132
  billableOperations: BILLABLE_OPERATIONS$22,
@@ -24352,11 +24354,11 @@ const PeopleIsWorkEmail1PipeClass = class extends Pipe {
24352
24354
  }
24353
24355
  }, PeopleIsWorkEmail1PayloadSchema = PayloadSchema$27, PeopleIsWorkEmail1Entry = {
24354
24356
  pipeId: pipeId$20,
24355
- label: "Check if work email",
24357
+ label: "Work email checker",
24356
24358
  executionMode: "single",
24357
24359
  categories: ["people_data"],
24358
24360
  lifecycle: null,
24359
- description: "Check if the email provider is part a large list of known providers for personal emails.",
24361
+ description: "Check if a given email address is personal or professional.",
24360
24362
  tags: [CATALOG_TAGS.EMAIL, CATALOG_TAGS.WORK_EMAIL],
24361
24363
  docPath: "/resources/pipe-catalog/people:email:iswork/1",
24362
24364
  billableOperations: BILLABLE_OPERATIONS$20,
@@ -24620,7 +24622,7 @@ const PeopleMatchRoleWaterfallPipeClass1 = class extends Pipe {
24620
24622
  executionMode: "waterfall",
24621
24623
  categories: ["people_data"],
24622
24624
  lifecycle: null,
24623
- description: "Retrieve information about a person that fills role at a provided company.",
24625
+ description: "Find role matches for a given companies like \"CEO\" or \"CFO\".",
24624
24626
  tags: [CATALOG_TAGS.PEOPLE_PROFILES],
24625
24627
  docPath: "/resources/pipe-catalog/people:match:role:waterfall/1",
24626
24628
  billableOperations: BILLABLE_OPERATIONS$17,
@@ -24700,7 +24702,7 @@ const PeopleJoinName1PipeClass = class extends Pipe {
24700
24702
  executionMode: "single",
24701
24703
  categories: ["people_data"],
24702
24704
  lifecycle: null,
24703
- description: "Combine the first and last name of a prospect into a full name field.",
24705
+ description: "Combine the first and last names of a prospect into a full name field.",
24704
24706
  tags: [CATALOG_TAGS.NAMES],
24705
24707
  docPath: "/resources/pipe-catalog/people:name:join/1",
24706
24708
  billableOperations: BILLABLE_OPERATIONS$16,
@@ -24885,17 +24887,12 @@ const PeoplePersonalEmailProfileWaterfall1PipeClass = class extends Pipe {
24885
24887
  basePipe: getBasePipeName(pipeId$14),
24886
24888
  allowedUserConnectionProviders: availableProviders,
24887
24889
  managedProviders: availableProviders,
24888
- label: "Personal email from LinkedIn",
24890
+ label: "Find personal email",
24889
24891
  executionMode: "waterfall",
24890
24892
  categories: ["people_data"],
24891
24893
  lifecycle: null,
24892
24894
  description: "Find the personal email address of a prospect by using a professional profile URL as input.",
24893
- tags: [
24894
- CATALOG_TAGS.EMAIL,
24895
- CATALOG_TAGS.PERSONAL_EMAIL,
24896
- CATALOG_TAGS.LINKEDIN,
24897
- CATALOG_TAGS.BETA
24898
- ],
24895
+ tags: [CATALOG_TAGS.EMAIL, CATALOG_TAGS.PERSONAL_EMAIL],
24899
24896
  docPath: "/resources/pipe-catalog/people:personalemail:profile:waterfall/1",
24900
24897
  billableOperations: BILLABLE_OPERATIONS$14,
24901
24898
  defaultInputGroups: getDefaultInputGroups$11(null),
@@ -25005,7 +25002,7 @@ const PeoplePhoneProfileWaterfall1PipeClass = class extends Pipe {
25005
25002
  executionMode: "waterfall",
25006
25003
  categories: ["people_data"],
25007
25004
  lifecycle: null,
25008
- description: "Find mobile phone number for any prospect using multiple data providers in a waterfall motion.",
25005
+ description: "Find a mobile phone number for any prospect using multiple data providers in a waterfall motion.",
25009
25006
  docPath: "/resources/pipe-catalog/people:phone:profile:waterfall/1",
25010
25007
  tags: [CATALOG_TAGS.PHONE, CATALOG_TAGS.WATERFALL],
25011
25008
  billableOperations: BILLABLE_OPERATIONS$13,
@@ -25086,7 +25083,7 @@ const PeoplePhoneWorkEmailWaterfall1PipeClass = class extends Pipe {
25086
25083
  executionMode: "waterfall",
25087
25084
  categories: ["people_data"],
25088
25085
  lifecycle: null,
25089
- description: "Find mobile phone number for any prospect by using their work email as input.",
25086
+ description: "Find a mobile phone number for any prospect by using their work email as input.",
25090
25087
  tags: [CATALOG_TAGS.PHONE, CATALOG_TAGS.WATERFALL],
25091
25088
  docPath: "/resources/pipe-catalog/people:phone:workemail:waterfall/1",
25092
25089
  billableOperations: BILLABLE_OPERATIONS$12,
@@ -25501,7 +25498,7 @@ const PoepleWorkEmailWaterfall1PipeClass = class extends Pipe {
25501
25498
  }, PoepleWorkEmailWaterfall1PayloadSchema = PayloadSchema$15, PeopleWorkEmailWaterfall1Module = {
25502
25499
  pipeId: pipeId$8,
25503
25500
  basePipe: getBasePipeName(pipeId$8),
25504
- label: "Work email",
25501
+ label: "Find work email",
25505
25502
  executionMode: "waterfall",
25506
25503
  categories: ["people_data"],
25507
25504
  lifecycle: null,
@@ -25892,7 +25889,7 @@ const SheetExpandAppendPipeClass1 = class extends Pipe {
25892
25889
  lifecycle: null,
25893
25890
  allowedUserConnectionProviders: ["pipe0"],
25894
25891
  managedProviders: [],
25895
- description: "Expand a list of nestes objects into sheet rows.",
25892
+ description: "Expand a list of nested objects into sheet rows.",
25896
25893
  docPath: "/resources/pipe-catalog/sheet:expandappend/1",
25897
25894
  tags: [CATALOG_TAGS.FIELDS],
25898
25895
  billableOperations: BILLABLE_OPERATIONS$5,
@@ -26083,7 +26080,7 @@ const WebsiteExtractFirecrawlPipeClass1 = class extends Pipe {
26083
26080
  executionMode: "single",
26084
26081
  categories: ["tools"],
26085
26082
  lifecycle: null,
26086
- description: "Perform advanced AI scraping to extract data from any website. Search on all subdomains and combine your scrape with web search.",
26083
+ description: "Perform advanced AI scraping to extract data from any website. Search all subdomains and combine scraped data with search results.",
26087
26084
  tags: [CATALOG_TAGS.SCRAPE],
26088
26085
  docPath: "/resources/pipe-catalog/website:extract:firecrawl/1",
26089
26086
  billableOperations: BILLABLE_OPERATIONS$3,
@@ -26202,7 +26199,7 @@ const WebsiteMappedLinksFireCrawlPipeClass1 = class extends Pipe {
26202
26199
  executionMode: "single",
26203
26200
  categories: ["tools"],
26204
26201
  lifecycle: null,
26205
- description: "Input a website and get all the internal urls on the website. Results do not include links to external pages.",
26202
+ description: "Input a website and get all internal URLs on the website. Results do not include links to external pages.",
26206
26203
  tags: [CATALOG_TAGS.SCRAPE],
26207
26204
  docPath: "/resources/pipe-catalog/website:maplinks:firecrawl/1",
26208
26205
  billableOperations: BILLABLE_OPERATIONS$2,
@@ -26295,7 +26292,7 @@ const WebsiteScrapeFireCrawlPipeClass1 = class extends Pipe {
26295
26292
  executionMode: "single",
26296
26293
  categories: ["tools"],
26297
26294
  lifecycle: null,
26298
- description: "Turn any url into clean data.",
26295
+ description: "Turn any URL into clean data.",
26299
26296
  tags: [CATALOG_TAGS.SCRAPE],
26300
26297
  docPath: "/resources/pipe-catalog/website:scrape:firecrawl/1",
26301
26298
  billableOperations: BILLABLE_OPERATIONS$1,
@@ -26417,7 +26414,7 @@ const WebsiteScrapeListFireCrawlPipeClass1 = class extends Pipe {
26417
26414
  executionMode: "single",
26418
26415
  categories: ["tools"],
26419
26416
  lifecycle: null,
26420
- description: "Turn a list of urls into clean scraped data.",
26417
+ description: "Turn a list of URLs into clean scraped data.",
26421
26418
  tags: [CATALOG_TAGS.SCRAPE],
26422
26419
  docPath: "/resources/pipe-catalog/website:scrapelist:firecrawl/1",
26423
26420
  billableOperations: BILLABLE_OPERATIONS,
@@ -26744,7 +26741,7 @@ var defaultGroupPathMatch$1 = {
26744
26741
  order: 99,
26745
26742
  label: "Conditions",
26746
26743
  iconKey: "workflow",
26747
- defaultExpand: !0
26744
+ defaultExpand: !1
26748
26745
  },
26749
26746
  "config.email": {
26750
26747
  order: 3,
@@ -26901,7 +26898,7 @@ const CompaniesProfilesExaClass1 = class extends Search {
26901
26898
  hasManagedConnection: !0,
26902
26899
  allowsUserConnection: !0,
26903
26900
  lifecycle: null,
26904
- description: "Perform detailed, complex company searches for queries that require a high level of accuracy.",
26901
+ description: "Semantic AI search to find company profiles. This search can take several minutes to complete.",
26905
26902
  tags: [CATALOG_TAGS.COMPANY_PROFILES],
26906
26903
  docPath: "/resources/search-catalog/companies:profiles:exa/1",
26907
26904
  cost: {
@@ -26954,7 +26951,7 @@ function isFiltersEmpty(a) {
26954
26951
  return c(a), s;
26955
26952
  }
26956
26953
  const searchId$5 = "companies:profiles:icypeas@1";
26957
- var companyIndustry = getField("company_industry"), companyName$1 = getField("company_name"), companyDescription = getField("company_description"), companyWebsiteUrl$2 = getField("company_website_url"), headcount = getField("headcount"), companyRegion = getField("company_region"), comapnyProfileUrl = getField("company_profile_url"), icypeasCompanyMatch = getField("icypeas_company_match"), limit$4 = 100;
26954
+ var companyIndustry = getField("company_industry"), companyName$1 = getField("company_name"), companyDescription = getField("company_description"), companyWebsiteUrl$2 = getField("company_website_url"), headcount = getField("headcount"), companyRegion = getField("company_region"), companyProfileUrl$1 = getField("company_profile_url"), icypeasCompanyMatch = getField("icypeas_company_match"), limit$4 = 100;
26958
26955
  const PayloadSchema$5 = object({
26959
26956
  search_id: literal(searchId$5),
26960
26957
  connector: OptionalConnectorSchema.nullable().optional(),
@@ -26976,7 +26973,7 @@ const PayloadSchema$5 = object({
26976
26973
  company_website_url: searchesOutputField({ fieldName: companyWebsiteUrl$2.name }),
26977
26974
  headcount: searchesOutputField({ fieldName: headcount.name }),
26978
26975
  company_region: searchesOutputField({ fieldName: companyRegion.name }),
26979
- company_profile_url: searchesOutputField({ fieldName: comapnyProfileUrl.name }),
26976
+ company_profile_url: searchesOutputField({ fieldName: companyProfileUrl$1.name }),
26980
26977
  icypeas_company_match: searchesOutputField({ fieldName: icypeasCompanyMatch.name })
26981
26978
  })),
26982
26979
  filters: object({
@@ -27109,7 +27106,7 @@ const CompaniesProfilesIcypeasClass1 = class extends Search {
27109
27106
  return {
27110
27107
  [companyName$1.name]: this.catalogOutput(companyName$1),
27111
27108
  [companyIndustry.name]: this.catalogOutput(companyIndustry),
27112
- [comapnyProfileUrl.name]: this.catalogOutput(comapnyProfileUrl),
27109
+ [companyProfileUrl$1.name]: this.catalogOutput(companyProfileUrl$1),
27113
27110
  [companyWebsiteUrl$2.name]: this.catalogOutput(companyWebsiteUrl$2),
27114
27111
  [companyDescription.name]: this.catalogOutput(companyDescription),
27115
27112
  [headcount.name]: this.catalogOutput(headcount),
@@ -27131,12 +27128,12 @@ const CompaniesProfilesIcypeasClass1 = class extends Search {
27131
27128
  }, CompaniesProfilesIcypeasPayloadSchema1 = PayloadSchema$5, CompaniesProfilesIcypeasEntry1 = {
27132
27129
  searchId: searchId$5,
27133
27130
  baseSearch: getBaseSearchName("companies:profiles:icypeas@1"),
27134
- label: "Find company profiles with Icypeas",
27131
+ label: "Find company profiles",
27135
27132
  categories: ["companies"],
27136
27133
  hasManagedConnection: !0,
27137
27134
  allowsUserConnection: !0,
27138
27135
  lifecycle: null,
27139
- description: "Icypeas offers a vast, general-purpose company database, allowing you to fetch company profiles at any quantity.",
27136
+ description: "Search a filter-based, general-purpose company database.",
27140
27137
  tags: [CATALOG_TAGS.COMPANY_PROFILES],
27141
27138
  docPath: "/resources/search-catalog/companies:profiles:icypeas/1",
27142
27139
  cost: {
@@ -27395,7 +27392,7 @@ const PeopleEmployeesLeadmagicClass1 = class extends Search {
27395
27392
  hasManagedConnection: !0,
27396
27393
  allowsUserConnection: !0,
27397
27394
  lifecycle: null,
27398
- description: "Search for employees of a given company using by the companies website URL.",
27395
+ description: "Search for employees of a company.",
27399
27396
  tags: [CATALOG_TAGS.PEOPLE_PROFILES],
27400
27397
  docPath: "/resources/search-catalog/people:employees:leadmagic/1",
27401
27398
  cost: {
@@ -27521,12 +27518,12 @@ const PeopleProfilesCladoClass2 = class extends Search {
27521
27518
  }, PeopleProfilesCladoPayloadSchema2 = PayloadSchema$2, PeopleProfilesCladoEntry2 = {
27522
27519
  searchId: searchId$2,
27523
27520
  baseSearch: getBaseSearchName("people:profiles:clado@2"),
27524
- label: "Find people profiles with Clado",
27521
+ label: "Find people profiles",
27525
27522
  categories: ["people"],
27526
27523
  hasManagedConnection: !0,
27527
27524
  allowsUserConnection: !0,
27528
27525
  lifecycle: null,
27529
- description: "Search through millions of LinkedIn profiles using natural language queries. This endpoint provides fast searching with AI-powered relevance matching.",
27526
+ description: "Search through millions of LinkedIn profiles using semantic queries.",
27530
27527
  tags: [CATALOG_TAGS.PEOPLE_PROFILES],
27531
27528
  docPath: "/resources/search-catalog/people:profiles:clado/1",
27532
27529
  cost: {
@@ -27635,13 +27632,13 @@ const PeopleProfilesExaClass1 = class extends Search {
27635
27632
  }
27636
27633
  }, PeopleProfilesExaPayloadSchema1 = PayloadSchema$1, PeopleProfilesExaEntry1 = {
27637
27634
  searchId: searchId$1,
27638
- baseSearch: getBaseSearchName("companies:profiles:exa@1"),
27635
+ baseSearch: getBaseSearchName("people:profiles:exa@1"),
27639
27636
  label: "People finder (websets)",
27640
27637
  categories: ["people"],
27641
27638
  hasManagedConnection: !0,
27642
27639
  allowsUserConnection: !0,
27643
27640
  lifecycle: null,
27644
- description: "Perform detailed, complex people searches for queries that require a high level of accuracy.",
27641
+ description: "Semantic AI search for people profiles. This search can take several minutes.",
27645
27642
  tags: [CATALOG_TAGS.COMPANY_PROFILES],
27646
27643
  docPath: "/resources/search-catalog/people:profiles:exa/1",
27647
27644
  cost: {
@@ -27861,12 +27858,12 @@ const PeopleProfilesIcypeasClass1 = class extends Search {
27861
27858
  searchId,
27862
27859
  provider: "icypeas",
27863
27860
  baseSearch: getBaseSearchName(searchId),
27864
- label: "Find lead profiles with Icypeas",
27861
+ label: "Find people profiles",
27865
27862
  categories: ["people"],
27866
27863
  hasManagedConnection: !0,
27867
27864
  allowsUserConnection: !0,
27868
27865
  lifecycle: null,
27869
- description: "Icypeas offers a vast, general-purpose lead database, allowing you to fetch lead profiles of any size.",
27866
+ description: "Search a filter-based, general-purpose lead database with people profiles.",
27870
27867
  tags: [CATALOG_TAGS.PEOPLE_PROFILES],
27871
27868
  docPath: "/resources/search-catalog/people:profiles:icypeas/1",
27872
27869
  cost: {
@@ -200,8 +200,8 @@ export declare const CompanyFundingHistory1Entry1: {
200
200
  readonly executionMode: "single";
201
201
  readonly categories: ["company_data"];
202
202
  readonly lifecycle: null;
203
- readonly description: "Get funding history of a company with detailed information on investors and size of rounds.";
204
- readonly tags: ["Email"];
203
+ readonly description: "Information on funding rounds, acquisition, competitors, and investors.";
204
+ readonly tags: ["Financial Data"];
205
205
  readonly docPath: "/resources/pipe-catalog/company:funding:leadmagic/1";
206
206
  readonly billableOperations: {
207
207
  readonly "get-company-funding-leadmagic": {
@@ -184,7 +184,7 @@ export declare const CompanyMatchLogoDevEntry1: {
184
184
  readonly executionMode: "single";
185
185
  readonly categories: ["company_data"];
186
186
  readonly lifecycle: null;
187
- readonly description: "Brand API returns company logos and data from domains. Get company logos, colors, social links via Logo API.";
187
+ readonly description: "Find brand data like logos, colors, and social links via the Logo.dev API.";
188
188
  readonly tags: string[];
189
189
  readonly docPath: "/resources/pipe-catalog/company:match:logodev/2";
190
190
  readonly billableOperations: {
@@ -159,7 +159,7 @@ export declare const CompanyNewsSummaryWebsite1Entry: {
159
159
  readonly executionMode: "single";
160
160
  readonly categories: ["company_data"];
161
161
  readonly lifecycle: null;
162
- readonly description: "Find recent comapny news by doing a websearch and scrape.";
162
+ readonly description: "Find recent company news by performing a search and scrape.";
163
163
  readonly tags: string[];
164
164
  readonly docPath: "/resources/pipe-catalog/company:newssummary:website/1";
165
165
  readonly billableOperations: {
@@ -214,7 +214,7 @@ export declare const CompanyOverviewEntry2: {
214
214
  readonly executionMode: "mix";
215
215
  readonly categories: ["company_data"];
216
216
  readonly lifecycle: null;
217
- readonly description: "Find high-level business and financial information like company description, estimated revenue, and headcount.";
217
+ readonly description: "Business description, industry, and financial information.";
218
218
  readonly docPath: "/resources/pipe-catalog/company:overview/2";
219
219
  readonly tags: string[];
220
220
  readonly allowedUserConnectionProviders: [];
@@ -188,11 +188,11 @@ export declare const WebsiteGetTechnologiesStackBuiltWith1Entry: {
188
188
  readonly basePipe: string;
189
189
  readonly managedProviders: ["builtwith"];
190
190
  readonly allowedUserConnectionProviders: ["builtwith"];
191
- readonly label: "Company tech stack";
191
+ readonly label: "Tech stack";
192
192
  readonly executionMode: "single";
193
193
  readonly categories: ["company_data"];
194
194
  readonly lifecycle: null;
195
- readonly description: "Identifies all technologies and frameworks powering a given website.";
195
+ readonly description: "All technologies and frameworks powering a given website.";
196
196
  readonly tags: ["Website"];
197
197
  readonly inputFieldMode: "static";
198
198
  readonly outputFieldMode: "static";
@@ -155,11 +155,11 @@ export declare const CompanyWebsiteUrlEmail1Entry: {
155
155
  readonly basePipe: string;
156
156
  readonly inputFieldMode: "static";
157
157
  readonly outputFieldMode: "static";
158
- readonly label: "Website URL from email";
158
+ readonly label: "Website from email";
159
159
  readonly executionMode: "single";
160
160
  readonly categories: ["company_data"];
161
161
  readonly lifecycle: null;
162
- readonly description: "Extract company website URL from a work email domain with a RegEx-based approach.";
162
+ readonly description: "Extract the company website URL from a work email address.";
163
163
  readonly tags: ["Email", "Work Email", "Website"];
164
164
  readonly docPath: "/resources/pipe-catalog/company:websiteurl:email/1";
165
165
  readonly allowedUserConnectionProviders: [];
@@ -172,7 +172,7 @@ export declare const ActionAddContactResendEntry1: {
172
172
  readonly executionMode: "single";
173
173
  readonly categories: ["actions"];
174
174
  readonly lifecycle: null;
175
- readonly description: "Create a contact inside a Resend audience";
175
+ readonly description: "Create a contact inside a Resend audience.";
176
176
  readonly tags: ["Email"];
177
177
  readonly docPath: "/resources/pipe-catalog/contact:create:resend/1";
178
178
  readonly billableOperations: {
@@ -192,7 +192,7 @@ export declare const PeopleMobileNumberProfessionalProfileWaterfall1Entry: {
192
192
  readonly deprecatedOn: "2025-11-01";
193
193
  readonly replacedBy: "people:phone:profile:waterfall@1";
194
194
  };
195
- readonly description: "Find mobile phone number for any prospect using multiple data providers in a waterfall motion.";
195
+ readonly description: "Find a mobile phone number for any prospect using multiple data providers in a waterfall motion.";
196
196
  readonly docPath: "/resources/pipe-catalog/people:mobilenumber:professionalprofile:waterfall/1";
197
197
  readonly tags: string[];
198
198
  readonly billableOperations: {
@@ -184,7 +184,7 @@ export declare const PeopleMobileNumberWorkEmailWaterfall1Entry: {
184
184
  readonly deprecatedOn: "2025-11-01";
185
185
  readonly replacedBy: "people:phone:workemail:waterfall@1";
186
186
  };
187
- readonly description: "Find mobile phone number for any prospect by using their work email address as input.";
187
+ readonly description: "Find a mobile phone number for any prospect by using their work email address as input.";
188
188
  readonly tags: string[];
189
189
  readonly docPath: "/resources/pipe-catalog/people:mobilenumber:workemail:waterfall/1";
190
190
  readonly billableOperations: {
@@ -172,11 +172,11 @@ export declare const ActionSendMailGmailPayloadSchema1: z.ZodObject<{
172
172
  export declare const ActionSendMailGmailEntry1: {
173
173
  readonly pipeId: "email:send:gmail@1";
174
174
  readonly basePipe: string;
175
- readonly label: "Send email with Gmail";
175
+ readonly label: "Send email";
176
176
  readonly executionMode: "single";
177
177
  readonly categories: ["actions"];
178
178
  readonly lifecycle: null;
179
- readonly description: "Send email with Gmail";
179
+ readonly description: "Send an email with Gmail";
180
180
  readonly tags: ["Email"];
181
181
  readonly docPath: "/resources/pipe-catalog/email:send:gmail/1";
182
182
  readonly billableOperations: {
@@ -178,7 +178,7 @@ export declare const ActionSendMailResend1Entry: {
178
178
  readonly executionMode: "single";
179
179
  readonly categories: ["actions"];
180
180
  readonly lifecycle: null;
181
- readonly description: "Send email with Resend";
181
+ readonly description: "Send an email with Resend";
182
182
  readonly tags: ["Email"];
183
183
  readonly docPath: "/resources/pipe-catalog/email:send:resend/1";
184
184
  readonly billableOperations: {
@@ -205,7 +205,7 @@ export declare const EmailWrite1Entry: {
205
205
  readonly inputFieldMode: "config";
206
206
  readonly outputFieldMode: "static";
207
207
  readonly basePipe: string;
208
- readonly label: "Mail writer";
208
+ readonly label: "Email writer";
209
209
  readonly executionMode: "single";
210
210
  readonly categories: ["tools"];
211
211
  readonly lifecycle: null;