Initial commit - Event Planner application
This commit is contained in:
13
dist/core/entities/token.entity.d.ts
vendored
Normal file
13
dist/core/entities/token.entity.d.ts
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
import { EntitySchema } from '@mikro-orm/core';
|
||||
export declare class AuthToken {
|
||||
id: string;
|
||||
tenantId: string;
|
||||
token: string;
|
||||
name?: string;
|
||||
expiresAt?: Date;
|
||||
metadata?: Record<string, any>;
|
||||
createdAt: Date;
|
||||
updatedAt: Date;
|
||||
}
|
||||
export declare const AuthTokenSchema: EntitySchema<AuthToken, never, import("@mikro-orm/core").EntityCtor<AuthToken>>;
|
||||
//# sourceMappingURL=token.entity.d.ts.map
|
||||
Reference in New Issue
Block a user