@onereach/types-contacts-api 1.41.3-beta.1297.0 → 1.41.3-beta.1300.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 +9 -0
- package/package.json +1 -1
package/dist/index.ts
CHANGED
|
@@ -172,6 +172,15 @@ export interface FieldSchemaResponseDto extends CreateFieldSchemaDto {
|
|
|
172
172
|
export interface UpdateFieldSchemaDto extends ReturnType<typeof PartialType<ReturnType<typeof OmitType<CreateFieldSchemaDto, 'type' | 'machine_name'>>>> {
|
|
173
173
|
}
|
|
174
174
|
|
|
175
|
+
export interface DeleteFieldValueByMachineNameDto extends ReturnType<typeof OmitType<UpsertFieldValueByMachineNameDto, 'value'>> {
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
export interface UpsertFieldValueByMachineNameDto {
|
|
179
|
+
contact: string;
|
|
180
|
+
machine_name: string;
|
|
181
|
+
value: any;
|
|
182
|
+
}
|
|
183
|
+
|
|
175
184
|
export interface FieldValueRequestDto {
|
|
176
185
|
value: any;
|
|
177
186
|
schemaId: string;
|
package/package.json
CHANGED