@onereach/types-contacts-api 5.41.2 → 5.41.4

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.
@@ -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: string;
280
+ operator: FilterOperator;
280
281
  value: any;
281
282
  }
282
283
  export interface CreateFilterDto {
@@ -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: string;
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.2",
3
+ "version": "5.41.4",
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": "d25614ed427168f0b3b72f1b0b79e8cca78a8bec"
28
+ "gitHead": "d8644d7949f5fe0457e391a4ee9b21ed7d56f9e4"
29
29
  }