@onereach/types-contacts-api 5.41.3 → 5.41.5
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 +2 -1
- package/dist/esm/index.d.ts +2 -1
- package/package.json +2 -2
package/dist/cjs/index.d.ts
CHANGED
|
@@ -30,6 +30,7 @@ export declare enum BatchProcessStatus {
|
|
|
30
30
|
failed = "failed"
|
|
31
31
|
}
|
|
32
32
|
export type ColumnValueName = 'number_values' | 'double_values' | 'string_values' | 'date_values' | 'arr_obj_identifiers_values' | 'obj_identifier_values' | 'arr_object_values' | 'arr_of_string_values' | 'md_values';
|
|
33
|
+
export type FilterOperator = '=' | '<' | '<=' | '>' | '>=' | '!=' | 'contains' | 'is_empty' | 'is_not_empty';
|
|
33
34
|
export interface BulkContactFieldValueDto {
|
|
34
35
|
value: unknown;
|
|
35
36
|
schemaId?: string;
|
|
@@ -276,7 +277,7 @@ export interface ContactFilterConditionDto extends AbstractFilterCondition {
|
|
|
276
277
|
contactField: 'created_at' | 'updated_at' | 'id';
|
|
277
278
|
}
|
|
278
279
|
export interface AbstractFilterCondition {
|
|
279
|
-
operator:
|
|
280
|
+
operator: FilterOperator;
|
|
280
281
|
value: any;
|
|
281
282
|
}
|
|
282
283
|
export interface CreateFilterDto {
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -30,6 +30,7 @@ export declare enum BatchProcessStatus {
|
|
|
30
30
|
failed = "failed"
|
|
31
31
|
}
|
|
32
32
|
export type ColumnValueName = 'number_values' | 'double_values' | 'string_values' | 'date_values' | 'arr_obj_identifiers_values' | 'obj_identifier_values' | 'arr_object_values' | 'arr_of_string_values' | 'md_values';
|
|
33
|
+
export type FilterOperator = '=' | '<' | '<=' | '>' | '>=' | '!=' | 'contains' | 'is_empty' | 'is_not_empty';
|
|
33
34
|
export interface BulkContactFieldValueDto {
|
|
34
35
|
value: unknown;
|
|
35
36
|
schemaId?: string;
|
|
@@ -276,7 +277,7 @@ export interface ContactFilterConditionDto extends AbstractFilterCondition {
|
|
|
276
277
|
contactField: 'created_at' | 'updated_at' | 'id';
|
|
277
278
|
}
|
|
278
279
|
export interface AbstractFilterCondition {
|
|
279
|
-
operator:
|
|
280
|
+
operator: FilterOperator;
|
|
280
281
|
value: any;
|
|
281
282
|
}
|
|
282
283
|
export interface CreateFilterDto {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@onereach/types-contacts-api",
|
|
3
|
-
"version": "5.41.
|
|
3
|
+
"version": "5.41.5",
|
|
4
4
|
"description": "Generated types for Contacts Api",
|
|
5
5
|
"author": "OneReach.ai",
|
|
6
6
|
"main": "dist/cjs/index.js",
|
|
@@ -25,5 +25,5 @@
|
|
|
25
25
|
"publishConfig": {
|
|
26
26
|
"access": "public"
|
|
27
27
|
},
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "c0c1e177312f20f898c9a875e70e1bf4830e7671"
|
|
29
29
|
}
|