@supernova-studio/model 1.4.4 → 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
@@ -83280,6 +83280,430 @@ declare const FigmaNodeRendererPayload: z.ZodObject<{
83280
83280
  }>;
83281
83281
  type FigmaNodeRendererPayload = z.infer<typeof FigmaNodeRendererPayload>;
83282
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
+
83283
83707
  declare const FigmaFileDownloadScope: z.ZodObject<{
83284
83708
  styles: z.ZodBoolean;
83285
83709
  components: z.ZodBoolean;
@@ -110724,313 +111148,6 @@ declare const DataSourceImportModel: z.ZodObject<{
110724
111148
  }>;
110725
111149
  type DataSourceImportModel = z.infer<typeof DataSourceImportModel>;
110726
111150
 
110727
- type FigmaFileStructureNodeImportModelBaseInput = z.input<typeof FigmaFileStructureNodeBase> & {
110728
- children: FigmaFileStructureNodeImportModelBaseInput[];
110729
- };
110730
- declare const FigmaFileStructureNodeImportModel: z.ZodType<FigmaFileStructureNodeImportModel, ZodTypeDef, FigmaFileStructureNodeImportModelBaseInput>;
110731
- type FigmaFileStructureNodeImportModel = z.infer<typeof FigmaFileStructureNodeBase> & {
110732
- children: FigmaFileStructureNodeImportModel[];
110733
- };
110734
- declare const FigmaFileStructureImportModel: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
110735
- id: z.ZodString;
110736
- meta: z.ZodObject<{
110737
- name: z.ZodString;
110738
- description: z.ZodOptional<z.ZodString>;
110739
- }, "strip", z.ZodTypeAny, {
110740
- name: string;
110741
- description?: string | undefined;
110742
- }, {
110743
- name: string;
110744
- description?: string | undefined;
110745
- }>;
110746
- origin: z.ZodObject<{
110747
- id: z.ZodString;
110748
- sourceId: z.ZodString;
110749
- name: z.ZodString;
110750
- }, "strip", z.ZodTypeAny, {
110751
- id: string;
110752
- name: string;
110753
- sourceId: string;
110754
- }, {
110755
- id: string;
110756
- name: string;
110757
- sourceId: string;
110758
- }>;
110759
- brandPersistentId: z.ZodString;
110760
- sortOrder: z.ZodNumber;
110761
- }, {
110762
- data: z.ZodObject<{
110763
- rootNode: z.ZodType<FigmaFileStructureNodeImportModel, ZodTypeDef, FigmaFileStructureNodeImportModelBaseInput>;
110764
- assetsInFile: z.ZodObject<{
110765
- frames: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
110766
- components: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
110767
- componentSets: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
110768
- }, "strip", z.ZodTypeAny, {
110769
- components: number;
110770
- componentSets: number;
110771
- frames: number;
110772
- }, {
110773
- components?: number | null | undefined;
110774
- componentSets?: number | null | undefined;
110775
- frames?: number | null | undefined;
110776
- }>;
110777
- }, "strip", z.ZodTypeAny, {
110778
- assetsInFile: {
110779
- components: number;
110780
- componentSets: number;
110781
- frames: number;
110782
- };
110783
- rootNode: {
110784
- type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
110785
- id: string;
110786
- name: string;
110787
- size?: {
110788
- width: number;
110789
- height: number;
110790
- } | undefined;
110791
- parentComponentSetId?: string | undefined;
110792
- } & {
110793
- children: FigmaFileStructureNodeImportModel[];
110794
- };
110795
- }, {
110796
- assetsInFile: {
110797
- components?: number | null | undefined;
110798
- componentSets?: number | null | undefined;
110799
- frames?: number | null | undefined;
110800
- };
110801
- rootNode: {
110802
- type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
110803
- id: string;
110804
- name: string;
110805
- size?: {
110806
- width?: number | null | undefined;
110807
- height?: number | null | undefined;
110808
- } | undefined;
110809
- parentComponentSetId?: string | undefined;
110810
- } & {
110811
- children: FigmaFileStructureNodeImportModelBaseInput[];
110812
- };
110813
- }>;
110814
- }>, {
110815
- origin: z.ZodObject<{
110816
- sourceId: z.ZodString;
110817
- fileId: z.ZodOptional<z.ZodString>;
110818
- }, "strip", z.ZodTypeAny, {
110819
- sourceId: string;
110820
- fileId?: string | undefined;
110821
- }, {
110822
- sourceId: string;
110823
- fileId?: string | undefined;
110824
- }>;
110825
- }>, "strip", z.ZodTypeAny, {
110826
- data: {
110827
- assetsInFile: {
110828
- components: number;
110829
- componentSets: number;
110830
- frames: number;
110831
- };
110832
- rootNode: {
110833
- type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
110834
- id: string;
110835
- name: string;
110836
- size?: {
110837
- width: number;
110838
- height: number;
110839
- } | undefined;
110840
- parentComponentSetId?: string | undefined;
110841
- } & {
110842
- children: FigmaFileStructureNodeImportModel[];
110843
- };
110844
- };
110845
- id: string;
110846
- origin: {
110847
- sourceId: string;
110848
- fileId?: string | undefined;
110849
- };
110850
- brandPersistentId: string;
110851
- sortOrder: number;
110852
- meta: {
110853
- name: string;
110854
- description?: string | undefined;
110855
- };
110856
- }, {
110857
- data: {
110858
- assetsInFile: {
110859
- components?: number | null | undefined;
110860
- componentSets?: number | null | undefined;
110861
- frames?: number | null | undefined;
110862
- };
110863
- rootNode: {
110864
- type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
110865
- id: string;
110866
- name: string;
110867
- size?: {
110868
- width?: number | null | undefined;
110869
- height?: number | null | undefined;
110870
- } | undefined;
110871
- parentComponentSetId?: string | undefined;
110872
- } & {
110873
- children: FigmaFileStructureNodeImportModelBaseInput[];
110874
- };
110875
- };
110876
- id: string;
110877
- origin: {
110878
- sourceId: string;
110879
- fileId?: string | undefined;
110880
- };
110881
- brandPersistentId: string;
110882
- sortOrder: number;
110883
- meta: {
110884
- name: string;
110885
- description?: string | undefined;
110886
- };
110887
- }>;
110888
- type FigmaFileStructureImportModel = z.infer<typeof FigmaFileStructureImportModel>;
110889
- declare const FigmaFileStructureImportModelInput: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<Omit<{
110890
- id: z.ZodString;
110891
- meta: z.ZodObject<{
110892
- name: z.ZodString;
110893
- description: z.ZodOptional<z.ZodString>;
110894
- }, "strip", z.ZodTypeAny, {
110895
- name: string;
110896
- description?: string | undefined;
110897
- }, {
110898
- name: string;
110899
- description?: string | undefined;
110900
- }>;
110901
- origin: z.ZodObject<{
110902
- id: z.ZodString;
110903
- sourceId: z.ZodString;
110904
- name: z.ZodString;
110905
- }, "strip", z.ZodTypeAny, {
110906
- id: string;
110907
- name: string;
110908
- sourceId: string;
110909
- }, {
110910
- id: string;
110911
- name: string;
110912
- sourceId: string;
110913
- }>;
110914
- brandPersistentId: z.ZodString;
110915
- sortOrder: z.ZodNumber;
110916
- }, "origin" | "brandPersistentId" | "sortOrder">, {
110917
- originId: z.ZodString;
110918
- originMetadata: z.ZodRecord<z.ZodString, z.ZodAny>;
110919
- }>, {
110920
- data: z.ZodObject<{
110921
- rootNode: z.ZodType<FigmaFileStructureNodeImportModel, ZodTypeDef, FigmaFileStructureNodeImportModelBaseInput>;
110922
- assetsInFile: z.ZodObject<{
110923
- frames: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
110924
- components: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
110925
- componentSets: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
110926
- }, "strip", z.ZodTypeAny, {
110927
- components: number;
110928
- componentSets: number;
110929
- frames: number;
110930
- }, {
110931
- components?: number | null | undefined;
110932
- componentSets?: number | null | undefined;
110933
- frames?: number | null | undefined;
110934
- }>;
110935
- }, "strip", z.ZodTypeAny, {
110936
- assetsInFile: {
110937
- components: number;
110938
- componentSets: number;
110939
- frames: number;
110940
- };
110941
- rootNode: {
110942
- type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
110943
- id: string;
110944
- name: string;
110945
- size?: {
110946
- width: number;
110947
- height: number;
110948
- } | undefined;
110949
- parentComponentSetId?: string | undefined;
110950
- } & {
110951
- children: FigmaFileStructureNodeImportModel[];
110952
- };
110953
- }, {
110954
- assetsInFile: {
110955
- components?: number | null | undefined;
110956
- componentSets?: number | null | undefined;
110957
- frames?: number | null | undefined;
110958
- };
110959
- rootNode: {
110960
- type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
110961
- id: string;
110962
- name: string;
110963
- size?: {
110964
- width?: number | null | undefined;
110965
- height?: number | null | undefined;
110966
- } | undefined;
110967
- parentComponentSetId?: string | undefined;
110968
- } & {
110969
- children: FigmaFileStructureNodeImportModelBaseInput[];
110970
- };
110971
- }>;
110972
- }>, {
110973
- fileVersionId: z.ZodString;
110974
- }>, "strip", z.ZodTypeAny, {
110975
- data: {
110976
- assetsInFile: {
110977
- components: number;
110978
- componentSets: number;
110979
- frames: number;
110980
- };
110981
- rootNode: {
110982
- type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
110983
- id: string;
110984
- name: string;
110985
- size?: {
110986
- width: number;
110987
- height: number;
110988
- } | undefined;
110989
- parentComponentSetId?: string | undefined;
110990
- } & {
110991
- children: FigmaFileStructureNodeImportModel[];
110992
- };
110993
- };
110994
- id: string;
110995
- meta: {
110996
- name: string;
110997
- description?: string | undefined;
110998
- };
110999
- originId: string;
111000
- originMetadata: Record<string, any>;
111001
- fileVersionId: string;
111002
- }, {
111003
- data: {
111004
- assetsInFile: {
111005
- components?: number | null | undefined;
111006
- componentSets?: number | null | undefined;
111007
- frames?: number | null | undefined;
111008
- };
111009
- rootNode: {
111010
- type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
111011
- id: string;
111012
- name: string;
111013
- size?: {
111014
- width?: number | null | undefined;
111015
- height?: number | null | undefined;
111016
- } | undefined;
111017
- parentComponentSetId?: string | undefined;
111018
- } & {
111019
- children: FigmaFileStructureNodeImportModelBaseInput[];
111020
- };
111021
- };
111022
- id: string;
111023
- meta: {
111024
- name: string;
111025
- description?: string | undefined;
111026
- };
111027
- originId: string;
111028
- originMetadata: Record<string, any>;
111029
- fileVersionId: string;
111030
- }>;
111031
- type FigmaFileStructureImportModelInput = z.infer<typeof FigmaFileStructureImportModelInput>;
111032
- declare function figmaFileStructureImportModelToMap(root: FigmaFileStructureNodeImportModel): Map<string, FigmaFileStructureNodeImportModel>;
111033
-
111034
111151
  type DesignElementOriginImportModel = {
111035
111152
  id: string;
111036
111153
  name: string;
@@ -184174,4 +184291,4 @@ type PersonalAccessTokenWithUser = {
184174
184291
  token: PersonalAccessToken;
184175
184292
  };
184176
184293
 
184177
- 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 };