🗃️ Add updatedAt fields where missing
This commit is contained in:
@ -4,7 +4,7 @@ import { sendRequest } from 'utils'
|
||||
export const updateCollaboratorQuery = (
|
||||
typebotId: string,
|
||||
userId: string,
|
||||
collaborator: CollaboratorsOnTypebots
|
||||
collaborator: Omit<CollaboratorsOnTypebots, 'createdAt' | 'updatedAt'>
|
||||
) =>
|
||||
sendRequest({
|
||||
method: 'PATCH',
|
||||
|
@ -4,7 +4,7 @@ import { sendRequest } from 'utils'
|
||||
export const updateInvitationQuery = (
|
||||
typebotId: string,
|
||||
email: string,
|
||||
invitation: Omit<Invitation, 'createdAt' | 'id'>
|
||||
invitation: Omit<Invitation, 'createdAt' | 'id' | 'updatedAt'>
|
||||
) =>
|
||||
sendRequest({
|
||||
method: 'PATCH',
|
||||
|
Reference in New Issue
Block a user