@wix/ditto-codegen-public 1.0.187 → 1.0.189
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/out.js +7 -3
- package/package.json +2 -2
package/dist/out.js
CHANGED
|
@@ -36968,7 +36968,11 @@ var require_DashboardPageAgent = __commonJS({
|
|
|
36968
36968
|
- \u2705 You need a dedicated administrative interface
|
|
36969
36969
|
- \u2705 Creating business management tools
|
|
36970
36970
|
- \u2705 Building custom reporting dashboards
|
|
36971
|
-
- \u2705 Need full control over page layout and functionality
|
|
36971
|
+
- \u2705 Need full control over page layout and functionality
|
|
36972
|
+
|
|
36973
|
+
### Do NOT add Dashboard Pages for:
|
|
36974
|
+
|
|
36975
|
+
- \u274C Site Widget configuration - use the widget's **built-in settings panel** instead`;
|
|
36972
36976
|
};
|
|
36973
36977
|
exports2.getDashboardPageDecisionGuide = getDashboardPageDecisionGuide;
|
|
36974
36978
|
}
|
|
@@ -67178,14 +67182,14 @@ var require_IterationAgent = __commonJS({
|
|
|
67178
67182
|
var contextBuilders_1 = require_contextBuilders();
|
|
67179
67183
|
var CurrentExtensionSchema = zod_1.z.object({
|
|
67180
67184
|
extensionType: zod_1.z.enum(codegen_common_logic_1.codeGenerationExtensionTypes).describe("The extension kind to trigger"),
|
|
67181
|
-
name: zod_1.z.string().min(2).
|
|
67185
|
+
name: zod_1.z.string().min(2).describe("Short, human-readable name for the extension. Less than 30 chars."),
|
|
67182
67186
|
relatedSpis: zod_1.z.array(zod_1.z.string()).optional().describe("Optional value, only for SPI extensions - specify the SPI types"),
|
|
67183
67187
|
paths: zod_1.z.array(zod_1.z.string()).describe("Paths relevant for this extension"),
|
|
67184
67188
|
relevantUserRequest: zod_1.z.string().describe("What part of the user request this extension should do, do not reference other extensions.")
|
|
67185
67189
|
});
|
|
67186
67190
|
var AdditionalExtensionSchema = zod_1.z.object({
|
|
67187
67191
|
extensionType: zod_1.z.enum(codegen_common_logic_1.codeGenerationExtensionTypes).describe("The extension kind to add"),
|
|
67188
|
-
name: zod_1.z.string().describe("
|
|
67192
|
+
name: zod_1.z.string().min(2).max(30).describe("Short, human-readable name for the extension. Less than 30 chars."),
|
|
67189
67193
|
relatedSpis: zod_1.z.array(zod_1.z.string()).optional().describe("Optional value, only for SPI extensions - specify the SPI types"),
|
|
67190
67194
|
relevantUserRequest: zod_1.z.string().describe("What part of the user request this extension should do, do not reference other extensions.")
|
|
67191
67195
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/ditto-codegen-public",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.189",
|
|
4
4
|
"description": "AI-powered Wix CLI app generator - standalone executable",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "node build.mjs",
|
|
@@ -24,5 +24,5 @@
|
|
|
24
24
|
"@wix/ditto-codegen": "1.0.0",
|
|
25
25
|
"esbuild": "^0.25.9"
|
|
26
26
|
},
|
|
27
|
-
"falconPackageHash": "
|
|
27
|
+
"falconPackageHash": "bb5b65ef8d8d49eabb2d02f2d709470c1a05e78004384d562a39b10a"
|
|
28
28
|
}
|