@onereach/types-contacts-api 3.2.0 → 4.0.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 +10 -0
- package/package.json +2 -2
package/dist/index.ts
CHANGED
|
@@ -201,6 +201,16 @@ export interface CrossAccountMetaDto {
|
|
|
201
201
|
original_book_id: string;
|
|
202
202
|
}
|
|
203
203
|
|
|
204
|
+
export interface MigrationStateResponseDto {
|
|
205
|
+
state: MigrationState;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
export enum MigrationState {
|
|
209
|
+
InProgress = 'InProgress',
|
|
210
|
+
ToDo = 'ToDo',
|
|
211
|
+
Done = 'Done'
|
|
212
|
+
}
|
|
213
|
+
|
|
204
214
|
export interface FieldSchemaDeleteParamsDto {
|
|
205
215
|
softDelete?: boolean;
|
|
206
216
|
}
|
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": "
|
|
4
|
+
"version": "4.0.0",
|
|
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": "315c35b2c338dcf78c1326c751bd829af1aca991"
|
|
19
19
|
}
|