@supernova-studio/model 0.59.7 → 0.59.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +549 -1
- package/dist/index.d.ts +549 -1
- package/dist/index.js +16 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +15 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/liveblocks/rooms/design-system-version-room.ts +2 -0
- package/src/users/user-profile.ts +15 -0
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;
|
|
@@ -159965,6 +160317,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
159965
160317
|
approvalRequiredForPublishing: boolean;
|
|
159966
160318
|
isDraftFeatureAdopted: boolean;
|
|
159967
160319
|
}>;
|
|
160320
|
+
pageHashes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
159968
160321
|
}, "strip", z.ZodTypeAny, {
|
|
159969
160322
|
groups: {
|
|
159970
160323
|
id: string;
|
|
@@ -160211,6 +160564,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
160211
160564
|
approvalRequiredForPublishing: boolean;
|
|
160212
160565
|
isDraftFeatureAdopted: boolean;
|
|
160213
160566
|
};
|
|
160567
|
+
pageHashes?: Record<string, string> | undefined;
|
|
160214
160568
|
}, {
|
|
160215
160569
|
groups: {
|
|
160216
160570
|
id: string;
|
|
@@ -161493,6 +161847,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
161493
161847
|
approvalRequiredForPublishing: boolean;
|
|
161494
161848
|
isDraftFeatureAdopted: boolean;
|
|
161495
161849
|
};
|
|
161850
|
+
pageHashes?: Record<string, string> | undefined;
|
|
161496
161851
|
}>;
|
|
161497
161852
|
type DesignSystemVersionRoomInitialState = z.infer<typeof DesignSystemVersionRoomInitialState>;
|
|
161498
161853
|
declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
@@ -182204,6 +182559,35 @@ declare const UserOnboarding: z.ZodObject<{
|
|
|
182204
182559
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
182205
182560
|
}>;
|
|
182206
182561
|
type UserOnboarding = z.infer<typeof UserOnboarding>;
|
|
182562
|
+
declare const UserTheme: z.ZodObject<{
|
|
182563
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey"]>>;
|
|
182564
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
182565
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
|
182566
|
+
contrast: z.ZodOptional<z.ZodNumber>;
|
|
182567
|
+
isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
182568
|
+
secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
182569
|
+
secondaryContrast: z.ZodOptional<z.ZodNumber>;
|
|
182570
|
+
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
182571
|
+
}, "strip", z.ZodTypeAny, {
|
|
182572
|
+
backgroundColor?: string | undefined;
|
|
182573
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
182574
|
+
accentColor?: string | undefined;
|
|
182575
|
+
contrast?: number | undefined;
|
|
182576
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
182577
|
+
secondaryBackgroundColor?: string | undefined;
|
|
182578
|
+
secondaryContrast?: number | undefined;
|
|
182579
|
+
isEditorWhite?: boolean | undefined;
|
|
182580
|
+
}, {
|
|
182581
|
+
backgroundColor?: string | undefined;
|
|
182582
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
182583
|
+
accentColor?: string | undefined;
|
|
182584
|
+
contrast?: number | undefined;
|
|
182585
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
182586
|
+
secondaryBackgroundColor?: string | undefined;
|
|
182587
|
+
secondaryContrast?: number | undefined;
|
|
182588
|
+
isEditorWhite?: boolean | undefined;
|
|
182589
|
+
}>;
|
|
182590
|
+
type UserTheme = z.infer<typeof UserTheme>;
|
|
182207
182591
|
declare const UserProfile: z.ZodObject<{
|
|
182208
182592
|
name: z.ZodString;
|
|
182209
182593
|
avatar: z.ZodOptional<z.ZodString>;
|
|
@@ -182248,10 +182632,48 @@ declare const UserProfile: z.ZodObject<{
|
|
|
182248
182632
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
182249
182633
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
182250
182634
|
}>>;
|
|
182635
|
+
theme: z.ZodOptional<z.ZodObject<{
|
|
182636
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey"]>>;
|
|
182637
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
182638
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
|
182639
|
+
contrast: z.ZodOptional<z.ZodNumber>;
|
|
182640
|
+
isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
182641
|
+
secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
182642
|
+
secondaryContrast: z.ZodOptional<z.ZodNumber>;
|
|
182643
|
+
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
182644
|
+
}, "strip", z.ZodTypeAny, {
|
|
182645
|
+
backgroundColor?: string | undefined;
|
|
182646
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
182647
|
+
accentColor?: string | undefined;
|
|
182648
|
+
contrast?: number | undefined;
|
|
182649
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
182650
|
+
secondaryBackgroundColor?: string | undefined;
|
|
182651
|
+
secondaryContrast?: number | undefined;
|
|
182652
|
+
isEditorWhite?: boolean | undefined;
|
|
182653
|
+
}, {
|
|
182654
|
+
backgroundColor?: string | undefined;
|
|
182655
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
182656
|
+
accentColor?: string | undefined;
|
|
182657
|
+
contrast?: number | undefined;
|
|
182658
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
182659
|
+
secondaryBackgroundColor?: string | undefined;
|
|
182660
|
+
secondaryContrast?: number | undefined;
|
|
182661
|
+
isEditorWhite?: boolean | undefined;
|
|
182662
|
+
}>>;
|
|
182251
182663
|
}, "strip", z.ZodTypeAny, {
|
|
182252
182664
|
name: string;
|
|
182253
182665
|
avatar?: string | undefined;
|
|
182254
182666
|
nickname?: string | undefined;
|
|
182667
|
+
theme?: {
|
|
182668
|
+
backgroundColor?: string | undefined;
|
|
182669
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
182670
|
+
accentColor?: string | undefined;
|
|
182671
|
+
contrast?: number | undefined;
|
|
182672
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
182673
|
+
secondaryBackgroundColor?: string | undefined;
|
|
182674
|
+
secondaryContrast?: number | undefined;
|
|
182675
|
+
isEditorWhite?: boolean | undefined;
|
|
182676
|
+
} | undefined;
|
|
182255
182677
|
onboarding?: {
|
|
182256
182678
|
companyName?: string | undefined;
|
|
182257
182679
|
numberOfPeopleInOrg?: string | undefined;
|
|
@@ -182270,6 +182692,16 @@ declare const UserProfile: z.ZodObject<{
|
|
|
182270
182692
|
name: string;
|
|
182271
182693
|
avatar?: string | undefined;
|
|
182272
182694
|
nickname?: string | undefined;
|
|
182695
|
+
theme?: {
|
|
182696
|
+
backgroundColor?: string | undefined;
|
|
182697
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
182698
|
+
accentColor?: string | undefined;
|
|
182699
|
+
contrast?: number | undefined;
|
|
182700
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
182701
|
+
secondaryBackgroundColor?: string | undefined;
|
|
182702
|
+
secondaryContrast?: number | undefined;
|
|
182703
|
+
isEditorWhite?: boolean | undefined;
|
|
182704
|
+
} | undefined;
|
|
182273
182705
|
onboarding?: {
|
|
182274
182706
|
companyName?: string | undefined;
|
|
182275
182707
|
numberOfPeopleInOrg?: string | undefined;
|
|
@@ -182330,9 +182762,47 @@ declare const UserProfileUpdate: z.ZodObject<Omit<{
|
|
|
182330
182762
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
182331
182763
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
182332
182764
|
}>>>;
|
|
182765
|
+
theme: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
182766
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey"]>>;
|
|
182767
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
182768
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
|
182769
|
+
contrast: z.ZodOptional<z.ZodNumber>;
|
|
182770
|
+
isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
182771
|
+
secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
182772
|
+
secondaryContrast: z.ZodOptional<z.ZodNumber>;
|
|
182773
|
+
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
182774
|
+
}, "strip", z.ZodTypeAny, {
|
|
182775
|
+
backgroundColor?: string | undefined;
|
|
182776
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
182777
|
+
accentColor?: string | undefined;
|
|
182778
|
+
contrast?: number | undefined;
|
|
182779
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
182780
|
+
secondaryBackgroundColor?: string | undefined;
|
|
182781
|
+
secondaryContrast?: number | undefined;
|
|
182782
|
+
isEditorWhite?: boolean | undefined;
|
|
182783
|
+
}, {
|
|
182784
|
+
backgroundColor?: string | undefined;
|
|
182785
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
182786
|
+
accentColor?: string | undefined;
|
|
182787
|
+
contrast?: number | undefined;
|
|
182788
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
182789
|
+
secondaryBackgroundColor?: string | undefined;
|
|
182790
|
+
secondaryContrast?: number | undefined;
|
|
182791
|
+
isEditorWhite?: boolean | undefined;
|
|
182792
|
+
}>>>;
|
|
182333
182793
|
}, "avatar">, "strip", z.ZodTypeAny, {
|
|
182334
182794
|
name?: string | undefined;
|
|
182335
182795
|
nickname?: string | undefined;
|
|
182796
|
+
theme?: {
|
|
182797
|
+
backgroundColor?: string | undefined;
|
|
182798
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
182799
|
+
accentColor?: string | undefined;
|
|
182800
|
+
contrast?: number | undefined;
|
|
182801
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
182802
|
+
secondaryBackgroundColor?: string | undefined;
|
|
182803
|
+
secondaryContrast?: number | undefined;
|
|
182804
|
+
isEditorWhite?: boolean | undefined;
|
|
182805
|
+
} | undefined;
|
|
182336
182806
|
onboarding?: {
|
|
182337
182807
|
companyName?: string | undefined;
|
|
182338
182808
|
numberOfPeopleInOrg?: string | undefined;
|
|
@@ -182350,6 +182820,16 @@ declare const UserProfileUpdate: z.ZodObject<Omit<{
|
|
|
182350
182820
|
}, {
|
|
182351
182821
|
name?: string | undefined;
|
|
182352
182822
|
nickname?: string | undefined;
|
|
182823
|
+
theme?: {
|
|
182824
|
+
backgroundColor?: string | undefined;
|
|
182825
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
182826
|
+
accentColor?: string | undefined;
|
|
182827
|
+
contrast?: number | undefined;
|
|
182828
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
182829
|
+
secondaryBackgroundColor?: string | undefined;
|
|
182830
|
+
secondaryContrast?: number | undefined;
|
|
182831
|
+
isEditorWhite?: boolean | undefined;
|
|
182832
|
+
} | undefined;
|
|
182353
182833
|
onboarding?: {
|
|
182354
182834
|
companyName?: string | undefined;
|
|
182355
182835
|
numberOfPeopleInOrg?: string | undefined;
|
|
@@ -182431,10 +182911,48 @@ declare const User: z.ZodObject<{
|
|
|
182431
182911
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
182432
182912
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
182433
182913
|
}>>;
|
|
182914
|
+
theme: z.ZodOptional<z.ZodObject<{
|
|
182915
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey"]>>;
|
|
182916
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
182917
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
|
182918
|
+
contrast: z.ZodOptional<z.ZodNumber>;
|
|
182919
|
+
isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
182920
|
+
secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
182921
|
+
secondaryContrast: z.ZodOptional<z.ZodNumber>;
|
|
182922
|
+
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
182923
|
+
}, "strip", z.ZodTypeAny, {
|
|
182924
|
+
backgroundColor?: string | undefined;
|
|
182925
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
182926
|
+
accentColor?: string | undefined;
|
|
182927
|
+
contrast?: number | undefined;
|
|
182928
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
182929
|
+
secondaryBackgroundColor?: string | undefined;
|
|
182930
|
+
secondaryContrast?: number | undefined;
|
|
182931
|
+
isEditorWhite?: boolean | undefined;
|
|
182932
|
+
}, {
|
|
182933
|
+
backgroundColor?: string | undefined;
|
|
182934
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
182935
|
+
accentColor?: string | undefined;
|
|
182936
|
+
contrast?: number | undefined;
|
|
182937
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
182938
|
+
secondaryBackgroundColor?: string | undefined;
|
|
182939
|
+
secondaryContrast?: number | undefined;
|
|
182940
|
+
isEditorWhite?: boolean | undefined;
|
|
182941
|
+
}>>;
|
|
182434
182942
|
}, "strip", z.ZodTypeAny, {
|
|
182435
182943
|
name: string;
|
|
182436
182944
|
avatar?: string | undefined;
|
|
182437
182945
|
nickname?: string | undefined;
|
|
182946
|
+
theme?: {
|
|
182947
|
+
backgroundColor?: string | undefined;
|
|
182948
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
182949
|
+
accentColor?: string | undefined;
|
|
182950
|
+
contrast?: number | undefined;
|
|
182951
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
182952
|
+
secondaryBackgroundColor?: string | undefined;
|
|
182953
|
+
secondaryContrast?: number | undefined;
|
|
182954
|
+
isEditorWhite?: boolean | undefined;
|
|
182955
|
+
} | undefined;
|
|
182438
182956
|
onboarding?: {
|
|
182439
182957
|
companyName?: string | undefined;
|
|
182440
182958
|
numberOfPeopleInOrg?: string | undefined;
|
|
@@ -182453,6 +182971,16 @@ declare const User: z.ZodObject<{
|
|
|
182453
182971
|
name: string;
|
|
182454
182972
|
avatar?: string | undefined;
|
|
182455
182973
|
nickname?: string | undefined;
|
|
182974
|
+
theme?: {
|
|
182975
|
+
backgroundColor?: string | undefined;
|
|
182976
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
182977
|
+
accentColor?: string | undefined;
|
|
182978
|
+
contrast?: number | undefined;
|
|
182979
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
182980
|
+
secondaryBackgroundColor?: string | undefined;
|
|
182981
|
+
secondaryContrast?: number | undefined;
|
|
182982
|
+
isEditorWhite?: boolean | undefined;
|
|
182983
|
+
} | undefined;
|
|
182456
182984
|
onboarding?: {
|
|
182457
182985
|
companyName?: string | undefined;
|
|
182458
182986
|
numberOfPeopleInOrg?: string | undefined;
|
|
@@ -182672,6 +183200,16 @@ declare const User: z.ZodObject<{
|
|
|
182672
183200
|
name: string;
|
|
182673
183201
|
avatar?: string | undefined;
|
|
182674
183202
|
nickname?: string | undefined;
|
|
183203
|
+
theme?: {
|
|
183204
|
+
backgroundColor?: string | undefined;
|
|
183205
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
183206
|
+
accentColor?: string | undefined;
|
|
183207
|
+
contrast?: number | undefined;
|
|
183208
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
183209
|
+
secondaryBackgroundColor?: string | undefined;
|
|
183210
|
+
secondaryContrast?: number | undefined;
|
|
183211
|
+
isEditorWhite?: boolean | undefined;
|
|
183212
|
+
} | undefined;
|
|
182675
183213
|
onboarding?: {
|
|
182676
183214
|
companyName?: string | undefined;
|
|
182677
183215
|
numberOfPeopleInOrg?: string | undefined;
|
|
@@ -182742,6 +183280,16 @@ declare const User: z.ZodObject<{
|
|
|
182742
183280
|
name: string;
|
|
182743
183281
|
avatar?: string | undefined;
|
|
182744
183282
|
nickname?: string | undefined;
|
|
183283
|
+
theme?: {
|
|
183284
|
+
backgroundColor?: string | undefined;
|
|
183285
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
183286
|
+
accentColor?: string | undefined;
|
|
183287
|
+
contrast?: number | undefined;
|
|
183288
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
183289
|
+
secondaryBackgroundColor?: string | undefined;
|
|
183290
|
+
secondaryContrast?: number | undefined;
|
|
183291
|
+
isEditorWhite?: boolean | undefined;
|
|
183292
|
+
} | undefined;
|
|
182745
183293
|
onboarding?: {
|
|
182746
183294
|
companyName?: string | undefined;
|
|
182747
183295
|
numberOfPeopleInOrg?: string | undefined;
|
|
@@ -182813,4 +183361,4 @@ type PersonalAccessTokenWithUser = {
|
|
|
182813
183361
|
token: PersonalAccessToken;
|
|
182814
183362
|
};
|
|
182815
183363
|
|
|
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 };
|
|
183364
|
+
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 };
|