@onereach/types-contacts-api 5.39.5 → 5.39.6-beta.3749.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.
@@ -178,6 +178,7 @@ export interface ContactBookListDto extends ListApiResponse {
178
178
  }
179
179
  export interface ContactBookParamsDto extends ReturnType<typeof IntersectionType<OrderParams, ListApiParams>> {
180
180
  q?: string;
181
+ includeContactsCount?: boolean;
181
182
  }
182
183
  export interface ContactBookResponseDto extends CreateContactBookDto {
183
184
  id: string;
@@ -202,6 +203,9 @@ export interface CreateContactBookDto {
202
203
  fieldSchemas: ContactBookFieldSchemaDto[];
203
204
  schemaPresets?: SchemaPresetResponseDto[];
204
205
  }
206
+ export interface GetContactBookQueryDto {
207
+ includeContactsCount?: boolean;
208
+ }
205
209
  export interface UpdateContactBookDto extends ReturnType<typeof PartialType<CreateContactBookDto>> {
206
210
  }
207
211
  export interface CrossAccountMetaDto {
@@ -178,6 +178,7 @@ export interface ContactBookListDto extends ListApiResponse {
178
178
  }
179
179
  export interface ContactBookParamsDto extends ReturnType<typeof IntersectionType<OrderParams, ListApiParams>> {
180
180
  q?: string;
181
+ includeContactsCount?: boolean;
181
182
  }
182
183
  export interface ContactBookResponseDto extends CreateContactBookDto {
183
184
  id: string;
@@ -202,6 +203,9 @@ export interface CreateContactBookDto {
202
203
  fieldSchemas: ContactBookFieldSchemaDto[];
203
204
  schemaPresets?: SchemaPresetResponseDto[];
204
205
  }
206
+ export interface GetContactBookQueryDto {
207
+ includeContactsCount?: boolean;
208
+ }
205
209
  export interface UpdateContactBookDto extends ReturnType<typeof PartialType<CreateContactBookDto>> {
206
210
  }
207
211
  export interface CrossAccountMetaDto {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onereach/types-contacts-api",
3
- "version": "5.39.5",
3
+ "version": "5.39.6-beta.3749.0",
4
4
  "description": "Generated types for Contacts Api",
5
5
  "author": "OneReach.ai",
6
6
  "main": "dist/cjs/index.js",
@@ -24,6 +24,5 @@
24
24
  },
25
25
  "publishConfig": {
26
26
  "access": "public"
27
- },
28
- "gitHead": "b2e44bfabf45558054351f9c10a4985f96d4cd34"
27
+ }
29
28
  }