@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.mjs
CHANGED
|
@@ -1696,6 +1696,10 @@ var CreateProjectInputSchema = ProjectSchema.omit({
|
|
|
1696
1696
|
deleted: true,
|
|
1697
1697
|
wixAuthEmail: true,
|
|
1698
1698
|
base44AuthEmail: true
|
|
1699
|
+
}).extend({
|
|
1700
|
+
appId: z33.string().describe(
|
|
1701
|
+
"Required: The ID of the app in Dev Center for credential scoping"
|
|
1702
|
+
)
|
|
1699
1703
|
});
|
|
1700
1704
|
var UpdateProjectInputSchema = CreateProjectInputSchema.partial();
|
|
1701
1705
|
|