Files
twenty/server/src/core/@generated/refresh-token/refresh-token-create-many-user.input.ts
Jérémy M 299ca293a8 feat: refactoring auth & add email password login (#318)
* feat: wip

* fix: issues

* feat: clean controllers and services

* fix: test

* Fix auth

---------

Co-authored-by: Charles Bochet <charles@twenty.com>
2023-06-17 13:42:02 +02:00

24 lines
560 B
TypeScript

import { Field } from '@nestjs/graphql';
import { InputType } from '@nestjs/graphql';
@InputType()
export class RefreshTokenCreateManyUserInput {
@Field(() => String, { nullable: true })
id?: string;
@Field(() => Date, { nullable: true })
createdAt?: Date | string;
@Field(() => Date, { nullable: true })
updatedAt?: Date | string;
@Field(() => Boolean, { nullable: true })
isRevoked?: boolean;
@Field(() => Date, { nullable: false })
expiresAt!: Date | string;
@Field(() => Date, { nullable: true })
deletedAt?: Date | string;
}