@onereach/types-contacts-api 2.8.2 → 2.9.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.
Files changed (2) hide show
  1. package/dist/index.ts +6 -1
  2. package/package.json +2 -2
package/dist/index.ts CHANGED
@@ -18,7 +18,12 @@ export enum BatchProcessStatus {
18
18
  failed = 'failed'
19
19
  }
20
20
 
21
- export type ColumnValueName = 'string_values' | 'object_values' | 'number_values' | 'date_values' | 'double_values';
21
+ export type ColumnNumberValueName = 'number_values' | 'double_values';
22
+ export type ColumnValueName = ColumnNumberValueName
23
+ | 'string_values'
24
+ | 'object_values'
25
+ | 'date_values'
26
+ | 'array_of_objects';
22
27
 
23
28
  export interface ContactListDto extends ListApiResponse {
24
29
  items: ContactResponseDto[];
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": "2.8.2",
4
+ "version": "2.9.0",
5
5
  "author": "OneReach.ai",
6
6
  "main": "./dist/index.ts",
7
7
  "publishConfig": {
@@ -15,5 +15,5 @@
15
15
  "ts-morph": "^17.0.1",
16
16
  "ts-node": "^10.9.1"
17
17
  },
18
- "gitHead": "cf4176ec5f2d6624e0610f508cb6fa35fb96c9da"
18
+ "gitHead": "03889c6b3bf2d161ec3af7d5ccee60132a7feb91"
19
19
  }