@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.
Files changed (2) hide show
  1. package/dist/index.ts +9 -0
  2. 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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@onereach/types-contacts-api",
3
3
  "description": "Generated types for Contacts Api",
4
- "version": "1.41.3-beta.1297.0",
4
+ "version": "1.41.3-beta.1300.0",
5
5
  "author": "OneReach.ai",
6
6
  "main": "./dist/index.ts",
7
7
  "publishConfig": {