@supernova-studio/model 1.4.3 → 1.4.5

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.ts CHANGED
@@ -48318,22 +48318,27 @@ declare const PageBlockItemFigmaComponentValue: z.ZodObject<{
48318
48318
  entityType: z.ZodEnum<["FigmaComponent"]>;
48319
48319
  entityMeta: z.ZodOptional<z.ZodObject<{
48320
48320
  selectedComponentProperties: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
48321
+ selectedComponentVariants: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>>;
48321
48322
  }, "strip", z.ZodTypeAny, {
48322
48323
  selectedComponentProperties?: string[] | undefined;
48324
+ selectedComponentVariants?: Record<string, string[]> | undefined;
48323
48325
  }, {
48324
48326
  selectedComponentProperties?: string[] | undefined;
48327
+ selectedComponentVariants?: Record<string, string[]> | undefined;
48325
48328
  }>>;
48326
48329
  }, "strip", z.ZodTypeAny, {
48327
48330
  entityId: string;
48328
48331
  entityType: "FigmaComponent";
48329
48332
  entityMeta?: {
48330
48333
  selectedComponentProperties?: string[] | undefined;
48334
+ selectedComponentVariants?: Record<string, string[]> | undefined;
48331
48335
  } | undefined;
48332
48336
  }, {
48333
48337
  entityId: string;
48334
48338
  entityType: "FigmaComponent";
48335
48339
  entityMeta?: {
48336
48340
  selectedComponentProperties?: string[] | undefined;
48341
+ selectedComponentVariants?: Record<string, string[]> | undefined;
48337
48342
  } | undefined;
48338
48343
  }>, "many">>;
48339
48344
  }, "strip", z.ZodTypeAny, {
@@ -48342,6 +48347,7 @@ declare const PageBlockItemFigmaComponentValue: z.ZodObject<{
48342
48347
  entityType: "FigmaComponent";
48343
48348
  entityMeta?: {
48344
48349
  selectedComponentProperties?: string[] | undefined;
48350
+ selectedComponentVariants?: Record<string, string[]> | undefined;
48345
48351
  } | undefined;
48346
48352
  }[];
48347
48353
  backgroundColor?: {
@@ -48360,6 +48366,7 @@ declare const PageBlockItemFigmaComponentValue: z.ZodObject<{
48360
48366
  entityType: "FigmaComponent";
48361
48367
  entityMeta?: {
48362
48368
  selectedComponentProperties?: string[] | undefined;
48369
+ selectedComponentVariants?: Record<string, string[]> | undefined;
48363
48370
  } | undefined;
48364
48371
  }[] | undefined;
48365
48372
  backgroundColor?: {
@@ -83273,6 +83280,430 @@ declare const FigmaNodeRendererPayload: z.ZodObject<{
83273
83280
  }>;
83274
83281
  type FigmaNodeRendererPayload = z.infer<typeof FigmaNodeRendererPayload>;
83275
83282
 
83283
+ type FigmaFileStructureNodeImportModelBaseInput = z.input<typeof FigmaFileStructureNodeBase> & {
83284
+ children: FigmaFileStructureNodeImportModelBaseInput[];
83285
+ };
83286
+ declare const FigmaFileStructureNodeImportModel: z.ZodType<FigmaFileStructureNodeImportModel, ZodTypeDef, FigmaFileStructureNodeImportModelBaseInput>;
83287
+ type FigmaFileStructureNodeImportModel = z.infer<typeof FigmaFileStructureNodeBase> & {
83288
+ children: FigmaFileStructureNodeImportModel[];
83289
+ };
83290
+ declare const FigmaFileStructureImportModel: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
83291
+ id: z.ZodString;
83292
+ meta: z.ZodObject<{
83293
+ name: z.ZodString;
83294
+ description: z.ZodOptional<z.ZodString>;
83295
+ }, "strip", z.ZodTypeAny, {
83296
+ name: string;
83297
+ description?: string | undefined;
83298
+ }, {
83299
+ name: string;
83300
+ description?: string | undefined;
83301
+ }>;
83302
+ origin: z.ZodObject<{
83303
+ id: z.ZodString;
83304
+ sourceId: z.ZodString;
83305
+ name: z.ZodString;
83306
+ }, "strip", z.ZodTypeAny, {
83307
+ id: string;
83308
+ name: string;
83309
+ sourceId: string;
83310
+ }, {
83311
+ id: string;
83312
+ name: string;
83313
+ sourceId: string;
83314
+ }>;
83315
+ brandPersistentId: z.ZodString;
83316
+ sortOrder: z.ZodNumber;
83317
+ }, {
83318
+ data: z.ZodObject<{
83319
+ rootNode: z.ZodType<FigmaFileStructureNodeImportModel, ZodTypeDef, FigmaFileStructureNodeImportModelBaseInput>;
83320
+ assetsInFile: z.ZodObject<{
83321
+ frames: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
83322
+ components: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
83323
+ componentSets: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
83324
+ }, "strip", z.ZodTypeAny, {
83325
+ components: number;
83326
+ componentSets: number;
83327
+ frames: number;
83328
+ }, {
83329
+ components?: number | null | undefined;
83330
+ componentSets?: number | null | undefined;
83331
+ frames?: number | null | undefined;
83332
+ }>;
83333
+ }, "strip", z.ZodTypeAny, {
83334
+ assetsInFile: {
83335
+ components: number;
83336
+ componentSets: number;
83337
+ frames: number;
83338
+ };
83339
+ rootNode: {
83340
+ type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
83341
+ id: string;
83342
+ name: string;
83343
+ size?: {
83344
+ width: number;
83345
+ height: number;
83346
+ } | undefined;
83347
+ parentComponentSetId?: string | undefined;
83348
+ } & {
83349
+ children: FigmaFileStructureNodeImportModel[];
83350
+ };
83351
+ }, {
83352
+ assetsInFile: {
83353
+ components?: number | null | undefined;
83354
+ componentSets?: number | null | undefined;
83355
+ frames?: number | null | undefined;
83356
+ };
83357
+ rootNode: {
83358
+ type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
83359
+ id: string;
83360
+ name: string;
83361
+ size?: {
83362
+ width?: number | null | undefined;
83363
+ height?: number | null | undefined;
83364
+ } | undefined;
83365
+ parentComponentSetId?: string | undefined;
83366
+ } & {
83367
+ children: FigmaFileStructureNodeImportModelBaseInput[];
83368
+ };
83369
+ }>;
83370
+ }>, {
83371
+ origin: z.ZodObject<{
83372
+ sourceId: z.ZodString;
83373
+ fileId: z.ZodOptional<z.ZodString>;
83374
+ }, "strip", z.ZodTypeAny, {
83375
+ sourceId: string;
83376
+ fileId?: string | undefined;
83377
+ }, {
83378
+ sourceId: string;
83379
+ fileId?: string | undefined;
83380
+ }>;
83381
+ }>, "strip", z.ZodTypeAny, {
83382
+ data: {
83383
+ assetsInFile: {
83384
+ components: number;
83385
+ componentSets: number;
83386
+ frames: number;
83387
+ };
83388
+ rootNode: {
83389
+ type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
83390
+ id: string;
83391
+ name: string;
83392
+ size?: {
83393
+ width: number;
83394
+ height: number;
83395
+ } | undefined;
83396
+ parentComponentSetId?: string | undefined;
83397
+ } & {
83398
+ children: FigmaFileStructureNodeImportModel[];
83399
+ };
83400
+ };
83401
+ id: string;
83402
+ origin: {
83403
+ sourceId: string;
83404
+ fileId?: string | undefined;
83405
+ };
83406
+ brandPersistentId: string;
83407
+ sortOrder: number;
83408
+ meta: {
83409
+ name: string;
83410
+ description?: string | undefined;
83411
+ };
83412
+ }, {
83413
+ data: {
83414
+ assetsInFile: {
83415
+ components?: number | null | undefined;
83416
+ componentSets?: number | null | undefined;
83417
+ frames?: number | null | undefined;
83418
+ };
83419
+ rootNode: {
83420
+ type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
83421
+ id: string;
83422
+ name: string;
83423
+ size?: {
83424
+ width?: number | null | undefined;
83425
+ height?: number | null | undefined;
83426
+ } | undefined;
83427
+ parentComponentSetId?: string | undefined;
83428
+ } & {
83429
+ children: FigmaFileStructureNodeImportModelBaseInput[];
83430
+ };
83431
+ };
83432
+ id: string;
83433
+ origin: {
83434
+ sourceId: string;
83435
+ fileId?: string | undefined;
83436
+ };
83437
+ brandPersistentId: string;
83438
+ sortOrder: number;
83439
+ meta: {
83440
+ name: string;
83441
+ description?: string | undefined;
83442
+ };
83443
+ }>;
83444
+ type FigmaFileStructureImportModel = z.infer<typeof FigmaFileStructureImportModel>;
83445
+ declare const FigmaFileStructureImportModelInput: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<Omit<{
83446
+ id: z.ZodString;
83447
+ meta: z.ZodObject<{
83448
+ name: z.ZodString;
83449
+ description: z.ZodOptional<z.ZodString>;
83450
+ }, "strip", z.ZodTypeAny, {
83451
+ name: string;
83452
+ description?: string | undefined;
83453
+ }, {
83454
+ name: string;
83455
+ description?: string | undefined;
83456
+ }>;
83457
+ origin: z.ZodObject<{
83458
+ id: z.ZodString;
83459
+ sourceId: z.ZodString;
83460
+ name: z.ZodString;
83461
+ }, "strip", z.ZodTypeAny, {
83462
+ id: string;
83463
+ name: string;
83464
+ sourceId: string;
83465
+ }, {
83466
+ id: string;
83467
+ name: string;
83468
+ sourceId: string;
83469
+ }>;
83470
+ brandPersistentId: z.ZodString;
83471
+ sortOrder: z.ZodNumber;
83472
+ }, "origin" | "brandPersistentId" | "sortOrder">, {
83473
+ originId: z.ZodString;
83474
+ originMetadata: z.ZodRecord<z.ZodString, z.ZodAny>;
83475
+ }>, {
83476
+ data: z.ZodObject<{
83477
+ rootNode: z.ZodType<FigmaFileStructureNodeImportModel, ZodTypeDef, FigmaFileStructureNodeImportModelBaseInput>;
83478
+ assetsInFile: z.ZodObject<{
83479
+ frames: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
83480
+ components: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
83481
+ componentSets: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
83482
+ }, "strip", z.ZodTypeAny, {
83483
+ components: number;
83484
+ componentSets: number;
83485
+ frames: number;
83486
+ }, {
83487
+ components?: number | null | undefined;
83488
+ componentSets?: number | null | undefined;
83489
+ frames?: number | null | undefined;
83490
+ }>;
83491
+ }, "strip", z.ZodTypeAny, {
83492
+ assetsInFile: {
83493
+ components: number;
83494
+ componentSets: number;
83495
+ frames: number;
83496
+ };
83497
+ rootNode: {
83498
+ type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
83499
+ id: string;
83500
+ name: string;
83501
+ size?: {
83502
+ width: number;
83503
+ height: number;
83504
+ } | undefined;
83505
+ parentComponentSetId?: string | undefined;
83506
+ } & {
83507
+ children: FigmaFileStructureNodeImportModel[];
83508
+ };
83509
+ }, {
83510
+ assetsInFile: {
83511
+ components?: number | null | undefined;
83512
+ componentSets?: number | null | undefined;
83513
+ frames?: number | null | undefined;
83514
+ };
83515
+ rootNode: {
83516
+ type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
83517
+ id: string;
83518
+ name: string;
83519
+ size?: {
83520
+ width?: number | null | undefined;
83521
+ height?: number | null | undefined;
83522
+ } | undefined;
83523
+ parentComponentSetId?: string | undefined;
83524
+ } & {
83525
+ children: FigmaFileStructureNodeImportModelBaseInput[];
83526
+ };
83527
+ }>;
83528
+ }>, {
83529
+ fileVersionId: z.ZodString;
83530
+ }>, "strip", z.ZodTypeAny, {
83531
+ data: {
83532
+ assetsInFile: {
83533
+ components: number;
83534
+ componentSets: number;
83535
+ frames: number;
83536
+ };
83537
+ rootNode: {
83538
+ type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
83539
+ id: string;
83540
+ name: string;
83541
+ size?: {
83542
+ width: number;
83543
+ height: number;
83544
+ } | undefined;
83545
+ parentComponentSetId?: string | undefined;
83546
+ } & {
83547
+ children: FigmaFileStructureNodeImportModel[];
83548
+ };
83549
+ };
83550
+ id: string;
83551
+ meta: {
83552
+ name: string;
83553
+ description?: string | undefined;
83554
+ };
83555
+ originId: string;
83556
+ originMetadata: Record<string, any>;
83557
+ fileVersionId: string;
83558
+ }, {
83559
+ data: {
83560
+ assetsInFile: {
83561
+ components?: number | null | undefined;
83562
+ componentSets?: number | null | undefined;
83563
+ frames?: number | null | undefined;
83564
+ };
83565
+ rootNode: {
83566
+ type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
83567
+ id: string;
83568
+ name: string;
83569
+ size?: {
83570
+ width?: number | null | undefined;
83571
+ height?: number | null | undefined;
83572
+ } | undefined;
83573
+ parentComponentSetId?: string | undefined;
83574
+ } & {
83575
+ children: FigmaFileStructureNodeImportModelBaseInput[];
83576
+ };
83577
+ };
83578
+ id: string;
83579
+ meta: {
83580
+ name: string;
83581
+ description?: string | undefined;
83582
+ };
83583
+ originId: string;
83584
+ originMetadata: Record<string, any>;
83585
+ fileVersionId: string;
83586
+ }>;
83587
+ type FigmaFileStructureImportModelInput = z.infer<typeof FigmaFileStructureImportModelInput>;
83588
+ declare function figmaFileStructureImportModelToMap(root: FigmaFileStructureNodeImportModel): Map<string, FigmaFileStructureNodeImportModel>;
83589
+
83590
+ declare const FigmaNodeStructureDataV2: z.ZodObject<{
83591
+ rootNode: z.ZodType<FigmaFileStructureNodeImportModel, z.ZodTypeDef, {
83592
+ type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
83593
+ id: string;
83594
+ name: string;
83595
+ size?: {
83596
+ width?: number | null | undefined;
83597
+ height?: number | null | undefined;
83598
+ } | undefined;
83599
+ parentComponentSetId?: string | undefined;
83600
+ } & {
83601
+ children: ({
83602
+ type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
83603
+ id: string;
83604
+ name: string;
83605
+ size?: {
83606
+ width?: number | null | undefined;
83607
+ height?: number | null | undefined;
83608
+ } | undefined;
83609
+ parentComponentSetId?: string | undefined;
83610
+ } & /*elided*/ any)[];
83611
+ }>;
83612
+ assetsInFile: z.ZodObject<{
83613
+ components: z.ZodNumber;
83614
+ componentSets: z.ZodNumber;
83615
+ frames: z.ZodNumber;
83616
+ }, "strip", z.ZodTypeAny, {
83617
+ components: number;
83618
+ componentSets: number;
83619
+ frames: number;
83620
+ }, {
83621
+ components: number;
83622
+ componentSets: number;
83623
+ frames: number;
83624
+ }>;
83625
+ }, "strip", z.ZodTypeAny, {
83626
+ assetsInFile: {
83627
+ components: number;
83628
+ componentSets: number;
83629
+ frames: number;
83630
+ };
83631
+ rootNode: {
83632
+ type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
83633
+ id: string;
83634
+ name: string;
83635
+ size?: {
83636
+ width: number;
83637
+ height: number;
83638
+ } | undefined;
83639
+ parentComponentSetId?: string | undefined;
83640
+ } & {
83641
+ children: FigmaFileStructureNodeImportModel[];
83642
+ };
83643
+ }, {
83644
+ assetsInFile: {
83645
+ components: number;
83646
+ componentSets: number;
83647
+ frames: number;
83648
+ };
83649
+ rootNode: {
83650
+ type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
83651
+ id: string;
83652
+ name: string;
83653
+ size?: {
83654
+ width?: number | null | undefined;
83655
+ height?: number | null | undefined;
83656
+ } | undefined;
83657
+ parentComponentSetId?: string | undefined;
83658
+ } & {
83659
+ children: ({
83660
+ type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
83661
+ id: string;
83662
+ name: string;
83663
+ size?: {
83664
+ width?: number | null | undefined;
83665
+ height?: number | null | undefined;
83666
+ } | undefined;
83667
+ parentComponentSetId?: string | undefined;
83668
+ } & /*elided*/ any)[];
83669
+ };
83670
+ }>;
83671
+ type FigmaNodeStructureDataV2 = z.infer<typeof FigmaNodeStructureDataV2>;
83672
+
83673
+ declare const FigmaNodeStructureStateV2: z.ZodEnum<["InProgress", "Success", "Failed"]>;
83674
+ type FigmaNodeStructureStateV2 = z.infer<typeof FigmaNodeStructureStateV2>;
83675
+ declare const FigmaNodeStructureV2: z.ZodObject<{
83676
+ id: z.ZodString;
83677
+ designSystemId: z.ZodString;
83678
+ sourceId: z.ZodString;
83679
+ storagePath: z.ZodOptional<z.ZodString>;
83680
+ createdAt: z.ZodDate;
83681
+ updatedAt: z.ZodDate;
83682
+ importState: z.ZodEnum<["InProgress", "Success", "Failed"]>;
83683
+ isFromLegacyStorage: z.ZodBoolean;
83684
+ }, "strip", z.ZodTypeAny, {
83685
+ id: string;
83686
+ createdAt: Date;
83687
+ updatedAt: Date;
83688
+ designSystemId: string;
83689
+ sourceId: string;
83690
+ importState: "InProgress" | "Success" | "Failed";
83691
+ isFromLegacyStorage: boolean;
83692
+ storagePath?: string | undefined;
83693
+ }, {
83694
+ id: string;
83695
+ createdAt: Date;
83696
+ updatedAt: Date;
83697
+ designSystemId: string;
83698
+ sourceId: string;
83699
+ importState: "InProgress" | "Success" | "Failed";
83700
+ isFromLegacyStorage: boolean;
83701
+ storagePath?: string | undefined;
83702
+ }>;
83703
+ type FigmaNodeStructureV2 = z.infer<typeof FigmaNodeStructureV2>;
83704
+ type CreateFigmaNodeStructureV2 = OmitStrict<DbCreateInputOmit<FigmaNodeStructureV2>, "isFromLegacyStorage">;
83705
+ type UpdateFigmaNodeStructureV2 = OmitStrict<DbUpdate<FigmaNodeStructureV2>, "designSystemId" | "sourceId" | "isFromLegacyStorage">;
83706
+
83276
83707
  declare const FigmaFileDownloadScope: z.ZodObject<{
83277
83708
  styles: z.ZodBoolean;
83278
83709
  components: z.ZodBoolean;
@@ -110717,313 +111148,6 @@ declare const DataSourceImportModel: z.ZodObject<{
110717
111148
  }>;
110718
111149
  type DataSourceImportModel = z.infer<typeof DataSourceImportModel>;
110719
111150
 
110720
- type FigmaFileStructureNodeImportModelBaseInput = z.input<typeof FigmaFileStructureNodeBase> & {
110721
- children: FigmaFileStructureNodeImportModelBaseInput[];
110722
- };
110723
- declare const FigmaFileStructureNodeImportModel: z.ZodType<FigmaFileStructureNodeImportModel, ZodTypeDef, FigmaFileStructureNodeImportModelBaseInput>;
110724
- type FigmaFileStructureNodeImportModel = z.infer<typeof FigmaFileStructureNodeBase> & {
110725
- children: FigmaFileStructureNodeImportModel[];
110726
- };
110727
- declare const FigmaFileStructureImportModel: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
110728
- id: z.ZodString;
110729
- meta: z.ZodObject<{
110730
- name: z.ZodString;
110731
- description: z.ZodOptional<z.ZodString>;
110732
- }, "strip", z.ZodTypeAny, {
110733
- name: string;
110734
- description?: string | undefined;
110735
- }, {
110736
- name: string;
110737
- description?: string | undefined;
110738
- }>;
110739
- origin: z.ZodObject<{
110740
- id: z.ZodString;
110741
- sourceId: z.ZodString;
110742
- name: z.ZodString;
110743
- }, "strip", z.ZodTypeAny, {
110744
- id: string;
110745
- name: string;
110746
- sourceId: string;
110747
- }, {
110748
- id: string;
110749
- name: string;
110750
- sourceId: string;
110751
- }>;
110752
- brandPersistentId: z.ZodString;
110753
- sortOrder: z.ZodNumber;
110754
- }, {
110755
- data: z.ZodObject<{
110756
- rootNode: z.ZodType<FigmaFileStructureNodeImportModel, ZodTypeDef, FigmaFileStructureNodeImportModelBaseInput>;
110757
- assetsInFile: z.ZodObject<{
110758
- frames: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
110759
- components: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
110760
- componentSets: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
110761
- }, "strip", z.ZodTypeAny, {
110762
- components: number;
110763
- componentSets: number;
110764
- frames: number;
110765
- }, {
110766
- components?: number | null | undefined;
110767
- componentSets?: number | null | undefined;
110768
- frames?: number | null | undefined;
110769
- }>;
110770
- }, "strip", z.ZodTypeAny, {
110771
- assetsInFile: {
110772
- components: number;
110773
- componentSets: number;
110774
- frames: number;
110775
- };
110776
- rootNode: {
110777
- type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
110778
- id: string;
110779
- name: string;
110780
- size?: {
110781
- width: number;
110782
- height: number;
110783
- } | undefined;
110784
- parentComponentSetId?: string | undefined;
110785
- } & {
110786
- children: FigmaFileStructureNodeImportModel[];
110787
- };
110788
- }, {
110789
- assetsInFile: {
110790
- components?: number | null | undefined;
110791
- componentSets?: number | null | undefined;
110792
- frames?: number | null | undefined;
110793
- };
110794
- rootNode: {
110795
- type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
110796
- id: string;
110797
- name: string;
110798
- size?: {
110799
- width?: number | null | undefined;
110800
- height?: number | null | undefined;
110801
- } | undefined;
110802
- parentComponentSetId?: string | undefined;
110803
- } & {
110804
- children: FigmaFileStructureNodeImportModelBaseInput[];
110805
- };
110806
- }>;
110807
- }>, {
110808
- origin: z.ZodObject<{
110809
- sourceId: z.ZodString;
110810
- fileId: z.ZodOptional<z.ZodString>;
110811
- }, "strip", z.ZodTypeAny, {
110812
- sourceId: string;
110813
- fileId?: string | undefined;
110814
- }, {
110815
- sourceId: string;
110816
- fileId?: string | undefined;
110817
- }>;
110818
- }>, "strip", z.ZodTypeAny, {
110819
- data: {
110820
- assetsInFile: {
110821
- components: number;
110822
- componentSets: number;
110823
- frames: number;
110824
- };
110825
- rootNode: {
110826
- type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
110827
- id: string;
110828
- name: string;
110829
- size?: {
110830
- width: number;
110831
- height: number;
110832
- } | undefined;
110833
- parentComponentSetId?: string | undefined;
110834
- } & {
110835
- children: FigmaFileStructureNodeImportModel[];
110836
- };
110837
- };
110838
- id: string;
110839
- origin: {
110840
- sourceId: string;
110841
- fileId?: string | undefined;
110842
- };
110843
- brandPersistentId: string;
110844
- sortOrder: number;
110845
- meta: {
110846
- name: string;
110847
- description?: string | undefined;
110848
- };
110849
- }, {
110850
- data: {
110851
- assetsInFile: {
110852
- components?: number | null | undefined;
110853
- componentSets?: number | null | undefined;
110854
- frames?: number | null | undefined;
110855
- };
110856
- rootNode: {
110857
- type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
110858
- id: string;
110859
- name: string;
110860
- size?: {
110861
- width?: number | null | undefined;
110862
- height?: number | null | undefined;
110863
- } | undefined;
110864
- parentComponentSetId?: string | undefined;
110865
- } & {
110866
- children: FigmaFileStructureNodeImportModelBaseInput[];
110867
- };
110868
- };
110869
- id: string;
110870
- origin: {
110871
- sourceId: string;
110872
- fileId?: string | undefined;
110873
- };
110874
- brandPersistentId: string;
110875
- sortOrder: number;
110876
- meta: {
110877
- name: string;
110878
- description?: string | undefined;
110879
- };
110880
- }>;
110881
- type FigmaFileStructureImportModel = z.infer<typeof FigmaFileStructureImportModel>;
110882
- declare const FigmaFileStructureImportModelInput: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<Omit<{
110883
- id: z.ZodString;
110884
- meta: z.ZodObject<{
110885
- name: z.ZodString;
110886
- description: z.ZodOptional<z.ZodString>;
110887
- }, "strip", z.ZodTypeAny, {
110888
- name: string;
110889
- description?: string | undefined;
110890
- }, {
110891
- name: string;
110892
- description?: string | undefined;
110893
- }>;
110894
- origin: z.ZodObject<{
110895
- id: z.ZodString;
110896
- sourceId: z.ZodString;
110897
- name: z.ZodString;
110898
- }, "strip", z.ZodTypeAny, {
110899
- id: string;
110900
- name: string;
110901
- sourceId: string;
110902
- }, {
110903
- id: string;
110904
- name: string;
110905
- sourceId: string;
110906
- }>;
110907
- brandPersistentId: z.ZodString;
110908
- sortOrder: z.ZodNumber;
110909
- }, "origin" | "brandPersistentId" | "sortOrder">, {
110910
- originId: z.ZodString;
110911
- originMetadata: z.ZodRecord<z.ZodString, z.ZodAny>;
110912
- }>, {
110913
- data: z.ZodObject<{
110914
- rootNode: z.ZodType<FigmaFileStructureNodeImportModel, ZodTypeDef, FigmaFileStructureNodeImportModelBaseInput>;
110915
- assetsInFile: z.ZodObject<{
110916
- frames: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
110917
- components: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
110918
- componentSets: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
110919
- }, "strip", z.ZodTypeAny, {
110920
- components: number;
110921
- componentSets: number;
110922
- frames: number;
110923
- }, {
110924
- components?: number | null | undefined;
110925
- componentSets?: number | null | undefined;
110926
- frames?: number | null | undefined;
110927
- }>;
110928
- }, "strip", z.ZodTypeAny, {
110929
- assetsInFile: {
110930
- components: number;
110931
- componentSets: number;
110932
- frames: number;
110933
- };
110934
- rootNode: {
110935
- type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
110936
- id: string;
110937
- name: string;
110938
- size?: {
110939
- width: number;
110940
- height: number;
110941
- } | undefined;
110942
- parentComponentSetId?: string | undefined;
110943
- } & {
110944
- children: FigmaFileStructureNodeImportModel[];
110945
- };
110946
- }, {
110947
- assetsInFile: {
110948
- components?: number | null | undefined;
110949
- componentSets?: number | null | undefined;
110950
- frames?: number | null | undefined;
110951
- };
110952
- rootNode: {
110953
- type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
110954
- id: string;
110955
- name: string;
110956
- size?: {
110957
- width?: number | null | undefined;
110958
- height?: number | null | undefined;
110959
- } | undefined;
110960
- parentComponentSetId?: string | undefined;
110961
- } & {
110962
- children: FigmaFileStructureNodeImportModelBaseInput[];
110963
- };
110964
- }>;
110965
- }>, {
110966
- fileVersionId: z.ZodString;
110967
- }>, "strip", z.ZodTypeAny, {
110968
- data: {
110969
- assetsInFile: {
110970
- components: number;
110971
- componentSets: number;
110972
- frames: number;
110973
- };
110974
- rootNode: {
110975
- type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
110976
- id: string;
110977
- name: string;
110978
- size?: {
110979
- width: number;
110980
- height: number;
110981
- } | undefined;
110982
- parentComponentSetId?: string | undefined;
110983
- } & {
110984
- children: FigmaFileStructureNodeImportModel[];
110985
- };
110986
- };
110987
- id: string;
110988
- meta: {
110989
- name: string;
110990
- description?: string | undefined;
110991
- };
110992
- originId: string;
110993
- originMetadata: Record<string, any>;
110994
- fileVersionId: string;
110995
- }, {
110996
- data: {
110997
- assetsInFile: {
110998
- components?: number | null | undefined;
110999
- componentSets?: number | null | undefined;
111000
- frames?: number | null | undefined;
111001
- };
111002
- rootNode: {
111003
- type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
111004
- id: string;
111005
- name: string;
111006
- size?: {
111007
- width?: number | null | undefined;
111008
- height?: number | null | undefined;
111009
- } | undefined;
111010
- parentComponentSetId?: string | undefined;
111011
- } & {
111012
- children: FigmaFileStructureNodeImportModelBaseInput[];
111013
- };
111014
- };
111015
- id: string;
111016
- meta: {
111017
- name: string;
111018
- description?: string | undefined;
111019
- };
111020
- originId: string;
111021
- originMetadata: Record<string, any>;
111022
- fileVersionId: string;
111023
- }>;
111024
- type FigmaFileStructureImportModelInput = z.infer<typeof FigmaFileStructureImportModelInput>;
111025
- declare function figmaFileStructureImportModelToMap(root: FigmaFileStructureNodeImportModel): Map<string, FigmaFileStructureNodeImportModel>;
111026
-
111027
111151
  type DesignElementOriginImportModel = {
111028
111152
  id: string;
111029
111153
  name: string;
@@ -184167,4 +184291,4 @@ type PersonalAccessTokenWithUser = {
184167
184291
  token: PersonalAccessToken;
184168
184292
  };
184169
184293
 
184170
- 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, type DataSourceOfType, 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, ExportDestinationsMapUpdate, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobExporterConfiguration, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterConfigurationPropertyValue, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyDefinition, ExporterPropertyDefinitionArray, ExporterPropertyDefinitionBoolean, ExporterPropertyDefinitionEnum, ExporterPropertyDefinitionEnumOption, ExporterPropertyDefinitionNumber, ExporterPropertyDefinitionObject, ExporterPropertyDefinitionString, type ExporterPropertyDefinitionValue, ExporterPropertyImageValue, ExporterPropertyType, ExporterPropertyValue, ExporterPropertyValueMap, 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, FigmaFile, 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, FigmaNodeRendererPayload, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, GitBranch, GitCommonDestinationOptions, GitIntegrationType, GitInteropPulsarError, 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, ListExporterQuery, 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, PageRedirect, 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, type UpdateIntegrationCredential, 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, UserTheme, 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, applyShallowObjectUpdate, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, castStringToDimensionValue, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, generateShortPersistentId, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, isDataSourceOfType, 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 };
184294
+ 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 CreateFigmaNodeStructureV2, 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, type DataSourceOfType, 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, ExportDestinationsMapUpdate, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobExporterConfiguration, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterConfigurationPropertyValue, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyDefinition, ExporterPropertyDefinitionArray, ExporterPropertyDefinitionBoolean, ExporterPropertyDefinitionEnum, ExporterPropertyDefinitionEnumOption, ExporterPropertyDefinitionNumber, ExporterPropertyDefinitionObject, ExporterPropertyDefinitionString, type ExporterPropertyDefinitionValue, ExporterPropertyImageValue, ExporterPropertyType, ExporterPropertyValue, ExporterPropertyValueMap, 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, FigmaFile, 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, FigmaNodeRendererPayload, FigmaNodeStructureDataV2, FigmaNodeStructureStateV2, FigmaNodeStructureV2, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, GitBranch, GitCommonDestinationOptions, GitIntegrationType, GitInteropPulsarError, 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, ListExporterQuery, 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, PageRedirect, 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 UpdateFigmaNodeStructureV2, type UpdateImportJob, type UpdateIntegrationCredential, 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, UserTheme, 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, applyShallowObjectUpdate, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, castStringToDimensionValue, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, generateShortPersistentId, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, isDataSourceOfType, 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 };