@vertesia/appgen-docs 1.5.0-dev.20260901.045442Z → 1.5.0-dev.20260905.011013Z
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.
|
@@ -85,7 +85,6 @@ export type VertesiaClientProps = {
|
|
|
85
85
|
storeUrl?: string;
|
|
86
86
|
tokenServerUrl?: string;
|
|
87
87
|
apikey?: string;
|
|
88
|
-
projectId?: string;
|
|
89
88
|
sessionTags?: string | string[];
|
|
90
89
|
onRequest?: (request: Request) => void;
|
|
91
90
|
onResponse?: (response: Response) => void;
|
|
@@ -1158,6 +1157,11 @@ export interface AgentRunStreamMessagesOptions {
|
|
|
1158
1157
|
onHistoryLoaded?: (messages: AgentMessage[]) => void;
|
|
1159
1158
|
onHistoryError?: (error: unknown) => void;
|
|
1160
1159
|
}
|
|
1160
|
+
/**
|
|
1161
|
+
* `#` and `?` are URL delimiters, not path content: either one truncates the path before the
|
|
1162
|
+
* request is built. Nothing else is escaped — `%` keeps its existing rejection at upload.
|
|
1163
|
+
*/
|
|
1164
|
+
export declare function escapeArtifactPathDelimiters(path: string): string;
|
|
1161
1165
|
export declare class AgentsApi extends ApiTopic {
|
|
1162
1166
|
constructor(parent: ClientBase);
|
|
1163
1167
|
/**
|
|
@@ -1763,7 +1767,7 @@ export declare class DataApi extends ApiTopic {
|
|
|
1763
1767
|
*
|
|
1764
1768
|
* @example
|
|
1765
1769
|
* ```typescript
|
|
1766
|
-
* const job = await client.data.
|
|
1770
|
+
* const job = await client.data.import(storeId, {
|
|
1767
1771
|
* mode: 'append',
|
|
1768
1772
|
* message: 'Monthly data import',
|
|
1769
1773
|
* tables: {
|
|
@@ -1779,8 +1783,14 @@ export declare class DataApi extends ApiTopic {
|
|
|
1779
1783
|
* }
|
|
1780
1784
|
* });
|
|
1781
1785
|
* ```
|
|
1786
|
+
*
|
|
1787
|
+
* Do not rename this method. 1.5 renamed it to `importData` (composableai#1645) on the theory
|
|
1788
|
+
* that the token sequence `import(` confused Vite/Rollup import analysis; it does not on the
|
|
1789
|
+
* current toolchain. Applications built against the 1.4 SDK call this through the client the
|
|
1790
|
+
* platform serves them rather than one they bundle themselves, so a rename would break them
|
|
1791
|
+
* the moment 1.5 is deployed, not at their next upgrade.
|
|
1782
1792
|
*/
|
|
1783
|
-
|
|
1793
|
+
import(id: string, payload: ImportDataPayload): Promise<ImportJob>;
|
|
1784
1794
|
/**
|
|
1785
1795
|
* Get the status of an import job.
|
|
1786
1796
|
*
|
|
@@ -21,6 +21,7 @@ export * from './analytics.js';
|
|
|
21
21
|
export type { UserGroupArrayFromSchema } from './api-schemas/group.js';
|
|
22
22
|
export type { PrincipalContextFromSchema, UserArrayFromSchema, UserRefArrayFromSchema, } from './api-schemas/user.js';
|
|
23
23
|
export * from './apikey.js';
|
|
24
|
+
export * from './appgen.js';
|
|
24
25
|
export * from './apps.js';
|
|
25
26
|
export * from './ask-user.js';
|
|
26
27
|
export * from './audit-trail.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vertesia/appgen-docs",
|
|
3
|
-
"version": "1.5.0-dev.
|
|
3
|
+
"version": "1.5.0-dev.20260905.011013Z",
|
|
4
4
|
"description": "Generated SDK references and development guidance for Vertesia app agents",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./lib/index.js",
|
|
@@ -18,10 +18,10 @@
|
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@types/node": "^24.13.3",
|
|
20
20
|
"typescript": "7.0.2",
|
|
21
|
-
"@vertesia/client": "1.5.0-dev.
|
|
22
|
-
"@vertesia/common": "1.5.0-dev.
|
|
21
|
+
"@vertesia/client": "1.5.0-dev.20260905.011013Z",
|
|
22
|
+
"@vertesia/common": "1.5.0-dev.20260905.011013Z",
|
|
23
23
|
"@vertesia/tsconfig": "0.1.0",
|
|
24
|
-
"@vertesia/ui": "1.5.0-dev.
|
|
24
|
+
"@vertesia/ui": "1.5.0-dev.20260905.011013Z"
|
|
25
25
|
},
|
|
26
26
|
"repository": {
|
|
27
27
|
"type": "git",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"documentation",
|
|
35
35
|
"app-development"
|
|
36
36
|
],
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "ea74a29f6885cec132eec4b6b319e40137df3b40",
|
|
38
38
|
"scripts": {
|
|
39
39
|
"build": "pnpm run clean && tsc -p tsconfig.json && node ./scripts/generate-docs.mjs",
|
|
40
40
|
"clean": "rimraf ./lib ./docs ./tsconfig.tsbuildinfo",
|