@supernova-studio/model 0.59.7 → 0.59.8

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
@@ -11504,10 +11504,48 @@ declare const UserDump: z.ZodObject<{
11504
11504
  isPageDraftOnboardingFinished?: boolean | undefined;
11505
11505
  isApprovalsOnboardingFinished?: boolean | undefined;
11506
11506
  }>>;
11507
+ theme: z.ZodOptional<z.ZodObject<{
11508
+ preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey"]>>;
11509
+ backgroundColor: z.ZodOptional<z.ZodString>;
11510
+ accentColor: z.ZodOptional<z.ZodString>;
11511
+ contrast: z.ZodOptional<z.ZodNumber>;
11512
+ isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
11513
+ secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
11514
+ secondaryContrast: z.ZodOptional<z.ZodNumber>;
11515
+ isEditorWhite: z.ZodOptional<z.ZodBoolean>;
11516
+ }, "strip", z.ZodTypeAny, {
11517
+ backgroundColor?: string | undefined;
11518
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
11519
+ accentColor?: string | undefined;
11520
+ contrast?: number | undefined;
11521
+ isSecondaryEnabled?: boolean | undefined;
11522
+ secondaryBackgroundColor?: string | undefined;
11523
+ secondaryContrast?: number | undefined;
11524
+ isEditorWhite?: boolean | undefined;
11525
+ }, {
11526
+ backgroundColor?: string | undefined;
11527
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
11528
+ accentColor?: string | undefined;
11529
+ contrast?: number | undefined;
11530
+ isSecondaryEnabled?: boolean | undefined;
11531
+ secondaryBackgroundColor?: string | undefined;
11532
+ secondaryContrast?: number | undefined;
11533
+ isEditorWhite?: boolean | undefined;
11534
+ }>>;
11507
11535
  }, "strip", z.ZodTypeAny, {
11508
11536
  name: string;
11509
11537
  avatar?: string | undefined;
11510
11538
  nickname?: string | undefined;
11539
+ theme?: {
11540
+ backgroundColor?: string | undefined;
11541
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
11542
+ accentColor?: string | undefined;
11543
+ contrast?: number | undefined;
11544
+ isSecondaryEnabled?: boolean | undefined;
11545
+ secondaryBackgroundColor?: string | undefined;
11546
+ secondaryContrast?: number | undefined;
11547
+ isEditorWhite?: boolean | undefined;
11548
+ } | undefined;
11511
11549
  onboarding?: {
11512
11550
  companyName?: string | undefined;
11513
11551
  numberOfPeopleInOrg?: string | undefined;
@@ -11526,6 +11564,16 @@ declare const UserDump: z.ZodObject<{
11526
11564
  name: string;
11527
11565
  avatar?: string | undefined;
11528
11566
  nickname?: string | undefined;
11567
+ theme?: {
11568
+ backgroundColor?: string | undefined;
11569
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
11570
+ accentColor?: string | undefined;
11571
+ contrast?: number | undefined;
11572
+ isSecondaryEnabled?: boolean | undefined;
11573
+ secondaryBackgroundColor?: string | undefined;
11574
+ secondaryContrast?: number | undefined;
11575
+ isEditorWhite?: boolean | undefined;
11576
+ } | undefined;
11529
11577
  onboarding?: {
11530
11578
  companyName?: string | undefined;
11531
11579
  numberOfPeopleInOrg?: string | undefined;
@@ -11745,6 +11793,16 @@ declare const UserDump: z.ZodObject<{
11745
11793
  name: string;
11746
11794
  avatar?: string | undefined;
11747
11795
  nickname?: string | undefined;
11796
+ theme?: {
11797
+ backgroundColor?: string | undefined;
11798
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
11799
+ accentColor?: string | undefined;
11800
+ contrast?: number | undefined;
11801
+ isSecondaryEnabled?: boolean | undefined;
11802
+ secondaryBackgroundColor?: string | undefined;
11803
+ secondaryContrast?: number | undefined;
11804
+ isEditorWhite?: boolean | undefined;
11805
+ } | undefined;
11748
11806
  onboarding?: {
11749
11807
  companyName?: string | undefined;
11750
11808
  numberOfPeopleInOrg?: string | undefined;
@@ -11815,6 +11873,16 @@ declare const UserDump: z.ZodObject<{
11815
11873
  name: string;
11816
11874
  avatar?: string | undefined;
11817
11875
  nickname?: string | undefined;
11876
+ theme?: {
11877
+ backgroundColor?: string | undefined;
11878
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
11879
+ accentColor?: string | undefined;
11880
+ contrast?: number | undefined;
11881
+ isSecondaryEnabled?: boolean | undefined;
11882
+ secondaryBackgroundColor?: string | undefined;
11883
+ secondaryContrast?: number | undefined;
11884
+ isEditorWhite?: boolean | undefined;
11885
+ } | undefined;
11818
11886
  onboarding?: {
11819
11887
  companyName?: string | undefined;
11820
11888
  numberOfPeopleInOrg?: string | undefined;
@@ -22564,6 +22632,16 @@ declare const UserDump: z.ZodObject<{
22564
22632
  name: string;
22565
22633
  avatar?: string | undefined;
22566
22634
  nickname?: string | undefined;
22635
+ theme?: {
22636
+ backgroundColor?: string | undefined;
22637
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
22638
+ accentColor?: string | undefined;
22639
+ contrast?: number | undefined;
22640
+ isSecondaryEnabled?: boolean | undefined;
22641
+ secondaryBackgroundColor?: string | undefined;
22642
+ secondaryContrast?: number | undefined;
22643
+ isEditorWhite?: boolean | undefined;
22644
+ } | undefined;
22567
22645
  onboarding?: {
22568
22646
  companyName?: string | undefined;
22569
22647
  numberOfPeopleInOrg?: string | undefined;
@@ -23570,6 +23648,16 @@ declare const UserDump: z.ZodObject<{
23570
23648
  name: string;
23571
23649
  avatar?: string | undefined;
23572
23650
  nickname?: string | undefined;
23651
+ theme?: {
23652
+ backgroundColor?: string | undefined;
23653
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
23654
+ accentColor?: string | undefined;
23655
+ contrast?: number | undefined;
23656
+ isSecondaryEnabled?: boolean | undefined;
23657
+ secondaryBackgroundColor?: string | undefined;
23658
+ secondaryContrast?: number | undefined;
23659
+ isEditorWhite?: boolean | undefined;
23660
+ } | undefined;
23573
23661
  onboarding?: {
23574
23662
  companyName?: string | undefined;
23575
23663
  numberOfPeopleInOrg?: string | undefined;
@@ -33586,10 +33674,48 @@ declare const UserSession: z.ZodObject<{
33586
33674
  isPageDraftOnboardingFinished?: boolean | undefined;
33587
33675
  isApprovalsOnboardingFinished?: boolean | undefined;
33588
33676
  }>>;
33677
+ theme: z.ZodOptional<z.ZodObject<{
33678
+ preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey"]>>;
33679
+ backgroundColor: z.ZodOptional<z.ZodString>;
33680
+ accentColor: z.ZodOptional<z.ZodString>;
33681
+ contrast: z.ZodOptional<z.ZodNumber>;
33682
+ isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
33683
+ secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
33684
+ secondaryContrast: z.ZodOptional<z.ZodNumber>;
33685
+ isEditorWhite: z.ZodOptional<z.ZodBoolean>;
33686
+ }, "strip", z.ZodTypeAny, {
33687
+ backgroundColor?: string | undefined;
33688
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
33689
+ accentColor?: string | undefined;
33690
+ contrast?: number | undefined;
33691
+ isSecondaryEnabled?: boolean | undefined;
33692
+ secondaryBackgroundColor?: string | undefined;
33693
+ secondaryContrast?: number | undefined;
33694
+ isEditorWhite?: boolean | undefined;
33695
+ }, {
33696
+ backgroundColor?: string | undefined;
33697
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
33698
+ accentColor?: string | undefined;
33699
+ contrast?: number | undefined;
33700
+ isSecondaryEnabled?: boolean | undefined;
33701
+ secondaryBackgroundColor?: string | undefined;
33702
+ secondaryContrast?: number | undefined;
33703
+ isEditorWhite?: boolean | undefined;
33704
+ }>>;
33589
33705
  }, "strip", z.ZodTypeAny, {
33590
33706
  name: string;
33591
33707
  avatar?: string | undefined;
33592
33708
  nickname?: string | undefined;
33709
+ theme?: {
33710
+ backgroundColor?: string | undefined;
33711
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
33712
+ accentColor?: string | undefined;
33713
+ contrast?: number | undefined;
33714
+ isSecondaryEnabled?: boolean | undefined;
33715
+ secondaryBackgroundColor?: string | undefined;
33716
+ secondaryContrast?: number | undefined;
33717
+ isEditorWhite?: boolean | undefined;
33718
+ } | undefined;
33593
33719
  onboarding?: {
33594
33720
  companyName?: string | undefined;
33595
33721
  numberOfPeopleInOrg?: string | undefined;
@@ -33608,6 +33734,16 @@ declare const UserSession: z.ZodObject<{
33608
33734
  name: string;
33609
33735
  avatar?: string | undefined;
33610
33736
  nickname?: string | undefined;
33737
+ theme?: {
33738
+ backgroundColor?: string | undefined;
33739
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
33740
+ accentColor?: string | undefined;
33741
+ contrast?: number | undefined;
33742
+ isSecondaryEnabled?: boolean | undefined;
33743
+ secondaryBackgroundColor?: string | undefined;
33744
+ secondaryContrast?: number | undefined;
33745
+ isEditorWhite?: boolean | undefined;
33746
+ } | undefined;
33611
33747
  onboarding?: {
33612
33748
  companyName?: string | undefined;
33613
33749
  numberOfPeopleInOrg?: string | undefined;
@@ -33827,6 +33963,16 @@ declare const UserSession: z.ZodObject<{
33827
33963
  name: string;
33828
33964
  avatar?: string | undefined;
33829
33965
  nickname?: string | undefined;
33966
+ theme?: {
33967
+ backgroundColor?: string | undefined;
33968
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
33969
+ accentColor?: string | undefined;
33970
+ contrast?: number | undefined;
33971
+ isSecondaryEnabled?: boolean | undefined;
33972
+ secondaryBackgroundColor?: string | undefined;
33973
+ secondaryContrast?: number | undefined;
33974
+ isEditorWhite?: boolean | undefined;
33975
+ } | undefined;
33830
33976
  onboarding?: {
33831
33977
  companyName?: string | undefined;
33832
33978
  numberOfPeopleInOrg?: string | undefined;
@@ -33897,6 +34043,16 @@ declare const UserSession: z.ZodObject<{
33897
34043
  name: string;
33898
34044
  avatar?: string | undefined;
33899
34045
  nickname?: string | undefined;
34046
+ theme?: {
34047
+ backgroundColor?: string | undefined;
34048
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
34049
+ accentColor?: string | undefined;
34050
+ contrast?: number | undefined;
34051
+ isSecondaryEnabled?: boolean | undefined;
34052
+ secondaryBackgroundColor?: string | undefined;
34053
+ secondaryContrast?: number | undefined;
34054
+ isEditorWhite?: boolean | undefined;
34055
+ } | undefined;
33900
34056
  onboarding?: {
33901
34057
  companyName?: string | undefined;
33902
34058
  numberOfPeopleInOrg?: string | undefined;
@@ -33981,6 +34137,16 @@ declare const UserSession: z.ZodObject<{
33981
34137
  name: string;
33982
34138
  avatar?: string | undefined;
33983
34139
  nickname?: string | undefined;
34140
+ theme?: {
34141
+ backgroundColor?: string | undefined;
34142
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
34143
+ accentColor?: string | undefined;
34144
+ contrast?: number | undefined;
34145
+ isSecondaryEnabled?: boolean | undefined;
34146
+ secondaryBackgroundColor?: string | undefined;
34147
+ secondaryContrast?: number | undefined;
34148
+ isEditorWhite?: boolean | undefined;
34149
+ } | undefined;
33984
34150
  onboarding?: {
33985
34151
  companyName?: string | undefined;
33986
34152
  numberOfPeopleInOrg?: string | undefined;
@@ -34065,6 +34231,16 @@ declare const UserSession: z.ZodObject<{
34065
34231
  name: string;
34066
34232
  avatar?: string | undefined;
34067
34233
  nickname?: string | undefined;
34234
+ theme?: {
34235
+ backgroundColor?: string | undefined;
34236
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
34237
+ accentColor?: string | undefined;
34238
+ contrast?: number | undefined;
34239
+ isSecondaryEnabled?: boolean | undefined;
34240
+ secondaryBackgroundColor?: string | undefined;
34241
+ secondaryContrast?: number | undefined;
34242
+ isEditorWhite?: boolean | undefined;
34243
+ } | undefined;
34068
34244
  onboarding?: {
34069
34245
  companyName?: string | undefined;
34070
34246
  numberOfPeopleInOrg?: string | undefined;
@@ -144509,10 +144685,48 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
144509
144685
  isPageDraftOnboardingFinished?: boolean | undefined;
144510
144686
  isApprovalsOnboardingFinished?: boolean | undefined;
144511
144687
  }>>;
144688
+ theme: z.ZodOptional<z.ZodObject<{
144689
+ preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey"]>>;
144690
+ backgroundColor: z.ZodOptional<z.ZodString>;
144691
+ accentColor: z.ZodOptional<z.ZodString>;
144692
+ contrast: z.ZodOptional<z.ZodNumber>;
144693
+ isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
144694
+ secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
144695
+ secondaryContrast: z.ZodOptional<z.ZodNumber>;
144696
+ isEditorWhite: z.ZodOptional<z.ZodBoolean>;
144697
+ }, "strip", z.ZodTypeAny, {
144698
+ backgroundColor?: string | undefined;
144699
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
144700
+ accentColor?: string | undefined;
144701
+ contrast?: number | undefined;
144702
+ isSecondaryEnabled?: boolean | undefined;
144703
+ secondaryBackgroundColor?: string | undefined;
144704
+ secondaryContrast?: number | undefined;
144705
+ isEditorWhite?: boolean | undefined;
144706
+ }, {
144707
+ backgroundColor?: string | undefined;
144708
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
144709
+ accentColor?: string | undefined;
144710
+ contrast?: number | undefined;
144711
+ isSecondaryEnabled?: boolean | undefined;
144712
+ secondaryBackgroundColor?: string | undefined;
144713
+ secondaryContrast?: number | undefined;
144714
+ isEditorWhite?: boolean | undefined;
144715
+ }>>;
144512
144716
  }, "strip", z.ZodTypeAny, {
144513
144717
  name: string;
144514
144718
  avatar?: string | undefined;
144515
144719
  nickname?: string | undefined;
144720
+ theme?: {
144721
+ backgroundColor?: string | undefined;
144722
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
144723
+ accentColor?: string | undefined;
144724
+ contrast?: number | undefined;
144725
+ isSecondaryEnabled?: boolean | undefined;
144726
+ secondaryBackgroundColor?: string | undefined;
144727
+ secondaryContrast?: number | undefined;
144728
+ isEditorWhite?: boolean | undefined;
144729
+ } | undefined;
144516
144730
  onboarding?: {
144517
144731
  companyName?: string | undefined;
144518
144732
  numberOfPeopleInOrg?: string | undefined;
@@ -144531,6 +144745,16 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
144531
144745
  name: string;
144532
144746
  avatar?: string | undefined;
144533
144747
  nickname?: string | undefined;
144748
+ theme?: {
144749
+ backgroundColor?: string | undefined;
144750
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
144751
+ accentColor?: string | undefined;
144752
+ contrast?: number | undefined;
144753
+ isSecondaryEnabled?: boolean | undefined;
144754
+ secondaryBackgroundColor?: string | undefined;
144755
+ secondaryContrast?: number | undefined;
144756
+ isEditorWhite?: boolean | undefined;
144757
+ } | undefined;
144534
144758
  onboarding?: {
144535
144759
  companyName?: string | undefined;
144536
144760
  numberOfPeopleInOrg?: string | undefined;
@@ -144750,6 +144974,16 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
144750
144974
  name: string;
144751
144975
  avatar?: string | undefined;
144752
144976
  nickname?: string | undefined;
144977
+ theme?: {
144978
+ backgroundColor?: string | undefined;
144979
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
144980
+ accentColor?: string | undefined;
144981
+ contrast?: number | undefined;
144982
+ isSecondaryEnabled?: boolean | undefined;
144983
+ secondaryBackgroundColor?: string | undefined;
144984
+ secondaryContrast?: number | undefined;
144985
+ isEditorWhite?: boolean | undefined;
144986
+ } | undefined;
144753
144987
  onboarding?: {
144754
144988
  companyName?: string | undefined;
144755
144989
  numberOfPeopleInOrg?: string | undefined;
@@ -144820,6 +145054,16 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
144820
145054
  name: string;
144821
145055
  avatar?: string | undefined;
144822
145056
  nickname?: string | undefined;
145057
+ theme?: {
145058
+ backgroundColor?: string | undefined;
145059
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
145060
+ accentColor?: string | undefined;
145061
+ contrast?: number | undefined;
145062
+ isSecondaryEnabled?: boolean | undefined;
145063
+ secondaryBackgroundColor?: string | undefined;
145064
+ secondaryContrast?: number | undefined;
145065
+ isEditorWhite?: boolean | undefined;
145066
+ } | undefined;
144823
145067
  onboarding?: {
144824
145068
  companyName?: string | undefined;
144825
145069
  numberOfPeopleInOrg?: string | undefined;
@@ -145106,6 +145350,16 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
145106
145350
  name: string;
145107
145351
  avatar?: string | undefined;
145108
145352
  nickname?: string | undefined;
145353
+ theme?: {
145354
+ backgroundColor?: string | undefined;
145355
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
145356
+ accentColor?: string | undefined;
145357
+ contrast?: number | undefined;
145358
+ isSecondaryEnabled?: boolean | undefined;
145359
+ secondaryBackgroundColor?: string | undefined;
145360
+ secondaryContrast?: number | undefined;
145361
+ isEditorWhite?: boolean | undefined;
145362
+ } | undefined;
145109
145363
  onboarding?: {
145110
145364
  companyName?: string | undefined;
145111
145365
  numberOfPeopleInOrg?: string | undefined;
@@ -145415,6 +145669,16 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
145415
145669
  name: string;
145416
145670
  avatar?: string | undefined;
145417
145671
  nickname?: string | undefined;
145672
+ theme?: {
145673
+ backgroundColor?: string | undefined;
145674
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
145675
+ accentColor?: string | undefined;
145676
+ contrast?: number | undefined;
145677
+ isSecondaryEnabled?: boolean | undefined;
145678
+ secondaryBackgroundColor?: string | undefined;
145679
+ secondaryContrast?: number | undefined;
145680
+ isEditorWhite?: boolean | undefined;
145681
+ } | undefined;
145418
145682
  onboarding?: {
145419
145683
  companyName?: string | undefined;
145420
145684
  numberOfPeopleInOrg?: string | undefined;
@@ -147129,10 +147393,48 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
147129
147393
  isPageDraftOnboardingFinished?: boolean | undefined;
147130
147394
  isApprovalsOnboardingFinished?: boolean | undefined;
147131
147395
  }>>;
147396
+ theme: z.ZodOptional<z.ZodObject<{
147397
+ preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey"]>>;
147398
+ backgroundColor: z.ZodOptional<z.ZodString>;
147399
+ accentColor: z.ZodOptional<z.ZodString>;
147400
+ contrast: z.ZodOptional<z.ZodNumber>;
147401
+ isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
147402
+ secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
147403
+ secondaryContrast: z.ZodOptional<z.ZodNumber>;
147404
+ isEditorWhite: z.ZodOptional<z.ZodBoolean>;
147405
+ }, "strip", z.ZodTypeAny, {
147406
+ backgroundColor?: string | undefined;
147407
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
147408
+ accentColor?: string | undefined;
147409
+ contrast?: number | undefined;
147410
+ isSecondaryEnabled?: boolean | undefined;
147411
+ secondaryBackgroundColor?: string | undefined;
147412
+ secondaryContrast?: number | undefined;
147413
+ isEditorWhite?: boolean | undefined;
147414
+ }, {
147415
+ backgroundColor?: string | undefined;
147416
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
147417
+ accentColor?: string | undefined;
147418
+ contrast?: number | undefined;
147419
+ isSecondaryEnabled?: boolean | undefined;
147420
+ secondaryBackgroundColor?: string | undefined;
147421
+ secondaryContrast?: number | undefined;
147422
+ isEditorWhite?: boolean | undefined;
147423
+ }>>;
147132
147424
  }, "strip", z.ZodTypeAny, {
147133
147425
  name: string;
147134
147426
  avatar?: string | undefined;
147135
147427
  nickname?: string | undefined;
147428
+ theme?: {
147429
+ backgroundColor?: string | undefined;
147430
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
147431
+ accentColor?: string | undefined;
147432
+ contrast?: number | undefined;
147433
+ isSecondaryEnabled?: boolean | undefined;
147434
+ secondaryBackgroundColor?: string | undefined;
147435
+ secondaryContrast?: number | undefined;
147436
+ isEditorWhite?: boolean | undefined;
147437
+ } | undefined;
147136
147438
  onboarding?: {
147137
147439
  companyName?: string | undefined;
147138
147440
  numberOfPeopleInOrg?: string | undefined;
@@ -147151,6 +147453,16 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
147151
147453
  name: string;
147152
147454
  avatar?: string | undefined;
147153
147455
  nickname?: string | undefined;
147456
+ theme?: {
147457
+ backgroundColor?: string | undefined;
147458
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
147459
+ accentColor?: string | undefined;
147460
+ contrast?: number | undefined;
147461
+ isSecondaryEnabled?: boolean | undefined;
147462
+ secondaryBackgroundColor?: string | undefined;
147463
+ secondaryContrast?: number | undefined;
147464
+ isEditorWhite?: boolean | undefined;
147465
+ } | undefined;
147154
147466
  onboarding?: {
147155
147467
  companyName?: string | undefined;
147156
147468
  numberOfPeopleInOrg?: string | undefined;
@@ -147370,6 +147682,16 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
147370
147682
  name: string;
147371
147683
  avatar?: string | undefined;
147372
147684
  nickname?: string | undefined;
147685
+ theme?: {
147686
+ backgroundColor?: string | undefined;
147687
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
147688
+ accentColor?: string | undefined;
147689
+ contrast?: number | undefined;
147690
+ isSecondaryEnabled?: boolean | undefined;
147691
+ secondaryBackgroundColor?: string | undefined;
147692
+ secondaryContrast?: number | undefined;
147693
+ isEditorWhite?: boolean | undefined;
147694
+ } | undefined;
147373
147695
  onboarding?: {
147374
147696
  companyName?: string | undefined;
147375
147697
  numberOfPeopleInOrg?: string | undefined;
@@ -147440,6 +147762,16 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
147440
147762
  name: string;
147441
147763
  avatar?: string | undefined;
147442
147764
  nickname?: string | undefined;
147765
+ theme?: {
147766
+ backgroundColor?: string | undefined;
147767
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
147768
+ accentColor?: string | undefined;
147769
+ contrast?: number | undefined;
147770
+ isSecondaryEnabled?: boolean | undefined;
147771
+ secondaryBackgroundColor?: string | undefined;
147772
+ secondaryContrast?: number | undefined;
147773
+ isEditorWhite?: boolean | undefined;
147774
+ } | undefined;
147443
147775
  onboarding?: {
147444
147776
  companyName?: string | undefined;
147445
147777
  numberOfPeopleInOrg?: string | undefined;
@@ -147726,6 +148058,16 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
147726
148058
  name: string;
147727
148059
  avatar?: string | undefined;
147728
148060
  nickname?: string | undefined;
148061
+ theme?: {
148062
+ backgroundColor?: string | undefined;
148063
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
148064
+ accentColor?: string | undefined;
148065
+ contrast?: number | undefined;
148066
+ isSecondaryEnabled?: boolean | undefined;
148067
+ secondaryBackgroundColor?: string | undefined;
148068
+ secondaryContrast?: number | undefined;
148069
+ isEditorWhite?: boolean | undefined;
148070
+ } | undefined;
147729
148071
  onboarding?: {
147730
148072
  companyName?: string | undefined;
147731
148073
  numberOfPeopleInOrg?: string | undefined;
@@ -148012,6 +148354,16 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
148012
148354
  name: string;
148013
148355
  avatar?: string | undefined;
148014
148356
  nickname?: string | undefined;
148357
+ theme?: {
148358
+ backgroundColor?: string | undefined;
148359
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
148360
+ accentColor?: string | undefined;
148361
+ contrast?: number | undefined;
148362
+ isSecondaryEnabled?: boolean | undefined;
148363
+ secondaryBackgroundColor?: string | undefined;
148364
+ secondaryContrast?: number | undefined;
148365
+ isEditorWhite?: boolean | undefined;
148366
+ } | undefined;
148015
148367
  onboarding?: {
148016
148368
  companyName?: string | undefined;
148017
148369
  numberOfPeopleInOrg?: string | undefined;
@@ -182204,6 +182556,35 @@ declare const UserOnboarding: z.ZodObject<{
182204
182556
  isApprovalsOnboardingFinished?: boolean | undefined;
182205
182557
  }>;
182206
182558
  type UserOnboarding = z.infer<typeof UserOnboarding>;
182559
+ declare const UserTheme: z.ZodObject<{
182560
+ preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey"]>>;
182561
+ backgroundColor: z.ZodOptional<z.ZodString>;
182562
+ accentColor: z.ZodOptional<z.ZodString>;
182563
+ contrast: z.ZodOptional<z.ZodNumber>;
182564
+ isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
182565
+ secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
182566
+ secondaryContrast: z.ZodOptional<z.ZodNumber>;
182567
+ isEditorWhite: z.ZodOptional<z.ZodBoolean>;
182568
+ }, "strip", z.ZodTypeAny, {
182569
+ backgroundColor?: string | undefined;
182570
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
182571
+ accentColor?: string | undefined;
182572
+ contrast?: number | undefined;
182573
+ isSecondaryEnabled?: boolean | undefined;
182574
+ secondaryBackgroundColor?: string | undefined;
182575
+ secondaryContrast?: number | undefined;
182576
+ isEditorWhite?: boolean | undefined;
182577
+ }, {
182578
+ backgroundColor?: string | undefined;
182579
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
182580
+ accentColor?: string | undefined;
182581
+ contrast?: number | undefined;
182582
+ isSecondaryEnabled?: boolean | undefined;
182583
+ secondaryBackgroundColor?: string | undefined;
182584
+ secondaryContrast?: number | undefined;
182585
+ isEditorWhite?: boolean | undefined;
182586
+ }>;
182587
+ type UserTheme = z.infer<typeof UserTheme>;
182207
182588
  declare const UserProfile: z.ZodObject<{
182208
182589
  name: z.ZodString;
182209
182590
  avatar: z.ZodOptional<z.ZodString>;
@@ -182248,10 +182629,48 @@ declare const UserProfile: z.ZodObject<{
182248
182629
  isPageDraftOnboardingFinished?: boolean | undefined;
182249
182630
  isApprovalsOnboardingFinished?: boolean | undefined;
182250
182631
  }>>;
182632
+ theme: z.ZodOptional<z.ZodObject<{
182633
+ preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey"]>>;
182634
+ backgroundColor: z.ZodOptional<z.ZodString>;
182635
+ accentColor: z.ZodOptional<z.ZodString>;
182636
+ contrast: z.ZodOptional<z.ZodNumber>;
182637
+ isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
182638
+ secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
182639
+ secondaryContrast: z.ZodOptional<z.ZodNumber>;
182640
+ isEditorWhite: z.ZodOptional<z.ZodBoolean>;
182641
+ }, "strip", z.ZodTypeAny, {
182642
+ backgroundColor?: string | undefined;
182643
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
182644
+ accentColor?: string | undefined;
182645
+ contrast?: number | undefined;
182646
+ isSecondaryEnabled?: boolean | undefined;
182647
+ secondaryBackgroundColor?: string | undefined;
182648
+ secondaryContrast?: number | undefined;
182649
+ isEditorWhite?: boolean | undefined;
182650
+ }, {
182651
+ backgroundColor?: string | undefined;
182652
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
182653
+ accentColor?: string | undefined;
182654
+ contrast?: number | undefined;
182655
+ isSecondaryEnabled?: boolean | undefined;
182656
+ secondaryBackgroundColor?: string | undefined;
182657
+ secondaryContrast?: number | undefined;
182658
+ isEditorWhite?: boolean | undefined;
182659
+ }>>;
182251
182660
  }, "strip", z.ZodTypeAny, {
182252
182661
  name: string;
182253
182662
  avatar?: string | undefined;
182254
182663
  nickname?: string | undefined;
182664
+ theme?: {
182665
+ backgroundColor?: string | undefined;
182666
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
182667
+ accentColor?: string | undefined;
182668
+ contrast?: number | undefined;
182669
+ isSecondaryEnabled?: boolean | undefined;
182670
+ secondaryBackgroundColor?: string | undefined;
182671
+ secondaryContrast?: number | undefined;
182672
+ isEditorWhite?: boolean | undefined;
182673
+ } | undefined;
182255
182674
  onboarding?: {
182256
182675
  companyName?: string | undefined;
182257
182676
  numberOfPeopleInOrg?: string | undefined;
@@ -182270,6 +182689,16 @@ declare const UserProfile: z.ZodObject<{
182270
182689
  name: string;
182271
182690
  avatar?: string | undefined;
182272
182691
  nickname?: string | undefined;
182692
+ theme?: {
182693
+ backgroundColor?: string | undefined;
182694
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
182695
+ accentColor?: string | undefined;
182696
+ contrast?: number | undefined;
182697
+ isSecondaryEnabled?: boolean | undefined;
182698
+ secondaryBackgroundColor?: string | undefined;
182699
+ secondaryContrast?: number | undefined;
182700
+ isEditorWhite?: boolean | undefined;
182701
+ } | undefined;
182273
182702
  onboarding?: {
182274
182703
  companyName?: string | undefined;
182275
182704
  numberOfPeopleInOrg?: string | undefined;
@@ -182330,9 +182759,47 @@ declare const UserProfileUpdate: z.ZodObject<Omit<{
182330
182759
  isPageDraftOnboardingFinished?: boolean | undefined;
182331
182760
  isApprovalsOnboardingFinished?: boolean | undefined;
182332
182761
  }>>>;
182762
+ theme: z.ZodOptional<z.ZodOptional<z.ZodObject<{
182763
+ preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey"]>>;
182764
+ backgroundColor: z.ZodOptional<z.ZodString>;
182765
+ accentColor: z.ZodOptional<z.ZodString>;
182766
+ contrast: z.ZodOptional<z.ZodNumber>;
182767
+ isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
182768
+ secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
182769
+ secondaryContrast: z.ZodOptional<z.ZodNumber>;
182770
+ isEditorWhite: z.ZodOptional<z.ZodBoolean>;
182771
+ }, "strip", z.ZodTypeAny, {
182772
+ backgroundColor?: string | undefined;
182773
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
182774
+ accentColor?: string | undefined;
182775
+ contrast?: number | undefined;
182776
+ isSecondaryEnabled?: boolean | undefined;
182777
+ secondaryBackgroundColor?: string | undefined;
182778
+ secondaryContrast?: number | undefined;
182779
+ isEditorWhite?: boolean | undefined;
182780
+ }, {
182781
+ backgroundColor?: string | undefined;
182782
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
182783
+ accentColor?: string | undefined;
182784
+ contrast?: number | undefined;
182785
+ isSecondaryEnabled?: boolean | undefined;
182786
+ secondaryBackgroundColor?: string | undefined;
182787
+ secondaryContrast?: number | undefined;
182788
+ isEditorWhite?: boolean | undefined;
182789
+ }>>>;
182333
182790
  }, "avatar">, "strip", z.ZodTypeAny, {
182334
182791
  name?: string | undefined;
182335
182792
  nickname?: string | undefined;
182793
+ theme?: {
182794
+ backgroundColor?: string | undefined;
182795
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
182796
+ accentColor?: string | undefined;
182797
+ contrast?: number | undefined;
182798
+ isSecondaryEnabled?: boolean | undefined;
182799
+ secondaryBackgroundColor?: string | undefined;
182800
+ secondaryContrast?: number | undefined;
182801
+ isEditorWhite?: boolean | undefined;
182802
+ } | undefined;
182336
182803
  onboarding?: {
182337
182804
  companyName?: string | undefined;
182338
182805
  numberOfPeopleInOrg?: string | undefined;
@@ -182350,6 +182817,16 @@ declare const UserProfileUpdate: z.ZodObject<Omit<{
182350
182817
  }, {
182351
182818
  name?: string | undefined;
182352
182819
  nickname?: string | undefined;
182820
+ theme?: {
182821
+ backgroundColor?: string | undefined;
182822
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
182823
+ accentColor?: string | undefined;
182824
+ contrast?: number | undefined;
182825
+ isSecondaryEnabled?: boolean | undefined;
182826
+ secondaryBackgroundColor?: string | undefined;
182827
+ secondaryContrast?: number | undefined;
182828
+ isEditorWhite?: boolean | undefined;
182829
+ } | undefined;
182353
182830
  onboarding?: {
182354
182831
  companyName?: string | undefined;
182355
182832
  numberOfPeopleInOrg?: string | undefined;
@@ -182431,10 +182908,48 @@ declare const User: z.ZodObject<{
182431
182908
  isPageDraftOnboardingFinished?: boolean | undefined;
182432
182909
  isApprovalsOnboardingFinished?: boolean | undefined;
182433
182910
  }>>;
182911
+ theme: z.ZodOptional<z.ZodObject<{
182912
+ preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey"]>>;
182913
+ backgroundColor: z.ZodOptional<z.ZodString>;
182914
+ accentColor: z.ZodOptional<z.ZodString>;
182915
+ contrast: z.ZodOptional<z.ZodNumber>;
182916
+ isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
182917
+ secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
182918
+ secondaryContrast: z.ZodOptional<z.ZodNumber>;
182919
+ isEditorWhite: z.ZodOptional<z.ZodBoolean>;
182920
+ }, "strip", z.ZodTypeAny, {
182921
+ backgroundColor?: string | undefined;
182922
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
182923
+ accentColor?: string | undefined;
182924
+ contrast?: number | undefined;
182925
+ isSecondaryEnabled?: boolean | undefined;
182926
+ secondaryBackgroundColor?: string | undefined;
182927
+ secondaryContrast?: number | undefined;
182928
+ isEditorWhite?: boolean | undefined;
182929
+ }, {
182930
+ backgroundColor?: string | undefined;
182931
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
182932
+ accentColor?: string | undefined;
182933
+ contrast?: number | undefined;
182934
+ isSecondaryEnabled?: boolean | undefined;
182935
+ secondaryBackgroundColor?: string | undefined;
182936
+ secondaryContrast?: number | undefined;
182937
+ isEditorWhite?: boolean | undefined;
182938
+ }>>;
182434
182939
  }, "strip", z.ZodTypeAny, {
182435
182940
  name: string;
182436
182941
  avatar?: string | undefined;
182437
182942
  nickname?: string | undefined;
182943
+ theme?: {
182944
+ backgroundColor?: string | undefined;
182945
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
182946
+ accentColor?: string | undefined;
182947
+ contrast?: number | undefined;
182948
+ isSecondaryEnabled?: boolean | undefined;
182949
+ secondaryBackgroundColor?: string | undefined;
182950
+ secondaryContrast?: number | undefined;
182951
+ isEditorWhite?: boolean | undefined;
182952
+ } | undefined;
182438
182953
  onboarding?: {
182439
182954
  companyName?: string | undefined;
182440
182955
  numberOfPeopleInOrg?: string | undefined;
@@ -182453,6 +182968,16 @@ declare const User: z.ZodObject<{
182453
182968
  name: string;
182454
182969
  avatar?: string | undefined;
182455
182970
  nickname?: string | undefined;
182971
+ theme?: {
182972
+ backgroundColor?: string | undefined;
182973
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
182974
+ accentColor?: string | undefined;
182975
+ contrast?: number | undefined;
182976
+ isSecondaryEnabled?: boolean | undefined;
182977
+ secondaryBackgroundColor?: string | undefined;
182978
+ secondaryContrast?: number | undefined;
182979
+ isEditorWhite?: boolean | undefined;
182980
+ } | undefined;
182456
182981
  onboarding?: {
182457
182982
  companyName?: string | undefined;
182458
182983
  numberOfPeopleInOrg?: string | undefined;
@@ -182672,6 +183197,16 @@ declare const User: z.ZodObject<{
182672
183197
  name: string;
182673
183198
  avatar?: string | undefined;
182674
183199
  nickname?: string | undefined;
183200
+ theme?: {
183201
+ backgroundColor?: string | undefined;
183202
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
183203
+ accentColor?: string | undefined;
183204
+ contrast?: number | undefined;
183205
+ isSecondaryEnabled?: boolean | undefined;
183206
+ secondaryBackgroundColor?: string | undefined;
183207
+ secondaryContrast?: number | undefined;
183208
+ isEditorWhite?: boolean | undefined;
183209
+ } | undefined;
182675
183210
  onboarding?: {
182676
183211
  companyName?: string | undefined;
182677
183212
  numberOfPeopleInOrg?: string | undefined;
@@ -182742,6 +183277,16 @@ declare const User: z.ZodObject<{
182742
183277
  name: string;
182743
183278
  avatar?: string | undefined;
182744
183279
  nickname?: string | undefined;
183280
+ theme?: {
183281
+ backgroundColor?: string | undefined;
183282
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
183283
+ accentColor?: string | undefined;
183284
+ contrast?: number | undefined;
183285
+ isSecondaryEnabled?: boolean | undefined;
183286
+ secondaryBackgroundColor?: string | undefined;
183287
+ secondaryContrast?: number | undefined;
183288
+ isEditorWhite?: boolean | undefined;
183289
+ } | undefined;
182745
183290
  onboarding?: {
182746
183291
  companyName?: string | undefined;
182747
183292
  numberOfPeopleInOrg?: string | undefined;
@@ -182813,4 +183358,4 @@ type PersonalAccessTokenWithUser = {
182813
183358
  token: PersonalAccessToken;
182814
183359
  };
182815
183360
 
182816
- 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, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobExporterConfiguration, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyDefinition, ExporterPropertyDefinitionArray, ExporterPropertyDefinitionBoolean, ExporterPropertyDefinitionEnum, ExporterPropertyDefinitionEnumOption, ExporterPropertyDefinitionNumber, ExporterPropertyDefinitionObject, ExporterPropertyDefinitionString, ExporterPropertyDefinitionValue, ExporterPropertyDefinitionValueMap, ExporterPropertyImageValue, ExporterPropertyType, ExporterPropertyValue, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, FeatureFlagsKeepAliases, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceOrigin, FigmaNodeRelinkData, FigmaNodeRenderError, FigmaNodeRenderErrorType, FigmaNodeRenderFormat, FigmaNodeRenderState, FigmaNodeRenderedImage, FigmaNodeRendererPayload, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, GitBranch, GitIntegrationType, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetBlockConfig, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionFigmaComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentBlockConfig, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenBlockConfig, PageBlockTokenNameFormat, PageBlockTokenValueFormat, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, type ParsedRoomId, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocPageVisitsEntry, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, type RoomOwner, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShadowValue, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateCollection, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, 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, 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, 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 };
183361
+ 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, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobExporterConfiguration, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyDefinition, ExporterPropertyDefinitionArray, ExporterPropertyDefinitionBoolean, ExporterPropertyDefinitionEnum, ExporterPropertyDefinitionEnumOption, ExporterPropertyDefinitionNumber, ExporterPropertyDefinitionObject, ExporterPropertyDefinitionString, ExporterPropertyDefinitionValue, ExporterPropertyDefinitionValueMap, ExporterPropertyImageValue, ExporterPropertyType, ExporterPropertyValue, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, FeatureFlagsKeepAliases, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceOrigin, FigmaNodeRelinkData, FigmaNodeRenderError, FigmaNodeRenderErrorType, FigmaNodeRenderFormat, FigmaNodeRenderState, FigmaNodeRenderedImage, FigmaNodeRendererPayload, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, GitBranch, GitIntegrationType, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetBlockConfig, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionFigmaComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentBlockConfig, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenBlockConfig, PageBlockTokenNameFormat, PageBlockTokenValueFormat, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, type ParsedRoomId, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocPageVisitsEntry, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, type RoomOwner, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShadowValue, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateCollection, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, 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, 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 };