@supernova-studio/client 1.49.0 → 1.49.1
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 +11 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -10393,11 +10393,13 @@ var DTOForgeProjectContextListResponseV2 = z326.object({ contexts: z326.array(DT
|
|
|
10393
10393
|
// src/api/dto/forge/project-context-override.ts
|
|
10394
10394
|
var DTOProjectContextOverride = z327.object({
|
|
10395
10395
|
projectId: z327.string(),
|
|
10396
|
-
theme: DTOForgeProjectTheme.partial()
|
|
10396
|
+
theme: DTOForgeProjectTheme.partial(),
|
|
10397
|
+
themePreset: z327.string().optional()
|
|
10397
10398
|
});
|
|
10398
10399
|
var DTOProjectContextOverrideInput = z327.object({
|
|
10399
10400
|
updateSharedContext: z327.boolean().optional(),
|
|
10400
|
-
theme: DTOForgeProjectTheme.partial()
|
|
10401
|
+
theme: DTOForgeProjectTheme.partial(),
|
|
10402
|
+
themePreset: z327.string().optional()
|
|
10401
10403
|
});
|
|
10402
10404
|
var DTOProjectContextOverrideResponse = z327.object({
|
|
10403
10405
|
override: DTOProjectContextOverride,
|