aboutsummaryrefslogtreecommitdiffstats
path: root/src/types
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2023-12-06 18:20:54 +0100
committerArmand Philippot <git@armandphilippot.com>2023-12-07 19:12:11 +0100
commitb8eb008dd5927fb736e56699637f5f8549965eae (patch)
tree648274babea3d3d09ed3e0f5f1fef013f94158fb /src/types
parent802285872a2c57e7a5e130f32a2b45497d7687f1 (diff)
refactor(hooks): replace useGithubApi with useGithubRepoMeta
* use GraphQL API instead of REST (the inconvenient however is that we now need an authorization token...) * move fetcher in services * add tests * mock response using MSW
Diffstat (limited to 'src/types')
-rw-r--r--src/types/data.ts8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/types/data.ts b/src/types/data.ts
index 1d0746d..f58d6e7 100644
--- a/src/types/data.ts
+++ b/src/types/data.ts
@@ -254,7 +254,7 @@ export type Repos = {
export type ProjectMeta = Omit<PageMeta, 'wordsCount'> & {
contexts?: string[];
license?: string;
- repos?: Repos;
+ repos: Repos;
tagline?: string;
technologies?: string[];
};
@@ -288,3 +288,9 @@ export type Topic = Page & {
id: number;
meta: TopicMeta;
};
+
+export type GithubRepositoryMeta = {
+ createdAt: string;
+ stargazerCount: number;
+ updatedAt: string;
+};