@supernova-studio/model 0.58.27 → 0.59.1

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.d.mts CHANGED
@@ -34733,7 +34733,7 @@ declare const ImportJob: z.ZodObject<z.objectUtil.extendShape<{
34733
34733
  id: string;
34734
34734
  createdAt: Date;
34735
34735
  updatedAt: Date;
34736
- state: "InProgress" | "Success" | "PendingInput" | "Queued" | "Failed";
34736
+ state: "InProgress" | "Success" | "Failed" | "PendingInput" | "Queued";
34737
34737
  designSystemId: string;
34738
34738
  designSystemVersionId: string;
34739
34739
  sourceIds: string[];
@@ -34746,7 +34746,7 @@ declare const ImportJob: z.ZodObject<z.objectUtil.extendShape<{
34746
34746
  id: string;
34747
34747
  createdAt: Date;
34748
34748
  updatedAt: Date;
34749
- state: "InProgress" | "Success" | "PendingInput" | "Queued" | "Failed";
34749
+ state: "InProgress" | "Success" | "Failed" | "PendingInput" | "Queued";
34750
34750
  designSystemId: string;
34751
34751
  designSystemVersionId: string;
34752
34752
  sourceIds: string[];
@@ -50520,114 +50520,143 @@ declare const FigmaFileStructureElementData: z.ZodObject<{
50520
50520
  type FigmaFileStructureElementData = z.infer<typeof FigmaFileStructureElementData>;
50521
50521
  declare function figmaFileStructureToMap(root: FigmaFileStructureNode): Map<string, FigmaFileStructureNode>;
50522
50522
 
50523
+ declare const FigmaNodeRenderState: z.ZodEnum<["InProgress", "Success", "Failed"]>;
50524
+ type FigmaNodeRenderState = z.infer<typeof FigmaNodeRenderState>;
50523
50525
  declare const FigmaNodeRenderFormat: z.ZodEnum<["Png", "Svg"]>;
50524
50526
  type FigmaNodeRenderFormat = z.infer<typeof FigmaNodeRenderFormat>;
50525
- declare const FigmaNodeReferenceData: z.ZodObject<{
50526
- structureElementId: z.ZodString;
50527
- nodeId: z.ZodString;
50528
- fileId: z.ZodOptional<z.ZodString>;
50529
- valid: z.ZodBoolean;
50530
- format: z.ZodDefault<z.ZodEnum<["Png", "Svg"]>>;
50531
- assetId: z.ZodOptional<z.ZodString>;
50532
- assetScale: z.ZodOptional<z.ZodNumber>;
50533
- assetWidth: z.ZodOptional<z.ZodNumber>;
50534
- assetHeight: z.ZodOptional<z.ZodNumber>;
50535
- assetUrl: z.ZodOptional<z.ZodString>;
50536
- assetOriginKey: z.ZodOptional<z.ZodString>;
50527
+ declare const FigmaNodeRenderErrorType: z.ZodEnum<["MissingIntegration", "NodeNotFound", "RenderError"]>;
50528
+ type FigmaNodeRenderErrorType = z.infer<typeof FigmaNodeRenderErrorType>;
50529
+ declare const FigmaNodeRelinkData: z.ZodObject<{
50530
+ fileId: z.ZodString;
50537
50531
  }, "strip", z.ZodTypeAny, {
50538
- valid: boolean;
50532
+ fileId: string;
50533
+ }, {
50534
+ fileId: string;
50535
+ }>;
50536
+ type FigmaNodeRelinkData = z.infer<typeof FigmaNodeRelinkData>;
50537
+ declare const FigmaNodeRenderedImage: z.ZodObject<{
50538
+ resourceId: z.ZodString;
50539
+ format: z.ZodEnum<["Png", "Svg"]>;
50540
+ scale: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
50541
+ width: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
50542
+ height: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
50543
+ url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
50544
+ originKey: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
50545
+ }, "strip", z.ZodTypeAny, {
50546
+ resourceId: string;
50539
50547
  format: "Png" | "Svg";
50540
- structureElementId: string;
50541
- nodeId: string;
50542
- assetId?: string | undefined;
50543
- assetScale?: number | undefined;
50544
- assetUrl?: string | undefined;
50545
- fileId?: string | undefined;
50546
- assetWidth?: number | undefined;
50547
- assetHeight?: number | undefined;
50548
- assetOriginKey?: string | undefined;
50548
+ url?: string | undefined;
50549
+ width?: number | undefined;
50550
+ height?: number | undefined;
50551
+ originKey?: string | undefined;
50552
+ scale?: number | undefined;
50549
50553
  }, {
50550
- valid: boolean;
50551
- structureElementId: string;
50552
- nodeId: string;
50553
- assetId?: string | undefined;
50554
- assetScale?: number | undefined;
50555
- assetUrl?: string | undefined;
50556
- format?: "Png" | "Svg" | undefined;
50557
- fileId?: string | undefined;
50558
- assetWidth?: number | undefined;
50559
- assetHeight?: number | undefined;
50560
- assetOriginKey?: string | undefined;
50554
+ resourceId: string;
50555
+ format: "Png" | "Svg";
50556
+ url?: string | null | undefined;
50557
+ width?: number | null | undefined;
50558
+ height?: number | null | undefined;
50559
+ originKey?: string | null | undefined;
50560
+ scale?: number | null | undefined;
50561
50561
  }>;
50562
- type FigmaNodeReferenceData = z.infer<typeof FigmaNodeReferenceData>;
50563
- declare const FigmaNodeReferenceElementData: z.ZodObject<{
50564
- value: z.ZodObject<{
50565
- structureElementId: z.ZodString;
50566
- nodeId: z.ZodString;
50567
- fileId: z.ZodOptional<z.ZodString>;
50568
- valid: z.ZodBoolean;
50569
- format: z.ZodDefault<z.ZodEnum<["Png", "Svg"]>>;
50570
- assetId: z.ZodOptional<z.ZodString>;
50571
- assetScale: z.ZodOptional<z.ZodNumber>;
50572
- assetWidth: z.ZodOptional<z.ZodNumber>;
50573
- assetHeight: z.ZodOptional<z.ZodNumber>;
50574
- assetUrl: z.ZodOptional<z.ZodString>;
50575
- assetOriginKey: z.ZodOptional<z.ZodString>;
50562
+ type FigmaNodeRenderedImage = z.infer<typeof FigmaNodeRenderedImage>;
50563
+ declare const FigmaNodeRenderError: z.ZodObject<{
50564
+ type: z.ZodEnum<["MissingIntegration", "NodeNotFound", "RenderError"]>;
50565
+ }, "strip", z.ZodTypeAny, {
50566
+ type: "MissingIntegration" | "NodeNotFound" | "RenderError";
50567
+ }, {
50568
+ type: "MissingIntegration" | "NodeNotFound" | "RenderError";
50569
+ }>;
50570
+ type FigmaNodeRenderError = z.infer<typeof FigmaNodeRenderError>;
50571
+ declare const FigmaNodeReferenceData: z.ZodObject<{
50572
+ nodeId: z.ZodString;
50573
+ format: z.ZodEnum<["Png", "Svg"]>;
50574
+ scale: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
50575
+ renderState: z.ZodEnum<["InProgress", "Success", "Failed"]>;
50576
+ renderedImage: z.ZodOptional<z.ZodObject<{
50577
+ resourceId: z.ZodString;
50578
+ format: z.ZodEnum<["Png", "Svg"]>;
50579
+ scale: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
50580
+ width: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
50581
+ height: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
50582
+ url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
50583
+ originKey: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
50576
50584
  }, "strip", z.ZodTypeAny, {
50577
- valid: boolean;
50585
+ resourceId: string;
50578
50586
  format: "Png" | "Svg";
50579
- structureElementId: string;
50580
- nodeId: string;
50581
- assetId?: string | undefined;
50582
- assetScale?: number | undefined;
50583
- assetUrl?: string | undefined;
50584
- fileId?: string | undefined;
50585
- assetWidth?: number | undefined;
50586
- assetHeight?: number | undefined;
50587
- assetOriginKey?: string | undefined;
50587
+ url?: string | undefined;
50588
+ width?: number | undefined;
50589
+ height?: number | undefined;
50590
+ originKey?: string | undefined;
50591
+ scale?: number | undefined;
50588
50592
  }, {
50589
- valid: boolean;
50590
- structureElementId: string;
50591
- nodeId: string;
50592
- assetId?: string | undefined;
50593
- assetScale?: number | undefined;
50594
- assetUrl?: string | undefined;
50595
- format?: "Png" | "Svg" | undefined;
50596
- fileId?: string | undefined;
50597
- assetWidth?: number | undefined;
50598
- assetHeight?: number | undefined;
50599
- assetOriginKey?: string | undefined;
50600
- }>;
50593
+ resourceId: string;
50594
+ format: "Png" | "Svg";
50595
+ url?: string | null | undefined;
50596
+ width?: number | null | undefined;
50597
+ height?: number | null | undefined;
50598
+ originKey?: string | null | undefined;
50599
+ scale?: number | null | undefined;
50600
+ }>>;
50601
+ renderError: z.ZodOptional<z.ZodObject<{
50602
+ type: z.ZodEnum<["MissingIntegration", "NodeNotFound", "RenderError"]>;
50603
+ }, "strip", z.ZodTypeAny, {
50604
+ type: "MissingIntegration" | "NodeNotFound" | "RenderError";
50605
+ }, {
50606
+ type: "MissingIntegration" | "NodeNotFound" | "RenderError";
50607
+ }>>;
50608
+ hasSource: z.ZodBoolean;
50609
+ relinkData: z.ZodOptional<z.ZodObject<{
50610
+ fileId: z.ZodString;
50611
+ }, "strip", z.ZodTypeAny, {
50612
+ fileId: string;
50613
+ }, {
50614
+ fileId: string;
50615
+ }>>;
50601
50616
  }, "strip", z.ZodTypeAny, {
50602
- value: {
50603
- valid: boolean;
50617
+ format: "Png" | "Svg";
50618
+ nodeId: string;
50619
+ renderState: "InProgress" | "Success" | "Failed";
50620
+ hasSource: boolean;
50621
+ scale?: number | undefined;
50622
+ renderedImage?: {
50623
+ resourceId: string;
50604
50624
  format: "Png" | "Svg";
50605
- structureElementId: string;
50606
- nodeId: string;
50607
- assetId?: string | undefined;
50608
- assetScale?: number | undefined;
50609
- assetUrl?: string | undefined;
50610
- fileId?: string | undefined;
50611
- assetWidth?: number | undefined;
50612
- assetHeight?: number | undefined;
50613
- assetOriginKey?: string | undefined;
50614
- };
50625
+ url?: string | undefined;
50626
+ width?: number | undefined;
50627
+ height?: number | undefined;
50628
+ originKey?: string | undefined;
50629
+ scale?: number | undefined;
50630
+ } | undefined;
50631
+ renderError?: {
50632
+ type: "MissingIntegration" | "NodeNotFound" | "RenderError";
50633
+ } | undefined;
50634
+ relinkData?: {
50635
+ fileId: string;
50636
+ } | undefined;
50615
50637
  }, {
50616
- value: {
50617
- valid: boolean;
50618
- structureElementId: string;
50619
- nodeId: string;
50620
- assetId?: string | undefined;
50621
- assetScale?: number | undefined;
50622
- assetUrl?: string | undefined;
50623
- format?: "Png" | "Svg" | undefined;
50624
- fileId?: string | undefined;
50625
- assetWidth?: number | undefined;
50626
- assetHeight?: number | undefined;
50627
- assetOriginKey?: string | undefined;
50628
- };
50638
+ format: "Png" | "Svg";
50639
+ nodeId: string;
50640
+ renderState: "InProgress" | "Success" | "Failed";
50641
+ hasSource: boolean;
50642
+ scale?: number | null | undefined;
50643
+ renderedImage?: {
50644
+ resourceId: string;
50645
+ format: "Png" | "Svg";
50646
+ url?: string | null | undefined;
50647
+ width?: number | null | undefined;
50648
+ height?: number | null | undefined;
50649
+ originKey?: string | null | undefined;
50650
+ scale?: number | null | undefined;
50651
+ } | undefined;
50652
+ renderError?: {
50653
+ type: "MissingIntegration" | "NodeNotFound" | "RenderError";
50654
+ } | undefined;
50655
+ relinkData?: {
50656
+ fileId: string;
50657
+ } | undefined;
50629
50658
  }>;
50630
- type FigmaNodeReferenceElementData = z.infer<typeof FigmaNodeReferenceElementData>;
50659
+ type FigmaNodeReferenceData = z.infer<typeof FigmaNodeReferenceData>;
50631
50660
 
50632
50661
  declare const FontFamilyValue: z.ZodString;
50633
50662
  type FontFamilyValue = z.infer<typeof FontFamilyValue>;
@@ -60490,41 +60519,92 @@ declare const FigmaNodeReference: z.ZodObject<z.objectUtil.extendShape<{
60490
60519
  updatedAt: z.ZodDate;
60491
60520
  }, {
60492
60521
  data: z.ZodObject<{
60493
- structureElementId: z.ZodString;
60494
60522
  nodeId: z.ZodString;
60495
- fileId: z.ZodOptional<z.ZodString>;
60496
- valid: z.ZodBoolean;
60497
- format: z.ZodDefault<z.ZodEnum<["Png", "Svg"]>>;
60498
- assetId: z.ZodOptional<z.ZodString>;
60499
- assetScale: z.ZodOptional<z.ZodNumber>;
60500
- assetWidth: z.ZodOptional<z.ZodNumber>;
60501
- assetHeight: z.ZodOptional<z.ZodNumber>;
60502
- assetUrl: z.ZodOptional<z.ZodString>;
60503
- assetOriginKey: z.ZodOptional<z.ZodString>;
60523
+ format: z.ZodEnum<["Png", "Svg"]>;
60524
+ scale: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
60525
+ renderState: z.ZodEnum<["InProgress", "Success", "Failed"]>;
60526
+ renderedImage: z.ZodOptional<z.ZodObject<{
60527
+ resourceId: z.ZodString;
60528
+ format: z.ZodEnum<["Png", "Svg"]>;
60529
+ scale: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
60530
+ width: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
60531
+ height: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
60532
+ url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
60533
+ originKey: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
60534
+ }, "strip", z.ZodTypeAny, {
60535
+ resourceId: string;
60536
+ format: "Png" | "Svg";
60537
+ url?: string | undefined;
60538
+ width?: number | undefined;
60539
+ height?: number | undefined;
60540
+ originKey?: string | undefined;
60541
+ scale?: number | undefined;
60542
+ }, {
60543
+ resourceId: string;
60544
+ format: "Png" | "Svg";
60545
+ url?: string | null | undefined;
60546
+ width?: number | null | undefined;
60547
+ height?: number | null | undefined;
60548
+ originKey?: string | null | undefined;
60549
+ scale?: number | null | undefined;
60550
+ }>>;
60551
+ renderError: z.ZodOptional<z.ZodObject<{
60552
+ type: z.ZodEnum<["MissingIntegration", "NodeNotFound", "RenderError"]>;
60553
+ }, "strip", z.ZodTypeAny, {
60554
+ type: "MissingIntegration" | "NodeNotFound" | "RenderError";
60555
+ }, {
60556
+ type: "MissingIntegration" | "NodeNotFound" | "RenderError";
60557
+ }>>;
60558
+ hasSource: z.ZodBoolean;
60559
+ relinkData: z.ZodOptional<z.ZodObject<{
60560
+ fileId: z.ZodString;
60561
+ }, "strip", z.ZodTypeAny, {
60562
+ fileId: string;
60563
+ }, {
60564
+ fileId: string;
60565
+ }>>;
60504
60566
  }, "strip", z.ZodTypeAny, {
60505
- valid: boolean;
60506
60567
  format: "Png" | "Svg";
60507
- structureElementId: string;
60508
60568
  nodeId: string;
60509
- assetId?: string | undefined;
60510
- assetScale?: number | undefined;
60511
- assetUrl?: string | undefined;
60512
- fileId?: string | undefined;
60513
- assetWidth?: number | undefined;
60514
- assetHeight?: number | undefined;
60515
- assetOriginKey?: string | undefined;
60569
+ renderState: "InProgress" | "Success" | "Failed";
60570
+ hasSource: boolean;
60571
+ scale?: number | undefined;
60572
+ renderedImage?: {
60573
+ resourceId: string;
60574
+ format: "Png" | "Svg";
60575
+ url?: string | undefined;
60576
+ width?: number | undefined;
60577
+ height?: number | undefined;
60578
+ originKey?: string | undefined;
60579
+ scale?: number | undefined;
60580
+ } | undefined;
60581
+ renderError?: {
60582
+ type: "MissingIntegration" | "NodeNotFound" | "RenderError";
60583
+ } | undefined;
60584
+ relinkData?: {
60585
+ fileId: string;
60586
+ } | undefined;
60516
60587
  }, {
60517
- valid: boolean;
60518
- structureElementId: string;
60588
+ format: "Png" | "Svg";
60519
60589
  nodeId: string;
60520
- assetId?: string | undefined;
60521
- assetScale?: number | undefined;
60522
- assetUrl?: string | undefined;
60523
- format?: "Png" | "Svg" | undefined;
60524
- fileId?: string | undefined;
60525
- assetWidth?: number | undefined;
60526
- assetHeight?: number | undefined;
60527
- assetOriginKey?: string | undefined;
60590
+ renderState: "InProgress" | "Success" | "Failed";
60591
+ hasSource: boolean;
60592
+ scale?: number | null | undefined;
60593
+ renderedImage?: {
60594
+ resourceId: string;
60595
+ format: "Png" | "Svg";
60596
+ url?: string | null | undefined;
60597
+ width?: number | null | undefined;
60598
+ height?: number | null | undefined;
60599
+ originKey?: string | null | undefined;
60600
+ scale?: number | null | undefined;
60601
+ } | undefined;
60602
+ renderError?: {
60603
+ type: "MissingIntegration" | "NodeNotFound" | "RenderError";
60604
+ } | undefined;
60605
+ relinkData?: {
60606
+ fileId: string;
60607
+ } | undefined;
60528
60608
  }>;
60529
60609
  origin: z.ZodObject<{
60530
60610
  sourceId: z.ZodString;
@@ -60543,17 +60623,26 @@ declare const FigmaNodeReference: z.ZodObject<z.objectUtil.extendShape<{
60543
60623
  persistentId: string;
60544
60624
  designSystemVersionId: string;
60545
60625
  data: {
60546
- valid: boolean;
60547
60626
  format: "Png" | "Svg";
60548
- structureElementId: string;
60549
60627
  nodeId: string;
60550
- assetId?: string | undefined;
60551
- assetScale?: number | undefined;
60552
- assetUrl?: string | undefined;
60553
- fileId?: string | undefined;
60554
- assetWidth?: number | undefined;
60555
- assetHeight?: number | undefined;
60556
- assetOriginKey?: string | undefined;
60628
+ renderState: "InProgress" | "Success" | "Failed";
60629
+ hasSource: boolean;
60630
+ scale?: number | undefined;
60631
+ renderedImage?: {
60632
+ resourceId: string;
60633
+ format: "Png" | "Svg";
60634
+ url?: string | undefined;
60635
+ width?: number | undefined;
60636
+ height?: number | undefined;
60637
+ originKey?: string | undefined;
60638
+ scale?: number | undefined;
60639
+ } | undefined;
60640
+ renderError?: {
60641
+ type: "MissingIntegration" | "NodeNotFound" | "RenderError";
60642
+ } | undefined;
60643
+ relinkData?: {
60644
+ fileId: string;
60645
+ } | undefined;
60557
60646
  };
60558
60647
  origin: {
60559
60648
  sourceId: string;
@@ -60570,17 +60659,26 @@ declare const FigmaNodeReference: z.ZodObject<z.objectUtil.extendShape<{
60570
60659
  persistentId: string;
60571
60660
  designSystemVersionId: string;
60572
60661
  data: {
60573
- valid: boolean;
60574
- structureElementId: string;
60662
+ format: "Png" | "Svg";
60575
60663
  nodeId: string;
60576
- assetId?: string | undefined;
60577
- assetScale?: number | undefined;
60578
- assetUrl?: string | undefined;
60579
- format?: "Png" | "Svg" | undefined;
60580
- fileId?: string | undefined;
60581
- assetWidth?: number | undefined;
60582
- assetHeight?: number | undefined;
60583
- assetOriginKey?: string | undefined;
60664
+ renderState: "InProgress" | "Success" | "Failed";
60665
+ hasSource: boolean;
60666
+ scale?: number | null | undefined;
60667
+ renderedImage?: {
60668
+ resourceId: string;
60669
+ format: "Png" | "Svg";
60670
+ url?: string | null | undefined;
60671
+ width?: number | null | undefined;
60672
+ height?: number | null | undefined;
60673
+ originKey?: string | null | undefined;
60674
+ scale?: number | null | undefined;
60675
+ } | undefined;
60676
+ renderError?: {
60677
+ type: "MissingIntegration" | "NodeNotFound" | "RenderError";
60678
+ } | undefined;
60679
+ relinkData?: {
60680
+ fileId: string;
60681
+ } | undefined;
60584
60682
  };
60585
60683
  origin: {
60586
60684
  sourceId: string;
@@ -61703,7 +61801,8 @@ type DesignTokenType = z.infer<typeof DesignTokenType>;
61703
61801
  declare const DesignElementType: z.ZodUnion<[z.ZodEnum<["Color", "Border", "Gradient", "Shadow", "Dimension", "Duration", "Size", "Space", "Opacity", "FontSize", "LineHeight", "LetterSpacing", "ParagraphSpacing", "BorderWidth", "BorderRadius", "ZIndex", "Image", "String", "ProductCopy", "FontFamily", "FontWeight", "TextDecoration", "TextCase", "Visibility", "Typography", "Blur", "Font"]>, z.ZodEnum<["Component", "Theme", "Documentation", "DocumentationPage", "DesignSystemComponent", "ElementGroup", "FigmaNodeStructure", "FigmaNodeReference", "PageBlock"]>]>;
61704
61802
  type DesignElementType = z.infer<typeof DesignElementType>;
61705
61803
  declare function isTokenType(type: DesignElementType): type is DesignTokenType;
61706
- declare function areTokenTypesCompatible(lhs: DesignTokenType, rhs: DesignTokenType): boolean;
61804
+ declare function areTokenTypesCompatible(lhs: DesignTokenType, rhs: DesignTokenType, isNonCompatibleTypeChangesEnabled?: boolean): boolean;
61805
+ declare function castStringToDimensionValue(lhs: DesignTokenType, rhs: DesignTokenType, value?: unknown): unknown;
61707
61806
  declare const DesignElementCategory: z.ZodEnum<["Token", "Component", "DesignSystemComponent", "DocumentationPage", "Theme", "PageBlock"]>;
61708
61807
  type DesignElementCategory = z.infer<typeof DesignElementCategory>;
61709
61808
  declare const DesignSystemElementExportProps: z.ZodObject<{
@@ -78374,7 +78473,7 @@ type DesignTokensDiff = {
78374
78473
  toUpdate: UpdateDesignToken[];
78375
78474
  };
78376
78475
  declare function extractTokenTypedData<T extends DesignTokenType, I extends DesignTokenTypedDataOfType<T>>(source: I): DesignTokenTypedDataOfType<T>;
78377
- declare function convertTokenTypedData<I extends DesignTokenType, O extends DesignTokenType>(source: DesignTokenTypedDataOfType<I>, type: O): DesignTokenTypedDataOfType<O>;
78476
+ declare function convertTokenTypedData<I extends DesignTokenType, O extends DesignTokenType>(source: DesignTokenTypedDataOfType<I>, type: O, isNonCompatibleTypeChangesEnabled: boolean): DesignTokenTypedDataOfType<O>;
78378
78477
  declare function isImportedDesignToken<T extends DesignTokenType>(designToken: DesignTokenOfType<T>): designToken is ImportedDesignTokenOfType<T>;
78379
78478
  declare function isDesignTokenOfType<T extends DesignTokenType>(designToken: DesignToken, type: T): designToken is DesignTokenOfType<T>;
78380
78479
  declare function designTokenTypeFilter<T extends DesignTokenType>(type: T): (designToken: DesignToken) => designToken is DesignTokenOfType<T>;
@@ -81534,12 +81633,7 @@ declare const ImportedFigmaSourceData: z.ZodObject<{
81534
81633
  label?: string | undefined;
81535
81634
  } | undefined;
81536
81635
  }>>;
81537
- downloadChunkSize: z.ZodOptional<z.ZodNumber>; /**
81538
- * Describes what to download from each file, this should contain all file id mentioned in
81539
- * importMetadataBySourceId.
81540
- *
81541
- * File id -> file download scope
81542
- */
81636
+ downloadChunkSize: z.ZodOptional<z.ZodNumber>;
81543
81637
  figmaRenderChunkSize: z.ZodOptional<z.ZodNumber>;
81544
81638
  maxFileDepth: z.ZodOptional<z.ZodNumber>;
81545
81639
  }, "strip", z.ZodTypeAny, {
@@ -81771,12 +81865,7 @@ declare const FigmaImportBaseContext: z.ZodObject<{
81771
81865
  label?: string | undefined;
81772
81866
  } | undefined;
81773
81867
  }>>;
81774
- downloadChunkSize: z.ZodOptional<z.ZodNumber>; /**
81775
- * Describes what to download from each file, this should contain all file id mentioned in
81776
- * importMetadataBySourceId.
81777
- *
81778
- * File id -> file download scope
81779
- */
81868
+ downloadChunkSize: z.ZodOptional<z.ZodNumber>;
81780
81869
  figmaRenderChunkSize: z.ZodOptional<z.ZodNumber>;
81781
81870
  maxFileDepth: z.ZodOptional<z.ZodNumber>;
81782
81871
  }, "strip", z.ZodTypeAny, {
@@ -82046,14 +82135,17 @@ declare const FeatureFlagsKeepAliases: z.ZodObject<{
82046
82135
  isTypographyPropsKeepAliasesEnabled: z.ZodDefault<z.ZodBoolean>;
82047
82136
  isGradientPropsKeepAliasesEnabled: z.ZodDefault<z.ZodBoolean>;
82048
82137
  isShadowPropsKeepAliasesEnabled: z.ZodDefault<z.ZodBoolean>;
82138
+ isNonCompatibleTypeChangesEnabled: z.ZodDefault<z.ZodBoolean>;
82049
82139
  }, "strip", z.ZodTypeAny, {
82050
82140
  isTypographyPropsKeepAliasesEnabled: boolean;
82051
82141
  isGradientPropsKeepAliasesEnabled: boolean;
82052
82142
  isShadowPropsKeepAliasesEnabled: boolean;
82143
+ isNonCompatibleTypeChangesEnabled: boolean;
82053
82144
  }, {
82054
82145
  isTypographyPropsKeepAliasesEnabled?: boolean | undefined;
82055
82146
  isGradientPropsKeepAliasesEnabled?: boolean | undefined;
82056
82147
  isShadowPropsKeepAliasesEnabled?: boolean | undefined;
82148
+ isNonCompatibleTypeChangesEnabled?: boolean | undefined;
82057
82149
  }>;
82058
82150
  type FeatureFlagsKeepAliases = z.infer<typeof FeatureFlagsKeepAliases>;
82059
82151
  declare const FigmaImportContextWithSourcesState: z.ZodObject<z.objectUtil.extendShape<{
@@ -82156,12 +82248,7 @@ declare const FigmaImportContextWithSourcesState: z.ZodObject<z.objectUtil.exten
82156
82248
  label?: string | undefined;
82157
82249
  } | undefined;
82158
82250
  }>>;
82159
- downloadChunkSize: z.ZodOptional<z.ZodNumber>; /**
82160
- * Describes what to download from each file, this should contain all file id mentioned in
82161
- * importMetadataBySourceId.
82162
- *
82163
- * File id -> file download scope
82164
- */
82251
+ downloadChunkSize: z.ZodOptional<z.ZodNumber>;
82165
82252
  figmaRenderChunkSize: z.ZodOptional<z.ZodNumber>;
82166
82253
  maxFileDepth: z.ZodOptional<z.ZodNumber>;
82167
82254
  }, "strip", z.ZodTypeAny, {
@@ -82334,14 +82421,17 @@ declare const FigmaImportContextWithSourcesState: z.ZodObject<z.objectUtil.exten
82334
82421
  isTypographyPropsKeepAliasesEnabled: z.ZodDefault<z.ZodBoolean>;
82335
82422
  isGradientPropsKeepAliasesEnabled: z.ZodDefault<z.ZodBoolean>;
82336
82423
  isShadowPropsKeepAliasesEnabled: z.ZodDefault<z.ZodBoolean>;
82424
+ isNonCompatibleTypeChangesEnabled: z.ZodDefault<z.ZodBoolean>;
82337
82425
  }, "strip", z.ZodTypeAny, {
82338
82426
  isTypographyPropsKeepAliasesEnabled: boolean;
82339
82427
  isGradientPropsKeepAliasesEnabled: boolean;
82340
82428
  isShadowPropsKeepAliasesEnabled: boolean;
82429
+ isNonCompatibleTypeChangesEnabled: boolean;
82341
82430
  }, {
82342
82431
  isTypographyPropsKeepAliasesEnabled?: boolean | undefined;
82343
82432
  isGradientPropsKeepAliasesEnabled?: boolean | undefined;
82344
82433
  isShadowPropsKeepAliasesEnabled?: boolean | undefined;
82434
+ isNonCompatibleTypeChangesEnabled?: boolean | undefined;
82345
82435
  }>>;
82346
82436
  }>, "strip", z.ZodTypeAny, {
82347
82437
  designSystemId: string;
@@ -82398,6 +82488,7 @@ declare const FigmaImportContextWithSourcesState: z.ZodObject<z.objectUtil.exten
82398
82488
  isTypographyPropsKeepAliasesEnabled: boolean;
82399
82489
  isGradientPropsKeepAliasesEnabled: boolean;
82400
82490
  isShadowPropsKeepAliasesEnabled: boolean;
82491
+ isNonCompatibleTypeChangesEnabled: boolean;
82401
82492
  };
82402
82493
  }, {
82403
82494
  designSystemId: string;
@@ -82454,6 +82545,7 @@ declare const FigmaImportContextWithSourcesState: z.ZodObject<z.objectUtil.exten
82454
82545
  isTypographyPropsKeepAliasesEnabled?: boolean | undefined;
82455
82546
  isGradientPropsKeepAliasesEnabled?: boolean | undefined;
82456
82547
  isShadowPropsKeepAliasesEnabled?: boolean | undefined;
82548
+ isNonCompatibleTypeChangesEnabled?: boolean | undefined;
82457
82549
  } | undefined;
82458
82550
  }>;
82459
82551
  type FigmaImportContextWithSourcesState = z.infer<typeof FigmaImportContextWithSourcesState>;
@@ -82534,12 +82626,7 @@ declare const ChangedImportedFigmaSourceData: z.ZodObject<z.objectUtil.extendSha
82534
82626
  label?: string | undefined;
82535
82627
  } | undefined;
82536
82628
  }>>;
82537
- downloadChunkSize: z.ZodOptional<z.ZodNumber>; /**
82538
- * Describes what to download from each file, this should contain all file id mentioned in
82539
- * importMetadataBySourceId.
82540
- *
82541
- * File id -> file download scope
82542
- */
82629
+ downloadChunkSize: z.ZodOptional<z.ZodNumber>;
82543
82630
  figmaRenderChunkSize: z.ZodOptional<z.ZodNumber>;
82544
82631
  maxFileDepth: z.ZodOptional<z.ZodNumber>;
82545
82632
  }, "strip", z.ZodTypeAny, {
@@ -82839,12 +82926,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<z.objectUtil.ext
82839
82926
  label?: string | undefined;
82840
82927
  } | undefined;
82841
82928
  }>>;
82842
- downloadChunkSize: z.ZodOptional<z.ZodNumber>; /**
82843
- * Describes what to download from each file, this should contain all file id mentioned in
82844
- * importMetadataBySourceId.
82845
- *
82846
- * File id -> file download scope
82847
- */
82929
+ downloadChunkSize: z.ZodOptional<z.ZodNumber>;
82848
82930
  figmaRenderChunkSize: z.ZodOptional<z.ZodNumber>;
82849
82931
  maxFileDepth: z.ZodOptional<z.ZodNumber>;
82850
82932
  }, "strip", z.ZodTypeAny, {
@@ -83017,14 +83099,17 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<z.objectUtil.ext
83017
83099
  isTypographyPropsKeepAliasesEnabled: z.ZodDefault<z.ZodBoolean>;
83018
83100
  isGradientPropsKeepAliasesEnabled: z.ZodDefault<z.ZodBoolean>;
83019
83101
  isShadowPropsKeepAliasesEnabled: z.ZodDefault<z.ZodBoolean>;
83102
+ isNonCompatibleTypeChangesEnabled: z.ZodDefault<z.ZodBoolean>;
83020
83103
  }, "strip", z.ZodTypeAny, {
83021
83104
  isTypographyPropsKeepAliasesEnabled: boolean;
83022
83105
  isGradientPropsKeepAliasesEnabled: boolean;
83023
83106
  isShadowPropsKeepAliasesEnabled: boolean;
83107
+ isNonCompatibleTypeChangesEnabled: boolean;
83024
83108
  }, {
83025
83109
  isTypographyPropsKeepAliasesEnabled?: boolean | undefined;
83026
83110
  isGradientPropsKeepAliasesEnabled?: boolean | undefined;
83027
83111
  isShadowPropsKeepAliasesEnabled?: boolean | undefined;
83112
+ isNonCompatibleTypeChangesEnabled?: boolean | undefined;
83028
83113
  }>>;
83029
83114
  }>, {
83030
83115
  /**
@@ -83141,12 +83226,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<z.objectUtil.ext
83141
83226
  label?: string | undefined;
83142
83227
  } | undefined;
83143
83228
  }>>;
83144
- downloadChunkSize: z.ZodOptional<z.ZodNumber>; /**
83145
- * Describes what to download from each file, this should contain all file id mentioned in
83146
- * importMetadataBySourceId.
83147
- *
83148
- * File id -> file download scope
83149
- */
83229
+ downloadChunkSize: z.ZodOptional<z.ZodNumber>;
83150
83230
  figmaRenderChunkSize: z.ZodOptional<z.ZodNumber>;
83151
83231
  maxFileDepth: z.ZodOptional<z.ZodNumber>;
83152
83232
  }, "strip", z.ZodTypeAny, {
@@ -83400,6 +83480,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<z.objectUtil.ext
83400
83480
  isTypographyPropsKeepAliasesEnabled: boolean;
83401
83481
  isGradientPropsKeepAliasesEnabled: boolean;
83402
83482
  isShadowPropsKeepAliasesEnabled: boolean;
83483
+ isNonCompatibleTypeChangesEnabled: boolean;
83403
83484
  };
83404
83485
  fileDownloadScopesByFileId: Record<string, {
83405
83486
  styles: boolean;
@@ -83564,6 +83645,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<z.objectUtil.ext
83564
83645
  isTypographyPropsKeepAliasesEnabled?: boolean | undefined;
83565
83646
  isGradientPropsKeepAliasesEnabled?: boolean | undefined;
83566
83647
  isShadowPropsKeepAliasesEnabled?: boolean | undefined;
83648
+ isNonCompatibleTypeChangesEnabled?: boolean | undefined;
83567
83649
  } | undefined;
83568
83650
  }>;
83569
83651
  type FigmaImportContextWithDownloadScopes = z.infer<typeof FigmaImportContextWithDownloadScopes>;
@@ -83606,18 +83688,18 @@ declare const FigmaFileStructureNodeImportModelBase: z.ZodObject<z.objectUtil.ex
83606
83688
  originKey: string;
83607
83689
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
83608
83690
  format: "Png";
83609
- nodeId: string;
83610
83691
  fileId: string;
83611
83692
  scale: number;
83693
+ nodeId: string;
83612
83694
  fileVersionId?: string | undefined;
83613
83695
  }, {
83614
83696
  type: "FigmaRender";
83615
83697
  originKey: string;
83616
83698
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
83617
83699
  format: "Png";
83618
- nodeId: string;
83619
83700
  fileId: string;
83620
83701
  scale: number;
83702
+ nodeId: string;
83621
83703
  fileVersionId?: string | undefined;
83622
83704
  }>;
83623
83705
  svg: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
@@ -83635,16 +83717,16 @@ declare const FigmaFileStructureNodeImportModelBase: z.ZodObject<z.objectUtil.ex
83635
83717
  originKey: string;
83636
83718
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
83637
83719
  format: "Svg";
83638
- nodeId: string;
83639
83720
  fileId: string;
83721
+ nodeId: string;
83640
83722
  fileVersionId?: string | undefined;
83641
83723
  }, {
83642
83724
  type: "FigmaRender";
83643
83725
  originKey: string;
83644
83726
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
83645
83727
  format: "Svg";
83646
- nodeId: string;
83647
83728
  fileId: string;
83729
+ nodeId: string;
83648
83730
  fileVersionId?: string | undefined;
83649
83731
  }>;
83650
83732
  }>, "strip", z.ZodTypeAny, {
@@ -83656,8 +83738,8 @@ declare const FigmaFileStructureNodeImportModelBase: z.ZodObject<z.objectUtil.ex
83656
83738
  originKey: string;
83657
83739
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
83658
83740
  format: "Svg";
83659
- nodeId: string;
83660
83741
  fileId: string;
83742
+ nodeId: string;
83661
83743
  fileVersionId?: string | undefined;
83662
83744
  };
83663
83745
  png: {
@@ -83665,9 +83747,9 @@ declare const FigmaFileStructureNodeImportModelBase: z.ZodObject<z.objectUtil.ex
83665
83747
  originKey: string;
83666
83748
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
83667
83749
  format: "Png";
83668
- nodeId: string;
83669
83750
  fileId: string;
83670
83751
  scale: number;
83752
+ nodeId: string;
83671
83753
  fileVersionId?: string | undefined;
83672
83754
  };
83673
83755
  size?: {
@@ -83684,8 +83766,8 @@ declare const FigmaFileStructureNodeImportModelBase: z.ZodObject<z.objectUtil.ex
83684
83766
  originKey: string;
83685
83767
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
83686
83768
  format: "Svg";
83687
- nodeId: string;
83688
83769
  fileId: string;
83770
+ nodeId: string;
83689
83771
  fileVersionId?: string | undefined;
83690
83772
  };
83691
83773
  png: {
@@ -83693,9 +83775,9 @@ declare const FigmaFileStructureNodeImportModelBase: z.ZodObject<z.objectUtil.ex
83693
83775
  originKey: string;
83694
83776
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
83695
83777
  format: "Png";
83696
- nodeId: string;
83697
83778
  fileId: string;
83698
83779
  scale: number;
83780
+ nodeId: string;
83699
83781
  fileVersionId?: string | undefined;
83700
83782
  };
83701
83783
  size?: {
@@ -83769,8 +83851,8 @@ declare const FigmaFileStructureImportModel: z.ZodObject<z.objectUtil.extendShap
83769
83851
  originKey: string;
83770
83852
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
83771
83853
  format: "Svg";
83772
- nodeId: string;
83773
83854
  fileId: string;
83855
+ nodeId: string;
83774
83856
  fileVersionId?: string | undefined;
83775
83857
  };
83776
83858
  png: {
@@ -83778,9 +83860,9 @@ declare const FigmaFileStructureImportModel: z.ZodObject<z.objectUtil.extendShap
83778
83860
  originKey: string;
83779
83861
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
83780
83862
  format: "Png";
83781
- nodeId: string;
83782
83863
  fileId: string;
83783
83864
  scale: number;
83865
+ nodeId: string;
83784
83866
  fileVersionId?: string | undefined;
83785
83867
  };
83786
83868
  size?: {
@@ -83806,8 +83888,8 @@ declare const FigmaFileStructureImportModel: z.ZodObject<z.objectUtil.extendShap
83806
83888
  originKey: string;
83807
83889
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
83808
83890
  format: "Svg";
83809
- nodeId: string;
83810
83891
  fileId: string;
83892
+ nodeId: string;
83811
83893
  fileVersionId?: string | undefined;
83812
83894
  };
83813
83895
  png: {
@@ -83815,9 +83897,9 @@ declare const FigmaFileStructureImportModel: z.ZodObject<z.objectUtil.extendShap
83815
83897
  originKey: string;
83816
83898
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
83817
83899
  format: "Png";
83818
- nodeId: string;
83819
83900
  fileId: string;
83820
83901
  scale: number;
83902
+ nodeId: string;
83821
83903
  fileVersionId?: string | undefined;
83822
83904
  };
83823
83905
  size?: {
@@ -83857,8 +83939,8 @@ declare const FigmaFileStructureImportModel: z.ZodObject<z.objectUtil.extendShap
83857
83939
  originKey: string;
83858
83940
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
83859
83941
  format: "Svg";
83860
- nodeId: string;
83861
83942
  fileId: string;
83943
+ nodeId: string;
83862
83944
  fileVersionId?: string | undefined;
83863
83945
  };
83864
83946
  png: {
@@ -83866,9 +83948,9 @@ declare const FigmaFileStructureImportModel: z.ZodObject<z.objectUtil.extendShap
83866
83948
  originKey: string;
83867
83949
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
83868
83950
  format: "Png";
83869
- nodeId: string;
83870
83951
  fileId: string;
83871
83952
  scale: number;
83953
+ nodeId: string;
83872
83954
  fileVersionId?: string | undefined;
83873
83955
  };
83874
83956
  size?: {
@@ -83907,8 +83989,8 @@ declare const FigmaFileStructureImportModel: z.ZodObject<z.objectUtil.extendShap
83907
83989
  originKey: string;
83908
83990
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
83909
83991
  format: "Svg";
83910
- nodeId: string;
83911
83992
  fileId: string;
83993
+ nodeId: string;
83912
83994
  fileVersionId?: string | undefined;
83913
83995
  };
83914
83996
  png: {
@@ -83916,9 +83998,9 @@ declare const FigmaFileStructureImportModel: z.ZodObject<z.objectUtil.extendShap
83916
83998
  originKey: string;
83917
83999
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
83918
84000
  format: "Png";
83919
- nodeId: string;
83920
84001
  fileId: string;
83921
84002
  scale: number;
84003
+ nodeId: string;
83922
84004
  fileVersionId?: string | undefined;
83923
84005
  };
83924
84006
  size?: {
@@ -84003,8 +84085,8 @@ declare const FigmaFileStructureImportModelInput: z.ZodObject<z.objectUtil.exten
84003
84085
  originKey: string;
84004
84086
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
84005
84087
  format: "Svg";
84006
- nodeId: string;
84007
84088
  fileId: string;
84089
+ nodeId: string;
84008
84090
  fileVersionId?: string | undefined;
84009
84091
  };
84010
84092
  png: {
@@ -84012,9 +84094,9 @@ declare const FigmaFileStructureImportModelInput: z.ZodObject<z.objectUtil.exten
84012
84094
  originKey: string;
84013
84095
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
84014
84096
  format: "Png";
84015
- nodeId: string;
84016
84097
  fileId: string;
84017
84098
  scale: number;
84099
+ nodeId: string;
84018
84100
  fileVersionId?: string | undefined;
84019
84101
  };
84020
84102
  size?: {
@@ -84040,8 +84122,8 @@ declare const FigmaFileStructureImportModelInput: z.ZodObject<z.objectUtil.exten
84040
84122
  originKey: string;
84041
84123
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
84042
84124
  format: "Svg";
84043
- nodeId: string;
84044
84125
  fileId: string;
84126
+ nodeId: string;
84045
84127
  fileVersionId?: string | undefined;
84046
84128
  };
84047
84129
  png: {
@@ -84049,9 +84131,9 @@ declare const FigmaFileStructureImportModelInput: z.ZodObject<z.objectUtil.exten
84049
84131
  originKey: string;
84050
84132
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
84051
84133
  format: "Png";
84052
- nodeId: string;
84053
84134
  fileId: string;
84054
84135
  scale: number;
84136
+ nodeId: string;
84055
84137
  fileVersionId?: string | undefined;
84056
84138
  };
84057
84139
  size?: {
@@ -84082,8 +84164,8 @@ declare const FigmaFileStructureImportModelInput: z.ZodObject<z.objectUtil.exten
84082
84164
  originKey: string;
84083
84165
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
84084
84166
  format: "Svg";
84085
- nodeId: string;
84086
84167
  fileId: string;
84168
+ nodeId: string;
84087
84169
  fileVersionId?: string | undefined;
84088
84170
  };
84089
84171
  png: {
@@ -84091,9 +84173,9 @@ declare const FigmaFileStructureImportModelInput: z.ZodObject<z.objectUtil.exten
84091
84173
  originKey: string;
84092
84174
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
84093
84175
  format: "Png";
84094
- nodeId: string;
84095
84176
  fileId: string;
84096
84177
  scale: number;
84178
+ nodeId: string;
84097
84179
  fileVersionId?: string | undefined;
84098
84180
  };
84099
84181
  size?: {
@@ -84129,8 +84211,8 @@ declare const FigmaFileStructureImportModelInput: z.ZodObject<z.objectUtil.exten
84129
84211
  originKey: string;
84130
84212
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
84131
84213
  format: "Svg";
84132
- nodeId: string;
84133
84214
  fileId: string;
84215
+ nodeId: string;
84134
84216
  fileVersionId?: string | undefined;
84135
84217
  };
84136
84218
  png: {
@@ -84138,9 +84220,9 @@ declare const FigmaFileStructureImportModelInput: z.ZodObject<z.objectUtil.exten
84138
84220
  originKey: string;
84139
84221
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
84140
84222
  format: "Png";
84141
- nodeId: string;
84142
84223
  fileId: string;
84143
84224
  scale: number;
84225
+ nodeId: string;
84144
84226
  fileVersionId?: string | undefined;
84145
84227
  };
84146
84228
  size?: {
@@ -86577,18 +86659,18 @@ declare const ImportModelCollection: z.ZodObject<{
86577
86659
  originKey: string;
86578
86660
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
86579
86661
  format: "Png";
86580
- nodeId: string;
86581
86662
  fileId: string;
86582
86663
  scale: number;
86664
+ nodeId: string;
86583
86665
  fileVersionId?: string | undefined;
86584
86666
  }, {
86585
86667
  type: "FigmaRender";
86586
86668
  originKey: string;
86587
86669
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
86588
86670
  format: "Png";
86589
- nodeId: string;
86590
86671
  fileId: string;
86591
86672
  scale: number;
86673
+ nodeId: string;
86592
86674
  fileVersionId?: string | undefined;
86593
86675
  }>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
86594
86676
  scope: z.ZodEnum<["DocumentationFrame", "ComponentThumbnail", "DesignSystem", "Documentation"]>;
@@ -86605,16 +86687,16 @@ declare const ImportModelCollection: z.ZodObject<{
86605
86687
  originKey: string;
86606
86688
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
86607
86689
  format: "Svg";
86608
- nodeId: string;
86609
86690
  fileId: string;
86691
+ nodeId: string;
86610
86692
  fileVersionId?: string | undefined;
86611
86693
  }, {
86612
86694
  type: "FigmaRender";
86613
86695
  originKey: string;
86614
86696
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
86615
86697
  format: "Svg";
86616
- nodeId: string;
86617
86698
  fileId: string;
86699
+ nodeId: string;
86618
86700
  fileVersionId?: string | undefined;
86619
86701
  }>]>]>;
86620
86702
  parentComponentId: z.ZodOptional<z.ZodString>;
@@ -86729,16 +86811,16 @@ declare const ImportModelCollection: z.ZodObject<{
86729
86811
  originKey: string;
86730
86812
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
86731
86813
  format: "Svg";
86732
- nodeId: string;
86733
86814
  fileId: string;
86815
+ nodeId: string;
86734
86816
  fileVersionId?: string | undefined;
86735
86817
  }, {
86736
86818
  type: "FigmaRender";
86737
86819
  originKey: string;
86738
86820
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
86739
86821
  format: "Svg";
86740
- nodeId: string;
86741
86822
  fileId: string;
86823
+ nodeId: string;
86742
86824
  fileVersionId?: string | undefined;
86743
86825
  }>>;
86744
86826
  origin: z.ZodObject<z.objectUtil.extendShape<{
@@ -86793,17 +86875,17 @@ declare const ImportModelCollection: z.ZodObject<{
86793
86875
  originKey: string;
86794
86876
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
86795
86877
  format: "Png";
86796
- nodeId: string;
86797
86878
  fileId: string;
86798
86879
  scale: number;
86880
+ nodeId: string;
86799
86881
  fileVersionId?: string | undefined;
86800
86882
  } | {
86801
86883
  type: "FigmaRender";
86802
86884
  originKey: string;
86803
86885
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
86804
86886
  format: "Svg";
86805
- nodeId: string;
86806
86887
  fileId: string;
86888
+ nodeId: string;
86807
86889
  fileVersionId?: string | undefined;
86808
86890
  };
86809
86891
  svg?: {
@@ -86811,8 +86893,8 @@ declare const ImportModelCollection: z.ZodObject<{
86811
86893
  originKey: string;
86812
86894
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
86813
86895
  format: "Svg";
86814
- nodeId: string;
86815
86896
  fileId: string;
86897
+ nodeId: string;
86816
86898
  fileVersionId?: string | undefined;
86817
86899
  } | undefined;
86818
86900
  componentPropertyDefinitions?: Record<string, {
@@ -86873,17 +86955,17 @@ declare const ImportModelCollection: z.ZodObject<{
86873
86955
  originKey: string;
86874
86956
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
86875
86957
  format: "Png";
86876
- nodeId: string;
86877
86958
  fileId: string;
86878
86959
  scale: number;
86960
+ nodeId: string;
86879
86961
  fileVersionId?: string | undefined;
86880
86962
  } | {
86881
86963
  type: "FigmaRender";
86882
86964
  originKey: string;
86883
86965
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
86884
86966
  format: "Svg";
86885
- nodeId: string;
86886
86967
  fileId: string;
86968
+ nodeId: string;
86887
86969
  fileVersionId?: string | undefined;
86888
86970
  };
86889
86971
  svg?: {
@@ -86891,8 +86973,8 @@ declare const ImportModelCollection: z.ZodObject<{
86891
86973
  originKey: string;
86892
86974
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
86893
86975
  format: "Svg";
86894
- nodeId: string;
86895
86976
  fileId: string;
86977
+ nodeId: string;
86896
86978
  fileVersionId?: string | undefined;
86897
86979
  } | undefined;
86898
86980
  componentPropertyDefinitions?: Record<string, {
@@ -93149,8 +93231,8 @@ declare const ImportModelCollection: z.ZodObject<{
93149
93231
  originKey: string;
93150
93232
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
93151
93233
  format: "Svg";
93152
- nodeId: string;
93153
93234
  fileId: string;
93235
+ nodeId: string;
93154
93236
  fileVersionId?: string | undefined;
93155
93237
  };
93156
93238
  png: {
@@ -93158,9 +93240,9 @@ declare const ImportModelCollection: z.ZodObject<{
93158
93240
  originKey: string;
93159
93241
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
93160
93242
  format: "Png";
93161
- nodeId: string;
93162
93243
  fileId: string;
93163
93244
  scale: number;
93245
+ nodeId: string;
93164
93246
  fileVersionId?: string | undefined;
93165
93247
  };
93166
93248
  size?: {
@@ -93178,8 +93260,8 @@ declare const ImportModelCollection: z.ZodObject<{
93178
93260
  originKey: string;
93179
93261
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
93180
93262
  format: "Svg";
93181
- nodeId: string;
93182
93263
  fileId: string;
93264
+ nodeId: string;
93183
93265
  fileVersionId?: string | undefined;
93184
93266
  };
93185
93267
  png: {
@@ -93187,9 +93269,9 @@ declare const ImportModelCollection: z.ZodObject<{
93187
93269
  originKey: string;
93188
93270
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
93189
93271
  format: "Png";
93190
- nodeId: string;
93191
93272
  fileId: string;
93192
93273
  scale: number;
93274
+ nodeId: string;
93193
93275
  fileVersionId?: string | undefined;
93194
93276
  };
93195
93277
  size?: {
@@ -93227,8 +93309,8 @@ declare const ImportModelCollection: z.ZodObject<{
93227
93309
  originKey: string;
93228
93310
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
93229
93311
  format: "Svg";
93230
- nodeId: string;
93231
93312
  fileId: string;
93313
+ nodeId: string;
93232
93314
  fileVersionId?: string | undefined;
93233
93315
  };
93234
93316
  png: {
@@ -93236,9 +93318,9 @@ declare const ImportModelCollection: z.ZodObject<{
93236
93318
  originKey: string;
93237
93319
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
93238
93320
  format: "Png";
93239
- nodeId: string;
93240
93321
  fileId: string;
93241
93322
  scale: number;
93323
+ nodeId: string;
93242
93324
  fileVersionId?: string | undefined;
93243
93325
  };
93244
93326
  size?: {
@@ -93264,8 +93346,8 @@ declare const ImportModelCollection: z.ZodObject<{
93264
93346
  originKey: string;
93265
93347
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
93266
93348
  format: "Svg";
93267
- nodeId: string;
93268
93349
  fileId: string;
93350
+ nodeId: string;
93269
93351
  fileVersionId?: string | undefined;
93270
93352
  };
93271
93353
  png: {
@@ -93273,9 +93355,9 @@ declare const ImportModelCollection: z.ZodObject<{
93273
93355
  originKey: string;
93274
93356
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
93275
93357
  format: "Png";
93276
- nodeId: string;
93277
93358
  fileId: string;
93278
93359
  scale: number;
93360
+ nodeId: string;
93279
93361
  fileVersionId?: string | undefined;
93280
93362
  };
93281
93363
  size?: {
@@ -93293,8 +93375,8 @@ declare const ImportModelCollection: z.ZodObject<{
93293
93375
  originKey: string;
93294
93376
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
93295
93377
  format: "Svg";
93296
- nodeId: string;
93297
93378
  fileId: string;
93379
+ nodeId: string;
93298
93380
  fileVersionId?: string | undefined;
93299
93381
  };
93300
93382
  png: {
@@ -93302,9 +93384,9 @@ declare const ImportModelCollection: z.ZodObject<{
93302
93384
  originKey: string;
93303
93385
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
93304
93386
  format: "Png";
93305
- nodeId: string;
93306
93387
  fileId: string;
93307
93388
  scale: number;
93389
+ nodeId: string;
93308
93390
  fileVersionId?: string | undefined;
93309
93391
  };
93310
93392
  size?: {
@@ -93343,8 +93425,8 @@ declare const ImportModelCollection: z.ZodObject<{
93343
93425
  originKey: string;
93344
93426
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
93345
93427
  format: "Svg";
93346
- nodeId: string;
93347
93428
  fileId: string;
93429
+ nodeId: string;
93348
93430
  fileVersionId?: string | undefined;
93349
93431
  };
93350
93432
  png: {
@@ -93352,9 +93434,9 @@ declare const ImportModelCollection: z.ZodObject<{
93352
93434
  originKey: string;
93353
93435
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
93354
93436
  format: "Png";
93355
- nodeId: string;
93356
93437
  fileId: string;
93357
93438
  scale: number;
93439
+ nodeId: string;
93358
93440
  fileVersionId?: string | undefined;
93359
93441
  };
93360
93442
  size?: {
@@ -93393,8 +93475,8 @@ declare const ImportModelCollection: z.ZodObject<{
93393
93475
  originKey: string;
93394
93476
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
93395
93477
  format: "Svg";
93396
- nodeId: string;
93397
93478
  fileId: string;
93479
+ nodeId: string;
93398
93480
  fileVersionId?: string | undefined;
93399
93481
  };
93400
93482
  png: {
@@ -93402,9 +93484,9 @@ declare const ImportModelCollection: z.ZodObject<{
93402
93484
  originKey: string;
93403
93485
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
93404
93486
  format: "Png";
93405
- nodeId: string;
93406
93487
  fileId: string;
93407
93488
  scale: number;
93489
+ nodeId: string;
93408
93490
  fileVersionId?: string | undefined;
93409
93491
  };
93410
93492
  size?: {
@@ -93422,8 +93504,8 @@ declare const ImportModelCollection: z.ZodObject<{
93422
93504
  originKey: string;
93423
93505
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
93424
93506
  format: "Svg";
93425
- nodeId: string;
93426
93507
  fileId: string;
93508
+ nodeId: string;
93427
93509
  fileVersionId?: string | undefined;
93428
93510
  };
93429
93511
  png: {
@@ -93431,9 +93513,9 @@ declare const ImportModelCollection: z.ZodObject<{
93431
93513
  originKey: string;
93432
93514
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
93433
93515
  format: "Png";
93434
- nodeId: string;
93435
93516
  fileId: string;
93436
93517
  scale: number;
93518
+ nodeId: string;
93437
93519
  fileVersionId?: string | undefined;
93438
93520
  };
93439
93521
  size?: {
@@ -93901,17 +93983,17 @@ declare const ImportModelCollection: z.ZodObject<{
93901
93983
  originKey: string;
93902
93984
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
93903
93985
  format: "Png";
93904
- nodeId: string;
93905
93986
  fileId: string;
93906
93987
  scale: number;
93988
+ nodeId: string;
93907
93989
  fileVersionId?: string | undefined;
93908
93990
  } | {
93909
93991
  type: "FigmaRender";
93910
93992
  originKey: string;
93911
93993
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
93912
93994
  format: "Svg";
93913
- nodeId: string;
93914
93995
  fileId: string;
93996
+ nodeId: string;
93915
93997
  fileVersionId?: string | undefined;
93916
93998
  };
93917
93999
  svg?: {
@@ -93919,8 +94001,8 @@ declare const ImportModelCollection: z.ZodObject<{
93919
94001
  originKey: string;
93920
94002
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
93921
94003
  format: "Svg";
93922
- nodeId: string;
93923
94004
  fileId: string;
94005
+ nodeId: string;
93924
94006
  fileVersionId?: string | undefined;
93925
94007
  } | undefined;
93926
94008
  componentPropertyDefinitions?: Record<string, {
@@ -94736,8 +94818,8 @@ declare const ImportModelCollection: z.ZodObject<{
94736
94818
  originKey: string;
94737
94819
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
94738
94820
  format: "Svg";
94739
- nodeId: string;
94740
94821
  fileId: string;
94822
+ nodeId: string;
94741
94823
  fileVersionId?: string | undefined;
94742
94824
  };
94743
94825
  png: {
@@ -94745,9 +94827,9 @@ declare const ImportModelCollection: z.ZodObject<{
94745
94827
  originKey: string;
94746
94828
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
94747
94829
  format: "Png";
94748
- nodeId: string;
94749
94830
  fileId: string;
94750
94831
  scale: number;
94832
+ nodeId: string;
94751
94833
  fileVersionId?: string | undefined;
94752
94834
  };
94753
94835
  size?: {
@@ -94801,8 +94883,8 @@ declare const ImportModelCollection: z.ZodObject<{
94801
94883
  originKey: string;
94802
94884
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
94803
94885
  format: "Svg";
94804
- nodeId: string;
94805
94886
  fileId: string;
94887
+ nodeId: string;
94806
94888
  fileVersionId?: string | undefined;
94807
94889
  };
94808
94890
  png: {
@@ -94810,9 +94892,9 @@ declare const ImportModelCollection: z.ZodObject<{
94810
94892
  originKey: string;
94811
94893
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
94812
94894
  format: "Png";
94813
- nodeId: string;
94814
94895
  fileId: string;
94815
94896
  scale: number;
94897
+ nodeId: string;
94816
94898
  fileVersionId?: string | undefined;
94817
94899
  };
94818
94900
  size?: {
@@ -94830,8 +94912,8 @@ declare const ImportModelCollection: z.ZodObject<{
94830
94912
  originKey: string;
94831
94913
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
94832
94914
  format: "Svg";
94833
- nodeId: string;
94834
94915
  fileId: string;
94916
+ nodeId: string;
94835
94917
  fileVersionId?: string | undefined;
94836
94918
  };
94837
94919
  png: {
@@ -94839,9 +94921,9 @@ declare const ImportModelCollection: z.ZodObject<{
94839
94921
  originKey: string;
94840
94922
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
94841
94923
  format: "Png";
94842
- nodeId: string;
94843
94924
  fileId: string;
94844
94925
  scale: number;
94926
+ nodeId: string;
94845
94927
  fileVersionId?: string | undefined;
94846
94928
  };
94847
94929
  size?: {
@@ -95280,17 +95362,17 @@ declare const ImportModelCollection: z.ZodObject<{
95280
95362
  originKey: string;
95281
95363
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
95282
95364
  format: "Png";
95283
- nodeId: string;
95284
95365
  fileId: string;
95285
95366
  scale: number;
95367
+ nodeId: string;
95286
95368
  fileVersionId?: string | undefined;
95287
95369
  } | {
95288
95370
  type: "FigmaRender";
95289
95371
  originKey: string;
95290
95372
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
95291
95373
  format: "Svg";
95292
- nodeId: string;
95293
95374
  fileId: string;
95375
+ nodeId: string;
95294
95376
  fileVersionId?: string | undefined;
95295
95377
  };
95296
95378
  svg?: {
@@ -95298,8 +95380,8 @@ declare const ImportModelCollection: z.ZodObject<{
95298
95380
  originKey: string;
95299
95381
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
95300
95382
  format: "Svg";
95301
- nodeId: string;
95302
95383
  fileId: string;
95384
+ nodeId: string;
95303
95385
  fileVersionId?: string | undefined;
95304
95386
  } | undefined;
95305
95387
  componentPropertyDefinitions?: Record<string, {
@@ -98489,18 +98571,18 @@ declare const ImportModelInputCollection: z.ZodObject<{
98489
98571
  originKey: string;
98490
98572
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
98491
98573
  format: "Png";
98492
- nodeId: string;
98493
98574
  fileId: string;
98494
98575
  scale: number;
98576
+ nodeId: string;
98495
98577
  fileVersionId?: string | undefined;
98496
98578
  }, {
98497
98579
  type: "FigmaRender";
98498
98580
  originKey: string;
98499
98581
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
98500
98582
  format: "Png";
98501
- nodeId: string;
98502
98583
  fileId: string;
98503
98584
  scale: number;
98585
+ nodeId: string;
98504
98586
  fileVersionId?: string | undefined;
98505
98587
  }>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
98506
98588
  scope: z.ZodEnum<["DocumentationFrame", "ComponentThumbnail", "DesignSystem", "Documentation"]>;
@@ -98517,16 +98599,16 @@ declare const ImportModelInputCollection: z.ZodObject<{
98517
98599
  originKey: string;
98518
98600
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
98519
98601
  format: "Svg";
98520
- nodeId: string;
98521
98602
  fileId: string;
98603
+ nodeId: string;
98522
98604
  fileVersionId?: string | undefined;
98523
98605
  }, {
98524
98606
  type: "FigmaRender";
98525
98607
  originKey: string;
98526
98608
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
98527
98609
  format: "Svg";
98528
- nodeId: string;
98529
98610
  fileId: string;
98611
+ nodeId: string;
98530
98612
  fileVersionId?: string | undefined;
98531
98613
  }>]>]>;
98532
98614
  parentComponentId: z.ZodOptional<z.ZodString>;
@@ -98656,17 +98738,17 @@ declare const ImportModelInputCollection: z.ZodObject<{
98656
98738
  originKey: string;
98657
98739
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
98658
98740
  format: "Png";
98659
- nodeId: string;
98660
98741
  fileId: string;
98661
98742
  scale: number;
98743
+ nodeId: string;
98662
98744
  fileVersionId?: string | undefined;
98663
98745
  } | {
98664
98746
  type: "FigmaRender";
98665
98747
  originKey: string;
98666
98748
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
98667
98749
  format: "Svg";
98668
- nodeId: string;
98669
98750
  fileId: string;
98751
+ nodeId: string;
98670
98752
  fileVersionId?: string | undefined;
98671
98753
  };
98672
98754
  originId: string;
@@ -98722,17 +98804,17 @@ declare const ImportModelInputCollection: z.ZodObject<{
98722
98804
  originKey: string;
98723
98805
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
98724
98806
  format: "Png";
98725
- nodeId: string;
98726
98807
  fileId: string;
98727
98808
  scale: number;
98809
+ nodeId: string;
98728
98810
  fileVersionId?: string | undefined;
98729
98811
  } | {
98730
98812
  type: "FigmaRender";
98731
98813
  originKey: string;
98732
98814
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
98733
98815
  format: "Svg";
98734
- nodeId: string;
98735
98816
  fileId: string;
98817
+ nodeId: string;
98736
98818
  fileVersionId?: string | undefined;
98737
98819
  };
98738
98820
  originId: string;
@@ -98837,18 +98919,18 @@ declare const ImportModelInputCollection: z.ZodObject<{
98837
98919
  originKey: string;
98838
98920
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
98839
98921
  format: "Png";
98840
- nodeId: string;
98841
98922
  fileId: string;
98842
98923
  scale: number;
98924
+ nodeId: string;
98843
98925
  fileVersionId?: string | undefined;
98844
98926
  }, {
98845
98927
  type: "FigmaRender";
98846
98928
  originKey: string;
98847
98929
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
98848
98930
  format: "Png";
98849
- nodeId: string;
98850
98931
  fileId: string;
98851
98932
  scale: number;
98933
+ nodeId: string;
98852
98934
  fileVersionId?: string | undefined;
98853
98935
  }>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
98854
98936
  scope: z.ZodEnum<["DocumentationFrame", "ComponentThumbnail", "DesignSystem", "Documentation"]>;
@@ -98865,16 +98947,16 @@ declare const ImportModelInputCollection: z.ZodObject<{
98865
98947
  originKey: string;
98866
98948
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
98867
98949
  format: "Svg";
98868
- nodeId: string;
98869
98950
  fileId: string;
98951
+ nodeId: string;
98870
98952
  fileVersionId?: string | undefined;
98871
98953
  }, {
98872
98954
  type: "FigmaRender";
98873
98955
  originKey: string;
98874
98956
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
98875
98957
  format: "Svg";
98876
- nodeId: string;
98877
98958
  fileId: string;
98959
+ nodeId: string;
98878
98960
  fileVersionId?: string | undefined;
98879
98961
  }>]>]>;
98880
98962
  parentComponentId: z.ZodOptional<z.ZodString>;
@@ -98988,16 +99070,16 @@ declare const ImportModelInputCollection: z.ZodObject<{
98988
99070
  originKey: string;
98989
99071
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
98990
99072
  format: "Svg";
98991
- nodeId: string;
98992
99073
  fileId: string;
99074
+ nodeId: string;
98993
99075
  fileVersionId?: string | undefined;
98994
99076
  }, {
98995
99077
  type: "FigmaRender";
98996
99078
  originKey: string;
98997
99079
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
98998
99080
  format: "Svg";
98999
- nodeId: string;
99000
99081
  fileId: string;
99082
+ nodeId: string;
99001
99083
  fileVersionId?: string | undefined;
99002
99084
  }>;
99003
99085
  originMetadata: z.ZodObject<{
@@ -99020,8 +99102,8 @@ declare const ImportModelInputCollection: z.ZodObject<{
99020
99102
  originKey: string;
99021
99103
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
99022
99104
  format: "Svg";
99023
- nodeId: string;
99024
99105
  fileId: string;
99106
+ nodeId: string;
99025
99107
  fileVersionId?: string | undefined;
99026
99108
  };
99027
99109
  renderNodeId: string;
@@ -99040,17 +99122,17 @@ declare const ImportModelInputCollection: z.ZodObject<{
99040
99122
  originKey: string;
99041
99123
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
99042
99124
  format: "Png";
99043
- nodeId: string;
99044
99125
  fileId: string;
99045
99126
  scale: number;
99127
+ nodeId: string;
99046
99128
  fileVersionId?: string | undefined;
99047
99129
  } | {
99048
99130
  type: "FigmaRender";
99049
99131
  originKey: string;
99050
99132
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
99051
99133
  format: "Svg";
99052
- nodeId: string;
99053
99134
  fileId: string;
99135
+ nodeId: string;
99054
99136
  fileVersionId?: string | undefined;
99055
99137
  };
99056
99138
  originId: string;
@@ -99095,8 +99177,8 @@ declare const ImportModelInputCollection: z.ZodObject<{
99095
99177
  originKey: string;
99096
99178
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
99097
99179
  format: "Svg";
99098
- nodeId: string;
99099
99180
  fileId: string;
99181
+ nodeId: string;
99100
99182
  fileVersionId?: string | undefined;
99101
99183
  };
99102
99184
  renderNodeId: string;
@@ -99115,17 +99197,17 @@ declare const ImportModelInputCollection: z.ZodObject<{
99115
99197
  originKey: string;
99116
99198
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
99117
99199
  format: "Png";
99118
- nodeId: string;
99119
99200
  fileId: string;
99120
99201
  scale: number;
99202
+ nodeId: string;
99121
99203
  fileVersionId?: string | undefined;
99122
99204
  } | {
99123
99205
  type: "FigmaRender";
99124
99206
  originKey: string;
99125
99207
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
99126
99208
  format: "Svg";
99127
- nodeId: string;
99128
99209
  fileId: string;
99210
+ nodeId: string;
99129
99211
  fileVersionId?: string | undefined;
99130
99212
  };
99131
99213
  originId: string;
@@ -105330,8 +105412,8 @@ declare const ImportModelInputCollection: z.ZodObject<{
105330
105412
  originKey: string;
105331
105413
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
105332
105414
  format: "Svg";
105333
- nodeId: string;
105334
105415
  fileId: string;
105416
+ nodeId: string;
105335
105417
  fileVersionId?: string | undefined;
105336
105418
  };
105337
105419
  png: {
@@ -105339,9 +105421,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
105339
105421
  originKey: string;
105340
105422
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
105341
105423
  format: "Png";
105342
- nodeId: string;
105343
105424
  fileId: string;
105344
105425
  scale: number;
105426
+ nodeId: string;
105345
105427
  fileVersionId?: string | undefined;
105346
105428
  };
105347
105429
  size?: {
@@ -105359,8 +105441,8 @@ declare const ImportModelInputCollection: z.ZodObject<{
105359
105441
  originKey: string;
105360
105442
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
105361
105443
  format: "Svg";
105362
- nodeId: string;
105363
105444
  fileId: string;
105445
+ nodeId: string;
105364
105446
  fileVersionId?: string | undefined;
105365
105447
  };
105366
105448
  png: {
@@ -105368,9 +105450,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
105368
105450
  originKey: string;
105369
105451
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
105370
105452
  format: "Png";
105371
- nodeId: string;
105372
105453
  fileId: string;
105373
105454
  scale: number;
105455
+ nodeId: string;
105374
105456
  fileVersionId?: string | undefined;
105375
105457
  };
105376
105458
  size?: {
@@ -105408,8 +105490,8 @@ declare const ImportModelInputCollection: z.ZodObject<{
105408
105490
  originKey: string;
105409
105491
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
105410
105492
  format: "Svg";
105411
- nodeId: string;
105412
105493
  fileId: string;
105494
+ nodeId: string;
105413
105495
  fileVersionId?: string | undefined;
105414
105496
  };
105415
105497
  png: {
@@ -105417,9 +105499,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
105417
105499
  originKey: string;
105418
105500
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
105419
105501
  format: "Png";
105420
- nodeId: string;
105421
105502
  fileId: string;
105422
105503
  scale: number;
105504
+ nodeId: string;
105423
105505
  fileVersionId?: string | undefined;
105424
105506
  };
105425
105507
  size?: {
@@ -105445,8 +105527,8 @@ declare const ImportModelInputCollection: z.ZodObject<{
105445
105527
  originKey: string;
105446
105528
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
105447
105529
  format: "Svg";
105448
- nodeId: string;
105449
105530
  fileId: string;
105531
+ nodeId: string;
105450
105532
  fileVersionId?: string | undefined;
105451
105533
  };
105452
105534
  png: {
@@ -105454,9 +105536,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
105454
105536
  originKey: string;
105455
105537
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
105456
105538
  format: "Png";
105457
- nodeId: string;
105458
105539
  fileId: string;
105459
105540
  scale: number;
105541
+ nodeId: string;
105460
105542
  fileVersionId?: string | undefined;
105461
105543
  };
105462
105544
  size?: {
@@ -105474,8 +105556,8 @@ declare const ImportModelInputCollection: z.ZodObject<{
105474
105556
  originKey: string;
105475
105557
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
105476
105558
  format: "Svg";
105477
- nodeId: string;
105478
105559
  fileId: string;
105560
+ nodeId: string;
105479
105561
  fileVersionId?: string | undefined;
105480
105562
  };
105481
105563
  png: {
@@ -105483,9 +105565,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
105483
105565
  originKey: string;
105484
105566
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
105485
105567
  format: "Png";
105486
- nodeId: string;
105487
105568
  fileId: string;
105488
105569
  scale: number;
105570
+ nodeId: string;
105489
105571
  fileVersionId?: string | undefined;
105490
105572
  };
105491
105573
  size?: {
@@ -105515,8 +105597,8 @@ declare const ImportModelInputCollection: z.ZodObject<{
105515
105597
  originKey: string;
105516
105598
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
105517
105599
  format: "Svg";
105518
- nodeId: string;
105519
105600
  fileId: string;
105601
+ nodeId: string;
105520
105602
  fileVersionId?: string | undefined;
105521
105603
  };
105522
105604
  png: {
@@ -105524,9 +105606,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
105524
105606
  originKey: string;
105525
105607
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
105526
105608
  format: "Png";
105527
- nodeId: string;
105528
105609
  fileId: string;
105529
105610
  scale: number;
105611
+ nodeId: string;
105530
105612
  fileVersionId?: string | undefined;
105531
105613
  };
105532
105614
  size?: {
@@ -105562,8 +105644,8 @@ declare const ImportModelInputCollection: z.ZodObject<{
105562
105644
  originKey: string;
105563
105645
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
105564
105646
  format: "Svg";
105565
- nodeId: string;
105566
105647
  fileId: string;
105648
+ nodeId: string;
105567
105649
  fileVersionId?: string | undefined;
105568
105650
  };
105569
105651
  png: {
@@ -105571,9 +105653,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
105571
105653
  originKey: string;
105572
105654
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
105573
105655
  format: "Png";
105574
- nodeId: string;
105575
105656
  fileId: string;
105576
105657
  scale: number;
105658
+ nodeId: string;
105577
105659
  fileVersionId?: string | undefined;
105578
105660
  };
105579
105661
  size?: {
@@ -105591,8 +105673,8 @@ declare const ImportModelInputCollection: z.ZodObject<{
105591
105673
  originKey: string;
105592
105674
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
105593
105675
  format: "Svg";
105594
- nodeId: string;
105595
105676
  fileId: string;
105677
+ nodeId: string;
105596
105678
  fileVersionId?: string | undefined;
105597
105679
  };
105598
105680
  png: {
@@ -105600,9 +105682,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
105600
105682
  originKey: string;
105601
105683
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
105602
105684
  format: "Png";
105603
- nodeId: string;
105604
105685
  fileId: string;
105605
105686
  scale: number;
105687
+ nodeId: string;
105606
105688
  fileVersionId?: string | undefined;
105607
105689
  };
105608
105690
  size?: {
@@ -106025,8 +106107,8 @@ declare const ImportModelInputCollection: z.ZodObject<{
106025
106107
  originKey: string;
106026
106108
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
106027
106109
  format: "Svg";
106028
- nodeId: string;
106029
106110
  fileId: string;
106111
+ nodeId: string;
106030
106112
  fileVersionId?: string | undefined;
106031
106113
  };
106032
106114
  renderNodeId: string;
@@ -106045,17 +106127,17 @@ declare const ImportModelInputCollection: z.ZodObject<{
106045
106127
  originKey: string;
106046
106128
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
106047
106129
  format: "Png";
106048
- nodeId: string;
106049
106130
  fileId: string;
106050
106131
  scale: number;
106132
+ nodeId: string;
106051
106133
  fileVersionId?: string | undefined;
106052
106134
  } | {
106053
106135
  type: "FigmaRender";
106054
106136
  originKey: string;
106055
106137
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
106056
106138
  format: "Svg";
106057
- nodeId: string;
106058
106139
  fileId: string;
106140
+ nodeId: string;
106059
106141
  fileVersionId?: string | undefined;
106060
106142
  };
106061
106143
  originId: string;
@@ -106112,17 +106194,17 @@ declare const ImportModelInputCollection: z.ZodObject<{
106112
106194
  originKey: string;
106113
106195
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
106114
106196
  format: "Png";
106115
- nodeId: string;
106116
106197
  fileId: string;
106117
106198
  scale: number;
106199
+ nodeId: string;
106118
106200
  fileVersionId?: string | undefined;
106119
106201
  } | {
106120
106202
  type: "FigmaRender";
106121
106203
  originKey: string;
106122
106204
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
106123
106205
  format: "Svg";
106124
- nodeId: string;
106125
106206
  fileId: string;
106207
+ nodeId: string;
106126
106208
  fileVersionId?: string | undefined;
106127
106209
  };
106128
106210
  originId: string;
@@ -106929,8 +107011,8 @@ declare const ImportModelInputCollection: z.ZodObject<{
106929
107011
  originKey: string;
106930
107012
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
106931
107013
  format: "Svg";
106932
- nodeId: string;
106933
107014
  fileId: string;
107015
+ nodeId: string;
106934
107016
  fileVersionId?: string | undefined;
106935
107017
  };
106936
107018
  png: {
@@ -106938,9 +107020,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
106938
107020
  originKey: string;
106939
107021
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
106940
107022
  format: "Png";
106941
- nodeId: string;
106942
107023
  fileId: string;
106943
107024
  scale: number;
107025
+ nodeId: string;
106944
107026
  fileVersionId?: string | undefined;
106945
107027
  };
106946
107028
  size?: {
@@ -107358,8 +107440,8 @@ declare const ImportModelInputCollection: z.ZodObject<{
107358
107440
  originKey: string;
107359
107441
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
107360
107442
  format: "Svg";
107361
- nodeId: string;
107362
107443
  fileId: string;
107444
+ nodeId: string;
107363
107445
  fileVersionId?: string | undefined;
107364
107446
  };
107365
107447
  renderNodeId: string;
@@ -107378,17 +107460,17 @@ declare const ImportModelInputCollection: z.ZodObject<{
107378
107460
  originKey: string;
107379
107461
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
107380
107462
  format: "Png";
107381
- nodeId: string;
107382
107463
  fileId: string;
107383
107464
  scale: number;
107465
+ nodeId: string;
107384
107466
  fileVersionId?: string | undefined;
107385
107467
  } | {
107386
107468
  type: "FigmaRender";
107387
107469
  originKey: string;
107388
107470
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
107389
107471
  format: "Svg";
107390
- nodeId: string;
107391
107472
  fileId: string;
107473
+ nodeId: string;
107392
107474
  fileVersionId?: string | undefined;
107393
107475
  };
107394
107476
  originId: string;
@@ -107445,17 +107527,17 @@ declare const ImportModelInputCollection: z.ZodObject<{
107445
107527
  originKey: string;
107446
107528
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
107447
107529
  format: "Png";
107448
- nodeId: string;
107449
107530
  fileId: string;
107450
107531
  scale: number;
107532
+ nodeId: string;
107451
107533
  fileVersionId?: string | undefined;
107452
107534
  } | {
107453
107535
  type: "FigmaRender";
107454
107536
  originKey: string;
107455
107537
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
107456
107538
  format: "Svg";
107457
- nodeId: string;
107458
107539
  fileId: string;
107540
+ nodeId: string;
107459
107541
  fileVersionId?: string | undefined;
107460
107542
  };
107461
107543
  originId: string;
@@ -108258,8 +108340,8 @@ declare const ImportModelInputCollection: z.ZodObject<{
108258
108340
  originKey: string;
108259
108341
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
108260
108342
  format: "Svg";
108261
- nodeId: string;
108262
108343
  fileId: string;
108344
+ nodeId: string;
108263
108345
  fileVersionId?: string | undefined;
108264
108346
  };
108265
108347
  png: {
@@ -108267,9 +108349,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
108267
108349
  originKey: string;
108268
108350
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
108269
108351
  format: "Png";
108270
- nodeId: string;
108271
108352
  fileId: string;
108272
108353
  scale: number;
108354
+ nodeId: string;
108273
108355
  fileVersionId?: string | undefined;
108274
108356
  };
108275
108357
  size?: {
@@ -108287,8 +108369,8 @@ declare const ImportModelInputCollection: z.ZodObject<{
108287
108369
  originKey: string;
108288
108370
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
108289
108371
  format: "Svg";
108290
- nodeId: string;
108291
108372
  fileId: string;
108373
+ nodeId: string;
108292
108374
  fileVersionId?: string | undefined;
108293
108375
  };
108294
108376
  png: {
@@ -108296,9 +108378,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
108296
108378
  originKey: string;
108297
108379
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
108298
108380
  format: "Png";
108299
- nodeId: string;
108300
108381
  fileId: string;
108301
108382
  scale: number;
108383
+ nodeId: string;
108302
108384
  fileVersionId?: string | undefined;
108303
108385
  };
108304
108386
  size?: {
@@ -108384,18 +108466,18 @@ declare const FigmaComponentImportModel: z.ZodObject<z.objectUtil.extendShape<z.
108384
108466
  originKey: string;
108385
108467
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
108386
108468
  format: "Png";
108387
- nodeId: string;
108388
108469
  fileId: string;
108389
108470
  scale: number;
108471
+ nodeId: string;
108390
108472
  fileVersionId?: string | undefined;
108391
108473
  }, {
108392
108474
  type: "FigmaRender";
108393
108475
  originKey: string;
108394
108476
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
108395
108477
  format: "Png";
108396
- nodeId: string;
108397
108478
  fileId: string;
108398
108479
  scale: number;
108480
+ nodeId: string;
108399
108481
  fileVersionId?: string | undefined;
108400
108482
  }>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
108401
108483
  scope: z.ZodEnum<["DocumentationFrame", "ComponentThumbnail", "DesignSystem", "Documentation"]>;
@@ -108412,16 +108494,16 @@ declare const FigmaComponentImportModel: z.ZodObject<z.objectUtil.extendShape<z.
108412
108494
  originKey: string;
108413
108495
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
108414
108496
  format: "Svg";
108415
- nodeId: string;
108416
108497
  fileId: string;
108498
+ nodeId: string;
108417
108499
  fileVersionId?: string | undefined;
108418
108500
  }, {
108419
108501
  type: "FigmaRender";
108420
108502
  originKey: string;
108421
108503
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
108422
108504
  format: "Svg";
108423
- nodeId: string;
108424
108505
  fileId: string;
108506
+ nodeId: string;
108425
108507
  fileVersionId?: string | undefined;
108426
108508
  }>]>]>;
108427
108509
  parentComponentId: z.ZodOptional<z.ZodString>;
@@ -108536,16 +108618,16 @@ declare const FigmaComponentImportModel: z.ZodObject<z.objectUtil.extendShape<z.
108536
108618
  originKey: string;
108537
108619
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
108538
108620
  format: "Svg";
108539
- nodeId: string;
108540
108621
  fileId: string;
108622
+ nodeId: string;
108541
108623
  fileVersionId?: string | undefined;
108542
108624
  }, {
108543
108625
  type: "FigmaRender";
108544
108626
  originKey: string;
108545
108627
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
108546
108628
  format: "Svg";
108547
- nodeId: string;
108548
108629
  fileId: string;
108630
+ nodeId: string;
108549
108631
  fileVersionId?: string | undefined;
108550
108632
  }>>;
108551
108633
  origin: z.ZodObject<z.objectUtil.extendShape<{
@@ -108600,17 +108682,17 @@ declare const FigmaComponentImportModel: z.ZodObject<z.objectUtil.extendShape<z.
108600
108682
  originKey: string;
108601
108683
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
108602
108684
  format: "Png";
108603
- nodeId: string;
108604
108685
  fileId: string;
108605
108686
  scale: number;
108687
+ nodeId: string;
108606
108688
  fileVersionId?: string | undefined;
108607
108689
  } | {
108608
108690
  type: "FigmaRender";
108609
108691
  originKey: string;
108610
108692
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
108611
108693
  format: "Svg";
108612
- nodeId: string;
108613
108694
  fileId: string;
108695
+ nodeId: string;
108614
108696
  fileVersionId?: string | undefined;
108615
108697
  };
108616
108698
  svg?: {
@@ -108618,8 +108700,8 @@ declare const FigmaComponentImportModel: z.ZodObject<z.objectUtil.extendShape<z.
108618
108700
  originKey: string;
108619
108701
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
108620
108702
  format: "Svg";
108621
- nodeId: string;
108622
108703
  fileId: string;
108704
+ nodeId: string;
108623
108705
  fileVersionId?: string | undefined;
108624
108706
  } | undefined;
108625
108707
  componentPropertyDefinitions?: Record<string, {
@@ -108680,17 +108762,17 @@ declare const FigmaComponentImportModel: z.ZodObject<z.objectUtil.extendShape<z.
108680
108762
  originKey: string;
108681
108763
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
108682
108764
  format: "Png";
108683
- nodeId: string;
108684
108765
  fileId: string;
108685
108766
  scale: number;
108767
+ nodeId: string;
108686
108768
  fileVersionId?: string | undefined;
108687
108769
  } | {
108688
108770
  type: "FigmaRender";
108689
108771
  originKey: string;
108690
108772
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
108691
108773
  format: "Svg";
108692
- nodeId: string;
108693
108774
  fileId: string;
108775
+ nodeId: string;
108694
108776
  fileVersionId?: string | undefined;
108695
108777
  };
108696
108778
  svg?: {
@@ -108698,8 +108780,8 @@ declare const FigmaComponentImportModel: z.ZodObject<z.objectUtil.extendShape<z.
108698
108780
  originKey: string;
108699
108781
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
108700
108782
  format: "Svg";
108701
- nodeId: string;
108702
108783
  fileId: string;
108784
+ nodeId: string;
108703
108785
  fileVersionId?: string | undefined;
108704
108786
  } | undefined;
108705
108787
  componentPropertyDefinitions?: Record<string, {
@@ -108799,18 +108881,18 @@ declare const FigmaComponentImportModelInput: z.ZodObject<z.objectUtil.extendSha
108799
108881
  originKey: string;
108800
108882
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
108801
108883
  format: "Png";
108802
- nodeId: string;
108803
108884
  fileId: string;
108804
108885
  scale: number;
108886
+ nodeId: string;
108805
108887
  fileVersionId?: string | undefined;
108806
108888
  }, {
108807
108889
  type: "FigmaRender";
108808
108890
  originKey: string;
108809
108891
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
108810
108892
  format: "Png";
108811
- nodeId: string;
108812
108893
  fileId: string;
108813
108894
  scale: number;
108895
+ nodeId: string;
108814
108896
  fileVersionId?: string | undefined;
108815
108897
  }>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
108816
108898
  scope: z.ZodEnum<["DocumentationFrame", "ComponentThumbnail", "DesignSystem", "Documentation"]>;
@@ -108827,16 +108909,16 @@ declare const FigmaComponentImportModelInput: z.ZodObject<z.objectUtil.extendSha
108827
108909
  originKey: string;
108828
108910
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
108829
108911
  format: "Svg";
108830
- nodeId: string;
108831
108912
  fileId: string;
108913
+ nodeId: string;
108832
108914
  fileVersionId?: string | undefined;
108833
108915
  }, {
108834
108916
  type: "FigmaRender";
108835
108917
  originKey: string;
108836
108918
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
108837
108919
  format: "Svg";
108838
- nodeId: string;
108839
108920
  fileId: string;
108921
+ nodeId: string;
108840
108922
  fileVersionId?: string | undefined;
108841
108923
  }>]>]>;
108842
108924
  parentComponentId: z.ZodOptional<z.ZodString>;
@@ -108966,17 +109048,17 @@ declare const FigmaComponentImportModelInput: z.ZodObject<z.objectUtil.extendSha
108966
109048
  originKey: string;
108967
109049
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
108968
109050
  format: "Png";
108969
- nodeId: string;
108970
109051
  fileId: string;
108971
109052
  scale: number;
109053
+ nodeId: string;
108972
109054
  fileVersionId?: string | undefined;
108973
109055
  } | {
108974
109056
  type: "FigmaRender";
108975
109057
  originKey: string;
108976
109058
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
108977
109059
  format: "Svg";
108978
- nodeId: string;
108979
109060
  fileId: string;
109061
+ nodeId: string;
108980
109062
  fileVersionId?: string | undefined;
108981
109063
  };
108982
109064
  originId: string;
@@ -109032,17 +109114,17 @@ declare const FigmaComponentImportModelInput: z.ZodObject<z.objectUtil.extendSha
109032
109114
  originKey: string;
109033
109115
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
109034
109116
  format: "Png";
109035
- nodeId: string;
109036
109117
  fileId: string;
109037
109118
  scale: number;
109119
+ nodeId: string;
109038
109120
  fileVersionId?: string | undefined;
109039
109121
  } | {
109040
109122
  type: "FigmaRender";
109041
109123
  originKey: string;
109042
109124
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
109043
109125
  format: "Svg";
109044
- nodeId: string;
109045
109126
  fileId: string;
109127
+ nodeId: string;
109046
109128
  fileVersionId?: string | undefined;
109047
109129
  };
109048
109130
  originId: string;
@@ -109148,18 +109230,18 @@ declare const AssetImportModelInput: z.ZodObject<z.objectUtil.extendShape<z.obje
109148
109230
  originKey: string;
109149
109231
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
109150
109232
  format: "Png";
109151
- nodeId: string;
109152
109233
  fileId: string;
109153
109234
  scale: number;
109235
+ nodeId: string;
109154
109236
  fileVersionId?: string | undefined;
109155
109237
  }, {
109156
109238
  type: "FigmaRender";
109157
109239
  originKey: string;
109158
109240
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
109159
109241
  format: "Png";
109160
- nodeId: string;
109161
109242
  fileId: string;
109162
109243
  scale: number;
109244
+ nodeId: string;
109163
109245
  fileVersionId?: string | undefined;
109164
109246
  }>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
109165
109247
  scope: z.ZodEnum<["DocumentationFrame", "ComponentThumbnail", "DesignSystem", "Documentation"]>;
@@ -109176,16 +109258,16 @@ declare const AssetImportModelInput: z.ZodObject<z.objectUtil.extendShape<z.obje
109176
109258
  originKey: string;
109177
109259
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
109178
109260
  format: "Svg";
109179
- nodeId: string;
109180
109261
  fileId: string;
109262
+ nodeId: string;
109181
109263
  fileVersionId?: string | undefined;
109182
109264
  }, {
109183
109265
  type: "FigmaRender";
109184
109266
  originKey: string;
109185
109267
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
109186
109268
  format: "Svg";
109187
- nodeId: string;
109188
109269
  fileId: string;
109270
+ nodeId: string;
109189
109271
  fileVersionId?: string | undefined;
109190
109272
  }>]>]>;
109191
109273
  parentComponentId: z.ZodOptional<z.ZodString>;
@@ -109299,16 +109381,16 @@ declare const AssetImportModelInput: z.ZodObject<z.objectUtil.extendShape<z.obje
109299
109381
  originKey: string;
109300
109382
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
109301
109383
  format: "Svg";
109302
- nodeId: string;
109303
109384
  fileId: string;
109385
+ nodeId: string;
109304
109386
  fileVersionId?: string | undefined;
109305
109387
  }, {
109306
109388
  type: "FigmaRender";
109307
109389
  originKey: string;
109308
109390
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
109309
109391
  format: "Svg";
109310
- nodeId: string;
109311
109392
  fileId: string;
109393
+ nodeId: string;
109312
109394
  fileVersionId?: string | undefined;
109313
109395
  }>;
109314
109396
  originMetadata: z.ZodObject<{
@@ -109331,8 +109413,8 @@ declare const AssetImportModelInput: z.ZodObject<z.objectUtil.extendShape<z.obje
109331
109413
  originKey: string;
109332
109414
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
109333
109415
  format: "Svg";
109334
- nodeId: string;
109335
109416
  fileId: string;
109417
+ nodeId: string;
109336
109418
  fileVersionId?: string | undefined;
109337
109419
  };
109338
109420
  renderNodeId: string;
@@ -109351,17 +109433,17 @@ declare const AssetImportModelInput: z.ZodObject<z.objectUtil.extendShape<z.obje
109351
109433
  originKey: string;
109352
109434
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
109353
109435
  format: "Png";
109354
- nodeId: string;
109355
109436
  fileId: string;
109356
109437
  scale: number;
109438
+ nodeId: string;
109357
109439
  fileVersionId?: string | undefined;
109358
109440
  } | {
109359
109441
  type: "FigmaRender";
109360
109442
  originKey: string;
109361
109443
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
109362
109444
  format: "Svg";
109363
- nodeId: string;
109364
109445
  fileId: string;
109446
+ nodeId: string;
109365
109447
  fileVersionId?: string | undefined;
109366
109448
  };
109367
109449
  originId: string;
@@ -109406,8 +109488,8 @@ declare const AssetImportModelInput: z.ZodObject<z.objectUtil.extendShape<z.obje
109406
109488
  originKey: string;
109407
109489
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
109408
109490
  format: "Svg";
109409
- nodeId: string;
109410
109491
  fileId: string;
109492
+ nodeId: string;
109411
109493
  fileVersionId?: string | undefined;
109412
109494
  };
109413
109495
  renderNodeId: string;
@@ -109426,17 +109508,17 @@ declare const AssetImportModelInput: z.ZodObject<z.objectUtil.extendShape<z.obje
109426
109508
  originKey: string;
109427
109509
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
109428
109510
  format: "Png";
109429
- nodeId: string;
109430
109511
  fileId: string;
109431
109512
  scale: number;
109513
+ nodeId: string;
109432
109514
  fileVersionId?: string | undefined;
109433
109515
  } | {
109434
109516
  type: "FigmaRender";
109435
109517
  originKey: string;
109436
109518
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
109437
109519
  format: "Svg";
109438
- nodeId: string;
109439
109520
  fileId: string;
109521
+ nodeId: string;
109440
109522
  fileVersionId?: string | undefined;
109441
109523
  };
109442
109524
  originId: string;
@@ -109514,15 +109596,15 @@ declare const FigmaRenderBase: z.ZodObject<z.objectUtil.extendShape<{
109514
109596
  type: "FigmaRender";
109515
109597
  originKey: string;
109516
109598
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
109517
- nodeId: string;
109518
109599
  fileId: string;
109600
+ nodeId: string;
109519
109601
  fileVersionId?: string | undefined;
109520
109602
  }, {
109521
109603
  type: "FigmaRender";
109522
109604
  originKey: string;
109523
109605
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
109524
- nodeId: string;
109525
109606
  fileId: string;
109607
+ nodeId: string;
109526
109608
  fileVersionId?: string | undefined;
109527
109609
  }>;
109528
109610
  type FigmaRenderBase = z.infer<typeof FigmaRenderBase>;
@@ -109542,18 +109624,18 @@ declare const FigmaPngRenderImportModel: z.ZodObject<z.objectUtil.extendShape<z.
109542
109624
  originKey: string;
109543
109625
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
109544
109626
  format: "Png";
109545
- nodeId: string;
109546
109627
  fileId: string;
109547
109628
  scale: number;
109629
+ nodeId: string;
109548
109630
  fileVersionId?: string | undefined;
109549
109631
  }, {
109550
109632
  type: "FigmaRender";
109551
109633
  originKey: string;
109552
109634
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
109553
109635
  format: "Png";
109554
- nodeId: string;
109555
109636
  fileId: string;
109556
109637
  scale: number;
109638
+ nodeId: string;
109557
109639
  fileVersionId?: string | undefined;
109558
109640
  }>;
109559
109641
  type FigmaPngRenderImportModel = z.infer<typeof FigmaPngRenderImportModel>;
@@ -109572,16 +109654,16 @@ declare const FigmaSvgRenderImportModel: z.ZodObject<z.objectUtil.extendShape<z.
109572
109654
  originKey: string;
109573
109655
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
109574
109656
  format: "Svg";
109575
- nodeId: string;
109576
109657
  fileId: string;
109658
+ nodeId: string;
109577
109659
  fileVersionId?: string | undefined;
109578
109660
  }, {
109579
109661
  type: "FigmaRender";
109580
109662
  originKey: string;
109581
109663
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
109582
109664
  format: "Svg";
109583
- nodeId: string;
109584
109665
  fileId: string;
109666
+ nodeId: string;
109585
109667
  fileVersionId?: string | undefined;
109586
109668
  }>;
109587
109669
  type FigmaSvgRenderImportModel = z.infer<typeof FigmaSvgRenderImportModel>;
@@ -109601,18 +109683,18 @@ declare const FigmaRenderImportModel: z.ZodDiscriminatedUnion<"format", [z.ZodOb
109601
109683
  originKey: string;
109602
109684
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
109603
109685
  format: "Png";
109604
- nodeId: string;
109605
109686
  fileId: string;
109606
109687
  scale: number;
109688
+ nodeId: string;
109607
109689
  fileVersionId?: string | undefined;
109608
109690
  }, {
109609
109691
  type: "FigmaRender";
109610
109692
  originKey: string;
109611
109693
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
109612
109694
  format: "Png";
109613
- nodeId: string;
109614
109695
  fileId: string;
109615
109696
  scale: number;
109697
+ nodeId: string;
109616
109698
  fileVersionId?: string | undefined;
109617
109699
  }>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
109618
109700
  scope: z.ZodEnum<["DocumentationFrame", "ComponentThumbnail", "DesignSystem", "Documentation"]>;
@@ -109629,16 +109711,16 @@ declare const FigmaRenderImportModel: z.ZodDiscriminatedUnion<"format", [z.ZodOb
109629
109711
  originKey: string;
109630
109712
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
109631
109713
  format: "Svg";
109632
- nodeId: string;
109633
109714
  fileId: string;
109715
+ nodeId: string;
109634
109716
  fileVersionId?: string | undefined;
109635
109717
  }, {
109636
109718
  type: "FigmaRender";
109637
109719
  originKey: string;
109638
109720
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
109639
109721
  format: "Svg";
109640
- nodeId: string;
109641
109722
  fileId: string;
109723
+ nodeId: string;
109642
109724
  fileVersionId?: string | undefined;
109643
109725
  }>]>;
109644
109726
  type FigmaRenderImportModel = z.infer<typeof FigmaRenderImportModel>;
@@ -109677,18 +109759,18 @@ declare const ImageImportModel: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape
109677
109759
  originKey: string;
109678
109760
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
109679
109761
  format: "Png";
109680
- nodeId: string;
109681
109762
  fileId: string;
109682
109763
  scale: number;
109764
+ nodeId: string;
109683
109765
  fileVersionId?: string | undefined;
109684
109766
  }, {
109685
109767
  type: "FigmaRender";
109686
109768
  originKey: string;
109687
109769
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
109688
109770
  format: "Png";
109689
- nodeId: string;
109690
109771
  fileId: string;
109691
109772
  scale: number;
109773
+ nodeId: string;
109692
109774
  fileVersionId?: string | undefined;
109693
109775
  }>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
109694
109776
  scope: z.ZodEnum<["DocumentationFrame", "ComponentThumbnail", "DesignSystem", "Documentation"]>;
@@ -109705,16 +109787,16 @@ declare const ImageImportModel: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape
109705
109787
  originKey: string;
109706
109788
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
109707
109789
  format: "Svg";
109708
- nodeId: string;
109709
109790
  fileId: string;
109791
+ nodeId: string;
109710
109792
  fileVersionId?: string | undefined;
109711
109793
  }, {
109712
109794
  type: "FigmaRender";
109713
109795
  originKey: string;
109714
109796
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
109715
109797
  format: "Svg";
109716
- nodeId: string;
109717
109798
  fileId: string;
109799
+ nodeId: string;
109718
109800
  fileVersionId?: string | undefined;
109719
109801
  }>]>]>;
109720
109802
  type ImageImportModel = z.infer<typeof ImageImportModel>;
@@ -152505,13 +152587,13 @@ declare const PulsarContributionConfigurationProperty: z.ZodObject<z.objectUtil.
152505
152587
  }>;
152506
152588
  type PulsarContributionConfigurationProperty = z.infer<typeof PulsarContributionConfigurationProperty>;
152507
152589
 
152508
- declare const FlaggedFeature: z.ZodEnum<["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter", "VariablesOrder", "TypographyPropsKeepAliases", "GradientPropsKeepAliases", "ShadowPropsKeepAliases"]>;
152590
+ declare const FlaggedFeature: z.ZodEnum<["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter", "VariablesOrder", "TypographyPropsKeepAliases", "GradientPropsKeepAliases", "ShadowPropsKeepAliases", "NonCompatibleTypeChanges"]>;
152509
152591
  type FlaggedFeature = z.infer<typeof FlaggedFeature>;
152510
- declare const FeatureFlagMap: z.ZodRecord<z.ZodEnum<["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter", "VariablesOrder", "TypographyPropsKeepAliases", "GradientPropsKeepAliases", "ShadowPropsKeepAliases"]>, z.ZodBoolean>;
152592
+ declare const FeatureFlagMap: z.ZodRecord<z.ZodEnum<["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter", "VariablesOrder", "TypographyPropsKeepAliases", "GradientPropsKeepAliases", "ShadowPropsKeepAliases", "NonCompatibleTypeChanges"]>, z.ZodBoolean>;
152511
152593
  type FeatureFlagMap = z.infer<typeof FeatureFlagMap>;
152512
152594
  declare const FeatureFlag: z.ZodObject<{
152513
152595
  id: z.ZodString;
152514
- feature: z.ZodEnum<["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter", "VariablesOrder", "TypographyPropsKeepAliases", "GradientPropsKeepAliases", "ShadowPropsKeepAliases"]>;
152596
+ feature: z.ZodEnum<["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter", "VariablesOrder", "TypographyPropsKeepAliases", "GradientPropsKeepAliases", "ShadowPropsKeepAliases", "NonCompatibleTypeChanges"]>;
152515
152597
  createdAt: z.ZodDate;
152516
152598
  enabled: z.ZodBoolean;
152517
152599
  designSystemId: z.ZodOptional<z.ZodString>;
@@ -152519,13 +152601,13 @@ declare const FeatureFlag: z.ZodObject<{
152519
152601
  id: string;
152520
152602
  createdAt: Date;
152521
152603
  enabled: boolean;
152522
- feature: "FigmaImporterV2" | "ShadowOpacityOptional" | "DisableImporter" | "VariablesOrder" | "TypographyPropsKeepAliases" | "GradientPropsKeepAliases" | "ShadowPropsKeepAliases";
152604
+ feature: "FigmaImporterV2" | "ShadowOpacityOptional" | "DisableImporter" | "VariablesOrder" | "TypographyPropsKeepAliases" | "GradientPropsKeepAliases" | "ShadowPropsKeepAliases" | "NonCompatibleTypeChanges";
152523
152605
  designSystemId?: string | undefined;
152524
152606
  }, {
152525
152607
  id: string;
152526
152608
  createdAt: Date;
152527
152609
  enabled: boolean;
152528
- feature: "FigmaImporterV2" | "ShadowOpacityOptional" | "DisableImporter" | "VariablesOrder" | "TypographyPropsKeepAliases" | "GradientPropsKeepAliases" | "ShadowPropsKeepAliases";
152610
+ feature: "FigmaImporterV2" | "ShadowOpacityOptional" | "DisableImporter" | "VariablesOrder" | "TypographyPropsKeepAliases" | "GradientPropsKeepAliases" | "ShadowPropsKeepAliases" | "NonCompatibleTypeChanges";
152529
152611
  designSystemId?: string | undefined;
152530
152612
  }>;
152531
152613
  type FeatureFlag = z.infer<typeof FeatureFlag>;
@@ -181303,4 +181385,4 @@ type PersonalAccessTokenWithUser = {
181303
181385
  token: PersonalAccessToken;
181304
181386
  };
181305
181387
 
181306
- export { Address, type AllFields, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeIntegrationDump, Collection, CollectionImportModel, CollectionImportModelInput, CollectionOrigin, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateCollection, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystem, type CreateDesignSystemInvitation, type CreateDesignSystemMembership, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, type CreateDocumentationPageContent, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreatePublishedDocPageVisitsEntry, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, type DesignSystemVersionParsedRoomId, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, type DocumentationPageOldParsedRoomId, type DocumentationPageParsedRoomId, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyImmutableType, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobExporterConfiguration, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyDefinition, ExporterPropertyDefinitionArray, ExporterPropertyDefinitionBoolean, ExporterPropertyDefinitionEnum, ExporterPropertyDefinitionNumber, ExporterPropertyDefinitionObject, ExporterPropertyDefinitionString, ExporterPropertyDefinitionValue, ExporterPropertyDefinitionValueMap, ExporterPropertyImageValue, ExporterPropertyType, ExporterPropertyValue, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, FeatureFlagsKeepAliases, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaNodeRenderFormat, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, GitBranch, GitIntegrationType, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetBlockConfig, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionFigmaComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentBlockConfig, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenBlockConfig, PageBlockTokenNameFormat, PageBlockTokenValueFormat, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, type ParsedRoomId, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocPageVisitsEntry, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, type RoomOwner, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShadowValue, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateCollection, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserSource, UserTest, VersionCreationJob, VersionCreationJobStatus, type VersionRoomOwner, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, type WorkspaceParsedRoomId, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, type WorkspaceRoomOwner, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isNotNullish, isNullish, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, recordToMap, removeCommentSpans, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };
181388
+ export { Address, type AllFields, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeIntegrationDump, Collection, CollectionImportModel, CollectionImportModelInput, CollectionOrigin, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateCollection, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystem, type CreateDesignSystemInvitation, type CreateDesignSystemMembership, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, type CreateDocumentationPageContent, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreatePublishedDocPageVisitsEntry, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, type DesignSystemVersionParsedRoomId, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, type DocumentationPageOldParsedRoomId, type DocumentationPageParsedRoomId, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyImmutableType, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobExporterConfiguration, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyDefinition, ExporterPropertyDefinitionArray, ExporterPropertyDefinitionBoolean, ExporterPropertyDefinitionEnum, ExporterPropertyDefinitionNumber, ExporterPropertyDefinitionObject, ExporterPropertyDefinitionString, ExporterPropertyDefinitionValue, ExporterPropertyDefinitionValueMap, ExporterPropertyImageValue, ExporterPropertyType, ExporterPropertyValue, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, FeatureFlagsKeepAliases, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceOrigin, FigmaNodeRelinkData, FigmaNodeRenderError, FigmaNodeRenderErrorType, FigmaNodeRenderFormat, FigmaNodeRenderState, FigmaNodeRenderedImage, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, GitBranch, GitIntegrationType, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetBlockConfig, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionFigmaComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentBlockConfig, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenBlockConfig, PageBlockTokenNameFormat, PageBlockTokenValueFormat, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, type ParsedRoomId, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocPageVisitsEntry, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, type RoomOwner, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShadowValue, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateCollection, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserSource, UserTest, VersionCreationJob, VersionCreationJobStatus, type VersionRoomOwner, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, type WorkspaceParsedRoomId, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, type WorkspaceRoomOwner, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, castStringToDimensionValue, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isNotNullish, isNullish, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, recordToMap, removeCommentSpans, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };