@onereach/types-contacts-api 5.1.3-beta.2457.0 → 5.2.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 +4 -1
- package/dist/esm/index.d.ts +4 -1
- package/package.json +3 -2
package/dist/cjs/index.d.ts
CHANGED
|
@@ -14,7 +14,7 @@ export declare enum BatchProcessStatus {
|
|
|
14
14
|
success = "success",
|
|
15
15
|
failed = "failed"
|
|
16
16
|
}
|
|
17
|
-
export type ColumnValueName = 'number_values' | 'double_values' | 'string_values' | 'object_values' | 'date_values' | 'array_of_objects';
|
|
17
|
+
export type ColumnValueName = 'number_values' | 'double_values' | 'string_values' | 'object_values' | 'date_values' | 'array_of_objects' | 'arr_obj_identifiers_values';
|
|
18
18
|
export interface ContactListDto extends ListApiResponse {
|
|
19
19
|
items: ContactResponseDto[];
|
|
20
20
|
}
|
|
@@ -173,6 +173,9 @@ export declare enum MigrationState {
|
|
|
173
173
|
ToDo = "ToDo",
|
|
174
174
|
Done = "Done"
|
|
175
175
|
}
|
|
176
|
+
export interface FieldSchemaDeleteParamsDto {
|
|
177
|
+
softDelete?: boolean;
|
|
178
|
+
}
|
|
176
179
|
export interface FieldSchemaListParamsDto extends ReturnType<typeof IntersectionType<OrderParams, ListApiParams>> {
|
|
177
180
|
q?: string;
|
|
178
181
|
}
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -14,7 +14,7 @@ export declare enum BatchProcessStatus {
|
|
|
14
14
|
success = "success",
|
|
15
15
|
failed = "failed"
|
|
16
16
|
}
|
|
17
|
-
export type ColumnValueName = 'number_values' | 'double_values' | 'string_values' | 'object_values' | 'date_values' | 'array_of_objects';
|
|
17
|
+
export type ColumnValueName = 'number_values' | 'double_values' | 'string_values' | 'object_values' | 'date_values' | 'array_of_objects' | 'arr_obj_identifiers_values';
|
|
18
18
|
export interface ContactListDto extends ListApiResponse {
|
|
19
19
|
items: ContactResponseDto[];
|
|
20
20
|
}
|
|
@@ -173,6 +173,9 @@ export declare enum MigrationState {
|
|
|
173
173
|
ToDo = "ToDo",
|
|
174
174
|
Done = "Done"
|
|
175
175
|
}
|
|
176
|
+
export interface FieldSchemaDeleteParamsDto {
|
|
177
|
+
softDelete?: boolean;
|
|
178
|
+
}
|
|
176
179
|
export interface FieldSchemaListParamsDto extends ReturnType<typeof IntersectionType<OrderParams, ListApiParams>> {
|
|
177
180
|
q?: string;
|
|
178
181
|
}
|
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": "5.
|
|
4
|
+
"version": "5.2.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": "7e65d191c71ab27063efe63f0cb90c172e1f6271"
|
|
26
27
|
}
|