diff --git a/build/api/client-content.api.md b/build/api/client-content.api.md index f81165f75c..c560900c8a 100644 --- a/build/api/client-content.api.md +++ b/build/api/client-content.api.md @@ -53,7 +53,7 @@ export namespace ContentClientInput { }; // (undocumented) export type CreateDataInput = { - readonly [key in keyof TEntity['columns']]?: TEntity['columns'][key]['tsType']; + readonly [key in keyof TEntity['columns']]?: TEntity['columns'][key]; } & { readonly [key in keyof TEntity['hasMany']]?: CreateManyRelationInput; } & { @@ -141,7 +141,7 @@ export namespace ContentClientInput { export type UniqueWhere = TEntity['unique']; // (undocumented) export type UpdateDataInput = { - readonly [key in keyof TEntity['columns']]?: TEntity['columns'][key]['tsType']; + readonly [key in keyof TEntity['columns']]?: TEntity['columns'][key]; } & { readonly [key in keyof TEntity['hasMany']]?: UpdateManyRelationInput; } & {