Skip to content

Commit e463fb8

Browse files
committed
cp dines
1 parent fe71898 commit e463fb8

5 files changed

Lines changed: 1580 additions & 15 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,4 @@ dist-deno
1313
coverage-objects
1414
object-coverage-report.json
1515
docs
16+
docs-md

package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
"lint": "./scripts/lint",
3131
"fix": "./scripts/format",
3232
"docs": "typedoc --options typedoc.json",
33+
"docs:md": "typedoc --options typedoc.md.json",
3334
"docs:watch": "typedoc --options typedoc.json --watch",
3435
"predeploy-gh-pages": "yarn docs:sdk",
3536
"deploy-gh-pages": "gh-pages -d typedoc"
@@ -41,7 +42,9 @@
4142
"agentkeepalive": "^4.2.1",
4243
"form-data-encoder": "1.7.2",
4344
"formdata-node": "^4.3.2",
45+
"i": "^0.3.7",
4446
"node-fetch": "^2.6.7",
47+
"npm": "^11.6.2",
4548
"uuidv7": "^1.0.2",
4649
"zod": "^3.24.1"
4750
},
@@ -70,8 +73,10 @@
7073
"typedoc": "^0.28.14",
7174
"typedoc-github-theme": "^0.3.1",
7275
"typedoc-material-theme": "^1.4.1",
76+
"typedoc-plugin-dt-links": "^2.0.29",
7377
"typedoc-plugin-include-example": "^3.0.2",
7478
"typedoc-plugin-markdown": "^4.9.0",
79+
"typedoc-plugin-md": "^0.7.1",
7580
"typedoc-plugin-pages": "^1.1.0",
7681
"typescript": "^5.9.0"
7782
},

typedoc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"tsconfig": "tsconfig.typedoc.json",
77
"includeVersion": true,
88
"readme": "README-SDK.md",
9-
"plugin": ["typedoc-github-theme", "@shipgirl/typedoc-plugin-versions"],
9+
"plugin": ["typedoc-github-theme", "@shipgirl/typedoc-plugin-versions", "typedoc-plugin-dt-links"],
1010
"navigation": {
1111
"includeCategories": true,
1212
"includeGroups": true

typedoc.md.json

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
{
2+
"$schema": "https://typedoc.org/schema.json",
3+
"entryPoints": ["src/sdk.ts"],
4+
"entryPointStrategy": "expand",
5+
"out": "docs-md/",
6+
"tsconfig": "tsconfig.typedoc.json",
7+
"includeVersion": true,
8+
"plugin": ["typedoc-plugin-markdown"],
9+
"navigation": {
10+
"includeCategories": true,
11+
"includeGroups": true
12+
},
13+
"categorizeByGroup": true,
14+
"searchInComments": true,
15+
"sort": ["source-order"],
16+
"kindSortOrder": [
17+
"Project",
18+
"Module",
19+
"Enum",
20+
"Class",
21+
"Namespace",
22+
"Interface",
23+
"TypeAlias",
24+
"Constructor",
25+
"Property",
26+
"Method",
27+
"Accessor",
28+
"Function",
29+
"Variable"
30+
],
31+
"visibilityFilters": {
32+
"protected": false,
33+
"private": false,
34+
"inherited": true,
35+
"external": true
36+
},
37+
"excludeTags": ["@hidden"],
38+
"validation": {
39+
"invalidLink": true,
40+
"notDocumented": false
41+
},
42+
"externalSymbolLinkMappings": {
43+
"@runloop/api-client": {
44+
"BlobLikePart": "#"
45+
}
46+
},
47+
"navigationLinks": {
48+
"GitHub": "https://github.com/runloopai/api-client-ts",
49+
"Documentation": "https://docs.runloop.ai"
50+
}
51+
}

0 commit comments

Comments
 (0)