@supernova-studio/model 1.10.6 → 1.10.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +1116 -194
- package/dist/index.d.ts +1116 -194
- package/dist/index.js +35 -21
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +34 -20
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -12359,8 +12359,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
12359
12359
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
12360
12360
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
12361
12361
|
}>>;
|
|
12362
|
-
theme: z.ZodOptional<z.ZodObject<{
|
|
12363
|
-
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
|
|
12362
|
+
theme: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
12364
12363
|
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
12365
12364
|
accentColor: z.ZodOptional<z.ZodString>;
|
|
12366
12365
|
contrast: z.ZodOptional<z.ZodNumber>;
|
|
@@ -12368,24 +12367,55 @@ declare const UserDump: z.ZodObject<{
|
|
|
12368
12367
|
secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
12369
12368
|
secondaryContrast: z.ZodOptional<z.ZodNumber>;
|
|
12370
12369
|
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
12371
|
-
},
|
|
12370
|
+
}, {
|
|
12371
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
|
|
12372
|
+
}>, "strip", z.ZodTypeAny, {
|
|
12372
12373
|
backgroundColor?: string | undefined;
|
|
12373
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
12374
12374
|
accentColor?: string | undefined;
|
|
12375
12375
|
contrast?: number | undefined;
|
|
12376
12376
|
isSecondaryEnabled?: boolean | undefined;
|
|
12377
12377
|
secondaryBackgroundColor?: string | undefined;
|
|
12378
12378
|
secondaryContrast?: number | undefined;
|
|
12379
12379
|
isEditorWhite?: boolean | undefined;
|
|
12380
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
12380
12381
|
}, {
|
|
12381
12382
|
backgroundColor?: string | undefined;
|
|
12383
|
+
accentColor?: string | undefined;
|
|
12384
|
+
contrast?: number | undefined;
|
|
12385
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
12386
|
+
secondaryBackgroundColor?: string | undefined;
|
|
12387
|
+
secondaryContrast?: number | undefined;
|
|
12388
|
+
isEditorWhite?: boolean | undefined;
|
|
12382
12389
|
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
12390
|
+
}>>;
|
|
12391
|
+
portalTheme: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
12392
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
12393
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
|
12394
|
+
contrast: z.ZodOptional<z.ZodNumber>;
|
|
12395
|
+
isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
12396
|
+
secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
12397
|
+
secondaryContrast: z.ZodOptional<z.ZodNumber>;
|
|
12398
|
+
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
12399
|
+
}, {
|
|
12400
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia", "DefaultPortal"]>>;
|
|
12401
|
+
}>, "strip", z.ZodTypeAny, {
|
|
12402
|
+
backgroundColor?: string | undefined;
|
|
12383
12403
|
accentColor?: string | undefined;
|
|
12384
12404
|
contrast?: number | undefined;
|
|
12385
12405
|
isSecondaryEnabled?: boolean | undefined;
|
|
12386
12406
|
secondaryBackgroundColor?: string | undefined;
|
|
12387
12407
|
secondaryContrast?: number | undefined;
|
|
12388
12408
|
isEditorWhite?: boolean | undefined;
|
|
12409
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
12410
|
+
}, {
|
|
12411
|
+
backgroundColor?: string | undefined;
|
|
12412
|
+
accentColor?: string | undefined;
|
|
12413
|
+
contrast?: number | undefined;
|
|
12414
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
12415
|
+
secondaryBackgroundColor?: string | undefined;
|
|
12416
|
+
secondaryContrast?: number | undefined;
|
|
12417
|
+
isEditorWhite?: boolean | undefined;
|
|
12418
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
12389
12419
|
}>>;
|
|
12390
12420
|
}, "strip", z.ZodTypeAny, {
|
|
12391
12421
|
name: string;
|
|
@@ -12393,13 +12423,13 @@ declare const UserDump: z.ZodObject<{
|
|
|
12393
12423
|
nickname?: string | undefined;
|
|
12394
12424
|
theme?: {
|
|
12395
12425
|
backgroundColor?: string | undefined;
|
|
12396
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
12397
12426
|
accentColor?: string | undefined;
|
|
12398
12427
|
contrast?: number | undefined;
|
|
12399
12428
|
isSecondaryEnabled?: boolean | undefined;
|
|
12400
12429
|
secondaryBackgroundColor?: string | undefined;
|
|
12401
12430
|
secondaryContrast?: number | undefined;
|
|
12402
12431
|
isEditorWhite?: boolean | undefined;
|
|
12432
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
12403
12433
|
} | undefined;
|
|
12404
12434
|
onboarding?: {
|
|
12405
12435
|
companyName?: string | undefined;
|
|
@@ -12415,19 +12445,29 @@ declare const UserDump: z.ZodObject<{
|
|
|
12415
12445
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
12416
12446
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
12417
12447
|
} | undefined;
|
|
12448
|
+
portalTheme?: {
|
|
12449
|
+
backgroundColor?: string | undefined;
|
|
12450
|
+
accentColor?: string | undefined;
|
|
12451
|
+
contrast?: number | undefined;
|
|
12452
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
12453
|
+
secondaryBackgroundColor?: string | undefined;
|
|
12454
|
+
secondaryContrast?: number | undefined;
|
|
12455
|
+
isEditorWhite?: boolean | undefined;
|
|
12456
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
12457
|
+
} | undefined;
|
|
12418
12458
|
}, {
|
|
12419
12459
|
name: string;
|
|
12420
12460
|
avatar?: string | undefined;
|
|
12421
12461
|
nickname?: string | undefined;
|
|
12422
12462
|
theme?: {
|
|
12423
12463
|
backgroundColor?: string | undefined;
|
|
12424
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
12425
12464
|
accentColor?: string | undefined;
|
|
12426
12465
|
contrast?: number | undefined;
|
|
12427
12466
|
isSecondaryEnabled?: boolean | undefined;
|
|
12428
12467
|
secondaryBackgroundColor?: string | undefined;
|
|
12429
12468
|
secondaryContrast?: number | undefined;
|
|
12430
12469
|
isEditorWhite?: boolean | undefined;
|
|
12470
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
12431
12471
|
} | undefined;
|
|
12432
12472
|
onboarding?: {
|
|
12433
12473
|
companyName?: string | undefined;
|
|
@@ -12443,6 +12483,16 @@ declare const UserDump: z.ZodObject<{
|
|
|
12443
12483
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
12444
12484
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
12445
12485
|
} | undefined;
|
|
12486
|
+
portalTheme?: {
|
|
12487
|
+
backgroundColor?: string | undefined;
|
|
12488
|
+
accentColor?: string | undefined;
|
|
12489
|
+
contrast?: number | undefined;
|
|
12490
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
12491
|
+
secondaryBackgroundColor?: string | undefined;
|
|
12492
|
+
secondaryContrast?: number | undefined;
|
|
12493
|
+
isEditorWhite?: boolean | undefined;
|
|
12494
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
12495
|
+
} | undefined;
|
|
12446
12496
|
}>;
|
|
12447
12497
|
loggedOutAt: z.ZodOptional<z.ZodDate>;
|
|
12448
12498
|
isProtected: z.ZodBoolean;
|
|
@@ -12456,13 +12506,13 @@ declare const UserDump: z.ZodObject<{
|
|
|
12456
12506
|
nickname?: string | undefined;
|
|
12457
12507
|
theme?: {
|
|
12458
12508
|
backgroundColor?: string | undefined;
|
|
12459
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
12460
12509
|
accentColor?: string | undefined;
|
|
12461
12510
|
contrast?: number | undefined;
|
|
12462
12511
|
isSecondaryEnabled?: boolean | undefined;
|
|
12463
12512
|
secondaryBackgroundColor?: string | undefined;
|
|
12464
12513
|
secondaryContrast?: number | undefined;
|
|
12465
12514
|
isEditorWhite?: boolean | undefined;
|
|
12515
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
12466
12516
|
} | undefined;
|
|
12467
12517
|
onboarding?: {
|
|
12468
12518
|
companyName?: string | undefined;
|
|
@@ -12478,6 +12528,16 @@ declare const UserDump: z.ZodObject<{
|
|
|
12478
12528
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
12479
12529
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
12480
12530
|
} | undefined;
|
|
12531
|
+
portalTheme?: {
|
|
12532
|
+
backgroundColor?: string | undefined;
|
|
12533
|
+
accentColor?: string | undefined;
|
|
12534
|
+
contrast?: number | undefined;
|
|
12535
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
12536
|
+
secondaryBackgroundColor?: string | undefined;
|
|
12537
|
+
secondaryContrast?: number | undefined;
|
|
12538
|
+
isEditorWhite?: boolean | undefined;
|
|
12539
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
12540
|
+
} | undefined;
|
|
12481
12541
|
};
|
|
12482
12542
|
createdAt: Date;
|
|
12483
12543
|
isProtected: boolean;
|
|
@@ -12492,13 +12552,13 @@ declare const UserDump: z.ZodObject<{
|
|
|
12492
12552
|
nickname?: string | undefined;
|
|
12493
12553
|
theme?: {
|
|
12494
12554
|
backgroundColor?: string | undefined;
|
|
12495
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
12496
12555
|
accentColor?: string | undefined;
|
|
12497
12556
|
contrast?: number | undefined;
|
|
12498
12557
|
isSecondaryEnabled?: boolean | undefined;
|
|
12499
12558
|
secondaryBackgroundColor?: string | undefined;
|
|
12500
12559
|
secondaryContrast?: number | undefined;
|
|
12501
12560
|
isEditorWhite?: boolean | undefined;
|
|
12561
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
12502
12562
|
} | undefined;
|
|
12503
12563
|
onboarding?: {
|
|
12504
12564
|
companyName?: string | undefined;
|
|
@@ -12514,6 +12574,16 @@ declare const UserDump: z.ZodObject<{
|
|
|
12514
12574
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
12515
12575
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
12516
12576
|
} | undefined;
|
|
12577
|
+
portalTheme?: {
|
|
12578
|
+
backgroundColor?: string | undefined;
|
|
12579
|
+
accentColor?: string | undefined;
|
|
12580
|
+
contrast?: number | undefined;
|
|
12581
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
12582
|
+
secondaryBackgroundColor?: string | undefined;
|
|
12583
|
+
secondaryContrast?: number | undefined;
|
|
12584
|
+
isEditorWhite?: boolean | undefined;
|
|
12585
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
12586
|
+
} | undefined;
|
|
12517
12587
|
};
|
|
12518
12588
|
createdAt: Date;
|
|
12519
12589
|
isProtected: boolean;
|
|
@@ -24086,13 +24156,13 @@ declare const UserDump: z.ZodObject<{
|
|
|
24086
24156
|
nickname?: string | undefined;
|
|
24087
24157
|
theme?: {
|
|
24088
24158
|
backgroundColor?: string | undefined;
|
|
24089
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
24090
24159
|
accentColor?: string | undefined;
|
|
24091
24160
|
contrast?: number | undefined;
|
|
24092
24161
|
isSecondaryEnabled?: boolean | undefined;
|
|
24093
24162
|
secondaryBackgroundColor?: string | undefined;
|
|
24094
24163
|
secondaryContrast?: number | undefined;
|
|
24095
24164
|
isEditorWhite?: boolean | undefined;
|
|
24165
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
24096
24166
|
} | undefined;
|
|
24097
24167
|
onboarding?: {
|
|
24098
24168
|
companyName?: string | undefined;
|
|
@@ -24108,6 +24178,16 @@ declare const UserDump: z.ZodObject<{
|
|
|
24108
24178
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
24109
24179
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
24110
24180
|
} | undefined;
|
|
24181
|
+
portalTheme?: {
|
|
24182
|
+
backgroundColor?: string | undefined;
|
|
24183
|
+
accentColor?: string | undefined;
|
|
24184
|
+
contrast?: number | undefined;
|
|
24185
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
24186
|
+
secondaryBackgroundColor?: string | undefined;
|
|
24187
|
+
secondaryContrast?: number | undefined;
|
|
24188
|
+
isEditorWhite?: boolean | undefined;
|
|
24189
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
24190
|
+
} | undefined;
|
|
24111
24191
|
};
|
|
24112
24192
|
createdAt: Date;
|
|
24113
24193
|
isProtected: boolean;
|
|
@@ -25139,13 +25219,13 @@ declare const UserDump: z.ZodObject<{
|
|
|
25139
25219
|
nickname?: string | undefined;
|
|
25140
25220
|
theme?: {
|
|
25141
25221
|
backgroundColor?: string | undefined;
|
|
25142
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
25143
25222
|
accentColor?: string | undefined;
|
|
25144
25223
|
contrast?: number | undefined;
|
|
25145
25224
|
isSecondaryEnabled?: boolean | undefined;
|
|
25146
25225
|
secondaryBackgroundColor?: string | undefined;
|
|
25147
25226
|
secondaryContrast?: number | undefined;
|
|
25148
25227
|
isEditorWhite?: boolean | undefined;
|
|
25228
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
25149
25229
|
} | undefined;
|
|
25150
25230
|
onboarding?: {
|
|
25151
25231
|
companyName?: string | undefined;
|
|
@@ -25161,6 +25241,16 @@ declare const UserDump: z.ZodObject<{
|
|
|
25161
25241
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
25162
25242
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
25163
25243
|
} | undefined;
|
|
25244
|
+
portalTheme?: {
|
|
25245
|
+
backgroundColor?: string | undefined;
|
|
25246
|
+
accentColor?: string | undefined;
|
|
25247
|
+
contrast?: number | undefined;
|
|
25248
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
25249
|
+
secondaryBackgroundColor?: string | undefined;
|
|
25250
|
+
secondaryContrast?: number | undefined;
|
|
25251
|
+
isEditorWhite?: boolean | undefined;
|
|
25252
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
25253
|
+
} | undefined;
|
|
25164
25254
|
};
|
|
25165
25255
|
createdAt: Date;
|
|
25166
25256
|
isProtected: boolean;
|
|
@@ -35921,8 +36011,7 @@ declare const UserSession: z.ZodObject<{
|
|
|
35921
36011
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
35922
36012
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
35923
36013
|
}>>;
|
|
35924
|
-
theme: z.ZodOptional<z.ZodObject<{
|
|
35925
|
-
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
|
|
36014
|
+
theme: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
35926
36015
|
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
35927
36016
|
accentColor: z.ZodOptional<z.ZodString>;
|
|
35928
36017
|
contrast: z.ZodOptional<z.ZodNumber>;
|
|
@@ -35930,24 +36019,55 @@ declare const UserSession: z.ZodObject<{
|
|
|
35930
36019
|
secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
35931
36020
|
secondaryContrast: z.ZodOptional<z.ZodNumber>;
|
|
35932
36021
|
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
35933
|
-
},
|
|
36022
|
+
}, {
|
|
36023
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
|
|
36024
|
+
}>, "strip", z.ZodTypeAny, {
|
|
35934
36025
|
backgroundColor?: string | undefined;
|
|
35935
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
35936
36026
|
accentColor?: string | undefined;
|
|
35937
36027
|
contrast?: number | undefined;
|
|
35938
36028
|
isSecondaryEnabled?: boolean | undefined;
|
|
35939
36029
|
secondaryBackgroundColor?: string | undefined;
|
|
35940
36030
|
secondaryContrast?: number | undefined;
|
|
35941
36031
|
isEditorWhite?: boolean | undefined;
|
|
36032
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
35942
36033
|
}, {
|
|
35943
36034
|
backgroundColor?: string | undefined;
|
|
36035
|
+
accentColor?: string | undefined;
|
|
36036
|
+
contrast?: number | undefined;
|
|
36037
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
36038
|
+
secondaryBackgroundColor?: string | undefined;
|
|
36039
|
+
secondaryContrast?: number | undefined;
|
|
36040
|
+
isEditorWhite?: boolean | undefined;
|
|
35944
36041
|
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
36042
|
+
}>>;
|
|
36043
|
+
portalTheme: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
36044
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
36045
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
|
36046
|
+
contrast: z.ZodOptional<z.ZodNumber>;
|
|
36047
|
+
isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
36048
|
+
secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
36049
|
+
secondaryContrast: z.ZodOptional<z.ZodNumber>;
|
|
36050
|
+
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
36051
|
+
}, {
|
|
36052
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia", "DefaultPortal"]>>;
|
|
36053
|
+
}>, "strip", z.ZodTypeAny, {
|
|
36054
|
+
backgroundColor?: string | undefined;
|
|
35945
36055
|
accentColor?: string | undefined;
|
|
35946
36056
|
contrast?: number | undefined;
|
|
35947
36057
|
isSecondaryEnabled?: boolean | undefined;
|
|
35948
36058
|
secondaryBackgroundColor?: string | undefined;
|
|
35949
36059
|
secondaryContrast?: number | undefined;
|
|
35950
36060
|
isEditorWhite?: boolean | undefined;
|
|
36061
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
36062
|
+
}, {
|
|
36063
|
+
backgroundColor?: string | undefined;
|
|
36064
|
+
accentColor?: string | undefined;
|
|
36065
|
+
contrast?: number | undefined;
|
|
36066
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
36067
|
+
secondaryBackgroundColor?: string | undefined;
|
|
36068
|
+
secondaryContrast?: number | undefined;
|
|
36069
|
+
isEditorWhite?: boolean | undefined;
|
|
36070
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
35951
36071
|
}>>;
|
|
35952
36072
|
}, "strip", z.ZodTypeAny, {
|
|
35953
36073
|
name: string;
|
|
@@ -35955,13 +36075,13 @@ declare const UserSession: z.ZodObject<{
|
|
|
35955
36075
|
nickname?: string | undefined;
|
|
35956
36076
|
theme?: {
|
|
35957
36077
|
backgroundColor?: string | undefined;
|
|
35958
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
35959
36078
|
accentColor?: string | undefined;
|
|
35960
36079
|
contrast?: number | undefined;
|
|
35961
36080
|
isSecondaryEnabled?: boolean | undefined;
|
|
35962
36081
|
secondaryBackgroundColor?: string | undefined;
|
|
35963
36082
|
secondaryContrast?: number | undefined;
|
|
35964
36083
|
isEditorWhite?: boolean | undefined;
|
|
36084
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
35965
36085
|
} | undefined;
|
|
35966
36086
|
onboarding?: {
|
|
35967
36087
|
companyName?: string | undefined;
|
|
@@ -35977,19 +36097,29 @@ declare const UserSession: z.ZodObject<{
|
|
|
35977
36097
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
35978
36098
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
35979
36099
|
} | undefined;
|
|
36100
|
+
portalTheme?: {
|
|
36101
|
+
backgroundColor?: string | undefined;
|
|
36102
|
+
accentColor?: string | undefined;
|
|
36103
|
+
contrast?: number | undefined;
|
|
36104
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
36105
|
+
secondaryBackgroundColor?: string | undefined;
|
|
36106
|
+
secondaryContrast?: number | undefined;
|
|
36107
|
+
isEditorWhite?: boolean | undefined;
|
|
36108
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
36109
|
+
} | undefined;
|
|
35980
36110
|
}, {
|
|
35981
36111
|
name: string;
|
|
35982
36112
|
avatar?: string | undefined;
|
|
35983
36113
|
nickname?: string | undefined;
|
|
35984
36114
|
theme?: {
|
|
35985
36115
|
backgroundColor?: string | undefined;
|
|
35986
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
35987
36116
|
accentColor?: string | undefined;
|
|
35988
36117
|
contrast?: number | undefined;
|
|
35989
36118
|
isSecondaryEnabled?: boolean | undefined;
|
|
35990
36119
|
secondaryBackgroundColor?: string | undefined;
|
|
35991
36120
|
secondaryContrast?: number | undefined;
|
|
35992
36121
|
isEditorWhite?: boolean | undefined;
|
|
36122
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
35993
36123
|
} | undefined;
|
|
35994
36124
|
onboarding?: {
|
|
35995
36125
|
companyName?: string | undefined;
|
|
@@ -36005,6 +36135,16 @@ declare const UserSession: z.ZodObject<{
|
|
|
36005
36135
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
36006
36136
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
36007
36137
|
} | undefined;
|
|
36138
|
+
portalTheme?: {
|
|
36139
|
+
backgroundColor?: string | undefined;
|
|
36140
|
+
accentColor?: string | undefined;
|
|
36141
|
+
contrast?: number | undefined;
|
|
36142
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
36143
|
+
secondaryBackgroundColor?: string | undefined;
|
|
36144
|
+
secondaryContrast?: number | undefined;
|
|
36145
|
+
isEditorWhite?: boolean | undefined;
|
|
36146
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
36147
|
+
} | undefined;
|
|
36008
36148
|
}>;
|
|
36009
36149
|
loggedOutAt: z.ZodOptional<z.ZodDate>;
|
|
36010
36150
|
isProtected: z.ZodBoolean;
|
|
@@ -36018,13 +36158,13 @@ declare const UserSession: z.ZodObject<{
|
|
|
36018
36158
|
nickname?: string | undefined;
|
|
36019
36159
|
theme?: {
|
|
36020
36160
|
backgroundColor?: string | undefined;
|
|
36021
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
36022
36161
|
accentColor?: string | undefined;
|
|
36023
36162
|
contrast?: number | undefined;
|
|
36024
36163
|
isSecondaryEnabled?: boolean | undefined;
|
|
36025
36164
|
secondaryBackgroundColor?: string | undefined;
|
|
36026
36165
|
secondaryContrast?: number | undefined;
|
|
36027
36166
|
isEditorWhite?: boolean | undefined;
|
|
36167
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
36028
36168
|
} | undefined;
|
|
36029
36169
|
onboarding?: {
|
|
36030
36170
|
companyName?: string | undefined;
|
|
@@ -36040,6 +36180,16 @@ declare const UserSession: z.ZodObject<{
|
|
|
36040
36180
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
36041
36181
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
36042
36182
|
} | undefined;
|
|
36183
|
+
portalTheme?: {
|
|
36184
|
+
backgroundColor?: string | undefined;
|
|
36185
|
+
accentColor?: string | undefined;
|
|
36186
|
+
contrast?: number | undefined;
|
|
36187
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
36188
|
+
secondaryBackgroundColor?: string | undefined;
|
|
36189
|
+
secondaryContrast?: number | undefined;
|
|
36190
|
+
isEditorWhite?: boolean | undefined;
|
|
36191
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
36192
|
+
} | undefined;
|
|
36043
36193
|
};
|
|
36044
36194
|
createdAt: Date;
|
|
36045
36195
|
isProtected: boolean;
|
|
@@ -36054,13 +36204,13 @@ declare const UserSession: z.ZodObject<{
|
|
|
36054
36204
|
nickname?: string | undefined;
|
|
36055
36205
|
theme?: {
|
|
36056
36206
|
backgroundColor?: string | undefined;
|
|
36057
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
36058
36207
|
accentColor?: string | undefined;
|
|
36059
36208
|
contrast?: number | undefined;
|
|
36060
36209
|
isSecondaryEnabled?: boolean | undefined;
|
|
36061
36210
|
secondaryBackgroundColor?: string | undefined;
|
|
36062
36211
|
secondaryContrast?: number | undefined;
|
|
36063
36212
|
isEditorWhite?: boolean | undefined;
|
|
36213
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
36064
36214
|
} | undefined;
|
|
36065
36215
|
onboarding?: {
|
|
36066
36216
|
companyName?: string | undefined;
|
|
@@ -36076,6 +36226,16 @@ declare const UserSession: z.ZodObject<{
|
|
|
36076
36226
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
36077
36227
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
36078
36228
|
} | undefined;
|
|
36229
|
+
portalTheme?: {
|
|
36230
|
+
backgroundColor?: string | undefined;
|
|
36231
|
+
accentColor?: string | undefined;
|
|
36232
|
+
contrast?: number | undefined;
|
|
36233
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
36234
|
+
secondaryBackgroundColor?: string | undefined;
|
|
36235
|
+
secondaryContrast?: number | undefined;
|
|
36236
|
+
isEditorWhite?: boolean | undefined;
|
|
36237
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
36238
|
+
} | undefined;
|
|
36079
36239
|
};
|
|
36080
36240
|
createdAt: Date;
|
|
36081
36241
|
isProtected: boolean;
|
|
@@ -36105,13 +36265,13 @@ declare const UserSession: z.ZodObject<{
|
|
|
36105
36265
|
nickname?: string | undefined;
|
|
36106
36266
|
theme?: {
|
|
36107
36267
|
backgroundColor?: string | undefined;
|
|
36108
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
36109
36268
|
accentColor?: string | undefined;
|
|
36110
36269
|
contrast?: number | undefined;
|
|
36111
36270
|
isSecondaryEnabled?: boolean | undefined;
|
|
36112
36271
|
secondaryBackgroundColor?: string | undefined;
|
|
36113
36272
|
secondaryContrast?: number | undefined;
|
|
36114
36273
|
isEditorWhite?: boolean | undefined;
|
|
36274
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
36115
36275
|
} | undefined;
|
|
36116
36276
|
onboarding?: {
|
|
36117
36277
|
companyName?: string | undefined;
|
|
@@ -36127,6 +36287,16 @@ declare const UserSession: z.ZodObject<{
|
|
|
36127
36287
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
36128
36288
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
36129
36289
|
} | undefined;
|
|
36290
|
+
portalTheme?: {
|
|
36291
|
+
backgroundColor?: string | undefined;
|
|
36292
|
+
accentColor?: string | undefined;
|
|
36293
|
+
contrast?: number | undefined;
|
|
36294
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
36295
|
+
secondaryBackgroundColor?: string | undefined;
|
|
36296
|
+
secondaryContrast?: number | undefined;
|
|
36297
|
+
isEditorWhite?: boolean | undefined;
|
|
36298
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
36299
|
+
} | undefined;
|
|
36130
36300
|
};
|
|
36131
36301
|
createdAt: Date;
|
|
36132
36302
|
isProtected: boolean;
|
|
@@ -36156,13 +36326,13 @@ declare const UserSession: z.ZodObject<{
|
|
|
36156
36326
|
nickname?: string | undefined;
|
|
36157
36327
|
theme?: {
|
|
36158
36328
|
backgroundColor?: string | undefined;
|
|
36159
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
36160
36329
|
accentColor?: string | undefined;
|
|
36161
36330
|
contrast?: number | undefined;
|
|
36162
36331
|
isSecondaryEnabled?: boolean | undefined;
|
|
36163
36332
|
secondaryBackgroundColor?: string | undefined;
|
|
36164
36333
|
secondaryContrast?: number | undefined;
|
|
36165
36334
|
isEditorWhite?: boolean | undefined;
|
|
36335
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
36166
36336
|
} | undefined;
|
|
36167
36337
|
onboarding?: {
|
|
36168
36338
|
companyName?: string | undefined;
|
|
@@ -36178,6 +36348,16 @@ declare const UserSession: z.ZodObject<{
|
|
|
36178
36348
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
36179
36349
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
36180
36350
|
} | undefined;
|
|
36351
|
+
portalTheme?: {
|
|
36352
|
+
backgroundColor?: string | undefined;
|
|
36353
|
+
accentColor?: string | undefined;
|
|
36354
|
+
contrast?: number | undefined;
|
|
36355
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
36356
|
+
secondaryBackgroundColor?: string | undefined;
|
|
36357
|
+
secondaryContrast?: number | undefined;
|
|
36358
|
+
isEditorWhite?: boolean | undefined;
|
|
36359
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
36360
|
+
} | undefined;
|
|
36181
36361
|
};
|
|
36182
36362
|
createdAt: Date;
|
|
36183
36363
|
isProtected: boolean;
|
|
@@ -151820,8 +152000,7 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
151820
152000
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
151821
152001
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
151822
152002
|
}>>;
|
|
151823
|
-
theme: z.ZodOptional<z.ZodObject<{
|
|
151824
|
-
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
|
|
152003
|
+
theme: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
151825
152004
|
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
151826
152005
|
accentColor: z.ZodOptional<z.ZodString>;
|
|
151827
152006
|
contrast: z.ZodOptional<z.ZodNumber>;
|
|
@@ -151829,24 +152008,55 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
151829
152008
|
secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
151830
152009
|
secondaryContrast: z.ZodOptional<z.ZodNumber>;
|
|
151831
152010
|
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
151832
|
-
},
|
|
152011
|
+
}, {
|
|
152012
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
|
|
152013
|
+
}>, "strip", z.ZodTypeAny, {
|
|
151833
152014
|
backgroundColor?: string | undefined;
|
|
151834
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
151835
152015
|
accentColor?: string | undefined;
|
|
151836
152016
|
contrast?: number | undefined;
|
|
151837
152017
|
isSecondaryEnabled?: boolean | undefined;
|
|
151838
152018
|
secondaryBackgroundColor?: string | undefined;
|
|
151839
152019
|
secondaryContrast?: number | undefined;
|
|
151840
152020
|
isEditorWhite?: boolean | undefined;
|
|
152021
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
151841
152022
|
}, {
|
|
151842
152023
|
backgroundColor?: string | undefined;
|
|
152024
|
+
accentColor?: string | undefined;
|
|
152025
|
+
contrast?: number | undefined;
|
|
152026
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
152027
|
+
secondaryBackgroundColor?: string | undefined;
|
|
152028
|
+
secondaryContrast?: number | undefined;
|
|
152029
|
+
isEditorWhite?: boolean | undefined;
|
|
151843
152030
|
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
152031
|
+
}>>;
|
|
152032
|
+
portalTheme: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
152033
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
152034
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
|
152035
|
+
contrast: z.ZodOptional<z.ZodNumber>;
|
|
152036
|
+
isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
152037
|
+
secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
152038
|
+
secondaryContrast: z.ZodOptional<z.ZodNumber>;
|
|
152039
|
+
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
152040
|
+
}, {
|
|
152041
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia", "DefaultPortal"]>>;
|
|
152042
|
+
}>, "strip", z.ZodTypeAny, {
|
|
152043
|
+
backgroundColor?: string | undefined;
|
|
151844
152044
|
accentColor?: string | undefined;
|
|
151845
152045
|
contrast?: number | undefined;
|
|
151846
152046
|
isSecondaryEnabled?: boolean | undefined;
|
|
151847
152047
|
secondaryBackgroundColor?: string | undefined;
|
|
151848
152048
|
secondaryContrast?: number | undefined;
|
|
151849
152049
|
isEditorWhite?: boolean | undefined;
|
|
152050
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
152051
|
+
}, {
|
|
152052
|
+
backgroundColor?: string | undefined;
|
|
152053
|
+
accentColor?: string | undefined;
|
|
152054
|
+
contrast?: number | undefined;
|
|
152055
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
152056
|
+
secondaryBackgroundColor?: string | undefined;
|
|
152057
|
+
secondaryContrast?: number | undefined;
|
|
152058
|
+
isEditorWhite?: boolean | undefined;
|
|
152059
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
151850
152060
|
}>>;
|
|
151851
152061
|
}, "strip", z.ZodTypeAny, {
|
|
151852
152062
|
name: string;
|
|
@@ -151854,13 +152064,13 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
151854
152064
|
nickname?: string | undefined;
|
|
151855
152065
|
theme?: {
|
|
151856
152066
|
backgroundColor?: string | undefined;
|
|
151857
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
151858
152067
|
accentColor?: string | undefined;
|
|
151859
152068
|
contrast?: number | undefined;
|
|
151860
152069
|
isSecondaryEnabled?: boolean | undefined;
|
|
151861
152070
|
secondaryBackgroundColor?: string | undefined;
|
|
151862
152071
|
secondaryContrast?: number | undefined;
|
|
151863
152072
|
isEditorWhite?: boolean | undefined;
|
|
152073
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
151864
152074
|
} | undefined;
|
|
151865
152075
|
onboarding?: {
|
|
151866
152076
|
companyName?: string | undefined;
|
|
@@ -151876,19 +152086,29 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
151876
152086
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
151877
152087
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
151878
152088
|
} | undefined;
|
|
152089
|
+
portalTheme?: {
|
|
152090
|
+
backgroundColor?: string | undefined;
|
|
152091
|
+
accentColor?: string | undefined;
|
|
152092
|
+
contrast?: number | undefined;
|
|
152093
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
152094
|
+
secondaryBackgroundColor?: string | undefined;
|
|
152095
|
+
secondaryContrast?: number | undefined;
|
|
152096
|
+
isEditorWhite?: boolean | undefined;
|
|
152097
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
152098
|
+
} | undefined;
|
|
151879
152099
|
}, {
|
|
151880
152100
|
name: string;
|
|
151881
152101
|
avatar?: string | undefined;
|
|
151882
152102
|
nickname?: string | undefined;
|
|
151883
152103
|
theme?: {
|
|
151884
152104
|
backgroundColor?: string | undefined;
|
|
151885
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
151886
152105
|
accentColor?: string | undefined;
|
|
151887
152106
|
contrast?: number | undefined;
|
|
151888
152107
|
isSecondaryEnabled?: boolean | undefined;
|
|
151889
152108
|
secondaryBackgroundColor?: string | undefined;
|
|
151890
152109
|
secondaryContrast?: number | undefined;
|
|
151891
152110
|
isEditorWhite?: boolean | undefined;
|
|
152111
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
151892
152112
|
} | undefined;
|
|
151893
152113
|
onboarding?: {
|
|
151894
152114
|
companyName?: string | undefined;
|
|
@@ -151904,6 +152124,16 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
151904
152124
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
151905
152125
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
151906
152126
|
} | undefined;
|
|
152127
|
+
portalTheme?: {
|
|
152128
|
+
backgroundColor?: string | undefined;
|
|
152129
|
+
accentColor?: string | undefined;
|
|
152130
|
+
contrast?: number | undefined;
|
|
152131
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
152132
|
+
secondaryBackgroundColor?: string | undefined;
|
|
152133
|
+
secondaryContrast?: number | undefined;
|
|
152134
|
+
isEditorWhite?: boolean | undefined;
|
|
152135
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
152136
|
+
} | undefined;
|
|
151907
152137
|
}>;
|
|
151908
152138
|
loggedOutAt: z.ZodOptional<z.ZodDate>;
|
|
151909
152139
|
isProtected: z.ZodBoolean;
|
|
@@ -151917,13 +152147,13 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
151917
152147
|
nickname?: string | undefined;
|
|
151918
152148
|
theme?: {
|
|
151919
152149
|
backgroundColor?: string | undefined;
|
|
151920
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
151921
152150
|
accentColor?: string | undefined;
|
|
151922
152151
|
contrast?: number | undefined;
|
|
151923
152152
|
isSecondaryEnabled?: boolean | undefined;
|
|
151924
152153
|
secondaryBackgroundColor?: string | undefined;
|
|
151925
152154
|
secondaryContrast?: number | undefined;
|
|
151926
152155
|
isEditorWhite?: boolean | undefined;
|
|
152156
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
151927
152157
|
} | undefined;
|
|
151928
152158
|
onboarding?: {
|
|
151929
152159
|
companyName?: string | undefined;
|
|
@@ -151939,6 +152169,16 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
151939
152169
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
151940
152170
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
151941
152171
|
} | undefined;
|
|
152172
|
+
portalTheme?: {
|
|
152173
|
+
backgroundColor?: string | undefined;
|
|
152174
|
+
accentColor?: string | undefined;
|
|
152175
|
+
contrast?: number | undefined;
|
|
152176
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
152177
|
+
secondaryBackgroundColor?: string | undefined;
|
|
152178
|
+
secondaryContrast?: number | undefined;
|
|
152179
|
+
isEditorWhite?: boolean | undefined;
|
|
152180
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
152181
|
+
} | undefined;
|
|
151942
152182
|
};
|
|
151943
152183
|
createdAt: Date;
|
|
151944
152184
|
isProtected: boolean;
|
|
@@ -151953,13 +152193,13 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
151953
152193
|
nickname?: string | undefined;
|
|
151954
152194
|
theme?: {
|
|
151955
152195
|
backgroundColor?: string | undefined;
|
|
151956
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
151957
152196
|
accentColor?: string | undefined;
|
|
151958
152197
|
contrast?: number | undefined;
|
|
151959
152198
|
isSecondaryEnabled?: boolean | undefined;
|
|
151960
152199
|
secondaryBackgroundColor?: string | undefined;
|
|
151961
152200
|
secondaryContrast?: number | undefined;
|
|
151962
152201
|
isEditorWhite?: boolean | undefined;
|
|
152202
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
151963
152203
|
} | undefined;
|
|
151964
152204
|
onboarding?: {
|
|
151965
152205
|
companyName?: string | undefined;
|
|
@@ -151975,6 +152215,16 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
151975
152215
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
151976
152216
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
151977
152217
|
} | undefined;
|
|
152218
|
+
portalTheme?: {
|
|
152219
|
+
backgroundColor?: string | undefined;
|
|
152220
|
+
accentColor?: string | undefined;
|
|
152221
|
+
contrast?: number | undefined;
|
|
152222
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
152223
|
+
secondaryBackgroundColor?: string | undefined;
|
|
152224
|
+
secondaryContrast?: number | undefined;
|
|
152225
|
+
isEditorWhite?: boolean | undefined;
|
|
152226
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
152227
|
+
} | undefined;
|
|
151978
152228
|
};
|
|
151979
152229
|
createdAt: Date;
|
|
151980
152230
|
isProtected: boolean;
|
|
@@ -152220,13 +152470,13 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
152220
152470
|
nickname?: string | undefined;
|
|
152221
152471
|
theme?: {
|
|
152222
152472
|
backgroundColor?: string | undefined;
|
|
152223
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
152224
152473
|
accentColor?: string | undefined;
|
|
152225
152474
|
contrast?: number | undefined;
|
|
152226
152475
|
isSecondaryEnabled?: boolean | undefined;
|
|
152227
152476
|
secondaryBackgroundColor?: string | undefined;
|
|
152228
152477
|
secondaryContrast?: number | undefined;
|
|
152229
152478
|
isEditorWhite?: boolean | undefined;
|
|
152479
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
152230
152480
|
} | undefined;
|
|
152231
152481
|
onboarding?: {
|
|
152232
152482
|
companyName?: string | undefined;
|
|
@@ -152242,6 +152492,16 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
152242
152492
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
152243
152493
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
152244
152494
|
} | undefined;
|
|
152495
|
+
portalTheme?: {
|
|
152496
|
+
backgroundColor?: string | undefined;
|
|
152497
|
+
accentColor?: string | undefined;
|
|
152498
|
+
contrast?: number | undefined;
|
|
152499
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
152500
|
+
secondaryBackgroundColor?: string | undefined;
|
|
152501
|
+
secondaryContrast?: number | undefined;
|
|
152502
|
+
isEditorWhite?: boolean | undefined;
|
|
152503
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
152504
|
+
} | undefined;
|
|
152245
152505
|
};
|
|
152246
152506
|
createdAt: Date;
|
|
152247
152507
|
isProtected: boolean;
|
|
@@ -152510,13 +152770,13 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
152510
152770
|
nickname?: string | undefined;
|
|
152511
152771
|
theme?: {
|
|
152512
152772
|
backgroundColor?: string | undefined;
|
|
152513
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
152514
152773
|
accentColor?: string | undefined;
|
|
152515
152774
|
contrast?: number | undefined;
|
|
152516
152775
|
isSecondaryEnabled?: boolean | undefined;
|
|
152517
152776
|
secondaryBackgroundColor?: string | undefined;
|
|
152518
152777
|
secondaryContrast?: number | undefined;
|
|
152519
152778
|
isEditorWhite?: boolean | undefined;
|
|
152779
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
152520
152780
|
} | undefined;
|
|
152521
152781
|
onboarding?: {
|
|
152522
152782
|
companyName?: string | undefined;
|
|
@@ -152532,6 +152792,16 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
152532
152792
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
152533
152793
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
152534
152794
|
} | undefined;
|
|
152795
|
+
portalTheme?: {
|
|
152796
|
+
backgroundColor?: string | undefined;
|
|
152797
|
+
accentColor?: string | undefined;
|
|
152798
|
+
contrast?: number | undefined;
|
|
152799
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
152800
|
+
secondaryBackgroundColor?: string | undefined;
|
|
152801
|
+
secondaryContrast?: number | undefined;
|
|
152802
|
+
isEditorWhite?: boolean | undefined;
|
|
152803
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
152804
|
+
} | undefined;
|
|
152535
152805
|
};
|
|
152536
152806
|
createdAt: Date;
|
|
152537
152807
|
isProtected: boolean;
|
|
@@ -154315,8 +154585,7 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
154315
154585
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
154316
154586
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
154317
154587
|
}>>;
|
|
154318
|
-
theme: z.ZodOptional<z.ZodObject<{
|
|
154319
|
-
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
|
|
154588
|
+
theme: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
154320
154589
|
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
154321
154590
|
accentColor: z.ZodOptional<z.ZodString>;
|
|
154322
154591
|
contrast: z.ZodOptional<z.ZodNumber>;
|
|
@@ -154324,24 +154593,55 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
154324
154593
|
secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
154325
154594
|
secondaryContrast: z.ZodOptional<z.ZodNumber>;
|
|
154326
154595
|
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
154327
|
-
},
|
|
154596
|
+
}, {
|
|
154597
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
|
|
154598
|
+
}>, "strip", z.ZodTypeAny, {
|
|
154328
154599
|
backgroundColor?: string | undefined;
|
|
154329
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
154330
154600
|
accentColor?: string | undefined;
|
|
154331
154601
|
contrast?: number | undefined;
|
|
154332
154602
|
isSecondaryEnabled?: boolean | undefined;
|
|
154333
154603
|
secondaryBackgroundColor?: string | undefined;
|
|
154334
154604
|
secondaryContrast?: number | undefined;
|
|
154335
154605
|
isEditorWhite?: boolean | undefined;
|
|
154606
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
154336
154607
|
}, {
|
|
154337
154608
|
backgroundColor?: string | undefined;
|
|
154609
|
+
accentColor?: string | undefined;
|
|
154610
|
+
contrast?: number | undefined;
|
|
154611
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
154612
|
+
secondaryBackgroundColor?: string | undefined;
|
|
154613
|
+
secondaryContrast?: number | undefined;
|
|
154614
|
+
isEditorWhite?: boolean | undefined;
|
|
154338
154615
|
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
154616
|
+
}>>;
|
|
154617
|
+
portalTheme: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
154618
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
154619
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
|
154620
|
+
contrast: z.ZodOptional<z.ZodNumber>;
|
|
154621
|
+
isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
154622
|
+
secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
154623
|
+
secondaryContrast: z.ZodOptional<z.ZodNumber>;
|
|
154624
|
+
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
154625
|
+
}, {
|
|
154626
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia", "DefaultPortal"]>>;
|
|
154627
|
+
}>, "strip", z.ZodTypeAny, {
|
|
154628
|
+
backgroundColor?: string | undefined;
|
|
154629
|
+
accentColor?: string | undefined;
|
|
154630
|
+
contrast?: number | undefined;
|
|
154631
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
154632
|
+
secondaryBackgroundColor?: string | undefined;
|
|
154633
|
+
secondaryContrast?: number | undefined;
|
|
154634
|
+
isEditorWhite?: boolean | undefined;
|
|
154635
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
154636
|
+
}, {
|
|
154637
|
+
backgroundColor?: string | undefined;
|
|
154339
154638
|
accentColor?: string | undefined;
|
|
154340
154639
|
contrast?: number | undefined;
|
|
154341
154640
|
isSecondaryEnabled?: boolean | undefined;
|
|
154342
154641
|
secondaryBackgroundColor?: string | undefined;
|
|
154343
154642
|
secondaryContrast?: number | undefined;
|
|
154344
154643
|
isEditorWhite?: boolean | undefined;
|
|
154644
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
154345
154645
|
}>>;
|
|
154346
154646
|
}, "strip", z.ZodTypeAny, {
|
|
154347
154647
|
name: string;
|
|
@@ -154349,13 +154649,13 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
154349
154649
|
nickname?: string | undefined;
|
|
154350
154650
|
theme?: {
|
|
154351
154651
|
backgroundColor?: string | undefined;
|
|
154352
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
154353
154652
|
accentColor?: string | undefined;
|
|
154354
154653
|
contrast?: number | undefined;
|
|
154355
154654
|
isSecondaryEnabled?: boolean | undefined;
|
|
154356
154655
|
secondaryBackgroundColor?: string | undefined;
|
|
154357
154656
|
secondaryContrast?: number | undefined;
|
|
154358
154657
|
isEditorWhite?: boolean | undefined;
|
|
154658
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
154359
154659
|
} | undefined;
|
|
154360
154660
|
onboarding?: {
|
|
154361
154661
|
companyName?: string | undefined;
|
|
@@ -154371,19 +154671,29 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
154371
154671
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
154372
154672
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
154373
154673
|
} | undefined;
|
|
154674
|
+
portalTheme?: {
|
|
154675
|
+
backgroundColor?: string | undefined;
|
|
154676
|
+
accentColor?: string | undefined;
|
|
154677
|
+
contrast?: number | undefined;
|
|
154678
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
154679
|
+
secondaryBackgroundColor?: string | undefined;
|
|
154680
|
+
secondaryContrast?: number | undefined;
|
|
154681
|
+
isEditorWhite?: boolean | undefined;
|
|
154682
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
154683
|
+
} | undefined;
|
|
154374
154684
|
}, {
|
|
154375
154685
|
name: string;
|
|
154376
154686
|
avatar?: string | undefined;
|
|
154377
154687
|
nickname?: string | undefined;
|
|
154378
154688
|
theme?: {
|
|
154379
154689
|
backgroundColor?: string | undefined;
|
|
154380
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
154381
154690
|
accentColor?: string | undefined;
|
|
154382
154691
|
contrast?: number | undefined;
|
|
154383
154692
|
isSecondaryEnabled?: boolean | undefined;
|
|
154384
154693
|
secondaryBackgroundColor?: string | undefined;
|
|
154385
154694
|
secondaryContrast?: number | undefined;
|
|
154386
154695
|
isEditorWhite?: boolean | undefined;
|
|
154696
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
154387
154697
|
} | undefined;
|
|
154388
154698
|
onboarding?: {
|
|
154389
154699
|
companyName?: string | undefined;
|
|
@@ -154399,6 +154709,16 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
154399
154709
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
154400
154710
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
154401
154711
|
} | undefined;
|
|
154712
|
+
portalTheme?: {
|
|
154713
|
+
backgroundColor?: string | undefined;
|
|
154714
|
+
accentColor?: string | undefined;
|
|
154715
|
+
contrast?: number | undefined;
|
|
154716
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
154717
|
+
secondaryBackgroundColor?: string | undefined;
|
|
154718
|
+
secondaryContrast?: number | undefined;
|
|
154719
|
+
isEditorWhite?: boolean | undefined;
|
|
154720
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
154721
|
+
} | undefined;
|
|
154402
154722
|
}>;
|
|
154403
154723
|
loggedOutAt: z.ZodOptional<z.ZodDate>;
|
|
154404
154724
|
isProtected: z.ZodBoolean;
|
|
@@ -154412,13 +154732,13 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
154412
154732
|
nickname?: string | undefined;
|
|
154413
154733
|
theme?: {
|
|
154414
154734
|
backgroundColor?: string | undefined;
|
|
154415
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
154416
154735
|
accentColor?: string | undefined;
|
|
154417
154736
|
contrast?: number | undefined;
|
|
154418
154737
|
isSecondaryEnabled?: boolean | undefined;
|
|
154419
154738
|
secondaryBackgroundColor?: string | undefined;
|
|
154420
154739
|
secondaryContrast?: number | undefined;
|
|
154421
154740
|
isEditorWhite?: boolean | undefined;
|
|
154741
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
154422
154742
|
} | undefined;
|
|
154423
154743
|
onboarding?: {
|
|
154424
154744
|
companyName?: string | undefined;
|
|
@@ -154434,6 +154754,16 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
154434
154754
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
154435
154755
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
154436
154756
|
} | undefined;
|
|
154757
|
+
portalTheme?: {
|
|
154758
|
+
backgroundColor?: string | undefined;
|
|
154759
|
+
accentColor?: string | undefined;
|
|
154760
|
+
contrast?: number | undefined;
|
|
154761
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
154762
|
+
secondaryBackgroundColor?: string | undefined;
|
|
154763
|
+
secondaryContrast?: number | undefined;
|
|
154764
|
+
isEditorWhite?: boolean | undefined;
|
|
154765
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
154766
|
+
} | undefined;
|
|
154437
154767
|
};
|
|
154438
154768
|
createdAt: Date;
|
|
154439
154769
|
isProtected: boolean;
|
|
@@ -154448,13 +154778,13 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
154448
154778
|
nickname?: string | undefined;
|
|
154449
154779
|
theme?: {
|
|
154450
154780
|
backgroundColor?: string | undefined;
|
|
154451
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
154452
154781
|
accentColor?: string | undefined;
|
|
154453
154782
|
contrast?: number | undefined;
|
|
154454
154783
|
isSecondaryEnabled?: boolean | undefined;
|
|
154455
154784
|
secondaryBackgroundColor?: string | undefined;
|
|
154456
154785
|
secondaryContrast?: number | undefined;
|
|
154457
154786
|
isEditorWhite?: boolean | undefined;
|
|
154787
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
154458
154788
|
} | undefined;
|
|
154459
154789
|
onboarding?: {
|
|
154460
154790
|
companyName?: string | undefined;
|
|
@@ -154470,6 +154800,16 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
154470
154800
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
154471
154801
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
154472
154802
|
} | undefined;
|
|
154803
|
+
portalTheme?: {
|
|
154804
|
+
backgroundColor?: string | undefined;
|
|
154805
|
+
accentColor?: string | undefined;
|
|
154806
|
+
contrast?: number | undefined;
|
|
154807
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
154808
|
+
secondaryBackgroundColor?: string | undefined;
|
|
154809
|
+
secondaryContrast?: number | undefined;
|
|
154810
|
+
isEditorWhite?: boolean | undefined;
|
|
154811
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
154812
|
+
} | undefined;
|
|
154473
154813
|
};
|
|
154474
154814
|
createdAt: Date;
|
|
154475
154815
|
isProtected: boolean;
|
|
@@ -154715,13 +155055,13 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
154715
155055
|
nickname?: string | undefined;
|
|
154716
155056
|
theme?: {
|
|
154717
155057
|
backgroundColor?: string | undefined;
|
|
154718
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
154719
155058
|
accentColor?: string | undefined;
|
|
154720
155059
|
contrast?: number | undefined;
|
|
154721
155060
|
isSecondaryEnabled?: boolean | undefined;
|
|
154722
155061
|
secondaryBackgroundColor?: string | undefined;
|
|
154723
155062
|
secondaryContrast?: number | undefined;
|
|
154724
155063
|
isEditorWhite?: boolean | undefined;
|
|
155064
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
154725
155065
|
} | undefined;
|
|
154726
155066
|
onboarding?: {
|
|
154727
155067
|
companyName?: string | undefined;
|
|
@@ -154737,6 +155077,16 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
154737
155077
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
154738
155078
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
154739
155079
|
} | undefined;
|
|
155080
|
+
portalTheme?: {
|
|
155081
|
+
backgroundColor?: string | undefined;
|
|
155082
|
+
accentColor?: string | undefined;
|
|
155083
|
+
contrast?: number | undefined;
|
|
155084
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
155085
|
+
secondaryBackgroundColor?: string | undefined;
|
|
155086
|
+
secondaryContrast?: number | undefined;
|
|
155087
|
+
isEditorWhite?: boolean | undefined;
|
|
155088
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
155089
|
+
} | undefined;
|
|
154740
155090
|
};
|
|
154741
155091
|
createdAt: Date;
|
|
154742
155092
|
isProtected: boolean;
|
|
@@ -154982,13 +155332,13 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
154982
155332
|
nickname?: string | undefined;
|
|
154983
155333
|
theme?: {
|
|
154984
155334
|
backgroundColor?: string | undefined;
|
|
154985
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
154986
155335
|
accentColor?: string | undefined;
|
|
154987
155336
|
contrast?: number | undefined;
|
|
154988
155337
|
isSecondaryEnabled?: boolean | undefined;
|
|
154989
155338
|
secondaryBackgroundColor?: string | undefined;
|
|
154990
155339
|
secondaryContrast?: number | undefined;
|
|
154991
155340
|
isEditorWhite?: boolean | undefined;
|
|
155341
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
154992
155342
|
} | undefined;
|
|
154993
155343
|
onboarding?: {
|
|
154994
155344
|
companyName?: string | undefined;
|
|
@@ -155004,6 +155354,16 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
155004
155354
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
155005
155355
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
155006
155356
|
} | undefined;
|
|
155357
|
+
portalTheme?: {
|
|
155358
|
+
backgroundColor?: string | undefined;
|
|
155359
|
+
accentColor?: string | undefined;
|
|
155360
|
+
contrast?: number | undefined;
|
|
155361
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
155362
|
+
secondaryBackgroundColor?: string | undefined;
|
|
155363
|
+
secondaryContrast?: number | undefined;
|
|
155364
|
+
isEditorWhite?: boolean | undefined;
|
|
155365
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
155366
|
+
} | undefined;
|
|
155007
155367
|
};
|
|
155008
155368
|
createdAt: Date;
|
|
155009
155369
|
isProtected: boolean;
|
|
@@ -162453,10 +162813,10 @@ declare const ForgeAgent: z.ZodObject<{
|
|
|
162453
162813
|
accessory2Type: string;
|
|
162454
162814
|
}>]>;
|
|
162455
162815
|
avatarUrl: z.ZodOptional<z.ZodString>;
|
|
162456
|
-
behavior: z.ZodEnum<["
|
|
162816
|
+
behavior: z.ZodEnum<["Coder", "Writer", "Designer"]>;
|
|
162457
162817
|
id: z.ZodString;
|
|
162458
162818
|
name: z.ZodString;
|
|
162459
|
-
personality: z.ZodEnum<["
|
|
162819
|
+
personality: z.ZodEnum<["Neutral", "Assertive", "Crazy"]>;
|
|
162460
162820
|
projectId: z.ZodString;
|
|
162461
162821
|
}, "strip", z.ZodTypeAny, {
|
|
162462
162822
|
avatar: string | {
|
|
@@ -162467,9 +162827,9 @@ declare const ForgeAgent: z.ZodObject<{
|
|
|
162467
162827
|
};
|
|
162468
162828
|
id: string;
|
|
162469
162829
|
name: string;
|
|
162470
|
-
behavior: "
|
|
162830
|
+
behavior: "Coder" | "Writer" | "Designer";
|
|
162471
162831
|
projectId: string;
|
|
162472
|
-
personality: "
|
|
162832
|
+
personality: "Neutral" | "Assertive" | "Crazy";
|
|
162473
162833
|
avatarUrl?: string | undefined;
|
|
162474
162834
|
}, {
|
|
162475
162835
|
avatar: string | {
|
|
@@ -162480,9 +162840,9 @@ declare const ForgeAgent: z.ZodObject<{
|
|
|
162480
162840
|
};
|
|
162481
162841
|
id: string;
|
|
162482
162842
|
name: string;
|
|
162483
|
-
behavior: "
|
|
162843
|
+
behavior: "Coder" | "Writer" | "Designer";
|
|
162484
162844
|
projectId: string;
|
|
162485
|
-
personality: "
|
|
162845
|
+
personality: "Neutral" | "Assertive" | "Crazy";
|
|
162486
162846
|
avatarUrl?: string | undefined;
|
|
162487
162847
|
}>;
|
|
162488
162848
|
type ForgeAgent = z.infer<typeof ForgeAgent>;
|
|
@@ -162818,10 +163178,10 @@ declare const ForgeIterationMessage: z.ZodObject<{
|
|
|
162818
163178
|
accessory2Type: string;
|
|
162819
163179
|
}>]>;
|
|
162820
163180
|
avatarUrl: z.ZodOptional<z.ZodString>;
|
|
162821
|
-
behavior: z.ZodEnum<["
|
|
163181
|
+
behavior: z.ZodEnum<["Coder", "Writer", "Designer"]>;
|
|
162822
163182
|
id: z.ZodString;
|
|
162823
163183
|
name: z.ZodString;
|
|
162824
|
-
personality: z.ZodEnum<["
|
|
163184
|
+
personality: z.ZodEnum<["Neutral", "Assertive", "Crazy"]>;
|
|
162825
163185
|
projectId: z.ZodString;
|
|
162826
163186
|
}, "strip", z.ZodTypeAny, {
|
|
162827
163187
|
avatar: string | {
|
|
@@ -162832,9 +163192,9 @@ declare const ForgeIterationMessage: z.ZodObject<{
|
|
|
162832
163192
|
};
|
|
162833
163193
|
id: string;
|
|
162834
163194
|
name: string;
|
|
162835
|
-
behavior: "
|
|
163195
|
+
behavior: "Coder" | "Writer" | "Designer";
|
|
162836
163196
|
projectId: string;
|
|
162837
|
-
personality: "
|
|
163197
|
+
personality: "Neutral" | "Assertive" | "Crazy";
|
|
162838
163198
|
avatarUrl?: string | undefined;
|
|
162839
163199
|
}, {
|
|
162840
163200
|
avatar: string | {
|
|
@@ -162845,13 +163205,13 @@ declare const ForgeIterationMessage: z.ZodObject<{
|
|
|
162845
163205
|
};
|
|
162846
163206
|
id: string;
|
|
162847
163207
|
name: string;
|
|
162848
|
-
behavior: "
|
|
163208
|
+
behavior: "Coder" | "Writer" | "Designer";
|
|
162849
163209
|
projectId: string;
|
|
162850
|
-
personality: "
|
|
163210
|
+
personality: "Neutral" | "Assertive" | "Crazy";
|
|
162851
163211
|
avatarUrl?: string | undefined;
|
|
162852
163212
|
}>>;
|
|
162853
163213
|
projectIterationId: z.ZodString;
|
|
162854
|
-
role: z.ZodEnum<["
|
|
163214
|
+
role: z.ZodEnum<["Editor", "Viewer"]>;
|
|
162855
163215
|
type: z.ZodEnum<["Agent", "User"]>;
|
|
162856
163216
|
userId: z.ZodOptional<z.ZodString>;
|
|
162857
163217
|
user: z.ZodOptional<z.ZodObject<{
|
|
@@ -162902,8 +163262,7 @@ declare const ForgeIterationMessage: z.ZodObject<{
|
|
|
162902
163262
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
162903
163263
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
162904
163264
|
}>>;
|
|
162905
|
-
theme: z.ZodOptional<z.ZodObject<{
|
|
162906
|
-
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
|
|
163265
|
+
theme: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
162907
163266
|
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
162908
163267
|
accentColor: z.ZodOptional<z.ZodString>;
|
|
162909
163268
|
contrast: z.ZodOptional<z.ZodNumber>;
|
|
@@ -162911,24 +163270,55 @@ declare const ForgeIterationMessage: z.ZodObject<{
|
|
|
162911
163270
|
secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
162912
163271
|
secondaryContrast: z.ZodOptional<z.ZodNumber>;
|
|
162913
163272
|
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
162914
|
-
},
|
|
163273
|
+
}, {
|
|
163274
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
|
|
163275
|
+
}>, "strip", z.ZodTypeAny, {
|
|
162915
163276
|
backgroundColor?: string | undefined;
|
|
162916
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
162917
163277
|
accentColor?: string | undefined;
|
|
162918
163278
|
contrast?: number | undefined;
|
|
162919
163279
|
isSecondaryEnabled?: boolean | undefined;
|
|
162920
163280
|
secondaryBackgroundColor?: string | undefined;
|
|
162921
163281
|
secondaryContrast?: number | undefined;
|
|
162922
163282
|
isEditorWhite?: boolean | undefined;
|
|
163283
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
162923
163284
|
}, {
|
|
162924
163285
|
backgroundColor?: string | undefined;
|
|
163286
|
+
accentColor?: string | undefined;
|
|
163287
|
+
contrast?: number | undefined;
|
|
163288
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
163289
|
+
secondaryBackgroundColor?: string | undefined;
|
|
163290
|
+
secondaryContrast?: number | undefined;
|
|
163291
|
+
isEditorWhite?: boolean | undefined;
|
|
162925
163292
|
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
163293
|
+
}>>;
|
|
163294
|
+
portalTheme: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
163295
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
163296
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
|
163297
|
+
contrast: z.ZodOptional<z.ZodNumber>;
|
|
163298
|
+
isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
163299
|
+
secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
163300
|
+
secondaryContrast: z.ZodOptional<z.ZodNumber>;
|
|
163301
|
+
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
163302
|
+
}, {
|
|
163303
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia", "DefaultPortal"]>>;
|
|
163304
|
+
}>, "strip", z.ZodTypeAny, {
|
|
163305
|
+
backgroundColor?: string | undefined;
|
|
163306
|
+
accentColor?: string | undefined;
|
|
163307
|
+
contrast?: number | undefined;
|
|
163308
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
163309
|
+
secondaryBackgroundColor?: string | undefined;
|
|
163310
|
+
secondaryContrast?: number | undefined;
|
|
163311
|
+
isEditorWhite?: boolean | undefined;
|
|
163312
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
163313
|
+
}, {
|
|
163314
|
+
backgroundColor?: string | undefined;
|
|
162926
163315
|
accentColor?: string | undefined;
|
|
162927
163316
|
contrast?: number | undefined;
|
|
162928
163317
|
isSecondaryEnabled?: boolean | undefined;
|
|
162929
163318
|
secondaryBackgroundColor?: string | undefined;
|
|
162930
163319
|
secondaryContrast?: number | undefined;
|
|
162931
163320
|
isEditorWhite?: boolean | undefined;
|
|
163321
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
162932
163322
|
}>>;
|
|
162933
163323
|
}, "strip", z.ZodTypeAny, {
|
|
162934
163324
|
name: string;
|
|
@@ -162936,13 +163326,13 @@ declare const ForgeIterationMessage: z.ZodObject<{
|
|
|
162936
163326
|
nickname?: string | undefined;
|
|
162937
163327
|
theme?: {
|
|
162938
163328
|
backgroundColor?: string | undefined;
|
|
162939
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
162940
163329
|
accentColor?: string | undefined;
|
|
162941
163330
|
contrast?: number | undefined;
|
|
162942
163331
|
isSecondaryEnabled?: boolean | undefined;
|
|
162943
163332
|
secondaryBackgroundColor?: string | undefined;
|
|
162944
163333
|
secondaryContrast?: number | undefined;
|
|
162945
163334
|
isEditorWhite?: boolean | undefined;
|
|
163335
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
162946
163336
|
} | undefined;
|
|
162947
163337
|
onboarding?: {
|
|
162948
163338
|
companyName?: string | undefined;
|
|
@@ -162958,19 +163348,29 @@ declare const ForgeIterationMessage: z.ZodObject<{
|
|
|
162958
163348
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
162959
163349
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
162960
163350
|
} | undefined;
|
|
163351
|
+
portalTheme?: {
|
|
163352
|
+
backgroundColor?: string | undefined;
|
|
163353
|
+
accentColor?: string | undefined;
|
|
163354
|
+
contrast?: number | undefined;
|
|
163355
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
163356
|
+
secondaryBackgroundColor?: string | undefined;
|
|
163357
|
+
secondaryContrast?: number | undefined;
|
|
163358
|
+
isEditorWhite?: boolean | undefined;
|
|
163359
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
163360
|
+
} | undefined;
|
|
162961
163361
|
}, {
|
|
162962
163362
|
name: string;
|
|
162963
163363
|
avatar?: string | undefined;
|
|
162964
163364
|
nickname?: string | undefined;
|
|
162965
163365
|
theme?: {
|
|
162966
163366
|
backgroundColor?: string | undefined;
|
|
162967
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
162968
163367
|
accentColor?: string | undefined;
|
|
162969
163368
|
contrast?: number | undefined;
|
|
162970
163369
|
isSecondaryEnabled?: boolean | undefined;
|
|
162971
163370
|
secondaryBackgroundColor?: string | undefined;
|
|
162972
163371
|
secondaryContrast?: number | undefined;
|
|
162973
163372
|
isEditorWhite?: boolean | undefined;
|
|
163373
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
162974
163374
|
} | undefined;
|
|
162975
163375
|
onboarding?: {
|
|
162976
163376
|
companyName?: string | undefined;
|
|
@@ -162986,6 +163386,16 @@ declare const ForgeIterationMessage: z.ZodObject<{
|
|
|
162986
163386
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
162987
163387
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
162988
163388
|
} | undefined;
|
|
163389
|
+
portalTheme?: {
|
|
163390
|
+
backgroundColor?: string | undefined;
|
|
163391
|
+
accentColor?: string | undefined;
|
|
163392
|
+
contrast?: number | undefined;
|
|
163393
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
163394
|
+
secondaryBackgroundColor?: string | undefined;
|
|
163395
|
+
secondaryContrast?: number | undefined;
|
|
163396
|
+
isEditorWhite?: boolean | undefined;
|
|
163397
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
163398
|
+
} | undefined;
|
|
162989
163399
|
}>;
|
|
162990
163400
|
loggedOutAt: z.ZodOptional<z.ZodDate>;
|
|
162991
163401
|
isProtected: z.ZodBoolean;
|
|
@@ -162999,13 +163409,13 @@ declare const ForgeIterationMessage: z.ZodObject<{
|
|
|
162999
163409
|
nickname?: string | undefined;
|
|
163000
163410
|
theme?: {
|
|
163001
163411
|
backgroundColor?: string | undefined;
|
|
163002
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
163003
163412
|
accentColor?: string | undefined;
|
|
163004
163413
|
contrast?: number | undefined;
|
|
163005
163414
|
isSecondaryEnabled?: boolean | undefined;
|
|
163006
163415
|
secondaryBackgroundColor?: string | undefined;
|
|
163007
163416
|
secondaryContrast?: number | undefined;
|
|
163008
163417
|
isEditorWhite?: boolean | undefined;
|
|
163418
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
163009
163419
|
} | undefined;
|
|
163010
163420
|
onboarding?: {
|
|
163011
163421
|
companyName?: string | undefined;
|
|
@@ -163021,6 +163431,16 @@ declare const ForgeIterationMessage: z.ZodObject<{
|
|
|
163021
163431
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
163022
163432
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
163023
163433
|
} | undefined;
|
|
163434
|
+
portalTheme?: {
|
|
163435
|
+
backgroundColor?: string | undefined;
|
|
163436
|
+
accentColor?: string | undefined;
|
|
163437
|
+
contrast?: number | undefined;
|
|
163438
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
163439
|
+
secondaryBackgroundColor?: string | undefined;
|
|
163440
|
+
secondaryContrast?: number | undefined;
|
|
163441
|
+
isEditorWhite?: boolean | undefined;
|
|
163442
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
163443
|
+
} | undefined;
|
|
163024
163444
|
};
|
|
163025
163445
|
createdAt: Date;
|
|
163026
163446
|
isProtected: boolean;
|
|
@@ -163035,13 +163455,13 @@ declare const ForgeIterationMessage: z.ZodObject<{
|
|
|
163035
163455
|
nickname?: string | undefined;
|
|
163036
163456
|
theme?: {
|
|
163037
163457
|
backgroundColor?: string | undefined;
|
|
163038
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
163039
163458
|
accentColor?: string | undefined;
|
|
163040
163459
|
contrast?: number | undefined;
|
|
163041
163460
|
isSecondaryEnabled?: boolean | undefined;
|
|
163042
163461
|
secondaryBackgroundColor?: string | undefined;
|
|
163043
163462
|
secondaryContrast?: number | undefined;
|
|
163044
163463
|
isEditorWhite?: boolean | undefined;
|
|
163464
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
163045
163465
|
} | undefined;
|
|
163046
163466
|
onboarding?: {
|
|
163047
163467
|
companyName?: string | undefined;
|
|
@@ -163057,6 +163477,16 @@ declare const ForgeIterationMessage: z.ZodObject<{
|
|
|
163057
163477
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
163058
163478
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
163059
163479
|
} | undefined;
|
|
163480
|
+
portalTheme?: {
|
|
163481
|
+
backgroundColor?: string | undefined;
|
|
163482
|
+
accentColor?: string | undefined;
|
|
163483
|
+
contrast?: number | undefined;
|
|
163484
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
163485
|
+
secondaryBackgroundColor?: string | undefined;
|
|
163486
|
+
secondaryContrast?: number | undefined;
|
|
163487
|
+
isEditorWhite?: boolean | undefined;
|
|
163488
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
163489
|
+
} | undefined;
|
|
163060
163490
|
};
|
|
163061
163491
|
createdAt: Date;
|
|
163062
163492
|
isProtected: boolean;
|
|
@@ -163066,7 +163496,7 @@ declare const ForgeIterationMessage: z.ZodObject<{
|
|
|
163066
163496
|
}, "strip", z.ZodTypeAny, {
|
|
163067
163497
|
type: "User" | "Agent";
|
|
163068
163498
|
id: string;
|
|
163069
|
-
role: "
|
|
163499
|
+
role: "Viewer" | "Editor";
|
|
163070
163500
|
projectIterationId: string;
|
|
163071
163501
|
user?: {
|
|
163072
163502
|
email: string;
|
|
@@ -163077,13 +163507,13 @@ declare const ForgeIterationMessage: z.ZodObject<{
|
|
|
163077
163507
|
nickname?: string | undefined;
|
|
163078
163508
|
theme?: {
|
|
163079
163509
|
backgroundColor?: string | undefined;
|
|
163080
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
163081
163510
|
accentColor?: string | undefined;
|
|
163082
163511
|
contrast?: number | undefined;
|
|
163083
163512
|
isSecondaryEnabled?: boolean | undefined;
|
|
163084
163513
|
secondaryBackgroundColor?: string | undefined;
|
|
163085
163514
|
secondaryContrast?: number | undefined;
|
|
163086
163515
|
isEditorWhite?: boolean | undefined;
|
|
163516
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
163087
163517
|
} | undefined;
|
|
163088
163518
|
onboarding?: {
|
|
163089
163519
|
companyName?: string | undefined;
|
|
@@ -163099,6 +163529,16 @@ declare const ForgeIterationMessage: z.ZodObject<{
|
|
|
163099
163529
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
163100
163530
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
163101
163531
|
} | undefined;
|
|
163532
|
+
portalTheme?: {
|
|
163533
|
+
backgroundColor?: string | undefined;
|
|
163534
|
+
accentColor?: string | undefined;
|
|
163535
|
+
contrast?: number | undefined;
|
|
163536
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
163537
|
+
secondaryBackgroundColor?: string | undefined;
|
|
163538
|
+
secondaryContrast?: number | undefined;
|
|
163539
|
+
isEditorWhite?: boolean | undefined;
|
|
163540
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
163541
|
+
} | undefined;
|
|
163102
163542
|
};
|
|
163103
163543
|
createdAt: Date;
|
|
163104
163544
|
isProtected: boolean;
|
|
@@ -163116,15 +163556,15 @@ declare const ForgeIterationMessage: z.ZodObject<{
|
|
|
163116
163556
|
};
|
|
163117
163557
|
id: string;
|
|
163118
163558
|
name: string;
|
|
163119
|
-
behavior: "
|
|
163559
|
+
behavior: "Coder" | "Writer" | "Designer";
|
|
163120
163560
|
projectId: string;
|
|
163121
|
-
personality: "
|
|
163561
|
+
personality: "Neutral" | "Assertive" | "Crazy";
|
|
163122
163562
|
avatarUrl?: string | undefined;
|
|
163123
163563
|
} | undefined;
|
|
163124
163564
|
}, {
|
|
163125
163565
|
type: "User" | "Agent";
|
|
163126
163566
|
id: string;
|
|
163127
|
-
role: "
|
|
163567
|
+
role: "Viewer" | "Editor";
|
|
163128
163568
|
projectIterationId: string;
|
|
163129
163569
|
user?: {
|
|
163130
163570
|
email: string;
|
|
@@ -163135,13 +163575,13 @@ declare const ForgeIterationMessage: z.ZodObject<{
|
|
|
163135
163575
|
nickname?: string | undefined;
|
|
163136
163576
|
theme?: {
|
|
163137
163577
|
backgroundColor?: string | undefined;
|
|
163138
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
163139
163578
|
accentColor?: string | undefined;
|
|
163140
163579
|
contrast?: number | undefined;
|
|
163141
163580
|
isSecondaryEnabled?: boolean | undefined;
|
|
163142
163581
|
secondaryBackgroundColor?: string | undefined;
|
|
163143
163582
|
secondaryContrast?: number | undefined;
|
|
163144
163583
|
isEditorWhite?: boolean | undefined;
|
|
163584
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
163145
163585
|
} | undefined;
|
|
163146
163586
|
onboarding?: {
|
|
163147
163587
|
companyName?: string | undefined;
|
|
@@ -163157,6 +163597,16 @@ declare const ForgeIterationMessage: z.ZodObject<{
|
|
|
163157
163597
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
163158
163598
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
163159
163599
|
} | undefined;
|
|
163600
|
+
portalTheme?: {
|
|
163601
|
+
backgroundColor?: string | undefined;
|
|
163602
|
+
accentColor?: string | undefined;
|
|
163603
|
+
contrast?: number | undefined;
|
|
163604
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
163605
|
+
secondaryBackgroundColor?: string | undefined;
|
|
163606
|
+
secondaryContrast?: number | undefined;
|
|
163607
|
+
isEditorWhite?: boolean | undefined;
|
|
163608
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
163609
|
+
} | undefined;
|
|
163160
163610
|
};
|
|
163161
163611
|
createdAt: Date;
|
|
163162
163612
|
isProtected: boolean;
|
|
@@ -163174,9 +163624,9 @@ declare const ForgeIterationMessage: z.ZodObject<{
|
|
|
163174
163624
|
};
|
|
163175
163625
|
id: string;
|
|
163176
163626
|
name: string;
|
|
163177
|
-
behavior: "
|
|
163627
|
+
behavior: "Coder" | "Writer" | "Designer";
|
|
163178
163628
|
projectId: string;
|
|
163179
|
-
personality: "
|
|
163629
|
+
personality: "Neutral" | "Assertive" | "Crazy";
|
|
163180
163630
|
avatarUrl?: string | undefined;
|
|
163181
163631
|
} | undefined;
|
|
163182
163632
|
}>;
|
|
@@ -163194,10 +163644,10 @@ declare const ForgeIterationMessage: z.ZodObject<{
|
|
|
163194
163644
|
name: string;
|
|
163195
163645
|
text: string;
|
|
163196
163646
|
}>, "many">>;
|
|
163197
|
-
type: z.ZodEnum<["
|
|
163647
|
+
type: z.ZodEnum<["Note", "Action", "Steps"]>;
|
|
163198
163648
|
text: z.ZodString;
|
|
163199
163649
|
}, "strip", z.ZodTypeAny, {
|
|
163200
|
-
type: "
|
|
163650
|
+
type: "Note" | "Action" | "Steps";
|
|
163201
163651
|
id: string;
|
|
163202
163652
|
createdAt: Date;
|
|
163203
163653
|
text: string;
|
|
@@ -163206,7 +163656,7 @@ declare const ForgeIterationMessage: z.ZodObject<{
|
|
|
163206
163656
|
participant: {
|
|
163207
163657
|
type: "User" | "Agent";
|
|
163208
163658
|
id: string;
|
|
163209
|
-
role: "
|
|
163659
|
+
role: "Viewer" | "Editor";
|
|
163210
163660
|
projectIterationId: string;
|
|
163211
163661
|
user?: {
|
|
163212
163662
|
email: string;
|
|
@@ -163217,13 +163667,13 @@ declare const ForgeIterationMessage: z.ZodObject<{
|
|
|
163217
163667
|
nickname?: string | undefined;
|
|
163218
163668
|
theme?: {
|
|
163219
163669
|
backgroundColor?: string | undefined;
|
|
163220
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
163221
163670
|
accentColor?: string | undefined;
|
|
163222
163671
|
contrast?: number | undefined;
|
|
163223
163672
|
isSecondaryEnabled?: boolean | undefined;
|
|
163224
163673
|
secondaryBackgroundColor?: string | undefined;
|
|
163225
163674
|
secondaryContrast?: number | undefined;
|
|
163226
163675
|
isEditorWhite?: boolean | undefined;
|
|
163676
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
163227
163677
|
} | undefined;
|
|
163228
163678
|
onboarding?: {
|
|
163229
163679
|
companyName?: string | undefined;
|
|
@@ -163239,6 +163689,16 @@ declare const ForgeIterationMessage: z.ZodObject<{
|
|
|
163239
163689
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
163240
163690
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
163241
163691
|
} | undefined;
|
|
163692
|
+
portalTheme?: {
|
|
163693
|
+
backgroundColor?: string | undefined;
|
|
163694
|
+
accentColor?: string | undefined;
|
|
163695
|
+
contrast?: number | undefined;
|
|
163696
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
163697
|
+
secondaryBackgroundColor?: string | undefined;
|
|
163698
|
+
secondaryContrast?: number | undefined;
|
|
163699
|
+
isEditorWhite?: boolean | undefined;
|
|
163700
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
163701
|
+
} | undefined;
|
|
163242
163702
|
};
|
|
163243
163703
|
createdAt: Date;
|
|
163244
163704
|
isProtected: boolean;
|
|
@@ -163256,9 +163716,9 @@ declare const ForgeIterationMessage: z.ZodObject<{
|
|
|
163256
163716
|
};
|
|
163257
163717
|
id: string;
|
|
163258
163718
|
name: string;
|
|
163259
|
-
behavior: "
|
|
163719
|
+
behavior: "Coder" | "Writer" | "Designer";
|
|
163260
163720
|
projectId: string;
|
|
163261
|
-
personality: "
|
|
163721
|
+
personality: "Neutral" | "Assertive" | "Crazy";
|
|
163262
163722
|
avatarUrl?: string | undefined;
|
|
163263
163723
|
} | undefined;
|
|
163264
163724
|
};
|
|
@@ -163268,7 +163728,7 @@ declare const ForgeIterationMessage: z.ZodObject<{
|
|
|
163268
163728
|
text: string;
|
|
163269
163729
|
}[] | undefined;
|
|
163270
163730
|
}, {
|
|
163271
|
-
type: "
|
|
163731
|
+
type: "Note" | "Action" | "Steps";
|
|
163272
163732
|
id: string;
|
|
163273
163733
|
createdAt: Date;
|
|
163274
163734
|
text: string;
|
|
@@ -163277,7 +163737,7 @@ declare const ForgeIterationMessage: z.ZodObject<{
|
|
|
163277
163737
|
participant: {
|
|
163278
163738
|
type: "User" | "Agent";
|
|
163279
163739
|
id: string;
|
|
163280
|
-
role: "
|
|
163740
|
+
role: "Viewer" | "Editor";
|
|
163281
163741
|
projectIterationId: string;
|
|
163282
163742
|
user?: {
|
|
163283
163743
|
email: string;
|
|
@@ -163288,13 +163748,13 @@ declare const ForgeIterationMessage: z.ZodObject<{
|
|
|
163288
163748
|
nickname?: string | undefined;
|
|
163289
163749
|
theme?: {
|
|
163290
163750
|
backgroundColor?: string | undefined;
|
|
163291
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
163292
163751
|
accentColor?: string | undefined;
|
|
163293
163752
|
contrast?: number | undefined;
|
|
163294
163753
|
isSecondaryEnabled?: boolean | undefined;
|
|
163295
163754
|
secondaryBackgroundColor?: string | undefined;
|
|
163296
163755
|
secondaryContrast?: number | undefined;
|
|
163297
163756
|
isEditorWhite?: boolean | undefined;
|
|
163757
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
163298
163758
|
} | undefined;
|
|
163299
163759
|
onboarding?: {
|
|
163300
163760
|
companyName?: string | undefined;
|
|
@@ -163310,6 +163770,16 @@ declare const ForgeIterationMessage: z.ZodObject<{
|
|
|
163310
163770
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
163311
163771
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
163312
163772
|
} | undefined;
|
|
163773
|
+
portalTheme?: {
|
|
163774
|
+
backgroundColor?: string | undefined;
|
|
163775
|
+
accentColor?: string | undefined;
|
|
163776
|
+
contrast?: number | undefined;
|
|
163777
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
163778
|
+
secondaryBackgroundColor?: string | undefined;
|
|
163779
|
+
secondaryContrast?: number | undefined;
|
|
163780
|
+
isEditorWhite?: boolean | undefined;
|
|
163781
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
163782
|
+
} | undefined;
|
|
163313
163783
|
};
|
|
163314
163784
|
createdAt: Date;
|
|
163315
163785
|
isProtected: boolean;
|
|
@@ -163327,9 +163797,9 @@ declare const ForgeIterationMessage: z.ZodObject<{
|
|
|
163327
163797
|
};
|
|
163328
163798
|
id: string;
|
|
163329
163799
|
name: string;
|
|
163330
|
-
behavior: "
|
|
163800
|
+
behavior: "Coder" | "Writer" | "Designer";
|
|
163331
163801
|
projectId: string;
|
|
163332
|
-
personality: "
|
|
163802
|
+
personality: "Neutral" | "Assertive" | "Crazy";
|
|
163333
163803
|
avatarUrl?: string | undefined;
|
|
163334
163804
|
} | undefined;
|
|
163335
163805
|
};
|
|
@@ -163374,10 +163844,10 @@ declare const ForgeParticipant: z.ZodObject<{
|
|
|
163374
163844
|
accessory2Type: string;
|
|
163375
163845
|
}>]>;
|
|
163376
163846
|
avatarUrl: z.ZodOptional<z.ZodString>;
|
|
163377
|
-
behavior: z.ZodEnum<["
|
|
163847
|
+
behavior: z.ZodEnum<["Coder", "Writer", "Designer"]>;
|
|
163378
163848
|
id: z.ZodString;
|
|
163379
163849
|
name: z.ZodString;
|
|
163380
|
-
personality: z.ZodEnum<["
|
|
163850
|
+
personality: z.ZodEnum<["Neutral", "Assertive", "Crazy"]>;
|
|
163381
163851
|
projectId: z.ZodString;
|
|
163382
163852
|
}, "strip", z.ZodTypeAny, {
|
|
163383
163853
|
avatar: string | {
|
|
@@ -163388,9 +163858,9 @@ declare const ForgeParticipant: z.ZodObject<{
|
|
|
163388
163858
|
};
|
|
163389
163859
|
id: string;
|
|
163390
163860
|
name: string;
|
|
163391
|
-
behavior: "
|
|
163861
|
+
behavior: "Coder" | "Writer" | "Designer";
|
|
163392
163862
|
projectId: string;
|
|
163393
|
-
personality: "
|
|
163863
|
+
personality: "Neutral" | "Assertive" | "Crazy";
|
|
163394
163864
|
avatarUrl?: string | undefined;
|
|
163395
163865
|
}, {
|
|
163396
163866
|
avatar: string | {
|
|
@@ -163401,13 +163871,13 @@ declare const ForgeParticipant: z.ZodObject<{
|
|
|
163401
163871
|
};
|
|
163402
163872
|
id: string;
|
|
163403
163873
|
name: string;
|
|
163404
|
-
behavior: "
|
|
163874
|
+
behavior: "Coder" | "Writer" | "Designer";
|
|
163405
163875
|
projectId: string;
|
|
163406
|
-
personality: "
|
|
163876
|
+
personality: "Neutral" | "Assertive" | "Crazy";
|
|
163407
163877
|
avatarUrl?: string | undefined;
|
|
163408
163878
|
}>>;
|
|
163409
163879
|
projectIterationId: z.ZodString;
|
|
163410
|
-
role: z.ZodEnum<["
|
|
163880
|
+
role: z.ZodEnum<["Editor", "Viewer"]>;
|
|
163411
163881
|
type: z.ZodEnum<["Agent", "User"]>;
|
|
163412
163882
|
userId: z.ZodOptional<z.ZodString>;
|
|
163413
163883
|
user: z.ZodOptional<z.ZodObject<{
|
|
@@ -163458,8 +163928,7 @@ declare const ForgeParticipant: z.ZodObject<{
|
|
|
163458
163928
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
163459
163929
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
163460
163930
|
}>>;
|
|
163461
|
-
theme: z.ZodOptional<z.ZodObject<{
|
|
163462
|
-
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
|
|
163931
|
+
theme: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
163463
163932
|
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
163464
163933
|
accentColor: z.ZodOptional<z.ZodString>;
|
|
163465
163934
|
contrast: z.ZodOptional<z.ZodNumber>;
|
|
@@ -163467,24 +163936,55 @@ declare const ForgeParticipant: z.ZodObject<{
|
|
|
163467
163936
|
secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
163468
163937
|
secondaryContrast: z.ZodOptional<z.ZodNumber>;
|
|
163469
163938
|
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
163470
|
-
},
|
|
163939
|
+
}, {
|
|
163940
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
|
|
163941
|
+
}>, "strip", z.ZodTypeAny, {
|
|
163471
163942
|
backgroundColor?: string | undefined;
|
|
163472
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
163473
163943
|
accentColor?: string | undefined;
|
|
163474
163944
|
contrast?: number | undefined;
|
|
163475
163945
|
isSecondaryEnabled?: boolean | undefined;
|
|
163476
163946
|
secondaryBackgroundColor?: string | undefined;
|
|
163477
163947
|
secondaryContrast?: number | undefined;
|
|
163478
163948
|
isEditorWhite?: boolean | undefined;
|
|
163949
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
163479
163950
|
}, {
|
|
163480
163951
|
backgroundColor?: string | undefined;
|
|
163952
|
+
accentColor?: string | undefined;
|
|
163953
|
+
contrast?: number | undefined;
|
|
163954
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
163955
|
+
secondaryBackgroundColor?: string | undefined;
|
|
163956
|
+
secondaryContrast?: number | undefined;
|
|
163957
|
+
isEditorWhite?: boolean | undefined;
|
|
163481
163958
|
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
163959
|
+
}>>;
|
|
163960
|
+
portalTheme: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
163961
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
163962
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
|
163963
|
+
contrast: z.ZodOptional<z.ZodNumber>;
|
|
163964
|
+
isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
163965
|
+
secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
163966
|
+
secondaryContrast: z.ZodOptional<z.ZodNumber>;
|
|
163967
|
+
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
163968
|
+
}, {
|
|
163969
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia", "DefaultPortal"]>>;
|
|
163970
|
+
}>, "strip", z.ZodTypeAny, {
|
|
163971
|
+
backgroundColor?: string | undefined;
|
|
163972
|
+
accentColor?: string | undefined;
|
|
163973
|
+
contrast?: number | undefined;
|
|
163974
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
163975
|
+
secondaryBackgroundColor?: string | undefined;
|
|
163976
|
+
secondaryContrast?: number | undefined;
|
|
163977
|
+
isEditorWhite?: boolean | undefined;
|
|
163978
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
163979
|
+
}, {
|
|
163980
|
+
backgroundColor?: string | undefined;
|
|
163482
163981
|
accentColor?: string | undefined;
|
|
163483
163982
|
contrast?: number | undefined;
|
|
163484
163983
|
isSecondaryEnabled?: boolean | undefined;
|
|
163485
163984
|
secondaryBackgroundColor?: string | undefined;
|
|
163486
163985
|
secondaryContrast?: number | undefined;
|
|
163487
163986
|
isEditorWhite?: boolean | undefined;
|
|
163987
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
163488
163988
|
}>>;
|
|
163489
163989
|
}, "strip", z.ZodTypeAny, {
|
|
163490
163990
|
name: string;
|
|
@@ -163492,13 +163992,13 @@ declare const ForgeParticipant: z.ZodObject<{
|
|
|
163492
163992
|
nickname?: string | undefined;
|
|
163493
163993
|
theme?: {
|
|
163494
163994
|
backgroundColor?: string | undefined;
|
|
163495
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
163496
163995
|
accentColor?: string | undefined;
|
|
163497
163996
|
contrast?: number | undefined;
|
|
163498
163997
|
isSecondaryEnabled?: boolean | undefined;
|
|
163499
163998
|
secondaryBackgroundColor?: string | undefined;
|
|
163500
163999
|
secondaryContrast?: number | undefined;
|
|
163501
164000
|
isEditorWhite?: boolean | undefined;
|
|
164001
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
163502
164002
|
} | undefined;
|
|
163503
164003
|
onboarding?: {
|
|
163504
164004
|
companyName?: string | undefined;
|
|
@@ -163514,19 +164014,29 @@ declare const ForgeParticipant: z.ZodObject<{
|
|
|
163514
164014
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
163515
164015
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
163516
164016
|
} | undefined;
|
|
164017
|
+
portalTheme?: {
|
|
164018
|
+
backgroundColor?: string | undefined;
|
|
164019
|
+
accentColor?: string | undefined;
|
|
164020
|
+
contrast?: number | undefined;
|
|
164021
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
164022
|
+
secondaryBackgroundColor?: string | undefined;
|
|
164023
|
+
secondaryContrast?: number | undefined;
|
|
164024
|
+
isEditorWhite?: boolean | undefined;
|
|
164025
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
164026
|
+
} | undefined;
|
|
163517
164027
|
}, {
|
|
163518
164028
|
name: string;
|
|
163519
164029
|
avatar?: string | undefined;
|
|
163520
164030
|
nickname?: string | undefined;
|
|
163521
164031
|
theme?: {
|
|
163522
164032
|
backgroundColor?: string | undefined;
|
|
163523
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
163524
164033
|
accentColor?: string | undefined;
|
|
163525
164034
|
contrast?: number | undefined;
|
|
163526
164035
|
isSecondaryEnabled?: boolean | undefined;
|
|
163527
164036
|
secondaryBackgroundColor?: string | undefined;
|
|
163528
164037
|
secondaryContrast?: number | undefined;
|
|
163529
164038
|
isEditorWhite?: boolean | undefined;
|
|
164039
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
163530
164040
|
} | undefined;
|
|
163531
164041
|
onboarding?: {
|
|
163532
164042
|
companyName?: string | undefined;
|
|
@@ -163542,6 +164052,16 @@ declare const ForgeParticipant: z.ZodObject<{
|
|
|
163542
164052
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
163543
164053
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
163544
164054
|
} | undefined;
|
|
164055
|
+
portalTheme?: {
|
|
164056
|
+
backgroundColor?: string | undefined;
|
|
164057
|
+
accentColor?: string | undefined;
|
|
164058
|
+
contrast?: number | undefined;
|
|
164059
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
164060
|
+
secondaryBackgroundColor?: string | undefined;
|
|
164061
|
+
secondaryContrast?: number | undefined;
|
|
164062
|
+
isEditorWhite?: boolean | undefined;
|
|
164063
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
164064
|
+
} | undefined;
|
|
163545
164065
|
}>;
|
|
163546
164066
|
loggedOutAt: z.ZodOptional<z.ZodDate>;
|
|
163547
164067
|
isProtected: z.ZodBoolean;
|
|
@@ -163555,13 +164075,13 @@ declare const ForgeParticipant: z.ZodObject<{
|
|
|
163555
164075
|
nickname?: string | undefined;
|
|
163556
164076
|
theme?: {
|
|
163557
164077
|
backgroundColor?: string | undefined;
|
|
163558
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
163559
164078
|
accentColor?: string | undefined;
|
|
163560
164079
|
contrast?: number | undefined;
|
|
163561
164080
|
isSecondaryEnabled?: boolean | undefined;
|
|
163562
164081
|
secondaryBackgroundColor?: string | undefined;
|
|
163563
164082
|
secondaryContrast?: number | undefined;
|
|
163564
164083
|
isEditorWhite?: boolean | undefined;
|
|
164084
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
163565
164085
|
} | undefined;
|
|
163566
164086
|
onboarding?: {
|
|
163567
164087
|
companyName?: string | undefined;
|
|
@@ -163577,6 +164097,16 @@ declare const ForgeParticipant: z.ZodObject<{
|
|
|
163577
164097
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
163578
164098
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
163579
164099
|
} | undefined;
|
|
164100
|
+
portalTheme?: {
|
|
164101
|
+
backgroundColor?: string | undefined;
|
|
164102
|
+
accentColor?: string | undefined;
|
|
164103
|
+
contrast?: number | undefined;
|
|
164104
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
164105
|
+
secondaryBackgroundColor?: string | undefined;
|
|
164106
|
+
secondaryContrast?: number | undefined;
|
|
164107
|
+
isEditorWhite?: boolean | undefined;
|
|
164108
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
164109
|
+
} | undefined;
|
|
163580
164110
|
};
|
|
163581
164111
|
createdAt: Date;
|
|
163582
164112
|
isProtected: boolean;
|
|
@@ -163591,13 +164121,13 @@ declare const ForgeParticipant: z.ZodObject<{
|
|
|
163591
164121
|
nickname?: string | undefined;
|
|
163592
164122
|
theme?: {
|
|
163593
164123
|
backgroundColor?: string | undefined;
|
|
163594
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
163595
164124
|
accentColor?: string | undefined;
|
|
163596
164125
|
contrast?: number | undefined;
|
|
163597
164126
|
isSecondaryEnabled?: boolean | undefined;
|
|
163598
164127
|
secondaryBackgroundColor?: string | undefined;
|
|
163599
164128
|
secondaryContrast?: number | undefined;
|
|
163600
164129
|
isEditorWhite?: boolean | undefined;
|
|
164130
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
163601
164131
|
} | undefined;
|
|
163602
164132
|
onboarding?: {
|
|
163603
164133
|
companyName?: string | undefined;
|
|
@@ -163613,6 +164143,16 @@ declare const ForgeParticipant: z.ZodObject<{
|
|
|
163613
164143
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
163614
164144
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
163615
164145
|
} | undefined;
|
|
164146
|
+
portalTheme?: {
|
|
164147
|
+
backgroundColor?: string | undefined;
|
|
164148
|
+
accentColor?: string | undefined;
|
|
164149
|
+
contrast?: number | undefined;
|
|
164150
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
164151
|
+
secondaryBackgroundColor?: string | undefined;
|
|
164152
|
+
secondaryContrast?: number | undefined;
|
|
164153
|
+
isEditorWhite?: boolean | undefined;
|
|
164154
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
164155
|
+
} | undefined;
|
|
163616
164156
|
};
|
|
163617
164157
|
createdAt: Date;
|
|
163618
164158
|
isProtected: boolean;
|
|
@@ -163622,7 +164162,7 @@ declare const ForgeParticipant: z.ZodObject<{
|
|
|
163622
164162
|
}, "strip", z.ZodTypeAny, {
|
|
163623
164163
|
type: "User" | "Agent";
|
|
163624
164164
|
id: string;
|
|
163625
|
-
role: "
|
|
164165
|
+
role: "Viewer" | "Editor";
|
|
163626
164166
|
projectIterationId: string;
|
|
163627
164167
|
user?: {
|
|
163628
164168
|
email: string;
|
|
@@ -163633,13 +164173,13 @@ declare const ForgeParticipant: z.ZodObject<{
|
|
|
163633
164173
|
nickname?: string | undefined;
|
|
163634
164174
|
theme?: {
|
|
163635
164175
|
backgroundColor?: string | undefined;
|
|
163636
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
163637
164176
|
accentColor?: string | undefined;
|
|
163638
164177
|
contrast?: number | undefined;
|
|
163639
164178
|
isSecondaryEnabled?: boolean | undefined;
|
|
163640
164179
|
secondaryBackgroundColor?: string | undefined;
|
|
163641
164180
|
secondaryContrast?: number | undefined;
|
|
163642
164181
|
isEditorWhite?: boolean | undefined;
|
|
164182
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
163643
164183
|
} | undefined;
|
|
163644
164184
|
onboarding?: {
|
|
163645
164185
|
companyName?: string | undefined;
|
|
@@ -163655,6 +164195,16 @@ declare const ForgeParticipant: z.ZodObject<{
|
|
|
163655
164195
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
163656
164196
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
163657
164197
|
} | undefined;
|
|
164198
|
+
portalTheme?: {
|
|
164199
|
+
backgroundColor?: string | undefined;
|
|
164200
|
+
accentColor?: string | undefined;
|
|
164201
|
+
contrast?: number | undefined;
|
|
164202
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
164203
|
+
secondaryBackgroundColor?: string | undefined;
|
|
164204
|
+
secondaryContrast?: number | undefined;
|
|
164205
|
+
isEditorWhite?: boolean | undefined;
|
|
164206
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
164207
|
+
} | undefined;
|
|
163658
164208
|
};
|
|
163659
164209
|
createdAt: Date;
|
|
163660
164210
|
isProtected: boolean;
|
|
@@ -163672,15 +164222,15 @@ declare const ForgeParticipant: z.ZodObject<{
|
|
|
163672
164222
|
};
|
|
163673
164223
|
id: string;
|
|
163674
164224
|
name: string;
|
|
163675
|
-
behavior: "
|
|
164225
|
+
behavior: "Coder" | "Writer" | "Designer";
|
|
163676
164226
|
projectId: string;
|
|
163677
|
-
personality: "
|
|
164227
|
+
personality: "Neutral" | "Assertive" | "Crazy";
|
|
163678
164228
|
avatarUrl?: string | undefined;
|
|
163679
164229
|
} | undefined;
|
|
163680
164230
|
}, {
|
|
163681
164231
|
type: "User" | "Agent";
|
|
163682
164232
|
id: string;
|
|
163683
|
-
role: "
|
|
164233
|
+
role: "Viewer" | "Editor";
|
|
163684
164234
|
projectIterationId: string;
|
|
163685
164235
|
user?: {
|
|
163686
164236
|
email: string;
|
|
@@ -163691,13 +164241,13 @@ declare const ForgeParticipant: z.ZodObject<{
|
|
|
163691
164241
|
nickname?: string | undefined;
|
|
163692
164242
|
theme?: {
|
|
163693
164243
|
backgroundColor?: string | undefined;
|
|
163694
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
163695
164244
|
accentColor?: string | undefined;
|
|
163696
164245
|
contrast?: number | undefined;
|
|
163697
164246
|
isSecondaryEnabled?: boolean | undefined;
|
|
163698
164247
|
secondaryBackgroundColor?: string | undefined;
|
|
163699
164248
|
secondaryContrast?: number | undefined;
|
|
163700
164249
|
isEditorWhite?: boolean | undefined;
|
|
164250
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
163701
164251
|
} | undefined;
|
|
163702
164252
|
onboarding?: {
|
|
163703
164253
|
companyName?: string | undefined;
|
|
@@ -163713,6 +164263,16 @@ declare const ForgeParticipant: z.ZodObject<{
|
|
|
163713
164263
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
163714
164264
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
163715
164265
|
} | undefined;
|
|
164266
|
+
portalTheme?: {
|
|
164267
|
+
backgroundColor?: string | undefined;
|
|
164268
|
+
accentColor?: string | undefined;
|
|
164269
|
+
contrast?: number | undefined;
|
|
164270
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
164271
|
+
secondaryBackgroundColor?: string | undefined;
|
|
164272
|
+
secondaryContrast?: number | undefined;
|
|
164273
|
+
isEditorWhite?: boolean | undefined;
|
|
164274
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
164275
|
+
} | undefined;
|
|
163716
164276
|
};
|
|
163717
164277
|
createdAt: Date;
|
|
163718
164278
|
isProtected: boolean;
|
|
@@ -163730,9 +164290,9 @@ declare const ForgeParticipant: z.ZodObject<{
|
|
|
163730
164290
|
};
|
|
163731
164291
|
id: string;
|
|
163732
164292
|
name: string;
|
|
163733
|
-
behavior: "
|
|
164293
|
+
behavior: "Coder" | "Writer" | "Designer";
|
|
163734
164294
|
projectId: string;
|
|
163735
|
-
personality: "
|
|
164295
|
+
personality: "Neutral" | "Assertive" | "Crazy";
|
|
163736
164296
|
avatarUrl?: string | undefined;
|
|
163737
164297
|
} | undefined;
|
|
163738
164298
|
}>;
|
|
@@ -163853,8 +164413,8 @@ declare const ForgeProjectContext: z.ZodObject<{
|
|
|
163853
164413
|
authHeaderName: string;
|
|
163854
164414
|
authHeaderValue: string;
|
|
163855
164415
|
}>]>>;
|
|
163856
|
-
platform: z.ZodEnum<["
|
|
163857
|
-
styling: z.ZodEnum<["
|
|
164416
|
+
platform: z.ZodEnum<["React", "Vue", "Angular"]>;
|
|
164417
|
+
styling: z.ZodEnum<["CSS", "Tailwind"]>;
|
|
163858
164418
|
tailwindConfig: z.ZodOptional<z.ZodObject<{
|
|
163859
164419
|
content: z.ZodString;
|
|
163860
164420
|
version: z.ZodString;
|
|
@@ -163905,8 +164465,8 @@ declare const ForgeProjectContext: z.ZodObject<{
|
|
|
163905
164465
|
authHeaderName: string;
|
|
163906
164466
|
authHeaderValue: string;
|
|
163907
164467
|
});
|
|
163908
|
-
platform: "
|
|
163909
|
-
styling: "
|
|
164468
|
+
platform: "Angular" | "Vue" | "React";
|
|
164469
|
+
styling: "CSS" | "Tailwind";
|
|
163910
164470
|
tailwindConfig?: {
|
|
163911
164471
|
version: string;
|
|
163912
164472
|
content: string;
|
|
@@ -163949,8 +164509,8 @@ declare const ForgeProjectContext: z.ZodObject<{
|
|
|
163949
164509
|
authHeaderName: string;
|
|
163950
164510
|
authHeaderValue: string;
|
|
163951
164511
|
});
|
|
163952
|
-
platform: "
|
|
163953
|
-
styling: "
|
|
164512
|
+
platform: "Angular" | "Vue" | "React";
|
|
164513
|
+
styling: "CSS" | "Tailwind";
|
|
163954
164514
|
tailwindConfig?: {
|
|
163955
164515
|
version: string;
|
|
163956
164516
|
content: string;
|
|
@@ -164002,10 +164562,10 @@ declare const ForgeProjectIteration: z.ZodObject<{
|
|
|
164002
164562
|
accessory2Type: string;
|
|
164003
164563
|
}>]>;
|
|
164004
164564
|
avatarUrl: z.ZodOptional<z.ZodString>;
|
|
164005
|
-
behavior: z.ZodEnum<["
|
|
164565
|
+
behavior: z.ZodEnum<["Coder", "Writer", "Designer"]>;
|
|
164006
164566
|
id: z.ZodString;
|
|
164007
164567
|
name: z.ZodString;
|
|
164008
|
-
personality: z.ZodEnum<["
|
|
164568
|
+
personality: z.ZodEnum<["Neutral", "Assertive", "Crazy"]>;
|
|
164009
164569
|
projectId: z.ZodString;
|
|
164010
164570
|
}, "strip", z.ZodTypeAny, {
|
|
164011
164571
|
avatar: string | {
|
|
@@ -164016,9 +164576,9 @@ declare const ForgeProjectIteration: z.ZodObject<{
|
|
|
164016
164576
|
};
|
|
164017
164577
|
id: string;
|
|
164018
164578
|
name: string;
|
|
164019
|
-
behavior: "
|
|
164579
|
+
behavior: "Coder" | "Writer" | "Designer";
|
|
164020
164580
|
projectId: string;
|
|
164021
|
-
personality: "
|
|
164581
|
+
personality: "Neutral" | "Assertive" | "Crazy";
|
|
164022
164582
|
avatarUrl?: string | undefined;
|
|
164023
164583
|
}, {
|
|
164024
164584
|
avatar: string | {
|
|
@@ -164029,13 +164589,13 @@ declare const ForgeProjectIteration: z.ZodObject<{
|
|
|
164029
164589
|
};
|
|
164030
164590
|
id: string;
|
|
164031
164591
|
name: string;
|
|
164032
|
-
behavior: "
|
|
164592
|
+
behavior: "Coder" | "Writer" | "Designer";
|
|
164033
164593
|
projectId: string;
|
|
164034
|
-
personality: "
|
|
164594
|
+
personality: "Neutral" | "Assertive" | "Crazy";
|
|
164035
164595
|
avatarUrl?: string | undefined;
|
|
164036
164596
|
}>>;
|
|
164037
164597
|
projectIterationId: z.ZodString;
|
|
164038
|
-
role: z.ZodEnum<["
|
|
164598
|
+
role: z.ZodEnum<["Editor", "Viewer"]>;
|
|
164039
164599
|
type: z.ZodEnum<["Agent", "User"]>;
|
|
164040
164600
|
userId: z.ZodOptional<z.ZodString>;
|
|
164041
164601
|
user: z.ZodOptional<z.ZodObject<{
|
|
@@ -164086,8 +164646,7 @@ declare const ForgeProjectIteration: z.ZodObject<{
|
|
|
164086
164646
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
164087
164647
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
164088
164648
|
}>>;
|
|
164089
|
-
theme: z.ZodOptional<z.ZodObject<{
|
|
164090
|
-
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
|
|
164649
|
+
theme: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
164091
164650
|
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
164092
164651
|
accentColor: z.ZodOptional<z.ZodString>;
|
|
164093
164652
|
contrast: z.ZodOptional<z.ZodNumber>;
|
|
@@ -164095,24 +164654,55 @@ declare const ForgeProjectIteration: z.ZodObject<{
|
|
|
164095
164654
|
secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
164096
164655
|
secondaryContrast: z.ZodOptional<z.ZodNumber>;
|
|
164097
164656
|
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
164098
|
-
},
|
|
164657
|
+
}, {
|
|
164658
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
|
|
164659
|
+
}>, "strip", z.ZodTypeAny, {
|
|
164099
164660
|
backgroundColor?: string | undefined;
|
|
164100
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
164101
164661
|
accentColor?: string | undefined;
|
|
164102
164662
|
contrast?: number | undefined;
|
|
164103
164663
|
isSecondaryEnabled?: boolean | undefined;
|
|
164104
164664
|
secondaryBackgroundColor?: string | undefined;
|
|
164105
164665
|
secondaryContrast?: number | undefined;
|
|
164106
164666
|
isEditorWhite?: boolean | undefined;
|
|
164667
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
164107
164668
|
}, {
|
|
164108
164669
|
backgroundColor?: string | undefined;
|
|
164670
|
+
accentColor?: string | undefined;
|
|
164671
|
+
contrast?: number | undefined;
|
|
164672
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
164673
|
+
secondaryBackgroundColor?: string | undefined;
|
|
164674
|
+
secondaryContrast?: number | undefined;
|
|
164675
|
+
isEditorWhite?: boolean | undefined;
|
|
164109
164676
|
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
164677
|
+
}>>;
|
|
164678
|
+
portalTheme: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
164679
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
164680
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
|
164681
|
+
contrast: z.ZodOptional<z.ZodNumber>;
|
|
164682
|
+
isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
164683
|
+
secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
164684
|
+
secondaryContrast: z.ZodOptional<z.ZodNumber>;
|
|
164685
|
+
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
164686
|
+
}, {
|
|
164687
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia", "DefaultPortal"]>>;
|
|
164688
|
+
}>, "strip", z.ZodTypeAny, {
|
|
164689
|
+
backgroundColor?: string | undefined;
|
|
164110
164690
|
accentColor?: string | undefined;
|
|
164111
164691
|
contrast?: number | undefined;
|
|
164112
164692
|
isSecondaryEnabled?: boolean | undefined;
|
|
164113
164693
|
secondaryBackgroundColor?: string | undefined;
|
|
164114
164694
|
secondaryContrast?: number | undefined;
|
|
164115
164695
|
isEditorWhite?: boolean | undefined;
|
|
164696
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
164697
|
+
}, {
|
|
164698
|
+
backgroundColor?: string | undefined;
|
|
164699
|
+
accentColor?: string | undefined;
|
|
164700
|
+
contrast?: number | undefined;
|
|
164701
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
164702
|
+
secondaryBackgroundColor?: string | undefined;
|
|
164703
|
+
secondaryContrast?: number | undefined;
|
|
164704
|
+
isEditorWhite?: boolean | undefined;
|
|
164705
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
164116
164706
|
}>>;
|
|
164117
164707
|
}, "strip", z.ZodTypeAny, {
|
|
164118
164708
|
name: string;
|
|
@@ -164120,13 +164710,13 @@ declare const ForgeProjectIteration: z.ZodObject<{
|
|
|
164120
164710
|
nickname?: string | undefined;
|
|
164121
164711
|
theme?: {
|
|
164122
164712
|
backgroundColor?: string | undefined;
|
|
164123
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
164124
164713
|
accentColor?: string | undefined;
|
|
164125
164714
|
contrast?: number | undefined;
|
|
164126
164715
|
isSecondaryEnabled?: boolean | undefined;
|
|
164127
164716
|
secondaryBackgroundColor?: string | undefined;
|
|
164128
164717
|
secondaryContrast?: number | undefined;
|
|
164129
164718
|
isEditorWhite?: boolean | undefined;
|
|
164719
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
164130
164720
|
} | undefined;
|
|
164131
164721
|
onboarding?: {
|
|
164132
164722
|
companyName?: string | undefined;
|
|
@@ -164142,19 +164732,29 @@ declare const ForgeProjectIteration: z.ZodObject<{
|
|
|
164142
164732
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
164143
164733
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
164144
164734
|
} | undefined;
|
|
164735
|
+
portalTheme?: {
|
|
164736
|
+
backgroundColor?: string | undefined;
|
|
164737
|
+
accentColor?: string | undefined;
|
|
164738
|
+
contrast?: number | undefined;
|
|
164739
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
164740
|
+
secondaryBackgroundColor?: string | undefined;
|
|
164741
|
+
secondaryContrast?: number | undefined;
|
|
164742
|
+
isEditorWhite?: boolean | undefined;
|
|
164743
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
164744
|
+
} | undefined;
|
|
164145
164745
|
}, {
|
|
164146
164746
|
name: string;
|
|
164147
164747
|
avatar?: string | undefined;
|
|
164148
164748
|
nickname?: string | undefined;
|
|
164149
164749
|
theme?: {
|
|
164150
164750
|
backgroundColor?: string | undefined;
|
|
164151
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
164152
164751
|
accentColor?: string | undefined;
|
|
164153
164752
|
contrast?: number | undefined;
|
|
164154
164753
|
isSecondaryEnabled?: boolean | undefined;
|
|
164155
164754
|
secondaryBackgroundColor?: string | undefined;
|
|
164156
164755
|
secondaryContrast?: number | undefined;
|
|
164157
164756
|
isEditorWhite?: boolean | undefined;
|
|
164757
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
164158
164758
|
} | undefined;
|
|
164159
164759
|
onboarding?: {
|
|
164160
164760
|
companyName?: string | undefined;
|
|
@@ -164170,6 +164770,16 @@ declare const ForgeProjectIteration: z.ZodObject<{
|
|
|
164170
164770
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
164171
164771
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
164172
164772
|
} | undefined;
|
|
164773
|
+
portalTheme?: {
|
|
164774
|
+
backgroundColor?: string | undefined;
|
|
164775
|
+
accentColor?: string | undefined;
|
|
164776
|
+
contrast?: number | undefined;
|
|
164777
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
164778
|
+
secondaryBackgroundColor?: string | undefined;
|
|
164779
|
+
secondaryContrast?: number | undefined;
|
|
164780
|
+
isEditorWhite?: boolean | undefined;
|
|
164781
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
164782
|
+
} | undefined;
|
|
164173
164783
|
}>;
|
|
164174
164784
|
loggedOutAt: z.ZodOptional<z.ZodDate>;
|
|
164175
164785
|
isProtected: z.ZodBoolean;
|
|
@@ -164183,13 +164793,13 @@ declare const ForgeProjectIteration: z.ZodObject<{
|
|
|
164183
164793
|
nickname?: string | undefined;
|
|
164184
164794
|
theme?: {
|
|
164185
164795
|
backgroundColor?: string | undefined;
|
|
164186
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
164187
164796
|
accentColor?: string | undefined;
|
|
164188
164797
|
contrast?: number | undefined;
|
|
164189
164798
|
isSecondaryEnabled?: boolean | undefined;
|
|
164190
164799
|
secondaryBackgroundColor?: string | undefined;
|
|
164191
164800
|
secondaryContrast?: number | undefined;
|
|
164192
164801
|
isEditorWhite?: boolean | undefined;
|
|
164802
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
164193
164803
|
} | undefined;
|
|
164194
164804
|
onboarding?: {
|
|
164195
164805
|
companyName?: string | undefined;
|
|
@@ -164205,6 +164815,16 @@ declare const ForgeProjectIteration: z.ZodObject<{
|
|
|
164205
164815
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
164206
164816
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
164207
164817
|
} | undefined;
|
|
164818
|
+
portalTheme?: {
|
|
164819
|
+
backgroundColor?: string | undefined;
|
|
164820
|
+
accentColor?: string | undefined;
|
|
164821
|
+
contrast?: number | undefined;
|
|
164822
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
164823
|
+
secondaryBackgroundColor?: string | undefined;
|
|
164824
|
+
secondaryContrast?: number | undefined;
|
|
164825
|
+
isEditorWhite?: boolean | undefined;
|
|
164826
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
164827
|
+
} | undefined;
|
|
164208
164828
|
};
|
|
164209
164829
|
createdAt: Date;
|
|
164210
164830
|
isProtected: boolean;
|
|
@@ -164219,13 +164839,13 @@ declare const ForgeProjectIteration: z.ZodObject<{
|
|
|
164219
164839
|
nickname?: string | undefined;
|
|
164220
164840
|
theme?: {
|
|
164221
164841
|
backgroundColor?: string | undefined;
|
|
164222
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
164223
164842
|
accentColor?: string | undefined;
|
|
164224
164843
|
contrast?: number | undefined;
|
|
164225
164844
|
isSecondaryEnabled?: boolean | undefined;
|
|
164226
164845
|
secondaryBackgroundColor?: string | undefined;
|
|
164227
164846
|
secondaryContrast?: number | undefined;
|
|
164228
164847
|
isEditorWhite?: boolean | undefined;
|
|
164848
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
164229
164849
|
} | undefined;
|
|
164230
164850
|
onboarding?: {
|
|
164231
164851
|
companyName?: string | undefined;
|
|
@@ -164241,6 +164861,16 @@ declare const ForgeProjectIteration: z.ZodObject<{
|
|
|
164241
164861
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
164242
164862
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
164243
164863
|
} | undefined;
|
|
164864
|
+
portalTheme?: {
|
|
164865
|
+
backgroundColor?: string | undefined;
|
|
164866
|
+
accentColor?: string | undefined;
|
|
164867
|
+
contrast?: number | undefined;
|
|
164868
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
164869
|
+
secondaryBackgroundColor?: string | undefined;
|
|
164870
|
+
secondaryContrast?: number | undefined;
|
|
164871
|
+
isEditorWhite?: boolean | undefined;
|
|
164872
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
164873
|
+
} | undefined;
|
|
164244
164874
|
};
|
|
164245
164875
|
createdAt: Date;
|
|
164246
164876
|
isProtected: boolean;
|
|
@@ -164250,7 +164880,7 @@ declare const ForgeProjectIteration: z.ZodObject<{
|
|
|
164250
164880
|
}, "strip", z.ZodTypeAny, {
|
|
164251
164881
|
type: "User" | "Agent";
|
|
164252
164882
|
id: string;
|
|
164253
|
-
role: "
|
|
164883
|
+
role: "Viewer" | "Editor";
|
|
164254
164884
|
projectIterationId: string;
|
|
164255
164885
|
user?: {
|
|
164256
164886
|
email: string;
|
|
@@ -164261,13 +164891,13 @@ declare const ForgeProjectIteration: z.ZodObject<{
|
|
|
164261
164891
|
nickname?: string | undefined;
|
|
164262
164892
|
theme?: {
|
|
164263
164893
|
backgroundColor?: string | undefined;
|
|
164264
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
164265
164894
|
accentColor?: string | undefined;
|
|
164266
164895
|
contrast?: number | undefined;
|
|
164267
164896
|
isSecondaryEnabled?: boolean | undefined;
|
|
164268
164897
|
secondaryBackgroundColor?: string | undefined;
|
|
164269
164898
|
secondaryContrast?: number | undefined;
|
|
164270
164899
|
isEditorWhite?: boolean | undefined;
|
|
164900
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
164271
164901
|
} | undefined;
|
|
164272
164902
|
onboarding?: {
|
|
164273
164903
|
companyName?: string | undefined;
|
|
@@ -164283,6 +164913,16 @@ declare const ForgeProjectIteration: z.ZodObject<{
|
|
|
164283
164913
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
164284
164914
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
164285
164915
|
} | undefined;
|
|
164916
|
+
portalTheme?: {
|
|
164917
|
+
backgroundColor?: string | undefined;
|
|
164918
|
+
accentColor?: string | undefined;
|
|
164919
|
+
contrast?: number | undefined;
|
|
164920
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
164921
|
+
secondaryBackgroundColor?: string | undefined;
|
|
164922
|
+
secondaryContrast?: number | undefined;
|
|
164923
|
+
isEditorWhite?: boolean | undefined;
|
|
164924
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
164925
|
+
} | undefined;
|
|
164286
164926
|
};
|
|
164287
164927
|
createdAt: Date;
|
|
164288
164928
|
isProtected: boolean;
|
|
@@ -164300,15 +164940,15 @@ declare const ForgeProjectIteration: z.ZodObject<{
|
|
|
164300
164940
|
};
|
|
164301
164941
|
id: string;
|
|
164302
164942
|
name: string;
|
|
164303
|
-
behavior: "
|
|
164943
|
+
behavior: "Coder" | "Writer" | "Designer";
|
|
164304
164944
|
projectId: string;
|
|
164305
|
-
personality: "
|
|
164945
|
+
personality: "Neutral" | "Assertive" | "Crazy";
|
|
164306
164946
|
avatarUrl?: string | undefined;
|
|
164307
164947
|
} | undefined;
|
|
164308
164948
|
}, {
|
|
164309
164949
|
type: "User" | "Agent";
|
|
164310
164950
|
id: string;
|
|
164311
|
-
role: "
|
|
164951
|
+
role: "Viewer" | "Editor";
|
|
164312
164952
|
projectIterationId: string;
|
|
164313
164953
|
user?: {
|
|
164314
164954
|
email: string;
|
|
@@ -164319,13 +164959,13 @@ declare const ForgeProjectIteration: z.ZodObject<{
|
|
|
164319
164959
|
nickname?: string | undefined;
|
|
164320
164960
|
theme?: {
|
|
164321
164961
|
backgroundColor?: string | undefined;
|
|
164322
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
164323
164962
|
accentColor?: string | undefined;
|
|
164324
164963
|
contrast?: number | undefined;
|
|
164325
164964
|
isSecondaryEnabled?: boolean | undefined;
|
|
164326
164965
|
secondaryBackgroundColor?: string | undefined;
|
|
164327
164966
|
secondaryContrast?: number | undefined;
|
|
164328
164967
|
isEditorWhite?: boolean | undefined;
|
|
164968
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
164329
164969
|
} | undefined;
|
|
164330
164970
|
onboarding?: {
|
|
164331
164971
|
companyName?: string | undefined;
|
|
@@ -164341,6 +164981,16 @@ declare const ForgeProjectIteration: z.ZodObject<{
|
|
|
164341
164981
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
164342
164982
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
164343
164983
|
} | undefined;
|
|
164984
|
+
portalTheme?: {
|
|
164985
|
+
backgroundColor?: string | undefined;
|
|
164986
|
+
accentColor?: string | undefined;
|
|
164987
|
+
contrast?: number | undefined;
|
|
164988
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
164989
|
+
secondaryBackgroundColor?: string | undefined;
|
|
164990
|
+
secondaryContrast?: number | undefined;
|
|
164991
|
+
isEditorWhite?: boolean | undefined;
|
|
164992
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
164993
|
+
} | undefined;
|
|
164344
164994
|
};
|
|
164345
164995
|
createdAt: Date;
|
|
164346
164996
|
isProtected: boolean;
|
|
@@ -164358,9 +165008,9 @@ declare const ForgeProjectIteration: z.ZodObject<{
|
|
|
164358
165008
|
};
|
|
164359
165009
|
id: string;
|
|
164360
165010
|
name: string;
|
|
164361
|
-
behavior: "
|
|
165011
|
+
behavior: "Coder" | "Writer" | "Designer";
|
|
164362
165012
|
projectId: string;
|
|
164363
|
-
personality: "
|
|
165013
|
+
personality: "Neutral" | "Assertive" | "Crazy";
|
|
164364
165014
|
avatarUrl?: string | undefined;
|
|
164365
165015
|
} | undefined;
|
|
164366
165016
|
}>;
|
|
@@ -164378,10 +165028,10 @@ declare const ForgeProjectIteration: z.ZodObject<{
|
|
|
164378
165028
|
name: string;
|
|
164379
165029
|
text: string;
|
|
164380
165030
|
}>, "many">>;
|
|
164381
|
-
type: z.ZodEnum<["
|
|
165031
|
+
type: z.ZodEnum<["Note", "Action", "Steps"]>;
|
|
164382
165032
|
text: z.ZodString;
|
|
164383
165033
|
}, "strip", z.ZodTypeAny, {
|
|
164384
|
-
type: "
|
|
165034
|
+
type: "Note" | "Action" | "Steps";
|
|
164385
165035
|
id: string;
|
|
164386
165036
|
createdAt: Date;
|
|
164387
165037
|
text: string;
|
|
@@ -164390,7 +165040,7 @@ declare const ForgeProjectIteration: z.ZodObject<{
|
|
|
164390
165040
|
participant: {
|
|
164391
165041
|
type: "User" | "Agent";
|
|
164392
165042
|
id: string;
|
|
164393
|
-
role: "
|
|
165043
|
+
role: "Viewer" | "Editor";
|
|
164394
165044
|
projectIterationId: string;
|
|
164395
165045
|
user?: {
|
|
164396
165046
|
email: string;
|
|
@@ -164401,13 +165051,13 @@ declare const ForgeProjectIteration: z.ZodObject<{
|
|
|
164401
165051
|
nickname?: string | undefined;
|
|
164402
165052
|
theme?: {
|
|
164403
165053
|
backgroundColor?: string | undefined;
|
|
164404
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
164405
165054
|
accentColor?: string | undefined;
|
|
164406
165055
|
contrast?: number | undefined;
|
|
164407
165056
|
isSecondaryEnabled?: boolean | undefined;
|
|
164408
165057
|
secondaryBackgroundColor?: string | undefined;
|
|
164409
165058
|
secondaryContrast?: number | undefined;
|
|
164410
165059
|
isEditorWhite?: boolean | undefined;
|
|
165060
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
164411
165061
|
} | undefined;
|
|
164412
165062
|
onboarding?: {
|
|
164413
165063
|
companyName?: string | undefined;
|
|
@@ -164423,6 +165073,16 @@ declare const ForgeProjectIteration: z.ZodObject<{
|
|
|
164423
165073
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
164424
165074
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
164425
165075
|
} | undefined;
|
|
165076
|
+
portalTheme?: {
|
|
165077
|
+
backgroundColor?: string | undefined;
|
|
165078
|
+
accentColor?: string | undefined;
|
|
165079
|
+
contrast?: number | undefined;
|
|
165080
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
165081
|
+
secondaryBackgroundColor?: string | undefined;
|
|
165082
|
+
secondaryContrast?: number | undefined;
|
|
165083
|
+
isEditorWhite?: boolean | undefined;
|
|
165084
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
165085
|
+
} | undefined;
|
|
164426
165086
|
};
|
|
164427
165087
|
createdAt: Date;
|
|
164428
165088
|
isProtected: boolean;
|
|
@@ -164440,9 +165100,9 @@ declare const ForgeProjectIteration: z.ZodObject<{
|
|
|
164440
165100
|
};
|
|
164441
165101
|
id: string;
|
|
164442
165102
|
name: string;
|
|
164443
|
-
behavior: "
|
|
165103
|
+
behavior: "Coder" | "Writer" | "Designer";
|
|
164444
165104
|
projectId: string;
|
|
164445
|
-
personality: "
|
|
165105
|
+
personality: "Neutral" | "Assertive" | "Crazy";
|
|
164446
165106
|
avatarUrl?: string | undefined;
|
|
164447
165107
|
} | undefined;
|
|
164448
165108
|
};
|
|
@@ -164452,7 +165112,7 @@ declare const ForgeProjectIteration: z.ZodObject<{
|
|
|
164452
165112
|
text: string;
|
|
164453
165113
|
}[] | undefined;
|
|
164454
165114
|
}, {
|
|
164455
|
-
type: "
|
|
165115
|
+
type: "Note" | "Action" | "Steps";
|
|
164456
165116
|
id: string;
|
|
164457
165117
|
createdAt: Date;
|
|
164458
165118
|
text: string;
|
|
@@ -164461,7 +165121,7 @@ declare const ForgeProjectIteration: z.ZodObject<{
|
|
|
164461
165121
|
participant: {
|
|
164462
165122
|
type: "User" | "Agent";
|
|
164463
165123
|
id: string;
|
|
164464
|
-
role: "
|
|
165124
|
+
role: "Viewer" | "Editor";
|
|
164465
165125
|
projectIterationId: string;
|
|
164466
165126
|
user?: {
|
|
164467
165127
|
email: string;
|
|
@@ -164472,13 +165132,13 @@ declare const ForgeProjectIteration: z.ZodObject<{
|
|
|
164472
165132
|
nickname?: string | undefined;
|
|
164473
165133
|
theme?: {
|
|
164474
165134
|
backgroundColor?: string | undefined;
|
|
164475
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
164476
165135
|
accentColor?: string | undefined;
|
|
164477
165136
|
contrast?: number | undefined;
|
|
164478
165137
|
isSecondaryEnabled?: boolean | undefined;
|
|
164479
165138
|
secondaryBackgroundColor?: string | undefined;
|
|
164480
165139
|
secondaryContrast?: number | undefined;
|
|
164481
165140
|
isEditorWhite?: boolean | undefined;
|
|
165141
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
164482
165142
|
} | undefined;
|
|
164483
165143
|
onboarding?: {
|
|
164484
165144
|
companyName?: string | undefined;
|
|
@@ -164494,6 +165154,16 @@ declare const ForgeProjectIteration: z.ZodObject<{
|
|
|
164494
165154
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
164495
165155
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
164496
165156
|
} | undefined;
|
|
165157
|
+
portalTheme?: {
|
|
165158
|
+
backgroundColor?: string | undefined;
|
|
165159
|
+
accentColor?: string | undefined;
|
|
165160
|
+
contrast?: number | undefined;
|
|
165161
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
165162
|
+
secondaryBackgroundColor?: string | undefined;
|
|
165163
|
+
secondaryContrast?: number | undefined;
|
|
165164
|
+
isEditorWhite?: boolean | undefined;
|
|
165165
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
165166
|
+
} | undefined;
|
|
164497
165167
|
};
|
|
164498
165168
|
createdAt: Date;
|
|
164499
165169
|
isProtected: boolean;
|
|
@@ -164511,9 +165181,9 @@ declare const ForgeProjectIteration: z.ZodObject<{
|
|
|
164511
165181
|
};
|
|
164512
165182
|
id: string;
|
|
164513
165183
|
name: string;
|
|
164514
|
-
behavior: "
|
|
165184
|
+
behavior: "Coder" | "Writer" | "Designer";
|
|
164515
165185
|
projectId: string;
|
|
164516
|
-
personality: "
|
|
165186
|
+
personality: "Neutral" | "Assertive" | "Crazy";
|
|
164517
165187
|
avatarUrl?: string | undefined;
|
|
164518
165188
|
} | undefined;
|
|
164519
165189
|
};
|
|
@@ -164668,7 +165338,7 @@ declare const ForgeProjectIteration: z.ZodObject<{
|
|
|
164668
165338
|
}, "strip", z.ZodTypeAny, {
|
|
164669
165339
|
id: string;
|
|
164670
165340
|
messages: {
|
|
164671
|
-
type: "
|
|
165341
|
+
type: "Note" | "Action" | "Steps";
|
|
164672
165342
|
id: string;
|
|
164673
165343
|
createdAt: Date;
|
|
164674
165344
|
text: string;
|
|
@@ -164677,7 +165347,7 @@ declare const ForgeProjectIteration: z.ZodObject<{
|
|
|
164677
165347
|
participant: {
|
|
164678
165348
|
type: "User" | "Agent";
|
|
164679
165349
|
id: string;
|
|
164680
|
-
role: "
|
|
165350
|
+
role: "Viewer" | "Editor";
|
|
164681
165351
|
projectIterationId: string;
|
|
164682
165352
|
user?: {
|
|
164683
165353
|
email: string;
|
|
@@ -164688,13 +165358,13 @@ declare const ForgeProjectIteration: z.ZodObject<{
|
|
|
164688
165358
|
nickname?: string | undefined;
|
|
164689
165359
|
theme?: {
|
|
164690
165360
|
backgroundColor?: string | undefined;
|
|
164691
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
164692
165361
|
accentColor?: string | undefined;
|
|
164693
165362
|
contrast?: number | undefined;
|
|
164694
165363
|
isSecondaryEnabled?: boolean | undefined;
|
|
164695
165364
|
secondaryBackgroundColor?: string | undefined;
|
|
164696
165365
|
secondaryContrast?: number | undefined;
|
|
164697
165366
|
isEditorWhite?: boolean | undefined;
|
|
165367
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
164698
165368
|
} | undefined;
|
|
164699
165369
|
onboarding?: {
|
|
164700
165370
|
companyName?: string | undefined;
|
|
@@ -164710,6 +165380,16 @@ declare const ForgeProjectIteration: z.ZodObject<{
|
|
|
164710
165380
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
164711
165381
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
164712
165382
|
} | undefined;
|
|
165383
|
+
portalTheme?: {
|
|
165384
|
+
backgroundColor?: string | undefined;
|
|
165385
|
+
accentColor?: string | undefined;
|
|
165386
|
+
contrast?: number | undefined;
|
|
165387
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
165388
|
+
secondaryBackgroundColor?: string | undefined;
|
|
165389
|
+
secondaryContrast?: number | undefined;
|
|
165390
|
+
isEditorWhite?: boolean | undefined;
|
|
165391
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
165392
|
+
} | undefined;
|
|
164713
165393
|
};
|
|
164714
165394
|
createdAt: Date;
|
|
164715
165395
|
isProtected: boolean;
|
|
@@ -164727,9 +165407,9 @@ declare const ForgeProjectIteration: z.ZodObject<{
|
|
|
164727
165407
|
};
|
|
164728
165408
|
id: string;
|
|
164729
165409
|
name: string;
|
|
164730
|
-
behavior: "
|
|
165410
|
+
behavior: "Coder" | "Writer" | "Designer";
|
|
164731
165411
|
projectId: string;
|
|
164732
|
-
personality: "
|
|
165412
|
+
personality: "Neutral" | "Assertive" | "Crazy";
|
|
164733
165413
|
avatarUrl?: string | undefined;
|
|
164734
165414
|
} | undefined;
|
|
164735
165415
|
};
|
|
@@ -164791,7 +165471,7 @@ declare const ForgeProjectIteration: z.ZodObject<{
|
|
|
164791
165471
|
}, {
|
|
164792
165472
|
id: string;
|
|
164793
165473
|
messages: {
|
|
164794
|
-
type: "
|
|
165474
|
+
type: "Note" | "Action" | "Steps";
|
|
164795
165475
|
id: string;
|
|
164796
165476
|
createdAt: Date;
|
|
164797
165477
|
text: string;
|
|
@@ -164800,7 +165480,7 @@ declare const ForgeProjectIteration: z.ZodObject<{
|
|
|
164800
165480
|
participant: {
|
|
164801
165481
|
type: "User" | "Agent";
|
|
164802
165482
|
id: string;
|
|
164803
|
-
role: "
|
|
165483
|
+
role: "Viewer" | "Editor";
|
|
164804
165484
|
projectIterationId: string;
|
|
164805
165485
|
user?: {
|
|
164806
165486
|
email: string;
|
|
@@ -164811,13 +165491,13 @@ declare const ForgeProjectIteration: z.ZodObject<{
|
|
|
164811
165491
|
nickname?: string | undefined;
|
|
164812
165492
|
theme?: {
|
|
164813
165493
|
backgroundColor?: string | undefined;
|
|
164814
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
164815
165494
|
accentColor?: string | undefined;
|
|
164816
165495
|
contrast?: number | undefined;
|
|
164817
165496
|
isSecondaryEnabled?: boolean | undefined;
|
|
164818
165497
|
secondaryBackgroundColor?: string | undefined;
|
|
164819
165498
|
secondaryContrast?: number | undefined;
|
|
164820
165499
|
isEditorWhite?: boolean | undefined;
|
|
165500
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
164821
165501
|
} | undefined;
|
|
164822
165502
|
onboarding?: {
|
|
164823
165503
|
companyName?: string | undefined;
|
|
@@ -164833,6 +165513,16 @@ declare const ForgeProjectIteration: z.ZodObject<{
|
|
|
164833
165513
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
164834
165514
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
164835
165515
|
} | undefined;
|
|
165516
|
+
portalTheme?: {
|
|
165517
|
+
backgroundColor?: string | undefined;
|
|
165518
|
+
accentColor?: string | undefined;
|
|
165519
|
+
contrast?: number | undefined;
|
|
165520
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
165521
|
+
secondaryBackgroundColor?: string | undefined;
|
|
165522
|
+
secondaryContrast?: number | undefined;
|
|
165523
|
+
isEditorWhite?: boolean | undefined;
|
|
165524
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
165525
|
+
} | undefined;
|
|
164836
165526
|
};
|
|
164837
165527
|
createdAt: Date;
|
|
164838
165528
|
isProtected: boolean;
|
|
@@ -164850,9 +165540,9 @@ declare const ForgeProjectIteration: z.ZodObject<{
|
|
|
164850
165540
|
};
|
|
164851
165541
|
id: string;
|
|
164852
165542
|
name: string;
|
|
164853
|
-
behavior: "
|
|
165543
|
+
behavior: "Coder" | "Writer" | "Designer";
|
|
164854
165544
|
projectId: string;
|
|
164855
|
-
personality: "
|
|
165545
|
+
personality: "Neutral" | "Assertive" | "Crazy";
|
|
164856
165546
|
avatarUrl?: string | undefined;
|
|
164857
165547
|
} | undefined;
|
|
164858
165548
|
};
|
|
@@ -164933,7 +165623,7 @@ type CreateForgeProjectMembership = DbCreateInputOmit<ForgeProjectMembership>;
|
|
|
164933
165623
|
declare const ForgeProjectTag: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
164934
165624
|
declare const ForgeProject: z.ZodObject<{
|
|
164935
165625
|
createdAt: z.ZodDate;
|
|
164936
|
-
createdByUserId: z.ZodString
|
|
165626
|
+
createdByUserId: z.ZodOptional<z.ZodString>;
|
|
164937
165627
|
fpContextId: z.ZodString;
|
|
164938
165628
|
id: z.ZodString;
|
|
164939
165629
|
instruction: z.ZodNullable<z.ZodString>;
|
|
@@ -164962,9 +165652,9 @@ declare const ForgeProject: z.ZodObject<{
|
|
|
164962
165652
|
name: string;
|
|
164963
165653
|
description?: string | undefined;
|
|
164964
165654
|
};
|
|
164965
|
-
createdByUserId: string;
|
|
164966
165655
|
fpContextId: string;
|
|
164967
165656
|
updatedAt?: Date | undefined;
|
|
165657
|
+
createdByUserId?: string | undefined;
|
|
164968
165658
|
}, {
|
|
164969
165659
|
instruction: string | null;
|
|
164970
165660
|
id: string;
|
|
@@ -164975,10 +165665,10 @@ declare const ForgeProject: z.ZodObject<{
|
|
|
164975
165665
|
name: string;
|
|
164976
165666
|
description?: string | undefined;
|
|
164977
165667
|
};
|
|
164978
|
-
createdByUserId: string;
|
|
164979
165668
|
fpContextId: string;
|
|
164980
165669
|
updatedAt?: Date | undefined;
|
|
164981
165670
|
tags?: string[] | undefined;
|
|
165671
|
+
createdByUserId?: string | undefined;
|
|
164982
165672
|
}>;
|
|
164983
165673
|
type ForgeProject = z.infer<typeof ForgeProject>;
|
|
164984
165674
|
type CreateForgeProject = Omit<DbCreateInputOmit<ForgeProject>, "workspaceId" | "createdByUserId">;
|
|
@@ -194242,8 +194932,7 @@ declare const NpmProxyTokenPayload: z.ZodObject<{
|
|
|
194242
194932
|
}>;
|
|
194243
194933
|
type NpmProxyTokenPayload = z.infer<typeof NpmProxyTokenPayload>;
|
|
194244
194934
|
|
|
194245
|
-
declare const PortalSettingsTheme: z.ZodObject<{
|
|
194246
|
-
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
|
|
194935
|
+
declare const PortalSettingsTheme: z.ZodObject<z.objectUtil.extendShape<{
|
|
194247
194936
|
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
194248
194937
|
accentColor: z.ZodOptional<z.ZodString>;
|
|
194249
194938
|
contrast: z.ZodOptional<z.ZodNumber>;
|
|
@@ -194251,24 +194940,26 @@ declare const PortalSettingsTheme: z.ZodObject<{
|
|
|
194251
194940
|
secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
194252
194941
|
secondaryContrast: z.ZodOptional<z.ZodNumber>;
|
|
194253
194942
|
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
194254
|
-
},
|
|
194943
|
+
}, {
|
|
194944
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
|
|
194945
|
+
}>, "strip", z.ZodTypeAny, {
|
|
194255
194946
|
backgroundColor?: string | undefined;
|
|
194256
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
194257
194947
|
accentColor?: string | undefined;
|
|
194258
194948
|
contrast?: number | undefined;
|
|
194259
194949
|
isSecondaryEnabled?: boolean | undefined;
|
|
194260
194950
|
secondaryBackgroundColor?: string | undefined;
|
|
194261
194951
|
secondaryContrast?: number | undefined;
|
|
194262
194952
|
isEditorWhite?: boolean | undefined;
|
|
194953
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
194263
194954
|
}, {
|
|
194264
194955
|
backgroundColor?: string | undefined;
|
|
194265
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
194266
194956
|
accentColor?: string | undefined;
|
|
194267
194957
|
contrast?: number | undefined;
|
|
194268
194958
|
isSecondaryEnabled?: boolean | undefined;
|
|
194269
194959
|
secondaryBackgroundColor?: string | undefined;
|
|
194270
194960
|
secondaryContrast?: number | undefined;
|
|
194271
194961
|
isEditorWhite?: boolean | undefined;
|
|
194962
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
194272
194963
|
}>;
|
|
194273
194964
|
type PortalSettingsTheme = z.infer<typeof PortalSettingsTheme>;
|
|
194274
194965
|
declare const PortalSettings: z.ZodObject<{
|
|
@@ -194276,8 +194967,7 @@ declare const PortalSettings: z.ZodObject<{
|
|
|
194276
194967
|
workspaceId: z.ZodString;
|
|
194277
194968
|
enabledDesignSystemIds: z.ZodArray<z.ZodString, "many">;
|
|
194278
194969
|
enabledBrandPersistentIds: z.ZodArray<z.ZodString, "many">;
|
|
194279
|
-
theme: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
194280
|
-
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
|
|
194970
|
+
theme: z.ZodOptional<z.ZodNullable<z.ZodObject<z.objectUtil.extendShape<{
|
|
194281
194971
|
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
194282
194972
|
accentColor: z.ZodOptional<z.ZodString>;
|
|
194283
194973
|
contrast: z.ZodOptional<z.ZodNumber>;
|
|
@@ -194285,24 +194975,26 @@ declare const PortalSettings: z.ZodObject<{
|
|
|
194285
194975
|
secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
194286
194976
|
secondaryContrast: z.ZodOptional<z.ZodNumber>;
|
|
194287
194977
|
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
194288
|
-
},
|
|
194978
|
+
}, {
|
|
194979
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
|
|
194980
|
+
}>, "strip", z.ZodTypeAny, {
|
|
194289
194981
|
backgroundColor?: string | undefined;
|
|
194290
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
194291
194982
|
accentColor?: string | undefined;
|
|
194292
194983
|
contrast?: number | undefined;
|
|
194293
194984
|
isSecondaryEnabled?: boolean | undefined;
|
|
194294
194985
|
secondaryBackgroundColor?: string | undefined;
|
|
194295
194986
|
secondaryContrast?: number | undefined;
|
|
194296
194987
|
isEditorWhite?: boolean | undefined;
|
|
194988
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
194297
194989
|
}, {
|
|
194298
194990
|
backgroundColor?: string | undefined;
|
|
194299
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
194300
194991
|
accentColor?: string | undefined;
|
|
194301
194992
|
contrast?: number | undefined;
|
|
194302
194993
|
isSecondaryEnabled?: boolean | undefined;
|
|
194303
194994
|
secondaryBackgroundColor?: string | undefined;
|
|
194304
194995
|
secondaryContrast?: number | undefined;
|
|
194305
194996
|
isEditorWhite?: boolean | undefined;
|
|
194997
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
194306
194998
|
}>>>;
|
|
194307
194999
|
sidebar: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
194308
195000
|
sectionName: z.ZodString;
|
|
@@ -194345,13 +195037,13 @@ declare const PortalSettings: z.ZodObject<{
|
|
|
194345
195037
|
enabledBrandPersistentIds: string[];
|
|
194346
195038
|
theme?: {
|
|
194347
195039
|
backgroundColor?: string | undefined;
|
|
194348
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
194349
195040
|
accentColor?: string | undefined;
|
|
194350
195041
|
contrast?: number | undefined;
|
|
194351
195042
|
isSecondaryEnabled?: boolean | undefined;
|
|
194352
195043
|
secondaryBackgroundColor?: string | undefined;
|
|
194353
195044
|
secondaryContrast?: number | undefined;
|
|
194354
195045
|
isEditorWhite?: boolean | undefined;
|
|
195046
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
194355
195047
|
} | null | undefined;
|
|
194356
195048
|
sidebar?: {
|
|
194357
195049
|
links: {
|
|
@@ -194370,13 +195062,13 @@ declare const PortalSettings: z.ZodObject<{
|
|
|
194370
195062
|
enabledBrandPersistentIds: string[];
|
|
194371
195063
|
theme?: {
|
|
194372
195064
|
backgroundColor?: string | undefined;
|
|
194373
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
194374
195065
|
accentColor?: string | undefined;
|
|
194375
195066
|
contrast?: number | undefined;
|
|
194376
195067
|
isSecondaryEnabled?: boolean | undefined;
|
|
194377
195068
|
secondaryBackgroundColor?: string | undefined;
|
|
194378
195069
|
secondaryContrast?: number | undefined;
|
|
194379
195070
|
isEditorWhite?: boolean | undefined;
|
|
195071
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
194380
195072
|
} | null | undefined;
|
|
194381
195073
|
sidebar?: {
|
|
194382
195074
|
links: {
|
|
@@ -194815,6 +195507,31 @@ declare const UserNotificationSettings: z.ZodObject<{
|
|
|
194815
195507
|
type UserNotificationSettings = z.infer<typeof UserNotificationSettings>;
|
|
194816
195508
|
declare const defaultNotificationSettings: UserNotificationSettings;
|
|
194817
195509
|
|
|
195510
|
+
declare const BaseTheme: z.ZodObject<{
|
|
195511
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
195512
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
|
195513
|
+
contrast: z.ZodOptional<z.ZodNumber>;
|
|
195514
|
+
isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
195515
|
+
secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
195516
|
+
secondaryContrast: z.ZodOptional<z.ZodNumber>;
|
|
195517
|
+
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
195518
|
+
}, "strip", z.ZodTypeAny, {
|
|
195519
|
+
backgroundColor?: string | undefined;
|
|
195520
|
+
accentColor?: string | undefined;
|
|
195521
|
+
contrast?: number | undefined;
|
|
195522
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
195523
|
+
secondaryBackgroundColor?: string | undefined;
|
|
195524
|
+
secondaryContrast?: number | undefined;
|
|
195525
|
+
isEditorWhite?: boolean | undefined;
|
|
195526
|
+
}, {
|
|
195527
|
+
backgroundColor?: string | undefined;
|
|
195528
|
+
accentColor?: string | undefined;
|
|
195529
|
+
contrast?: number | undefined;
|
|
195530
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
195531
|
+
secondaryBackgroundColor?: string | undefined;
|
|
195532
|
+
secondaryContrast?: number | undefined;
|
|
195533
|
+
isEditorWhite?: boolean | undefined;
|
|
195534
|
+
}>;
|
|
194818
195535
|
declare const UserOnboardingDepartment: z.ZodEnum<["Design", "Engineering", "Product", "Brand", "Other"]>;
|
|
194819
195536
|
type UserOnboardingDepartment = z.infer<typeof UserOnboardingDepartment>;
|
|
194820
195537
|
declare const UserOnboardingJobLevel: z.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>;
|
|
@@ -194860,8 +195577,11 @@ declare const UserOnboarding: z.ZodObject<{
|
|
|
194860
195577
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
194861
195578
|
}>;
|
|
194862
195579
|
type UserOnboarding = z.infer<typeof UserOnboarding>;
|
|
194863
|
-
declare const
|
|
194864
|
-
|
|
195580
|
+
declare const PortalThemePreset: z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia", "DefaultPortal"]>;
|
|
195581
|
+
type PortalThemePreset = z.infer<typeof PortalThemePreset>;
|
|
195582
|
+
declare const UserThemePreset: z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>;
|
|
195583
|
+
type UserThemePreset = z.infer<typeof UserThemePreset>;
|
|
195584
|
+
declare const UserTheme: z.ZodObject<z.objectUtil.extendShape<{
|
|
194865
195585
|
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
194866
195586
|
accentColor: z.ZodOptional<z.ZodString>;
|
|
194867
195587
|
contrast: z.ZodOptional<z.ZodNumber>;
|
|
@@ -194869,26 +195589,58 @@ declare const UserTheme: z.ZodObject<{
|
|
|
194869
195589
|
secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
194870
195590
|
secondaryContrast: z.ZodOptional<z.ZodNumber>;
|
|
194871
195591
|
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
194872
|
-
},
|
|
195592
|
+
}, {
|
|
195593
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
|
|
195594
|
+
}>, "strip", z.ZodTypeAny, {
|
|
194873
195595
|
backgroundColor?: string | undefined;
|
|
194874
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
194875
195596
|
accentColor?: string | undefined;
|
|
194876
195597
|
contrast?: number | undefined;
|
|
194877
195598
|
isSecondaryEnabled?: boolean | undefined;
|
|
194878
195599
|
secondaryBackgroundColor?: string | undefined;
|
|
194879
195600
|
secondaryContrast?: number | undefined;
|
|
194880
195601
|
isEditorWhite?: boolean | undefined;
|
|
195602
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
194881
195603
|
}, {
|
|
194882
195604
|
backgroundColor?: string | undefined;
|
|
194883
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
194884
195605
|
accentColor?: string | undefined;
|
|
194885
195606
|
contrast?: number | undefined;
|
|
194886
195607
|
isSecondaryEnabled?: boolean | undefined;
|
|
194887
195608
|
secondaryBackgroundColor?: string | undefined;
|
|
194888
195609
|
secondaryContrast?: number | undefined;
|
|
194889
195610
|
isEditorWhite?: boolean | undefined;
|
|
195611
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
194890
195612
|
}>;
|
|
194891
195613
|
type UserTheme = z.infer<typeof UserTheme>;
|
|
195614
|
+
declare const PortalTheme: z.ZodObject<z.objectUtil.extendShape<{
|
|
195615
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
195616
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
|
195617
|
+
contrast: z.ZodOptional<z.ZodNumber>;
|
|
195618
|
+
isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
195619
|
+
secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
195620
|
+
secondaryContrast: z.ZodOptional<z.ZodNumber>;
|
|
195621
|
+
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
195622
|
+
}, {
|
|
195623
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia", "DefaultPortal"]>>;
|
|
195624
|
+
}>, "strip", z.ZodTypeAny, {
|
|
195625
|
+
backgroundColor?: string | undefined;
|
|
195626
|
+
accentColor?: string | undefined;
|
|
195627
|
+
contrast?: number | undefined;
|
|
195628
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
195629
|
+
secondaryBackgroundColor?: string | undefined;
|
|
195630
|
+
secondaryContrast?: number | undefined;
|
|
195631
|
+
isEditorWhite?: boolean | undefined;
|
|
195632
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
195633
|
+
}, {
|
|
195634
|
+
backgroundColor?: string | undefined;
|
|
195635
|
+
accentColor?: string | undefined;
|
|
195636
|
+
contrast?: number | undefined;
|
|
195637
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
195638
|
+
secondaryBackgroundColor?: string | undefined;
|
|
195639
|
+
secondaryContrast?: number | undefined;
|
|
195640
|
+
isEditorWhite?: boolean | undefined;
|
|
195641
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
195642
|
+
}>;
|
|
195643
|
+
type PortalTheme = z.infer<typeof PortalTheme>;
|
|
194892
195644
|
declare const UserProfile: z.ZodObject<{
|
|
194893
195645
|
name: z.ZodString;
|
|
194894
195646
|
avatar: z.ZodOptional<z.ZodString>;
|
|
@@ -194933,8 +195685,7 @@ declare const UserProfile: z.ZodObject<{
|
|
|
194933
195685
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
194934
195686
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
194935
195687
|
}>>;
|
|
194936
|
-
theme: z.ZodOptional<z.ZodObject<{
|
|
194937
|
-
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
|
|
195688
|
+
theme: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
194938
195689
|
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
194939
195690
|
accentColor: z.ZodOptional<z.ZodString>;
|
|
194940
195691
|
contrast: z.ZodOptional<z.ZodNumber>;
|
|
@@ -194942,24 +195693,55 @@ declare const UserProfile: z.ZodObject<{
|
|
|
194942
195693
|
secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
194943
195694
|
secondaryContrast: z.ZodOptional<z.ZodNumber>;
|
|
194944
195695
|
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
194945
|
-
},
|
|
195696
|
+
}, {
|
|
195697
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
|
|
195698
|
+
}>, "strip", z.ZodTypeAny, {
|
|
194946
195699
|
backgroundColor?: string | undefined;
|
|
194947
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
194948
195700
|
accentColor?: string | undefined;
|
|
194949
195701
|
contrast?: number | undefined;
|
|
194950
195702
|
isSecondaryEnabled?: boolean | undefined;
|
|
194951
195703
|
secondaryBackgroundColor?: string | undefined;
|
|
194952
195704
|
secondaryContrast?: number | undefined;
|
|
194953
195705
|
isEditorWhite?: boolean | undefined;
|
|
195706
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
194954
195707
|
}, {
|
|
194955
195708
|
backgroundColor?: string | undefined;
|
|
195709
|
+
accentColor?: string | undefined;
|
|
195710
|
+
contrast?: number | undefined;
|
|
195711
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
195712
|
+
secondaryBackgroundColor?: string | undefined;
|
|
195713
|
+
secondaryContrast?: number | undefined;
|
|
195714
|
+
isEditorWhite?: boolean | undefined;
|
|
194956
195715
|
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
195716
|
+
}>>;
|
|
195717
|
+
portalTheme: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
195718
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
195719
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
|
195720
|
+
contrast: z.ZodOptional<z.ZodNumber>;
|
|
195721
|
+
isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
195722
|
+
secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
195723
|
+
secondaryContrast: z.ZodOptional<z.ZodNumber>;
|
|
195724
|
+
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
195725
|
+
}, {
|
|
195726
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia", "DefaultPortal"]>>;
|
|
195727
|
+
}>, "strip", z.ZodTypeAny, {
|
|
195728
|
+
backgroundColor?: string | undefined;
|
|
195729
|
+
accentColor?: string | undefined;
|
|
195730
|
+
contrast?: number | undefined;
|
|
195731
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
195732
|
+
secondaryBackgroundColor?: string | undefined;
|
|
195733
|
+
secondaryContrast?: number | undefined;
|
|
195734
|
+
isEditorWhite?: boolean | undefined;
|
|
195735
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
195736
|
+
}, {
|
|
195737
|
+
backgroundColor?: string | undefined;
|
|
194957
195738
|
accentColor?: string | undefined;
|
|
194958
195739
|
contrast?: number | undefined;
|
|
194959
195740
|
isSecondaryEnabled?: boolean | undefined;
|
|
194960
195741
|
secondaryBackgroundColor?: string | undefined;
|
|
194961
195742
|
secondaryContrast?: number | undefined;
|
|
194962
195743
|
isEditorWhite?: boolean | undefined;
|
|
195744
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
194963
195745
|
}>>;
|
|
194964
195746
|
}, "strip", z.ZodTypeAny, {
|
|
194965
195747
|
name: string;
|
|
@@ -194967,13 +195749,13 @@ declare const UserProfile: z.ZodObject<{
|
|
|
194967
195749
|
nickname?: string | undefined;
|
|
194968
195750
|
theme?: {
|
|
194969
195751
|
backgroundColor?: string | undefined;
|
|
194970
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
194971
195752
|
accentColor?: string | undefined;
|
|
194972
195753
|
contrast?: number | undefined;
|
|
194973
195754
|
isSecondaryEnabled?: boolean | undefined;
|
|
194974
195755
|
secondaryBackgroundColor?: string | undefined;
|
|
194975
195756
|
secondaryContrast?: number | undefined;
|
|
194976
195757
|
isEditorWhite?: boolean | undefined;
|
|
195758
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
194977
195759
|
} | undefined;
|
|
194978
195760
|
onboarding?: {
|
|
194979
195761
|
companyName?: string | undefined;
|
|
@@ -194989,19 +195771,29 @@ declare const UserProfile: z.ZodObject<{
|
|
|
194989
195771
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
194990
195772
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
194991
195773
|
} | undefined;
|
|
195774
|
+
portalTheme?: {
|
|
195775
|
+
backgroundColor?: string | undefined;
|
|
195776
|
+
accentColor?: string | undefined;
|
|
195777
|
+
contrast?: number | undefined;
|
|
195778
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
195779
|
+
secondaryBackgroundColor?: string | undefined;
|
|
195780
|
+
secondaryContrast?: number | undefined;
|
|
195781
|
+
isEditorWhite?: boolean | undefined;
|
|
195782
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
195783
|
+
} | undefined;
|
|
194992
195784
|
}, {
|
|
194993
195785
|
name: string;
|
|
194994
195786
|
avatar?: string | undefined;
|
|
194995
195787
|
nickname?: string | undefined;
|
|
194996
195788
|
theme?: {
|
|
194997
195789
|
backgroundColor?: string | undefined;
|
|
194998
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
194999
195790
|
accentColor?: string | undefined;
|
|
195000
195791
|
contrast?: number | undefined;
|
|
195001
195792
|
isSecondaryEnabled?: boolean | undefined;
|
|
195002
195793
|
secondaryBackgroundColor?: string | undefined;
|
|
195003
195794
|
secondaryContrast?: number | undefined;
|
|
195004
195795
|
isEditorWhite?: boolean | undefined;
|
|
195796
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
195005
195797
|
} | undefined;
|
|
195006
195798
|
onboarding?: {
|
|
195007
195799
|
companyName?: string | undefined;
|
|
@@ -195017,6 +195809,16 @@ declare const UserProfile: z.ZodObject<{
|
|
|
195017
195809
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
195018
195810
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
195019
195811
|
} | undefined;
|
|
195812
|
+
portalTheme?: {
|
|
195813
|
+
backgroundColor?: string | undefined;
|
|
195814
|
+
accentColor?: string | undefined;
|
|
195815
|
+
contrast?: number | undefined;
|
|
195816
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
195817
|
+
secondaryBackgroundColor?: string | undefined;
|
|
195818
|
+
secondaryContrast?: number | undefined;
|
|
195819
|
+
isEditorWhite?: boolean | undefined;
|
|
195820
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
195821
|
+
} | undefined;
|
|
195020
195822
|
}>;
|
|
195021
195823
|
type UserProfile = z.infer<typeof UserProfile>;
|
|
195022
195824
|
declare const UserProfileUpdate: z.ZodObject<Omit<{
|
|
@@ -195063,8 +195865,7 @@ declare const UserProfileUpdate: z.ZodObject<Omit<{
|
|
|
195063
195865
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
195064
195866
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
195065
195867
|
}>>>;
|
|
195066
|
-
theme: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
195067
|
-
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
|
|
195868
|
+
theme: z.ZodOptional<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
195068
195869
|
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
195069
195870
|
accentColor: z.ZodOptional<z.ZodString>;
|
|
195070
195871
|
contrast: z.ZodOptional<z.ZodNumber>;
|
|
@@ -195072,37 +195873,68 @@ declare const UserProfileUpdate: z.ZodObject<Omit<{
|
|
|
195072
195873
|
secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
195073
195874
|
secondaryContrast: z.ZodOptional<z.ZodNumber>;
|
|
195074
195875
|
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
195075
|
-
},
|
|
195876
|
+
}, {
|
|
195877
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
|
|
195878
|
+
}>, "strip", z.ZodTypeAny, {
|
|
195076
195879
|
backgroundColor?: string | undefined;
|
|
195077
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
195078
195880
|
accentColor?: string | undefined;
|
|
195079
195881
|
contrast?: number | undefined;
|
|
195080
195882
|
isSecondaryEnabled?: boolean | undefined;
|
|
195081
195883
|
secondaryBackgroundColor?: string | undefined;
|
|
195082
195884
|
secondaryContrast?: number | undefined;
|
|
195083
195885
|
isEditorWhite?: boolean | undefined;
|
|
195886
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
195084
195887
|
}, {
|
|
195085
195888
|
backgroundColor?: string | undefined;
|
|
195889
|
+
accentColor?: string | undefined;
|
|
195890
|
+
contrast?: number | undefined;
|
|
195891
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
195892
|
+
secondaryBackgroundColor?: string | undefined;
|
|
195893
|
+
secondaryContrast?: number | undefined;
|
|
195894
|
+
isEditorWhite?: boolean | undefined;
|
|
195086
195895
|
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
195896
|
+
}>>>;
|
|
195897
|
+
portalTheme: z.ZodOptional<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
195898
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
195899
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
|
195900
|
+
contrast: z.ZodOptional<z.ZodNumber>;
|
|
195901
|
+
isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
195902
|
+
secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
195903
|
+
secondaryContrast: z.ZodOptional<z.ZodNumber>;
|
|
195904
|
+
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
195905
|
+
}, {
|
|
195906
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia", "DefaultPortal"]>>;
|
|
195907
|
+
}>, "strip", z.ZodTypeAny, {
|
|
195908
|
+
backgroundColor?: string | undefined;
|
|
195087
195909
|
accentColor?: string | undefined;
|
|
195088
195910
|
contrast?: number | undefined;
|
|
195089
195911
|
isSecondaryEnabled?: boolean | undefined;
|
|
195090
195912
|
secondaryBackgroundColor?: string | undefined;
|
|
195091
195913
|
secondaryContrast?: number | undefined;
|
|
195092
195914
|
isEditorWhite?: boolean | undefined;
|
|
195915
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
195916
|
+
}, {
|
|
195917
|
+
backgroundColor?: string | undefined;
|
|
195918
|
+
accentColor?: string | undefined;
|
|
195919
|
+
contrast?: number | undefined;
|
|
195920
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
195921
|
+
secondaryBackgroundColor?: string | undefined;
|
|
195922
|
+
secondaryContrast?: number | undefined;
|
|
195923
|
+
isEditorWhite?: boolean | undefined;
|
|
195924
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
195093
195925
|
}>>>;
|
|
195094
195926
|
}, "avatar">, "strip", z.ZodTypeAny, {
|
|
195095
195927
|
name?: string | undefined;
|
|
195096
195928
|
nickname?: string | undefined;
|
|
195097
195929
|
theme?: {
|
|
195098
195930
|
backgroundColor?: string | undefined;
|
|
195099
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
195100
195931
|
accentColor?: string | undefined;
|
|
195101
195932
|
contrast?: number | undefined;
|
|
195102
195933
|
isSecondaryEnabled?: boolean | undefined;
|
|
195103
195934
|
secondaryBackgroundColor?: string | undefined;
|
|
195104
195935
|
secondaryContrast?: number | undefined;
|
|
195105
195936
|
isEditorWhite?: boolean | undefined;
|
|
195937
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
195106
195938
|
} | undefined;
|
|
195107
195939
|
onboarding?: {
|
|
195108
195940
|
companyName?: string | undefined;
|
|
@@ -195118,18 +195950,28 @@ declare const UserProfileUpdate: z.ZodObject<Omit<{
|
|
|
195118
195950
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
195119
195951
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
195120
195952
|
} | undefined;
|
|
195953
|
+
portalTheme?: {
|
|
195954
|
+
backgroundColor?: string | undefined;
|
|
195955
|
+
accentColor?: string | undefined;
|
|
195956
|
+
contrast?: number | undefined;
|
|
195957
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
195958
|
+
secondaryBackgroundColor?: string | undefined;
|
|
195959
|
+
secondaryContrast?: number | undefined;
|
|
195960
|
+
isEditorWhite?: boolean | undefined;
|
|
195961
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
195962
|
+
} | undefined;
|
|
195121
195963
|
}, {
|
|
195122
195964
|
name?: string | undefined;
|
|
195123
195965
|
nickname?: string | undefined;
|
|
195124
195966
|
theme?: {
|
|
195125
195967
|
backgroundColor?: string | undefined;
|
|
195126
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
195127
195968
|
accentColor?: string | undefined;
|
|
195128
195969
|
contrast?: number | undefined;
|
|
195129
195970
|
isSecondaryEnabled?: boolean | undefined;
|
|
195130
195971
|
secondaryBackgroundColor?: string | undefined;
|
|
195131
195972
|
secondaryContrast?: number | undefined;
|
|
195132
195973
|
isEditorWhite?: boolean | undefined;
|
|
195974
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
195133
195975
|
} | undefined;
|
|
195134
195976
|
onboarding?: {
|
|
195135
195977
|
companyName?: string | undefined;
|
|
@@ -195145,6 +195987,16 @@ declare const UserProfileUpdate: z.ZodObject<Omit<{
|
|
|
195145
195987
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
195146
195988
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
195147
195989
|
} | undefined;
|
|
195990
|
+
portalTheme?: {
|
|
195991
|
+
backgroundColor?: string | undefined;
|
|
195992
|
+
accentColor?: string | undefined;
|
|
195993
|
+
contrast?: number | undefined;
|
|
195994
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
195995
|
+
secondaryBackgroundColor?: string | undefined;
|
|
195996
|
+
secondaryContrast?: number | undefined;
|
|
195997
|
+
isEditorWhite?: boolean | undefined;
|
|
195998
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
195999
|
+
} | undefined;
|
|
195148
196000
|
}>;
|
|
195149
196001
|
type UserProfileUpdate = z.infer<typeof UserProfileUpdate>;
|
|
195150
196002
|
|
|
@@ -195210,8 +196062,7 @@ declare const User: z.ZodObject<{
|
|
|
195210
196062
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
195211
196063
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
195212
196064
|
}>>;
|
|
195213
|
-
theme: z.ZodOptional<z.ZodObject<{
|
|
195214
|
-
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
|
|
196065
|
+
theme: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
195215
196066
|
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
195216
196067
|
accentColor: z.ZodOptional<z.ZodString>;
|
|
195217
196068
|
contrast: z.ZodOptional<z.ZodNumber>;
|
|
@@ -195219,24 +196070,55 @@ declare const User: z.ZodObject<{
|
|
|
195219
196070
|
secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
195220
196071
|
secondaryContrast: z.ZodOptional<z.ZodNumber>;
|
|
195221
196072
|
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
195222
|
-
},
|
|
196073
|
+
}, {
|
|
196074
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
|
|
196075
|
+
}>, "strip", z.ZodTypeAny, {
|
|
195223
196076
|
backgroundColor?: string | undefined;
|
|
195224
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
195225
196077
|
accentColor?: string | undefined;
|
|
195226
196078
|
contrast?: number | undefined;
|
|
195227
196079
|
isSecondaryEnabled?: boolean | undefined;
|
|
195228
196080
|
secondaryBackgroundColor?: string | undefined;
|
|
195229
196081
|
secondaryContrast?: number | undefined;
|
|
195230
196082
|
isEditorWhite?: boolean | undefined;
|
|
196083
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
195231
196084
|
}, {
|
|
195232
196085
|
backgroundColor?: string | undefined;
|
|
196086
|
+
accentColor?: string | undefined;
|
|
196087
|
+
contrast?: number | undefined;
|
|
196088
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
196089
|
+
secondaryBackgroundColor?: string | undefined;
|
|
196090
|
+
secondaryContrast?: number | undefined;
|
|
196091
|
+
isEditorWhite?: boolean | undefined;
|
|
195233
196092
|
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
196093
|
+
}>>;
|
|
196094
|
+
portalTheme: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
196095
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
196096
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
|
196097
|
+
contrast: z.ZodOptional<z.ZodNumber>;
|
|
196098
|
+
isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
196099
|
+
secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
196100
|
+
secondaryContrast: z.ZodOptional<z.ZodNumber>;
|
|
196101
|
+
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
196102
|
+
}, {
|
|
196103
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia", "DefaultPortal"]>>;
|
|
196104
|
+
}>, "strip", z.ZodTypeAny, {
|
|
196105
|
+
backgroundColor?: string | undefined;
|
|
195234
196106
|
accentColor?: string | undefined;
|
|
195235
196107
|
contrast?: number | undefined;
|
|
195236
196108
|
isSecondaryEnabled?: boolean | undefined;
|
|
195237
196109
|
secondaryBackgroundColor?: string | undefined;
|
|
195238
196110
|
secondaryContrast?: number | undefined;
|
|
195239
196111
|
isEditorWhite?: boolean | undefined;
|
|
196112
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
196113
|
+
}, {
|
|
196114
|
+
backgroundColor?: string | undefined;
|
|
196115
|
+
accentColor?: string | undefined;
|
|
196116
|
+
contrast?: number | undefined;
|
|
196117
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
196118
|
+
secondaryBackgroundColor?: string | undefined;
|
|
196119
|
+
secondaryContrast?: number | undefined;
|
|
196120
|
+
isEditorWhite?: boolean | undefined;
|
|
196121
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
195240
196122
|
}>>;
|
|
195241
196123
|
}, "strip", z.ZodTypeAny, {
|
|
195242
196124
|
name: string;
|
|
@@ -195244,13 +196126,13 @@ declare const User: z.ZodObject<{
|
|
|
195244
196126
|
nickname?: string | undefined;
|
|
195245
196127
|
theme?: {
|
|
195246
196128
|
backgroundColor?: string | undefined;
|
|
195247
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
195248
196129
|
accentColor?: string | undefined;
|
|
195249
196130
|
contrast?: number | undefined;
|
|
195250
196131
|
isSecondaryEnabled?: boolean | undefined;
|
|
195251
196132
|
secondaryBackgroundColor?: string | undefined;
|
|
195252
196133
|
secondaryContrast?: number | undefined;
|
|
195253
196134
|
isEditorWhite?: boolean | undefined;
|
|
196135
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
195254
196136
|
} | undefined;
|
|
195255
196137
|
onboarding?: {
|
|
195256
196138
|
companyName?: string | undefined;
|
|
@@ -195266,19 +196148,29 @@ declare const User: z.ZodObject<{
|
|
|
195266
196148
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
195267
196149
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
195268
196150
|
} | undefined;
|
|
196151
|
+
portalTheme?: {
|
|
196152
|
+
backgroundColor?: string | undefined;
|
|
196153
|
+
accentColor?: string | undefined;
|
|
196154
|
+
contrast?: number | undefined;
|
|
196155
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
196156
|
+
secondaryBackgroundColor?: string | undefined;
|
|
196157
|
+
secondaryContrast?: number | undefined;
|
|
196158
|
+
isEditorWhite?: boolean | undefined;
|
|
196159
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
196160
|
+
} | undefined;
|
|
195269
196161
|
}, {
|
|
195270
196162
|
name: string;
|
|
195271
196163
|
avatar?: string | undefined;
|
|
195272
196164
|
nickname?: string | undefined;
|
|
195273
196165
|
theme?: {
|
|
195274
196166
|
backgroundColor?: string | undefined;
|
|
195275
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
195276
196167
|
accentColor?: string | undefined;
|
|
195277
196168
|
contrast?: number | undefined;
|
|
195278
196169
|
isSecondaryEnabled?: boolean | undefined;
|
|
195279
196170
|
secondaryBackgroundColor?: string | undefined;
|
|
195280
196171
|
secondaryContrast?: number | undefined;
|
|
195281
196172
|
isEditorWhite?: boolean | undefined;
|
|
196173
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
195282
196174
|
} | undefined;
|
|
195283
196175
|
onboarding?: {
|
|
195284
196176
|
companyName?: string | undefined;
|
|
@@ -195294,6 +196186,16 @@ declare const User: z.ZodObject<{
|
|
|
195294
196186
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
195295
196187
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
195296
196188
|
} | undefined;
|
|
196189
|
+
portalTheme?: {
|
|
196190
|
+
backgroundColor?: string | undefined;
|
|
196191
|
+
accentColor?: string | undefined;
|
|
196192
|
+
contrast?: number | undefined;
|
|
196193
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
196194
|
+
secondaryBackgroundColor?: string | undefined;
|
|
196195
|
+
secondaryContrast?: number | undefined;
|
|
196196
|
+
isEditorWhite?: boolean | undefined;
|
|
196197
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
196198
|
+
} | undefined;
|
|
195297
196199
|
}>;
|
|
195298
196200
|
loggedOutAt: z.ZodOptional<z.ZodDate>;
|
|
195299
196201
|
isProtected: z.ZodBoolean;
|
|
@@ -195307,13 +196209,13 @@ declare const User: z.ZodObject<{
|
|
|
195307
196209
|
nickname?: string | undefined;
|
|
195308
196210
|
theme?: {
|
|
195309
196211
|
backgroundColor?: string | undefined;
|
|
195310
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
195311
196212
|
accentColor?: string | undefined;
|
|
195312
196213
|
contrast?: number | undefined;
|
|
195313
196214
|
isSecondaryEnabled?: boolean | undefined;
|
|
195314
196215
|
secondaryBackgroundColor?: string | undefined;
|
|
195315
196216
|
secondaryContrast?: number | undefined;
|
|
195316
196217
|
isEditorWhite?: boolean | undefined;
|
|
196218
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
195317
196219
|
} | undefined;
|
|
195318
196220
|
onboarding?: {
|
|
195319
196221
|
companyName?: string | undefined;
|
|
@@ -195329,6 +196231,16 @@ declare const User: z.ZodObject<{
|
|
|
195329
196231
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
195330
196232
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
195331
196233
|
} | undefined;
|
|
196234
|
+
portalTheme?: {
|
|
196235
|
+
backgroundColor?: string | undefined;
|
|
196236
|
+
accentColor?: string | undefined;
|
|
196237
|
+
contrast?: number | undefined;
|
|
196238
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
196239
|
+
secondaryBackgroundColor?: string | undefined;
|
|
196240
|
+
secondaryContrast?: number | undefined;
|
|
196241
|
+
isEditorWhite?: boolean | undefined;
|
|
196242
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
196243
|
+
} | undefined;
|
|
195332
196244
|
};
|
|
195333
196245
|
createdAt: Date;
|
|
195334
196246
|
isProtected: boolean;
|
|
@@ -195343,13 +196255,13 @@ declare const User: z.ZodObject<{
|
|
|
195343
196255
|
nickname?: string | undefined;
|
|
195344
196256
|
theme?: {
|
|
195345
196257
|
backgroundColor?: string | undefined;
|
|
195346
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
195347
196258
|
accentColor?: string | undefined;
|
|
195348
196259
|
contrast?: number | undefined;
|
|
195349
196260
|
isSecondaryEnabled?: boolean | undefined;
|
|
195350
196261
|
secondaryBackgroundColor?: string | undefined;
|
|
195351
196262
|
secondaryContrast?: number | undefined;
|
|
195352
196263
|
isEditorWhite?: boolean | undefined;
|
|
196264
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
195353
196265
|
} | undefined;
|
|
195354
196266
|
onboarding?: {
|
|
195355
196267
|
companyName?: string | undefined;
|
|
@@ -195365,6 +196277,16 @@ declare const User: z.ZodObject<{
|
|
|
195365
196277
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
195366
196278
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
195367
196279
|
} | undefined;
|
|
196280
|
+
portalTheme?: {
|
|
196281
|
+
backgroundColor?: string | undefined;
|
|
196282
|
+
accentColor?: string | undefined;
|
|
196283
|
+
contrast?: number | undefined;
|
|
196284
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
196285
|
+
secondaryBackgroundColor?: string | undefined;
|
|
196286
|
+
secondaryContrast?: number | undefined;
|
|
196287
|
+
isEditorWhite?: boolean | undefined;
|
|
196288
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
196289
|
+
} | undefined;
|
|
195368
196290
|
};
|
|
195369
196291
|
createdAt: Date;
|
|
195370
196292
|
isProtected: boolean;
|
|
@@ -195378,4 +196300,4 @@ type PersonalAccessTokenWithUser = {
|
|
|
195378
196300
|
token: PersonalAccessToken;
|
|
195379
196301
|
};
|
|
195380
196302
|
|
|
195381
|
-
export { Address, type AllFields, AnalyzeCodeComponentsInPackage, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, AuthV2Request, AuthV2Session, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeComponent, type CodeComponentCreate, CodeComponentParentType, CodeComponentProperty, CodeComponentResolvedType, CodeComponentResolvedTypeKind, type CodeComponentUpdate, type CodeComponentUpsert, CodeComponentUpsertResponse, CodeIntegrationDump, Collection, CollectionImportModel, CollectionImportModelInput, CollectionOrigin, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateCollection, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystem, type CreateDesignSystemInvitation, type CreateDesignSystemMembership, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, type CreateDocumentationPageContent, type CreateDocumentationPageDependencies, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateFigmaNodeStructureV2, type CreateForgeAgent, type CreateForgeProject, type CreateForgeProjectContext, type CreateForgeProjectMembership, type CreateImportJob, type CreatePersonalAccessToken, type CreatePortalSettings, type CreatePublishedDocPage, type CreatePublishedDocPageVisitsEntry, type CreateStorybookEntry, type CreateStorybookPayload, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, type DataSourceOfType, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceStorybookRemote, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, type DefinedProps, DependencyDefinition, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, type DesignSystemVersionParsedRoomId, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageDependencies, DocumentationPageGroup, type DocumentationPageOldParsedRoomId, type DocumentationPageParsedRoomId, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyImmutableType, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventDocumentationPublished, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportDestinationsMapUpdate, ExportJob, ExportJobContext, ExportJobDebugContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobExporterConfiguration, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterConfigurationPropertyValue, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyDefinition, ExporterPropertyDefinitionArray, ExporterPropertyDefinitionBoolean, ExporterPropertyDefinitionCode, ExporterPropertyDefinitionEnum, ExporterPropertyDefinitionEnumOption, ExporterPropertyDefinitionNumber, ExporterPropertyDefinitionObject, ExporterPropertyDefinitionString, type ExporterPropertyDefinitionValue, ExporterPropertyImageValue, ExporterPropertyType, ExporterPropertyValue, ExporterPropertyValueMap, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagDefaults, type FeatureFlagDefaultsTypes, FeatureFlagMap, type FeatureFlagWithDefaults, FeatureFlagsKeepAliases, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, type FigmaExporter, FigmaExporterAnyDesignNodeSchema, FigmaFile, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceOrigin, FigmaNodeRelinkData, FigmaNodeRenderError, FigmaNodeRenderErrorType, FigmaNodeRenderFormat, FigmaNodeRenderState, FigmaNodeRenderedImage, FigmaNodeRendererPayload, FigmaNodeStructureDataV2, FigmaNodeStructureStateV2, FigmaNodeStructureV2, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, ForgeAgent, ForgeArtifact, ForgeAvatarBuilder, ForgeBuildArtifact, ForgeBuildArtifactEnvironment, ForgeBuildArtifactFiles, ForgeChatMessage, ForgeChatMessageSender, ForgeChatMessageSenderType, ForgeChatThread, ForgeFigmaArtifact, ForgeFileArtifact, ForgeIterationMessage, ForgeIterationMessageStep, ForgeMeta, ForgeParticipant, ForgeProject, ForgeProjectContext, ForgeProjectContextDependency, ForgeProjectContextTailwindConfig, ForgeProjectIteration, ForgeProjectIterationMergeMeta, type ForgeProjectMembership, ForgeProjectPrivilegeSchema, ForgeProjectTag, ForgeSpecArtifact, GitBranch, GitCommonDestinationOptions, GitIntegrationType, GitInteropPulsarError, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, ListExporterQuery, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetBlockConfig, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionFigmaComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentBlockConfig, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFile, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemFileValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemStorybookValueOld, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockStorybookBlockConfig, PageBlockStorybookItem, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenBlockConfig, PageBlockTokenNameFormat, PageBlockTokenValueFormat, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, type PageContentDependencies, PageRedirect, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type PagesContentDependencies, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, type ParsedRoomId, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PortalSettings, PortalSettingsSidebar, PortalSettingsSidebarLink, PortalSettingsSidebarSection, PortalSettingsTheme, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocPageVisitsEntry, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, Registry, RegistryType, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, type RoomOwner, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShadowValue, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportStorybookSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StorybookEntry, StorybookEntryOrigin, StorybookPayload, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateCollection, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageDependencies, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateFigmaNodeStructureV2, type UpdateForgeAgent, type UpdateForgeProject, type UpdateForgeProjectContext, type UpdateImportJob, type UpdateIntegrationCredential, UpdateMembershipRolesInput, type UpdatePortalSettings, type UpdatePublishedDocPage, type UpdateStorybookEntry, type UpdateStorybookPayload, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserSource, UserTest, UserTheme, VersionCreationJob, VersionCreationJobStatus, type VersionRoomOwner, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, type WorkspaceParsedRoomId, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, type WorkspaceRoomOwner, WorkspaceUntypedData, type WorkspaceUntypedDataCreate, type WorkspaceUntypedDataUpdate, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, applyShallowObjectUpdate, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, castStringToDimensionValue, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, generateShortPersistentId, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, hasProperty, isDataSourceOfType, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isNotNullish, isNullish, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickDefined, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, recordToMap, removeCommentSpans, sleep, slugRegex, slugify, storybookValueFromOldValue, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };
|
|
196303
|
+
export { Address, type AllFields, AnalyzeCodeComponentsInPackage, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, AuthV2Request, AuthV2Session, BaseTheme, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeComponent, type CodeComponentCreate, CodeComponentParentType, CodeComponentProperty, CodeComponentResolvedType, CodeComponentResolvedTypeKind, type CodeComponentUpdate, type CodeComponentUpsert, CodeComponentUpsertResponse, CodeIntegrationDump, Collection, CollectionImportModel, CollectionImportModelInput, CollectionOrigin, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateCollection, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystem, type CreateDesignSystemInvitation, type CreateDesignSystemMembership, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, type CreateDocumentationPageContent, type CreateDocumentationPageDependencies, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateFigmaNodeStructureV2, type CreateForgeAgent, type CreateForgeProject, type CreateForgeProjectContext, type CreateForgeProjectMembership, type CreateImportJob, type CreatePersonalAccessToken, type CreatePortalSettings, type CreatePublishedDocPage, type CreatePublishedDocPageVisitsEntry, type CreateStorybookEntry, type CreateStorybookPayload, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, type DataSourceOfType, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceStorybookRemote, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, type DefinedProps, DependencyDefinition, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, type DesignSystemVersionParsedRoomId, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageDependencies, DocumentationPageGroup, type DocumentationPageOldParsedRoomId, type DocumentationPageParsedRoomId, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyImmutableType, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventDocumentationPublished, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportDestinationsMapUpdate, ExportJob, ExportJobContext, ExportJobDebugContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobExporterConfiguration, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterConfigurationPropertyValue, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyDefinition, ExporterPropertyDefinitionArray, ExporterPropertyDefinitionBoolean, ExporterPropertyDefinitionCode, ExporterPropertyDefinitionEnum, ExporterPropertyDefinitionEnumOption, ExporterPropertyDefinitionNumber, ExporterPropertyDefinitionObject, ExporterPropertyDefinitionString, type ExporterPropertyDefinitionValue, ExporterPropertyImageValue, ExporterPropertyType, ExporterPropertyValue, ExporterPropertyValueMap, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagDefaults, type FeatureFlagDefaultsTypes, FeatureFlagMap, type FeatureFlagWithDefaults, FeatureFlagsKeepAliases, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, type FigmaExporter, FigmaExporterAnyDesignNodeSchema, FigmaFile, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceOrigin, FigmaNodeRelinkData, FigmaNodeRenderError, FigmaNodeRenderErrorType, FigmaNodeRenderFormat, FigmaNodeRenderState, FigmaNodeRenderedImage, FigmaNodeRendererPayload, FigmaNodeStructureDataV2, FigmaNodeStructureStateV2, FigmaNodeStructureV2, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, ForgeAgent, ForgeArtifact, ForgeAvatarBuilder, ForgeBuildArtifact, ForgeBuildArtifactEnvironment, ForgeBuildArtifactFiles, ForgeChatMessage, ForgeChatMessageSender, ForgeChatMessageSenderType, ForgeChatThread, ForgeFigmaArtifact, ForgeFileArtifact, ForgeIterationMessage, ForgeIterationMessageStep, ForgeMeta, ForgeParticipant, ForgeProject, ForgeProjectContext, ForgeProjectContextDependency, ForgeProjectContextTailwindConfig, ForgeProjectIteration, ForgeProjectIterationMergeMeta, type ForgeProjectMembership, ForgeProjectPrivilegeSchema, ForgeProjectTag, ForgeSpecArtifact, GitBranch, GitCommonDestinationOptions, GitIntegrationType, GitInteropPulsarError, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, ListExporterQuery, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetBlockConfig, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionFigmaComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentBlockConfig, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFile, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemFileValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemStorybookValueOld, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockStorybookBlockConfig, PageBlockStorybookItem, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenBlockConfig, PageBlockTokenNameFormat, PageBlockTokenValueFormat, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, type PageContentDependencies, PageRedirect, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type PagesContentDependencies, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, type ParsedRoomId, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PortalSettings, PortalSettingsSidebar, PortalSettingsSidebarLink, PortalSettingsSidebarSection, PortalSettingsTheme, PortalTheme, PortalThemePreset, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocPageVisitsEntry, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, Registry, RegistryType, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, type RoomOwner, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShadowValue, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportStorybookSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StorybookEntry, StorybookEntryOrigin, StorybookPayload, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateCollection, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageDependencies, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateFigmaNodeStructureV2, type UpdateForgeAgent, type UpdateForgeProject, type UpdateForgeProjectContext, type UpdateImportJob, type UpdateIntegrationCredential, UpdateMembershipRolesInput, type UpdatePortalSettings, type UpdatePublishedDocPage, type UpdateStorybookEntry, type UpdateStorybookPayload, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserSource, UserTest, UserTheme, UserThemePreset, VersionCreationJob, VersionCreationJobStatus, type VersionRoomOwner, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, type WorkspaceParsedRoomId, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, type WorkspaceRoomOwner, WorkspaceUntypedData, type WorkspaceUntypedDataCreate, type WorkspaceUntypedDataUpdate, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, applyShallowObjectUpdate, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, castStringToDimensionValue, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, generateShortPersistentId, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, hasProperty, isDataSourceOfType, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isNotNullish, isNullish, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickDefined, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, recordToMap, removeCommentSpans, sleep, slugRegex, slugify, storybookValueFromOldValue, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };
|