@onereach/types-contacts-api 1.40.2-beta.1274.0 → 1.40.2-beta.1283.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 -6
- package/package.json +1 -1
package/dist/index.ts
CHANGED
|
@@ -181,6 +181,15 @@ export interface FieldSchemaResponseDto extends CreateFieldSchemaDto {
|
|
|
181
181
|
export interface UpdateFieldSchemaDto extends ReturnType<typeof PartialType<ReturnType<typeof OmitType<CreateFieldSchemaDto, 'type' | 'machine_name'>>>> {
|
|
182
182
|
}
|
|
183
183
|
|
|
184
|
+
export interface DeleteFieldValueByMachineNameDto extends ReturnType<typeof OmitType<UpsertFieldValueByMachineNameDto, 'value'>> {
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
export interface UpsertFieldValueByMachineNameDto {
|
|
188
|
+
contact: string;
|
|
189
|
+
machine_name: string;
|
|
190
|
+
value: any;
|
|
191
|
+
}
|
|
192
|
+
|
|
184
193
|
export interface FieldValueRequestDto {
|
|
185
194
|
value: any;
|
|
186
195
|
schemaId: string;
|
|
@@ -193,12 +202,6 @@ export interface FieldValueResponseDto {
|
|
|
193
202
|
schemaId: string;
|
|
194
203
|
}
|
|
195
204
|
|
|
196
|
-
export interface UpsertFieldValueByMachineNameDto {
|
|
197
|
-
contact: string;
|
|
198
|
-
machine_name: string;
|
|
199
|
-
value: any;
|
|
200
|
-
}
|
|
201
|
-
|
|
202
205
|
export interface ContactFilterConditionDto extends AbstractFilterCondition {
|
|
203
206
|
contactField: 'created_at' | 'updated_at';
|
|
204
207
|
}
|
package/package.json
CHANGED