@supernova-studio/model 1.47.6 → 1.48.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/dist/index.d.mts +33 -0
- package/dist/index.d.ts +33 -0
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -5052,6 +5052,7 @@ var Workspace = z133.object({
|
|
|
5052
5052
|
sso: nullishToOptional(SsoProvider),
|
|
5053
5053
|
npmRegistrySettings: nullishToOptional(NpmRegistryConfig),
|
|
5054
5054
|
aiFeaturesEnabled: z133.boolean().default(false),
|
|
5055
|
+
projectsEnabled: z133.boolean().default(false),
|
|
5055
5056
|
aiAskFeaturesEnabled: z133.boolean().default(false),
|
|
5056
5057
|
aiCustomInstruction: z133.string().optional(),
|
|
5057
5058
|
hasOpenMeterSubject: z133.boolean()
|
|
@@ -5069,6 +5070,7 @@ var WorkspaceConfigurationUpdate = z134.object({
|
|
|
5069
5070
|
npmRegistrySettings: NpmRegistryConfig.optional(),
|
|
5070
5071
|
profile: WorkspaceProfileUpdate.optional(),
|
|
5071
5072
|
aiFeaturesEnabled: z134.boolean().optional(),
|
|
5073
|
+
projectsEnabled: z134.boolean().optional(),
|
|
5072
5074
|
aiAskFeaturesEnabled: z134.boolean().optional(),
|
|
5073
5075
|
aiCustomInstruction: z134.string().optional()
|
|
5074
5076
|
});
|