@supernova-studio/model 1.43.5 → 1.43.6

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 CHANGED
@@ -11588,22 +11588,9 @@ declare const UserDump: z.ZodObject<{
11588
11588
  createdAt: z.ZodDate;
11589
11589
  profile: z.ZodObject<{
11590
11590
  name: z.ZodString;
11591
- avatar: z.ZodOptional<z.ZodString>;
11592
- nickname: z.ZodOptional<z.ZodString>;
11593
- onboarding: z.ZodOptional<z.ZodObject<{
11594
- companyName: z.ZodOptional<z.ZodString>;
11595
- numberOfPeopleInOrg: z.ZodOptional<z.ZodString>;
11596
- numberOfPeopleInDesignTeam: z.ZodOptional<z.ZodString>;
11597
- department: z.ZodOptional<z.ZodEnum<["Design", "Engineering", "Product", "Brand", "Other"]>>;
11598
- jobTitle: z.ZodOptional<z.ZodString>;
11599
- phase: z.ZodOptional<z.ZodString>;
11600
- jobLevel: z.ZodOptional<z.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>>;
11601
- designSystemName: z.ZodOptional<z.ZodString>;
11602
- defaultDestination: z.ZodOptional<z.ZodString>;
11603
- figmaUrl: z.ZodOptional<z.ZodString>;
11604
- isPageDraftOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
11605
- isApprovalsOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
11606
- }, "strip", z.ZodTypeAny, {
11591
+ avatar: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
11592
+ nickname: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
11593
+ onboarding: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
11607
11594
  companyName?: string | undefined;
11608
11595
  numberOfPeopleInOrg?: string | undefined;
11609
11596
  numberOfPeopleInDesignTeam?: string | undefined;
@@ -11616,7 +11603,7 @@ declare const UserDump: z.ZodObject<{
11616
11603
  figmaUrl?: string | undefined;
11617
11604
  isPageDraftOnboardingFinished?: boolean | undefined;
11618
11605
  isApprovalsOnboardingFinished?: boolean | undefined;
11619
- }, {
11606
+ }, z.ZodTypeDef, {
11620
11607
  companyName?: string | undefined;
11621
11608
  numberOfPeopleInOrg?: string | undefined;
11622
11609
  numberOfPeopleInDesignTeam?: string | undefined;
@@ -11629,18 +11616,34 @@ declare const UserDump: z.ZodObject<{
11629
11616
  figmaUrl?: string | undefined;
11630
11617
  isPageDraftOnboardingFinished?: boolean | undefined;
11631
11618
  isApprovalsOnboardingFinished?: boolean | undefined;
11632
- }>>;
11633
- theme: z.ZodOptional<z.ZodObject<{
11634
- backgroundColor: z.ZodOptional<z.ZodString>;
11635
- accentColor: z.ZodOptional<z.ZodString>;
11636
- contrast: z.ZodOptional<z.ZodNumber>;
11637
- isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
11638
- secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
11639
- secondaryContrast: z.ZodOptional<z.ZodNumber>;
11640
- isEditorWhite: z.ZodOptional<z.ZodBoolean>;
11641
- } & {
11642
- preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
11643
- }, "strip", z.ZodTypeAny, {
11619
+ }>>>, {
11620
+ companyName?: string | undefined;
11621
+ numberOfPeopleInOrg?: string | undefined;
11622
+ numberOfPeopleInDesignTeam?: string | undefined;
11623
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
11624
+ jobTitle?: string | undefined;
11625
+ phase?: string | undefined;
11626
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
11627
+ designSystemName?: string | undefined;
11628
+ defaultDestination?: string | undefined;
11629
+ figmaUrl?: string | undefined;
11630
+ isPageDraftOnboardingFinished?: boolean | undefined;
11631
+ isApprovalsOnboardingFinished?: boolean | undefined;
11632
+ } | undefined, {
11633
+ companyName?: string | undefined;
11634
+ numberOfPeopleInOrg?: string | undefined;
11635
+ numberOfPeopleInDesignTeam?: string | undefined;
11636
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
11637
+ jobTitle?: string | undefined;
11638
+ phase?: string | undefined;
11639
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
11640
+ designSystemName?: string | undefined;
11641
+ defaultDestination?: string | undefined;
11642
+ figmaUrl?: string | undefined;
11643
+ isPageDraftOnboardingFinished?: boolean | undefined;
11644
+ isApprovalsOnboardingFinished?: boolean | undefined;
11645
+ } | null | undefined>;
11646
+ theme: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
11644
11647
  backgroundColor?: string | undefined;
11645
11648
  accentColor?: string | undefined;
11646
11649
  contrast?: number | undefined;
@@ -11649,7 +11652,7 @@ declare const UserDump: z.ZodObject<{
11649
11652
  secondaryContrast?: number | undefined;
11650
11653
  isEditorWhite?: boolean | undefined;
11651
11654
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
11652
- }, {
11655
+ }, z.ZodTypeDef, {
11653
11656
  backgroundColor?: string | undefined;
11654
11657
  accentColor?: string | undefined;
11655
11658
  contrast?: number | undefined;
@@ -11658,18 +11661,26 @@ declare const UserDump: z.ZodObject<{
11658
11661
  secondaryContrast?: number | undefined;
11659
11662
  isEditorWhite?: boolean | undefined;
11660
11663
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
11661
- }>>;
11662
- portalTheme: z.ZodOptional<z.ZodObject<{
11663
- backgroundColor: z.ZodOptional<z.ZodString>;
11664
- accentColor: z.ZodOptional<z.ZodString>;
11665
- contrast: z.ZodOptional<z.ZodNumber>;
11666
- isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
11667
- secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
11668
- secondaryContrast: z.ZodOptional<z.ZodNumber>;
11669
- isEditorWhite: z.ZodOptional<z.ZodBoolean>;
11670
- } & {
11671
- preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia", "DefaultPortal"]>>;
11672
- }, "strip", z.ZodTypeAny, {
11664
+ }>>>, {
11665
+ backgroundColor?: string | undefined;
11666
+ accentColor?: string | undefined;
11667
+ contrast?: number | undefined;
11668
+ isSecondaryEnabled?: boolean | undefined;
11669
+ secondaryBackgroundColor?: string | undefined;
11670
+ secondaryContrast?: number | undefined;
11671
+ isEditorWhite?: boolean | undefined;
11672
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
11673
+ } | undefined, {
11674
+ backgroundColor?: string | undefined;
11675
+ accentColor?: string | undefined;
11676
+ contrast?: number | undefined;
11677
+ isSecondaryEnabled?: boolean | undefined;
11678
+ secondaryBackgroundColor?: string | undefined;
11679
+ secondaryContrast?: number | undefined;
11680
+ isEditorWhite?: boolean | undefined;
11681
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
11682
+ } | null | undefined>;
11683
+ portalTheme: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
11673
11684
  backgroundColor?: string | undefined;
11674
11685
  accentColor?: string | undefined;
11675
11686
  contrast?: number | undefined;
@@ -11678,7 +11689,7 @@ declare const UserDump: z.ZodObject<{
11678
11689
  secondaryContrast?: number | undefined;
11679
11690
  isEditorWhite?: boolean | undefined;
11680
11691
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
11681
- }, {
11692
+ }, z.ZodTypeDef, {
11682
11693
  backgroundColor?: string | undefined;
11683
11694
  accentColor?: string | undefined;
11684
11695
  contrast?: number | undefined;
@@ -11687,7 +11698,25 @@ declare const UserDump: z.ZodObject<{
11687
11698
  secondaryContrast?: number | undefined;
11688
11699
  isEditorWhite?: boolean | undefined;
11689
11700
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
11690
- }>>;
11701
+ }>>>, {
11702
+ backgroundColor?: string | undefined;
11703
+ accentColor?: string | undefined;
11704
+ contrast?: number | undefined;
11705
+ isSecondaryEnabled?: boolean | undefined;
11706
+ secondaryBackgroundColor?: string | undefined;
11707
+ secondaryContrast?: number | undefined;
11708
+ isEditorWhite?: boolean | undefined;
11709
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
11710
+ } | undefined, {
11711
+ backgroundColor?: string | undefined;
11712
+ accentColor?: string | undefined;
11713
+ contrast?: number | undefined;
11714
+ isSecondaryEnabled?: boolean | undefined;
11715
+ secondaryBackgroundColor?: string | undefined;
11716
+ secondaryContrast?: number | undefined;
11717
+ isEditorWhite?: boolean | undefined;
11718
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
11719
+ } | null | undefined>;
11691
11720
  }, "strip", z.ZodTypeAny, {
11692
11721
  name: string;
11693
11722
  avatar?: string | undefined;
@@ -11728,8 +11757,8 @@ declare const UserDump: z.ZodObject<{
11728
11757
  } | undefined;
11729
11758
  }, {
11730
11759
  name: string;
11731
- avatar?: string | undefined;
11732
- nickname?: string | undefined;
11760
+ avatar?: string | null | undefined;
11761
+ nickname?: string | null | undefined;
11733
11762
  theme?: {
11734
11763
  backgroundColor?: string | undefined;
11735
11764
  accentColor?: string | undefined;
@@ -11739,7 +11768,7 @@ declare const UserDump: z.ZodObject<{
11739
11768
  secondaryContrast?: number | undefined;
11740
11769
  isEditorWhite?: boolean | undefined;
11741
11770
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
11742
- } | undefined;
11771
+ } | null | undefined;
11743
11772
  onboarding?: {
11744
11773
  companyName?: string | undefined;
11745
11774
  numberOfPeopleInOrg?: string | undefined;
@@ -11753,7 +11782,7 @@ declare const UserDump: z.ZodObject<{
11753
11782
  figmaUrl?: string | undefined;
11754
11783
  isPageDraftOnboardingFinished?: boolean | undefined;
11755
11784
  isApprovalsOnboardingFinished?: boolean | undefined;
11756
- } | undefined;
11785
+ } | null | undefined;
11757
11786
  portalTheme?: {
11758
11787
  backgroundColor?: string | undefined;
11759
11788
  accentColor?: string | undefined;
@@ -11763,7 +11792,7 @@ declare const UserDump: z.ZodObject<{
11763
11792
  secondaryContrast?: number | undefined;
11764
11793
  isEditorWhite?: boolean | undefined;
11765
11794
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
11766
- } | undefined;
11795
+ } | null | undefined;
11767
11796
  }>;
11768
11797
  loggedOutAt: z.ZodOptional<z.ZodDate>;
11769
11798
  isProtected: z.ZodBoolean;
@@ -11819,8 +11848,8 @@ declare const UserDump: z.ZodObject<{
11819
11848
  id: string;
11820
11849
  profile: {
11821
11850
  name: string;
11822
- avatar?: string | undefined;
11823
- nickname?: string | undefined;
11851
+ avatar?: string | null | undefined;
11852
+ nickname?: string | null | undefined;
11824
11853
  theme?: {
11825
11854
  backgroundColor?: string | undefined;
11826
11855
  accentColor?: string | undefined;
@@ -11830,7 +11859,7 @@ declare const UserDump: z.ZodObject<{
11830
11859
  secondaryContrast?: number | undefined;
11831
11860
  isEditorWhite?: boolean | undefined;
11832
11861
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
11833
- } | undefined;
11862
+ } | null | undefined;
11834
11863
  onboarding?: {
11835
11864
  companyName?: string | undefined;
11836
11865
  numberOfPeopleInOrg?: string | undefined;
@@ -11844,7 +11873,7 @@ declare const UserDump: z.ZodObject<{
11844
11873
  figmaUrl?: string | undefined;
11845
11874
  isPageDraftOnboardingFinished?: boolean | undefined;
11846
11875
  isApprovalsOnboardingFinished?: boolean | undefined;
11847
- } | undefined;
11876
+ } | null | undefined;
11848
11877
  portalTheme?: {
11849
11878
  backgroundColor?: string | undefined;
11850
11879
  accentColor?: string | undefined;
@@ -11854,7 +11883,7 @@ declare const UserDump: z.ZodObject<{
11854
11883
  secondaryContrast?: number | undefined;
11855
11884
  isEditorWhite?: boolean | undefined;
11856
11885
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
11857
- } | undefined;
11886
+ } | null | undefined;
11858
11887
  };
11859
11888
  createdAt: Date;
11860
11889
  isProtected: boolean;
@@ -22880,8 +22909,8 @@ declare const UserDump: z.ZodObject<{
22880
22909
  id: string;
22881
22910
  profile: {
22882
22911
  name: string;
22883
- avatar?: string | undefined;
22884
- nickname?: string | undefined;
22912
+ avatar?: string | null | undefined;
22913
+ nickname?: string | null | undefined;
22885
22914
  theme?: {
22886
22915
  backgroundColor?: string | undefined;
22887
22916
  accentColor?: string | undefined;
@@ -22891,7 +22920,7 @@ declare const UserDump: z.ZodObject<{
22891
22920
  secondaryContrast?: number | undefined;
22892
22921
  isEditorWhite?: boolean | undefined;
22893
22922
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
22894
- } | undefined;
22923
+ } | null | undefined;
22895
22924
  onboarding?: {
22896
22925
  companyName?: string | undefined;
22897
22926
  numberOfPeopleInOrg?: string | undefined;
@@ -22905,7 +22934,7 @@ declare const UserDump: z.ZodObject<{
22905
22934
  figmaUrl?: string | undefined;
22906
22935
  isPageDraftOnboardingFinished?: boolean | undefined;
22907
22936
  isApprovalsOnboardingFinished?: boolean | undefined;
22908
- } | undefined;
22937
+ } | null | undefined;
22909
22938
  portalTheme?: {
22910
22939
  backgroundColor?: string | undefined;
22911
22940
  accentColor?: string | undefined;
@@ -22915,7 +22944,7 @@ declare const UserDump: z.ZodObject<{
22915
22944
  secondaryContrast?: number | undefined;
22916
22945
  isEditorWhite?: boolean | undefined;
22917
22946
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
22918
- } | undefined;
22947
+ } | null | undefined;
22919
22948
  };
22920
22949
  createdAt: Date;
22921
22950
  isProtected: boolean;
@@ -32282,22 +32311,9 @@ declare const UserSession: z.ZodObject<{
32282
32311
  createdAt: z.ZodDate;
32283
32312
  profile: z.ZodObject<{
32284
32313
  name: z.ZodString;
32285
- avatar: z.ZodOptional<z.ZodString>;
32286
- nickname: z.ZodOptional<z.ZodString>;
32287
- onboarding: z.ZodOptional<z.ZodObject<{
32288
- companyName: z.ZodOptional<z.ZodString>;
32289
- numberOfPeopleInOrg: z.ZodOptional<z.ZodString>;
32290
- numberOfPeopleInDesignTeam: z.ZodOptional<z.ZodString>;
32291
- department: z.ZodOptional<z.ZodEnum<["Design", "Engineering", "Product", "Brand", "Other"]>>;
32292
- jobTitle: z.ZodOptional<z.ZodString>;
32293
- phase: z.ZodOptional<z.ZodString>;
32294
- jobLevel: z.ZodOptional<z.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>>;
32295
- designSystemName: z.ZodOptional<z.ZodString>;
32296
- defaultDestination: z.ZodOptional<z.ZodString>;
32297
- figmaUrl: z.ZodOptional<z.ZodString>;
32298
- isPageDraftOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
32299
- isApprovalsOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
32300
- }, "strip", z.ZodTypeAny, {
32314
+ avatar: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
32315
+ nickname: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
32316
+ onboarding: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
32301
32317
  companyName?: string | undefined;
32302
32318
  numberOfPeopleInOrg?: string | undefined;
32303
32319
  numberOfPeopleInDesignTeam?: string | undefined;
@@ -32310,7 +32326,7 @@ declare const UserSession: z.ZodObject<{
32310
32326
  figmaUrl?: string | undefined;
32311
32327
  isPageDraftOnboardingFinished?: boolean | undefined;
32312
32328
  isApprovalsOnboardingFinished?: boolean | undefined;
32313
- }, {
32329
+ }, z.ZodTypeDef, {
32314
32330
  companyName?: string | undefined;
32315
32331
  numberOfPeopleInOrg?: string | undefined;
32316
32332
  numberOfPeopleInDesignTeam?: string | undefined;
@@ -32323,18 +32339,34 @@ declare const UserSession: z.ZodObject<{
32323
32339
  figmaUrl?: string | undefined;
32324
32340
  isPageDraftOnboardingFinished?: boolean | undefined;
32325
32341
  isApprovalsOnboardingFinished?: boolean | undefined;
32326
- }>>;
32327
- theme: z.ZodOptional<z.ZodObject<{
32328
- backgroundColor: z.ZodOptional<z.ZodString>;
32329
- accentColor: z.ZodOptional<z.ZodString>;
32330
- contrast: z.ZodOptional<z.ZodNumber>;
32331
- isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
32332
- secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
32333
- secondaryContrast: z.ZodOptional<z.ZodNumber>;
32334
- isEditorWhite: z.ZodOptional<z.ZodBoolean>;
32335
- } & {
32336
- preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
32337
- }, "strip", z.ZodTypeAny, {
32342
+ }>>>, {
32343
+ companyName?: string | undefined;
32344
+ numberOfPeopleInOrg?: string | undefined;
32345
+ numberOfPeopleInDesignTeam?: string | undefined;
32346
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
32347
+ jobTitle?: string | undefined;
32348
+ phase?: string | undefined;
32349
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
32350
+ designSystemName?: string | undefined;
32351
+ defaultDestination?: string | undefined;
32352
+ figmaUrl?: string | undefined;
32353
+ isPageDraftOnboardingFinished?: boolean | undefined;
32354
+ isApprovalsOnboardingFinished?: boolean | undefined;
32355
+ } | undefined, {
32356
+ companyName?: string | undefined;
32357
+ numberOfPeopleInOrg?: string | undefined;
32358
+ numberOfPeopleInDesignTeam?: string | undefined;
32359
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
32360
+ jobTitle?: string | undefined;
32361
+ phase?: string | undefined;
32362
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
32363
+ designSystemName?: string | undefined;
32364
+ defaultDestination?: string | undefined;
32365
+ figmaUrl?: string | undefined;
32366
+ isPageDraftOnboardingFinished?: boolean | undefined;
32367
+ isApprovalsOnboardingFinished?: boolean | undefined;
32368
+ } | null | undefined>;
32369
+ theme: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
32338
32370
  backgroundColor?: string | undefined;
32339
32371
  accentColor?: string | undefined;
32340
32372
  contrast?: number | undefined;
@@ -32343,7 +32375,7 @@ declare const UserSession: z.ZodObject<{
32343
32375
  secondaryContrast?: number | undefined;
32344
32376
  isEditorWhite?: boolean | undefined;
32345
32377
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
32346
- }, {
32378
+ }, z.ZodTypeDef, {
32347
32379
  backgroundColor?: string | undefined;
32348
32380
  accentColor?: string | undefined;
32349
32381
  contrast?: number | undefined;
@@ -32352,18 +32384,26 @@ declare const UserSession: z.ZodObject<{
32352
32384
  secondaryContrast?: number | undefined;
32353
32385
  isEditorWhite?: boolean | undefined;
32354
32386
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
32355
- }>>;
32356
- portalTheme: z.ZodOptional<z.ZodObject<{
32357
- backgroundColor: z.ZodOptional<z.ZodString>;
32358
- accentColor: z.ZodOptional<z.ZodString>;
32359
- contrast: z.ZodOptional<z.ZodNumber>;
32360
- isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
32361
- secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
32362
- secondaryContrast: z.ZodOptional<z.ZodNumber>;
32363
- isEditorWhite: z.ZodOptional<z.ZodBoolean>;
32364
- } & {
32365
- preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia", "DefaultPortal"]>>;
32366
- }, "strip", z.ZodTypeAny, {
32387
+ }>>>, {
32388
+ backgroundColor?: string | undefined;
32389
+ accentColor?: string | undefined;
32390
+ contrast?: number | undefined;
32391
+ isSecondaryEnabled?: boolean | undefined;
32392
+ secondaryBackgroundColor?: string | undefined;
32393
+ secondaryContrast?: number | undefined;
32394
+ isEditorWhite?: boolean | undefined;
32395
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
32396
+ } | undefined, {
32397
+ backgroundColor?: string | undefined;
32398
+ accentColor?: string | undefined;
32399
+ contrast?: number | undefined;
32400
+ isSecondaryEnabled?: boolean | undefined;
32401
+ secondaryBackgroundColor?: string | undefined;
32402
+ secondaryContrast?: number | undefined;
32403
+ isEditorWhite?: boolean | undefined;
32404
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
32405
+ } | null | undefined>;
32406
+ portalTheme: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
32367
32407
  backgroundColor?: string | undefined;
32368
32408
  accentColor?: string | undefined;
32369
32409
  contrast?: number | undefined;
@@ -32372,7 +32412,7 @@ declare const UserSession: z.ZodObject<{
32372
32412
  secondaryContrast?: number | undefined;
32373
32413
  isEditorWhite?: boolean | undefined;
32374
32414
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
32375
- }, {
32415
+ }, z.ZodTypeDef, {
32376
32416
  backgroundColor?: string | undefined;
32377
32417
  accentColor?: string | undefined;
32378
32418
  contrast?: number | undefined;
@@ -32381,12 +32421,7 @@ declare const UserSession: z.ZodObject<{
32381
32421
  secondaryContrast?: number | undefined;
32382
32422
  isEditorWhite?: boolean | undefined;
32383
32423
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
32384
- }>>;
32385
- }, "strip", z.ZodTypeAny, {
32386
- name: string;
32387
- avatar?: string | undefined;
32388
- nickname?: string | undefined;
32389
- theme?: {
32424
+ }>>>, {
32390
32425
  backgroundColor?: string | undefined;
32391
32426
  accentColor?: string | undefined;
32392
32427
  contrast?: number | undefined;
@@ -32394,23 +32429,8 @@ declare const UserSession: z.ZodObject<{
32394
32429
  secondaryBackgroundColor?: string | undefined;
32395
32430
  secondaryContrast?: number | undefined;
32396
32431
  isEditorWhite?: boolean | undefined;
32397
- preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
32398
- } | undefined;
32399
- onboarding?: {
32400
- companyName?: string | undefined;
32401
- numberOfPeopleInOrg?: string | undefined;
32402
- numberOfPeopleInDesignTeam?: string | undefined;
32403
- department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
32404
- jobTitle?: string | undefined;
32405
- phase?: string | undefined;
32406
- jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
32407
- designSystemName?: string | undefined;
32408
- defaultDestination?: string | undefined;
32409
- figmaUrl?: string | undefined;
32410
- isPageDraftOnboardingFinished?: boolean | undefined;
32411
- isApprovalsOnboardingFinished?: boolean | undefined;
32412
- } | undefined;
32413
- portalTheme?: {
32432
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
32433
+ } | undefined, {
32414
32434
  backgroundColor?: string | undefined;
32415
32435
  accentColor?: string | undefined;
32416
32436
  contrast?: number | undefined;
@@ -32419,8 +32439,8 @@ declare const UserSession: z.ZodObject<{
32419
32439
  secondaryContrast?: number | undefined;
32420
32440
  isEditorWhite?: boolean | undefined;
32421
32441
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
32422
- } | undefined;
32423
- }, {
32442
+ } | null | undefined>;
32443
+ }, "strip", z.ZodTypeAny, {
32424
32444
  name: string;
32425
32445
  avatar?: string | undefined;
32426
32446
  nickname?: string | undefined;
@@ -32458,17 +32478,10 @@ declare const UserSession: z.ZodObject<{
32458
32478
  isEditorWhite?: boolean | undefined;
32459
32479
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
32460
32480
  } | undefined;
32461
- }>;
32462
- loggedOutAt: z.ZodOptional<z.ZodDate>;
32463
- isProtected: z.ZodBoolean;
32464
- source: z.ZodOptional<z.ZodEnum<["SignUp", "Invite", "SSO"]>>;
32465
- }, "strip", z.ZodTypeAny, {
32466
- email: string;
32467
- id: string;
32468
- profile: {
32481
+ }, {
32469
32482
  name: string;
32470
- avatar?: string | undefined;
32471
- nickname?: string | undefined;
32483
+ avatar?: string | null | undefined;
32484
+ nickname?: string | null | undefined;
32472
32485
  theme?: {
32473
32486
  backgroundColor?: string | undefined;
32474
32487
  accentColor?: string | undefined;
@@ -32478,7 +32491,7 @@ declare const UserSession: z.ZodObject<{
32478
32491
  secondaryContrast?: number | undefined;
32479
32492
  isEditorWhite?: boolean | undefined;
32480
32493
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
32481
- } | undefined;
32494
+ } | null | undefined;
32482
32495
  onboarding?: {
32483
32496
  companyName?: string | undefined;
32484
32497
  numberOfPeopleInOrg?: string | undefined;
@@ -32492,7 +32505,7 @@ declare const UserSession: z.ZodObject<{
32492
32505
  figmaUrl?: string | undefined;
32493
32506
  isPageDraftOnboardingFinished?: boolean | undefined;
32494
32507
  isApprovalsOnboardingFinished?: boolean | undefined;
32495
- } | undefined;
32508
+ } | null | undefined;
32496
32509
  portalTheme?: {
32497
32510
  backgroundColor?: string | undefined;
32498
32511
  accentColor?: string | undefined;
@@ -32502,13 +32515,12 @@ declare const UserSession: z.ZodObject<{
32502
32515
  secondaryContrast?: number | undefined;
32503
32516
  isEditorWhite?: boolean | undefined;
32504
32517
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
32505
- } | undefined;
32506
- };
32507
- createdAt: Date;
32508
- isProtected: boolean;
32509
- source?: "SignUp" | "Invite" | "SSO" | undefined;
32510
- loggedOutAt?: Date | undefined;
32511
- }, {
32518
+ } | null | undefined;
32519
+ }>;
32520
+ loggedOutAt: z.ZodOptional<z.ZodDate>;
32521
+ isProtected: z.ZodBoolean;
32522
+ source: z.ZodOptional<z.ZodEnum<["SignUp", "Invite", "SSO"]>>;
32523
+ }, "strip", z.ZodTypeAny, {
32512
32524
  email: string;
32513
32525
  id: string;
32514
32526
  profile: {
@@ -32554,28 +32566,13 @@ declare const UserSession: z.ZodObject<{
32554
32566
  isProtected: boolean;
32555
32567
  source?: "SignUp" | "Invite" | "SSO" | undefined;
32556
32568
  loggedOutAt?: Date | undefined;
32557
- }>>;
32558
- }, "strip", z.ZodTypeAny, {
32559
- session: {
32560
- data: {
32561
- returnToUrl?: string | undefined;
32562
- npmProxyToken?: {
32563
- access: string;
32564
- expiresAt: number;
32565
- } | undefined;
32566
- };
32567
- id: string;
32568
- expiresAt: Date;
32569
- userId: string | null;
32570
- anonymousId: string | null;
32571
- };
32572
- user: {
32569
+ }, {
32573
32570
  email: string;
32574
32571
  id: string;
32575
32572
  profile: {
32576
32573
  name: string;
32577
- avatar?: string | undefined;
32578
- nickname?: string | undefined;
32574
+ avatar?: string | null | undefined;
32575
+ nickname?: string | null | undefined;
32579
32576
  theme?: {
32580
32577
  backgroundColor?: string | undefined;
32581
32578
  accentColor?: string | undefined;
@@ -32585,7 +32582,7 @@ declare const UserSession: z.ZodObject<{
32585
32582
  secondaryContrast?: number | undefined;
32586
32583
  isEditorWhite?: boolean | undefined;
32587
32584
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
32588
- } | undefined;
32585
+ } | null | undefined;
32589
32586
  onboarding?: {
32590
32587
  companyName?: string | undefined;
32591
32588
  numberOfPeopleInOrg?: string | undefined;
@@ -32599,7 +32596,7 @@ declare const UserSession: z.ZodObject<{
32599
32596
  figmaUrl?: string | undefined;
32600
32597
  isPageDraftOnboardingFinished?: boolean | undefined;
32601
32598
  isApprovalsOnboardingFinished?: boolean | undefined;
32602
- } | undefined;
32599
+ } | null | undefined;
32603
32600
  portalTheme?: {
32604
32601
  backgroundColor?: string | undefined;
32605
32602
  accentColor?: string | undefined;
@@ -32609,14 +32606,14 @@ declare const UserSession: z.ZodObject<{
32609
32606
  secondaryContrast?: number | undefined;
32610
32607
  isEditorWhite?: boolean | undefined;
32611
32608
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
32612
- } | undefined;
32609
+ } | null | undefined;
32613
32610
  };
32614
32611
  createdAt: Date;
32615
32612
  isProtected: boolean;
32616
32613
  source?: "SignUp" | "Invite" | "SSO" | undefined;
32617
32614
  loggedOutAt?: Date | undefined;
32618
- } | null;
32619
- }, {
32615
+ }>>;
32616
+ }, "strip", z.ZodTypeAny, {
32620
32617
  session: {
32621
32618
  data: {
32622
32619
  returnToUrl?: string | undefined;
@@ -32677,6 +32674,67 @@ declare const UserSession: z.ZodObject<{
32677
32674
  source?: "SignUp" | "Invite" | "SSO" | undefined;
32678
32675
  loggedOutAt?: Date | undefined;
32679
32676
  } | null;
32677
+ }, {
32678
+ session: {
32679
+ data: {
32680
+ returnToUrl?: string | undefined;
32681
+ npmProxyToken?: {
32682
+ access: string;
32683
+ expiresAt: number;
32684
+ } | undefined;
32685
+ };
32686
+ id: string;
32687
+ expiresAt: Date;
32688
+ userId: string | null;
32689
+ anonymousId: string | null;
32690
+ };
32691
+ user: {
32692
+ email: string;
32693
+ id: string;
32694
+ profile: {
32695
+ name: string;
32696
+ avatar?: string | null | undefined;
32697
+ nickname?: string | null | undefined;
32698
+ theme?: {
32699
+ backgroundColor?: string | undefined;
32700
+ accentColor?: string | undefined;
32701
+ contrast?: number | undefined;
32702
+ isSecondaryEnabled?: boolean | undefined;
32703
+ secondaryBackgroundColor?: string | undefined;
32704
+ secondaryContrast?: number | undefined;
32705
+ isEditorWhite?: boolean | undefined;
32706
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
32707
+ } | null | undefined;
32708
+ onboarding?: {
32709
+ companyName?: string | undefined;
32710
+ numberOfPeopleInOrg?: string | undefined;
32711
+ numberOfPeopleInDesignTeam?: string | undefined;
32712
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
32713
+ jobTitle?: string | undefined;
32714
+ phase?: string | undefined;
32715
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
32716
+ designSystemName?: string | undefined;
32717
+ defaultDestination?: string | undefined;
32718
+ figmaUrl?: string | undefined;
32719
+ isPageDraftOnboardingFinished?: boolean | undefined;
32720
+ isApprovalsOnboardingFinished?: boolean | undefined;
32721
+ } | null | undefined;
32722
+ portalTheme?: {
32723
+ backgroundColor?: string | undefined;
32724
+ accentColor?: string | undefined;
32725
+ contrast?: number | undefined;
32726
+ isSecondaryEnabled?: boolean | undefined;
32727
+ secondaryBackgroundColor?: string | undefined;
32728
+ secondaryContrast?: number | undefined;
32729
+ isEditorWhite?: boolean | undefined;
32730
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
32731
+ } | null | undefined;
32732
+ };
32733
+ createdAt: Date;
32734
+ isProtected: boolean;
32735
+ source?: "SignUp" | "Invite" | "SSO" | undefined;
32736
+ loggedOutAt?: Date | undefined;
32737
+ } | null;
32680
32738
  }>;
32681
32739
  type UserSession = z.infer<typeof UserSession>;
32682
32740
 
@@ -144494,22 +144552,9 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
144494
144552
  createdAt: z.ZodDate;
144495
144553
  profile: z.ZodObject<{
144496
144554
  name: z.ZodString;
144497
- avatar: z.ZodOptional<z.ZodString>;
144498
- nickname: z.ZodOptional<z.ZodString>;
144499
- onboarding: z.ZodOptional<z.ZodObject<{
144500
- companyName: z.ZodOptional<z.ZodString>;
144501
- numberOfPeopleInOrg: z.ZodOptional<z.ZodString>;
144502
- numberOfPeopleInDesignTeam: z.ZodOptional<z.ZodString>;
144503
- department: z.ZodOptional<z.ZodEnum<["Design", "Engineering", "Product", "Brand", "Other"]>>;
144504
- jobTitle: z.ZodOptional<z.ZodString>;
144505
- phase: z.ZodOptional<z.ZodString>;
144506
- jobLevel: z.ZodOptional<z.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>>;
144507
- designSystemName: z.ZodOptional<z.ZodString>;
144508
- defaultDestination: z.ZodOptional<z.ZodString>;
144509
- figmaUrl: z.ZodOptional<z.ZodString>;
144510
- isPageDraftOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
144511
- isApprovalsOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
144512
- }, "strip", z.ZodTypeAny, {
144555
+ avatar: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
144556
+ nickname: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
144557
+ onboarding: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
144513
144558
  companyName?: string | undefined;
144514
144559
  numberOfPeopleInOrg?: string | undefined;
144515
144560
  numberOfPeopleInDesignTeam?: string | undefined;
@@ -144522,7 +144567,7 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
144522
144567
  figmaUrl?: string | undefined;
144523
144568
  isPageDraftOnboardingFinished?: boolean | undefined;
144524
144569
  isApprovalsOnboardingFinished?: boolean | undefined;
144525
- }, {
144570
+ }, z.ZodTypeDef, {
144526
144571
  companyName?: string | undefined;
144527
144572
  numberOfPeopleInOrg?: string | undefined;
144528
144573
  numberOfPeopleInDesignTeam?: string | undefined;
@@ -144535,18 +144580,34 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
144535
144580
  figmaUrl?: string | undefined;
144536
144581
  isPageDraftOnboardingFinished?: boolean | undefined;
144537
144582
  isApprovalsOnboardingFinished?: boolean | undefined;
144538
- }>>;
144539
- theme: z.ZodOptional<z.ZodObject<{
144540
- backgroundColor: z.ZodOptional<z.ZodString>;
144541
- accentColor: z.ZodOptional<z.ZodString>;
144542
- contrast: z.ZodOptional<z.ZodNumber>;
144543
- isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
144544
- secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
144545
- secondaryContrast: z.ZodOptional<z.ZodNumber>;
144546
- isEditorWhite: z.ZodOptional<z.ZodBoolean>;
144547
- } & {
144548
- preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
144549
- }, "strip", z.ZodTypeAny, {
144583
+ }>>>, {
144584
+ companyName?: string | undefined;
144585
+ numberOfPeopleInOrg?: string | undefined;
144586
+ numberOfPeopleInDesignTeam?: string | undefined;
144587
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
144588
+ jobTitle?: string | undefined;
144589
+ phase?: string | undefined;
144590
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
144591
+ designSystemName?: string | undefined;
144592
+ defaultDestination?: string | undefined;
144593
+ figmaUrl?: string | undefined;
144594
+ isPageDraftOnboardingFinished?: boolean | undefined;
144595
+ isApprovalsOnboardingFinished?: boolean | undefined;
144596
+ } | undefined, {
144597
+ companyName?: string | undefined;
144598
+ numberOfPeopleInOrg?: string | undefined;
144599
+ numberOfPeopleInDesignTeam?: string | undefined;
144600
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
144601
+ jobTitle?: string | undefined;
144602
+ phase?: string | undefined;
144603
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
144604
+ designSystemName?: string | undefined;
144605
+ defaultDestination?: string | undefined;
144606
+ figmaUrl?: string | undefined;
144607
+ isPageDraftOnboardingFinished?: boolean | undefined;
144608
+ isApprovalsOnboardingFinished?: boolean | undefined;
144609
+ } | null | undefined>;
144610
+ theme: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
144550
144611
  backgroundColor?: string | undefined;
144551
144612
  accentColor?: string | undefined;
144552
144613
  contrast?: number | undefined;
@@ -144555,7 +144616,7 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
144555
144616
  secondaryContrast?: number | undefined;
144556
144617
  isEditorWhite?: boolean | undefined;
144557
144618
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
144558
- }, {
144619
+ }, z.ZodTypeDef, {
144559
144620
  backgroundColor?: string | undefined;
144560
144621
  accentColor?: string | undefined;
144561
144622
  contrast?: number | undefined;
@@ -144564,18 +144625,26 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
144564
144625
  secondaryContrast?: number | undefined;
144565
144626
  isEditorWhite?: boolean | undefined;
144566
144627
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
144567
- }>>;
144568
- portalTheme: z.ZodOptional<z.ZodObject<{
144569
- backgroundColor: z.ZodOptional<z.ZodString>;
144570
- accentColor: z.ZodOptional<z.ZodString>;
144571
- contrast: z.ZodOptional<z.ZodNumber>;
144572
- isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
144573
- secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
144574
- secondaryContrast: z.ZodOptional<z.ZodNumber>;
144575
- isEditorWhite: z.ZodOptional<z.ZodBoolean>;
144576
- } & {
144577
- preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia", "DefaultPortal"]>>;
144578
- }, "strip", z.ZodTypeAny, {
144628
+ }>>>, {
144629
+ backgroundColor?: string | undefined;
144630
+ accentColor?: string | undefined;
144631
+ contrast?: number | undefined;
144632
+ isSecondaryEnabled?: boolean | undefined;
144633
+ secondaryBackgroundColor?: string | undefined;
144634
+ secondaryContrast?: number | undefined;
144635
+ isEditorWhite?: boolean | undefined;
144636
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
144637
+ } | undefined, {
144638
+ backgroundColor?: string | undefined;
144639
+ accentColor?: string | undefined;
144640
+ contrast?: number | undefined;
144641
+ isSecondaryEnabled?: boolean | undefined;
144642
+ secondaryBackgroundColor?: string | undefined;
144643
+ secondaryContrast?: number | undefined;
144644
+ isEditorWhite?: boolean | undefined;
144645
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
144646
+ } | null | undefined>;
144647
+ portalTheme: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
144579
144648
  backgroundColor?: string | undefined;
144580
144649
  accentColor?: string | undefined;
144581
144650
  contrast?: number | undefined;
@@ -144584,7 +144653,7 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
144584
144653
  secondaryContrast?: number | undefined;
144585
144654
  isEditorWhite?: boolean | undefined;
144586
144655
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
144587
- }, {
144656
+ }, z.ZodTypeDef, {
144588
144657
  backgroundColor?: string | undefined;
144589
144658
  accentColor?: string | undefined;
144590
144659
  contrast?: number | undefined;
@@ -144593,7 +144662,25 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
144593
144662
  secondaryContrast?: number | undefined;
144594
144663
  isEditorWhite?: boolean | undefined;
144595
144664
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
144596
- }>>;
144665
+ }>>>, {
144666
+ backgroundColor?: string | undefined;
144667
+ accentColor?: string | undefined;
144668
+ contrast?: number | undefined;
144669
+ isSecondaryEnabled?: boolean | undefined;
144670
+ secondaryBackgroundColor?: string | undefined;
144671
+ secondaryContrast?: number | undefined;
144672
+ isEditorWhite?: boolean | undefined;
144673
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
144674
+ } | undefined, {
144675
+ backgroundColor?: string | undefined;
144676
+ accentColor?: string | undefined;
144677
+ contrast?: number | undefined;
144678
+ isSecondaryEnabled?: boolean | undefined;
144679
+ secondaryBackgroundColor?: string | undefined;
144680
+ secondaryContrast?: number | undefined;
144681
+ isEditorWhite?: boolean | undefined;
144682
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
144683
+ } | null | undefined>;
144597
144684
  }, "strip", z.ZodTypeAny, {
144598
144685
  name: string;
144599
144686
  avatar?: string | undefined;
@@ -144634,8 +144721,8 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
144634
144721
  } | undefined;
144635
144722
  }, {
144636
144723
  name: string;
144637
- avatar?: string | undefined;
144638
- nickname?: string | undefined;
144724
+ avatar?: string | null | undefined;
144725
+ nickname?: string | null | undefined;
144639
144726
  theme?: {
144640
144727
  backgroundColor?: string | undefined;
144641
144728
  accentColor?: string | undefined;
@@ -144645,7 +144732,7 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
144645
144732
  secondaryContrast?: number | undefined;
144646
144733
  isEditorWhite?: boolean | undefined;
144647
144734
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
144648
- } | undefined;
144735
+ } | null | undefined;
144649
144736
  onboarding?: {
144650
144737
  companyName?: string | undefined;
144651
144738
  numberOfPeopleInOrg?: string | undefined;
@@ -144659,7 +144746,7 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
144659
144746
  figmaUrl?: string | undefined;
144660
144747
  isPageDraftOnboardingFinished?: boolean | undefined;
144661
144748
  isApprovalsOnboardingFinished?: boolean | undefined;
144662
- } | undefined;
144749
+ } | null | undefined;
144663
144750
  portalTheme?: {
144664
144751
  backgroundColor?: string | undefined;
144665
144752
  accentColor?: string | undefined;
@@ -144669,7 +144756,7 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
144669
144756
  secondaryContrast?: number | undefined;
144670
144757
  isEditorWhite?: boolean | undefined;
144671
144758
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
144672
- } | undefined;
144759
+ } | null | undefined;
144673
144760
  }>;
144674
144761
  loggedOutAt: z.ZodOptional<z.ZodDate>;
144675
144762
  isProtected: z.ZodBoolean;
@@ -144725,8 +144812,8 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
144725
144812
  id: string;
144726
144813
  profile: {
144727
144814
  name: string;
144728
- avatar?: string | undefined;
144729
- nickname?: string | undefined;
144815
+ avatar?: string | null | undefined;
144816
+ nickname?: string | null | undefined;
144730
144817
  theme?: {
144731
144818
  backgroundColor?: string | undefined;
144732
144819
  accentColor?: string | undefined;
@@ -144736,7 +144823,7 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
144736
144823
  secondaryContrast?: number | undefined;
144737
144824
  isEditorWhite?: boolean | undefined;
144738
144825
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
144739
- } | undefined;
144826
+ } | null | undefined;
144740
144827
  onboarding?: {
144741
144828
  companyName?: string | undefined;
144742
144829
  numberOfPeopleInOrg?: string | undefined;
@@ -144750,7 +144837,7 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
144750
144837
  figmaUrl?: string | undefined;
144751
144838
  isPageDraftOnboardingFinished?: boolean | undefined;
144752
144839
  isApprovalsOnboardingFinished?: boolean | undefined;
144753
- } | undefined;
144840
+ } | null | undefined;
144754
144841
  portalTheme?: {
144755
144842
  backgroundColor?: string | undefined;
144756
144843
  accentColor?: string | undefined;
@@ -144760,7 +144847,7 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
144760
144847
  secondaryContrast?: number | undefined;
144761
144848
  isEditorWhite?: boolean | undefined;
144762
144849
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
144763
- } | undefined;
144850
+ } | null | undefined;
144764
144851
  };
144765
144852
  createdAt: Date;
144766
144853
  isProtected: boolean;
@@ -145048,8 +145135,8 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
145048
145135
  id: string;
145049
145136
  profile: {
145050
145137
  name: string;
145051
- avatar?: string | undefined;
145052
- nickname?: string | undefined;
145138
+ avatar?: string | null | undefined;
145139
+ nickname?: string | null | undefined;
145053
145140
  theme?: {
145054
145141
  backgroundColor?: string | undefined;
145055
145142
  accentColor?: string | undefined;
@@ -145059,7 +145146,7 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
145059
145146
  secondaryContrast?: number | undefined;
145060
145147
  isEditorWhite?: boolean | undefined;
145061
145148
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
145062
- } | undefined;
145149
+ } | null | undefined;
145063
145150
  onboarding?: {
145064
145151
  companyName?: string | undefined;
145065
145152
  numberOfPeopleInOrg?: string | undefined;
@@ -145073,7 +145160,7 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
145073
145160
  figmaUrl?: string | undefined;
145074
145161
  isPageDraftOnboardingFinished?: boolean | undefined;
145075
145162
  isApprovalsOnboardingFinished?: boolean | undefined;
145076
- } | undefined;
145163
+ } | null | undefined;
145077
145164
  portalTheme?: {
145078
145165
  backgroundColor?: string | undefined;
145079
145166
  accentColor?: string | undefined;
@@ -145083,7 +145170,7 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
145083
145170
  secondaryContrast?: number | undefined;
145084
145171
  isEditorWhite?: boolean | undefined;
145085
145172
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
145086
- } | undefined;
145173
+ } | null | undefined;
145087
145174
  };
145088
145175
  createdAt: Date;
145089
145176
  isProtected: boolean;
@@ -145728,22 +145815,9 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
145728
145815
  createdAt: z.ZodDate;
145729
145816
  profile: z.ZodObject<{
145730
145817
  name: z.ZodString;
145731
- avatar: z.ZodOptional<z.ZodString>;
145732
- nickname: z.ZodOptional<z.ZodString>;
145733
- onboarding: z.ZodOptional<z.ZodObject<{
145734
- companyName: z.ZodOptional<z.ZodString>;
145735
- numberOfPeopleInOrg: z.ZodOptional<z.ZodString>;
145736
- numberOfPeopleInDesignTeam: z.ZodOptional<z.ZodString>;
145737
- department: z.ZodOptional<z.ZodEnum<["Design", "Engineering", "Product", "Brand", "Other"]>>;
145738
- jobTitle: z.ZodOptional<z.ZodString>;
145739
- phase: z.ZodOptional<z.ZodString>;
145740
- jobLevel: z.ZodOptional<z.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>>;
145741
- designSystemName: z.ZodOptional<z.ZodString>;
145742
- defaultDestination: z.ZodOptional<z.ZodString>;
145743
- figmaUrl: z.ZodOptional<z.ZodString>;
145744
- isPageDraftOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
145745
- isApprovalsOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
145746
- }, "strip", z.ZodTypeAny, {
145818
+ avatar: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
145819
+ nickname: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
145820
+ onboarding: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
145747
145821
  companyName?: string | undefined;
145748
145822
  numberOfPeopleInOrg?: string | undefined;
145749
145823
  numberOfPeopleInDesignTeam?: string | undefined;
@@ -145756,7 +145830,7 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
145756
145830
  figmaUrl?: string | undefined;
145757
145831
  isPageDraftOnboardingFinished?: boolean | undefined;
145758
145832
  isApprovalsOnboardingFinished?: boolean | undefined;
145759
- }, {
145833
+ }, z.ZodTypeDef, {
145760
145834
  companyName?: string | undefined;
145761
145835
  numberOfPeopleInOrg?: string | undefined;
145762
145836
  numberOfPeopleInDesignTeam?: string | undefined;
@@ -145769,18 +145843,34 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
145769
145843
  figmaUrl?: string | undefined;
145770
145844
  isPageDraftOnboardingFinished?: boolean | undefined;
145771
145845
  isApprovalsOnboardingFinished?: boolean | undefined;
145772
- }>>;
145773
- theme: z.ZodOptional<z.ZodObject<{
145774
- backgroundColor: z.ZodOptional<z.ZodString>;
145775
- accentColor: z.ZodOptional<z.ZodString>;
145776
- contrast: z.ZodOptional<z.ZodNumber>;
145777
- isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
145778
- secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
145779
- secondaryContrast: z.ZodOptional<z.ZodNumber>;
145780
- isEditorWhite: z.ZodOptional<z.ZodBoolean>;
145781
- } & {
145782
- preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
145783
- }, "strip", z.ZodTypeAny, {
145846
+ }>>>, {
145847
+ companyName?: string | undefined;
145848
+ numberOfPeopleInOrg?: string | undefined;
145849
+ numberOfPeopleInDesignTeam?: string | undefined;
145850
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
145851
+ jobTitle?: string | undefined;
145852
+ phase?: string | undefined;
145853
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
145854
+ designSystemName?: string | undefined;
145855
+ defaultDestination?: string | undefined;
145856
+ figmaUrl?: string | undefined;
145857
+ isPageDraftOnboardingFinished?: boolean | undefined;
145858
+ isApprovalsOnboardingFinished?: boolean | undefined;
145859
+ } | undefined, {
145860
+ companyName?: string | undefined;
145861
+ numberOfPeopleInOrg?: string | undefined;
145862
+ numberOfPeopleInDesignTeam?: string | undefined;
145863
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
145864
+ jobTitle?: string | undefined;
145865
+ phase?: string | undefined;
145866
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
145867
+ designSystemName?: string | undefined;
145868
+ defaultDestination?: string | undefined;
145869
+ figmaUrl?: string | undefined;
145870
+ isPageDraftOnboardingFinished?: boolean | undefined;
145871
+ isApprovalsOnboardingFinished?: boolean | undefined;
145872
+ } | null | undefined>;
145873
+ theme: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
145784
145874
  backgroundColor?: string | undefined;
145785
145875
  accentColor?: string | undefined;
145786
145876
  contrast?: number | undefined;
@@ -145789,7 +145879,7 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
145789
145879
  secondaryContrast?: number | undefined;
145790
145880
  isEditorWhite?: boolean | undefined;
145791
145881
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
145792
- }, {
145882
+ }, z.ZodTypeDef, {
145793
145883
  backgroundColor?: string | undefined;
145794
145884
  accentColor?: string | undefined;
145795
145885
  contrast?: number | undefined;
@@ -145798,18 +145888,26 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
145798
145888
  secondaryContrast?: number | undefined;
145799
145889
  isEditorWhite?: boolean | undefined;
145800
145890
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
145801
- }>>;
145802
- portalTheme: z.ZodOptional<z.ZodObject<{
145803
- backgroundColor: z.ZodOptional<z.ZodString>;
145804
- accentColor: z.ZodOptional<z.ZodString>;
145805
- contrast: z.ZodOptional<z.ZodNumber>;
145806
- isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
145807
- secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
145808
- secondaryContrast: z.ZodOptional<z.ZodNumber>;
145809
- isEditorWhite: z.ZodOptional<z.ZodBoolean>;
145810
- } & {
145811
- preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia", "DefaultPortal"]>>;
145812
- }, "strip", z.ZodTypeAny, {
145891
+ }>>>, {
145892
+ backgroundColor?: string | undefined;
145893
+ accentColor?: string | undefined;
145894
+ contrast?: number | undefined;
145895
+ isSecondaryEnabled?: boolean | undefined;
145896
+ secondaryBackgroundColor?: string | undefined;
145897
+ secondaryContrast?: number | undefined;
145898
+ isEditorWhite?: boolean | undefined;
145899
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
145900
+ } | undefined, {
145901
+ backgroundColor?: string | undefined;
145902
+ accentColor?: string | undefined;
145903
+ contrast?: number | undefined;
145904
+ isSecondaryEnabled?: boolean | undefined;
145905
+ secondaryBackgroundColor?: string | undefined;
145906
+ secondaryContrast?: number | undefined;
145907
+ isEditorWhite?: boolean | undefined;
145908
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
145909
+ } | null | undefined>;
145910
+ portalTheme: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
145813
145911
  backgroundColor?: string | undefined;
145814
145912
  accentColor?: string | undefined;
145815
145913
  contrast?: number | undefined;
@@ -145818,7 +145916,7 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
145818
145916
  secondaryContrast?: number | undefined;
145819
145917
  isEditorWhite?: boolean | undefined;
145820
145918
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
145821
- }, {
145919
+ }, z.ZodTypeDef, {
145822
145920
  backgroundColor?: string | undefined;
145823
145921
  accentColor?: string | undefined;
145824
145922
  contrast?: number | undefined;
@@ -145827,7 +145925,25 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
145827
145925
  secondaryContrast?: number | undefined;
145828
145926
  isEditorWhite?: boolean | undefined;
145829
145927
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
145830
- }>>;
145928
+ }>>>, {
145929
+ backgroundColor?: string | undefined;
145930
+ accentColor?: string | undefined;
145931
+ contrast?: number | undefined;
145932
+ isSecondaryEnabled?: boolean | undefined;
145933
+ secondaryBackgroundColor?: string | undefined;
145934
+ secondaryContrast?: number | undefined;
145935
+ isEditorWhite?: boolean | undefined;
145936
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
145937
+ } | undefined, {
145938
+ backgroundColor?: string | undefined;
145939
+ accentColor?: string | undefined;
145940
+ contrast?: number | undefined;
145941
+ isSecondaryEnabled?: boolean | undefined;
145942
+ secondaryBackgroundColor?: string | undefined;
145943
+ secondaryContrast?: number | undefined;
145944
+ isEditorWhite?: boolean | undefined;
145945
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
145946
+ } | null | undefined>;
145831
145947
  }, "strip", z.ZodTypeAny, {
145832
145948
  name: string;
145833
145949
  avatar?: string | undefined;
@@ -145868,8 +145984,8 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
145868
145984
  } | undefined;
145869
145985
  }, {
145870
145986
  name: string;
145871
- avatar?: string | undefined;
145872
- nickname?: string | undefined;
145987
+ avatar?: string | null | undefined;
145988
+ nickname?: string | null | undefined;
145873
145989
  theme?: {
145874
145990
  backgroundColor?: string | undefined;
145875
145991
  accentColor?: string | undefined;
@@ -145879,7 +145995,7 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
145879
145995
  secondaryContrast?: number | undefined;
145880
145996
  isEditorWhite?: boolean | undefined;
145881
145997
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
145882
- } | undefined;
145998
+ } | null | undefined;
145883
145999
  onboarding?: {
145884
146000
  companyName?: string | undefined;
145885
146001
  numberOfPeopleInOrg?: string | undefined;
@@ -145893,7 +146009,7 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
145893
146009
  figmaUrl?: string | undefined;
145894
146010
  isPageDraftOnboardingFinished?: boolean | undefined;
145895
146011
  isApprovalsOnboardingFinished?: boolean | undefined;
145896
- } | undefined;
146012
+ } | null | undefined;
145897
146013
  portalTheme?: {
145898
146014
  backgroundColor?: string | undefined;
145899
146015
  accentColor?: string | undefined;
@@ -145903,7 +146019,7 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
145903
146019
  secondaryContrast?: number | undefined;
145904
146020
  isEditorWhite?: boolean | undefined;
145905
146021
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
145906
- } | undefined;
146022
+ } | null | undefined;
145907
146023
  }>;
145908
146024
  loggedOutAt: z.ZodOptional<z.ZodDate>;
145909
146025
  isProtected: z.ZodBoolean;
@@ -145959,8 +146075,8 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
145959
146075
  id: string;
145960
146076
  profile: {
145961
146077
  name: string;
145962
- avatar?: string | undefined;
145963
- nickname?: string | undefined;
146078
+ avatar?: string | null | undefined;
146079
+ nickname?: string | null | undefined;
145964
146080
  theme?: {
145965
146081
  backgroundColor?: string | undefined;
145966
146082
  accentColor?: string | undefined;
@@ -145970,7 +146086,7 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
145970
146086
  secondaryContrast?: number | undefined;
145971
146087
  isEditorWhite?: boolean | undefined;
145972
146088
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
145973
- } | undefined;
146089
+ } | null | undefined;
145974
146090
  onboarding?: {
145975
146091
  companyName?: string | undefined;
145976
146092
  numberOfPeopleInOrg?: string | undefined;
@@ -145984,7 +146100,7 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
145984
146100
  figmaUrl?: string | undefined;
145985
146101
  isPageDraftOnboardingFinished?: boolean | undefined;
145986
146102
  isApprovalsOnboardingFinished?: boolean | undefined;
145987
- } | undefined;
146103
+ } | null | undefined;
145988
146104
  portalTheme?: {
145989
146105
  backgroundColor?: string | undefined;
145990
146106
  accentColor?: string | undefined;
@@ -145994,7 +146110,7 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
145994
146110
  secondaryContrast?: number | undefined;
145995
146111
  isEditorWhite?: boolean | undefined;
145996
146112
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
145997
- } | undefined;
146113
+ } | null | undefined;
145998
146114
  };
145999
146115
  createdAt: Date;
146000
146116
  isProtected: boolean;
@@ -146259,8 +146375,8 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
146259
146375
  id: string;
146260
146376
  profile: {
146261
146377
  name: string;
146262
- avatar?: string | undefined;
146263
- nickname?: string | undefined;
146378
+ avatar?: string | null | undefined;
146379
+ nickname?: string | null | undefined;
146264
146380
  theme?: {
146265
146381
  backgroundColor?: string | undefined;
146266
146382
  accentColor?: string | undefined;
@@ -146270,7 +146386,7 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
146270
146386
  secondaryContrast?: number | undefined;
146271
146387
  isEditorWhite?: boolean | undefined;
146272
146388
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
146273
- } | undefined;
146389
+ } | null | undefined;
146274
146390
  onboarding?: {
146275
146391
  companyName?: string | undefined;
146276
146392
  numberOfPeopleInOrg?: string | undefined;
@@ -146284,7 +146400,7 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
146284
146400
  figmaUrl?: string | undefined;
146285
146401
  isPageDraftOnboardingFinished?: boolean | undefined;
146286
146402
  isApprovalsOnboardingFinished?: boolean | undefined;
146287
- } | undefined;
146403
+ } | null | undefined;
146288
146404
  portalTheme?: {
146289
146405
  backgroundColor?: string | undefined;
146290
146406
  accentColor?: string | undefined;
@@ -146294,7 +146410,7 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
146294
146410
  secondaryContrast?: number | undefined;
146295
146411
  isEditorWhite?: boolean | undefined;
146296
146412
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
146297
- } | undefined;
146413
+ } | null | undefined;
146298
146414
  };
146299
146415
  createdAt: Date;
146300
146416
  isProtected: boolean;
@@ -154215,22 +154331,9 @@ declare const ForgeIterationMessage: z.ZodObject<{
154215
154331
  createdAt: z.ZodDate;
154216
154332
  profile: z.ZodObject<{
154217
154333
  name: z.ZodString;
154218
- avatar: z.ZodOptional<z.ZodString>;
154219
- nickname: z.ZodOptional<z.ZodString>;
154220
- onboarding: z.ZodOptional<z.ZodObject<{
154221
- companyName: z.ZodOptional<z.ZodString>;
154222
- numberOfPeopleInOrg: z.ZodOptional<z.ZodString>;
154223
- numberOfPeopleInDesignTeam: z.ZodOptional<z.ZodString>;
154224
- department: z.ZodOptional<z.ZodEnum<["Design", "Engineering", "Product", "Brand", "Other"]>>;
154225
- jobTitle: z.ZodOptional<z.ZodString>;
154226
- phase: z.ZodOptional<z.ZodString>;
154227
- jobLevel: z.ZodOptional<z.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>>;
154228
- designSystemName: z.ZodOptional<z.ZodString>;
154229
- defaultDestination: z.ZodOptional<z.ZodString>;
154230
- figmaUrl: z.ZodOptional<z.ZodString>;
154231
- isPageDraftOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
154232
- isApprovalsOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
154233
- }, "strip", z.ZodTypeAny, {
154334
+ avatar: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
154335
+ nickname: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
154336
+ onboarding: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
154234
154337
  companyName?: string | undefined;
154235
154338
  numberOfPeopleInOrg?: string | undefined;
154236
154339
  numberOfPeopleInDesignTeam?: string | undefined;
@@ -154243,7 +154346,7 @@ declare const ForgeIterationMessage: z.ZodObject<{
154243
154346
  figmaUrl?: string | undefined;
154244
154347
  isPageDraftOnboardingFinished?: boolean | undefined;
154245
154348
  isApprovalsOnboardingFinished?: boolean | undefined;
154246
- }, {
154349
+ }, z.ZodTypeDef, {
154247
154350
  companyName?: string | undefined;
154248
154351
  numberOfPeopleInOrg?: string | undefined;
154249
154352
  numberOfPeopleInDesignTeam?: string | undefined;
@@ -154256,80 +154359,7 @@ declare const ForgeIterationMessage: z.ZodObject<{
154256
154359
  figmaUrl?: string | undefined;
154257
154360
  isPageDraftOnboardingFinished?: boolean | undefined;
154258
154361
  isApprovalsOnboardingFinished?: boolean | undefined;
154259
- }>>;
154260
- theme: z.ZodOptional<z.ZodObject<{
154261
- backgroundColor: z.ZodOptional<z.ZodString>;
154262
- accentColor: z.ZodOptional<z.ZodString>;
154263
- contrast: z.ZodOptional<z.ZodNumber>;
154264
- isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
154265
- secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
154266
- secondaryContrast: z.ZodOptional<z.ZodNumber>;
154267
- isEditorWhite: z.ZodOptional<z.ZodBoolean>;
154268
- } & {
154269
- preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
154270
- }, "strip", z.ZodTypeAny, {
154271
- backgroundColor?: string | undefined;
154272
- accentColor?: string | undefined;
154273
- contrast?: number | undefined;
154274
- isSecondaryEnabled?: boolean | undefined;
154275
- secondaryBackgroundColor?: string | undefined;
154276
- secondaryContrast?: number | undefined;
154277
- isEditorWhite?: boolean | undefined;
154278
- preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
154279
- }, {
154280
- backgroundColor?: string | undefined;
154281
- accentColor?: string | undefined;
154282
- contrast?: number | undefined;
154283
- isSecondaryEnabled?: boolean | undefined;
154284
- secondaryBackgroundColor?: string | undefined;
154285
- secondaryContrast?: number | undefined;
154286
- isEditorWhite?: boolean | undefined;
154287
- preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
154288
- }>>;
154289
- portalTheme: z.ZodOptional<z.ZodObject<{
154290
- backgroundColor: z.ZodOptional<z.ZodString>;
154291
- accentColor: z.ZodOptional<z.ZodString>;
154292
- contrast: z.ZodOptional<z.ZodNumber>;
154293
- isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
154294
- secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
154295
- secondaryContrast: z.ZodOptional<z.ZodNumber>;
154296
- isEditorWhite: z.ZodOptional<z.ZodBoolean>;
154297
- } & {
154298
- preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia", "DefaultPortal"]>>;
154299
- }, "strip", z.ZodTypeAny, {
154300
- backgroundColor?: string | undefined;
154301
- accentColor?: string | undefined;
154302
- contrast?: number | undefined;
154303
- isSecondaryEnabled?: boolean | undefined;
154304
- secondaryBackgroundColor?: string | undefined;
154305
- secondaryContrast?: number | undefined;
154306
- isEditorWhite?: boolean | undefined;
154307
- preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
154308
- }, {
154309
- backgroundColor?: string | undefined;
154310
- accentColor?: string | undefined;
154311
- contrast?: number | undefined;
154312
- isSecondaryEnabled?: boolean | undefined;
154313
- secondaryBackgroundColor?: string | undefined;
154314
- secondaryContrast?: number | undefined;
154315
- isEditorWhite?: boolean | undefined;
154316
- preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
154317
- }>>;
154318
- }, "strip", z.ZodTypeAny, {
154319
- name: string;
154320
- avatar?: string | undefined;
154321
- nickname?: string | undefined;
154322
- theme?: {
154323
- backgroundColor?: string | undefined;
154324
- accentColor?: string | undefined;
154325
- contrast?: number | undefined;
154326
- isSecondaryEnabled?: boolean | undefined;
154327
- secondaryBackgroundColor?: string | undefined;
154328
- secondaryContrast?: number | undefined;
154329
- isEditorWhite?: boolean | undefined;
154330
- preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
154331
- } | undefined;
154332
- onboarding?: {
154362
+ }>>>, {
154333
154363
  companyName?: string | undefined;
154334
154364
  numberOfPeopleInOrg?: string | undefined;
154335
154365
  numberOfPeopleInDesignTeam?: string | undefined;
@@ -154342,32 +154372,7 @@ declare const ForgeIterationMessage: z.ZodObject<{
154342
154372
  figmaUrl?: string | undefined;
154343
154373
  isPageDraftOnboardingFinished?: boolean | undefined;
154344
154374
  isApprovalsOnboardingFinished?: boolean | undefined;
154345
- } | undefined;
154346
- portalTheme?: {
154347
- backgroundColor?: string | undefined;
154348
- accentColor?: string | undefined;
154349
- contrast?: number | undefined;
154350
- isSecondaryEnabled?: boolean | undefined;
154351
- secondaryBackgroundColor?: string | undefined;
154352
- secondaryContrast?: number | undefined;
154353
- isEditorWhite?: boolean | undefined;
154354
- preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
154355
- } | undefined;
154356
- }, {
154357
- name: string;
154358
- avatar?: string | undefined;
154359
- nickname?: string | undefined;
154360
- theme?: {
154361
- backgroundColor?: string | undefined;
154362
- accentColor?: string | undefined;
154363
- contrast?: number | undefined;
154364
- isSecondaryEnabled?: boolean | undefined;
154365
- secondaryBackgroundColor?: string | undefined;
154366
- secondaryContrast?: number | undefined;
154367
- isEditorWhite?: boolean | undefined;
154368
- preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
154369
- } | undefined;
154370
- onboarding?: {
154375
+ } | undefined, {
154371
154376
  companyName?: string | undefined;
154372
154377
  numberOfPeopleInOrg?: string | undefined;
154373
154378
  numberOfPeopleInDesignTeam?: string | undefined;
@@ -154380,8 +154385,8 @@ declare const ForgeIterationMessage: z.ZodObject<{
154380
154385
  figmaUrl?: string | undefined;
154381
154386
  isPageDraftOnboardingFinished?: boolean | undefined;
154382
154387
  isApprovalsOnboardingFinished?: boolean | undefined;
154383
- } | undefined;
154384
- portalTheme?: {
154388
+ } | null | undefined>;
154389
+ theme: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
154385
154390
  backgroundColor?: string | undefined;
154386
154391
  accentColor?: string | undefined;
154387
154392
  contrast?: number | undefined;
@@ -154389,20 +154394,8 @@ declare const ForgeIterationMessage: z.ZodObject<{
154389
154394
  secondaryBackgroundColor?: string | undefined;
154390
154395
  secondaryContrast?: number | undefined;
154391
154396
  isEditorWhite?: boolean | undefined;
154392
- preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
154393
- } | undefined;
154394
- }>;
154395
- loggedOutAt: z.ZodOptional<z.ZodDate>;
154396
- isProtected: z.ZodBoolean;
154397
- source: z.ZodOptional<z.ZodEnum<["SignUp", "Invite", "SSO"]>>;
154398
- }, "strip", z.ZodTypeAny, {
154399
- email: string;
154400
- id: string;
154401
- profile: {
154402
- name: string;
154403
- avatar?: string | undefined;
154404
- nickname?: string | undefined;
154405
- theme?: {
154397
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
154398
+ }, z.ZodTypeDef, {
154406
154399
  backgroundColor?: string | undefined;
154407
154400
  accentColor?: string | undefined;
154408
154401
  contrast?: number | undefined;
@@ -154411,22 +154404,7 @@ declare const ForgeIterationMessage: z.ZodObject<{
154411
154404
  secondaryContrast?: number | undefined;
154412
154405
  isEditorWhite?: boolean | undefined;
154413
154406
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
154414
- } | undefined;
154415
- onboarding?: {
154416
- companyName?: string | undefined;
154417
- numberOfPeopleInOrg?: string | undefined;
154418
- numberOfPeopleInDesignTeam?: string | undefined;
154419
- department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
154420
- jobTitle?: string | undefined;
154421
- phase?: string | undefined;
154422
- jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
154423
- designSystemName?: string | undefined;
154424
- defaultDestination?: string | undefined;
154425
- figmaUrl?: string | undefined;
154426
- isPageDraftOnboardingFinished?: boolean | undefined;
154427
- isApprovalsOnboardingFinished?: boolean | undefined;
154428
- } | undefined;
154429
- portalTheme?: {
154407
+ }>>>, {
154430
154408
  backgroundColor?: string | undefined;
154431
154409
  accentColor?: string | undefined;
154432
154410
  contrast?: number | undefined;
@@ -154434,21 +154412,8 @@ declare const ForgeIterationMessage: z.ZodObject<{
154434
154412
  secondaryBackgroundColor?: string | undefined;
154435
154413
  secondaryContrast?: number | undefined;
154436
154414
  isEditorWhite?: boolean | undefined;
154437
- preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
154438
- } | undefined;
154439
- };
154440
- createdAt: Date;
154441
- isProtected: boolean;
154442
- source?: "SignUp" | "Invite" | "SSO" | undefined;
154443
- loggedOutAt?: Date | undefined;
154444
- }, {
154445
- email: string;
154446
- id: string;
154447
- profile: {
154448
- name: string;
154449
- avatar?: string | undefined;
154450
- nickname?: string | undefined;
154451
- theme?: {
154415
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
154416
+ } | undefined, {
154452
154417
  backgroundColor?: string | undefined;
154453
154418
  accentColor?: string | undefined;
154454
154419
  contrast?: number | undefined;
@@ -154457,22 +154422,8 @@ declare const ForgeIterationMessage: z.ZodObject<{
154457
154422
  secondaryContrast?: number | undefined;
154458
154423
  isEditorWhite?: boolean | undefined;
154459
154424
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
154460
- } | undefined;
154461
- onboarding?: {
154462
- companyName?: string | undefined;
154463
- numberOfPeopleInOrg?: string | undefined;
154464
- numberOfPeopleInDesignTeam?: string | undefined;
154465
- department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
154466
- jobTitle?: string | undefined;
154467
- phase?: string | undefined;
154468
- jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
154469
- designSystemName?: string | undefined;
154470
- defaultDestination?: string | undefined;
154471
- figmaUrl?: string | undefined;
154472
- isPageDraftOnboardingFinished?: boolean | undefined;
154473
- isApprovalsOnboardingFinished?: boolean | undefined;
154474
- } | undefined;
154475
- portalTheme?: {
154425
+ } | null | undefined>;
154426
+ portalTheme: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
154476
154427
  backgroundColor?: string | undefined;
154477
154428
  accentColor?: string | undefined;
154478
154429
  contrast?: number | undefined;
@@ -154481,26 +154432,7 @@ declare const ForgeIterationMessage: z.ZodObject<{
154481
154432
  secondaryContrast?: number | undefined;
154482
154433
  isEditorWhite?: boolean | undefined;
154483
154434
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
154484
- } | undefined;
154485
- };
154486
- createdAt: Date;
154487
- isProtected: boolean;
154488
- source?: "SignUp" | "Invite" | "SSO" | undefined;
154489
- loggedOutAt?: Date | undefined;
154490
- }>>;
154491
- }, "strip", z.ZodTypeAny, {
154492
- type: "User" | "Agent";
154493
- id: string;
154494
- role: "Viewer" | "Editor";
154495
- projectIterationId: string;
154496
- user?: {
154497
- email: string;
154498
- id: string;
154499
- profile: {
154500
- name: string;
154501
- avatar?: string | undefined;
154502
- nickname?: string | undefined;
154503
- theme?: {
154435
+ }, z.ZodTypeDef, {
154504
154436
  backgroundColor?: string | undefined;
154505
154437
  accentColor?: string | undefined;
154506
154438
  contrast?: number | undefined;
@@ -154508,23 +154440,8 @@ declare const ForgeIterationMessage: z.ZodObject<{
154508
154440
  secondaryBackgroundColor?: string | undefined;
154509
154441
  secondaryContrast?: number | undefined;
154510
154442
  isEditorWhite?: boolean | undefined;
154511
- preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
154512
- } | undefined;
154513
- onboarding?: {
154514
- companyName?: string | undefined;
154515
- numberOfPeopleInOrg?: string | undefined;
154516
- numberOfPeopleInDesignTeam?: string | undefined;
154517
- department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
154518
- jobTitle?: string | undefined;
154519
- phase?: string | undefined;
154520
- jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
154521
- designSystemName?: string | undefined;
154522
- defaultDestination?: string | undefined;
154523
- figmaUrl?: string | undefined;
154524
- isPageDraftOnboardingFinished?: boolean | undefined;
154525
- isApprovalsOnboardingFinished?: boolean | undefined;
154526
- } | undefined;
154527
- portalTheme?: {
154443
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
154444
+ }>>>, {
154528
154445
  backgroundColor?: string | undefined;
154529
154446
  accentColor?: string | undefined;
154530
154447
  contrast?: number | undefined;
@@ -154533,38 +154450,17 @@ declare const ForgeIterationMessage: z.ZodObject<{
154533
154450
  secondaryContrast?: number | undefined;
154534
154451
  isEditorWhite?: boolean | undefined;
154535
154452
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
154536
- } | undefined;
154537
- };
154538
- createdAt: Date;
154539
- isProtected: boolean;
154540
- source?: "SignUp" | "Invite" | "SSO" | undefined;
154541
- loggedOutAt?: Date | undefined;
154542
- } | undefined;
154543
- userId?: string | undefined;
154544
- agentId?: string | undefined;
154545
- agent?: {
154546
- avatar: string | {
154547
- headType: string;
154548
- hairType: string;
154549
- accessory1Type: string;
154550
- accessory2Type: string;
154551
- };
154552
- id: string;
154553
- name: string;
154554
- behavior: "Coder" | "Writer" | "Designer";
154555
- projectId: string;
154556
- personality: "Neutral" | "Assertive" | "Crazy";
154557
- avatarUrl?: string | undefined;
154558
- } | undefined;
154559
- }, {
154560
- type: "User" | "Agent";
154561
- id: string;
154562
- role: "Viewer" | "Editor";
154563
- projectIterationId: string;
154564
- user?: {
154565
- email: string;
154566
- id: string;
154567
- profile: {
154453
+ } | undefined, {
154454
+ backgroundColor?: string | undefined;
154455
+ accentColor?: string | undefined;
154456
+ contrast?: number | undefined;
154457
+ isSecondaryEnabled?: boolean | undefined;
154458
+ secondaryBackgroundColor?: string | undefined;
154459
+ secondaryContrast?: number | undefined;
154460
+ isEditorWhite?: boolean | undefined;
154461
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
154462
+ } | null | undefined>;
154463
+ }, "strip", z.ZodTypeAny, {
154568
154464
  name: string;
154569
154465
  avatar?: string | undefined;
154570
154466
  nickname?: string | undefined;
@@ -154602,6 +154498,255 @@ declare const ForgeIterationMessage: z.ZodObject<{
154602
154498
  isEditorWhite?: boolean | undefined;
154603
154499
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
154604
154500
  } | undefined;
154501
+ }, {
154502
+ name: string;
154503
+ avatar?: string | null | undefined;
154504
+ nickname?: string | null | undefined;
154505
+ theme?: {
154506
+ backgroundColor?: string | undefined;
154507
+ accentColor?: string | undefined;
154508
+ contrast?: number | undefined;
154509
+ isSecondaryEnabled?: boolean | undefined;
154510
+ secondaryBackgroundColor?: string | undefined;
154511
+ secondaryContrast?: number | undefined;
154512
+ isEditorWhite?: boolean | undefined;
154513
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
154514
+ } | null | undefined;
154515
+ onboarding?: {
154516
+ companyName?: string | undefined;
154517
+ numberOfPeopleInOrg?: string | undefined;
154518
+ numberOfPeopleInDesignTeam?: string | undefined;
154519
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
154520
+ jobTitle?: string | undefined;
154521
+ phase?: string | undefined;
154522
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
154523
+ designSystemName?: string | undefined;
154524
+ defaultDestination?: string | undefined;
154525
+ figmaUrl?: string | undefined;
154526
+ isPageDraftOnboardingFinished?: boolean | undefined;
154527
+ isApprovalsOnboardingFinished?: boolean | undefined;
154528
+ } | null | undefined;
154529
+ portalTheme?: {
154530
+ backgroundColor?: string | undefined;
154531
+ accentColor?: string | undefined;
154532
+ contrast?: number | undefined;
154533
+ isSecondaryEnabled?: boolean | undefined;
154534
+ secondaryBackgroundColor?: string | undefined;
154535
+ secondaryContrast?: number | undefined;
154536
+ isEditorWhite?: boolean | undefined;
154537
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
154538
+ } | null | undefined;
154539
+ }>;
154540
+ loggedOutAt: z.ZodOptional<z.ZodDate>;
154541
+ isProtected: z.ZodBoolean;
154542
+ source: z.ZodOptional<z.ZodEnum<["SignUp", "Invite", "SSO"]>>;
154543
+ }, "strip", z.ZodTypeAny, {
154544
+ email: string;
154545
+ id: string;
154546
+ profile: {
154547
+ name: string;
154548
+ avatar?: string | undefined;
154549
+ nickname?: string | undefined;
154550
+ theme?: {
154551
+ backgroundColor?: string | undefined;
154552
+ accentColor?: string | undefined;
154553
+ contrast?: number | undefined;
154554
+ isSecondaryEnabled?: boolean | undefined;
154555
+ secondaryBackgroundColor?: string | undefined;
154556
+ secondaryContrast?: number | undefined;
154557
+ isEditorWhite?: boolean | undefined;
154558
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
154559
+ } | undefined;
154560
+ onboarding?: {
154561
+ companyName?: string | undefined;
154562
+ numberOfPeopleInOrg?: string | undefined;
154563
+ numberOfPeopleInDesignTeam?: string | undefined;
154564
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
154565
+ jobTitle?: string | undefined;
154566
+ phase?: string | undefined;
154567
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
154568
+ designSystemName?: string | undefined;
154569
+ defaultDestination?: string | undefined;
154570
+ figmaUrl?: string | undefined;
154571
+ isPageDraftOnboardingFinished?: boolean | undefined;
154572
+ isApprovalsOnboardingFinished?: boolean | undefined;
154573
+ } | undefined;
154574
+ portalTheme?: {
154575
+ backgroundColor?: string | undefined;
154576
+ accentColor?: string | undefined;
154577
+ contrast?: number | undefined;
154578
+ isSecondaryEnabled?: boolean | undefined;
154579
+ secondaryBackgroundColor?: string | undefined;
154580
+ secondaryContrast?: number | undefined;
154581
+ isEditorWhite?: boolean | undefined;
154582
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
154583
+ } | undefined;
154584
+ };
154585
+ createdAt: Date;
154586
+ isProtected: boolean;
154587
+ source?: "SignUp" | "Invite" | "SSO" | undefined;
154588
+ loggedOutAt?: Date | undefined;
154589
+ }, {
154590
+ email: string;
154591
+ id: string;
154592
+ profile: {
154593
+ name: string;
154594
+ avatar?: string | null | undefined;
154595
+ nickname?: string | null | undefined;
154596
+ theme?: {
154597
+ backgroundColor?: string | undefined;
154598
+ accentColor?: string | undefined;
154599
+ contrast?: number | undefined;
154600
+ isSecondaryEnabled?: boolean | undefined;
154601
+ secondaryBackgroundColor?: string | undefined;
154602
+ secondaryContrast?: number | undefined;
154603
+ isEditorWhite?: boolean | undefined;
154604
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
154605
+ } | null | undefined;
154606
+ onboarding?: {
154607
+ companyName?: string | undefined;
154608
+ numberOfPeopleInOrg?: string | undefined;
154609
+ numberOfPeopleInDesignTeam?: string | undefined;
154610
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
154611
+ jobTitle?: string | undefined;
154612
+ phase?: string | undefined;
154613
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
154614
+ designSystemName?: string | undefined;
154615
+ defaultDestination?: string | undefined;
154616
+ figmaUrl?: string | undefined;
154617
+ isPageDraftOnboardingFinished?: boolean | undefined;
154618
+ isApprovalsOnboardingFinished?: boolean | undefined;
154619
+ } | null | undefined;
154620
+ portalTheme?: {
154621
+ backgroundColor?: string | undefined;
154622
+ accentColor?: string | undefined;
154623
+ contrast?: number | undefined;
154624
+ isSecondaryEnabled?: boolean | undefined;
154625
+ secondaryBackgroundColor?: string | undefined;
154626
+ secondaryContrast?: number | undefined;
154627
+ isEditorWhite?: boolean | undefined;
154628
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
154629
+ } | null | undefined;
154630
+ };
154631
+ createdAt: Date;
154632
+ isProtected: boolean;
154633
+ source?: "SignUp" | "Invite" | "SSO" | undefined;
154634
+ loggedOutAt?: Date | undefined;
154635
+ }>>;
154636
+ }, "strip", z.ZodTypeAny, {
154637
+ type: "User" | "Agent";
154638
+ id: string;
154639
+ role: "Viewer" | "Editor";
154640
+ projectIterationId: string;
154641
+ user?: {
154642
+ email: string;
154643
+ id: string;
154644
+ profile: {
154645
+ name: string;
154646
+ avatar?: string | undefined;
154647
+ nickname?: string | undefined;
154648
+ theme?: {
154649
+ backgroundColor?: string | undefined;
154650
+ accentColor?: string | undefined;
154651
+ contrast?: number | undefined;
154652
+ isSecondaryEnabled?: boolean | undefined;
154653
+ secondaryBackgroundColor?: string | undefined;
154654
+ secondaryContrast?: number | undefined;
154655
+ isEditorWhite?: boolean | undefined;
154656
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
154657
+ } | undefined;
154658
+ onboarding?: {
154659
+ companyName?: string | undefined;
154660
+ numberOfPeopleInOrg?: string | undefined;
154661
+ numberOfPeopleInDesignTeam?: string | undefined;
154662
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
154663
+ jobTitle?: string | undefined;
154664
+ phase?: string | undefined;
154665
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
154666
+ designSystemName?: string | undefined;
154667
+ defaultDestination?: string | undefined;
154668
+ figmaUrl?: string | undefined;
154669
+ isPageDraftOnboardingFinished?: boolean | undefined;
154670
+ isApprovalsOnboardingFinished?: boolean | undefined;
154671
+ } | undefined;
154672
+ portalTheme?: {
154673
+ backgroundColor?: string | undefined;
154674
+ accentColor?: string | undefined;
154675
+ contrast?: number | undefined;
154676
+ isSecondaryEnabled?: boolean | undefined;
154677
+ secondaryBackgroundColor?: string | undefined;
154678
+ secondaryContrast?: number | undefined;
154679
+ isEditorWhite?: boolean | undefined;
154680
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
154681
+ } | undefined;
154682
+ };
154683
+ createdAt: Date;
154684
+ isProtected: boolean;
154685
+ source?: "SignUp" | "Invite" | "SSO" | undefined;
154686
+ loggedOutAt?: Date | undefined;
154687
+ } | undefined;
154688
+ userId?: string | undefined;
154689
+ agentId?: string | undefined;
154690
+ agent?: {
154691
+ avatar: string | {
154692
+ headType: string;
154693
+ hairType: string;
154694
+ accessory1Type: string;
154695
+ accessory2Type: string;
154696
+ };
154697
+ id: string;
154698
+ name: string;
154699
+ behavior: "Coder" | "Writer" | "Designer";
154700
+ projectId: string;
154701
+ personality: "Neutral" | "Assertive" | "Crazy";
154702
+ avatarUrl?: string | undefined;
154703
+ } | undefined;
154704
+ }, {
154705
+ type: "User" | "Agent";
154706
+ id: string;
154707
+ role: "Viewer" | "Editor";
154708
+ projectIterationId: string;
154709
+ user?: {
154710
+ email: string;
154711
+ id: string;
154712
+ profile: {
154713
+ name: string;
154714
+ avatar?: string | null | undefined;
154715
+ nickname?: string | null | undefined;
154716
+ theme?: {
154717
+ backgroundColor?: string | undefined;
154718
+ accentColor?: string | undefined;
154719
+ contrast?: number | undefined;
154720
+ isSecondaryEnabled?: boolean | undefined;
154721
+ secondaryBackgroundColor?: string | undefined;
154722
+ secondaryContrast?: number | undefined;
154723
+ isEditorWhite?: boolean | undefined;
154724
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
154725
+ } | null | undefined;
154726
+ onboarding?: {
154727
+ companyName?: string | undefined;
154728
+ numberOfPeopleInOrg?: string | undefined;
154729
+ numberOfPeopleInDesignTeam?: string | undefined;
154730
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
154731
+ jobTitle?: string | undefined;
154732
+ phase?: string | undefined;
154733
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
154734
+ designSystemName?: string | undefined;
154735
+ defaultDestination?: string | undefined;
154736
+ figmaUrl?: string | undefined;
154737
+ isPageDraftOnboardingFinished?: boolean | undefined;
154738
+ isApprovalsOnboardingFinished?: boolean | undefined;
154739
+ } | null | undefined;
154740
+ portalTheme?: {
154741
+ backgroundColor?: string | undefined;
154742
+ accentColor?: string | undefined;
154743
+ contrast?: number | undefined;
154744
+ isSecondaryEnabled?: boolean | undefined;
154745
+ secondaryBackgroundColor?: string | undefined;
154746
+ secondaryContrast?: number | undefined;
154747
+ isEditorWhite?: boolean | undefined;
154748
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
154749
+ } | null | undefined;
154605
154750
  };
154606
154751
  createdAt: Date;
154607
154752
  isProtected: boolean;
@@ -154739,8 +154884,8 @@ declare const ForgeIterationMessage: z.ZodObject<{
154739
154884
  id: string;
154740
154885
  profile: {
154741
154886
  name: string;
154742
- avatar?: string | undefined;
154743
- nickname?: string | undefined;
154887
+ avatar?: string | null | undefined;
154888
+ nickname?: string | null | undefined;
154744
154889
  theme?: {
154745
154890
  backgroundColor?: string | undefined;
154746
154891
  accentColor?: string | undefined;
@@ -154750,7 +154895,7 @@ declare const ForgeIterationMessage: z.ZodObject<{
154750
154895
  secondaryContrast?: number | undefined;
154751
154896
  isEditorWhite?: boolean | undefined;
154752
154897
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
154753
- } | undefined;
154898
+ } | null | undefined;
154754
154899
  onboarding?: {
154755
154900
  companyName?: string | undefined;
154756
154901
  numberOfPeopleInOrg?: string | undefined;
@@ -154764,7 +154909,7 @@ declare const ForgeIterationMessage: z.ZodObject<{
154764
154909
  figmaUrl?: string | undefined;
154765
154910
  isPageDraftOnboardingFinished?: boolean | undefined;
154766
154911
  isApprovalsOnboardingFinished?: boolean | undefined;
154767
- } | undefined;
154912
+ } | null | undefined;
154768
154913
  portalTheme?: {
154769
154914
  backgroundColor?: string | undefined;
154770
154915
  accentColor?: string | undefined;
@@ -154774,7 +154919,7 @@ declare const ForgeIterationMessage: z.ZodObject<{
154774
154919
  secondaryContrast?: number | undefined;
154775
154920
  isEditorWhite?: boolean | undefined;
154776
154921
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
154777
- } | undefined;
154922
+ } | null | undefined;
154778
154923
  };
154779
154924
  createdAt: Date;
154780
154925
  isProtected: boolean;
@@ -154869,22 +155014,9 @@ declare const ForgeParticipant: z.ZodObject<{
154869
155014
  createdAt: z.ZodDate;
154870
155015
  profile: z.ZodObject<{
154871
155016
  name: z.ZodString;
154872
- avatar: z.ZodOptional<z.ZodString>;
154873
- nickname: z.ZodOptional<z.ZodString>;
154874
- onboarding: z.ZodOptional<z.ZodObject<{
154875
- companyName: z.ZodOptional<z.ZodString>;
154876
- numberOfPeopleInOrg: z.ZodOptional<z.ZodString>;
154877
- numberOfPeopleInDesignTeam: z.ZodOptional<z.ZodString>;
154878
- department: z.ZodOptional<z.ZodEnum<["Design", "Engineering", "Product", "Brand", "Other"]>>;
154879
- jobTitle: z.ZodOptional<z.ZodString>;
154880
- phase: z.ZodOptional<z.ZodString>;
154881
- jobLevel: z.ZodOptional<z.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>>;
154882
- designSystemName: z.ZodOptional<z.ZodString>;
154883
- defaultDestination: z.ZodOptional<z.ZodString>;
154884
- figmaUrl: z.ZodOptional<z.ZodString>;
154885
- isPageDraftOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
154886
- isApprovalsOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
154887
- }, "strip", z.ZodTypeAny, {
155017
+ avatar: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
155018
+ nickname: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
155019
+ onboarding: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
154888
155020
  companyName?: string | undefined;
154889
155021
  numberOfPeopleInOrg?: string | undefined;
154890
155022
  numberOfPeopleInDesignTeam?: string | undefined;
@@ -154897,7 +155029,7 @@ declare const ForgeParticipant: z.ZodObject<{
154897
155029
  figmaUrl?: string | undefined;
154898
155030
  isPageDraftOnboardingFinished?: boolean | undefined;
154899
155031
  isApprovalsOnboardingFinished?: boolean | undefined;
154900
- }, {
155032
+ }, z.ZodTypeDef, {
154901
155033
  companyName?: string | undefined;
154902
155034
  numberOfPeopleInOrg?: string | undefined;
154903
155035
  numberOfPeopleInDesignTeam?: string | undefined;
@@ -154910,18 +155042,34 @@ declare const ForgeParticipant: z.ZodObject<{
154910
155042
  figmaUrl?: string | undefined;
154911
155043
  isPageDraftOnboardingFinished?: boolean | undefined;
154912
155044
  isApprovalsOnboardingFinished?: boolean | undefined;
154913
- }>>;
154914
- theme: z.ZodOptional<z.ZodObject<{
154915
- backgroundColor: z.ZodOptional<z.ZodString>;
154916
- accentColor: z.ZodOptional<z.ZodString>;
154917
- contrast: z.ZodOptional<z.ZodNumber>;
154918
- isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
154919
- secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
154920
- secondaryContrast: z.ZodOptional<z.ZodNumber>;
154921
- isEditorWhite: z.ZodOptional<z.ZodBoolean>;
154922
- } & {
154923
- preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
154924
- }, "strip", z.ZodTypeAny, {
155045
+ }>>>, {
155046
+ companyName?: string | undefined;
155047
+ numberOfPeopleInOrg?: string | undefined;
155048
+ numberOfPeopleInDesignTeam?: string | undefined;
155049
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
155050
+ jobTitle?: string | undefined;
155051
+ phase?: string | undefined;
155052
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
155053
+ designSystemName?: string | undefined;
155054
+ defaultDestination?: string | undefined;
155055
+ figmaUrl?: string | undefined;
155056
+ isPageDraftOnboardingFinished?: boolean | undefined;
155057
+ isApprovalsOnboardingFinished?: boolean | undefined;
155058
+ } | undefined, {
155059
+ companyName?: string | undefined;
155060
+ numberOfPeopleInOrg?: string | undefined;
155061
+ numberOfPeopleInDesignTeam?: string | undefined;
155062
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
155063
+ jobTitle?: string | undefined;
155064
+ phase?: string | undefined;
155065
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
155066
+ designSystemName?: string | undefined;
155067
+ defaultDestination?: string | undefined;
155068
+ figmaUrl?: string | undefined;
155069
+ isPageDraftOnboardingFinished?: boolean | undefined;
155070
+ isApprovalsOnboardingFinished?: boolean | undefined;
155071
+ } | null | undefined>;
155072
+ theme: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
154925
155073
  backgroundColor?: string | undefined;
154926
155074
  accentColor?: string | undefined;
154927
155075
  contrast?: number | undefined;
@@ -154930,7 +155078,7 @@ declare const ForgeParticipant: z.ZodObject<{
154930
155078
  secondaryContrast?: number | undefined;
154931
155079
  isEditorWhite?: boolean | undefined;
154932
155080
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
154933
- }, {
155081
+ }, z.ZodTypeDef, {
154934
155082
  backgroundColor?: string | undefined;
154935
155083
  accentColor?: string | undefined;
154936
155084
  contrast?: number | undefined;
@@ -154939,18 +155087,26 @@ declare const ForgeParticipant: z.ZodObject<{
154939
155087
  secondaryContrast?: number | undefined;
154940
155088
  isEditorWhite?: boolean | undefined;
154941
155089
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
154942
- }>>;
154943
- portalTheme: z.ZodOptional<z.ZodObject<{
154944
- backgroundColor: z.ZodOptional<z.ZodString>;
154945
- accentColor: z.ZodOptional<z.ZodString>;
154946
- contrast: z.ZodOptional<z.ZodNumber>;
154947
- isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
154948
- secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
154949
- secondaryContrast: z.ZodOptional<z.ZodNumber>;
154950
- isEditorWhite: z.ZodOptional<z.ZodBoolean>;
154951
- } & {
154952
- preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia", "DefaultPortal"]>>;
154953
- }, "strip", z.ZodTypeAny, {
155090
+ }>>>, {
155091
+ backgroundColor?: string | undefined;
155092
+ accentColor?: string | undefined;
155093
+ contrast?: number | undefined;
155094
+ isSecondaryEnabled?: boolean | undefined;
155095
+ secondaryBackgroundColor?: string | undefined;
155096
+ secondaryContrast?: number | undefined;
155097
+ isEditorWhite?: boolean | undefined;
155098
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
155099
+ } | undefined, {
155100
+ backgroundColor?: string | undefined;
155101
+ accentColor?: string | undefined;
155102
+ contrast?: number | undefined;
155103
+ isSecondaryEnabled?: boolean | undefined;
155104
+ secondaryBackgroundColor?: string | undefined;
155105
+ secondaryContrast?: number | undefined;
155106
+ isEditorWhite?: boolean | undefined;
155107
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
155108
+ } | null | undefined>;
155109
+ portalTheme: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
154954
155110
  backgroundColor?: string | undefined;
154955
155111
  accentColor?: string | undefined;
154956
155112
  contrast?: number | undefined;
@@ -154959,7 +155115,7 @@ declare const ForgeParticipant: z.ZodObject<{
154959
155115
  secondaryContrast?: number | undefined;
154960
155116
  isEditorWhite?: boolean | undefined;
154961
155117
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
154962
- }, {
155118
+ }, z.ZodTypeDef, {
154963
155119
  backgroundColor?: string | undefined;
154964
155120
  accentColor?: string | undefined;
154965
155121
  contrast?: number | undefined;
@@ -154968,7 +155124,25 @@ declare const ForgeParticipant: z.ZodObject<{
154968
155124
  secondaryContrast?: number | undefined;
154969
155125
  isEditorWhite?: boolean | undefined;
154970
155126
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
154971
- }>>;
155127
+ }>>>, {
155128
+ backgroundColor?: string | undefined;
155129
+ accentColor?: string | undefined;
155130
+ contrast?: number | undefined;
155131
+ isSecondaryEnabled?: boolean | undefined;
155132
+ secondaryBackgroundColor?: string | undefined;
155133
+ secondaryContrast?: number | undefined;
155134
+ isEditorWhite?: boolean | undefined;
155135
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
155136
+ } | undefined, {
155137
+ backgroundColor?: string | undefined;
155138
+ accentColor?: string | undefined;
155139
+ contrast?: number | undefined;
155140
+ isSecondaryEnabled?: boolean | undefined;
155141
+ secondaryBackgroundColor?: string | undefined;
155142
+ secondaryContrast?: number | undefined;
155143
+ isEditorWhite?: boolean | undefined;
155144
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
155145
+ } | null | undefined>;
154972
155146
  }, "strip", z.ZodTypeAny, {
154973
155147
  name: string;
154974
155148
  avatar?: string | undefined;
@@ -155009,8 +155183,8 @@ declare const ForgeParticipant: z.ZodObject<{
155009
155183
  } | undefined;
155010
155184
  }, {
155011
155185
  name: string;
155012
- avatar?: string | undefined;
155013
- nickname?: string | undefined;
155186
+ avatar?: string | null | undefined;
155187
+ nickname?: string | null | undefined;
155014
155188
  theme?: {
155015
155189
  backgroundColor?: string | undefined;
155016
155190
  accentColor?: string | undefined;
@@ -155020,7 +155194,7 @@ declare const ForgeParticipant: z.ZodObject<{
155020
155194
  secondaryContrast?: number | undefined;
155021
155195
  isEditorWhite?: boolean | undefined;
155022
155196
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
155023
- } | undefined;
155197
+ } | null | undefined;
155024
155198
  onboarding?: {
155025
155199
  companyName?: string | undefined;
155026
155200
  numberOfPeopleInOrg?: string | undefined;
@@ -155034,7 +155208,7 @@ declare const ForgeParticipant: z.ZodObject<{
155034
155208
  figmaUrl?: string | undefined;
155035
155209
  isPageDraftOnboardingFinished?: boolean | undefined;
155036
155210
  isApprovalsOnboardingFinished?: boolean | undefined;
155037
- } | undefined;
155211
+ } | null | undefined;
155038
155212
  portalTheme?: {
155039
155213
  backgroundColor?: string | undefined;
155040
155214
  accentColor?: string | undefined;
@@ -155044,7 +155218,7 @@ declare const ForgeParticipant: z.ZodObject<{
155044
155218
  secondaryContrast?: number | undefined;
155045
155219
  isEditorWhite?: boolean | undefined;
155046
155220
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
155047
- } | undefined;
155221
+ } | null | undefined;
155048
155222
  }>;
155049
155223
  loggedOutAt: z.ZodOptional<z.ZodDate>;
155050
155224
  isProtected: z.ZodBoolean;
@@ -155100,8 +155274,8 @@ declare const ForgeParticipant: z.ZodObject<{
155100
155274
  id: string;
155101
155275
  profile: {
155102
155276
  name: string;
155103
- avatar?: string | undefined;
155104
- nickname?: string | undefined;
155277
+ avatar?: string | null | undefined;
155278
+ nickname?: string | null | undefined;
155105
155279
  theme?: {
155106
155280
  backgroundColor?: string | undefined;
155107
155281
  accentColor?: string | undefined;
@@ -155111,7 +155285,7 @@ declare const ForgeParticipant: z.ZodObject<{
155111
155285
  secondaryContrast?: number | undefined;
155112
155286
  isEditorWhite?: boolean | undefined;
155113
155287
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
155114
- } | undefined;
155288
+ } | null | undefined;
155115
155289
  onboarding?: {
155116
155290
  companyName?: string | undefined;
155117
155291
  numberOfPeopleInOrg?: string | undefined;
@@ -155125,7 +155299,7 @@ declare const ForgeParticipant: z.ZodObject<{
155125
155299
  figmaUrl?: string | undefined;
155126
155300
  isPageDraftOnboardingFinished?: boolean | undefined;
155127
155301
  isApprovalsOnboardingFinished?: boolean | undefined;
155128
- } | undefined;
155302
+ } | null | undefined;
155129
155303
  portalTheme?: {
155130
155304
  backgroundColor?: string | undefined;
155131
155305
  accentColor?: string | undefined;
@@ -155135,7 +155309,7 @@ declare const ForgeParticipant: z.ZodObject<{
155135
155309
  secondaryContrast?: number | undefined;
155136
155310
  isEditorWhite?: boolean | undefined;
155137
155311
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
155138
- } | undefined;
155312
+ } | null | undefined;
155139
155313
  };
155140
155314
  createdAt: Date;
155141
155315
  isProtected: boolean;
@@ -155220,8 +155394,8 @@ declare const ForgeParticipant: z.ZodObject<{
155220
155394
  id: string;
155221
155395
  profile: {
155222
155396
  name: string;
155223
- avatar?: string | undefined;
155224
- nickname?: string | undefined;
155397
+ avatar?: string | null | undefined;
155398
+ nickname?: string | null | undefined;
155225
155399
  theme?: {
155226
155400
  backgroundColor?: string | undefined;
155227
155401
  accentColor?: string | undefined;
@@ -155231,7 +155405,7 @@ declare const ForgeParticipant: z.ZodObject<{
155231
155405
  secondaryContrast?: number | undefined;
155232
155406
  isEditorWhite?: boolean | undefined;
155233
155407
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
155234
- } | undefined;
155408
+ } | null | undefined;
155235
155409
  onboarding?: {
155236
155410
  companyName?: string | undefined;
155237
155411
  numberOfPeopleInOrg?: string | undefined;
@@ -155245,7 +155419,7 @@ declare const ForgeParticipant: z.ZodObject<{
155245
155419
  figmaUrl?: string | undefined;
155246
155420
  isPageDraftOnboardingFinished?: boolean | undefined;
155247
155421
  isApprovalsOnboardingFinished?: boolean | undefined;
155248
- } | undefined;
155422
+ } | null | undefined;
155249
155423
  portalTheme?: {
155250
155424
  backgroundColor?: string | undefined;
155251
155425
  accentColor?: string | undefined;
@@ -155255,7 +155429,7 @@ declare const ForgeParticipant: z.ZodObject<{
155255
155429
  secondaryContrast?: number | undefined;
155256
155430
  isEditorWhite?: boolean | undefined;
155257
155431
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
155258
- } | undefined;
155432
+ } | null | undefined;
155259
155433
  };
155260
155434
  createdAt: Date;
155261
155435
  isProtected: boolean;
@@ -157614,22 +157788,9 @@ declare const ForgeProjectIteration: z.ZodObject<{
157614
157788
  createdAt: z.ZodDate;
157615
157789
  profile: z.ZodObject<{
157616
157790
  name: z.ZodString;
157617
- avatar: z.ZodOptional<z.ZodString>;
157618
- nickname: z.ZodOptional<z.ZodString>;
157619
- onboarding: z.ZodOptional<z.ZodObject<{
157620
- companyName: z.ZodOptional<z.ZodString>;
157621
- numberOfPeopleInOrg: z.ZodOptional<z.ZodString>;
157622
- numberOfPeopleInDesignTeam: z.ZodOptional<z.ZodString>;
157623
- department: z.ZodOptional<z.ZodEnum<["Design", "Engineering", "Product", "Brand", "Other"]>>;
157624
- jobTitle: z.ZodOptional<z.ZodString>;
157625
- phase: z.ZodOptional<z.ZodString>;
157626
- jobLevel: z.ZodOptional<z.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>>;
157627
- designSystemName: z.ZodOptional<z.ZodString>;
157628
- defaultDestination: z.ZodOptional<z.ZodString>;
157629
- figmaUrl: z.ZodOptional<z.ZodString>;
157630
- isPageDraftOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
157631
- isApprovalsOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
157632
- }, "strip", z.ZodTypeAny, {
157791
+ avatar: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
157792
+ nickname: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
157793
+ onboarding: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
157633
157794
  companyName?: string | undefined;
157634
157795
  numberOfPeopleInOrg?: string | undefined;
157635
157796
  numberOfPeopleInDesignTeam?: string | undefined;
@@ -157642,7 +157803,7 @@ declare const ForgeProjectIteration: z.ZodObject<{
157642
157803
  figmaUrl?: string | undefined;
157643
157804
  isPageDraftOnboardingFinished?: boolean | undefined;
157644
157805
  isApprovalsOnboardingFinished?: boolean | undefined;
157645
- }, {
157806
+ }, z.ZodTypeDef, {
157646
157807
  companyName?: string | undefined;
157647
157808
  numberOfPeopleInOrg?: string | undefined;
157648
157809
  numberOfPeopleInDesignTeam?: string | undefined;
@@ -157655,18 +157816,34 @@ declare const ForgeProjectIteration: z.ZodObject<{
157655
157816
  figmaUrl?: string | undefined;
157656
157817
  isPageDraftOnboardingFinished?: boolean | undefined;
157657
157818
  isApprovalsOnboardingFinished?: boolean | undefined;
157658
- }>>;
157659
- theme: z.ZodOptional<z.ZodObject<{
157660
- backgroundColor: z.ZodOptional<z.ZodString>;
157661
- accentColor: z.ZodOptional<z.ZodString>;
157662
- contrast: z.ZodOptional<z.ZodNumber>;
157663
- isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
157664
- secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
157665
- secondaryContrast: z.ZodOptional<z.ZodNumber>;
157666
- isEditorWhite: z.ZodOptional<z.ZodBoolean>;
157667
- } & {
157668
- preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
157669
- }, "strip", z.ZodTypeAny, {
157819
+ }>>>, {
157820
+ companyName?: string | undefined;
157821
+ numberOfPeopleInOrg?: string | undefined;
157822
+ numberOfPeopleInDesignTeam?: string | undefined;
157823
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
157824
+ jobTitle?: string | undefined;
157825
+ phase?: string | undefined;
157826
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
157827
+ designSystemName?: string | undefined;
157828
+ defaultDestination?: string | undefined;
157829
+ figmaUrl?: string | undefined;
157830
+ isPageDraftOnboardingFinished?: boolean | undefined;
157831
+ isApprovalsOnboardingFinished?: boolean | undefined;
157832
+ } | undefined, {
157833
+ companyName?: string | undefined;
157834
+ numberOfPeopleInOrg?: string | undefined;
157835
+ numberOfPeopleInDesignTeam?: string | undefined;
157836
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
157837
+ jobTitle?: string | undefined;
157838
+ phase?: string | undefined;
157839
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
157840
+ designSystemName?: string | undefined;
157841
+ defaultDestination?: string | undefined;
157842
+ figmaUrl?: string | undefined;
157843
+ isPageDraftOnboardingFinished?: boolean | undefined;
157844
+ isApprovalsOnboardingFinished?: boolean | undefined;
157845
+ } | null | undefined>;
157846
+ theme: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
157670
157847
  backgroundColor?: string | undefined;
157671
157848
  accentColor?: string | undefined;
157672
157849
  contrast?: number | undefined;
@@ -157675,7 +157852,7 @@ declare const ForgeProjectIteration: z.ZodObject<{
157675
157852
  secondaryContrast?: number | undefined;
157676
157853
  isEditorWhite?: boolean | undefined;
157677
157854
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
157678
- }, {
157855
+ }, z.ZodTypeDef, {
157679
157856
  backgroundColor?: string | undefined;
157680
157857
  accentColor?: string | undefined;
157681
157858
  contrast?: number | undefined;
@@ -157684,18 +157861,26 @@ declare const ForgeProjectIteration: z.ZodObject<{
157684
157861
  secondaryContrast?: number | undefined;
157685
157862
  isEditorWhite?: boolean | undefined;
157686
157863
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
157687
- }>>;
157688
- portalTheme: z.ZodOptional<z.ZodObject<{
157689
- backgroundColor: z.ZodOptional<z.ZodString>;
157690
- accentColor: z.ZodOptional<z.ZodString>;
157691
- contrast: z.ZodOptional<z.ZodNumber>;
157692
- isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
157693
- secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
157694
- secondaryContrast: z.ZodOptional<z.ZodNumber>;
157695
- isEditorWhite: z.ZodOptional<z.ZodBoolean>;
157696
- } & {
157697
- preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia", "DefaultPortal"]>>;
157698
- }, "strip", z.ZodTypeAny, {
157864
+ }>>>, {
157865
+ backgroundColor?: string | undefined;
157866
+ accentColor?: string | undefined;
157867
+ contrast?: number | undefined;
157868
+ isSecondaryEnabled?: boolean | undefined;
157869
+ secondaryBackgroundColor?: string | undefined;
157870
+ secondaryContrast?: number | undefined;
157871
+ isEditorWhite?: boolean | undefined;
157872
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
157873
+ } | undefined, {
157874
+ backgroundColor?: string | undefined;
157875
+ accentColor?: string | undefined;
157876
+ contrast?: number | undefined;
157877
+ isSecondaryEnabled?: boolean | undefined;
157878
+ secondaryBackgroundColor?: string | undefined;
157879
+ secondaryContrast?: number | undefined;
157880
+ isEditorWhite?: boolean | undefined;
157881
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
157882
+ } | null | undefined>;
157883
+ portalTheme: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
157699
157884
  backgroundColor?: string | undefined;
157700
157885
  accentColor?: string | undefined;
157701
157886
  contrast?: number | undefined;
@@ -157704,7 +157889,7 @@ declare const ForgeProjectIteration: z.ZodObject<{
157704
157889
  secondaryContrast?: number | undefined;
157705
157890
  isEditorWhite?: boolean | undefined;
157706
157891
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
157707
- }, {
157892
+ }, z.ZodTypeDef, {
157708
157893
  backgroundColor?: string | undefined;
157709
157894
  accentColor?: string | undefined;
157710
157895
  contrast?: number | undefined;
@@ -157713,7 +157898,25 @@ declare const ForgeProjectIteration: z.ZodObject<{
157713
157898
  secondaryContrast?: number | undefined;
157714
157899
  isEditorWhite?: boolean | undefined;
157715
157900
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
157716
- }>>;
157901
+ }>>>, {
157902
+ backgroundColor?: string | undefined;
157903
+ accentColor?: string | undefined;
157904
+ contrast?: number | undefined;
157905
+ isSecondaryEnabled?: boolean | undefined;
157906
+ secondaryBackgroundColor?: string | undefined;
157907
+ secondaryContrast?: number | undefined;
157908
+ isEditorWhite?: boolean | undefined;
157909
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
157910
+ } | undefined, {
157911
+ backgroundColor?: string | undefined;
157912
+ accentColor?: string | undefined;
157913
+ contrast?: number | undefined;
157914
+ isSecondaryEnabled?: boolean | undefined;
157915
+ secondaryBackgroundColor?: string | undefined;
157916
+ secondaryContrast?: number | undefined;
157917
+ isEditorWhite?: boolean | undefined;
157918
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
157919
+ } | null | undefined>;
157717
157920
  }, "strip", z.ZodTypeAny, {
157718
157921
  name: string;
157719
157922
  avatar?: string | undefined;
@@ -157754,8 +157957,8 @@ declare const ForgeProjectIteration: z.ZodObject<{
157754
157957
  } | undefined;
157755
157958
  }, {
157756
157959
  name: string;
157757
- avatar?: string | undefined;
157758
- nickname?: string | undefined;
157960
+ avatar?: string | null | undefined;
157961
+ nickname?: string | null | undefined;
157759
157962
  theme?: {
157760
157963
  backgroundColor?: string | undefined;
157761
157964
  accentColor?: string | undefined;
@@ -157765,7 +157968,7 @@ declare const ForgeProjectIteration: z.ZodObject<{
157765
157968
  secondaryContrast?: number | undefined;
157766
157969
  isEditorWhite?: boolean | undefined;
157767
157970
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
157768
- } | undefined;
157971
+ } | null | undefined;
157769
157972
  onboarding?: {
157770
157973
  companyName?: string | undefined;
157771
157974
  numberOfPeopleInOrg?: string | undefined;
@@ -157779,7 +157982,7 @@ declare const ForgeProjectIteration: z.ZodObject<{
157779
157982
  figmaUrl?: string | undefined;
157780
157983
  isPageDraftOnboardingFinished?: boolean | undefined;
157781
157984
  isApprovalsOnboardingFinished?: boolean | undefined;
157782
- } | undefined;
157985
+ } | null | undefined;
157783
157986
  portalTheme?: {
157784
157987
  backgroundColor?: string | undefined;
157785
157988
  accentColor?: string | undefined;
@@ -157789,7 +157992,7 @@ declare const ForgeProjectIteration: z.ZodObject<{
157789
157992
  secondaryContrast?: number | undefined;
157790
157993
  isEditorWhite?: boolean | undefined;
157791
157994
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
157792
- } | undefined;
157995
+ } | null | undefined;
157793
157996
  }>;
157794
157997
  loggedOutAt: z.ZodOptional<z.ZodDate>;
157795
157998
  isProtected: z.ZodBoolean;
@@ -157845,8 +158048,8 @@ declare const ForgeProjectIteration: z.ZodObject<{
157845
158048
  id: string;
157846
158049
  profile: {
157847
158050
  name: string;
157848
- avatar?: string | undefined;
157849
- nickname?: string | undefined;
158051
+ avatar?: string | null | undefined;
158052
+ nickname?: string | null | undefined;
157850
158053
  theme?: {
157851
158054
  backgroundColor?: string | undefined;
157852
158055
  accentColor?: string | undefined;
@@ -157856,7 +158059,7 @@ declare const ForgeProjectIteration: z.ZodObject<{
157856
158059
  secondaryContrast?: number | undefined;
157857
158060
  isEditorWhite?: boolean | undefined;
157858
158061
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
157859
- } | undefined;
158062
+ } | null | undefined;
157860
158063
  onboarding?: {
157861
158064
  companyName?: string | undefined;
157862
158065
  numberOfPeopleInOrg?: string | undefined;
@@ -157870,7 +158073,7 @@ declare const ForgeProjectIteration: z.ZodObject<{
157870
158073
  figmaUrl?: string | undefined;
157871
158074
  isPageDraftOnboardingFinished?: boolean | undefined;
157872
158075
  isApprovalsOnboardingFinished?: boolean | undefined;
157873
- } | undefined;
158076
+ } | null | undefined;
157874
158077
  portalTheme?: {
157875
158078
  backgroundColor?: string | undefined;
157876
158079
  accentColor?: string | undefined;
@@ -157880,7 +158083,7 @@ declare const ForgeProjectIteration: z.ZodObject<{
157880
158083
  secondaryContrast?: number | undefined;
157881
158084
  isEditorWhite?: boolean | undefined;
157882
158085
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
157883
- } | undefined;
158086
+ } | null | undefined;
157884
158087
  };
157885
158088
  createdAt: Date;
157886
158089
  isProtected: boolean;
@@ -157965,8 +158168,8 @@ declare const ForgeProjectIteration: z.ZodObject<{
157965
158168
  id: string;
157966
158169
  profile: {
157967
158170
  name: string;
157968
- avatar?: string | undefined;
157969
- nickname?: string | undefined;
158171
+ avatar?: string | null | undefined;
158172
+ nickname?: string | null | undefined;
157970
158173
  theme?: {
157971
158174
  backgroundColor?: string | undefined;
157972
158175
  accentColor?: string | undefined;
@@ -157976,7 +158179,7 @@ declare const ForgeProjectIteration: z.ZodObject<{
157976
158179
  secondaryContrast?: number | undefined;
157977
158180
  isEditorWhite?: boolean | undefined;
157978
158181
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
157979
- } | undefined;
158182
+ } | null | undefined;
157980
158183
  onboarding?: {
157981
158184
  companyName?: string | undefined;
157982
158185
  numberOfPeopleInOrg?: string | undefined;
@@ -157990,7 +158193,7 @@ declare const ForgeProjectIteration: z.ZodObject<{
157990
158193
  figmaUrl?: string | undefined;
157991
158194
  isPageDraftOnboardingFinished?: boolean | undefined;
157992
158195
  isApprovalsOnboardingFinished?: boolean | undefined;
157993
- } | undefined;
158196
+ } | null | undefined;
157994
158197
  portalTheme?: {
157995
158198
  backgroundColor?: string | undefined;
157996
158199
  accentColor?: string | undefined;
@@ -158000,7 +158203,7 @@ declare const ForgeProjectIteration: z.ZodObject<{
158000
158203
  secondaryContrast?: number | undefined;
158001
158204
  isEditorWhite?: boolean | undefined;
158002
158205
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
158003
- } | undefined;
158206
+ } | null | undefined;
158004
158207
  };
158005
158208
  createdAt: Date;
158006
158209
  isProtected: boolean;
@@ -158138,8 +158341,8 @@ declare const ForgeProjectIteration: z.ZodObject<{
158138
158341
  id: string;
158139
158342
  profile: {
158140
158343
  name: string;
158141
- avatar?: string | undefined;
158142
- nickname?: string | undefined;
158344
+ avatar?: string | null | undefined;
158345
+ nickname?: string | null | undefined;
158143
158346
  theme?: {
158144
158347
  backgroundColor?: string | undefined;
158145
158348
  accentColor?: string | undefined;
@@ -158149,7 +158352,7 @@ declare const ForgeProjectIteration: z.ZodObject<{
158149
158352
  secondaryContrast?: number | undefined;
158150
158353
  isEditorWhite?: boolean | undefined;
158151
158354
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
158152
- } | undefined;
158355
+ } | null | undefined;
158153
158356
  onboarding?: {
158154
158357
  companyName?: string | undefined;
158155
158358
  numberOfPeopleInOrg?: string | undefined;
@@ -158163,7 +158366,7 @@ declare const ForgeProjectIteration: z.ZodObject<{
158163
158366
  figmaUrl?: string | undefined;
158164
158367
  isPageDraftOnboardingFinished?: boolean | undefined;
158165
158368
  isApprovalsOnboardingFinished?: boolean | undefined;
158166
- } | undefined;
158369
+ } | null | undefined;
158167
158370
  portalTheme?: {
158168
158371
  backgroundColor?: string | undefined;
158169
158372
  accentColor?: string | undefined;
@@ -158173,7 +158376,7 @@ declare const ForgeProjectIteration: z.ZodObject<{
158173
158376
  secondaryContrast?: number | undefined;
158174
158377
  isEditorWhite?: boolean | undefined;
158175
158378
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
158176
- } | undefined;
158379
+ } | null | undefined;
158177
158380
  };
158178
158381
  createdAt: Date;
158179
158382
  isProtected: boolean;
@@ -158497,8 +158700,8 @@ declare const ForgeProjectIteration: z.ZodObject<{
158497
158700
  id: string;
158498
158701
  profile: {
158499
158702
  name: string;
158500
- avatar?: string | undefined;
158501
- nickname?: string | undefined;
158703
+ avatar?: string | null | undefined;
158704
+ nickname?: string | null | undefined;
158502
158705
  theme?: {
158503
158706
  backgroundColor?: string | undefined;
158504
158707
  accentColor?: string | undefined;
@@ -158508,7 +158711,7 @@ declare const ForgeProjectIteration: z.ZodObject<{
158508
158711
  secondaryContrast?: number | undefined;
158509
158712
  isEditorWhite?: boolean | undefined;
158510
158713
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
158511
- } | undefined;
158714
+ } | null | undefined;
158512
158715
  onboarding?: {
158513
158716
  companyName?: string | undefined;
158514
158717
  numberOfPeopleInOrg?: string | undefined;
@@ -158522,7 +158725,7 @@ declare const ForgeProjectIteration: z.ZodObject<{
158522
158725
  figmaUrl?: string | undefined;
158523
158726
  isPageDraftOnboardingFinished?: boolean | undefined;
158524
158727
  isApprovalsOnboardingFinished?: boolean | undefined;
158525
- } | undefined;
158728
+ } | null | undefined;
158526
158729
  portalTheme?: {
158527
158730
  backgroundColor?: string | undefined;
158528
158731
  accentColor?: string | undefined;
@@ -158532,7 +158735,7 @@ declare const ForgeProjectIteration: z.ZodObject<{
158532
158735
  secondaryContrast?: number | undefined;
158533
158736
  isEditorWhite?: boolean | undefined;
158534
158737
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
158535
- } | undefined;
158738
+ } | null | undefined;
158536
158739
  };
158537
158740
  createdAt: Date;
158538
158741
  isProtected: boolean;
@@ -189344,22 +189547,9 @@ declare const PortalTheme: z.ZodObject<{
189344
189547
  type PortalTheme = z.infer<typeof PortalTheme>;
189345
189548
  declare const UserProfile: z.ZodObject<{
189346
189549
  name: z.ZodString;
189347
- avatar: z.ZodOptional<z.ZodString>;
189348
- nickname: z.ZodOptional<z.ZodString>;
189349
- onboarding: z.ZodOptional<z.ZodObject<{
189350
- companyName: z.ZodOptional<z.ZodString>;
189351
- numberOfPeopleInOrg: z.ZodOptional<z.ZodString>;
189352
- numberOfPeopleInDesignTeam: z.ZodOptional<z.ZodString>;
189353
- department: z.ZodOptional<z.ZodEnum<["Design", "Engineering", "Product", "Brand", "Other"]>>;
189354
- jobTitle: z.ZodOptional<z.ZodString>;
189355
- phase: z.ZodOptional<z.ZodString>;
189356
- jobLevel: z.ZodOptional<z.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>>;
189357
- designSystemName: z.ZodOptional<z.ZodString>;
189358
- defaultDestination: z.ZodOptional<z.ZodString>;
189359
- figmaUrl: z.ZodOptional<z.ZodString>;
189360
- isPageDraftOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
189361
- isApprovalsOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
189362
- }, "strip", z.ZodTypeAny, {
189550
+ avatar: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
189551
+ nickname: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
189552
+ onboarding: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
189363
189553
  companyName?: string | undefined;
189364
189554
  numberOfPeopleInOrg?: string | undefined;
189365
189555
  numberOfPeopleInDesignTeam?: string | undefined;
@@ -189372,7 +189562,7 @@ declare const UserProfile: z.ZodObject<{
189372
189562
  figmaUrl?: string | undefined;
189373
189563
  isPageDraftOnboardingFinished?: boolean | undefined;
189374
189564
  isApprovalsOnboardingFinished?: boolean | undefined;
189375
- }, {
189565
+ }, z.ZodTypeDef, {
189376
189566
  companyName?: string | undefined;
189377
189567
  numberOfPeopleInOrg?: string | undefined;
189378
189568
  numberOfPeopleInDesignTeam?: string | undefined;
@@ -189385,18 +189575,34 @@ declare const UserProfile: z.ZodObject<{
189385
189575
  figmaUrl?: string | undefined;
189386
189576
  isPageDraftOnboardingFinished?: boolean | undefined;
189387
189577
  isApprovalsOnboardingFinished?: boolean | undefined;
189388
- }>>;
189389
- theme: z.ZodOptional<z.ZodObject<{
189390
- backgroundColor: z.ZodOptional<z.ZodString>;
189391
- accentColor: z.ZodOptional<z.ZodString>;
189392
- contrast: z.ZodOptional<z.ZodNumber>;
189393
- isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
189394
- secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
189395
- secondaryContrast: z.ZodOptional<z.ZodNumber>;
189396
- isEditorWhite: z.ZodOptional<z.ZodBoolean>;
189397
- } & {
189398
- preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
189399
- }, "strip", z.ZodTypeAny, {
189578
+ }>>>, {
189579
+ companyName?: string | undefined;
189580
+ numberOfPeopleInOrg?: string | undefined;
189581
+ numberOfPeopleInDesignTeam?: string | undefined;
189582
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
189583
+ jobTitle?: string | undefined;
189584
+ phase?: string | undefined;
189585
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
189586
+ designSystemName?: string | undefined;
189587
+ defaultDestination?: string | undefined;
189588
+ figmaUrl?: string | undefined;
189589
+ isPageDraftOnboardingFinished?: boolean | undefined;
189590
+ isApprovalsOnboardingFinished?: boolean | undefined;
189591
+ } | undefined, {
189592
+ companyName?: string | undefined;
189593
+ numberOfPeopleInOrg?: string | undefined;
189594
+ numberOfPeopleInDesignTeam?: string | undefined;
189595
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
189596
+ jobTitle?: string | undefined;
189597
+ phase?: string | undefined;
189598
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
189599
+ designSystemName?: string | undefined;
189600
+ defaultDestination?: string | undefined;
189601
+ figmaUrl?: string | undefined;
189602
+ isPageDraftOnboardingFinished?: boolean | undefined;
189603
+ isApprovalsOnboardingFinished?: boolean | undefined;
189604
+ } | null | undefined>;
189605
+ theme: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
189400
189606
  backgroundColor?: string | undefined;
189401
189607
  accentColor?: string | undefined;
189402
189608
  contrast?: number | undefined;
@@ -189405,7 +189611,7 @@ declare const UserProfile: z.ZodObject<{
189405
189611
  secondaryContrast?: number | undefined;
189406
189612
  isEditorWhite?: boolean | undefined;
189407
189613
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
189408
- }, {
189614
+ }, z.ZodTypeDef, {
189409
189615
  backgroundColor?: string | undefined;
189410
189616
  accentColor?: string | undefined;
189411
189617
  contrast?: number | undefined;
@@ -189414,18 +189620,26 @@ declare const UserProfile: z.ZodObject<{
189414
189620
  secondaryContrast?: number | undefined;
189415
189621
  isEditorWhite?: boolean | undefined;
189416
189622
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
189417
- }>>;
189418
- portalTheme: z.ZodOptional<z.ZodObject<{
189419
- backgroundColor: z.ZodOptional<z.ZodString>;
189420
- accentColor: z.ZodOptional<z.ZodString>;
189421
- contrast: z.ZodOptional<z.ZodNumber>;
189422
- isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
189423
- secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
189424
- secondaryContrast: z.ZodOptional<z.ZodNumber>;
189425
- isEditorWhite: z.ZodOptional<z.ZodBoolean>;
189426
- } & {
189427
- preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia", "DefaultPortal"]>>;
189428
- }, "strip", z.ZodTypeAny, {
189623
+ }>>>, {
189624
+ backgroundColor?: string | undefined;
189625
+ accentColor?: string | undefined;
189626
+ contrast?: number | undefined;
189627
+ isSecondaryEnabled?: boolean | undefined;
189628
+ secondaryBackgroundColor?: string | undefined;
189629
+ secondaryContrast?: number | undefined;
189630
+ isEditorWhite?: boolean | undefined;
189631
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
189632
+ } | undefined, {
189633
+ backgroundColor?: string | undefined;
189634
+ accentColor?: string | undefined;
189635
+ contrast?: number | undefined;
189636
+ isSecondaryEnabled?: boolean | undefined;
189637
+ secondaryBackgroundColor?: string | undefined;
189638
+ secondaryContrast?: number | undefined;
189639
+ isEditorWhite?: boolean | undefined;
189640
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
189641
+ } | null | undefined>;
189642
+ portalTheme: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
189429
189643
  backgroundColor?: string | undefined;
189430
189644
  accentColor?: string | undefined;
189431
189645
  contrast?: number | undefined;
@@ -189434,7 +189648,7 @@ declare const UserProfile: z.ZodObject<{
189434
189648
  secondaryContrast?: number | undefined;
189435
189649
  isEditorWhite?: boolean | undefined;
189436
189650
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
189437
- }, {
189651
+ }, z.ZodTypeDef, {
189438
189652
  backgroundColor?: string | undefined;
189439
189653
  accentColor?: string | undefined;
189440
189654
  contrast?: number | undefined;
@@ -189443,7 +189657,25 @@ declare const UserProfile: z.ZodObject<{
189443
189657
  secondaryContrast?: number | undefined;
189444
189658
  isEditorWhite?: boolean | undefined;
189445
189659
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
189446
- }>>;
189660
+ }>>>, {
189661
+ backgroundColor?: string | undefined;
189662
+ accentColor?: string | undefined;
189663
+ contrast?: number | undefined;
189664
+ isSecondaryEnabled?: boolean | undefined;
189665
+ secondaryBackgroundColor?: string | undefined;
189666
+ secondaryContrast?: number | undefined;
189667
+ isEditorWhite?: boolean | undefined;
189668
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
189669
+ } | undefined, {
189670
+ backgroundColor?: string | undefined;
189671
+ accentColor?: string | undefined;
189672
+ contrast?: number | undefined;
189673
+ isSecondaryEnabled?: boolean | undefined;
189674
+ secondaryBackgroundColor?: string | undefined;
189675
+ secondaryContrast?: number | undefined;
189676
+ isEditorWhite?: boolean | undefined;
189677
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
189678
+ } | null | undefined>;
189447
189679
  }, "strip", z.ZodTypeAny, {
189448
189680
  name: string;
189449
189681
  avatar?: string | undefined;
@@ -189484,8 +189716,8 @@ declare const UserProfile: z.ZodObject<{
189484
189716
  } | undefined;
189485
189717
  }, {
189486
189718
  name: string;
189487
- avatar?: string | undefined;
189488
- nickname?: string | undefined;
189719
+ avatar?: string | null | undefined;
189720
+ nickname?: string | null | undefined;
189489
189721
  theme?: {
189490
189722
  backgroundColor?: string | undefined;
189491
189723
  accentColor?: string | undefined;
@@ -189495,7 +189727,7 @@ declare const UserProfile: z.ZodObject<{
189495
189727
  secondaryContrast?: number | undefined;
189496
189728
  isEditorWhite?: boolean | undefined;
189497
189729
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
189498
- } | undefined;
189730
+ } | null | undefined;
189499
189731
  onboarding?: {
189500
189732
  companyName?: string | undefined;
189501
189733
  numberOfPeopleInOrg?: string | undefined;
@@ -189509,7 +189741,7 @@ declare const UserProfile: z.ZodObject<{
189509
189741
  figmaUrl?: string | undefined;
189510
189742
  isPageDraftOnboardingFinished?: boolean | undefined;
189511
189743
  isApprovalsOnboardingFinished?: boolean | undefined;
189512
- } | undefined;
189744
+ } | null | undefined;
189513
189745
  portalTheme?: {
189514
189746
  backgroundColor?: string | undefined;
189515
189747
  accentColor?: string | undefined;
@@ -189519,27 +189751,14 @@ declare const UserProfile: z.ZodObject<{
189519
189751
  secondaryContrast?: number | undefined;
189520
189752
  isEditorWhite?: boolean | undefined;
189521
189753
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
189522
- } | undefined;
189754
+ } | null | undefined;
189523
189755
  }>;
189524
189756
  type UserProfile = z.infer<typeof UserProfile>;
189525
189757
  declare const UserProfileUpdate: z.ZodObject<Omit<{
189526
189758
  name: z.ZodOptional<z.ZodString>;
189527
- avatar: z.ZodOptional<z.ZodOptional<z.ZodString>>;
189528
- nickname: z.ZodOptional<z.ZodOptional<z.ZodString>>;
189529
- onboarding: z.ZodOptional<z.ZodOptional<z.ZodObject<{
189530
- companyName: z.ZodOptional<z.ZodString>;
189531
- numberOfPeopleInOrg: z.ZodOptional<z.ZodString>;
189532
- numberOfPeopleInDesignTeam: z.ZodOptional<z.ZodString>;
189533
- department: z.ZodOptional<z.ZodEnum<["Design", "Engineering", "Product", "Brand", "Other"]>>;
189534
- jobTitle: z.ZodOptional<z.ZodString>;
189535
- phase: z.ZodOptional<z.ZodString>;
189536
- jobLevel: z.ZodOptional<z.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>>;
189537
- designSystemName: z.ZodOptional<z.ZodString>;
189538
- defaultDestination: z.ZodOptional<z.ZodString>;
189539
- figmaUrl: z.ZodOptional<z.ZodString>;
189540
- isPageDraftOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
189541
- isApprovalsOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
189542
- }, "strip", z.ZodTypeAny, {
189759
+ avatar: z.ZodOptional<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>>;
189760
+ nickname: z.ZodOptional<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>>;
189761
+ onboarding: z.ZodOptional<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
189543
189762
  companyName?: string | undefined;
189544
189763
  numberOfPeopleInOrg?: string | undefined;
189545
189764
  numberOfPeopleInDesignTeam?: string | undefined;
@@ -189552,7 +189771,7 @@ declare const UserProfileUpdate: z.ZodObject<Omit<{
189552
189771
  figmaUrl?: string | undefined;
189553
189772
  isPageDraftOnboardingFinished?: boolean | undefined;
189554
189773
  isApprovalsOnboardingFinished?: boolean | undefined;
189555
- }, {
189774
+ }, z.ZodTypeDef, {
189556
189775
  companyName?: string | undefined;
189557
189776
  numberOfPeopleInOrg?: string | undefined;
189558
189777
  numberOfPeopleInDesignTeam?: string | undefined;
@@ -189565,18 +189784,34 @@ declare const UserProfileUpdate: z.ZodObject<Omit<{
189565
189784
  figmaUrl?: string | undefined;
189566
189785
  isPageDraftOnboardingFinished?: boolean | undefined;
189567
189786
  isApprovalsOnboardingFinished?: boolean | undefined;
189568
- }>>>;
189569
- theme: z.ZodOptional<z.ZodOptional<z.ZodObject<{
189570
- backgroundColor: z.ZodOptional<z.ZodString>;
189571
- accentColor: z.ZodOptional<z.ZodString>;
189572
- contrast: z.ZodOptional<z.ZodNumber>;
189573
- isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
189574
- secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
189575
- secondaryContrast: z.ZodOptional<z.ZodNumber>;
189576
- isEditorWhite: z.ZodOptional<z.ZodBoolean>;
189577
- } & {
189578
- preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
189579
- }, "strip", z.ZodTypeAny, {
189787
+ }>>>, {
189788
+ companyName?: string | undefined;
189789
+ numberOfPeopleInOrg?: string | undefined;
189790
+ numberOfPeopleInDesignTeam?: string | undefined;
189791
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
189792
+ jobTitle?: string | undefined;
189793
+ phase?: string | undefined;
189794
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
189795
+ designSystemName?: string | undefined;
189796
+ defaultDestination?: string | undefined;
189797
+ figmaUrl?: string | undefined;
189798
+ isPageDraftOnboardingFinished?: boolean | undefined;
189799
+ isApprovalsOnboardingFinished?: boolean | undefined;
189800
+ } | undefined, {
189801
+ companyName?: string | undefined;
189802
+ numberOfPeopleInOrg?: string | undefined;
189803
+ numberOfPeopleInDesignTeam?: string | undefined;
189804
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
189805
+ jobTitle?: string | undefined;
189806
+ phase?: string | undefined;
189807
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
189808
+ designSystemName?: string | undefined;
189809
+ defaultDestination?: string | undefined;
189810
+ figmaUrl?: string | undefined;
189811
+ isPageDraftOnboardingFinished?: boolean | undefined;
189812
+ isApprovalsOnboardingFinished?: boolean | undefined;
189813
+ } | null | undefined>>;
189814
+ theme: z.ZodOptional<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
189580
189815
  backgroundColor?: string | undefined;
189581
189816
  accentColor?: string | undefined;
189582
189817
  contrast?: number | undefined;
@@ -189585,7 +189820,7 @@ declare const UserProfileUpdate: z.ZodObject<Omit<{
189585
189820
  secondaryContrast?: number | undefined;
189586
189821
  isEditorWhite?: boolean | undefined;
189587
189822
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
189588
- }, {
189823
+ }, z.ZodTypeDef, {
189589
189824
  backgroundColor?: string | undefined;
189590
189825
  accentColor?: string | undefined;
189591
189826
  contrast?: number | undefined;
@@ -189594,18 +189829,26 @@ declare const UserProfileUpdate: z.ZodObject<Omit<{
189594
189829
  secondaryContrast?: number | undefined;
189595
189830
  isEditorWhite?: boolean | undefined;
189596
189831
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
189597
- }>>>;
189598
- portalTheme: z.ZodOptional<z.ZodOptional<z.ZodObject<{
189599
- backgroundColor: z.ZodOptional<z.ZodString>;
189600
- accentColor: z.ZodOptional<z.ZodString>;
189601
- contrast: z.ZodOptional<z.ZodNumber>;
189602
- isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
189603
- secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
189604
- secondaryContrast: z.ZodOptional<z.ZodNumber>;
189605
- isEditorWhite: z.ZodOptional<z.ZodBoolean>;
189606
- } & {
189607
- preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia", "DefaultPortal"]>>;
189608
- }, "strip", z.ZodTypeAny, {
189832
+ }>>>, {
189833
+ backgroundColor?: string | undefined;
189834
+ accentColor?: string | undefined;
189835
+ contrast?: number | undefined;
189836
+ isSecondaryEnabled?: boolean | undefined;
189837
+ secondaryBackgroundColor?: string | undefined;
189838
+ secondaryContrast?: number | undefined;
189839
+ isEditorWhite?: boolean | undefined;
189840
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
189841
+ } | undefined, {
189842
+ backgroundColor?: string | undefined;
189843
+ accentColor?: string | undefined;
189844
+ contrast?: number | undefined;
189845
+ isSecondaryEnabled?: boolean | undefined;
189846
+ secondaryBackgroundColor?: string | undefined;
189847
+ secondaryContrast?: number | undefined;
189848
+ isEditorWhite?: boolean | undefined;
189849
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
189850
+ } | null | undefined>>;
189851
+ portalTheme: z.ZodOptional<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
189609
189852
  backgroundColor?: string | undefined;
189610
189853
  accentColor?: string | undefined;
189611
189854
  contrast?: number | undefined;
@@ -189614,7 +189857,7 @@ declare const UserProfileUpdate: z.ZodObject<Omit<{
189614
189857
  secondaryContrast?: number | undefined;
189615
189858
  isEditorWhite?: boolean | undefined;
189616
189859
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
189617
- }, {
189860
+ }, z.ZodTypeDef, {
189618
189861
  backgroundColor?: string | undefined;
189619
189862
  accentColor?: string | undefined;
189620
189863
  contrast?: number | undefined;
@@ -189623,7 +189866,25 @@ declare const UserProfileUpdate: z.ZodObject<Omit<{
189623
189866
  secondaryContrast?: number | undefined;
189624
189867
  isEditorWhite?: boolean | undefined;
189625
189868
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
189626
- }>>>;
189869
+ }>>>, {
189870
+ backgroundColor?: string | undefined;
189871
+ accentColor?: string | undefined;
189872
+ contrast?: number | undefined;
189873
+ isSecondaryEnabled?: boolean | undefined;
189874
+ secondaryBackgroundColor?: string | undefined;
189875
+ secondaryContrast?: number | undefined;
189876
+ isEditorWhite?: boolean | undefined;
189877
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
189878
+ } | undefined, {
189879
+ backgroundColor?: string | undefined;
189880
+ accentColor?: string | undefined;
189881
+ contrast?: number | undefined;
189882
+ isSecondaryEnabled?: boolean | undefined;
189883
+ secondaryBackgroundColor?: string | undefined;
189884
+ secondaryContrast?: number | undefined;
189885
+ isEditorWhite?: boolean | undefined;
189886
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
189887
+ } | null | undefined>>;
189627
189888
  }, "avatar">, "strip", z.ZodTypeAny, {
189628
189889
  name?: string | undefined;
189629
189890
  nickname?: string | undefined;
@@ -189663,7 +189924,7 @@ declare const UserProfileUpdate: z.ZodObject<Omit<{
189663
189924
  } | undefined;
189664
189925
  }, {
189665
189926
  name?: string | undefined;
189666
- nickname?: string | undefined;
189927
+ nickname?: string | null | undefined;
189667
189928
  theme?: {
189668
189929
  backgroundColor?: string | undefined;
189669
189930
  accentColor?: string | undefined;
@@ -189673,7 +189934,7 @@ declare const UserProfileUpdate: z.ZodObject<Omit<{
189673
189934
  secondaryContrast?: number | undefined;
189674
189935
  isEditorWhite?: boolean | undefined;
189675
189936
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
189676
- } | undefined;
189937
+ } | null | undefined;
189677
189938
  onboarding?: {
189678
189939
  companyName?: string | undefined;
189679
189940
  numberOfPeopleInOrg?: string | undefined;
@@ -189687,7 +189948,7 @@ declare const UserProfileUpdate: z.ZodObject<Omit<{
189687
189948
  figmaUrl?: string | undefined;
189688
189949
  isPageDraftOnboardingFinished?: boolean | undefined;
189689
189950
  isApprovalsOnboardingFinished?: boolean | undefined;
189690
- } | undefined;
189951
+ } | null | undefined;
189691
189952
  portalTheme?: {
189692
189953
  backgroundColor?: string | undefined;
189693
189954
  accentColor?: string | undefined;
@@ -189697,7 +189958,7 @@ declare const UserProfileUpdate: z.ZodObject<Omit<{
189697
189958
  secondaryContrast?: number | undefined;
189698
189959
  isEditorWhite?: boolean | undefined;
189699
189960
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
189700
- } | undefined;
189961
+ } | null | undefined;
189701
189962
  }>;
189702
189963
  type UserProfileUpdate = z.infer<typeof UserProfileUpdate>;
189703
189964
 
@@ -189721,22 +189982,9 @@ declare const User: z.ZodObject<{
189721
189982
  createdAt: z.ZodDate;
189722
189983
  profile: z.ZodObject<{
189723
189984
  name: z.ZodString;
189724
- avatar: z.ZodOptional<z.ZodString>;
189725
- nickname: z.ZodOptional<z.ZodString>;
189726
- onboarding: z.ZodOptional<z.ZodObject<{
189727
- companyName: z.ZodOptional<z.ZodString>;
189728
- numberOfPeopleInOrg: z.ZodOptional<z.ZodString>;
189729
- numberOfPeopleInDesignTeam: z.ZodOptional<z.ZodString>;
189730
- department: z.ZodOptional<z.ZodEnum<["Design", "Engineering", "Product", "Brand", "Other"]>>;
189731
- jobTitle: z.ZodOptional<z.ZodString>;
189732
- phase: z.ZodOptional<z.ZodString>;
189733
- jobLevel: z.ZodOptional<z.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>>;
189734
- designSystemName: z.ZodOptional<z.ZodString>;
189735
- defaultDestination: z.ZodOptional<z.ZodString>;
189736
- figmaUrl: z.ZodOptional<z.ZodString>;
189737
- isPageDraftOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
189738
- isApprovalsOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
189739
- }, "strip", z.ZodTypeAny, {
189985
+ avatar: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
189986
+ nickname: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
189987
+ onboarding: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
189740
189988
  companyName?: string | undefined;
189741
189989
  numberOfPeopleInOrg?: string | undefined;
189742
189990
  numberOfPeopleInDesignTeam?: string | undefined;
@@ -189749,7 +189997,7 @@ declare const User: z.ZodObject<{
189749
189997
  figmaUrl?: string | undefined;
189750
189998
  isPageDraftOnboardingFinished?: boolean | undefined;
189751
189999
  isApprovalsOnboardingFinished?: boolean | undefined;
189752
- }, {
190000
+ }, z.ZodTypeDef, {
189753
190001
  companyName?: string | undefined;
189754
190002
  numberOfPeopleInOrg?: string | undefined;
189755
190003
  numberOfPeopleInDesignTeam?: string | undefined;
@@ -189762,18 +190010,34 @@ declare const User: z.ZodObject<{
189762
190010
  figmaUrl?: string | undefined;
189763
190011
  isPageDraftOnboardingFinished?: boolean | undefined;
189764
190012
  isApprovalsOnboardingFinished?: boolean | undefined;
189765
- }>>;
189766
- theme: z.ZodOptional<z.ZodObject<{
189767
- backgroundColor: z.ZodOptional<z.ZodString>;
189768
- accentColor: z.ZodOptional<z.ZodString>;
189769
- contrast: z.ZodOptional<z.ZodNumber>;
189770
- isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
189771
- secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
189772
- secondaryContrast: z.ZodOptional<z.ZodNumber>;
189773
- isEditorWhite: z.ZodOptional<z.ZodBoolean>;
189774
- } & {
189775
- preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
189776
- }, "strip", z.ZodTypeAny, {
190013
+ }>>>, {
190014
+ companyName?: string | undefined;
190015
+ numberOfPeopleInOrg?: string | undefined;
190016
+ numberOfPeopleInDesignTeam?: string | undefined;
190017
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
190018
+ jobTitle?: string | undefined;
190019
+ phase?: string | undefined;
190020
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
190021
+ designSystemName?: string | undefined;
190022
+ defaultDestination?: string | undefined;
190023
+ figmaUrl?: string | undefined;
190024
+ isPageDraftOnboardingFinished?: boolean | undefined;
190025
+ isApprovalsOnboardingFinished?: boolean | undefined;
190026
+ } | undefined, {
190027
+ companyName?: string | undefined;
190028
+ numberOfPeopleInOrg?: string | undefined;
190029
+ numberOfPeopleInDesignTeam?: string | undefined;
190030
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
190031
+ jobTitle?: string | undefined;
190032
+ phase?: string | undefined;
190033
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
190034
+ designSystemName?: string | undefined;
190035
+ defaultDestination?: string | undefined;
190036
+ figmaUrl?: string | undefined;
190037
+ isPageDraftOnboardingFinished?: boolean | undefined;
190038
+ isApprovalsOnboardingFinished?: boolean | undefined;
190039
+ } | null | undefined>;
190040
+ theme: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
189777
190041
  backgroundColor?: string | undefined;
189778
190042
  accentColor?: string | undefined;
189779
190043
  contrast?: number | undefined;
@@ -189782,7 +190046,7 @@ declare const User: z.ZodObject<{
189782
190046
  secondaryContrast?: number | undefined;
189783
190047
  isEditorWhite?: boolean | undefined;
189784
190048
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
189785
- }, {
190049
+ }, z.ZodTypeDef, {
189786
190050
  backgroundColor?: string | undefined;
189787
190051
  accentColor?: string | undefined;
189788
190052
  contrast?: number | undefined;
@@ -189791,18 +190055,26 @@ declare const User: z.ZodObject<{
189791
190055
  secondaryContrast?: number | undefined;
189792
190056
  isEditorWhite?: boolean | undefined;
189793
190057
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
189794
- }>>;
189795
- portalTheme: z.ZodOptional<z.ZodObject<{
189796
- backgroundColor: z.ZodOptional<z.ZodString>;
189797
- accentColor: z.ZodOptional<z.ZodString>;
189798
- contrast: z.ZodOptional<z.ZodNumber>;
189799
- isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
189800
- secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
189801
- secondaryContrast: z.ZodOptional<z.ZodNumber>;
189802
- isEditorWhite: z.ZodOptional<z.ZodBoolean>;
189803
- } & {
189804
- preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia", "DefaultPortal"]>>;
189805
- }, "strip", z.ZodTypeAny, {
190058
+ }>>>, {
190059
+ backgroundColor?: string | undefined;
190060
+ accentColor?: string | undefined;
190061
+ contrast?: number | undefined;
190062
+ isSecondaryEnabled?: boolean | undefined;
190063
+ secondaryBackgroundColor?: string | undefined;
190064
+ secondaryContrast?: number | undefined;
190065
+ isEditorWhite?: boolean | undefined;
190066
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
190067
+ } | undefined, {
190068
+ backgroundColor?: string | undefined;
190069
+ accentColor?: string | undefined;
190070
+ contrast?: number | undefined;
190071
+ isSecondaryEnabled?: boolean | undefined;
190072
+ secondaryBackgroundColor?: string | undefined;
190073
+ secondaryContrast?: number | undefined;
190074
+ isEditorWhite?: boolean | undefined;
190075
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
190076
+ } | null | undefined>;
190077
+ portalTheme: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
189806
190078
  backgroundColor?: string | undefined;
189807
190079
  accentColor?: string | undefined;
189808
190080
  contrast?: number | undefined;
@@ -189811,7 +190083,7 @@ declare const User: z.ZodObject<{
189811
190083
  secondaryContrast?: number | undefined;
189812
190084
  isEditorWhite?: boolean | undefined;
189813
190085
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
189814
- }, {
190086
+ }, z.ZodTypeDef, {
189815
190087
  backgroundColor?: string | undefined;
189816
190088
  accentColor?: string | undefined;
189817
190089
  contrast?: number | undefined;
@@ -189820,7 +190092,25 @@ declare const User: z.ZodObject<{
189820
190092
  secondaryContrast?: number | undefined;
189821
190093
  isEditorWhite?: boolean | undefined;
189822
190094
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
189823
- }>>;
190095
+ }>>>, {
190096
+ backgroundColor?: string | undefined;
190097
+ accentColor?: string | undefined;
190098
+ contrast?: number | undefined;
190099
+ isSecondaryEnabled?: boolean | undefined;
190100
+ secondaryBackgroundColor?: string | undefined;
190101
+ secondaryContrast?: number | undefined;
190102
+ isEditorWhite?: boolean | undefined;
190103
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
190104
+ } | undefined, {
190105
+ backgroundColor?: string | undefined;
190106
+ accentColor?: string | undefined;
190107
+ contrast?: number | undefined;
190108
+ isSecondaryEnabled?: boolean | undefined;
190109
+ secondaryBackgroundColor?: string | undefined;
190110
+ secondaryContrast?: number | undefined;
190111
+ isEditorWhite?: boolean | undefined;
190112
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
190113
+ } | null | undefined>;
189824
190114
  }, "strip", z.ZodTypeAny, {
189825
190115
  name: string;
189826
190116
  avatar?: string | undefined;
@@ -189861,8 +190151,8 @@ declare const User: z.ZodObject<{
189861
190151
  } | undefined;
189862
190152
  }, {
189863
190153
  name: string;
189864
- avatar?: string | undefined;
189865
- nickname?: string | undefined;
190154
+ avatar?: string | null | undefined;
190155
+ nickname?: string | null | undefined;
189866
190156
  theme?: {
189867
190157
  backgroundColor?: string | undefined;
189868
190158
  accentColor?: string | undefined;
@@ -189872,7 +190162,7 @@ declare const User: z.ZodObject<{
189872
190162
  secondaryContrast?: number | undefined;
189873
190163
  isEditorWhite?: boolean | undefined;
189874
190164
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
189875
- } | undefined;
190165
+ } | null | undefined;
189876
190166
  onboarding?: {
189877
190167
  companyName?: string | undefined;
189878
190168
  numberOfPeopleInOrg?: string | undefined;
@@ -189886,7 +190176,7 @@ declare const User: z.ZodObject<{
189886
190176
  figmaUrl?: string | undefined;
189887
190177
  isPageDraftOnboardingFinished?: boolean | undefined;
189888
190178
  isApprovalsOnboardingFinished?: boolean | undefined;
189889
- } | undefined;
190179
+ } | null | undefined;
189890
190180
  portalTheme?: {
189891
190181
  backgroundColor?: string | undefined;
189892
190182
  accentColor?: string | undefined;
@@ -189896,7 +190186,7 @@ declare const User: z.ZodObject<{
189896
190186
  secondaryContrast?: number | undefined;
189897
190187
  isEditorWhite?: boolean | undefined;
189898
190188
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
189899
- } | undefined;
190189
+ } | null | undefined;
189900
190190
  }>;
189901
190191
  loggedOutAt: z.ZodOptional<z.ZodDate>;
189902
190192
  isProtected: z.ZodBoolean;
@@ -189952,8 +190242,8 @@ declare const User: z.ZodObject<{
189952
190242
  id: string;
189953
190243
  profile: {
189954
190244
  name: string;
189955
- avatar?: string | undefined;
189956
- nickname?: string | undefined;
190245
+ avatar?: string | null | undefined;
190246
+ nickname?: string | null | undefined;
189957
190247
  theme?: {
189958
190248
  backgroundColor?: string | undefined;
189959
190249
  accentColor?: string | undefined;
@@ -189963,7 +190253,7 @@ declare const User: z.ZodObject<{
189963
190253
  secondaryContrast?: number | undefined;
189964
190254
  isEditorWhite?: boolean | undefined;
189965
190255
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
189966
- } | undefined;
190256
+ } | null | undefined;
189967
190257
  onboarding?: {
189968
190258
  companyName?: string | undefined;
189969
190259
  numberOfPeopleInOrg?: string | undefined;
@@ -189977,7 +190267,7 @@ declare const User: z.ZodObject<{
189977
190267
  figmaUrl?: string | undefined;
189978
190268
  isPageDraftOnboardingFinished?: boolean | undefined;
189979
190269
  isApprovalsOnboardingFinished?: boolean | undefined;
189980
- } | undefined;
190270
+ } | null | undefined;
189981
190271
  portalTheme?: {
189982
190272
  backgroundColor?: string | undefined;
189983
190273
  accentColor?: string | undefined;
@@ -189987,7 +190277,7 @@ declare const User: z.ZodObject<{
189987
190277
  secondaryContrast?: number | undefined;
189988
190278
  isEditorWhite?: boolean | undefined;
189989
190279
  preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
189990
- } | undefined;
190280
+ } | null | undefined;
189991
190281
  };
189992
190282
  createdAt: Date;
189993
190283
  isProtected: boolean;