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