Skip to content

Commit

Permalink
Merge pull request #93 from permitio/oded/per-10465-add-fields-to-use…
Browse files Browse the repository at this point in the history
…r-read-object-in-node-sdk

Add created_at and updated_at to userRead schema
  • Loading branch information
obsd committed Aug 20, 2024
2 parents 3256fa3 + be9b59a commit 59fba0f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/openapi/types/user-read.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,4 +92,16 @@ export interface UserRead {
* @memberof UserRead
*/
attributes?: object;
/**
* The date the user was created.
* @type {string}
* @memberof UserRead
*/
created_at: string;
/**
* The date the user was last updated.
* @type {string}
* @memberof UserRead
*/
updated_at: string;
}

0 comments on commit 59fba0f

Please sign in to comment.