@onereach/types-contacts-api 3.1.2 → 3.1.3-beta.2010.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 -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
|
}
|
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.3-beta.2010.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": "5ca9265d16ffa4c3da8f9cf7a1faef013bc6f7b9"
|
|
17
|
+
}
|
|
19
18
|
}
|