@supernova-studio/model 0.55.26 → 0.55.27

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
@@ -36433,6 +36433,11 @@ declare const ComponentElementData: z.ZodObject<{
36433
36433
  type: "InstanceSwap";
36434
36434
  name: string;
36435
36435
  defaultValue: string;
36436
+ defaultValuePreview?: {
36437
+ componentName: string;
36438
+ isRemote: boolean;
36439
+ componentSetName?: string | undefined;
36440
+ } | undefined;
36436
36441
  } | {
36437
36442
  id: string;
36438
36443
  options: string[];
@@ -36454,6 +36459,11 @@ declare const ComponentElementData: z.ZodObject<{
36454
36459
  type: "InstanceSwap";
36455
36460
  name: string;
36456
36461
  defaultValue: string;
36462
+ defaultValuePreview?: {
36463
+ componentName: string;
36464
+ isRemote: boolean;
36465
+ componentSetName?: string | undefined;
36466
+ } | undefined;
36457
36467
  } | {
36458
36468
  id: string;
36459
36469
  options: string[];
@@ -36475,6 +36485,11 @@ declare const ComponentElementData: z.ZodObject<{
36475
36485
  type: "InstanceSwap";
36476
36486
  name: string;
36477
36487
  defaultValue: string;
36488
+ defaultValuePreview?: {
36489
+ componentName: string;
36490
+ isRemote: boolean;
36491
+ componentSetName?: string | undefined;
36492
+ } | undefined;
36478
36493
  } | {
36479
36494
  id: string;
36480
36495
  options: string[];
@@ -36496,6 +36511,11 @@ declare const ComponentElementData: z.ZodObject<{
36496
36511
  type: "InstanceSwap";
36497
36512
  name: string;
36498
36513
  defaultValue: string;
36514
+ defaultValuePreview?: {
36515
+ componentName: string;
36516
+ isRemote: boolean;
36517
+ componentSetName?: string | undefined;
36518
+ } | undefined;
36499
36519
  } | {
36500
36520
  id: string;
36501
36521
  options: string[];
@@ -36533,6 +36553,11 @@ declare const ComponentElementData: z.ZodObject<{
36533
36553
  type: "InstanceSwap";
36534
36554
  name: string;
36535
36555
  defaultValue: string;
36556
+ defaultValuePreview?: {
36557
+ componentName: string;
36558
+ isRemote: boolean;
36559
+ componentSetName?: string | undefined;
36560
+ } | undefined;
36536
36561
  } | {
36537
36562
  id: string;
36538
36563
  options: string[];
@@ -36570,6 +36595,11 @@ declare const ComponentElementData: z.ZodObject<{
36570
36595
  type: "InstanceSwap";
36571
36596
  name: string;
36572
36597
  defaultValue: string;
36598
+ defaultValuePreview?: {
36599
+ componentName: string;
36600
+ isRemote: boolean;
36601
+ componentSetName?: string | undefined;
36602
+ } | undefined;
36573
36603
  } | {
36574
36604
  id: string;
36575
36605
  options: string[];
@@ -36609,6 +36639,11 @@ declare const ComponentElementData: z.ZodObject<{
36609
36639
  type: "InstanceSwap";
36610
36640
  name: string;
36611
36641
  defaultValue: string;
36642
+ defaultValuePreview?: {
36643
+ componentName: string;
36644
+ isRemote: boolean;
36645
+ componentSetName?: string | undefined;
36646
+ } | undefined;
36612
36647
  } | {
36613
36648
  id: string;
36614
36649
  options: string[];
@@ -36648,6 +36683,11 @@ declare const ComponentElementData: z.ZodObject<{
36648
36683
  type: "InstanceSwap";
36649
36684
  name: string;
36650
36685
  defaultValue: string;
36686
+ defaultValuePreview?: {
36687
+ componentName: string;
36688
+ isRemote: boolean;
36689
+ componentSetName?: string | undefined;
36690
+ } | undefined;
36651
36691
  } | {
36652
36692
  id: string;
36653
36693
  options: string[];
@@ -50689,6 +50729,20 @@ declare const FigmaComponentPropertyOrigin: z.ZodObject<{
50689
50729
  }, {
50690
50730
  id: string;
50691
50731
  }>;
50732
+ declare const FigmaComponentInstancePreview: z.ZodObject<{
50733
+ componentName: z.ZodString;
50734
+ componentSetName: z.ZodOptional<z.ZodString>;
50735
+ isRemote: z.ZodBoolean;
50736
+ }, "strip", z.ZodTypeAny, {
50737
+ componentName: string;
50738
+ isRemote: boolean;
50739
+ componentSetName?: string | undefined;
50740
+ }, {
50741
+ componentName: string;
50742
+ isRemote: boolean;
50743
+ componentSetName?: string | undefined;
50744
+ }>;
50745
+ type FigmaComponentInstancePreview = z.infer<typeof FigmaComponentInstancePreview>;
50692
50746
  declare const FigmaComponentPropertyType: z.ZodEnum<["Boolean", "InstanceSwap", "Variant", "Text"]>;
50693
50747
  type FigmaComponentPropertyType = z.infer<typeof FigmaComponentPropertyType>;
50694
50748
  declare const FigmaComponentBooleanProperty: z.ZodObject<z.objectUtil.extendShape<{
@@ -50715,16 +50769,39 @@ declare const FigmaComponentInstanceSwapProperty: z.ZodObject<z.objectUtil.exten
50715
50769
  }, {
50716
50770
  type: z.ZodLiteral<"InstanceSwap">;
50717
50771
  defaultValue: z.ZodString;
50772
+ defaultValuePreview: z.ZodOptional<z.ZodObject<{
50773
+ componentName: z.ZodString;
50774
+ componentSetName: z.ZodOptional<z.ZodString>;
50775
+ isRemote: z.ZodBoolean;
50776
+ }, "strip", z.ZodTypeAny, {
50777
+ componentName: string;
50778
+ isRemote: boolean;
50779
+ componentSetName?: string | undefined;
50780
+ }, {
50781
+ componentName: string;
50782
+ isRemote: boolean;
50783
+ componentSetName?: string | undefined;
50784
+ }>>;
50718
50785
  }>, "strip", z.ZodTypeAny, {
50719
50786
  id: string;
50720
50787
  type: "InstanceSwap";
50721
50788
  name: string;
50722
50789
  defaultValue: string;
50790
+ defaultValuePreview?: {
50791
+ componentName: string;
50792
+ isRemote: boolean;
50793
+ componentSetName?: string | undefined;
50794
+ } | undefined;
50723
50795
  }, {
50724
50796
  id: string;
50725
50797
  type: "InstanceSwap";
50726
50798
  name: string;
50727
50799
  defaultValue: string;
50800
+ defaultValuePreview?: {
50801
+ componentName: string;
50802
+ isRemote: boolean;
50803
+ componentSetName?: string | undefined;
50804
+ } | undefined;
50728
50805
  }>;
50729
50806
  type FigmaComponentInstanceSwapProperty = z.infer<typeof FigmaComponentInstanceSwapProperty>;
50730
50807
  declare const FigmaComponentVariantProperty: z.ZodObject<z.objectUtil.extendShape<{
@@ -50789,16 +50866,39 @@ declare const FigmaComponentProperty: z.ZodDiscriminatedUnion<"type", [z.ZodObje
50789
50866
  }, {
50790
50867
  type: z.ZodLiteral<"InstanceSwap">;
50791
50868
  defaultValue: z.ZodString;
50869
+ defaultValuePreview: z.ZodOptional<z.ZodObject<{
50870
+ componentName: z.ZodString;
50871
+ componentSetName: z.ZodOptional<z.ZodString>;
50872
+ isRemote: z.ZodBoolean;
50873
+ }, "strip", z.ZodTypeAny, {
50874
+ componentName: string;
50875
+ isRemote: boolean;
50876
+ componentSetName?: string | undefined;
50877
+ }, {
50878
+ componentName: string;
50879
+ isRemote: boolean;
50880
+ componentSetName?: string | undefined;
50881
+ }>>;
50792
50882
  }>, "strip", z.ZodTypeAny, {
50793
50883
  id: string;
50794
50884
  type: "InstanceSwap";
50795
50885
  name: string;
50796
50886
  defaultValue: string;
50887
+ defaultValuePreview?: {
50888
+ componentName: string;
50889
+ isRemote: boolean;
50890
+ componentSetName?: string | undefined;
50891
+ } | undefined;
50797
50892
  }, {
50798
50893
  id: string;
50799
50894
  type: "InstanceSwap";
50800
50895
  name: string;
50801
50896
  defaultValue: string;
50897
+ defaultValuePreview?: {
50898
+ componentName: string;
50899
+ isRemote: boolean;
50900
+ componentSetName?: string | undefined;
50901
+ } | undefined;
50802
50902
  }>, z.ZodObject<z.objectUtil.extendShape<{
50803
50903
  id: z.ZodString;
50804
50904
  name: z.ZodString;
@@ -50859,16 +50959,39 @@ declare const FigmaComponentPropertyMap: z.ZodRecord<z.ZodString, z.ZodDiscrimin
50859
50959
  }, {
50860
50960
  type: z.ZodLiteral<"InstanceSwap">;
50861
50961
  defaultValue: z.ZodString;
50962
+ defaultValuePreview: z.ZodOptional<z.ZodObject<{
50963
+ componentName: z.ZodString;
50964
+ componentSetName: z.ZodOptional<z.ZodString>;
50965
+ isRemote: z.ZodBoolean;
50966
+ }, "strip", z.ZodTypeAny, {
50967
+ componentName: string;
50968
+ isRemote: boolean;
50969
+ componentSetName?: string | undefined;
50970
+ }, {
50971
+ componentName: string;
50972
+ isRemote: boolean;
50973
+ componentSetName?: string | undefined;
50974
+ }>>;
50862
50975
  }>, "strip", z.ZodTypeAny, {
50863
50976
  id: string;
50864
50977
  type: "InstanceSwap";
50865
50978
  name: string;
50866
50979
  defaultValue: string;
50980
+ defaultValuePreview?: {
50981
+ componentName: string;
50982
+ isRemote: boolean;
50983
+ componentSetName?: string | undefined;
50984
+ } | undefined;
50867
50985
  }, {
50868
50986
  id: string;
50869
50987
  type: "InstanceSwap";
50870
50988
  name: string;
50871
50989
  defaultValue: string;
50990
+ defaultValuePreview?: {
50991
+ componentName: string;
50992
+ isRemote: boolean;
50993
+ componentSetName?: string | undefined;
50994
+ } | undefined;
50872
50995
  }>, z.ZodObject<z.objectUtil.extendShape<{
50873
50996
  id: z.ZodString;
50874
50997
  name: z.ZodString;
@@ -55681,16 +55804,39 @@ declare const FigmaComponent: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
55681
55804
  }, {
55682
55805
  type: z.ZodLiteral<"InstanceSwap">;
55683
55806
  defaultValue: z.ZodString;
55807
+ defaultValuePreview: z.ZodOptional<z.ZodObject<{
55808
+ componentName: z.ZodString;
55809
+ componentSetName: z.ZodOptional<z.ZodString>;
55810
+ isRemote: z.ZodBoolean;
55811
+ }, "strip", z.ZodTypeAny, {
55812
+ componentName: string;
55813
+ isRemote: boolean;
55814
+ componentSetName?: string | undefined;
55815
+ }, {
55816
+ componentName: string;
55817
+ isRemote: boolean;
55818
+ componentSetName?: string | undefined;
55819
+ }>>;
55684
55820
  }>, "strip", z.ZodTypeAny, {
55685
55821
  id: string;
55686
55822
  type: "InstanceSwap";
55687
55823
  name: string;
55688
55824
  defaultValue: string;
55825
+ defaultValuePreview?: {
55826
+ componentName: string;
55827
+ isRemote: boolean;
55828
+ componentSetName?: string | undefined;
55829
+ } | undefined;
55689
55830
  }, {
55690
55831
  id: string;
55691
55832
  type: "InstanceSwap";
55692
55833
  name: string;
55693
55834
  defaultValue: string;
55835
+ defaultValuePreview?: {
55836
+ componentName: string;
55837
+ isRemote: boolean;
55838
+ componentSetName?: string | undefined;
55839
+ } | undefined;
55694
55840
  }>, z.ZodObject<z.objectUtil.extendShape<{
55695
55841
  id: z.ZodString;
55696
55842
  name: z.ZodString;
@@ -55782,6 +55928,11 @@ declare const FigmaComponent: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
55782
55928
  type: "InstanceSwap";
55783
55929
  name: string;
55784
55930
  defaultValue: string;
55931
+ defaultValuePreview?: {
55932
+ componentName: string;
55933
+ isRemote: boolean;
55934
+ componentSetName?: string | undefined;
55935
+ } | undefined;
55785
55936
  } | {
55786
55937
  id: string;
55787
55938
  options: string[];
@@ -55836,6 +55987,11 @@ declare const FigmaComponent: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
55836
55987
  type: "InstanceSwap";
55837
55988
  name: string;
55838
55989
  defaultValue: string;
55990
+ defaultValuePreview?: {
55991
+ componentName: string;
55992
+ isRemote: boolean;
55993
+ componentSetName?: string | undefined;
55994
+ } | undefined;
55839
55995
  } | {
55840
55996
  id: string;
55841
55997
  options: string[];
@@ -82024,16 +82180,39 @@ declare const ImportModelCollection: z.ZodObject<{
82024
82180
  }, {
82025
82181
  type: z.ZodLiteral<"InstanceSwap">;
82026
82182
  defaultValue: z.ZodString;
82183
+ defaultValuePreview: z.ZodOptional<z.ZodObject<{
82184
+ componentName: z.ZodString;
82185
+ componentSetName: z.ZodOptional<z.ZodString>;
82186
+ isRemote: z.ZodBoolean;
82187
+ }, "strip", z.ZodTypeAny, {
82188
+ componentName: string;
82189
+ isRemote: boolean;
82190
+ componentSetName?: string | undefined;
82191
+ }, {
82192
+ componentName: string;
82193
+ isRemote: boolean;
82194
+ componentSetName?: string | undefined;
82195
+ }>>;
82027
82196
  }>, "strip", z.ZodTypeAny, {
82028
82197
  id: string;
82029
82198
  type: "InstanceSwap";
82030
82199
  name: string;
82031
82200
  defaultValue: string;
82201
+ defaultValuePreview?: {
82202
+ componentName: string;
82203
+ isRemote: boolean;
82204
+ componentSetName?: string | undefined;
82205
+ } | undefined;
82032
82206
  }, {
82033
82207
  id: string;
82034
82208
  type: "InstanceSwap";
82035
82209
  name: string;
82036
82210
  defaultValue: string;
82211
+ defaultValuePreview?: {
82212
+ componentName: string;
82213
+ isRemote: boolean;
82214
+ componentSetName?: string | undefined;
82215
+ } | undefined;
82037
82216
  }>, z.ZodObject<z.objectUtil.extendShape<{
82038
82217
  id: z.ZodString;
82039
82218
  name: z.ZodString;
@@ -82184,6 +82363,11 @@ declare const ImportModelCollection: z.ZodObject<{
82184
82363
  type: "InstanceSwap";
82185
82364
  name: string;
82186
82365
  defaultValue: string;
82366
+ defaultValuePreview?: {
82367
+ componentName: string;
82368
+ isRemote: boolean;
82369
+ componentSetName?: string | undefined;
82370
+ } | undefined;
82187
82371
  } | {
82188
82372
  id: string;
82189
82373
  options: string[];
@@ -82258,6 +82442,11 @@ declare const ImportModelCollection: z.ZodObject<{
82258
82442
  type: "InstanceSwap";
82259
82443
  name: string;
82260
82444
  defaultValue: string;
82445
+ defaultValuePreview?: {
82446
+ componentName: string;
82447
+ isRemote: boolean;
82448
+ componentSetName?: string | undefined;
82449
+ } | undefined;
82261
82450
  } | {
82262
82451
  id: string;
82263
82452
  options: string[];
@@ -89237,6 +89426,11 @@ declare const ImportModelCollection: z.ZodObject<{
89237
89426
  type: "InstanceSwap";
89238
89427
  name: string;
89239
89428
  defaultValue: string;
89429
+ defaultValuePreview?: {
89430
+ componentName: string;
89431
+ isRemote: boolean;
89432
+ componentSetName?: string | undefined;
89433
+ } | undefined;
89240
89434
  } | {
89241
89435
  id: string;
89242
89436
  options: string[];
@@ -90591,6 +90785,11 @@ declare const ImportModelCollection: z.ZodObject<{
90591
90785
  type: "InstanceSwap";
90592
90786
  name: string;
90593
90787
  defaultValue: string;
90788
+ defaultValuePreview?: {
90789
+ componentName: string;
90790
+ isRemote: boolean;
90791
+ componentSetName?: string | undefined;
90792
+ } | undefined;
90594
90793
  } | {
90595
90794
  id: string;
90596
90795
  options: string[];
@@ -93819,16 +94018,39 @@ declare const ImportModelInputCollection: z.ZodObject<{
93819
94018
  }, {
93820
94019
  type: z.ZodLiteral<"InstanceSwap">;
93821
94020
  defaultValue: z.ZodString;
94021
+ defaultValuePreview: z.ZodOptional<z.ZodObject<{
94022
+ componentName: z.ZodString;
94023
+ componentSetName: z.ZodOptional<z.ZodString>;
94024
+ isRemote: z.ZodBoolean;
94025
+ }, "strip", z.ZodTypeAny, {
94026
+ componentName: string;
94027
+ isRemote: boolean;
94028
+ componentSetName?: string | undefined;
94029
+ }, {
94030
+ componentName: string;
94031
+ isRemote: boolean;
94032
+ componentSetName?: string | undefined;
94033
+ }>>;
93822
94034
  }>, "strip", z.ZodTypeAny, {
93823
94035
  id: string;
93824
94036
  type: "InstanceSwap";
93825
94037
  name: string;
93826
94038
  defaultValue: string;
94039
+ defaultValuePreview?: {
94040
+ componentName: string;
94041
+ isRemote: boolean;
94042
+ componentSetName?: string | undefined;
94043
+ } | undefined;
93827
94044
  }, {
93828
94045
  id: string;
93829
94046
  type: "InstanceSwap";
93830
94047
  name: string;
93831
94048
  defaultValue: string;
94049
+ defaultValuePreview?: {
94050
+ componentName: string;
94051
+ isRemote: boolean;
94052
+ componentSetName?: string | undefined;
94053
+ } | undefined;
93832
94054
  }>, z.ZodObject<z.objectUtil.extendShape<{
93833
94055
  id: z.ZodString;
93834
94056
  name: z.ZodString;
@@ -93927,6 +94149,11 @@ declare const ImportModelInputCollection: z.ZodObject<{
93927
94149
  type: "InstanceSwap";
93928
94150
  name: string;
93929
94151
  defaultValue: string;
94152
+ defaultValuePreview?: {
94153
+ componentName: string;
94154
+ isRemote: boolean;
94155
+ componentSetName?: string | undefined;
94156
+ } | undefined;
93930
94157
  } | {
93931
94158
  id: string;
93932
94159
  options: string[];
@@ -93987,6 +94214,11 @@ declare const ImportModelInputCollection: z.ZodObject<{
93987
94214
  type: "InstanceSwap";
93988
94215
  name: string;
93989
94216
  defaultValue: string;
94217
+ defaultValuePreview?: {
94218
+ componentName: string;
94219
+ isRemote: boolean;
94220
+ componentSetName?: string | undefined;
94221
+ } | undefined;
93990
94222
  } | {
93991
94223
  id: string;
93992
94224
  options: string[];
@@ -94131,16 +94363,39 @@ declare const ImportModelInputCollection: z.ZodObject<{
94131
94363
  }, {
94132
94364
  type: z.ZodLiteral<"InstanceSwap">;
94133
94365
  defaultValue: z.ZodString;
94366
+ defaultValuePreview: z.ZodOptional<z.ZodObject<{
94367
+ componentName: z.ZodString;
94368
+ componentSetName: z.ZodOptional<z.ZodString>;
94369
+ isRemote: z.ZodBoolean;
94370
+ }, "strip", z.ZodTypeAny, {
94371
+ componentName: string;
94372
+ isRemote: boolean;
94373
+ componentSetName?: string | undefined;
94374
+ }, {
94375
+ componentName: string;
94376
+ isRemote: boolean;
94377
+ componentSetName?: string | undefined;
94378
+ }>>;
94134
94379
  }>, "strip", z.ZodTypeAny, {
94135
94380
  id: string;
94136
94381
  type: "InstanceSwap";
94137
94382
  name: string;
94138
94383
  defaultValue: string;
94384
+ defaultValuePreview?: {
94385
+ componentName: string;
94386
+ isRemote: boolean;
94387
+ componentSetName?: string | undefined;
94388
+ } | undefined;
94139
94389
  }, {
94140
94390
  id: string;
94141
94391
  type: "InstanceSwap";
94142
94392
  name: string;
94143
94393
  defaultValue: string;
94394
+ defaultValuePreview?: {
94395
+ componentName: string;
94396
+ isRemote: boolean;
94397
+ componentSetName?: string | undefined;
94398
+ } | undefined;
94144
94399
  }>, z.ZodObject<z.objectUtil.extendShape<{
94145
94400
  id: z.ZodString;
94146
94401
  name: z.ZodString;
@@ -94275,6 +94530,11 @@ declare const ImportModelInputCollection: z.ZodObject<{
94275
94530
  type: "InstanceSwap";
94276
94531
  name: string;
94277
94532
  defaultValue: string;
94533
+ defaultValuePreview?: {
94534
+ componentName: string;
94535
+ isRemote: boolean;
94536
+ componentSetName?: string | undefined;
94537
+ } | undefined;
94278
94538
  } | {
94279
94539
  id: string;
94280
94540
  options: string[];
@@ -94344,6 +94604,11 @@ declare const ImportModelInputCollection: z.ZodObject<{
94344
94604
  type: "InstanceSwap";
94345
94605
  name: string;
94346
94606
  defaultValue: string;
94607
+ defaultValuePreview?: {
94608
+ componentName: string;
94609
+ isRemote: boolean;
94610
+ componentSetName?: string | undefined;
94611
+ } | undefined;
94347
94612
  } | {
94348
94613
  id: string;
94349
94614
  options: string[];
@@ -101243,6 +101508,11 @@ declare const ImportModelInputCollection: z.ZodObject<{
101243
101508
  type: "InstanceSwap";
101244
101509
  name: string;
101245
101510
  defaultValue: string;
101511
+ defaultValuePreview?: {
101512
+ componentName: string;
101513
+ isRemote: boolean;
101514
+ componentSetName?: string | undefined;
101515
+ } | undefined;
101246
101516
  } | {
101247
101517
  id: string;
101248
101518
  options: string[];
@@ -101304,6 +101574,11 @@ declare const ImportModelInputCollection: z.ZodObject<{
101304
101574
  type: "InstanceSwap";
101305
101575
  name: string;
101306
101576
  defaultValue: string;
101577
+ defaultValuePreview?: {
101578
+ componentName: string;
101579
+ isRemote: boolean;
101580
+ componentSetName?: string | undefined;
101581
+ } | undefined;
101307
101582
  } | {
101308
101583
  id: string;
101309
101584
  options: string[];
@@ -102553,6 +102828,11 @@ declare const ImportModelInputCollection: z.ZodObject<{
102553
102828
  type: "InstanceSwap";
102554
102829
  name: string;
102555
102830
  defaultValue: string;
102831
+ defaultValuePreview?: {
102832
+ componentName: string;
102833
+ isRemote: boolean;
102834
+ componentSetName?: string | undefined;
102835
+ } | undefined;
102556
102836
  } | {
102557
102837
  id: string;
102558
102838
  options: string[];
@@ -102614,6 +102894,11 @@ declare const ImportModelInputCollection: z.ZodObject<{
102614
102894
  type: "InstanceSwap";
102615
102895
  name: string;
102616
102896
  defaultValue: string;
102897
+ defaultValuePreview?: {
102898
+ componentName: string;
102899
+ isRemote: boolean;
102900
+ componentSetName?: string | undefined;
102901
+ } | undefined;
102617
102902
  } | {
102618
102903
  id: string;
102619
102904
  options: string[];
@@ -103580,16 +103865,39 @@ declare const FigmaComponentImportModel: z.ZodObject<z.objectUtil.extendShape<z.
103580
103865
  }, {
103581
103866
  type: z.ZodLiteral<"InstanceSwap">;
103582
103867
  defaultValue: z.ZodString;
103868
+ defaultValuePreview: z.ZodOptional<z.ZodObject<{
103869
+ componentName: z.ZodString;
103870
+ componentSetName: z.ZodOptional<z.ZodString>;
103871
+ isRemote: z.ZodBoolean;
103872
+ }, "strip", z.ZodTypeAny, {
103873
+ componentName: string;
103874
+ isRemote: boolean;
103875
+ componentSetName?: string | undefined;
103876
+ }, {
103877
+ componentName: string;
103878
+ isRemote: boolean;
103879
+ componentSetName?: string | undefined;
103880
+ }>>;
103583
103881
  }>, "strip", z.ZodTypeAny, {
103584
103882
  id: string;
103585
103883
  type: "InstanceSwap";
103586
103884
  name: string;
103587
103885
  defaultValue: string;
103886
+ defaultValuePreview?: {
103887
+ componentName: string;
103888
+ isRemote: boolean;
103889
+ componentSetName?: string | undefined;
103890
+ } | undefined;
103588
103891
  }, {
103589
103892
  id: string;
103590
103893
  type: "InstanceSwap";
103591
103894
  name: string;
103592
103895
  defaultValue: string;
103896
+ defaultValuePreview?: {
103897
+ componentName: string;
103898
+ isRemote: boolean;
103899
+ componentSetName?: string | undefined;
103900
+ } | undefined;
103593
103901
  }>, z.ZodObject<z.objectUtil.extendShape<{
103594
103902
  id: z.ZodString;
103595
103903
  name: z.ZodString;
@@ -103740,6 +104048,11 @@ declare const FigmaComponentImportModel: z.ZodObject<z.objectUtil.extendShape<z.
103740
104048
  type: "InstanceSwap";
103741
104049
  name: string;
103742
104050
  defaultValue: string;
104051
+ defaultValuePreview?: {
104052
+ componentName: string;
104053
+ isRemote: boolean;
104054
+ componentSetName?: string | undefined;
104055
+ } | undefined;
103743
104056
  } | {
103744
104057
  id: string;
103745
104058
  options: string[];
@@ -103814,6 +104127,11 @@ declare const FigmaComponentImportModel: z.ZodObject<z.objectUtil.extendShape<z.
103814
104127
  type: "InstanceSwap";
103815
104128
  name: string;
103816
104129
  defaultValue: string;
104130
+ defaultValuePreview?: {
104131
+ componentName: string;
104132
+ isRemote: boolean;
104133
+ componentSetName?: string | undefined;
104134
+ } | undefined;
103817
104135
  } | {
103818
104136
  id: string;
103819
104137
  options: string[];
@@ -103959,16 +104277,39 @@ declare const FigmaComponentImportModelInput: z.ZodObject<z.objectUtil.extendSha
103959
104277
  }, {
103960
104278
  type: z.ZodLiteral<"InstanceSwap">;
103961
104279
  defaultValue: z.ZodString;
104280
+ defaultValuePreview: z.ZodOptional<z.ZodObject<{
104281
+ componentName: z.ZodString;
104282
+ componentSetName: z.ZodOptional<z.ZodString>;
104283
+ isRemote: z.ZodBoolean;
104284
+ }, "strip", z.ZodTypeAny, {
104285
+ componentName: string;
104286
+ isRemote: boolean;
104287
+ componentSetName?: string | undefined;
104288
+ }, {
104289
+ componentName: string;
104290
+ isRemote: boolean;
104291
+ componentSetName?: string | undefined;
104292
+ }>>;
103962
104293
  }>, "strip", z.ZodTypeAny, {
103963
104294
  id: string;
103964
104295
  type: "InstanceSwap";
103965
104296
  name: string;
103966
104297
  defaultValue: string;
104298
+ defaultValuePreview?: {
104299
+ componentName: string;
104300
+ isRemote: boolean;
104301
+ componentSetName?: string | undefined;
104302
+ } | undefined;
103967
104303
  }, {
103968
104304
  id: string;
103969
104305
  type: "InstanceSwap";
103970
104306
  name: string;
103971
104307
  defaultValue: string;
104308
+ defaultValuePreview?: {
104309
+ componentName: string;
104310
+ isRemote: boolean;
104311
+ componentSetName?: string | undefined;
104312
+ } | undefined;
103972
104313
  }>, z.ZodObject<z.objectUtil.extendShape<{
103973
104314
  id: z.ZodString;
103974
104315
  name: z.ZodString;
@@ -104067,6 +104408,11 @@ declare const FigmaComponentImportModelInput: z.ZodObject<z.objectUtil.extendSha
104067
104408
  type: "InstanceSwap";
104068
104409
  name: string;
104069
104410
  defaultValue: string;
104411
+ defaultValuePreview?: {
104412
+ componentName: string;
104413
+ isRemote: boolean;
104414
+ componentSetName?: string | undefined;
104415
+ } | undefined;
104070
104416
  } | {
104071
104417
  id: string;
104072
104418
  options: string[];
@@ -104127,6 +104473,11 @@ declare const FigmaComponentImportModelInput: z.ZodObject<z.objectUtil.extendSha
104127
104473
  type: "InstanceSwap";
104128
104474
  name: string;
104129
104475
  defaultValue: string;
104476
+ defaultValuePreview?: {
104477
+ componentName: string;
104478
+ isRemote: boolean;
104479
+ componentSetName?: string | undefined;
104480
+ } | undefined;
104130
104481
  } | {
104131
104482
  id: string;
104132
104483
  options: string[];
@@ -104272,16 +104623,39 @@ declare const AssetImportModelInput: z.ZodObject<z.objectUtil.extendShape<z.obje
104272
104623
  }, {
104273
104624
  type: z.ZodLiteral<"InstanceSwap">;
104274
104625
  defaultValue: z.ZodString;
104626
+ defaultValuePreview: z.ZodOptional<z.ZodObject<{
104627
+ componentName: z.ZodString;
104628
+ componentSetName: z.ZodOptional<z.ZodString>;
104629
+ isRemote: z.ZodBoolean;
104630
+ }, "strip", z.ZodTypeAny, {
104631
+ componentName: string;
104632
+ isRemote: boolean;
104633
+ componentSetName?: string | undefined;
104634
+ }, {
104635
+ componentName: string;
104636
+ isRemote: boolean;
104637
+ componentSetName?: string | undefined;
104638
+ }>>;
104275
104639
  }>, "strip", z.ZodTypeAny, {
104276
104640
  id: string;
104277
104641
  type: "InstanceSwap";
104278
104642
  name: string;
104279
104643
  defaultValue: string;
104644
+ defaultValuePreview?: {
104645
+ componentName: string;
104646
+ isRemote: boolean;
104647
+ componentSetName?: string | undefined;
104648
+ } | undefined;
104280
104649
  }, {
104281
104650
  id: string;
104282
104651
  type: "InstanceSwap";
104283
104652
  name: string;
104284
104653
  defaultValue: string;
104654
+ defaultValuePreview?: {
104655
+ componentName: string;
104656
+ isRemote: boolean;
104657
+ componentSetName?: string | undefined;
104658
+ } | undefined;
104285
104659
  }>, z.ZodObject<z.objectUtil.extendShape<{
104286
104660
  id: z.ZodString;
104287
104661
  name: z.ZodString;
@@ -104416,6 +104790,11 @@ declare const AssetImportModelInput: z.ZodObject<z.objectUtil.extendShape<z.obje
104416
104790
  type: "InstanceSwap";
104417
104791
  name: string;
104418
104792
  defaultValue: string;
104793
+ defaultValuePreview?: {
104794
+ componentName: string;
104795
+ isRemote: boolean;
104796
+ componentSetName?: string | undefined;
104797
+ } | undefined;
104419
104798
  } | {
104420
104799
  id: string;
104421
104800
  options: string[];
@@ -104485,6 +104864,11 @@ declare const AssetImportModelInput: z.ZodObject<z.objectUtil.extendShape<z.obje
104485
104864
  type: "InstanceSwap";
104486
104865
  name: string;
104487
104866
  defaultValue: string;
104867
+ defaultValuePreview?: {
104868
+ componentName: string;
104869
+ isRemote: boolean;
104870
+ componentSetName?: string | undefined;
104871
+ } | undefined;
104488
104872
  } | {
104489
104873
  id: string;
104490
104874
  options: string[];
@@ -173198,4 +173582,4 @@ type PersonalAccessTokenWithUser = {
173198
173582
  token: PersonalAccessToken;
173199
173583
  };
173200
173584
 
173201
- 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, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, 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 CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, 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, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyImageValue, ExporterPropertyValue, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaNodeRenderFormat, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, GitBranch, GitIntegrationType, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, 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, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, 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, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, 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 UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserSource, UserTest, VersionCreationJob, VersionCreationJobStatus, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, areShallowObjectsEqual, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, removeCommentSpans, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };
173585
+ 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, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, 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 CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, 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, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyImageValue, ExporterPropertyValue, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaNodeRenderFormat, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, GitBranch, GitIntegrationType, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, 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, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, 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, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, 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 UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserSource, UserTest, VersionCreationJob, VersionCreationJobStatus, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, areShallowObjectsEqual, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, removeCommentSpans, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };