@supernova-studio/client 1.46.0 → 1.46.2

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
@@ -5843,8 +5843,7 @@ var PageScreenshotInput = z214.object({
5843
5843
  height: z214.number().positive()
5844
5844
  }).optional(),
5845
5845
  supernovaAuth: z214.object({
5846
- accessToken: z214.string(),
5847
- authPageUrl: z214.string()
5846
+ accessToken: z214.string()
5848
5847
  }).optional()
5849
5848
  });
5850
5849
  var PageScreenshotOutput = z214.discriminatedUnion("success", [
@@ -10086,6 +10085,11 @@ var DTOForgeIconSet = z324.object({
10086
10085
  type: DTOForgeIconSetTypeV2,
10087
10086
  variant: z324.string().optional()
10088
10087
  });
10088
+ var DTOForgeTokenThemeSet = z324.object({
10089
+ id: z324.string(),
10090
+ name: z324.string(),
10091
+ tokenThemeIds: z324.array(z324.string())
10092
+ });
10089
10093
  var DTOForgeProjectTheme = z324.object({
10090
10094
  // Colors
10091
10095
  background: ColorTokenData,
@@ -10176,11 +10180,14 @@ var DTOForgeProjectContextV2 = z324.object({
10176
10180
  name: z324.string(),
10177
10181
  workspaceId: z324.string(),
10178
10182
  designSystemId: z324.string().optional(),
10183
+ brandId: z324.string().optional(),
10184
+ defaultTokenThemeSetId: z324.string().optional(),
10179
10185
  description: z324.string().optional(),
10180
10186
  productContext: z324.string().optional(),
10181
10187
  additionalContext: z324.string().optional(),
10182
10188
  isArchived: z324.boolean(),
10183
10189
  themePreset: z324.string().optional(),
10190
+ tokenThemeSets: z324.array(DTOForgeTokenThemeSet).optional(),
10184
10191
  componentSet: DTOForgeComponentSet,
10185
10192
  iconSet: DTOForgeIconSet,
10186
10193
  theme: DTOForgeProjectTheme,
@@ -10450,7 +10457,7 @@ var DTOForgeProject = z331.object({
10450
10457
  /** @deprecated use documents.length */
10451
10458
  numberOfDocuments: z331.number().int().nonnegative().optional(),
10452
10459
  /** @deprecated prefer fetching from project contexts endpoint separately */
10453
- context: DTOForgeProjectContextV2
10460
+ context: DTOForgeProjectContextV2.optional()
10454
10461
  });
10455
10462
  var DTOForgeProjectCreate = DTOForgeProject.pick({
10456
10463
  name: true,
@@ -19714,6 +19721,7 @@ export {
19714
19721
  DTOForgeSectionUpdateInput,
19715
19722
  DTOForgeSpecArtifact,
19716
19723
  DTOForgeThemeKnownPreset,
19724
+ DTOForgeTokenThemeSet,
19717
19725
  DTOFrameNodeStructure,
19718
19726
  DTOFrameNodeStructureListResponse,
19719
19727
  DTOGetBlockDefinitionsOutput,