@onereach/types-contacts-api 2.2.8-beta.1642.0 → 2.2.8-beta.1654.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 +6 -1
  2. package/package.json +1 -1
package/dist/index.ts CHANGED
@@ -175,11 +175,16 @@ export interface FieldSchemaListDto extends ListApiResponse {
175
175
  items: FieldSchemaResponseDto[];
176
176
  }
177
177
 
178
+ export interface FieldSchemaReadonlyParamsDto {
179
+ readonly: boolean;
180
+ fields: string[];
181
+ }
182
+
178
183
  export interface FieldSchemaResponseDto extends CreateFieldSchemaDto {
179
184
  id: string;
180
185
  }
181
186
 
182
- export interface UpdateFieldSchemaDto extends ReturnType<typeof PartialType<ReturnType<typeof OmitType<CreateFieldSchemaDto, 'type' | 'machine_name'>>>> {
187
+ export interface UpdateFieldSchemaDto extends ReturnType<typeof PartialType<ReturnType<typeof OmitType<CreateFieldSchemaDto, 'type' | 'machine_name' | 'readonly'>>>> {
183
188
  }
184
189
 
185
190
  export interface DeleteFieldValueByMachineNameDto extends ReturnType<typeof OmitType<UpsertFieldValueByMachineNameDto, 'value'>> {
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": "2.2.8-beta.1642.0",
4
+ "version": "2.2.8-beta.1654.0",
5
5
  "author": "OneReach.ai",
6
6
  "types": "./dist/index.ts",
7
7
  "publishConfig": {