Skip to content
Snippets Groups Projects
Commit fcf1c31f authored by Henrik Teksle Sandok's avatar Henrik Teksle Sandok
Browse files

Merge branch 'feat/new-spec-file' into 'main'

feat: update api

See merge request !81
parents 60b18811 cb41ab3e
No related branches found
No related tags found
1 merge request!81feat: update api
Pipeline #283449 passed with warnings
......@@ -2383,6 +2383,10 @@
"type": "integer",
"format": "int64"
},
"bannerImage": {
"type": "integer",
"format": "int64"
},
"email": {
"type": "string"
},
......@@ -2395,6 +2399,14 @@
},
"subscriptionLevel": {
"type": "string"
},
"checkingAccountBBAN": {
"type": "integer",
"format": "int64"
},
"savingsAccountBBAN": {
"type": "integer",
"format": "int64"
}
}
},
......@@ -2606,9 +2618,21 @@
"type": "integer",
"format": "int64"
},
"bannerImage": {
"type": "integer",
"format": "int64"
},
"createdAt": {
"type": "string",
"format": "date-time"
},
"totalPoints": {
"type": "integer",
"format": "int32"
},
"currentStreak": {
"type": "integer",
"format": "int32"
}
}
},
......
......@@ -7,6 +7,9 @@ export type ProfileDTO = {
firstName?: string;
lastName?: string;
profileImage?: number;
bannerImage?: number;
createdAt?: string;
totalPoints?: number;
currentStreak?: number;
};
......@@ -7,9 +7,12 @@ export type UserDTO = {
firstName?: string;
lastName?: string;
profileImage?: number;
bannerImage?: number;
email?: string;
createdAt?: string;
role?: string;
subscriptionLevel?: string;
checkingAccountBBAN?: number;
savingsAccountBBAN?: number;
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment