@onereach/types-contacts-api 4.9.2-beta.2345.0 → 4.10.0
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/cjs/index.d.ts +3 -6
- package/dist/esm/index.d.ts +3 -6
- package/package.json +3 -2
package/dist/cjs/index.d.ts
CHANGED
|
@@ -61,12 +61,12 @@ export interface CreateMultipleContactsDto {
|
|
|
61
61
|
contacts: ContactRequestDto[];
|
|
62
62
|
}
|
|
63
63
|
export interface DeleteContactMultiParamsDto extends DeleteContactParamsDto {
|
|
64
|
-
ids
|
|
65
|
-
|
|
66
|
-
all?: true;
|
|
64
|
+
ids: string[];
|
|
65
|
+
batchId?: string;
|
|
67
66
|
}
|
|
68
67
|
export interface DeleteContactParamsDto {
|
|
69
68
|
contact_book?: string;
|
|
69
|
+
notifyEventProxy?: boolean;
|
|
70
70
|
}
|
|
71
71
|
export interface FindAllParamsDto extends ReturnType<typeof OmitType<ContactSearchParamsDto, 'order' | 'take' | 'skip'>> {
|
|
72
72
|
size?: number;
|
|
@@ -246,9 +246,6 @@ export interface CreateSchemaPresetDto {
|
|
|
246
246
|
label: string;
|
|
247
247
|
fieldSchemas?: FieldSchemaResponseDto[];
|
|
248
248
|
}
|
|
249
|
-
export interface PresetSearchParamsDto extends ReturnType<typeof IntersectionType<OrderParams, ListApiParams>> {
|
|
250
|
-
ids?: string[];
|
|
251
|
-
}
|
|
252
249
|
export interface SchemaPresetListDto extends ListApiResponse {
|
|
253
250
|
items: SchemaPresetResponseDto[];
|
|
254
251
|
}
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -61,12 +61,12 @@ export interface CreateMultipleContactsDto {
|
|
|
61
61
|
contacts: ContactRequestDto[];
|
|
62
62
|
}
|
|
63
63
|
export interface DeleteContactMultiParamsDto extends DeleteContactParamsDto {
|
|
64
|
-
ids
|
|
65
|
-
|
|
66
|
-
all?: true;
|
|
64
|
+
ids: string[];
|
|
65
|
+
batchId?: string;
|
|
67
66
|
}
|
|
68
67
|
export interface DeleteContactParamsDto {
|
|
69
68
|
contact_book?: string;
|
|
69
|
+
notifyEventProxy?: boolean;
|
|
70
70
|
}
|
|
71
71
|
export interface FindAllParamsDto extends ReturnType<typeof OmitType<ContactSearchParamsDto, 'order' | 'take' | 'skip'>> {
|
|
72
72
|
size?: number;
|
|
@@ -246,9 +246,6 @@ export interface CreateSchemaPresetDto {
|
|
|
246
246
|
label: string;
|
|
247
247
|
fieldSchemas?: FieldSchemaResponseDto[];
|
|
248
248
|
}
|
|
249
|
-
export interface PresetSearchParamsDto extends ReturnType<typeof IntersectionType<OrderParams, ListApiParams>> {
|
|
250
|
-
ids?: string[];
|
|
251
|
-
}
|
|
252
249
|
export interface SchemaPresetListDto extends ListApiResponse {
|
|
253
250
|
items: SchemaPresetResponseDto[];
|
|
254
251
|
}
|
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": "4.
|
|
4
|
+
"version": "4.10.0",
|
|
5
5
|
"author": "OneReach.ai",
|
|
6
6
|
"main": "dist/cjs/index.js",
|
|
7
7
|
"module": "dist/esm/index.js",
|
|
@@ -22,5 +22,6 @@
|
|
|
22
22
|
"rimraf": "5.0.1",
|
|
23
23
|
"ts-morph": "17.0.1",
|
|
24
24
|
"ts-node": "10.9.1"
|
|
25
|
-
}
|
|
25
|
+
},
|
|
26
|
+
"gitHead": "b913a165298229042a31a169b848d94d16d75c46"
|
|
26
27
|
}
|