File tree Expand file tree Collapse file tree
payload-authjs/src/payload/collection/fields Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -158,10 +158,10 @@ export interface User {
158158 } ;
159159 verificationTokens ?:
160160 | {
161- id ?: string | null ;
162161 token : string ;
163162 expires : string ;
164163 createdAt : string ;
164+ id ?: string | null ;
165165 } [ ]
166166 | null ;
167167 updatedAt : string ;
@@ -283,10 +283,10 @@ export interface UsersSelect<T extends boolean = true> {
283283 verificationTokens ?:
284284 | T
285285 | {
286- id ?: T ;
287286 token ?: T ;
288287 expires ?: T ;
289288 createdAt ?: T ;
289+ id ?: T ;
290290 } ;
291291 updatedAt ?: T ;
292292 createdAt ?: T ;
Original file line number Diff line number Diff line change @@ -9,13 +9,6 @@ export const verificationTokensField: Field = {
99 name : "verificationTokens" ,
1010 type : "array" ,
1111 fields : [
12- {
13- name : "id" ,
14- type : "text" ,
15- admin : {
16- disabled : true ,
17- } ,
18- } ,
1912 {
2013 type : "row" ,
2114 fields : [
You can’t perform that action at this time.
0 commit comments