Skip to content

Commit

Permalink
Merge pull request #109 from tago-io/feat/new-fields-create-usser
Browse files Browse the repository at this point in the history
Add UserOptions interface to UserCreateInfo
  • Loading branch information
felipefdl committed Mar 6, 2024
2 parents facd859 + 990641e commit 3927f75
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/modules/Resources/run.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,13 @@ interface RunInfo {
dictionary: GenericID;
}

interface UserOptions {
decimal_separator?: string;
thousand_separator?: string;
date_format?: string;
time_format?: string;
}

interface UserCreateInfo {
name: string;
email: string;
Expand All @@ -87,6 +94,7 @@ interface UserCreateInfo {
language?: string;
tags?: TagsObj[];
active?: boolean;
options?: UserOptions;
}

interface UserCreateResponse {
Expand Down

0 comments on commit 3927f75

Please sign in to comment.