@vertesia/appgen-docs 1.5.0-dev.20260725.083715Z
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -0
- package/README.md +18 -0
- package/lib/docs/app-package-patterns.md +62 -0
- package/lib/docs/frontend-imports.md +75 -0
- package/lib/docs/handlebars-prompts.md +93 -0
- package/lib/docs/package-dashboards.md +110 -0
- package/lib/docs/package-processes.md +220 -0
- package/lib/docs/package-types.md +80 -0
- package/lib/docs/store-objects.md +94 -0
- package/lib/docs/tool-server-resource.md +397 -0
- package/lib/docs/ui/llms.txt +20 -0
- package/lib/docs/ui-interfaces.d.ts +1284 -0
- package/lib/docs/vertesia-client.d.ts +5644 -0
- package/lib/docs/vertesia-common.d.ts +4404 -0
- package/lib/index.d.ts +8 -0
- package/lib/index.d.ts.map +1 -0
- package/lib/index.js +10 -0
- package/lib/index.js.map +1 -0
- package/package.json +43 -0
package/lib/index.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Absolute path to the generated documentation shipped with this package.
|
|
3
|
+
*
|
|
4
|
+
* Keep this package external when bundling consumers so import.meta.url still
|
|
5
|
+
* resolves relative to the installed package.
|
|
6
|
+
*/
|
|
7
|
+
export declare const appgenDocsRoot: string;
|
|
8
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAGA;;;;;GAKG;AACH,eAAO,MAAM,cAAc,QAA2D,CAAC"}
|
package/lib/index.js
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { dirname, resolve } from 'node:path';
|
|
2
|
+
import { fileURLToPath } from 'node:url';
|
|
3
|
+
/**
|
|
4
|
+
* Absolute path to the generated documentation shipped with this package.
|
|
5
|
+
*
|
|
6
|
+
* Keep this package external when bundling consumers so import.meta.url still
|
|
7
|
+
* resolves relative to the installed package.
|
|
8
|
+
*/
|
|
9
|
+
export const appgenDocsRoot = resolve(dirname(fileURLToPath(import.meta.url)), 'docs');
|
|
10
|
+
//# sourceMappingURL=index.js.map
|
package/lib/index.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAC7C,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC;;;;;GAKG;AACH,MAAM,CAAC,MAAM,cAAc,GAAG,OAAO,CAAC,OAAO,CAAC,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC"}
|
package/package.json
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@vertesia/appgen-docs",
|
|
3
|
+
"version": "1.5.0-dev.20260725.083715Z",
|
|
4
|
+
"description": "Generated SDK references and development guidance for Vertesia app agents",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./lib/index.js",
|
|
7
|
+
"types": "./lib/index.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"lib"
|
|
10
|
+
],
|
|
11
|
+
"license": "Apache-2.0",
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"types": "./lib/index.d.ts",
|
|
15
|
+
"default": "./lib/index.js"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"devDependencies": {
|
|
19
|
+
"@types/node": "^24.13.3",
|
|
20
|
+
"typescript": "^6.0.3",
|
|
21
|
+
"@vertesia/client": "1.5.0-dev.20260725.083715Z",
|
|
22
|
+
"@vertesia/tsconfig": "0.1.0",
|
|
23
|
+
"@vertesia/common": "1.5.0-dev.20260725.083715Z",
|
|
24
|
+
"@vertesia/ui": "1.5.0-dev.20260725.083715Z"
|
|
25
|
+
},
|
|
26
|
+
"repository": {
|
|
27
|
+
"type": "git",
|
|
28
|
+
"url": "https://github.com/vertesia/composableai.git",
|
|
29
|
+
"directory": "packages/appgen-docs"
|
|
30
|
+
},
|
|
31
|
+
"keywords": [
|
|
32
|
+
"vertesia",
|
|
33
|
+
"agents",
|
|
34
|
+
"documentation",
|
|
35
|
+
"app-development"
|
|
36
|
+
],
|
|
37
|
+
"scripts": {
|
|
38
|
+
"build": "pnpm run clean && tsc -p tsconfig.json && node ./scripts/generate-docs.mjs",
|
|
39
|
+
"clean": "rimraf ./lib ./docs ./tsconfig.tsbuildinfo",
|
|
40
|
+
"lint": "biome lint src scripts",
|
|
41
|
+
"test": "node --test ./scripts/*.test.mjs"
|
|
42
|
+
}
|
|
43
|
+
}
|