@onereach/types-contacts-api 2.8.2 → 2.9.1
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 +6 -1
- 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
|
|
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.
|
|
4
|
+
"version": "2.9.1",
|
|
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": "
|
|
18
|
+
"gitHead": "ec66ce7ef50a885bc5a459a12ce8282cf8d6aa3b"
|
|
19
19
|
}
|