@supernova-studio/client 0.55.35 → 0.57.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
@@ -298,7 +298,8 @@ var FeaturesSummary = z6.object({
298
298
  protectedPages: featureToggleSchema,
299
299
  approvals: featureToggleSchema,
300
300
  selectivePublishing: featureToggleSchema,
301
- designSystemAccessModes: featureToggleSchema
301
+ designSystemAccessModes: featureToggleSchema,
302
+ designSystemRoles: featureToggleSchema
302
303
  });
303
304
  var InvoiceSchema = z7.object({
304
305
  id: z7.string(),
@@ -3205,7 +3206,8 @@ var FigmaImportBaseContext = z90.object({
3205
3206
  });
3206
3207
  var FigmaImportContextWithSourcesState = FigmaImportBaseContext.extend({
3207
3208
  sourcesWithMissingAccess: z90.array(z90.string()).default([]),
3208
- shadowOpacityOptional: z90.boolean().default(false)
3209
+ shadowOpacityOptional: z90.boolean().default(false),
3210
+ typographyPropsKeepAliases: z90.boolean().default(false)
3209
3211
  });
3210
3212
  var ChangedImportedFigmaSourceData = ImportedFigmaSourceData.extend({
3211
3213
  importMetadata: DataSourceFigmaImportMetadata
@@ -4518,7 +4520,13 @@ var ExporterWorkspaceMembership = z165.object({
4518
4520
  exporterId: z165.string(),
4519
4521
  role: ExporterWorkspaceMembershipRole
4520
4522
  });
4521
- var FlaggedFeature = z166.enum(["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter", "VariablesOrder"]);
4523
+ var FlaggedFeature = z166.enum([
4524
+ "FigmaImporterV2",
4525
+ "ShadowOpacityOptional",
4526
+ "DisableImporter",
4527
+ "VariablesOrder",
4528
+ "TypographyPropsKeepAliases"
4529
+ ]);
4522
4530
  var FeatureFlagMap = z166.record(FlaggedFeature, z166.boolean());
4523
4531
  var FeatureFlag = z166.object({
4524
4532
  id: z166.string(),
@@ -5282,9 +5290,10 @@ var DimensionsVariableScopeSchema = z183.enum([
5282
5290
  "LINE_HEIGHT",
5283
5291
  "LETTER_SPACING",
5284
5292
  "PARAGRAPH_SPACING",
5285
- "PARAGRAPH_INDENT"
5293
+ "PARAGRAPH_INDENT",
5294
+ "FONT_WEIGHT"
5286
5295
  ]);
5287
- var StringVariableScopeSchema = z183.enum(["TEXT_CONTENT", "FONT_FAMILY", "FONT_STYLE", "FONT_WEIGHT"]);
5296
+ var StringVariableScopeSchema = z183.enum(["TEXT_CONTENT", "FONT_FAMILY", "FONT_STYLE"]);
5288
5297
  var DimensionsVariableScopeType = DimensionsVariableScopeSchema.enum;
5289
5298
  var StringVariableScopeType = StringVariableScopeSchema.enum;
5290
5299
  var VariableScope = z183.string();
@@ -12355,6 +12364,7 @@ export {
12355
12364
  DTOWorkspaceRole,
12356
12365
  DesignSystemBffEndpoint,
12357
12366
  DesignSystemMembersEndpoint,
12367
+ DesignSystemSourcesEndpoint,
12358
12368
  DesignSystemVersionsEndpoint,
12359
12369
  DesignSystemsEndpoint,
12360
12370
  DimensionsVariableScopeType,