@supernova-studio/client 1.60.3 → 1.61.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
@@ -7018,6 +7018,7 @@ var Variable = z235.object({
7018
7018
  name: z235.string(),
7019
7019
  key: z235.string(),
7020
7020
  variableCollectionId: z235.string(),
7021
+ variableCollectionKey: z235.string().optional(),
7021
7022
  resolvedType: ResolvedVariableType,
7022
7023
  valuesByMode: z235.record(VariableValue),
7023
7024
  remote: z235.boolean(),
@@ -7028,27 +7029,34 @@ var Variable = z235.object({
7028
7029
  });
7029
7030
  var VariableMode = z235.object({
7030
7031
  modeId: z235.string(),
7031
- name: z235.string()
7032
+ name: z235.string(),
7033
+ parentModeId: z235.string().optional()
7032
7034
  });
7033
7035
  var Collection2 = z235.object({
7034
7036
  id: z235.string(),
7035
7037
  name: z235.string(),
7038
+ key: z235.string().optional(),
7036
7039
  modes: z235.array(VariableMode),
7037
7040
  defaultModeId: z235.string(),
7038
7041
  remote: z235.boolean(),
7039
- hiddenFromPublishing: z235.boolean()
7042
+ hiddenFromPublishing: z235.boolean(),
7043
+ isExtension: z235.boolean().optional(),
7044
+ parentVariableCollectionId: z235.string().optional(),
7045
+ parentVariableCollectionKey: z235.string().optional(),
7046
+ variableOverrides: z235.record(z235.string(), z235.record(z235.string(), VariableValue)).optional()
7040
7047
  });
7041
7048
  var VariablesMapping = z235.object({
7042
7049
  variableCollections: z235.array(z235.string()).min(1),
7050
+ variableCollectionKeys: z235.array(z235.string()).optional(),
7043
7051
  variableMode: z235.string().min(1),
7044
7052
  supernovaBrand: z235.string().min(1),
7045
- supernovaTheme: z235.string().min(1).optional().or(z235.null())
7053
+ supernovaTheme: z235.string().min(1).nullable().optional()
7046
7054
  });
7047
7055
  var FormattedCollections = z235.object({
7048
- variables: z235.record(z235.string(), Variable),
7049
7056
  variableCollections: z235.record(z235.string(), Collection2),
7050
- mappings: z235.array(VariablesMapping).optional(),
7051
- variablesOrder: z235.string().array().optional()
7057
+ variables: z235.record(z235.string(), Variable),
7058
+ variablesOrder: z235.string().array().optional(),
7059
+ mappings: z235.array(VariablesMapping).optional()
7052
7060
  });
7053
7061
 
7054
7062
  // src/api/dto/design-systems/file.ts