@onereach/types-contacts-api 3.1.1-beta.1978.0 → 3.1.2
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/dist/index.ts +0 -11
- package/package.json +3 -2
package/dist/index.ts
CHANGED
|
@@ -54,7 +54,6 @@ export interface ContactSearchParamsDto extends ReturnType<typeof IntersectionTy
|
|
|
54
54
|
q?: string;
|
|
55
55
|
filter?: string | DynamicFilterDto;
|
|
56
56
|
contactIds?: string[];
|
|
57
|
-
projection?: string[];
|
|
58
57
|
}
|
|
59
58
|
|
|
60
59
|
export interface OrderParams {
|
|
@@ -86,16 +85,6 @@ export interface DeleteContactParamsDto {
|
|
|
86
85
|
contact_book: string;
|
|
87
86
|
}
|
|
88
87
|
|
|
89
|
-
export interface FindAllParamsDto extends ReturnType<typeof OmitType<ContactSearchParamsDto, 'order' | 'take' | 'skip'>> {
|
|
90
|
-
size?: number;
|
|
91
|
-
from?: number;
|
|
92
|
-
orderProperty?: string;
|
|
93
|
-
orderDirection?: OrderDirection;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
export type OrderDirection = 'asc' | 'desc';
|
|
97
|
-
export type OrderType = { by: string; order: 'asc' | 'desc'; };
|
|
98
|
-
|
|
99
88
|
export interface LinkContactMultiParamsDto {
|
|
100
89
|
ids: string[];
|
|
101
90
|
contact_books: string[];
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@onereach/types-contacts-api",
|
|
3
3
|
"description": "Generated types for Contacts Api",
|
|
4
|
-
"version": "3.1.
|
|
4
|
+
"version": "3.1.2",
|
|
5
5
|
"author": "OneReach.ai",
|
|
6
6
|
"main": "./dist/index.ts",
|
|
7
7
|
"publishConfig": {
|
|
@@ -14,5 +14,6 @@
|
|
|
14
14
|
"@types/node": "^18.11.10",
|
|
15
15
|
"ts-morph": "^17.0.1",
|
|
16
16
|
"ts-node": "^10.9.1"
|
|
17
|
-
}
|
|
17
|
+
},
|
|
18
|
+
"gitHead": "5ca9265d16ffa4c3da8f9cf7a1faef013bc6f7b9"
|
|
18
19
|
}
|