Skip to content

Commit

Permalink
chore: ae up
Browse files Browse the repository at this point in the history
  • Loading branch information
matej21 committed Dec 18, 2023
1 parent 0d2cc99 commit c8f65c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/api/client-content.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export namespace ContentClientInput {
};
// (undocumented)
export type CreateDataInput<TEntity extends EntityTypeLike> = {
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<TEntity['hasMany'][key]>;
} & {
Expand Down Expand Up @@ -141,7 +141,7 @@ export namespace ContentClientInput {
export type UniqueWhere<TEntity extends EntityTypeLike> = TEntity['unique'];
// (undocumented)
export type UpdateDataInput<TEntity extends EntityTypeLike> = {
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<TEntity['hasMany'][key]>;
} & {
Expand Down

0 comments on commit c8f65c1

Please sign in to comment.