@vistagenic/vista 0.3.2 → 0.3.4
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/bin/vista.js +79 -109
- package/dist/ai/embeddings.d.ts +11 -11
- package/dist/ai/embeddings.js +71 -71
- package/dist/ai/index.d.ts +10 -10
- package/dist/ai/index.js +26 -26
- package/dist/ai/providers/base.js +85 -85
- package/dist/ai/react/react-server.d.ts +1 -1
- package/dist/ai/react/react-server.js +17 -17
- package/dist/ai/react/use-agent.js +138 -138
- package/dist/auth/core.d.ts +140 -140
- package/dist/auth/core.js +165 -165
- package/dist/auth/index.d.ts +20 -20
- package/dist/auth/index.js +369 -369
- package/dist/auth/react-server.d.ts +1 -1
- package/dist/auth/react-server.js +10 -10
- package/dist/auth/react.d.ts +18 -18
- package/dist/auth/react.js +71 -71
- package/dist/bin/build-rsc-flashpack.js +6 -0
- package/dist/bin/build-rsc.js +555 -492
- package/dist/bin/build.js +365 -353
- package/dist/bin/generate.js +513 -510
- package/dist/bin/webpack.config.d.ts +3 -1
- package/dist/bin/webpack.config.js +7 -4
- package/dist/build/manifest.d.ts +169 -169
- package/dist/build/manifest.js +423 -423
- package/dist/build/rsc/client-manifest.d.ts +62 -62
- package/dist/build/rsc/client-manifest.js +295 -295
- package/dist/build/rsc/compiler.d.ts +3 -1
- package/dist/build/rsc/compiler.js +12 -7
- package/dist/build/rsc/native-scanner.d.ts +135 -135
- package/dist/build/rsc/native-scanner.js +203 -203
- package/dist/build/rsc/react-client-reference-manifest.d.ts +35 -28
- package/dist/build/rsc/react-client-reference-manifest.js +366 -240
- package/dist/build/standalone.js +260 -254
- package/dist/client/dynamic.react-server.d.ts +2 -2
- package/dist/client/dynamic.react-server.js +23 -23
- package/dist/client/link.js +1 -1
- package/dist/client/link.react-server.d.ts +2 -2
- package/dist/client/link.react-server.js +11 -11
- package/dist/client/navigation.js +2 -2
- package/dist/client/navigation.react-server.d.ts +1 -1
- package/dist/client/navigation.react-server.js +17 -17
- package/dist/client/router.react-server.d.ts +1 -1
- package/dist/client/router.react-server.js +17 -17
- package/dist/client/rsc-router.d.ts +1 -3
- package/dist/client/rsc-router.js +98 -45
- package/dist/client/rsc-router.react-server.d.ts +1 -1
- package/dist/client/rsc-router.react-server.js +17 -17
- package/dist/client/script.react-server.d.ts +2 -2
- package/dist/client/script.react-server.js +23 -23
- package/dist/config.d.ts +1 -1
- package/dist/config.js +1 -7
- package/dist/deploy/adapters/cloudflare.js +42 -41
- package/dist/deploy/adapters/docker.d.ts +1 -0
- package/dist/deploy/adapters/docker.js +5 -4
- package/dist/deploy/adapters/netlify.js +60 -27
- package/dist/deploy/adapters/vercel.js +80 -50
- package/dist/deploy/preflight.js +4 -3
- package/dist/deploy/runtime-pack.d.ts +11 -0
- package/dist/deploy/runtime-pack.js +300 -0
- package/dist/deploy/utils.d.ts +7 -1
- package/dist/deploy/utils.js +95 -3
- package/dist/flashpack/command.js +1 -0
- package/dist/flashpack/runtime.js +2 -1
- package/dist/image/get-img-props.js +21 -11
- package/dist/image/image-config.d.ts +2 -0
- package/dist/image/image-config.js +17 -0
- package/dist/image/index.d.ts +18 -3
- package/dist/image/index.js +1 -1
- package/dist/image/react-server.d.ts +1 -2
- package/dist/image/react-server.js +1 -1
- package/dist/index.d.ts +23 -23
- package/dist/index.js +61 -61
- package/dist/server/app-dir.d.ts +22 -0
- package/dist/server/app-dir.js +77 -0
- package/dist/server/app-router-runtime.d.ts +1 -0
- package/dist/server/app-router-runtime.js +34 -9
- package/dist/server/cookie-parse.d.ts +4 -4
- package/dist/server/cookie-parse.js +14 -14
- package/dist/server/engine.js +5 -5
- package/dist/server/hydration-chunks.d.ts +7 -0
- package/dist/server/hydration-chunks.js +49 -0
- package/dist/server/image-optimizer.js +2 -1
- package/dist/server/index.d.ts +109 -109
- package/dist/server/index.js +315 -315
- package/dist/server/middleware-runner.d.ts +125 -125
- package/dist/server/middleware-runner.js +607 -615
- package/dist/server/middleware-security.d.ts +36 -36
- package/dist/server/middleware-security.js +183 -183
- package/dist/server/module-compile-hook.js +706 -695
- package/dist/server/root-resolver.js +6 -5
- package/dist/server/rsc-engine-flashpack.d.ts +3 -1
- package/dist/server/rsc-engine-flashpack.js +12 -1
- package/dist/server/rsc-engine.d.ts +6 -1
- package/dist/server/rsc-engine.js +217 -280
- package/dist/server/rsc-upstream.js +900 -892
- package/dist/server/ssr-webpack-shim.d.ts +6 -0
- package/dist/server/ssr-webpack-shim.js +29 -0
- package/dist/server/static-generator.d.ts +2 -0
- package/dist/server/static-generator.js +33 -32
- package/dist/server/structure-validator.js +2 -1
- package/dist/server/structure-watch.js +2 -0
- package/dist/server/typed-api-runtime.js +639 -635
- package/dist/server/vista-import-map.js +134 -134
- package/dist/stack/index.d.ts +34 -34
- package/dist/stack/index.js +49 -49
- package/dist/stack/server/caller.d.ts +13 -13
- package/dist/stack/server/caller.js +42 -42
- package/dist/stack/server/executor.d.ts +40 -40
- package/dist/stack/server/executor.js +222 -222
- package/dist/stack/server/index.d.ts +11 -11
- package/dist/stack/server/index.js +24 -24
- package/dist/stack/server/procedure.d.ts +20 -20
- package/dist/stack/server/procedure.js +66 -66
- package/dist/stack/server/types.d.ts +113 -113
- package/dist/theme/react-server.d.ts +10 -10
- package/dist/theme/react-server.js +16 -16
- package/package.json +1 -1
|
@@ -1,62 +1,62 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Client Component Manifest Generator
|
|
3
|
-
*
|
|
4
|
-
* Scans the app directory and builds a manifest of all Client Components.
|
|
5
|
-
* Client components are those with 'use client' directive.
|
|
6
|
-
*
|
|
7
|
-
* The manifest maps component paths to their chunk names for client-side loading.
|
|
8
|
-
*/
|
|
9
|
-
/**
|
|
10
|
-
* Top-level app directories that may contain `'use client'` modules.
|
|
11
|
-
* Discovery is directory membership, not the import graph, so `utils/`,
|
|
12
|
-
* `lib/`, and `src/` have to be scanned explicitly or they never enter
|
|
13
|
-
* the React Client Manifest.
|
|
14
|
-
*/
|
|
15
|
-
export declare function discoverProjectClientRoots(cwd: string): Array<{
|
|
16
|
-
dir: string;
|
|
17
|
-
prefix: string;
|
|
18
|
-
}>;
|
|
19
|
-
export interface ClientComponentEntry {
|
|
20
|
-
/** Unique ID for this component */
|
|
21
|
-
id: string;
|
|
22
|
-
/** Relative path from app directory */
|
|
23
|
-
path: string;
|
|
24
|
-
/** Absolute file path */
|
|
25
|
-
absolutePath: string;
|
|
26
|
-
/** Generated chunk name */
|
|
27
|
-
chunkName: string;
|
|
28
|
-
/** Exported names from this module */
|
|
29
|
-
exports: string[];
|
|
30
|
-
/** Is async/lazy loaded */
|
|
31
|
-
async: boolean;
|
|
32
|
-
}
|
|
33
|
-
export interface ClientManifest {
|
|
34
|
-
/** Build ID for cache busting */
|
|
35
|
-
buildId: string;
|
|
36
|
-
/** Map of module ID to client component info */
|
|
37
|
-
clientModules: Record<string, ClientComponentEntry>;
|
|
38
|
-
/** Map of module path to module ID (for lookups) */
|
|
39
|
-
pathToId: Record<string, string>;
|
|
40
|
-
/** SSR module mapping (server paths to client chunks) */
|
|
41
|
-
ssrModuleMapping: Record<string, string>;
|
|
42
|
-
}
|
|
43
|
-
/**
|
|
44
|
-
* Generate the client component manifest
|
|
45
|
-
*/
|
|
46
|
-
export declare function generateClientManifest(cwd: string, appDir: string): ClientManifest;
|
|
47
|
-
export declare function generateClientManifestWithRoots(cwd: string, appDir: string, additionalRoots?: Array<{
|
|
48
|
-
dir: string;
|
|
49
|
-
prefix?: string;
|
|
50
|
-
}>): ClientManifest;
|
|
51
|
-
/**
|
|
52
|
-
* Get client component info by module ID
|
|
53
|
-
*/
|
|
54
|
-
export declare function getClientComponent(manifest: ClientManifest, moduleId: string): ClientComponentEntry | undefined;
|
|
55
|
-
/**
|
|
56
|
-
* Get client component by file path
|
|
57
|
-
*/
|
|
58
|
-
export declare function getClientComponentByPath(manifest: ClientManifest, filePath: string): ClientComponentEntry | undefined;
|
|
59
|
-
/**
|
|
60
|
-
* Check if a path is a client component
|
|
61
|
-
*/
|
|
62
|
-
export declare function isClientComponentPath(manifest: ClientManifest, filePath: string): boolean;
|
|
1
|
+
/**
|
|
2
|
+
* Client Component Manifest Generator
|
|
3
|
+
*
|
|
4
|
+
* Scans the app directory and builds a manifest of all Client Components.
|
|
5
|
+
* Client components are those with 'use client' directive.
|
|
6
|
+
*
|
|
7
|
+
* The manifest maps component paths to their chunk names for client-side loading.
|
|
8
|
+
*/
|
|
9
|
+
/**
|
|
10
|
+
* Top-level app directories that may contain `'use client'` modules.
|
|
11
|
+
* Discovery is directory membership, not the import graph, so `utils/`,
|
|
12
|
+
* `lib/`, and `src/` have to be scanned explicitly or they never enter
|
|
13
|
+
* the React Client Manifest.
|
|
14
|
+
*/
|
|
15
|
+
export declare function discoverProjectClientRoots(cwd: string): Array<{
|
|
16
|
+
dir: string;
|
|
17
|
+
prefix: string;
|
|
18
|
+
}>;
|
|
19
|
+
export interface ClientComponentEntry {
|
|
20
|
+
/** Unique ID for this component */
|
|
21
|
+
id: string;
|
|
22
|
+
/** Relative path from app directory */
|
|
23
|
+
path: string;
|
|
24
|
+
/** Absolute file path */
|
|
25
|
+
absolutePath: string;
|
|
26
|
+
/** Generated chunk name */
|
|
27
|
+
chunkName: string;
|
|
28
|
+
/** Exported names from this module */
|
|
29
|
+
exports: string[];
|
|
30
|
+
/** Is async/lazy loaded */
|
|
31
|
+
async: boolean;
|
|
32
|
+
}
|
|
33
|
+
export interface ClientManifest {
|
|
34
|
+
/** Build ID for cache busting */
|
|
35
|
+
buildId: string;
|
|
36
|
+
/** Map of module ID to client component info */
|
|
37
|
+
clientModules: Record<string, ClientComponentEntry>;
|
|
38
|
+
/** Map of module path to module ID (for lookups) */
|
|
39
|
+
pathToId: Record<string, string>;
|
|
40
|
+
/** SSR module mapping (server paths to client chunks) */
|
|
41
|
+
ssrModuleMapping: Record<string, string>;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* Generate the client component manifest
|
|
45
|
+
*/
|
|
46
|
+
export declare function generateClientManifest(cwd: string, appDir: string): ClientManifest;
|
|
47
|
+
export declare function generateClientManifestWithRoots(cwd: string, appDir: string, additionalRoots?: Array<{
|
|
48
|
+
dir: string;
|
|
49
|
+
prefix?: string;
|
|
50
|
+
}>): ClientManifest;
|
|
51
|
+
/**
|
|
52
|
+
* Get client component info by module ID
|
|
53
|
+
*/
|
|
54
|
+
export declare function getClientComponent(manifest: ClientManifest, moduleId: string): ClientComponentEntry | undefined;
|
|
55
|
+
/**
|
|
56
|
+
* Get client component by file path
|
|
57
|
+
*/
|
|
58
|
+
export declare function getClientComponentByPath(manifest: ClientManifest, filePath: string): ClientComponentEntry | undefined;
|
|
59
|
+
/**
|
|
60
|
+
* Check if a path is a client component
|
|
61
|
+
*/
|
|
62
|
+
export declare function isClientComponentPath(manifest: ClientManifest, filePath: string): boolean;
|