Skip to content

Commit

Permalink
Update typescript model
Browse files Browse the repository at this point in the history
  • Loading branch information
cd-user committed Nov 13, 2023
1 parent ecf24cb commit e7d77cd
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions typescript/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ export type ContactMean =
*/
publicProfiles: [
{
type: "manfred" | "linkedin" | "stackoverflow" | "xing" | "twitter" | "github" | "other";
type: "manfred" | "linkedin" | "stackoverflow" | "xing" | "twitter" | "github" | "website" | "other";
URL: string;
},
...{
type: "manfred" | "linkedin" | "stackoverflow" | "xing" | "twitter" | "github" | "other";
type: "manfred" | "linkedin" | "stackoverflow" | "xing" | "twitter" | "github" | "website" | "other";
URL: string;
}[]
];
Expand Down Expand Up @@ -135,7 +135,7 @@ export interface ManfredAwesomicCV {
*/
relevantYearsOfExperience?: number;
relevantLinks?: {
type: "linkedin" | "github" | "twitter" | "website" | "other";
type: "manfred" | "linkedin" | "stackoverflow" | "xing" | "twitter" | "github" | "website" | "other";
URL: string;
description?: string;
}[];
Expand Down Expand Up @@ -198,6 +198,7 @@ export interface ManfredAwesomicCV {
* A language expressed as a [ISO 639-1 code](https://en.wikipedia.org/wiki/ISO_639-1)
*/
name: string;
fullName?: string;
level?:
| "Elementary proficiency"
| "Limited working proficiency"
Expand Down

0 comments on commit e7d77cd

Please sign in to comment.