@supernova-studio/client 1.49.0 → 1.50.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.mjs CHANGED
@@ -5753,7 +5753,8 @@ var FlaggedFeature = z207.enum([
5753
5753
  "PulsarProfilerMode",
5754
5754
  "ForgeE2BTemplate",
5755
5755
  "ForgeOnDemandIterations",
5756
- "ForgeAutoRetryOnErrors"
5756
+ "ForgeAutoRetryOnErrors",
5757
+ "CustomForgeTemplate"
5757
5758
  ]);
5758
5759
  var FeatureFlagMap = z207.record(FlaggedFeature, z207.boolean());
5759
5760
  var FeatureFlag = z207.object({
@@ -10393,11 +10394,13 @@ var DTOForgeProjectContextListResponseV2 = z326.object({ contexts: z326.array(DT
10393
10394
  // src/api/dto/forge/project-context-override.ts
10394
10395
  var DTOProjectContextOverride = z327.object({
10395
10396
  projectId: z327.string(),
10396
- theme: DTOForgeProjectTheme.partial()
10397
+ theme: DTOForgeProjectTheme.partial(),
10398
+ themePreset: z327.string().optional()
10397
10399
  });
10398
10400
  var DTOProjectContextOverrideInput = z327.object({
10399
10401
  updateSharedContext: z327.boolean().optional(),
10400
- theme: DTOForgeProjectTheme.partial()
10402
+ theme: DTOForgeProjectTheme.partial(),
10403
+ themePreset: z327.string().optional()
10401
10404
  });
10402
10405
  var DTOProjectContextOverrideResponse = z327.object({
10403
10406
  override: DTOProjectContextOverride,