@supernova-studio/model 1.0.0-alpha.9 → 1.0.1
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 +422 -812
- package/dist/index.d.ts +422 -812
- package/dist/index.js +47 -20
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +788 -761
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3605,7 +3605,7 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
3605
3605
|
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
3606
3606
|
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
3607
3607
|
themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3608
|
-
|
|
3608
|
+
exporterPropertyValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
|
|
3609
3609
|
}, "strip", z.ZodTypeAny, {
|
|
3610
3610
|
id: string;
|
|
3611
3611
|
name: string;
|
|
@@ -3676,7 +3676,7 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
3676
3676
|
connectionId?: string | undefined;
|
|
3677
3677
|
} | undefined;
|
|
3678
3678
|
themePersistentIds?: string[] | undefined;
|
|
3679
|
-
|
|
3679
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
3680
3680
|
}, {
|
|
3681
3681
|
id: string;
|
|
3682
3682
|
name: string;
|
|
@@ -3747,7 +3747,7 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
3747
3747
|
connectionId?: string | null | undefined;
|
|
3748
3748
|
} | undefined;
|
|
3749
3749
|
themePersistentIds?: string[] | undefined;
|
|
3750
|
-
|
|
3750
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
3751
3751
|
}>, "many">;
|
|
3752
3752
|
exportJobs: z.ZodArray<z.ZodObject<{
|
|
3753
3753
|
id: z.ZodString;
|
|
@@ -4020,7 +4020,7 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
4020
4020
|
connectionId?: string | undefined;
|
|
4021
4021
|
} | undefined;
|
|
4022
4022
|
themePersistentIds?: string[] | undefined;
|
|
4023
|
-
|
|
4023
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
4024
4024
|
}[];
|
|
4025
4025
|
exportJobs: {
|
|
4026
4026
|
id: string;
|
|
@@ -4283,7 +4283,7 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
4283
4283
|
connectionId?: string | null | undefined;
|
|
4284
4284
|
} | undefined;
|
|
4285
4285
|
themePersistentIds?: string[] | undefined;
|
|
4286
|
-
|
|
4286
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
4287
4287
|
}[];
|
|
4288
4288
|
exportJobs: {
|
|
4289
4289
|
id: string;
|
|
@@ -11507,7 +11507,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
11507
11507
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
11508
11508
|
}>>;
|
|
11509
11509
|
theme: z.ZodOptional<z.ZodObject<{
|
|
11510
|
-
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey"]>>;
|
|
11510
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
|
|
11511
11511
|
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
11512
11512
|
accentColor: z.ZodOptional<z.ZodString>;
|
|
11513
11513
|
contrast: z.ZodOptional<z.ZodNumber>;
|
|
@@ -11517,7 +11517,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
11517
11517
|
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
11518
11518
|
}, "strip", z.ZodTypeAny, {
|
|
11519
11519
|
backgroundColor?: string | undefined;
|
|
11520
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
11520
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
11521
11521
|
accentColor?: string | undefined;
|
|
11522
11522
|
contrast?: number | undefined;
|
|
11523
11523
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -11526,7 +11526,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
11526
11526
|
isEditorWhite?: boolean | undefined;
|
|
11527
11527
|
}, {
|
|
11528
11528
|
backgroundColor?: string | undefined;
|
|
11529
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
11529
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
11530
11530
|
accentColor?: string | undefined;
|
|
11531
11531
|
contrast?: number | undefined;
|
|
11532
11532
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -11540,7 +11540,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
11540
11540
|
nickname?: string | undefined;
|
|
11541
11541
|
theme?: {
|
|
11542
11542
|
backgroundColor?: string | undefined;
|
|
11543
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
11543
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
11544
11544
|
accentColor?: string | undefined;
|
|
11545
11545
|
contrast?: number | undefined;
|
|
11546
11546
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -11568,7 +11568,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
11568
11568
|
nickname?: string | undefined;
|
|
11569
11569
|
theme?: {
|
|
11570
11570
|
backgroundColor?: string | undefined;
|
|
11571
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
11571
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
11572
11572
|
accentColor?: string | undefined;
|
|
11573
11573
|
contrast?: number | undefined;
|
|
11574
11574
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -11797,7 +11797,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
11797
11797
|
nickname?: string | undefined;
|
|
11798
11798
|
theme?: {
|
|
11799
11799
|
backgroundColor?: string | undefined;
|
|
11800
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
11800
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
11801
11801
|
accentColor?: string | undefined;
|
|
11802
11802
|
contrast?: number | undefined;
|
|
11803
11803
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -11877,7 +11877,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
11877
11877
|
nickname?: string | undefined;
|
|
11878
11878
|
theme?: {
|
|
11879
11879
|
backgroundColor?: string | undefined;
|
|
11880
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
11880
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
11881
11881
|
accentColor?: string | undefined;
|
|
11882
11882
|
contrast?: number | undefined;
|
|
11883
11883
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -18929,7 +18929,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
18929
18929
|
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
18930
18930
|
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
18931
18931
|
themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
18932
|
-
|
|
18932
|
+
exporterPropertyValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
|
|
18933
18933
|
}, "strip", z.ZodTypeAny, {
|
|
18934
18934
|
id: string;
|
|
18935
18935
|
name: string;
|
|
@@ -19000,7 +19000,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
19000
19000
|
connectionId?: string | undefined;
|
|
19001
19001
|
} | undefined;
|
|
19002
19002
|
themePersistentIds?: string[] | undefined;
|
|
19003
|
-
|
|
19003
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
19004
19004
|
}, {
|
|
19005
19005
|
id: string;
|
|
19006
19006
|
name: string;
|
|
@@ -19071,7 +19071,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
19071
19071
|
connectionId?: string | null | undefined;
|
|
19072
19072
|
} | undefined;
|
|
19073
19073
|
themePersistentIds?: string[] | undefined;
|
|
19074
|
-
|
|
19074
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
19075
19075
|
}>, "many">;
|
|
19076
19076
|
exportJobs: z.ZodArray<z.ZodObject<{
|
|
19077
19077
|
id: z.ZodString;
|
|
@@ -19344,7 +19344,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
19344
19344
|
connectionId?: string | undefined;
|
|
19345
19345
|
} | undefined;
|
|
19346
19346
|
themePersistentIds?: string[] | undefined;
|
|
19347
|
-
|
|
19347
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
19348
19348
|
}[];
|
|
19349
19349
|
exportJobs: {
|
|
19350
19350
|
id: string;
|
|
@@ -19607,7 +19607,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
19607
19607
|
connectionId?: string | null | undefined;
|
|
19608
19608
|
} | undefined;
|
|
19609
19609
|
themePersistentIds?: string[] | undefined;
|
|
19610
|
-
|
|
19610
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
19611
19611
|
}[];
|
|
19612
19612
|
exportJobs: {
|
|
19613
19613
|
id: string;
|
|
@@ -20705,7 +20705,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
20705
20705
|
connectionId?: string | undefined;
|
|
20706
20706
|
} | undefined;
|
|
20707
20707
|
themePersistentIds?: string[] | undefined;
|
|
20708
|
-
|
|
20708
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
20709
20709
|
}[];
|
|
20710
20710
|
exportJobs: {
|
|
20711
20711
|
id: string;
|
|
@@ -21645,7 +21645,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
21645
21645
|
connectionId?: string | null | undefined;
|
|
21646
21646
|
} | undefined;
|
|
21647
21647
|
themePersistentIds?: string[] | undefined;
|
|
21648
|
-
|
|
21648
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
21649
21649
|
}[];
|
|
21650
21650
|
exportJobs: {
|
|
21651
21651
|
id: string;
|
|
@@ -22580,7 +22580,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
22580
22580
|
connectionId?: string | undefined;
|
|
22581
22581
|
} | undefined;
|
|
22582
22582
|
themePersistentIds?: string[] | undefined;
|
|
22583
|
-
|
|
22583
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
22584
22584
|
}[];
|
|
22585
22585
|
exportJobs: {
|
|
22586
22586
|
id: string;
|
|
@@ -22636,7 +22636,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
22636
22636
|
nickname?: string | undefined;
|
|
22637
22637
|
theme?: {
|
|
22638
22638
|
backgroundColor?: string | undefined;
|
|
22639
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
22639
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
22640
22640
|
accentColor?: string | undefined;
|
|
22641
22641
|
contrast?: number | undefined;
|
|
22642
22642
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -23596,7 +23596,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
23596
23596
|
connectionId?: string | null | undefined;
|
|
23597
23597
|
} | undefined;
|
|
23598
23598
|
themePersistentIds?: string[] | undefined;
|
|
23599
|
-
|
|
23599
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
23600
23600
|
}[];
|
|
23601
23601
|
exportJobs: {
|
|
23602
23602
|
id: string;
|
|
@@ -23652,7 +23652,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
23652
23652
|
nickname?: string | undefined;
|
|
23653
23653
|
theme?: {
|
|
23654
23654
|
backgroundColor?: string | undefined;
|
|
23655
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
23655
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
23656
23656
|
accentColor?: string | undefined;
|
|
23657
23657
|
contrast?: number | undefined;
|
|
23658
23658
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -30707,7 +30707,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
30707
30707
|
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
30708
30708
|
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
30709
30709
|
themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
30710
|
-
|
|
30710
|
+
exporterPropertyValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
|
|
30711
30711
|
}, "strip", z.ZodTypeAny, {
|
|
30712
30712
|
id: string;
|
|
30713
30713
|
name: string;
|
|
@@ -30778,7 +30778,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
30778
30778
|
connectionId?: string | undefined;
|
|
30779
30779
|
} | undefined;
|
|
30780
30780
|
themePersistentIds?: string[] | undefined;
|
|
30781
|
-
|
|
30781
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
30782
30782
|
}, {
|
|
30783
30783
|
id: string;
|
|
30784
30784
|
name: string;
|
|
@@ -30849,7 +30849,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
30849
30849
|
connectionId?: string | null | undefined;
|
|
30850
30850
|
} | undefined;
|
|
30851
30851
|
themePersistentIds?: string[] | undefined;
|
|
30852
|
-
|
|
30852
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
30853
30853
|
}>, "many">;
|
|
30854
30854
|
exportJobs: z.ZodArray<z.ZodObject<{
|
|
30855
30855
|
id: z.ZodString;
|
|
@@ -31122,7 +31122,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
31122
31122
|
connectionId?: string | undefined;
|
|
31123
31123
|
} | undefined;
|
|
31124
31124
|
themePersistentIds?: string[] | undefined;
|
|
31125
|
-
|
|
31125
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
31126
31126
|
}[];
|
|
31127
31127
|
exportJobs: {
|
|
31128
31128
|
id: string;
|
|
@@ -31385,7 +31385,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
31385
31385
|
connectionId?: string | null | undefined;
|
|
31386
31386
|
} | undefined;
|
|
31387
31387
|
themePersistentIds?: string[] | undefined;
|
|
31388
|
-
|
|
31388
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
31389
31389
|
}[];
|
|
31390
31390
|
exportJobs: {
|
|
31391
31391
|
id: string;
|
|
@@ -32483,7 +32483,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
32483
32483
|
connectionId?: string | undefined;
|
|
32484
32484
|
} | undefined;
|
|
32485
32485
|
themePersistentIds?: string[] | undefined;
|
|
32486
|
-
|
|
32486
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
32487
32487
|
}[];
|
|
32488
32488
|
exportJobs: {
|
|
32489
32489
|
id: string;
|
|
@@ -33423,7 +33423,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
33423
33423
|
connectionId?: string | null | undefined;
|
|
33424
33424
|
} | undefined;
|
|
33425
33425
|
themePersistentIds?: string[] | undefined;
|
|
33426
|
-
|
|
33426
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
33427
33427
|
}[];
|
|
33428
33428
|
exportJobs: {
|
|
33429
33429
|
id: string;
|
|
@@ -33677,7 +33677,7 @@ declare const UserSession: z.ZodObject<{
|
|
|
33677
33677
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
33678
33678
|
}>>;
|
|
33679
33679
|
theme: z.ZodOptional<z.ZodObject<{
|
|
33680
|
-
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey"]>>;
|
|
33680
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
|
|
33681
33681
|
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
33682
33682
|
accentColor: z.ZodOptional<z.ZodString>;
|
|
33683
33683
|
contrast: z.ZodOptional<z.ZodNumber>;
|
|
@@ -33687,7 +33687,7 @@ declare const UserSession: z.ZodObject<{
|
|
|
33687
33687
|
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
33688
33688
|
}, "strip", z.ZodTypeAny, {
|
|
33689
33689
|
backgroundColor?: string | undefined;
|
|
33690
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
33690
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
33691
33691
|
accentColor?: string | undefined;
|
|
33692
33692
|
contrast?: number | undefined;
|
|
33693
33693
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -33696,7 +33696,7 @@ declare const UserSession: z.ZodObject<{
|
|
|
33696
33696
|
isEditorWhite?: boolean | undefined;
|
|
33697
33697
|
}, {
|
|
33698
33698
|
backgroundColor?: string | undefined;
|
|
33699
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
33699
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
33700
33700
|
accentColor?: string | undefined;
|
|
33701
33701
|
contrast?: number | undefined;
|
|
33702
33702
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -33710,7 +33710,7 @@ declare const UserSession: z.ZodObject<{
|
|
|
33710
33710
|
nickname?: string | undefined;
|
|
33711
33711
|
theme?: {
|
|
33712
33712
|
backgroundColor?: string | undefined;
|
|
33713
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
33713
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
33714
33714
|
accentColor?: string | undefined;
|
|
33715
33715
|
contrast?: number | undefined;
|
|
33716
33716
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -33738,7 +33738,7 @@ declare const UserSession: z.ZodObject<{
|
|
|
33738
33738
|
nickname?: string | undefined;
|
|
33739
33739
|
theme?: {
|
|
33740
33740
|
backgroundColor?: string | undefined;
|
|
33741
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
33741
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
33742
33742
|
accentColor?: string | undefined;
|
|
33743
33743
|
contrast?: number | undefined;
|
|
33744
33744
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -33967,7 +33967,7 @@ declare const UserSession: z.ZodObject<{
|
|
|
33967
33967
|
nickname?: string | undefined;
|
|
33968
33968
|
theme?: {
|
|
33969
33969
|
backgroundColor?: string | undefined;
|
|
33970
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
33970
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
33971
33971
|
accentColor?: string | undefined;
|
|
33972
33972
|
contrast?: number | undefined;
|
|
33973
33973
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -34047,7 +34047,7 @@ declare const UserSession: z.ZodObject<{
|
|
|
34047
34047
|
nickname?: string | undefined;
|
|
34048
34048
|
theme?: {
|
|
34049
34049
|
backgroundColor?: string | undefined;
|
|
34050
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
34050
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
34051
34051
|
accentColor?: string | undefined;
|
|
34052
34052
|
contrast?: number | undefined;
|
|
34053
34053
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -34141,7 +34141,7 @@ declare const UserSession: z.ZodObject<{
|
|
|
34141
34141
|
nickname?: string | undefined;
|
|
34142
34142
|
theme?: {
|
|
34143
34143
|
backgroundColor?: string | undefined;
|
|
34144
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
34144
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
34145
34145
|
accentColor?: string | undefined;
|
|
34146
34146
|
contrast?: number | undefined;
|
|
34147
34147
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -34235,7 +34235,7 @@ declare const UserSession: z.ZodObject<{
|
|
|
34235
34235
|
nickname?: string | undefined;
|
|
34236
34236
|
theme?: {
|
|
34237
34237
|
backgroundColor?: string | undefined;
|
|
34238
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
34238
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
34239
34239
|
accentColor?: string | undefined;
|
|
34240
34240
|
contrast?: number | undefined;
|
|
34241
34241
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -40088,6 +40088,30 @@ declare const DocumentationPage: z.ZodObject<{
|
|
|
40088
40088
|
}>;
|
|
40089
40089
|
type DocumentationPage = z.infer<typeof DocumentationPage>;
|
|
40090
40090
|
|
|
40091
|
+
declare const PageRedirect: z.ZodObject<{
|
|
40092
|
+
id: z.ZodString;
|
|
40093
|
+
pagePersistentId: z.ZodString;
|
|
40094
|
+
path: z.ZodString;
|
|
40095
|
+
createdAt: z.ZodDate;
|
|
40096
|
+
updatedAt: z.ZodDate;
|
|
40097
|
+
designSystemId: z.ZodString;
|
|
40098
|
+
}, "strip", z.ZodTypeAny, {
|
|
40099
|
+
path: string;
|
|
40100
|
+
id: string;
|
|
40101
|
+
createdAt: Date;
|
|
40102
|
+
updatedAt: Date;
|
|
40103
|
+
designSystemId: string;
|
|
40104
|
+
pagePersistentId: string;
|
|
40105
|
+
}, {
|
|
40106
|
+
path: string;
|
|
40107
|
+
id: string;
|
|
40108
|
+
createdAt: Date;
|
|
40109
|
+
updatedAt: Date;
|
|
40110
|
+
designSystemId: string;
|
|
40111
|
+
pagePersistentId: string;
|
|
40112
|
+
}>;
|
|
40113
|
+
type PageRedirect = z.infer<typeof PageRedirect>;
|
|
40114
|
+
|
|
40091
40115
|
declare const DocumentationSettings: z.ZodObject<{
|
|
40092
40116
|
designSystemVersionId: z.ZodString;
|
|
40093
40117
|
createdAt: z.ZodDate;
|
|
@@ -82665,15 +82689,15 @@ type FigmaFileAccessData = z.infer<typeof FigmaFileAccessData>;
|
|
|
82665
82689
|
declare const ImportFunctionInput: z.ZodObject<{
|
|
82666
82690
|
importJobId: z.ZodString;
|
|
82667
82691
|
importContextId: z.ZodString;
|
|
82668
|
-
designSystemId: z.
|
|
82692
|
+
designSystemId: z.ZodString;
|
|
82669
82693
|
}, "strip", z.ZodTypeAny, {
|
|
82694
|
+
designSystemId: string;
|
|
82670
82695
|
importContextId: string;
|
|
82671
82696
|
importJobId: string;
|
|
82672
|
-
designSystemId?: string | undefined;
|
|
82673
82697
|
}, {
|
|
82698
|
+
designSystemId: string;
|
|
82674
82699
|
importContextId: string;
|
|
82675
82700
|
importJobId: string;
|
|
82676
|
-
designSystemId?: string | undefined;
|
|
82677
82701
|
}>;
|
|
82678
82702
|
type ImportFunctionInput = z.infer<typeof ImportFunctionInput>;
|
|
82679
82703
|
declare const ImportedFigmaSourceData: z.ZodObject<{
|
|
@@ -93733,25 +93757,6 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93733
93757
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
93734
93758
|
id: string;
|
|
93735
93759
|
name: string;
|
|
93736
|
-
svg: {
|
|
93737
|
-
type: "FigmaRender";
|
|
93738
|
-
originKey: string;
|
|
93739
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
93740
|
-
format: "Svg";
|
|
93741
|
-
fileId: string;
|
|
93742
|
-
nodeId: string;
|
|
93743
|
-
fileVersionId?: string | undefined;
|
|
93744
|
-
};
|
|
93745
|
-
png: {
|
|
93746
|
-
type: "FigmaRender";
|
|
93747
|
-
originKey: string;
|
|
93748
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
93749
|
-
format: "Png";
|
|
93750
|
-
fileId: string;
|
|
93751
|
-
scale: number;
|
|
93752
|
-
nodeId: string;
|
|
93753
|
-
fileVersionId?: string | undefined;
|
|
93754
|
-
};
|
|
93755
93760
|
size?: {
|
|
93756
93761
|
width?: number | null | undefined;
|
|
93757
93762
|
height?: number | null | undefined;
|
|
@@ -93762,25 +93767,6 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93762
93767
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
93763
93768
|
id: string;
|
|
93764
93769
|
name: string;
|
|
93765
|
-
svg: {
|
|
93766
|
-
type: "FigmaRender";
|
|
93767
|
-
originKey: string;
|
|
93768
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
93769
|
-
format: "Svg";
|
|
93770
|
-
fileId: string;
|
|
93771
|
-
nodeId: string;
|
|
93772
|
-
fileVersionId?: string | undefined;
|
|
93773
|
-
};
|
|
93774
|
-
png: {
|
|
93775
|
-
type: "FigmaRender";
|
|
93776
|
-
originKey: string;
|
|
93777
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
93778
|
-
format: "Png";
|
|
93779
|
-
fileId: string;
|
|
93780
|
-
scale: number;
|
|
93781
|
-
nodeId: string;
|
|
93782
|
-
fileVersionId?: string | undefined;
|
|
93783
|
-
};
|
|
93784
93770
|
size?: {
|
|
93785
93771
|
width?: number | null | undefined;
|
|
93786
93772
|
height?: number | null | undefined;
|
|
@@ -93811,25 +93797,6 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93811
93797
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
93812
93798
|
id: string;
|
|
93813
93799
|
name: string;
|
|
93814
|
-
svg: {
|
|
93815
|
-
type: "FigmaRender";
|
|
93816
|
-
originKey: string;
|
|
93817
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
93818
|
-
format: "Svg";
|
|
93819
|
-
fileId: string;
|
|
93820
|
-
nodeId: string;
|
|
93821
|
-
fileVersionId?: string | undefined;
|
|
93822
|
-
};
|
|
93823
|
-
png: {
|
|
93824
|
-
type: "FigmaRender";
|
|
93825
|
-
originKey: string;
|
|
93826
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
93827
|
-
format: "Png";
|
|
93828
|
-
fileId: string;
|
|
93829
|
-
scale: number;
|
|
93830
|
-
nodeId: string;
|
|
93831
|
-
fileVersionId?: string | undefined;
|
|
93832
|
-
};
|
|
93833
93800
|
size?: {
|
|
93834
93801
|
width: number;
|
|
93835
93802
|
height: number;
|
|
@@ -93848,25 +93815,6 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93848
93815
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
93849
93816
|
id: string;
|
|
93850
93817
|
name: string;
|
|
93851
|
-
svg: {
|
|
93852
|
-
type: "FigmaRender";
|
|
93853
|
-
originKey: string;
|
|
93854
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
93855
|
-
format: "Svg";
|
|
93856
|
-
fileId: string;
|
|
93857
|
-
nodeId: string;
|
|
93858
|
-
fileVersionId?: string | undefined;
|
|
93859
|
-
};
|
|
93860
|
-
png: {
|
|
93861
|
-
type: "FigmaRender";
|
|
93862
|
-
originKey: string;
|
|
93863
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
93864
|
-
format: "Png";
|
|
93865
|
-
fileId: string;
|
|
93866
|
-
scale: number;
|
|
93867
|
-
nodeId: string;
|
|
93868
|
-
fileVersionId?: string | undefined;
|
|
93869
|
-
};
|
|
93870
93818
|
size?: {
|
|
93871
93819
|
width?: number | null | undefined;
|
|
93872
93820
|
height?: number | null | undefined;
|
|
@@ -93877,25 +93825,6 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93877
93825
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
93878
93826
|
id: string;
|
|
93879
93827
|
name: string;
|
|
93880
|
-
svg: {
|
|
93881
|
-
type: "FigmaRender";
|
|
93882
|
-
originKey: string;
|
|
93883
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
93884
|
-
format: "Svg";
|
|
93885
|
-
fileId: string;
|
|
93886
|
-
nodeId: string;
|
|
93887
|
-
fileVersionId?: string | undefined;
|
|
93888
|
-
};
|
|
93889
|
-
png: {
|
|
93890
|
-
type: "FigmaRender";
|
|
93891
|
-
originKey: string;
|
|
93892
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
93893
|
-
format: "Png";
|
|
93894
|
-
fileId: string;
|
|
93895
|
-
scale: number;
|
|
93896
|
-
nodeId: string;
|
|
93897
|
-
fileVersionId?: string | undefined;
|
|
93898
|
-
};
|
|
93899
93828
|
size?: {
|
|
93900
93829
|
width?: number | null | undefined;
|
|
93901
93830
|
height?: number | null | undefined;
|
|
@@ -93926,25 +93855,6 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93926
93855
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
93927
93856
|
id: string;
|
|
93928
93857
|
name: string;
|
|
93929
|
-
svg: {
|
|
93930
|
-
type: "FigmaRender";
|
|
93931
|
-
originKey: string;
|
|
93932
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
93933
|
-
format: "Svg";
|
|
93934
|
-
fileId: string;
|
|
93935
|
-
nodeId: string;
|
|
93936
|
-
fileVersionId?: string | undefined;
|
|
93937
|
-
};
|
|
93938
|
-
png: {
|
|
93939
|
-
type: "FigmaRender";
|
|
93940
|
-
originKey: string;
|
|
93941
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
93942
|
-
format: "Png";
|
|
93943
|
-
fileId: string;
|
|
93944
|
-
scale: number;
|
|
93945
|
-
nodeId: string;
|
|
93946
|
-
fileVersionId?: string | undefined;
|
|
93947
|
-
};
|
|
93948
93858
|
size?: {
|
|
93949
93859
|
width: number;
|
|
93950
93860
|
height: number;
|
|
@@ -93976,25 +93886,6 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93976
93886
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
93977
93887
|
id: string;
|
|
93978
93888
|
name: string;
|
|
93979
|
-
svg: {
|
|
93980
|
-
type: "FigmaRender";
|
|
93981
|
-
originKey: string;
|
|
93982
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
93983
|
-
format: "Svg";
|
|
93984
|
-
fileId: string;
|
|
93985
|
-
nodeId: string;
|
|
93986
|
-
fileVersionId?: string | undefined;
|
|
93987
|
-
};
|
|
93988
|
-
png: {
|
|
93989
|
-
type: "FigmaRender";
|
|
93990
|
-
originKey: string;
|
|
93991
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
93992
|
-
format: "Png";
|
|
93993
|
-
fileId: string;
|
|
93994
|
-
scale: number;
|
|
93995
|
-
nodeId: string;
|
|
93996
|
-
fileVersionId?: string | undefined;
|
|
93997
|
-
};
|
|
93998
93889
|
size?: {
|
|
93999
93890
|
width?: number | null | undefined;
|
|
94000
93891
|
height?: number | null | undefined;
|
|
@@ -94005,25 +93896,6 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
94005
93896
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
94006
93897
|
id: string;
|
|
94007
93898
|
name: string;
|
|
94008
|
-
svg: {
|
|
94009
|
-
type: "FigmaRender";
|
|
94010
|
-
originKey: string;
|
|
94011
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
94012
|
-
format: "Svg";
|
|
94013
|
-
fileId: string;
|
|
94014
|
-
nodeId: string;
|
|
94015
|
-
fileVersionId?: string | undefined;
|
|
94016
|
-
};
|
|
94017
|
-
png: {
|
|
94018
|
-
type: "FigmaRender";
|
|
94019
|
-
originKey: string;
|
|
94020
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
94021
|
-
format: "Png";
|
|
94022
|
-
fileId: string;
|
|
94023
|
-
scale: number;
|
|
94024
|
-
nodeId: string;
|
|
94025
|
-
fileVersionId?: string | undefined;
|
|
94026
|
-
};
|
|
94027
93899
|
size?: {
|
|
94028
93900
|
width?: number | null | undefined;
|
|
94029
93901
|
height?: number | null | undefined;
|
|
@@ -95319,25 +95191,6 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
95319
95191
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
95320
95192
|
id: string;
|
|
95321
95193
|
name: string;
|
|
95322
|
-
svg: {
|
|
95323
|
-
type: "FigmaRender";
|
|
95324
|
-
originKey: string;
|
|
95325
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
95326
|
-
format: "Svg";
|
|
95327
|
-
fileId: string;
|
|
95328
|
-
nodeId: string;
|
|
95329
|
-
fileVersionId?: string | undefined;
|
|
95330
|
-
};
|
|
95331
|
-
png: {
|
|
95332
|
-
type: "FigmaRender";
|
|
95333
|
-
originKey: string;
|
|
95334
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
95335
|
-
format: "Png";
|
|
95336
|
-
fileId: string;
|
|
95337
|
-
scale: number;
|
|
95338
|
-
nodeId: string;
|
|
95339
|
-
fileVersionId?: string | undefined;
|
|
95340
|
-
};
|
|
95341
95194
|
size?: {
|
|
95342
95195
|
width: number;
|
|
95343
95196
|
height: number;
|
|
@@ -95384,25 +95237,6 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
95384
95237
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
95385
95238
|
id: string;
|
|
95386
95239
|
name: string;
|
|
95387
|
-
svg: {
|
|
95388
|
-
type: "FigmaRender";
|
|
95389
|
-
originKey: string;
|
|
95390
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
95391
|
-
format: "Svg";
|
|
95392
|
-
fileId: string;
|
|
95393
|
-
nodeId: string;
|
|
95394
|
-
fileVersionId?: string | undefined;
|
|
95395
|
-
};
|
|
95396
|
-
png: {
|
|
95397
|
-
type: "FigmaRender";
|
|
95398
|
-
originKey: string;
|
|
95399
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
95400
|
-
format: "Png";
|
|
95401
|
-
fileId: string;
|
|
95402
|
-
scale: number;
|
|
95403
|
-
nodeId: string;
|
|
95404
|
-
fileVersionId?: string | undefined;
|
|
95405
|
-
};
|
|
95406
95240
|
size?: {
|
|
95407
95241
|
width?: number | null | undefined;
|
|
95408
95242
|
height?: number | null | undefined;
|
|
@@ -95413,25 +95247,6 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
95413
95247
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
95414
95248
|
id: string;
|
|
95415
95249
|
name: string;
|
|
95416
|
-
svg: {
|
|
95417
|
-
type: "FigmaRender";
|
|
95418
|
-
originKey: string;
|
|
95419
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
95420
|
-
format: "Svg";
|
|
95421
|
-
fileId: string;
|
|
95422
|
-
nodeId: string;
|
|
95423
|
-
fileVersionId?: string | undefined;
|
|
95424
|
-
};
|
|
95425
|
-
png: {
|
|
95426
|
-
type: "FigmaRender";
|
|
95427
|
-
originKey: string;
|
|
95428
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
95429
|
-
format: "Png";
|
|
95430
|
-
fileId: string;
|
|
95431
|
-
scale: number;
|
|
95432
|
-
nodeId: string;
|
|
95433
|
-
fileVersionId?: string | undefined;
|
|
95434
|
-
};
|
|
95435
95250
|
size?: {
|
|
95436
95251
|
width?: number | null | undefined;
|
|
95437
95252
|
height?: number | null | undefined;
|
|
@@ -105914,25 +105729,6 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
105914
105729
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
105915
105730
|
id: string;
|
|
105916
105731
|
name: string;
|
|
105917
|
-
svg: {
|
|
105918
|
-
type: "FigmaRender";
|
|
105919
|
-
originKey: string;
|
|
105920
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
105921
|
-
format: "Svg";
|
|
105922
|
-
fileId: string;
|
|
105923
|
-
nodeId: string;
|
|
105924
|
-
fileVersionId?: string | undefined;
|
|
105925
|
-
};
|
|
105926
|
-
png: {
|
|
105927
|
-
type: "FigmaRender";
|
|
105928
|
-
originKey: string;
|
|
105929
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
105930
|
-
format: "Png";
|
|
105931
|
-
fileId: string;
|
|
105932
|
-
scale: number;
|
|
105933
|
-
nodeId: string;
|
|
105934
|
-
fileVersionId?: string | undefined;
|
|
105935
|
-
};
|
|
105936
105732
|
size?: {
|
|
105937
105733
|
width?: number | null | undefined;
|
|
105938
105734
|
height?: number | null | undefined;
|
|
@@ -105943,25 +105739,6 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
105943
105739
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
105944
105740
|
id: string;
|
|
105945
105741
|
name: string;
|
|
105946
|
-
svg: {
|
|
105947
|
-
type: "FigmaRender";
|
|
105948
|
-
originKey: string;
|
|
105949
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
105950
|
-
format: "Svg";
|
|
105951
|
-
fileId: string;
|
|
105952
|
-
nodeId: string;
|
|
105953
|
-
fileVersionId?: string | undefined;
|
|
105954
|
-
};
|
|
105955
|
-
png: {
|
|
105956
|
-
type: "FigmaRender";
|
|
105957
|
-
originKey: string;
|
|
105958
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
105959
|
-
format: "Png";
|
|
105960
|
-
fileId: string;
|
|
105961
|
-
scale: number;
|
|
105962
|
-
nodeId: string;
|
|
105963
|
-
fileVersionId?: string | undefined;
|
|
105964
|
-
};
|
|
105965
105742
|
size?: {
|
|
105966
105743
|
width?: number | null | undefined;
|
|
105967
105744
|
height?: number | null | undefined;
|
|
@@ -105992,25 +105769,6 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
105992
105769
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
105993
105770
|
id: string;
|
|
105994
105771
|
name: string;
|
|
105995
|
-
svg: {
|
|
105996
|
-
type: "FigmaRender";
|
|
105997
|
-
originKey: string;
|
|
105998
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
105999
|
-
format: "Svg";
|
|
106000
|
-
fileId: string;
|
|
106001
|
-
nodeId: string;
|
|
106002
|
-
fileVersionId?: string | undefined;
|
|
106003
|
-
};
|
|
106004
|
-
png: {
|
|
106005
|
-
type: "FigmaRender";
|
|
106006
|
-
originKey: string;
|
|
106007
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
106008
|
-
format: "Png";
|
|
106009
|
-
fileId: string;
|
|
106010
|
-
scale: number;
|
|
106011
|
-
nodeId: string;
|
|
106012
|
-
fileVersionId?: string | undefined;
|
|
106013
|
-
};
|
|
106014
105772
|
size?: {
|
|
106015
105773
|
width: number;
|
|
106016
105774
|
height: number;
|
|
@@ -106029,25 +105787,6 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
106029
105787
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
106030
105788
|
id: string;
|
|
106031
105789
|
name: string;
|
|
106032
|
-
svg: {
|
|
106033
|
-
type: "FigmaRender";
|
|
106034
|
-
originKey: string;
|
|
106035
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
106036
|
-
format: "Svg";
|
|
106037
|
-
fileId: string;
|
|
106038
|
-
nodeId: string;
|
|
106039
|
-
fileVersionId?: string | undefined;
|
|
106040
|
-
};
|
|
106041
|
-
png: {
|
|
106042
|
-
type: "FigmaRender";
|
|
106043
|
-
originKey: string;
|
|
106044
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
106045
|
-
format: "Png";
|
|
106046
|
-
fileId: string;
|
|
106047
|
-
scale: number;
|
|
106048
|
-
nodeId: string;
|
|
106049
|
-
fileVersionId?: string | undefined;
|
|
106050
|
-
};
|
|
106051
105790
|
size?: {
|
|
106052
105791
|
width?: number | null | undefined;
|
|
106053
105792
|
height?: number | null | undefined;
|
|
@@ -106058,25 +105797,6 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
106058
105797
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
106059
105798
|
id: string;
|
|
106060
105799
|
name: string;
|
|
106061
|
-
svg: {
|
|
106062
|
-
type: "FigmaRender";
|
|
106063
|
-
originKey: string;
|
|
106064
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
106065
|
-
format: "Svg";
|
|
106066
|
-
fileId: string;
|
|
106067
|
-
nodeId: string;
|
|
106068
|
-
fileVersionId?: string | undefined;
|
|
106069
|
-
};
|
|
106070
|
-
png: {
|
|
106071
|
-
type: "FigmaRender";
|
|
106072
|
-
originKey: string;
|
|
106073
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
106074
|
-
format: "Png";
|
|
106075
|
-
fileId: string;
|
|
106076
|
-
scale: number;
|
|
106077
|
-
nodeId: string;
|
|
106078
|
-
fileVersionId?: string | undefined;
|
|
106079
|
-
};
|
|
106080
105800
|
size?: {
|
|
106081
105801
|
width?: number | null | undefined;
|
|
106082
105802
|
height?: number | null | undefined;
|
|
@@ -106098,25 +105818,6 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
106098
105818
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
106099
105819
|
id: string;
|
|
106100
105820
|
name: string;
|
|
106101
|
-
svg: {
|
|
106102
|
-
type: "FigmaRender";
|
|
106103
|
-
originKey: string;
|
|
106104
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
106105
|
-
format: "Svg";
|
|
106106
|
-
fileId: string;
|
|
106107
|
-
nodeId: string;
|
|
106108
|
-
fileVersionId?: string | undefined;
|
|
106109
|
-
};
|
|
106110
|
-
png: {
|
|
106111
|
-
type: "FigmaRender";
|
|
106112
|
-
originKey: string;
|
|
106113
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
106114
|
-
format: "Png";
|
|
106115
|
-
fileId: string;
|
|
106116
|
-
scale: number;
|
|
106117
|
-
nodeId: string;
|
|
106118
|
-
fileVersionId?: string | undefined;
|
|
106119
|
-
};
|
|
106120
105821
|
size?: {
|
|
106121
105822
|
width: number;
|
|
106122
105823
|
height: number;
|
|
@@ -106145,25 +105846,6 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
106145
105846
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
106146
105847
|
id: string;
|
|
106147
105848
|
name: string;
|
|
106148
|
-
svg: {
|
|
106149
|
-
type: "FigmaRender";
|
|
106150
|
-
originKey: string;
|
|
106151
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
106152
|
-
format: "Svg";
|
|
106153
|
-
fileId: string;
|
|
106154
|
-
nodeId: string;
|
|
106155
|
-
fileVersionId?: string | undefined;
|
|
106156
|
-
};
|
|
106157
|
-
png: {
|
|
106158
|
-
type: "FigmaRender";
|
|
106159
|
-
originKey: string;
|
|
106160
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
106161
|
-
format: "Png";
|
|
106162
|
-
fileId: string;
|
|
106163
|
-
scale: number;
|
|
106164
|
-
nodeId: string;
|
|
106165
|
-
fileVersionId?: string | undefined;
|
|
106166
|
-
};
|
|
106167
105849
|
size?: {
|
|
106168
105850
|
width?: number | null | undefined;
|
|
106169
105851
|
height?: number | null | undefined;
|
|
@@ -106174,25 +105856,6 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
106174
105856
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
106175
105857
|
id: string;
|
|
106176
105858
|
name: string;
|
|
106177
|
-
svg: {
|
|
106178
|
-
type: "FigmaRender";
|
|
106179
|
-
originKey: string;
|
|
106180
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
106181
|
-
format: "Svg";
|
|
106182
|
-
fileId: string;
|
|
106183
|
-
nodeId: string;
|
|
106184
|
-
fileVersionId?: string | undefined;
|
|
106185
|
-
};
|
|
106186
|
-
png: {
|
|
106187
|
-
type: "FigmaRender";
|
|
106188
|
-
originKey: string;
|
|
106189
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
106190
|
-
format: "Png";
|
|
106191
|
-
fileId: string;
|
|
106192
|
-
scale: number;
|
|
106193
|
-
nodeId: string;
|
|
106194
|
-
fileVersionId?: string | undefined;
|
|
106195
|
-
};
|
|
106196
105859
|
size?: {
|
|
106197
105860
|
width?: number | null | undefined;
|
|
106198
105861
|
height?: number | null | undefined;
|
|
@@ -107512,25 +107175,6 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
107512
107175
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
107513
107176
|
id: string;
|
|
107514
107177
|
name: string;
|
|
107515
|
-
svg: {
|
|
107516
|
-
type: "FigmaRender";
|
|
107517
|
-
originKey: string;
|
|
107518
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
107519
|
-
format: "Svg";
|
|
107520
|
-
fileId: string;
|
|
107521
|
-
nodeId: string;
|
|
107522
|
-
fileVersionId?: string | undefined;
|
|
107523
|
-
};
|
|
107524
|
-
png: {
|
|
107525
|
-
type: "FigmaRender";
|
|
107526
|
-
originKey: string;
|
|
107527
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
107528
|
-
format: "Png";
|
|
107529
|
-
fileId: string;
|
|
107530
|
-
scale: number;
|
|
107531
|
-
nodeId: string;
|
|
107532
|
-
fileVersionId?: string | undefined;
|
|
107533
|
-
};
|
|
107534
107178
|
size?: {
|
|
107535
107179
|
width: number;
|
|
107536
107180
|
height: number;
|
|
@@ -108841,25 +108485,6 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
108841
108485
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
108842
108486
|
id: string;
|
|
108843
108487
|
name: string;
|
|
108844
|
-
svg: {
|
|
108845
|
-
type: "FigmaRender";
|
|
108846
|
-
originKey: string;
|
|
108847
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
108848
|
-
format: "Svg";
|
|
108849
|
-
fileId: string;
|
|
108850
|
-
nodeId: string;
|
|
108851
|
-
fileVersionId?: string | undefined;
|
|
108852
|
-
};
|
|
108853
|
-
png: {
|
|
108854
|
-
type: "FigmaRender";
|
|
108855
|
-
originKey: string;
|
|
108856
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
108857
|
-
format: "Png";
|
|
108858
|
-
fileId: string;
|
|
108859
|
-
scale: number;
|
|
108860
|
-
nodeId: string;
|
|
108861
|
-
fileVersionId?: string | undefined;
|
|
108862
|
-
};
|
|
108863
108488
|
size?: {
|
|
108864
108489
|
width?: number | null | undefined;
|
|
108865
108490
|
height?: number | null | undefined;
|
|
@@ -108870,25 +108495,6 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
108870
108495
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
108871
108496
|
id: string;
|
|
108872
108497
|
name: string;
|
|
108873
|
-
svg: {
|
|
108874
|
-
type: "FigmaRender";
|
|
108875
|
-
originKey: string;
|
|
108876
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
108877
|
-
format: "Svg";
|
|
108878
|
-
fileId: string;
|
|
108879
|
-
nodeId: string;
|
|
108880
|
-
fileVersionId?: string | undefined;
|
|
108881
|
-
};
|
|
108882
|
-
png: {
|
|
108883
|
-
type: "FigmaRender";
|
|
108884
|
-
originKey: string;
|
|
108885
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
108886
|
-
format: "Png";
|
|
108887
|
-
fileId: string;
|
|
108888
|
-
scale: number;
|
|
108889
|
-
nodeId: string;
|
|
108890
|
-
fileVersionId?: string | undefined;
|
|
108891
|
-
};
|
|
108892
108498
|
size?: {
|
|
108893
108499
|
width?: number | null | undefined;
|
|
108894
108500
|
height?: number | null | undefined;
|
|
@@ -110473,147 +110079,11 @@ declare const DataSourceImportModel: z.ZodObject<{
|
|
|
110473
110079
|
}>;
|
|
110474
110080
|
type DataSourceImportModel = z.infer<typeof DataSourceImportModel>;
|
|
110475
110081
|
|
|
110476
|
-
|
|
110477
|
-
id: z.ZodString;
|
|
110478
|
-
name: z.ZodString;
|
|
110479
|
-
type: z.ZodEnum<["DOCUMENT", "CANVAS", "FRAME", "COMPONENT", "COMPONENT_SET"]>;
|
|
110480
|
-
size: z.ZodEffects<z.ZodOptional<z.ZodObject<{
|
|
110481
|
-
width: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
110482
|
-
height: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
110483
|
-
}, "strip", z.ZodTypeAny, {
|
|
110484
|
-
width: number;
|
|
110485
|
-
height: number;
|
|
110486
|
-
}, {
|
|
110487
|
-
width?: number | null | undefined;
|
|
110488
|
-
height?: number | null | undefined;
|
|
110489
|
-
}>>, {
|
|
110490
|
-
width: number;
|
|
110491
|
-
height: number;
|
|
110492
|
-
} | undefined, {
|
|
110493
|
-
width?: number | null | undefined;
|
|
110494
|
-
height?: number | null | undefined;
|
|
110495
|
-
} | undefined>;
|
|
110496
|
-
parentComponentSetId: z.ZodOptional<z.ZodString>;
|
|
110497
|
-
}, {
|
|
110498
|
-
png: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
110499
|
-
scope: z.ZodEnum<["DocumentationFrame", "ComponentThumbnail", "DesignSystem", "Documentation"]>;
|
|
110500
|
-
}, {
|
|
110501
|
-
type: z.ZodLiteral<"FigmaRender">;
|
|
110502
|
-
fileId: z.ZodString;
|
|
110503
|
-
fileVersionId: z.ZodOptional<z.ZodString>;
|
|
110504
|
-
nodeId: z.ZodString;
|
|
110505
|
-
originKey: z.ZodString;
|
|
110506
|
-
}>, {
|
|
110507
|
-
format: z.ZodLiteral<"Png">;
|
|
110508
|
-
scale: z.ZodNumber;
|
|
110509
|
-
}>, "strip", z.ZodTypeAny, {
|
|
110510
|
-
type: "FigmaRender";
|
|
110511
|
-
originKey: string;
|
|
110512
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
110513
|
-
format: "Png";
|
|
110514
|
-
fileId: string;
|
|
110515
|
-
scale: number;
|
|
110516
|
-
nodeId: string;
|
|
110517
|
-
fileVersionId?: string | undefined;
|
|
110518
|
-
}, {
|
|
110519
|
-
type: "FigmaRender";
|
|
110520
|
-
originKey: string;
|
|
110521
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
110522
|
-
format: "Png";
|
|
110523
|
-
fileId: string;
|
|
110524
|
-
scale: number;
|
|
110525
|
-
nodeId: string;
|
|
110526
|
-
fileVersionId?: string | undefined;
|
|
110527
|
-
}>;
|
|
110528
|
-
svg: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
110529
|
-
scope: z.ZodEnum<["DocumentationFrame", "ComponentThumbnail", "DesignSystem", "Documentation"]>;
|
|
110530
|
-
}, {
|
|
110531
|
-
type: z.ZodLiteral<"FigmaRender">;
|
|
110532
|
-
fileId: z.ZodString;
|
|
110533
|
-
fileVersionId: z.ZodOptional<z.ZodString>;
|
|
110534
|
-
nodeId: z.ZodString;
|
|
110535
|
-
originKey: z.ZodString;
|
|
110536
|
-
}>, {
|
|
110537
|
-
format: z.ZodLiteral<"Svg">;
|
|
110538
|
-
}>, "strip", z.ZodTypeAny, {
|
|
110539
|
-
type: "FigmaRender";
|
|
110540
|
-
originKey: string;
|
|
110541
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
110542
|
-
format: "Svg";
|
|
110543
|
-
fileId: string;
|
|
110544
|
-
nodeId: string;
|
|
110545
|
-
fileVersionId?: string | undefined;
|
|
110546
|
-
}, {
|
|
110547
|
-
type: "FigmaRender";
|
|
110548
|
-
originKey: string;
|
|
110549
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
110550
|
-
format: "Svg";
|
|
110551
|
-
fileId: string;
|
|
110552
|
-
nodeId: string;
|
|
110553
|
-
fileVersionId?: string | undefined;
|
|
110554
|
-
}>;
|
|
110555
|
-
}>, "strip", z.ZodTypeAny, {
|
|
110556
|
-
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
110557
|
-
id: string;
|
|
110558
|
-
name: string;
|
|
110559
|
-
svg: {
|
|
110560
|
-
type: "FigmaRender";
|
|
110561
|
-
originKey: string;
|
|
110562
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
110563
|
-
format: "Svg";
|
|
110564
|
-
fileId: string;
|
|
110565
|
-
nodeId: string;
|
|
110566
|
-
fileVersionId?: string | undefined;
|
|
110567
|
-
};
|
|
110568
|
-
png: {
|
|
110569
|
-
type: "FigmaRender";
|
|
110570
|
-
originKey: string;
|
|
110571
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
110572
|
-
format: "Png";
|
|
110573
|
-
fileId: string;
|
|
110574
|
-
scale: number;
|
|
110575
|
-
nodeId: string;
|
|
110576
|
-
fileVersionId?: string | undefined;
|
|
110577
|
-
};
|
|
110578
|
-
size?: {
|
|
110579
|
-
width: number;
|
|
110580
|
-
height: number;
|
|
110581
|
-
} | undefined;
|
|
110582
|
-
parentComponentSetId?: string | undefined;
|
|
110583
|
-
}, {
|
|
110584
|
-
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
110585
|
-
id: string;
|
|
110586
|
-
name: string;
|
|
110587
|
-
svg: {
|
|
110588
|
-
type: "FigmaRender";
|
|
110589
|
-
originKey: string;
|
|
110590
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
110591
|
-
format: "Svg";
|
|
110592
|
-
fileId: string;
|
|
110593
|
-
nodeId: string;
|
|
110594
|
-
fileVersionId?: string | undefined;
|
|
110595
|
-
};
|
|
110596
|
-
png: {
|
|
110597
|
-
type: "FigmaRender";
|
|
110598
|
-
originKey: string;
|
|
110599
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
110600
|
-
format: "Png";
|
|
110601
|
-
fileId: string;
|
|
110602
|
-
scale: number;
|
|
110603
|
-
nodeId: string;
|
|
110604
|
-
fileVersionId?: string | undefined;
|
|
110605
|
-
};
|
|
110606
|
-
size?: {
|
|
110607
|
-
width?: number | null | undefined;
|
|
110608
|
-
height?: number | null | undefined;
|
|
110609
|
-
} | undefined;
|
|
110610
|
-
parentComponentSetId?: string | undefined;
|
|
110611
|
-
}>;
|
|
110612
|
-
type FigmaFileStructureNodeImportModelBaseInput = z.input<typeof FigmaFileStructureNodeImportModelBase> & {
|
|
110082
|
+
type FigmaFileStructureNodeImportModelBaseInput = z.input<typeof FigmaFileStructureNodeBase> & {
|
|
110613
110083
|
children: FigmaFileStructureNodeImportModelBaseInput[];
|
|
110614
110084
|
};
|
|
110615
110085
|
declare const FigmaFileStructureNodeImportModel: z.ZodType<FigmaFileStructureNodeImportModel, ZodTypeDef, FigmaFileStructureNodeImportModelBaseInput>;
|
|
110616
|
-
type FigmaFileStructureNodeImportModel = z.infer<typeof
|
|
110086
|
+
type FigmaFileStructureNodeImportModel = z.infer<typeof FigmaFileStructureNodeBase> & {
|
|
110617
110087
|
children: FigmaFileStructureNodeImportModel[];
|
|
110618
110088
|
};
|
|
110619
110089
|
declare const FigmaFileStructureImportModel: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
@@ -110669,25 +110139,6 @@ declare const FigmaFileStructureImportModel: z.ZodObject<z.objectUtil.extendShap
|
|
|
110669
110139
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
110670
110140
|
id: string;
|
|
110671
110141
|
name: string;
|
|
110672
|
-
svg: {
|
|
110673
|
-
type: "FigmaRender";
|
|
110674
|
-
originKey: string;
|
|
110675
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
110676
|
-
format: "Svg";
|
|
110677
|
-
fileId: string;
|
|
110678
|
-
nodeId: string;
|
|
110679
|
-
fileVersionId?: string | undefined;
|
|
110680
|
-
};
|
|
110681
|
-
png: {
|
|
110682
|
-
type: "FigmaRender";
|
|
110683
|
-
originKey: string;
|
|
110684
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
110685
|
-
format: "Png";
|
|
110686
|
-
fileId: string;
|
|
110687
|
-
scale: number;
|
|
110688
|
-
nodeId: string;
|
|
110689
|
-
fileVersionId?: string | undefined;
|
|
110690
|
-
};
|
|
110691
110142
|
size?: {
|
|
110692
110143
|
width: number;
|
|
110693
110144
|
height: number;
|
|
@@ -110706,25 +110157,6 @@ declare const FigmaFileStructureImportModel: z.ZodObject<z.objectUtil.extendShap
|
|
|
110706
110157
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
110707
110158
|
id: string;
|
|
110708
110159
|
name: string;
|
|
110709
|
-
svg: {
|
|
110710
|
-
type: "FigmaRender";
|
|
110711
|
-
originKey: string;
|
|
110712
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
110713
|
-
format: "Svg";
|
|
110714
|
-
fileId: string;
|
|
110715
|
-
nodeId: string;
|
|
110716
|
-
fileVersionId?: string | undefined;
|
|
110717
|
-
};
|
|
110718
|
-
png: {
|
|
110719
|
-
type: "FigmaRender";
|
|
110720
|
-
originKey: string;
|
|
110721
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
110722
|
-
format: "Png";
|
|
110723
|
-
fileId: string;
|
|
110724
|
-
scale: number;
|
|
110725
|
-
nodeId: string;
|
|
110726
|
-
fileVersionId?: string | undefined;
|
|
110727
|
-
};
|
|
110728
110160
|
size?: {
|
|
110729
110161
|
width?: number | null | undefined;
|
|
110730
110162
|
height?: number | null | undefined;
|
|
@@ -110756,25 +110188,6 @@ declare const FigmaFileStructureImportModel: z.ZodObject<z.objectUtil.extendShap
|
|
|
110756
110188
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
110757
110189
|
id: string;
|
|
110758
110190
|
name: string;
|
|
110759
|
-
svg: {
|
|
110760
|
-
type: "FigmaRender";
|
|
110761
|
-
originKey: string;
|
|
110762
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
110763
|
-
format: "Svg";
|
|
110764
|
-
fileId: string;
|
|
110765
|
-
nodeId: string;
|
|
110766
|
-
fileVersionId?: string | undefined;
|
|
110767
|
-
};
|
|
110768
|
-
png: {
|
|
110769
|
-
type: "FigmaRender";
|
|
110770
|
-
originKey: string;
|
|
110771
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
110772
|
-
format: "Png";
|
|
110773
|
-
fileId: string;
|
|
110774
|
-
scale: number;
|
|
110775
|
-
nodeId: string;
|
|
110776
|
-
fileVersionId?: string | undefined;
|
|
110777
|
-
};
|
|
110778
110191
|
size?: {
|
|
110779
110192
|
width: number;
|
|
110780
110193
|
height: number;
|
|
@@ -110806,25 +110219,6 @@ declare const FigmaFileStructureImportModel: z.ZodObject<z.objectUtil.extendShap
|
|
|
110806
110219
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
110807
110220
|
id: string;
|
|
110808
110221
|
name: string;
|
|
110809
|
-
svg: {
|
|
110810
|
-
type: "FigmaRender";
|
|
110811
|
-
originKey: string;
|
|
110812
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
110813
|
-
format: "Svg";
|
|
110814
|
-
fileId: string;
|
|
110815
|
-
nodeId: string;
|
|
110816
|
-
fileVersionId?: string | undefined;
|
|
110817
|
-
};
|
|
110818
|
-
png: {
|
|
110819
|
-
type: "FigmaRender";
|
|
110820
|
-
originKey: string;
|
|
110821
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
110822
|
-
format: "Png";
|
|
110823
|
-
fileId: string;
|
|
110824
|
-
scale: number;
|
|
110825
|
-
nodeId: string;
|
|
110826
|
-
fileVersionId?: string | undefined;
|
|
110827
|
-
};
|
|
110828
110222
|
size?: {
|
|
110829
110223
|
width?: number | null | undefined;
|
|
110830
110224
|
height?: number | null | undefined;
|
|
@@ -110903,25 +110297,6 @@ declare const FigmaFileStructureImportModelInput: z.ZodObject<z.objectUtil.exten
|
|
|
110903
110297
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
110904
110298
|
id: string;
|
|
110905
110299
|
name: string;
|
|
110906
|
-
svg: {
|
|
110907
|
-
type: "FigmaRender";
|
|
110908
|
-
originKey: string;
|
|
110909
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
110910
|
-
format: "Svg";
|
|
110911
|
-
fileId: string;
|
|
110912
|
-
nodeId: string;
|
|
110913
|
-
fileVersionId?: string | undefined;
|
|
110914
|
-
};
|
|
110915
|
-
png: {
|
|
110916
|
-
type: "FigmaRender";
|
|
110917
|
-
originKey: string;
|
|
110918
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
110919
|
-
format: "Png";
|
|
110920
|
-
fileId: string;
|
|
110921
|
-
scale: number;
|
|
110922
|
-
nodeId: string;
|
|
110923
|
-
fileVersionId?: string | undefined;
|
|
110924
|
-
};
|
|
110925
110300
|
size?: {
|
|
110926
110301
|
width: number;
|
|
110927
110302
|
height: number;
|
|
@@ -110940,25 +110315,6 @@ declare const FigmaFileStructureImportModelInput: z.ZodObject<z.objectUtil.exten
|
|
|
110940
110315
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
110941
110316
|
id: string;
|
|
110942
110317
|
name: string;
|
|
110943
|
-
svg: {
|
|
110944
|
-
type: "FigmaRender";
|
|
110945
|
-
originKey: string;
|
|
110946
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
110947
|
-
format: "Svg";
|
|
110948
|
-
fileId: string;
|
|
110949
|
-
nodeId: string;
|
|
110950
|
-
fileVersionId?: string | undefined;
|
|
110951
|
-
};
|
|
110952
|
-
png: {
|
|
110953
|
-
type: "FigmaRender";
|
|
110954
|
-
originKey: string;
|
|
110955
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
110956
|
-
format: "Png";
|
|
110957
|
-
fileId: string;
|
|
110958
|
-
scale: number;
|
|
110959
|
-
nodeId: string;
|
|
110960
|
-
fileVersionId?: string | undefined;
|
|
110961
|
-
};
|
|
110962
110318
|
size?: {
|
|
110963
110319
|
width?: number | null | undefined;
|
|
110964
110320
|
height?: number | null | undefined;
|
|
@@ -110981,25 +110337,6 @@ declare const FigmaFileStructureImportModelInput: z.ZodObject<z.objectUtil.exten
|
|
|
110981
110337
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
110982
110338
|
id: string;
|
|
110983
110339
|
name: string;
|
|
110984
|
-
svg: {
|
|
110985
|
-
type: "FigmaRender";
|
|
110986
|
-
originKey: string;
|
|
110987
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
110988
|
-
format: "Svg";
|
|
110989
|
-
fileId: string;
|
|
110990
|
-
nodeId: string;
|
|
110991
|
-
fileVersionId?: string | undefined;
|
|
110992
|
-
};
|
|
110993
|
-
png: {
|
|
110994
|
-
type: "FigmaRender";
|
|
110995
|
-
originKey: string;
|
|
110996
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
110997
|
-
format: "Png";
|
|
110998
|
-
fileId: string;
|
|
110999
|
-
scale: number;
|
|
111000
|
-
nodeId: string;
|
|
111001
|
-
fileVersionId?: string | undefined;
|
|
111002
|
-
};
|
|
111003
110340
|
size?: {
|
|
111004
110341
|
width: number;
|
|
111005
110342
|
height: number;
|
|
@@ -111028,25 +110365,6 @@ declare const FigmaFileStructureImportModelInput: z.ZodObject<z.objectUtil.exten
|
|
|
111028
110365
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
111029
110366
|
id: string;
|
|
111030
110367
|
name: string;
|
|
111031
|
-
svg: {
|
|
111032
|
-
type: "FigmaRender";
|
|
111033
|
-
originKey: string;
|
|
111034
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
111035
|
-
format: "Svg";
|
|
111036
|
-
fileId: string;
|
|
111037
|
-
nodeId: string;
|
|
111038
|
-
fileVersionId?: string | undefined;
|
|
111039
|
-
};
|
|
111040
|
-
png: {
|
|
111041
|
-
type: "FigmaRender";
|
|
111042
|
-
originKey: string;
|
|
111043
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
111044
|
-
format: "Png";
|
|
111045
|
-
fileId: string;
|
|
111046
|
-
scale: number;
|
|
111047
|
-
nodeId: string;
|
|
111048
|
-
fileVersionId?: string | undefined;
|
|
111049
|
-
};
|
|
111050
110368
|
size?: {
|
|
111051
110369
|
width?: number | null | undefined;
|
|
111052
110370
|
height?: number | null | undefined;
|
|
@@ -140962,7 +140280,7 @@ declare const ExporterPropertyImageValue: z.ZodObject<{
|
|
|
140962
140280
|
assetUrl?: string | undefined;
|
|
140963
140281
|
}>;
|
|
140964
140282
|
type ExporterPropertyImageValue = z.infer<typeof ExporterPropertyImageValue>;
|
|
140965
|
-
declare const
|
|
140283
|
+
declare const ExporterConfigurationPropertyValue: z.ZodObject<{
|
|
140966
140284
|
key: z.ZodString;
|
|
140967
140285
|
value: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodBoolean, z.ZodObject<{
|
|
140968
140286
|
asset: z.ZodOptional<z.ZodObject<{
|
|
@@ -141763,7 +141081,7 @@ declare const ExporterPropertyValue: z.ZodObject<{
|
|
|
141763
141081
|
assetUrl?: string | undefined;
|
|
141764
141082
|
};
|
|
141765
141083
|
}>;
|
|
141766
|
-
type
|
|
141084
|
+
type ExporterConfigurationPropertyValue = z.infer<typeof ExporterConfigurationPropertyValue>;
|
|
141767
141085
|
declare const ExporterPropertyValuesCollection: z.ZodObject<{
|
|
141768
141086
|
id: z.ZodString;
|
|
141769
141087
|
designSystemId: z.ZodString;
|
|
@@ -144688,7 +144006,7 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
144688
144006
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
144689
144007
|
}>>;
|
|
144690
144008
|
theme: z.ZodOptional<z.ZodObject<{
|
|
144691
|
-
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey"]>>;
|
|
144009
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
|
|
144692
144010
|
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
144693
144011
|
accentColor: z.ZodOptional<z.ZodString>;
|
|
144694
144012
|
contrast: z.ZodOptional<z.ZodNumber>;
|
|
@@ -144698,7 +144016,7 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
144698
144016
|
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
144699
144017
|
}, "strip", z.ZodTypeAny, {
|
|
144700
144018
|
backgroundColor?: string | undefined;
|
|
144701
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
144019
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
144702
144020
|
accentColor?: string | undefined;
|
|
144703
144021
|
contrast?: number | undefined;
|
|
144704
144022
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -144707,7 +144025,7 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
144707
144025
|
isEditorWhite?: boolean | undefined;
|
|
144708
144026
|
}, {
|
|
144709
144027
|
backgroundColor?: string | undefined;
|
|
144710
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
144028
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
144711
144029
|
accentColor?: string | undefined;
|
|
144712
144030
|
contrast?: number | undefined;
|
|
144713
144031
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -144721,7 +144039,7 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
144721
144039
|
nickname?: string | undefined;
|
|
144722
144040
|
theme?: {
|
|
144723
144041
|
backgroundColor?: string | undefined;
|
|
144724
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
144042
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
144725
144043
|
accentColor?: string | undefined;
|
|
144726
144044
|
contrast?: number | undefined;
|
|
144727
144045
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -144749,7 +144067,7 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
144749
144067
|
nickname?: string | undefined;
|
|
144750
144068
|
theme?: {
|
|
144751
144069
|
backgroundColor?: string | undefined;
|
|
144752
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
144070
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
144753
144071
|
accentColor?: string | undefined;
|
|
144754
144072
|
contrast?: number | undefined;
|
|
144755
144073
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -144978,7 +144296,7 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
144978
144296
|
nickname?: string | undefined;
|
|
144979
144297
|
theme?: {
|
|
144980
144298
|
backgroundColor?: string | undefined;
|
|
144981
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
144299
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
144982
144300
|
accentColor?: string | undefined;
|
|
144983
144301
|
contrast?: number | undefined;
|
|
144984
144302
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -145058,7 +144376,7 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
145058
144376
|
nickname?: string | undefined;
|
|
145059
144377
|
theme?: {
|
|
145060
144378
|
backgroundColor?: string | undefined;
|
|
145061
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
144379
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
145062
144380
|
accentColor?: string | undefined;
|
|
145063
144381
|
contrast?: number | undefined;
|
|
145064
144382
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -145354,7 +144672,7 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
145354
144672
|
nickname?: string | undefined;
|
|
145355
144673
|
theme?: {
|
|
145356
144674
|
backgroundColor?: string | undefined;
|
|
145357
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
144675
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
145358
144676
|
accentColor?: string | undefined;
|
|
145359
144677
|
contrast?: number | undefined;
|
|
145360
144678
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -145673,7 +144991,7 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
145673
144991
|
nickname?: string | undefined;
|
|
145674
144992
|
theme?: {
|
|
145675
144993
|
backgroundColor?: string | undefined;
|
|
145676
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
144994
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
145677
144995
|
accentColor?: string | undefined;
|
|
145678
144996
|
contrast?: number | undefined;
|
|
145679
144997
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -147396,7 +146714,7 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
147396
146714
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
147397
146715
|
}>>;
|
|
147398
146716
|
theme: z.ZodOptional<z.ZodObject<{
|
|
147399
|
-
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey"]>>;
|
|
146717
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
|
|
147400
146718
|
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
147401
146719
|
accentColor: z.ZodOptional<z.ZodString>;
|
|
147402
146720
|
contrast: z.ZodOptional<z.ZodNumber>;
|
|
@@ -147406,7 +146724,7 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
147406
146724
|
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
147407
146725
|
}, "strip", z.ZodTypeAny, {
|
|
147408
146726
|
backgroundColor?: string | undefined;
|
|
147409
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
146727
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
147410
146728
|
accentColor?: string | undefined;
|
|
147411
146729
|
contrast?: number | undefined;
|
|
147412
146730
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -147415,7 +146733,7 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
147415
146733
|
isEditorWhite?: boolean | undefined;
|
|
147416
146734
|
}, {
|
|
147417
146735
|
backgroundColor?: string | undefined;
|
|
147418
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
146736
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
147419
146737
|
accentColor?: string | undefined;
|
|
147420
146738
|
contrast?: number | undefined;
|
|
147421
146739
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -147429,7 +146747,7 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
147429
146747
|
nickname?: string | undefined;
|
|
147430
146748
|
theme?: {
|
|
147431
146749
|
backgroundColor?: string | undefined;
|
|
147432
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
146750
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
147433
146751
|
accentColor?: string | undefined;
|
|
147434
146752
|
contrast?: number | undefined;
|
|
147435
146753
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -147457,7 +146775,7 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
147457
146775
|
nickname?: string | undefined;
|
|
147458
146776
|
theme?: {
|
|
147459
146777
|
backgroundColor?: string | undefined;
|
|
147460
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
146778
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
147461
146779
|
accentColor?: string | undefined;
|
|
147462
146780
|
contrast?: number | undefined;
|
|
147463
146781
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -147686,7 +147004,7 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
147686
147004
|
nickname?: string | undefined;
|
|
147687
147005
|
theme?: {
|
|
147688
147006
|
backgroundColor?: string | undefined;
|
|
147689
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
147007
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
147690
147008
|
accentColor?: string | undefined;
|
|
147691
147009
|
contrast?: number | undefined;
|
|
147692
147010
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -147766,7 +147084,7 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
147766
147084
|
nickname?: string | undefined;
|
|
147767
147085
|
theme?: {
|
|
147768
147086
|
backgroundColor?: string | undefined;
|
|
147769
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
147087
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
147770
147088
|
accentColor?: string | undefined;
|
|
147771
147089
|
contrast?: number | undefined;
|
|
147772
147090
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -148062,7 +147380,7 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
148062
147380
|
nickname?: string | undefined;
|
|
148063
147381
|
theme?: {
|
|
148064
147382
|
backgroundColor?: string | undefined;
|
|
148065
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
147383
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
148066
147384
|
accentColor?: string | undefined;
|
|
148067
147385
|
contrast?: number | undefined;
|
|
148068
147386
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -148358,7 +147676,7 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
148358
147676
|
nickname?: string | undefined;
|
|
148359
147677
|
theme?: {
|
|
148360
147678
|
backgroundColor?: string | undefined;
|
|
148361
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
147679
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
148362
147680
|
accentColor?: string | undefined;
|
|
148363
147681
|
contrast?: number | undefined;
|
|
148364
147682
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -149314,9 +148632,8 @@ declare const ExportJobExporterConfiguration: z.ZodObject<{
|
|
|
149314
148632
|
assetUrl?: string | undefined;
|
|
149315
148633
|
};
|
|
149316
148634
|
}>, "many">;
|
|
149317
|
-
|
|
148635
|
+
exporterPropertyValuesV2: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
|
|
149318
148636
|
}, "strip", z.ZodTypeAny, {
|
|
149319
|
-
exporterPackageUrl: string;
|
|
149320
148637
|
exporterPropertyValues: {
|
|
149321
148638
|
key: string;
|
|
149322
148639
|
value: string | number | boolean | {
|
|
@@ -149419,9 +148736,9 @@ declare const ExportJobExporterConfiguration: z.ZodObject<{
|
|
|
149419
148736
|
assetUrl?: string | undefined;
|
|
149420
148737
|
};
|
|
149421
148738
|
}[];
|
|
149422
|
-
exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
149423
|
-
}, {
|
|
149424
148739
|
exporterPackageUrl: string;
|
|
148740
|
+
exporterPropertyValuesV2?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
148741
|
+
}, {
|
|
149425
148742
|
exporterPropertyValues: {
|
|
149426
148743
|
key: string;
|
|
149427
148744
|
value: string | number | boolean | {
|
|
@@ -149524,7 +148841,8 @@ declare const ExportJobExporterConfiguration: z.ZodObject<{
|
|
|
149524
148841
|
assetUrl?: string | undefined;
|
|
149525
148842
|
};
|
|
149526
148843
|
}[];
|
|
149527
|
-
|
|
148844
|
+
exporterPackageUrl: string;
|
|
148845
|
+
exporterPropertyValuesV2?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
149528
148846
|
}>;
|
|
149529
148847
|
type ExportJobExporterConfiguration = z.infer<typeof ExportJobExporterConfiguration>;
|
|
149530
148848
|
declare const ExportJobContext: z.ZodObject<{
|
|
@@ -149604,8 +148922,8 @@ declare const ExporterFunctionPayload: z.ZodObject<{
|
|
|
149604
148922
|
}>;
|
|
149605
148923
|
type ExporterFunctionPayload = z.infer<typeof ExporterFunctionPayload>;
|
|
149606
148924
|
|
|
149607
|
-
declare const
|
|
149608
|
-
type ExporterPropertyDefinitionValue = z.infer<typeof
|
|
148925
|
+
declare const ExporterPropertyValue: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>;
|
|
148926
|
+
type ExporterPropertyDefinitionValue = z.infer<typeof ExporterPropertyValue>;
|
|
149609
148927
|
declare const ExporterPropertyType: z.ZodEnum<["Enum", "Boolean", "String", "Number", "Array", "Object"]>;
|
|
149610
148928
|
type ExporterPropertyType = z.infer<typeof ExporterPropertyType>;
|
|
149611
148929
|
declare const ExporterPropertyDefinitionEnum: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -150031,8 +149349,8 @@ declare const ExporterPropertyDefinitionEnumOption: z.ZodObject<{
|
|
|
150031
149349
|
label: string;
|
|
150032
149350
|
}>;
|
|
150033
149351
|
type ExporterPropertyDefinitionEnumOption = z.infer<typeof ExporterPropertyDefinitionEnumOption>;
|
|
150034
|
-
declare const
|
|
150035
|
-
type
|
|
149352
|
+
declare const ExporterPropertyValueMap: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>;
|
|
149353
|
+
type ExporterPropertyValueMap = z.infer<typeof ExporterPropertyValueMap>;
|
|
150036
149354
|
|
|
150037
149355
|
declare const ExportJobDocumentationChanges: z.ZodObject<{
|
|
150038
149356
|
pagePersistentIds: z.ZodArray<z.ZodString, "many">;
|
|
@@ -150517,6 +149835,301 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
150517
149835
|
} | undefined;
|
|
150518
149836
|
}>;
|
|
150519
149837
|
type ExportDestinationsMap = z.infer<typeof ExportDestinationsMap>;
|
|
149838
|
+
declare const ExportDestinationsMapUpdate: z.ZodObject<{
|
|
149839
|
+
webhookUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
149840
|
+
destinationSnDocs: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
149841
|
+
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
149842
|
+
changes: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
149843
|
+
pagePersistentIds: string[];
|
|
149844
|
+
groupPersistentIds: string[];
|
|
149845
|
+
}, z.ZodTypeDef, {
|
|
149846
|
+
pagePersistentIds: string[];
|
|
149847
|
+
groupPersistentIds: string[];
|
|
149848
|
+
}>>>, {
|
|
149849
|
+
pagePersistentIds: string[];
|
|
149850
|
+
groupPersistentIds: string[];
|
|
149851
|
+
} | undefined, {
|
|
149852
|
+
pagePersistentIds: string[];
|
|
149853
|
+
groupPersistentIds: string[];
|
|
149854
|
+
} | null | undefined>;
|
|
149855
|
+
}, "strip", z.ZodTypeAny, {
|
|
149856
|
+
environment: "Live" | "Preview";
|
|
149857
|
+
changes?: {
|
|
149858
|
+
pagePersistentIds: string[];
|
|
149859
|
+
groupPersistentIds: string[];
|
|
149860
|
+
} | undefined;
|
|
149861
|
+
}, {
|
|
149862
|
+
environment: "Live" | "Preview";
|
|
149863
|
+
changes?: {
|
|
149864
|
+
pagePersistentIds: string[];
|
|
149865
|
+
groupPersistentIds: string[];
|
|
149866
|
+
} | null | undefined;
|
|
149867
|
+
}>>>;
|
|
149868
|
+
destinationS3: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>>;
|
|
149869
|
+
destinationGithub: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
149870
|
+
credentialId: z.ZodOptional<z.ZodString>;
|
|
149871
|
+
url: z.ZodString;
|
|
149872
|
+
branch: z.ZodString;
|
|
149873
|
+
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
149874
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
149875
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
149876
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
149877
|
+
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
149878
|
+
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
149879
|
+
}, "strip", z.ZodTypeAny, {
|
|
149880
|
+
url: string;
|
|
149881
|
+
branch: string;
|
|
149882
|
+
userId?: number | undefined;
|
|
149883
|
+
credentialId?: string | undefined;
|
|
149884
|
+
relativePath?: string | undefined;
|
|
149885
|
+
purgeDirectory?: boolean | undefined;
|
|
149886
|
+
commitAuthorName?: string | undefined;
|
|
149887
|
+
commitAuthorEmail?: string | undefined;
|
|
149888
|
+
connectionId?: string | undefined;
|
|
149889
|
+
}, {
|
|
149890
|
+
url: string;
|
|
149891
|
+
branch: string;
|
|
149892
|
+
userId?: number | null | undefined;
|
|
149893
|
+
credentialId?: string | undefined;
|
|
149894
|
+
relativePath?: string | null | undefined;
|
|
149895
|
+
purgeDirectory?: boolean | null | undefined;
|
|
149896
|
+
commitAuthorName?: string | null | undefined;
|
|
149897
|
+
commitAuthorEmail?: string | null | undefined;
|
|
149898
|
+
connectionId?: string | null | undefined;
|
|
149899
|
+
}>>>;
|
|
149900
|
+
destinationAzure: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
149901
|
+
credentialId: z.ZodOptional<z.ZodString>;
|
|
149902
|
+
organizationId: z.ZodString;
|
|
149903
|
+
projectId: z.ZodString;
|
|
149904
|
+
repositoryId: z.ZodString;
|
|
149905
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
149906
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
149907
|
+
branch: z.ZodString;
|
|
149908
|
+
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
149909
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
149910
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
149911
|
+
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
149912
|
+
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
149913
|
+
}, "strip", z.ZodTypeAny, {
|
|
149914
|
+
branch: string;
|
|
149915
|
+
organizationId: string;
|
|
149916
|
+
projectId: string;
|
|
149917
|
+
repositoryId: string;
|
|
149918
|
+
url?: string | undefined;
|
|
149919
|
+
userId?: number | undefined;
|
|
149920
|
+
credentialId?: string | undefined;
|
|
149921
|
+
relativePath?: string | undefined;
|
|
149922
|
+
purgeDirectory?: boolean | undefined;
|
|
149923
|
+
commitAuthorName?: string | undefined;
|
|
149924
|
+
commitAuthorEmail?: string | undefined;
|
|
149925
|
+
connectionId?: string | undefined;
|
|
149926
|
+
}, {
|
|
149927
|
+
branch: string;
|
|
149928
|
+
organizationId: string;
|
|
149929
|
+
projectId: string;
|
|
149930
|
+
repositoryId: string;
|
|
149931
|
+
url?: string | null | undefined;
|
|
149932
|
+
userId?: number | null | undefined;
|
|
149933
|
+
credentialId?: string | undefined;
|
|
149934
|
+
relativePath?: string | null | undefined;
|
|
149935
|
+
purgeDirectory?: boolean | null | undefined;
|
|
149936
|
+
commitAuthorName?: string | null | undefined;
|
|
149937
|
+
commitAuthorEmail?: string | null | undefined;
|
|
149938
|
+
connectionId?: string | null | undefined;
|
|
149939
|
+
}>>>;
|
|
149940
|
+
destinationGitlab: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
149941
|
+
credentialId: z.ZodOptional<z.ZodString>;
|
|
149942
|
+
projectId: z.ZodString;
|
|
149943
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
149944
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
149945
|
+
branch: z.ZodString;
|
|
149946
|
+
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
149947
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
149948
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
149949
|
+
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
149950
|
+
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
149951
|
+
}, "strip", z.ZodTypeAny, {
|
|
149952
|
+
branch: string;
|
|
149953
|
+
projectId: string;
|
|
149954
|
+
url?: string | undefined;
|
|
149955
|
+
userId?: number | undefined;
|
|
149956
|
+
credentialId?: string | undefined;
|
|
149957
|
+
relativePath?: string | undefined;
|
|
149958
|
+
purgeDirectory?: boolean | undefined;
|
|
149959
|
+
commitAuthorName?: string | undefined;
|
|
149960
|
+
commitAuthorEmail?: string | undefined;
|
|
149961
|
+
connectionId?: string | undefined;
|
|
149962
|
+
}, {
|
|
149963
|
+
branch: string;
|
|
149964
|
+
projectId: string;
|
|
149965
|
+
url?: string | null | undefined;
|
|
149966
|
+
userId?: number | null | undefined;
|
|
149967
|
+
credentialId?: string | undefined;
|
|
149968
|
+
relativePath?: string | null | undefined;
|
|
149969
|
+
purgeDirectory?: boolean | null | undefined;
|
|
149970
|
+
commitAuthorName?: string | null | undefined;
|
|
149971
|
+
commitAuthorEmail?: string | null | undefined;
|
|
149972
|
+
connectionId?: string | null | undefined;
|
|
149973
|
+
}>>>;
|
|
149974
|
+
destinationBitbucket: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
149975
|
+
credentialId: z.ZodOptional<z.ZodString>;
|
|
149976
|
+
workspaceSlug: z.ZodString;
|
|
149977
|
+
projectKey: z.ZodString;
|
|
149978
|
+
repoSlug: z.ZodString;
|
|
149979
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
149980
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
149981
|
+
branch: z.ZodString;
|
|
149982
|
+
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
149983
|
+
purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
149984
|
+
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
149985
|
+
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
149986
|
+
}, "strip", z.ZodTypeAny, {
|
|
149987
|
+
branch: string;
|
|
149988
|
+
workspaceSlug: string;
|
|
149989
|
+
projectKey: string;
|
|
149990
|
+
repoSlug: string;
|
|
149991
|
+
userId?: number | undefined;
|
|
149992
|
+
credentialId?: string | undefined;
|
|
149993
|
+
relativePath?: string | undefined;
|
|
149994
|
+
purgeDirectory?: boolean | undefined;
|
|
149995
|
+
commitAuthorName?: string | undefined;
|
|
149996
|
+
commitAuthorEmail?: string | undefined;
|
|
149997
|
+
connectionId?: string | undefined;
|
|
149998
|
+
}, {
|
|
149999
|
+
branch: string;
|
|
150000
|
+
workspaceSlug: string;
|
|
150001
|
+
projectKey: string;
|
|
150002
|
+
repoSlug: string;
|
|
150003
|
+
userId?: number | null | undefined;
|
|
150004
|
+
credentialId?: string | undefined;
|
|
150005
|
+
relativePath?: string | null | undefined;
|
|
150006
|
+
purgeDirectory?: boolean | null | undefined;
|
|
150007
|
+
commitAuthorName?: string | null | undefined;
|
|
150008
|
+
commitAuthorEmail?: string | null | undefined;
|
|
150009
|
+
connectionId?: string | null | undefined;
|
|
150010
|
+
}>>>;
|
|
150011
|
+
}, "strip", z.ZodTypeAny, {
|
|
150012
|
+
webhookUrl?: string | null | undefined;
|
|
150013
|
+
destinationSnDocs?: {
|
|
150014
|
+
environment: "Live" | "Preview";
|
|
150015
|
+
changes?: {
|
|
150016
|
+
pagePersistentIds: string[];
|
|
150017
|
+
groupPersistentIds: string[];
|
|
150018
|
+
} | undefined;
|
|
150019
|
+
} | null | undefined;
|
|
150020
|
+
destinationS3?: {} | null | undefined;
|
|
150021
|
+
destinationGithub?: {
|
|
150022
|
+
url: string;
|
|
150023
|
+
branch: string;
|
|
150024
|
+
userId?: number | undefined;
|
|
150025
|
+
credentialId?: string | undefined;
|
|
150026
|
+
relativePath?: string | undefined;
|
|
150027
|
+
purgeDirectory?: boolean | undefined;
|
|
150028
|
+
commitAuthorName?: string | undefined;
|
|
150029
|
+
commitAuthorEmail?: string | undefined;
|
|
150030
|
+
connectionId?: string | undefined;
|
|
150031
|
+
} | null | undefined;
|
|
150032
|
+
destinationAzure?: {
|
|
150033
|
+
branch: string;
|
|
150034
|
+
organizationId: string;
|
|
150035
|
+
projectId: string;
|
|
150036
|
+
repositoryId: string;
|
|
150037
|
+
url?: string | undefined;
|
|
150038
|
+
userId?: number | undefined;
|
|
150039
|
+
credentialId?: string | undefined;
|
|
150040
|
+
relativePath?: string | undefined;
|
|
150041
|
+
purgeDirectory?: boolean | undefined;
|
|
150042
|
+
commitAuthorName?: string | undefined;
|
|
150043
|
+
commitAuthorEmail?: string | undefined;
|
|
150044
|
+
connectionId?: string | undefined;
|
|
150045
|
+
} | null | undefined;
|
|
150046
|
+
destinationGitlab?: {
|
|
150047
|
+
branch: string;
|
|
150048
|
+
projectId: string;
|
|
150049
|
+
url?: string | undefined;
|
|
150050
|
+
userId?: number | undefined;
|
|
150051
|
+
credentialId?: string | undefined;
|
|
150052
|
+
relativePath?: string | undefined;
|
|
150053
|
+
purgeDirectory?: boolean | undefined;
|
|
150054
|
+
commitAuthorName?: string | undefined;
|
|
150055
|
+
commitAuthorEmail?: string | undefined;
|
|
150056
|
+
connectionId?: string | undefined;
|
|
150057
|
+
} | null | undefined;
|
|
150058
|
+
destinationBitbucket?: {
|
|
150059
|
+
branch: string;
|
|
150060
|
+
workspaceSlug: string;
|
|
150061
|
+
projectKey: string;
|
|
150062
|
+
repoSlug: string;
|
|
150063
|
+
userId?: number | undefined;
|
|
150064
|
+
credentialId?: string | undefined;
|
|
150065
|
+
relativePath?: string | undefined;
|
|
150066
|
+
purgeDirectory?: boolean | undefined;
|
|
150067
|
+
commitAuthorName?: string | undefined;
|
|
150068
|
+
commitAuthorEmail?: string | undefined;
|
|
150069
|
+
connectionId?: string | undefined;
|
|
150070
|
+
} | null | undefined;
|
|
150071
|
+
}, {
|
|
150072
|
+
webhookUrl?: string | null | undefined;
|
|
150073
|
+
destinationSnDocs?: {
|
|
150074
|
+
environment: "Live" | "Preview";
|
|
150075
|
+
changes?: {
|
|
150076
|
+
pagePersistentIds: string[];
|
|
150077
|
+
groupPersistentIds: string[];
|
|
150078
|
+
} | null | undefined;
|
|
150079
|
+
} | null | undefined;
|
|
150080
|
+
destinationS3?: {} | null | undefined;
|
|
150081
|
+
destinationGithub?: {
|
|
150082
|
+
url: string;
|
|
150083
|
+
branch: string;
|
|
150084
|
+
userId?: number | null | undefined;
|
|
150085
|
+
credentialId?: string | undefined;
|
|
150086
|
+
relativePath?: string | null | undefined;
|
|
150087
|
+
purgeDirectory?: boolean | null | undefined;
|
|
150088
|
+
commitAuthorName?: string | null | undefined;
|
|
150089
|
+
commitAuthorEmail?: string | null | undefined;
|
|
150090
|
+
connectionId?: string | null | undefined;
|
|
150091
|
+
} | null | undefined;
|
|
150092
|
+
destinationAzure?: {
|
|
150093
|
+
branch: string;
|
|
150094
|
+
organizationId: string;
|
|
150095
|
+
projectId: string;
|
|
150096
|
+
repositoryId: string;
|
|
150097
|
+
url?: string | null | undefined;
|
|
150098
|
+
userId?: number | null | undefined;
|
|
150099
|
+
credentialId?: string | undefined;
|
|
150100
|
+
relativePath?: string | null | undefined;
|
|
150101
|
+
purgeDirectory?: boolean | null | undefined;
|
|
150102
|
+
commitAuthorName?: string | null | undefined;
|
|
150103
|
+
commitAuthorEmail?: string | null | undefined;
|
|
150104
|
+
connectionId?: string | null | undefined;
|
|
150105
|
+
} | null | undefined;
|
|
150106
|
+
destinationGitlab?: {
|
|
150107
|
+
branch: string;
|
|
150108
|
+
projectId: string;
|
|
150109
|
+
url?: string | null | undefined;
|
|
150110
|
+
userId?: number | null | undefined;
|
|
150111
|
+
credentialId?: string | undefined;
|
|
150112
|
+
relativePath?: string | null | undefined;
|
|
150113
|
+
purgeDirectory?: boolean | null | undefined;
|
|
150114
|
+
commitAuthorName?: string | null | undefined;
|
|
150115
|
+
commitAuthorEmail?: string | null | undefined;
|
|
150116
|
+
connectionId?: string | null | undefined;
|
|
150117
|
+
} | null | undefined;
|
|
150118
|
+
destinationBitbucket?: {
|
|
150119
|
+
branch: string;
|
|
150120
|
+
workspaceSlug: string;
|
|
150121
|
+
projectKey: string;
|
|
150122
|
+
repoSlug: string;
|
|
150123
|
+
userId?: number | null | undefined;
|
|
150124
|
+
credentialId?: string | undefined;
|
|
150125
|
+
relativePath?: string | null | undefined;
|
|
150126
|
+
purgeDirectory?: boolean | null | undefined;
|
|
150127
|
+
commitAuthorName?: string | null | undefined;
|
|
150128
|
+
commitAuthorEmail?: string | null | undefined;
|
|
150129
|
+
connectionId?: string | null | undefined;
|
|
150130
|
+
} | null | undefined;
|
|
150131
|
+
}>;
|
|
150132
|
+
type ExportDestinationsMapUpdate = z.infer<typeof ExportDestinationsMapUpdate>;
|
|
150520
150133
|
|
|
150521
150134
|
declare const ExportJobDestinationType: z.ZodEnum<["s3", "webhookUrl", "github", "documentation", "azure", "gitlab", "bitbucket"]>;
|
|
150522
150135
|
type ExportJobDestinationType = z.infer<typeof ExportJobDestinationType>;
|
|
@@ -151088,7 +150701,7 @@ declare const ExportJob: z.ZodObject<{
|
|
|
151088
150701
|
} | null | undefined;
|
|
151089
150702
|
}>>;
|
|
151090
150703
|
createdByUserId: z.ZodOptional<z.ZodString>;
|
|
151091
|
-
|
|
150704
|
+
exporterPropertyValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
|
|
151092
150705
|
}, "strip", z.ZodTypeAny, {
|
|
151093
150706
|
status: "Timeout" | "InProgress" | "Success" | "Failed";
|
|
151094
150707
|
id: string;
|
|
@@ -151160,7 +150773,7 @@ declare const ExportJob: z.ZodObject<{
|
|
|
151160
150773
|
connectionId?: string | undefined;
|
|
151161
150774
|
} | undefined;
|
|
151162
150775
|
themePersistentIds?: string[] | undefined;
|
|
151163
|
-
|
|
150776
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
151164
150777
|
finishedAt?: Date | undefined;
|
|
151165
150778
|
scheduleId?: string | null | undefined;
|
|
151166
150779
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -151267,7 +150880,7 @@ declare const ExportJob: z.ZodObject<{
|
|
|
151267
150880
|
connectionId?: string | null | undefined;
|
|
151268
150881
|
} | undefined;
|
|
151269
150882
|
themePersistentIds?: string[] | undefined;
|
|
151270
|
-
|
|
150883
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
151271
150884
|
finishedAt?: Date | undefined;
|
|
151272
150885
|
scheduleId?: string | null | undefined;
|
|
151273
150886
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -154039,7 +153652,7 @@ declare const Pipeline: z.ZodObject<{
|
|
|
154039
153652
|
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
154040
153653
|
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
154041
153654
|
themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
154042
|
-
|
|
153655
|
+
exporterPropertyValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
|
|
154043
153656
|
}, "strip", z.ZodTypeAny, {
|
|
154044
153657
|
id: string;
|
|
154045
153658
|
name: string;
|
|
@@ -154110,7 +153723,7 @@ declare const Pipeline: z.ZodObject<{
|
|
|
154110
153723
|
connectionId?: string | undefined;
|
|
154111
153724
|
} | undefined;
|
|
154112
153725
|
themePersistentIds?: string[] | undefined;
|
|
154113
|
-
|
|
153726
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
154114
153727
|
}, {
|
|
154115
153728
|
id: string;
|
|
154116
153729
|
name: string;
|
|
@@ -154181,7 +153794,7 @@ declare const Pipeline: z.ZodObject<{
|
|
|
154181
153794
|
connectionId?: string | null | undefined;
|
|
154182
153795
|
} | undefined;
|
|
154183
153796
|
themePersistentIds?: string[] | undefined;
|
|
154184
|
-
|
|
153797
|
+
exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
154185
153798
|
}>;
|
|
154186
153799
|
type Pipeline = z.infer<typeof Pipeline>;
|
|
154187
153800
|
|
|
@@ -167086,6 +166699,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
167086
166699
|
updatedByUserId: string;
|
|
167087
166700
|
}>, "many">;
|
|
167088
166701
|
pageApprovalIdsToDelete: z.ZodArray<z.ZodString, "many">;
|
|
166702
|
+
executedTransactionIds: z.ZodArray<z.ZodString, "many">;
|
|
167089
166703
|
}, "strip", z.ZodTypeAny, {
|
|
167090
166704
|
groups: {
|
|
167091
166705
|
id: string;
|
|
@@ -167332,6 +166946,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
167332
166946
|
groupSnapshotIdsToDelete: string[];
|
|
167333
166947
|
pageHashesToUpdate: Record<string, string>;
|
|
167334
166948
|
pageApprovalIdsToDelete: string[];
|
|
166949
|
+
executedTransactionIds: string[];
|
|
167335
166950
|
}, {
|
|
167336
166951
|
groups: {
|
|
167337
166952
|
id: string;
|
|
@@ -168614,6 +168229,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
168614
168229
|
groupSnapshotIdsToDelete: string[];
|
|
168615
168230
|
pageHashesToUpdate: Record<string, string>;
|
|
168616
168231
|
pageApprovalIdsToDelete: string[];
|
|
168232
|
+
executedTransactionIds: string[];
|
|
168617
168233
|
}>;
|
|
168618
168234
|
type DesignSystemVersionRoomUpdate = z.infer<typeof DesignSystemVersionRoomUpdate>;
|
|
168619
168235
|
|
|
@@ -180255,8 +179871,6 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
180255
179871
|
})[];
|
|
180256
179872
|
}>;
|
|
180257
179873
|
contentHash: z.ZodString;
|
|
180258
|
-
snapshotId: z.ZodString;
|
|
180259
|
-
roomId: z.ZodOptional<z.ZodString>;
|
|
180260
179874
|
}, "strip", z.ZodTypeAny, {
|
|
180261
179875
|
page: {
|
|
180262
179876
|
data: {
|
|
@@ -180453,8 +180067,6 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
180453
180067
|
})[];
|
|
180454
180068
|
};
|
|
180455
180069
|
contentHash: string;
|
|
180456
|
-
snapshotId: string;
|
|
180457
|
-
roomId?: string | undefined;
|
|
180458
180070
|
}, {
|
|
180459
180071
|
page: {
|
|
180460
180072
|
data: {
|
|
@@ -181169,8 +180781,6 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
181169
180781
|
})[];
|
|
181170
180782
|
};
|
|
181171
180783
|
contentHash: string;
|
|
181172
|
-
snapshotId: string;
|
|
181173
|
-
roomId?: string | undefined;
|
|
181174
180784
|
}>;
|
|
181175
180785
|
type RestoredDocumentationPage = z.infer<typeof RestoredDocumentationPage>;
|
|
181176
180786
|
declare const RestoredDocumentationGroup: z.ZodObject<{
|
|
@@ -182562,7 +182172,7 @@ declare const UserOnboarding: z.ZodObject<{
|
|
|
182562
182172
|
}>;
|
|
182563
182173
|
type UserOnboarding = z.infer<typeof UserOnboarding>;
|
|
182564
182174
|
declare const UserTheme: z.ZodObject<{
|
|
182565
|
-
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey"]>>;
|
|
182175
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
|
|
182566
182176
|
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
182567
182177
|
accentColor: z.ZodOptional<z.ZodString>;
|
|
182568
182178
|
contrast: z.ZodOptional<z.ZodNumber>;
|
|
@@ -182572,7 +182182,7 @@ declare const UserTheme: z.ZodObject<{
|
|
|
182572
182182
|
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
182573
182183
|
}, "strip", z.ZodTypeAny, {
|
|
182574
182184
|
backgroundColor?: string | undefined;
|
|
182575
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
182185
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
182576
182186
|
accentColor?: string | undefined;
|
|
182577
182187
|
contrast?: number | undefined;
|
|
182578
182188
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -182581,7 +182191,7 @@ declare const UserTheme: z.ZodObject<{
|
|
|
182581
182191
|
isEditorWhite?: boolean | undefined;
|
|
182582
182192
|
}, {
|
|
182583
182193
|
backgroundColor?: string | undefined;
|
|
182584
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
182194
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
182585
182195
|
accentColor?: string | undefined;
|
|
182586
182196
|
contrast?: number | undefined;
|
|
182587
182197
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -182635,7 +182245,7 @@ declare const UserProfile: z.ZodObject<{
|
|
|
182635
182245
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
182636
182246
|
}>>;
|
|
182637
182247
|
theme: z.ZodOptional<z.ZodObject<{
|
|
182638
|
-
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey"]>>;
|
|
182248
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
|
|
182639
182249
|
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
182640
182250
|
accentColor: z.ZodOptional<z.ZodString>;
|
|
182641
182251
|
contrast: z.ZodOptional<z.ZodNumber>;
|
|
@@ -182645,7 +182255,7 @@ declare const UserProfile: z.ZodObject<{
|
|
|
182645
182255
|
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
182646
182256
|
}, "strip", z.ZodTypeAny, {
|
|
182647
182257
|
backgroundColor?: string | undefined;
|
|
182648
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
182258
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
182649
182259
|
accentColor?: string | undefined;
|
|
182650
182260
|
contrast?: number | undefined;
|
|
182651
182261
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -182654,7 +182264,7 @@ declare const UserProfile: z.ZodObject<{
|
|
|
182654
182264
|
isEditorWhite?: boolean | undefined;
|
|
182655
182265
|
}, {
|
|
182656
182266
|
backgroundColor?: string | undefined;
|
|
182657
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
182267
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
182658
182268
|
accentColor?: string | undefined;
|
|
182659
182269
|
contrast?: number | undefined;
|
|
182660
182270
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -182668,7 +182278,7 @@ declare const UserProfile: z.ZodObject<{
|
|
|
182668
182278
|
nickname?: string | undefined;
|
|
182669
182279
|
theme?: {
|
|
182670
182280
|
backgroundColor?: string | undefined;
|
|
182671
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
182281
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
182672
182282
|
accentColor?: string | undefined;
|
|
182673
182283
|
contrast?: number | undefined;
|
|
182674
182284
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -182696,7 +182306,7 @@ declare const UserProfile: z.ZodObject<{
|
|
|
182696
182306
|
nickname?: string | undefined;
|
|
182697
182307
|
theme?: {
|
|
182698
182308
|
backgroundColor?: string | undefined;
|
|
182699
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
182309
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
182700
182310
|
accentColor?: string | undefined;
|
|
182701
182311
|
contrast?: number | undefined;
|
|
182702
182312
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -182765,7 +182375,7 @@ declare const UserProfileUpdate: z.ZodObject<Omit<{
|
|
|
182765
182375
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
182766
182376
|
}>>>;
|
|
182767
182377
|
theme: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
182768
|
-
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey"]>>;
|
|
182378
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
|
|
182769
182379
|
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
182770
182380
|
accentColor: z.ZodOptional<z.ZodString>;
|
|
182771
182381
|
contrast: z.ZodOptional<z.ZodNumber>;
|
|
@@ -182775,7 +182385,7 @@ declare const UserProfileUpdate: z.ZodObject<Omit<{
|
|
|
182775
182385
|
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
182776
182386
|
}, "strip", z.ZodTypeAny, {
|
|
182777
182387
|
backgroundColor?: string | undefined;
|
|
182778
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
182388
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
182779
182389
|
accentColor?: string | undefined;
|
|
182780
182390
|
contrast?: number | undefined;
|
|
182781
182391
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -182784,7 +182394,7 @@ declare const UserProfileUpdate: z.ZodObject<Omit<{
|
|
|
182784
182394
|
isEditorWhite?: boolean | undefined;
|
|
182785
182395
|
}, {
|
|
182786
182396
|
backgroundColor?: string | undefined;
|
|
182787
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
182397
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
182788
182398
|
accentColor?: string | undefined;
|
|
182789
182399
|
contrast?: number | undefined;
|
|
182790
182400
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -182797,7 +182407,7 @@ declare const UserProfileUpdate: z.ZodObject<Omit<{
|
|
|
182797
182407
|
nickname?: string | undefined;
|
|
182798
182408
|
theme?: {
|
|
182799
182409
|
backgroundColor?: string | undefined;
|
|
182800
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
182410
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
182801
182411
|
accentColor?: string | undefined;
|
|
182802
182412
|
contrast?: number | undefined;
|
|
182803
182413
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -182824,7 +182434,7 @@ declare const UserProfileUpdate: z.ZodObject<Omit<{
|
|
|
182824
182434
|
nickname?: string | undefined;
|
|
182825
182435
|
theme?: {
|
|
182826
182436
|
backgroundColor?: string | undefined;
|
|
182827
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
182437
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
182828
182438
|
accentColor?: string | undefined;
|
|
182829
182439
|
contrast?: number | undefined;
|
|
182830
182440
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -182914,7 +182524,7 @@ declare const User: z.ZodObject<{
|
|
|
182914
182524
|
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
182915
182525
|
}>>;
|
|
182916
182526
|
theme: z.ZodOptional<z.ZodObject<{
|
|
182917
|
-
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey"]>>;
|
|
182527
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
|
|
182918
182528
|
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
182919
182529
|
accentColor: z.ZodOptional<z.ZodString>;
|
|
182920
182530
|
contrast: z.ZodOptional<z.ZodNumber>;
|
|
@@ -182924,7 +182534,7 @@ declare const User: z.ZodObject<{
|
|
|
182924
182534
|
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
182925
182535
|
}, "strip", z.ZodTypeAny, {
|
|
182926
182536
|
backgroundColor?: string | undefined;
|
|
182927
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
182537
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
182928
182538
|
accentColor?: string | undefined;
|
|
182929
182539
|
contrast?: number | undefined;
|
|
182930
182540
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -182933,7 +182543,7 @@ declare const User: z.ZodObject<{
|
|
|
182933
182543
|
isEditorWhite?: boolean | undefined;
|
|
182934
182544
|
}, {
|
|
182935
182545
|
backgroundColor?: string | undefined;
|
|
182936
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
182546
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
182937
182547
|
accentColor?: string | undefined;
|
|
182938
182548
|
contrast?: number | undefined;
|
|
182939
182549
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -182947,7 +182557,7 @@ declare const User: z.ZodObject<{
|
|
|
182947
182557
|
nickname?: string | undefined;
|
|
182948
182558
|
theme?: {
|
|
182949
182559
|
backgroundColor?: string | undefined;
|
|
182950
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
182560
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
182951
182561
|
accentColor?: string | undefined;
|
|
182952
182562
|
contrast?: number | undefined;
|
|
182953
182563
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -182975,7 +182585,7 @@ declare const User: z.ZodObject<{
|
|
|
182975
182585
|
nickname?: string | undefined;
|
|
182976
182586
|
theme?: {
|
|
182977
182587
|
backgroundColor?: string | undefined;
|
|
182978
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
182588
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
182979
182589
|
accentColor?: string | undefined;
|
|
182980
182590
|
contrast?: number | undefined;
|
|
182981
182591
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -183204,7 +182814,7 @@ declare const User: z.ZodObject<{
|
|
|
183204
182814
|
nickname?: string | undefined;
|
|
183205
182815
|
theme?: {
|
|
183206
182816
|
backgroundColor?: string | undefined;
|
|
183207
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
182817
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
183208
182818
|
accentColor?: string | undefined;
|
|
183209
182819
|
contrast?: number | undefined;
|
|
183210
182820
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -183284,7 +182894,7 @@ declare const User: z.ZodObject<{
|
|
|
183284
182894
|
nickname?: string | undefined;
|
|
183285
182895
|
theme?: {
|
|
183286
182896
|
backgroundColor?: string | undefined;
|
|
183287
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
182897
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
183288
182898
|
accentColor?: string | undefined;
|
|
183289
182899
|
contrast?: number | undefined;
|
|
183290
182900
|
isSecondaryEnabled?: boolean | undefined;
|
|
@@ -183363,4 +182973,4 @@ type PersonalAccessTokenWithUser = {
|
|
|
183363
182973
|
token: PersonalAccessToken;
|
|
183364
182974
|
};
|
|
183365
182975
|
|
|
183366
|
-
export { Address, type AllFields, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeIntegrationDump, Collection, CollectionImportModel, CollectionImportModelInput, CollectionOrigin, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateCollection, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystem, type CreateDesignSystemInvitation, type CreateDesignSystemMembership, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, type CreateDocumentationPageContent, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreatePublishedDocPageVisitsEntry, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, type DataSourceOfType, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, type DesignSystemVersionParsedRoomId, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, type DocumentationPageOldParsedRoomId, type DocumentationPageParsedRoomId, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyImmutableType, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobExporterConfiguration, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyDefinition, ExporterPropertyDefinitionArray, ExporterPropertyDefinitionBoolean, ExporterPropertyDefinitionEnum, ExporterPropertyDefinitionEnumOption, ExporterPropertyDefinitionNumber, ExporterPropertyDefinitionObject, ExporterPropertyDefinitionString, ExporterPropertyDefinitionValue, ExporterPropertyDefinitionValueMap, ExporterPropertyImageValue, ExporterPropertyType, ExporterPropertyValue, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, FeatureFlagsKeepAliases, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceOrigin, FigmaNodeRelinkData, FigmaNodeRenderError, FigmaNodeRenderErrorType, FigmaNodeRenderFormat, FigmaNodeRenderState, FigmaNodeRenderedImage, FigmaNodeRendererPayload, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, GitBranch, GitIntegrationType, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetBlockConfig, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionFigmaComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentBlockConfig, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenBlockConfig, PageBlockTokenNameFormat, PageBlockTokenValueFormat, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, type ParsedRoomId, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocPageVisitsEntry, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, type RoomOwner, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShadowValue, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateCollection, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, type UpdateIntegrationCredential, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserSource, UserTest, UserTheme, VersionCreationJob, VersionCreationJobStatus, type VersionRoomOwner, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, type WorkspaceParsedRoomId, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, type WorkspaceRoomOwner, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, applyShallowObjectUpdate, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, castStringToDimensionValue, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, generateShortPersistentId, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, isDataSourceOfType, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isNotNullish, isNullish, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, recordToMap, removeCommentSpans, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };
|
|
182976
|
+
export { Address, type AllFields, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeIntegrationDump, Collection, CollectionImportModel, CollectionImportModelInput, CollectionOrigin, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateCollection, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystem, type CreateDesignSystemInvitation, type CreateDesignSystemMembership, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, type CreateDocumentationPageContent, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreatePublishedDocPageVisitsEntry, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, type DataSourceOfType, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, type DesignSystemVersionParsedRoomId, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, type DocumentationPageOldParsedRoomId, type DocumentationPageParsedRoomId, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyImmutableType, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportDestinationsMapUpdate, ExportJob, ExportJobContext, 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, ExporterPropertyDefinitionEnum, ExporterPropertyDefinitionEnumOption, ExporterPropertyDefinitionNumber, ExporterPropertyDefinitionObject, ExporterPropertyDefinitionString, type ExporterPropertyDefinitionValue, ExporterPropertyImageValue, ExporterPropertyType, ExporterPropertyValue, ExporterPropertyValueMap, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, FeatureFlagsKeepAliases, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceOrigin, FigmaNodeRelinkData, FigmaNodeRenderError, FigmaNodeRenderErrorType, FigmaNodeRenderFormat, FigmaNodeRenderState, FigmaNodeRenderedImage, FigmaNodeRendererPayload, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, GitBranch, GitIntegrationType, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetBlockConfig, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionFigmaComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentBlockConfig, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenBlockConfig, PageBlockTokenNameFormat, PageBlockTokenValueFormat, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageRedirect, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, type ParsedRoomId, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocPageVisitsEntry, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, type RoomOwner, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShadowValue, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateCollection, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, type UpdateIntegrationCredential, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserSource, UserTest, UserTheme, VersionCreationJob, VersionCreationJobStatus, type VersionRoomOwner, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, type WorkspaceParsedRoomId, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, type WorkspaceRoomOwner, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, applyShallowObjectUpdate, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, castStringToDimensionValue, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, generateShortPersistentId, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, isDataSourceOfType, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isNotNullish, isNullish, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, recordToMap, removeCommentSpans, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };
|