@wix/evalforge-types 0.73.0 → 0.74.0
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/build/index.js +4 -0
- package/build/index.js.map +2 -2
- package/build/index.mjs +4 -0
- package/build/index.mjs.map +2 -2
- package/build/types/project/project.d.ts +5 -2
- package/package.json +2 -2
package/build/index.js
CHANGED
|
@@ -1911,6 +1911,10 @@ var CreateProjectInputSchema = ProjectSchema.omit({
|
|
|
1911
1911
|
deleted: true,
|
|
1912
1912
|
wixAuthEmail: true,
|
|
1913
1913
|
base44AuthEmail: true
|
|
1914
|
+
}).extend({
|
|
1915
|
+
appId: import_zod33.z.string().describe(
|
|
1916
|
+
"Required: The ID of the app in Dev Center for credential scoping"
|
|
1917
|
+
)
|
|
1914
1918
|
});
|
|
1915
1919
|
var UpdateProjectInputSchema = CreateProjectInputSchema.partial();
|
|
1916
1920
|
|