-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(crawler): implemented fetch of jsdoc
- Loading branch information
Showing
4 changed files
with
475 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,71 +1,73 @@ | ||
export interface Ranking { | ||
id: string; | ||
name: string; | ||
description: string; | ||
link: string; | ||
tags: string[]; | ||
score: number; | ||
rank: number; | ||
pastRank?: number; | ||
updatedAt: string; | ||
createdAt?: string; | ||
type: string; | ||
id: string; | ||
name: string; | ||
description: string; | ||
link: string; | ||
tags: string[]; | ||
score: number; | ||
rank: number; | ||
pastRank?: number; | ||
updatedAt: string; | ||
createdAt?: string; | ||
type: string; | ||
} | ||
|
||
export interface TrendsFile { | ||
overall: Ranking[]; | ||
recentlyUpdated: Ranking[]; | ||
newlyAdded: Ranking[]; | ||
overall: Ranking[]; | ||
recentlyUpdated: Ranking[]; | ||
newlyAdded: Ranking[]; | ||
} | ||
|
||
export interface Package { | ||
name: string; | ||
description: string; | ||
author: string; | ||
license: string; | ||
type: string; | ||
readme: string; | ||
forks: number; | ||
stars: number; | ||
updatedAt: string; | ||
createdAt: string; | ||
addedToBoUI5: string; | ||
githublink: string; | ||
npmlink: string; | ||
downloads365: number; | ||
downloadsCurrentMonth: number; | ||
downloadsLastMonth: number; | ||
downloadsMonthlyGrowth: number; | ||
"ui5-community": UI5Community; | ||
name: string; | ||
description: string; | ||
author: string; | ||
license: string; | ||
main?: string; | ||
params?: any; | ||
type: string; | ||
readme: string; | ||
forks: number; | ||
stars: number; | ||
updatedAt: string; | ||
createdAt: string; | ||
addedToBoUI5: string; | ||
githublink: string; | ||
npmlink: string; | ||
downloads365: number; | ||
downloadsCurrentMonth: number; | ||
downloadsLastMonth: number; | ||
downloadsMonthlyGrowth: number; | ||
"ui5-community": UI5Community; | ||
} | ||
|
||
export interface Tags { | ||
name: string; | ||
count: number; | ||
type: string; | ||
name: string; | ||
count: number; | ||
type: string; | ||
} | ||
|
||
export interface UI5Community { | ||
types: string[]; | ||
tags: string[]; | ||
types: string[]; | ||
tags: string[]; | ||
} | ||
|
||
export interface Source { | ||
path: string; | ||
owner: string; | ||
repo: string; | ||
subpath: string; | ||
addedToBoUI5: string; | ||
subpackages: SubPackage[]; | ||
path: string; | ||
owner: string; | ||
repo: string; | ||
subpath: string; | ||
addedToBoUI5: string; | ||
subpackages: SubPackage[]; | ||
} | ||
|
||
export interface SubPackage { | ||
name: string; | ||
addedToBoUI5: string; | ||
name: string; | ||
addedToBoUI5: string; | ||
} | ||
|
||
export interface DataJson { | ||
packages: Package[]; | ||
types: Type[]; | ||
tags: Tags[]; | ||
packages: Package[]; | ||
types: Type[]; | ||
tags: Tags[]; | ||
} |
Oops, something went wrong.