@onereach/types-contacts-api 1.40.1-beta.1252.0 → 1.40.2-beta.1274.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 +6 -0
- package/package.json +1 -1
package/dist/index.ts
CHANGED
|
@@ -193,6 +193,12 @@ export interface FieldValueResponseDto {
|
|
|
193
193
|
schemaId: string;
|
|
194
194
|
}
|
|
195
195
|
|
|
196
|
+
export interface UpsertFieldValueByMachineNameDto {
|
|
197
|
+
contact: string;
|
|
198
|
+
machine_name: string;
|
|
199
|
+
value: any;
|
|
200
|
+
}
|
|
201
|
+
|
|
196
202
|
export interface ContactFilterConditionDto extends AbstractFilterCondition {
|
|
197
203
|
contactField: 'created_at' | 'updated_at';
|
|
198
204
|
}
|
package/package.json
CHANGED