@pipe0/base 0.1.3 → 0.1.5
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 +14 -0
- package/dist/index.d.mts +9 -2
- package/dist/index.mjs +3 -3
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @pipe0/ops
|
|
2
2
|
|
|
3
|
+
## 0.1.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 0920f95: Fix the `headcount` filter `path` in `companies:profiles:amplemarket@2` so the form binds to `config.filters.headcount` instead of the non-existent `config.filters.company_sizes` (`company_sizes` is the Amplemarket API field name, not the internal payload path).
|
|
8
|
+
|
|
9
|
+
## 0.1.4
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- dbfb6ac: feat: Add searchAll to client
|
|
14
|
+
- Updated dependencies [dbfb6ac]
|
|
15
|
+
- @pipe0/client@0.0.41
|
|
16
|
+
|
|
3
17
|
## 0.1.3
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/dist/index.d.mts
CHANGED
|
@@ -47484,7 +47484,10 @@ declare function fieldNameStr({
|
|
|
47484
47484
|
* `all`/`any` -> parenthesized infix with `AND`/`OR`
|
|
47485
47485
|
*/
|
|
47486
47486
|
declare function describeRequirement(r: Requirement): string;
|
|
47487
|
-
declare function requirementUnmetMessage(requirement: Requirement
|
|
47487
|
+
declare function requirementUnmetMessage(requirement: Requirement, pipe?: {
|
|
47488
|
+
pipeId?: PipeId;
|
|
47489
|
+
index?: number;
|
|
47490
|
+
}): string;
|
|
47488
47491
|
type AppError = {
|
|
47489
47492
|
code: string;
|
|
47490
47493
|
message: string;
|
|
@@ -47600,9 +47603,13 @@ declare const validationErrorMessages: {
|
|
|
47600
47603
|
message: string;
|
|
47601
47604
|
};
|
|
47602
47605
|
RequirementUnmet: ({
|
|
47603
|
-
requirement
|
|
47606
|
+
requirement,
|
|
47607
|
+
pipeId,
|
|
47608
|
+
index
|
|
47604
47609
|
}: {
|
|
47605
47610
|
requirement: Requirement;
|
|
47611
|
+
pipeId?: PipeId;
|
|
47612
|
+
index?: number;
|
|
47606
47613
|
}) => {
|
|
47607
47614
|
code: string;
|
|
47608
47615
|
message: string;
|