@onereach/types-contacts-api 1.40.1-beta.1252.0 → 1.40.1
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 +2 -6
- package/package.json +3 -2
package/dist/index.ts
CHANGED
|
@@ -85,7 +85,7 @@ export interface ContactBookFieldSchemaDto extends CreateFieldSchemaDto {
|
|
|
85
85
|
id?: string;
|
|
86
86
|
}
|
|
87
87
|
|
|
88
|
-
export interface CreateFieldSchemaDto
|
|
88
|
+
export interface CreateFieldSchemaDto {
|
|
89
89
|
label: string;
|
|
90
90
|
singular_label?: string;
|
|
91
91
|
properties?: Record<string, string>;
|
|
@@ -107,10 +107,6 @@ export enum ColumnTypes {
|
|
|
107
107
|
|
|
108
108
|
export type ColumnValueName = 'string_values' | 'object_values' | 'number_values' | 'date_values' | 'double_values';
|
|
109
109
|
|
|
110
|
-
export interface MachineNameParamDto {
|
|
111
|
-
machine_name: string;
|
|
112
|
-
}
|
|
113
|
-
|
|
114
110
|
export interface ContactBookListDto extends ListApiResponse {
|
|
115
111
|
items: ContactBookResponseDto[];
|
|
116
112
|
}
|
|
@@ -178,7 +174,7 @@ export interface FieldSchemaResponseDto extends CreateFieldSchemaDto {
|
|
|
178
174
|
id: string;
|
|
179
175
|
}
|
|
180
176
|
|
|
181
|
-
export interface UpdateFieldSchemaDto extends ReturnType<typeof PartialType<ReturnType<typeof OmitType<CreateFieldSchemaDto, 'type'
|
|
177
|
+
export interface UpdateFieldSchemaDto extends ReturnType<typeof PartialType<ReturnType<typeof OmitType<CreateFieldSchemaDto, 'type'>>>> {
|
|
182
178
|
}
|
|
183
179
|
|
|
184
180
|
export interface FieldValueRequestDto {
|
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": "1.40.1
|
|
4
|
+
"version": "1.40.1",
|
|
5
5
|
"author": "OneReach.ai",
|
|
6
6
|
"main": "./dist/index.ts",
|
|
7
7
|
"publishConfig": {
|
|
@@ -17,5 +17,6 @@
|
|
|
17
17
|
"@types/node": "^18.11.10",
|
|
18
18
|
"ts-morph": "^17.0.1",
|
|
19
19
|
"ts-node": "^10.9.1"
|
|
20
|
-
}
|
|
20
|
+
},
|
|
21
|
+
"gitHead": "8d9c134b0d5324045b095f8a6f4cbad04c0884d4"
|
|
21
22
|
}
|