veryfront 0.0.32 → 0.0.34
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/dist/ai/index.js +6 -2
- package/dist/ai/index.js.map +4 -4
- package/dist/ai/react.js +63 -12
- package/dist/ai/react.js.map +2 -2
- package/dist/cli.js +213 -40
- package/dist/components.js +4 -2
- package/dist/components.js.map +2 -2
- package/dist/config.js.map +1 -1
- package/dist/data.js +1 -1
- package/dist/data.js.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +2 -2
- package/package.json +1 -1
package/dist/ai/index.js
CHANGED
|
@@ -1718,7 +1718,7 @@ var BYTES_PER_MB = 1024 * 1024;
|
|
|
1718
1718
|
// deno.json
|
|
1719
1719
|
var deno_default = {
|
|
1720
1720
|
name: "veryfront",
|
|
1721
|
-
version: "0.0.
|
|
1721
|
+
version: "0.0.34",
|
|
1722
1722
|
exclude: [
|
|
1723
1723
|
"npm/",
|
|
1724
1724
|
"dist/",
|
|
@@ -3424,6 +3424,9 @@ function generateAgentId() {
|
|
|
3424
3424
|
return `agent_${Date.now()}_${agentIdCounter++}`;
|
|
3425
3425
|
}
|
|
3426
3426
|
|
|
3427
|
+
// src/ai/index.ts
|
|
3428
|
+
import { z as z7 } from "zod";
|
|
3429
|
+
|
|
3427
3430
|
// src/core/config/schema.ts
|
|
3428
3431
|
import { z as z6 } from "zod";
|
|
3429
3432
|
var corsSchema = z6.union([z6.boolean(), z6.object({ origin: z6.string().optional() }).strict()]);
|
|
@@ -7955,6 +7958,7 @@ export {
|
|
|
7955
7958
|
useAISDK,
|
|
7956
7959
|
validatePlatformCompatibility,
|
|
7957
7960
|
waitForApproval,
|
|
7958
|
-
workflow
|
|
7961
|
+
workflow,
|
|
7962
|
+
z7 as z
|
|
7959
7963
|
};
|
|
7960
7964
|
//# sourceMappingURL=index.js.map
|