@pipe0/ops 0.0.8 → 0.0.10
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 +1496 -0
- package/dist/fields/json-meta/fields/amplemarket-person-match.d.ts +412 -0
- package/dist/fields/json-meta/fields/crustdata-companyenrich-match.d.ts +139 -0
- package/dist/form-generation/fields.d.ts +5 -5
- package/dist/index.d.ts +1 -0
- package/dist/index.js +2542 -876
- 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/field-domainify-1.d.ts +207 -0
- package/dist/pipes/catalog/entries/field-slugify-1.d.ts +207 -0
- package/dist/pipes/catalog/entries/people-email-iswork-1.d.ts +3 -3
- package/dist/pipes/catalog/entries/people-identity-amplemarket-1.d.ts +208 -0
- 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/entries/{sheet-append-1.d.ts → sheet-row-append-1.d.ts} +6 -6
- package/dist/pipes/catalog/entries/sheet-row-append-sheet-1.d.ts +217 -0
- package/dist/pipes/catalog/entries/{sheet-expandappend-1.d.ts → sheet-row-expandappend-1.d.ts} +5 -5
- package/dist/pipes/catalog/pipe.d.ts +688 -3
- package/dist/pipes/catalog/pipes-catalog.d.ts +1925 -301
- package/dist/pipes/catalog/utils/get-pipe-instances.d.ts +2 -2
- package/dist/pipes/catalog/utils/index.d.ts +33 -33
- package/dist/pipes/pipes-validator/transform-into-response.d.ts +5 -0
- package/dist/pipes/providers/provider-catalog.d.ts +12 -0
- package/dist/pipes/providers/provider-utils.d.ts +35 -23
- package/dist/pipes/utils/pipes-utils.d.ts +30 -30
- package/dist/pipes/utils/schemas-primitives.d.ts +107 -27
- package/dist/pipes/utils/sheet-schemas-primitives.d.ts +1042 -62
- package/dist/searches/catalog/searches-catalog.d.ts +30 -6
- package/dist/test/setup.d.ts +1 -0
- package/dist/utils/connection-id.d.ts +1 -1
- package/dist/utils/extend-zod.d.ts +1 -0
- package/dist/utils/schemas.d.ts +11 -2
- package/package.json +5 -5
- package/dist/api/core-client.types.d.ts +0 -9259
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @pipe0/ops
|
|
2
2
|
|
|
3
|
+
## 0.0.10
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 669fc82: Change pipe names and add amplemarket
|
|
8
|
+
- Updated dependencies [669fc82]
|
|
9
|
+
- @pipe0/client@0.0.13
|
|
10
|
+
|
|
11
|
+
## 0.0.9
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 27042ae: Add new company enrich pipe
|
|
16
|
+
- Updated dependencies [27042ae]
|
|
17
|
+
- @pipe0/client@0.0.12
|
|
18
|
+
|
|
3
19
|
## 0.0.8
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|