@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.
- package/dist/index.ts +6 -1
- 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