@onereach/types-contacts-api 3.1.4 → 3.1.5-beta.2032.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/index.ts +11 -1
- package/package.json +2 -3
package/dist/index.ts
CHANGED
|
@@ -190,6 +190,16 @@ export interface CrossAccountMetaDto {
|
|
|
190
190
|
original_book_id: string;
|
|
191
191
|
}
|
|
192
192
|
|
|
193
|
+
export interface MigrationStateResponseDto {
|
|
194
|
+
state: MigrationState;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
export enum MigrationState {
|
|
198
|
+
InProgress = 'InProgress',
|
|
199
|
+
ToDo = 'ToDo',
|
|
200
|
+
Done = 'Done'
|
|
201
|
+
}
|
|
202
|
+
|
|
193
203
|
export interface FieldSchemaDeleteParamsDto {
|
|
194
204
|
softDelete?: boolean;
|
|
195
205
|
}
|
|
@@ -257,7 +267,7 @@ export interface DynamicFilterDto extends ReturnType<typeof OmitType<CreateFilte
|
|
|
257
267
|
}
|
|
258
268
|
|
|
259
269
|
export interface FieldValueFilterConditionDto extends AbstractFilterCondition {
|
|
260
|
-
|
|
270
|
+
machine_name: string;
|
|
261
271
|
propertyPath?: string[];
|
|
262
272
|
}
|
|
263
273
|
|
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": "3.1.
|
|
4
|
+
"version": "3.1.5-beta.2032.0",
|
|
5
5
|
"author": "OneReach.ai",
|
|
6
6
|
"main": "./dist/index.ts",
|
|
7
7
|
"publishConfig": {
|
|
@@ -14,6 +14,5 @@
|
|
|
14
14
|
"@types/node": "^18.11.10",
|
|
15
15
|
"ts-morph": "^17.0.1",
|
|
16
16
|
"ts-node": "^10.9.1"
|
|
17
|
-
}
|
|
18
|
-
"gitHead": "45e365f44c6441ed19e727c76bfc32145d48e7d8"
|
|
17
|
+
}
|
|
19
18
|
}
|