@supernova-studio/model 0.17.0 → 0.19.0
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 +4378 -19
- package/dist/index.d.ts +4378 -19
- package/dist/index.js +24 -15
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +24 -15
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/elements/data/documentation-block-v2.ts +7 -0
- package/src/dsm/elements/group.ts +1 -6
- package/src/multiplayer/design-system-version-room.ts +2 -20
- package/src/multiplayer/documentation-page-room.ts +25 -0
package/dist/index.d.mts
CHANGED
|
@@ -9405,14 +9405,37 @@ declare const PageBlockItemEmbedValue: z.ZodObject<{
|
|
|
9405
9405
|
value: z.ZodOptional<z.ZodString>;
|
|
9406
9406
|
caption: z.ZodOptional<z.ZodString>;
|
|
9407
9407
|
height: z.ZodOptional<z.ZodNumber>;
|
|
9408
|
+
openGraph: z.ZodOptional<z.ZodObject<{
|
|
9409
|
+
title: z.ZodOptional<z.ZodString>;
|
|
9410
|
+
description: z.ZodOptional<z.ZodString>;
|
|
9411
|
+
imageUrl: z.ZodOptional<z.ZodString>;
|
|
9412
|
+
}, "strip", z.ZodTypeAny, {
|
|
9413
|
+
title?: string | undefined;
|
|
9414
|
+
description?: string | undefined;
|
|
9415
|
+
imageUrl?: string | undefined;
|
|
9416
|
+
}, {
|
|
9417
|
+
title?: string | undefined;
|
|
9418
|
+
description?: string | undefined;
|
|
9419
|
+
imageUrl?: string | undefined;
|
|
9420
|
+
}>>;
|
|
9408
9421
|
}, "strip", z.ZodTypeAny, {
|
|
9409
9422
|
value?: string | undefined;
|
|
9410
9423
|
caption?: string | undefined;
|
|
9411
9424
|
height?: number | undefined;
|
|
9425
|
+
openGraph?: {
|
|
9426
|
+
title?: string | undefined;
|
|
9427
|
+
description?: string | undefined;
|
|
9428
|
+
imageUrl?: string | undefined;
|
|
9429
|
+
} | undefined;
|
|
9412
9430
|
}, {
|
|
9413
9431
|
value?: string | undefined;
|
|
9414
9432
|
caption?: string | undefined;
|
|
9415
9433
|
height?: number | undefined;
|
|
9434
|
+
openGraph?: {
|
|
9435
|
+
title?: string | undefined;
|
|
9436
|
+
description?: string | undefined;
|
|
9437
|
+
imageUrl?: string | undefined;
|
|
9438
|
+
} | undefined;
|
|
9416
9439
|
}>;
|
|
9417
9440
|
type PageBlockItemEmbedValue = z.infer<typeof PageBlockItemEmbedValue>;
|
|
9418
9441
|
declare const PageBlockItemFigmaNodeValue: z.ZodObject<{
|
|
@@ -25253,14 +25276,10 @@ type CreateElementGroup = OmitStrict<DbCreateInputOmit<ElementGroup>, "parentPer
|
|
|
25253
25276
|
type UpdateElementGroup = DbUpdate<OmitStrict<ElementGroup, "brandPersistentId" | "childType" | "designSystemVersionId" | "parentPersistentId"> & {
|
|
25254
25277
|
parentPersistentId: string;
|
|
25255
25278
|
}>;
|
|
25256
|
-
type DeleteElementGroup = {
|
|
25257
|
-
id: ElementGroup["id"];
|
|
25258
|
-
childType: ElementGroup["childType"];
|
|
25259
|
-
};
|
|
25260
25279
|
type ElementGroupsDiff = {
|
|
25261
25280
|
toCreate: CreateElementGroup[];
|
|
25262
25281
|
toUpdate: UpdateElementGroup[];
|
|
25263
|
-
toDelete:
|
|
25282
|
+
toDelete: ElementGroup["id"][];
|
|
25264
25283
|
};
|
|
25265
25284
|
|
|
25266
25285
|
declare const PageBlockV2: z.ZodObject<{
|
|
@@ -95546,8 +95565,6 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
95546
95565
|
} | null | undefined;
|
|
95547
95566
|
} | undefined;
|
|
95548
95567
|
}>, "many">;
|
|
95549
|
-
deletedPagePersistentIds: z.ZodArray<z.ZodString, "many">;
|
|
95550
|
-
deletedGroupPersistentIds: z.ZodArray<z.ZodString, "many">;
|
|
95551
95568
|
}, "strip", z.ZodTypeAny, {
|
|
95552
95569
|
groups: {
|
|
95553
95570
|
id: string;
|
|
@@ -95736,8 +95753,6 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
95736
95753
|
slug?: string | undefined;
|
|
95737
95754
|
userSlug?: string | undefined;
|
|
95738
95755
|
}[];
|
|
95739
|
-
deletedPagePersistentIds: string[];
|
|
95740
|
-
deletedGroupPersistentIds: string[];
|
|
95741
95756
|
}, {
|
|
95742
95757
|
groups: {
|
|
95743
95758
|
id: string;
|
|
@@ -95926,8 +95941,6 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
95926
95941
|
slug?: string | undefined;
|
|
95927
95942
|
userSlug?: string | undefined;
|
|
95928
95943
|
}[];
|
|
95929
|
-
deletedPagePersistentIds: string[];
|
|
95930
|
-
deletedGroupPersistentIds: string[];
|
|
95931
95944
|
}>;
|
|
95932
95945
|
type DesignSystemVersionRoomInitialState = z.infer<typeof DesignSystemVersionRoomInitialState>;
|
|
95933
95946
|
declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
@@ -97240,8 +97253,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
97240
97253
|
slug?: string | undefined;
|
|
97241
97254
|
userSlug?: string | undefined;
|
|
97242
97255
|
}>, "many">;
|
|
97243
|
-
|
|
97244
|
-
|
|
97256
|
+
deletedPageIds: z.ZodArray<z.ZodString, "many">;
|
|
97257
|
+
deletedGroupIds: z.ZodArray<z.ZodString, "many">;
|
|
97245
97258
|
}, "strip", z.ZodTypeAny, {
|
|
97246
97259
|
groups: {
|
|
97247
97260
|
id: string;
|
|
@@ -97430,8 +97443,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
97430
97443
|
slug?: string | undefined;
|
|
97431
97444
|
userSlug?: string | undefined;
|
|
97432
97445
|
}[];
|
|
97433
|
-
|
|
97434
|
-
|
|
97446
|
+
deletedPageIds: string[];
|
|
97447
|
+
deletedGroupIds: string[];
|
|
97435
97448
|
}, {
|
|
97436
97449
|
groups: {
|
|
97437
97450
|
id: string;
|
|
@@ -97620,11 +97633,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
97620
97633
|
slug?: string | undefined;
|
|
97621
97634
|
userSlug?: string | undefined;
|
|
97622
97635
|
}[];
|
|
97623
|
-
|
|
97624
|
-
|
|
97636
|
+
deletedPageIds: string[];
|
|
97637
|
+
deletedGroupIds: string[];
|
|
97625
97638
|
}>;
|
|
97626
97639
|
type DesignSystemVersionRoomUpdate = z.infer<typeof DesignSystemVersionRoomUpdate>;
|
|
97627
|
-
declare function mergeDesignSystemVersionRoomUpdates(lhs: DesignSystemVersionRoomUpdate, rhs: DesignSystemVersionRoomUpdate): DesignSystemVersionRoomUpdate;
|
|
97628
97640
|
|
|
97629
97641
|
declare const DocumentationPageRoom: z.ZodObject<{
|
|
97630
97642
|
id: z.ZodString;
|
|
@@ -97651,6 +97663,4353 @@ declare const DocumentationPageRoom: z.ZodObject<{
|
|
|
97651
97663
|
type DocumentationPageRoom = z.infer<typeof DocumentationPageRoom>;
|
|
97652
97664
|
type CreateDocumentationPageRoom = DbCreateInputOmit<DocumentationPageRoom>;
|
|
97653
97665
|
type UpdateDocumentationPageRoom = DbUpdate<DocumentationPageRoom>;
|
|
97666
|
+
type PageBlockEditorModel = z.infer<typeof PageBlockEditorModel>;
|
|
97667
|
+
declare const PageBlockEditorModel: z.ZodObject<{
|
|
97668
|
+
id: z.ZodString;
|
|
97669
|
+
data: z.ZodObject<{
|
|
97670
|
+
packageId: z.ZodString;
|
|
97671
|
+
variantId: z.ZodOptional<z.ZodString>;
|
|
97672
|
+
indentLevel: z.ZodNumber;
|
|
97673
|
+
appearance: z.ZodOptional<z.ZodObject<{
|
|
97674
|
+
itemBackgroundColor: z.ZodOptional<z.ZodObject<{
|
|
97675
|
+
value: z.ZodString;
|
|
97676
|
+
referencedTokenId: z.ZodOptional<z.ZodString>;
|
|
97677
|
+
}, "strip", z.ZodTypeAny, {
|
|
97678
|
+
value: string;
|
|
97679
|
+
referencedTokenId?: string | undefined;
|
|
97680
|
+
}, {
|
|
97681
|
+
value: string;
|
|
97682
|
+
referencedTokenId?: string | undefined;
|
|
97683
|
+
}>>;
|
|
97684
|
+
numberOfColumns: z.ZodOptional<z.ZodNumber>;
|
|
97685
|
+
}, "strip", z.ZodTypeAny, {
|
|
97686
|
+
itemBackgroundColor?: {
|
|
97687
|
+
value: string;
|
|
97688
|
+
referencedTokenId?: string | undefined;
|
|
97689
|
+
} | undefined;
|
|
97690
|
+
numberOfColumns?: number | undefined;
|
|
97691
|
+
}, {
|
|
97692
|
+
itemBackgroundColor?: {
|
|
97693
|
+
value: string;
|
|
97694
|
+
referencedTokenId?: string | undefined;
|
|
97695
|
+
} | undefined;
|
|
97696
|
+
numberOfColumns?: number | undefined;
|
|
97697
|
+
}>>;
|
|
97698
|
+
items: z.ZodArray<z.ZodObject<{
|
|
97699
|
+
id: z.ZodString;
|
|
97700
|
+
linksTo: z.ZodOptional<z.ZodObject<{
|
|
97701
|
+
type: z.ZodEnum<["DocumentationItem", "PageHeading", "Url"]>;
|
|
97702
|
+
documentationItemId: z.ZodOptional<z.ZodString>;
|
|
97703
|
+
pageHeadingId: z.ZodOptional<z.ZodString>;
|
|
97704
|
+
url: z.ZodOptional<z.ZodString>;
|
|
97705
|
+
openInNewTab: z.ZodOptional<z.ZodBoolean>;
|
|
97706
|
+
}, "strip", z.ZodTypeAny, {
|
|
97707
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
97708
|
+
documentationItemId?: string | undefined;
|
|
97709
|
+
pageHeadingId?: string | undefined;
|
|
97710
|
+
url?: string | undefined;
|
|
97711
|
+
openInNewTab?: boolean | undefined;
|
|
97712
|
+
}, {
|
|
97713
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
97714
|
+
documentationItemId?: string | undefined;
|
|
97715
|
+
pageHeadingId?: string | undefined;
|
|
97716
|
+
url?: string | undefined;
|
|
97717
|
+
openInNewTab?: boolean | undefined;
|
|
97718
|
+
}>>;
|
|
97719
|
+
props: z.ZodRecord<z.ZodString, z.ZodIntersection<z.ZodObject<{
|
|
97720
|
+
value: z.ZodAny;
|
|
97721
|
+
}, "strip", z.ZodTypeAny, {
|
|
97722
|
+
value?: any;
|
|
97723
|
+
}, {
|
|
97724
|
+
value?: any;
|
|
97725
|
+
}>, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
97726
|
+
}, "strip", z.ZodTypeAny, {
|
|
97727
|
+
id: string;
|
|
97728
|
+
props: Record<string, {
|
|
97729
|
+
value?: any;
|
|
97730
|
+
} & Record<string, any>>;
|
|
97731
|
+
linksTo?: {
|
|
97732
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
97733
|
+
documentationItemId?: string | undefined;
|
|
97734
|
+
pageHeadingId?: string | undefined;
|
|
97735
|
+
url?: string | undefined;
|
|
97736
|
+
openInNewTab?: boolean | undefined;
|
|
97737
|
+
} | undefined;
|
|
97738
|
+
}, {
|
|
97739
|
+
id: string;
|
|
97740
|
+
props: Record<string, {
|
|
97741
|
+
value?: any;
|
|
97742
|
+
} & Record<string, any>>;
|
|
97743
|
+
linksTo?: {
|
|
97744
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
97745
|
+
documentationItemId?: string | undefined;
|
|
97746
|
+
pageHeadingId?: string | undefined;
|
|
97747
|
+
url?: string | undefined;
|
|
97748
|
+
openInNewTab?: boolean | undefined;
|
|
97749
|
+
} | undefined;
|
|
97750
|
+
}>, "many">;
|
|
97751
|
+
}, "strip", z.ZodTypeAny, {
|
|
97752
|
+
items: {
|
|
97753
|
+
id: string;
|
|
97754
|
+
props: Record<string, {
|
|
97755
|
+
value?: any;
|
|
97756
|
+
} & Record<string, any>>;
|
|
97757
|
+
linksTo?: {
|
|
97758
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
97759
|
+
documentationItemId?: string | undefined;
|
|
97760
|
+
pageHeadingId?: string | undefined;
|
|
97761
|
+
url?: string | undefined;
|
|
97762
|
+
openInNewTab?: boolean | undefined;
|
|
97763
|
+
} | undefined;
|
|
97764
|
+
}[];
|
|
97765
|
+
packageId: string;
|
|
97766
|
+
indentLevel: number;
|
|
97767
|
+
variantId?: string | undefined;
|
|
97768
|
+
appearance?: {
|
|
97769
|
+
itemBackgroundColor?: {
|
|
97770
|
+
value: string;
|
|
97771
|
+
referencedTokenId?: string | undefined;
|
|
97772
|
+
} | undefined;
|
|
97773
|
+
numberOfColumns?: number | undefined;
|
|
97774
|
+
} | undefined;
|
|
97775
|
+
}, {
|
|
97776
|
+
items: {
|
|
97777
|
+
id: string;
|
|
97778
|
+
props: Record<string, {
|
|
97779
|
+
value?: any;
|
|
97780
|
+
} & Record<string, any>>;
|
|
97781
|
+
linksTo?: {
|
|
97782
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
97783
|
+
documentationItemId?: string | undefined;
|
|
97784
|
+
pageHeadingId?: string | undefined;
|
|
97785
|
+
url?: string | undefined;
|
|
97786
|
+
openInNewTab?: boolean | undefined;
|
|
97787
|
+
} | undefined;
|
|
97788
|
+
}[];
|
|
97789
|
+
packageId: string;
|
|
97790
|
+
indentLevel: number;
|
|
97791
|
+
variantId?: string | undefined;
|
|
97792
|
+
appearance?: {
|
|
97793
|
+
itemBackgroundColor?: {
|
|
97794
|
+
value: string;
|
|
97795
|
+
referencedTokenId?: string | undefined;
|
|
97796
|
+
} | undefined;
|
|
97797
|
+
numberOfColumns?: number | undefined;
|
|
97798
|
+
} | undefined;
|
|
97799
|
+
}>;
|
|
97800
|
+
}, "strip", z.ZodTypeAny, {
|
|
97801
|
+
id: string;
|
|
97802
|
+
data: {
|
|
97803
|
+
items: {
|
|
97804
|
+
id: string;
|
|
97805
|
+
props: Record<string, {
|
|
97806
|
+
value?: any;
|
|
97807
|
+
} & Record<string, any>>;
|
|
97808
|
+
linksTo?: {
|
|
97809
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
97810
|
+
documentationItemId?: string | undefined;
|
|
97811
|
+
pageHeadingId?: string | undefined;
|
|
97812
|
+
url?: string | undefined;
|
|
97813
|
+
openInNewTab?: boolean | undefined;
|
|
97814
|
+
} | undefined;
|
|
97815
|
+
}[];
|
|
97816
|
+
packageId: string;
|
|
97817
|
+
indentLevel: number;
|
|
97818
|
+
variantId?: string | undefined;
|
|
97819
|
+
appearance?: {
|
|
97820
|
+
itemBackgroundColor?: {
|
|
97821
|
+
value: string;
|
|
97822
|
+
referencedTokenId?: string | undefined;
|
|
97823
|
+
} | undefined;
|
|
97824
|
+
numberOfColumns?: number | undefined;
|
|
97825
|
+
} | undefined;
|
|
97826
|
+
};
|
|
97827
|
+
}, {
|
|
97828
|
+
id: string;
|
|
97829
|
+
data: {
|
|
97830
|
+
items: {
|
|
97831
|
+
id: string;
|
|
97832
|
+
props: Record<string, {
|
|
97833
|
+
value?: any;
|
|
97834
|
+
} & Record<string, any>>;
|
|
97835
|
+
linksTo?: {
|
|
97836
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
97837
|
+
documentationItemId?: string | undefined;
|
|
97838
|
+
pageHeadingId?: string | undefined;
|
|
97839
|
+
url?: string | undefined;
|
|
97840
|
+
openInNewTab?: boolean | undefined;
|
|
97841
|
+
} | undefined;
|
|
97842
|
+
}[];
|
|
97843
|
+
packageId: string;
|
|
97844
|
+
indentLevel: number;
|
|
97845
|
+
variantId?: string | undefined;
|
|
97846
|
+
appearance?: {
|
|
97847
|
+
itemBackgroundColor?: {
|
|
97848
|
+
value: string;
|
|
97849
|
+
referencedTokenId?: string | undefined;
|
|
97850
|
+
} | undefined;
|
|
97851
|
+
numberOfColumns?: number | undefined;
|
|
97852
|
+
} | undefined;
|
|
97853
|
+
};
|
|
97854
|
+
}>;
|
|
97855
|
+
declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
97856
|
+
page: z.ZodObject<{
|
|
97857
|
+
id: z.ZodString;
|
|
97858
|
+
createdAt: z.ZodDate;
|
|
97859
|
+
updatedAt: z.ZodDate;
|
|
97860
|
+
persistentId: z.ZodString;
|
|
97861
|
+
designSystemVersionId: z.ZodString;
|
|
97862
|
+
parentPersistentId: z.ZodString;
|
|
97863
|
+
sortOrder: z.ZodNumber;
|
|
97864
|
+
meta: z.ZodObject<{
|
|
97865
|
+
name: z.ZodString;
|
|
97866
|
+
description: z.ZodOptional<z.ZodString>;
|
|
97867
|
+
}, "strip", z.ZodTypeAny, {
|
|
97868
|
+
name: string;
|
|
97869
|
+
description?: string | undefined;
|
|
97870
|
+
}, {
|
|
97871
|
+
name: string;
|
|
97872
|
+
description?: string | undefined;
|
|
97873
|
+
}>;
|
|
97874
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
97875
|
+
userSlug: z.ZodOptional<z.ZodString>;
|
|
97876
|
+
shortPersistentId: z.ZodString;
|
|
97877
|
+
data: z.ZodObject<{
|
|
97878
|
+
configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
97879
|
+
showSidebar: boolean;
|
|
97880
|
+
header: {
|
|
97881
|
+
description: string;
|
|
97882
|
+
alignment: "Center" | "Left";
|
|
97883
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
97884
|
+
showBackgroundOverlay: boolean;
|
|
97885
|
+
showCoverText: boolean;
|
|
97886
|
+
foregroundColor?: {
|
|
97887
|
+
aliasTo?: string | undefined;
|
|
97888
|
+
value?: {
|
|
97889
|
+
opacity: {
|
|
97890
|
+
aliasTo?: string | undefined;
|
|
97891
|
+
value?: {
|
|
97892
|
+
unit: "Pixels" | "Raw";
|
|
97893
|
+
measure: number;
|
|
97894
|
+
} | undefined;
|
|
97895
|
+
};
|
|
97896
|
+
color: (string | {
|
|
97897
|
+
aliasTo?: string | undefined;
|
|
97898
|
+
}) & (string | {
|
|
97899
|
+
aliasTo?: string | undefined;
|
|
97900
|
+
} | undefined);
|
|
97901
|
+
} | undefined;
|
|
97902
|
+
} | null | undefined;
|
|
97903
|
+
backgroundColor?: {
|
|
97904
|
+
aliasTo?: string | undefined;
|
|
97905
|
+
value?: {
|
|
97906
|
+
opacity: {
|
|
97907
|
+
aliasTo?: string | undefined;
|
|
97908
|
+
value?: {
|
|
97909
|
+
unit: "Pixels" | "Raw";
|
|
97910
|
+
measure: number;
|
|
97911
|
+
} | undefined;
|
|
97912
|
+
};
|
|
97913
|
+
color: (string | {
|
|
97914
|
+
aliasTo?: string | undefined;
|
|
97915
|
+
}) & (string | {
|
|
97916
|
+
aliasTo?: string | undefined;
|
|
97917
|
+
} | undefined);
|
|
97918
|
+
} | undefined;
|
|
97919
|
+
} | null | undefined;
|
|
97920
|
+
backgroundImageAsset?: {
|
|
97921
|
+
id: string;
|
|
97922
|
+
type: "image";
|
|
97923
|
+
url?: string | undefined;
|
|
97924
|
+
} | {
|
|
97925
|
+
type: "figmaFrame";
|
|
97926
|
+
figmaFrame: {
|
|
97927
|
+
persistentId: string;
|
|
97928
|
+
sourceId: string;
|
|
97929
|
+
sourceFrameId: string;
|
|
97930
|
+
title?: string | undefined;
|
|
97931
|
+
description?: string | undefined;
|
|
97932
|
+
backgroundColor?: {
|
|
97933
|
+
value: string;
|
|
97934
|
+
} | undefined;
|
|
97935
|
+
origin?: {
|
|
97936
|
+
sourceFileName?: string | undefined;
|
|
97937
|
+
title?: string | undefined;
|
|
97938
|
+
previewUrl?: string | undefined;
|
|
97939
|
+
valid?: boolean | undefined;
|
|
97940
|
+
referenceId?: string | undefined;
|
|
97941
|
+
assetId?: string | undefined;
|
|
97942
|
+
assetScale?: number | undefined;
|
|
97943
|
+
width?: number | undefined;
|
|
97944
|
+
height?: number | undefined;
|
|
97945
|
+
} | undefined;
|
|
97946
|
+
};
|
|
97947
|
+
url?: string | undefined;
|
|
97948
|
+
} | null | undefined;
|
|
97949
|
+
minHeight?: number | null | undefined;
|
|
97950
|
+
};
|
|
97951
|
+
}, z.ZodTypeDef, {
|
|
97952
|
+
showSidebar: boolean;
|
|
97953
|
+
header: {
|
|
97954
|
+
description: string;
|
|
97955
|
+
alignment: "Center" | "Left";
|
|
97956
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
97957
|
+
showBackgroundOverlay: boolean;
|
|
97958
|
+
showCoverText: boolean;
|
|
97959
|
+
foregroundColor?: {
|
|
97960
|
+
aliasTo?: string | null | undefined;
|
|
97961
|
+
value?: {
|
|
97962
|
+
opacity: {
|
|
97963
|
+
aliasTo?: string | null | undefined;
|
|
97964
|
+
value?: {
|
|
97965
|
+
unit: "Pixels" | "Raw";
|
|
97966
|
+
measure: number;
|
|
97967
|
+
} | null | undefined;
|
|
97968
|
+
};
|
|
97969
|
+
color: (string | {
|
|
97970
|
+
aliasTo?: string | null | undefined;
|
|
97971
|
+
}) & (string | {
|
|
97972
|
+
aliasTo?: string | null | undefined;
|
|
97973
|
+
} | undefined);
|
|
97974
|
+
} | null | undefined;
|
|
97975
|
+
} | null | undefined;
|
|
97976
|
+
backgroundColor?: {
|
|
97977
|
+
aliasTo?: string | null | undefined;
|
|
97978
|
+
value?: {
|
|
97979
|
+
opacity: {
|
|
97980
|
+
aliasTo?: string | null | undefined;
|
|
97981
|
+
value?: {
|
|
97982
|
+
unit: "Pixels" | "Raw";
|
|
97983
|
+
measure: number;
|
|
97984
|
+
} | null | undefined;
|
|
97985
|
+
};
|
|
97986
|
+
color: (string | {
|
|
97987
|
+
aliasTo?: string | null | undefined;
|
|
97988
|
+
}) & (string | {
|
|
97989
|
+
aliasTo?: string | null | undefined;
|
|
97990
|
+
} | undefined);
|
|
97991
|
+
} | null | undefined;
|
|
97992
|
+
} | null | undefined;
|
|
97993
|
+
backgroundImageAsset?: {
|
|
97994
|
+
id: string;
|
|
97995
|
+
type: "image";
|
|
97996
|
+
url?: string | undefined;
|
|
97997
|
+
} | {
|
|
97998
|
+
type: "figmaFrame";
|
|
97999
|
+
figmaFrame: {
|
|
98000
|
+
persistentId: string;
|
|
98001
|
+
sourceId: string;
|
|
98002
|
+
sourceFrameId: string;
|
|
98003
|
+
title?: string | null | undefined;
|
|
98004
|
+
description?: string | null | undefined;
|
|
98005
|
+
backgroundColor?: {
|
|
98006
|
+
value: string;
|
|
98007
|
+
} | null | undefined;
|
|
98008
|
+
origin?: {
|
|
98009
|
+
sourceFileName?: string | null | undefined;
|
|
98010
|
+
title?: string | null | undefined;
|
|
98011
|
+
previewUrl?: string | null | undefined;
|
|
98012
|
+
valid?: boolean | null | undefined;
|
|
98013
|
+
referenceId?: string | null | undefined;
|
|
98014
|
+
assetId?: string | null | undefined;
|
|
98015
|
+
assetScale?: number | null | undefined;
|
|
98016
|
+
width?: number | null | undefined;
|
|
98017
|
+
height?: number | null | undefined;
|
|
98018
|
+
} | null | undefined;
|
|
98019
|
+
};
|
|
98020
|
+
url?: string | undefined;
|
|
98021
|
+
} | null | undefined;
|
|
98022
|
+
minHeight?: number | null | undefined;
|
|
98023
|
+
};
|
|
98024
|
+
}>>>, {
|
|
98025
|
+
showSidebar: boolean;
|
|
98026
|
+
header: {
|
|
98027
|
+
description: string;
|
|
98028
|
+
alignment: "Center" | "Left";
|
|
98029
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
98030
|
+
showBackgroundOverlay: boolean;
|
|
98031
|
+
showCoverText: boolean;
|
|
98032
|
+
foregroundColor?: {
|
|
98033
|
+
aliasTo?: string | undefined;
|
|
98034
|
+
value?: {
|
|
98035
|
+
opacity: {
|
|
98036
|
+
aliasTo?: string | undefined;
|
|
98037
|
+
value?: {
|
|
98038
|
+
unit: "Pixels" | "Raw";
|
|
98039
|
+
measure: number;
|
|
98040
|
+
} | undefined;
|
|
98041
|
+
};
|
|
98042
|
+
color: (string | {
|
|
98043
|
+
aliasTo?: string | undefined;
|
|
98044
|
+
}) & (string | {
|
|
98045
|
+
aliasTo?: string | undefined;
|
|
98046
|
+
} | undefined);
|
|
98047
|
+
} | undefined;
|
|
98048
|
+
} | null | undefined;
|
|
98049
|
+
backgroundColor?: {
|
|
98050
|
+
aliasTo?: string | undefined;
|
|
98051
|
+
value?: {
|
|
98052
|
+
opacity: {
|
|
98053
|
+
aliasTo?: string | undefined;
|
|
98054
|
+
value?: {
|
|
98055
|
+
unit: "Pixels" | "Raw";
|
|
98056
|
+
measure: number;
|
|
98057
|
+
} | undefined;
|
|
98058
|
+
};
|
|
98059
|
+
color: (string | {
|
|
98060
|
+
aliasTo?: string | undefined;
|
|
98061
|
+
}) & (string | {
|
|
98062
|
+
aliasTo?: string | undefined;
|
|
98063
|
+
} | undefined);
|
|
98064
|
+
} | undefined;
|
|
98065
|
+
} | null | undefined;
|
|
98066
|
+
backgroundImageAsset?: {
|
|
98067
|
+
id: string;
|
|
98068
|
+
type: "image";
|
|
98069
|
+
url?: string | undefined;
|
|
98070
|
+
} | {
|
|
98071
|
+
type: "figmaFrame";
|
|
98072
|
+
figmaFrame: {
|
|
98073
|
+
persistentId: string;
|
|
98074
|
+
sourceId: string;
|
|
98075
|
+
sourceFrameId: string;
|
|
98076
|
+
title?: string | undefined;
|
|
98077
|
+
description?: string | undefined;
|
|
98078
|
+
backgroundColor?: {
|
|
98079
|
+
value: string;
|
|
98080
|
+
} | undefined;
|
|
98081
|
+
origin?: {
|
|
98082
|
+
sourceFileName?: string | undefined;
|
|
98083
|
+
title?: string | undefined;
|
|
98084
|
+
previewUrl?: string | undefined;
|
|
98085
|
+
valid?: boolean | undefined;
|
|
98086
|
+
referenceId?: string | undefined;
|
|
98087
|
+
assetId?: string | undefined;
|
|
98088
|
+
assetScale?: number | undefined;
|
|
98089
|
+
width?: number | undefined;
|
|
98090
|
+
height?: number | undefined;
|
|
98091
|
+
} | undefined;
|
|
98092
|
+
};
|
|
98093
|
+
url?: string | undefined;
|
|
98094
|
+
} | null | undefined;
|
|
98095
|
+
minHeight?: number | null | undefined;
|
|
98096
|
+
};
|
|
98097
|
+
} | undefined, {
|
|
98098
|
+
showSidebar: boolean;
|
|
98099
|
+
header: {
|
|
98100
|
+
description: string;
|
|
98101
|
+
alignment: "Center" | "Left";
|
|
98102
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
98103
|
+
showBackgroundOverlay: boolean;
|
|
98104
|
+
showCoverText: boolean;
|
|
98105
|
+
foregroundColor?: {
|
|
98106
|
+
aliasTo?: string | null | undefined;
|
|
98107
|
+
value?: {
|
|
98108
|
+
opacity: {
|
|
98109
|
+
aliasTo?: string | null | undefined;
|
|
98110
|
+
value?: {
|
|
98111
|
+
unit: "Pixels" | "Raw";
|
|
98112
|
+
measure: number;
|
|
98113
|
+
} | null | undefined;
|
|
98114
|
+
};
|
|
98115
|
+
color: (string | {
|
|
98116
|
+
aliasTo?: string | null | undefined;
|
|
98117
|
+
}) & (string | {
|
|
98118
|
+
aliasTo?: string | null | undefined;
|
|
98119
|
+
} | undefined);
|
|
98120
|
+
} | null | undefined;
|
|
98121
|
+
} | null | undefined;
|
|
98122
|
+
backgroundColor?: {
|
|
98123
|
+
aliasTo?: string | null | undefined;
|
|
98124
|
+
value?: {
|
|
98125
|
+
opacity: {
|
|
98126
|
+
aliasTo?: string | null | undefined;
|
|
98127
|
+
value?: {
|
|
98128
|
+
unit: "Pixels" | "Raw";
|
|
98129
|
+
measure: number;
|
|
98130
|
+
} | null | undefined;
|
|
98131
|
+
};
|
|
98132
|
+
color: (string | {
|
|
98133
|
+
aliasTo?: string | null | undefined;
|
|
98134
|
+
}) & (string | {
|
|
98135
|
+
aliasTo?: string | null | undefined;
|
|
98136
|
+
} | undefined);
|
|
98137
|
+
} | null | undefined;
|
|
98138
|
+
} | null | undefined;
|
|
98139
|
+
backgroundImageAsset?: {
|
|
98140
|
+
id: string;
|
|
98141
|
+
type: "image";
|
|
98142
|
+
url?: string | undefined;
|
|
98143
|
+
} | {
|
|
98144
|
+
type: "figmaFrame";
|
|
98145
|
+
figmaFrame: {
|
|
98146
|
+
persistentId: string;
|
|
98147
|
+
sourceId: string;
|
|
98148
|
+
sourceFrameId: string;
|
|
98149
|
+
title?: string | null | undefined;
|
|
98150
|
+
description?: string | null | undefined;
|
|
98151
|
+
backgroundColor?: {
|
|
98152
|
+
value: string;
|
|
98153
|
+
} | null | undefined;
|
|
98154
|
+
origin?: {
|
|
98155
|
+
sourceFileName?: string | null | undefined;
|
|
98156
|
+
title?: string | null | undefined;
|
|
98157
|
+
previewUrl?: string | null | undefined;
|
|
98158
|
+
valid?: boolean | null | undefined;
|
|
98159
|
+
referenceId?: string | null | undefined;
|
|
98160
|
+
assetId?: string | null | undefined;
|
|
98161
|
+
assetScale?: number | null | undefined;
|
|
98162
|
+
width?: number | null | undefined;
|
|
98163
|
+
height?: number | null | undefined;
|
|
98164
|
+
} | null | undefined;
|
|
98165
|
+
};
|
|
98166
|
+
url?: string | undefined;
|
|
98167
|
+
} | null | undefined;
|
|
98168
|
+
minHeight?: number | null | undefined;
|
|
98169
|
+
};
|
|
98170
|
+
} | null | undefined>;
|
|
98171
|
+
}, "strip", z.ZodTypeAny, {
|
|
98172
|
+
configuration?: {
|
|
98173
|
+
showSidebar: boolean;
|
|
98174
|
+
header: {
|
|
98175
|
+
description: string;
|
|
98176
|
+
alignment: "Center" | "Left";
|
|
98177
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
98178
|
+
showBackgroundOverlay: boolean;
|
|
98179
|
+
showCoverText: boolean;
|
|
98180
|
+
foregroundColor?: {
|
|
98181
|
+
aliasTo?: string | undefined;
|
|
98182
|
+
value?: {
|
|
98183
|
+
opacity: {
|
|
98184
|
+
aliasTo?: string | undefined;
|
|
98185
|
+
value?: {
|
|
98186
|
+
unit: "Pixels" | "Raw";
|
|
98187
|
+
measure: number;
|
|
98188
|
+
} | undefined;
|
|
98189
|
+
};
|
|
98190
|
+
color: (string | {
|
|
98191
|
+
aliasTo?: string | undefined;
|
|
98192
|
+
}) & (string | {
|
|
98193
|
+
aliasTo?: string | undefined;
|
|
98194
|
+
} | undefined);
|
|
98195
|
+
} | undefined;
|
|
98196
|
+
} | null | undefined;
|
|
98197
|
+
backgroundColor?: {
|
|
98198
|
+
aliasTo?: string | undefined;
|
|
98199
|
+
value?: {
|
|
98200
|
+
opacity: {
|
|
98201
|
+
aliasTo?: string | undefined;
|
|
98202
|
+
value?: {
|
|
98203
|
+
unit: "Pixels" | "Raw";
|
|
98204
|
+
measure: number;
|
|
98205
|
+
} | undefined;
|
|
98206
|
+
};
|
|
98207
|
+
color: (string | {
|
|
98208
|
+
aliasTo?: string | undefined;
|
|
98209
|
+
}) & (string | {
|
|
98210
|
+
aliasTo?: string | undefined;
|
|
98211
|
+
} | undefined);
|
|
98212
|
+
} | undefined;
|
|
98213
|
+
} | null | undefined;
|
|
98214
|
+
backgroundImageAsset?: {
|
|
98215
|
+
id: string;
|
|
98216
|
+
type: "image";
|
|
98217
|
+
url?: string | undefined;
|
|
98218
|
+
} | {
|
|
98219
|
+
type: "figmaFrame";
|
|
98220
|
+
figmaFrame: {
|
|
98221
|
+
persistentId: string;
|
|
98222
|
+
sourceId: string;
|
|
98223
|
+
sourceFrameId: string;
|
|
98224
|
+
title?: string | undefined;
|
|
98225
|
+
description?: string | undefined;
|
|
98226
|
+
backgroundColor?: {
|
|
98227
|
+
value: string;
|
|
98228
|
+
} | undefined;
|
|
98229
|
+
origin?: {
|
|
98230
|
+
sourceFileName?: string | undefined;
|
|
98231
|
+
title?: string | undefined;
|
|
98232
|
+
previewUrl?: string | undefined;
|
|
98233
|
+
valid?: boolean | undefined;
|
|
98234
|
+
referenceId?: string | undefined;
|
|
98235
|
+
assetId?: string | undefined;
|
|
98236
|
+
assetScale?: number | undefined;
|
|
98237
|
+
width?: number | undefined;
|
|
98238
|
+
height?: number | undefined;
|
|
98239
|
+
} | undefined;
|
|
98240
|
+
};
|
|
98241
|
+
url?: string | undefined;
|
|
98242
|
+
} | null | undefined;
|
|
98243
|
+
minHeight?: number | null | undefined;
|
|
98244
|
+
};
|
|
98245
|
+
} | undefined;
|
|
98246
|
+
}, {
|
|
98247
|
+
configuration?: {
|
|
98248
|
+
showSidebar: boolean;
|
|
98249
|
+
header: {
|
|
98250
|
+
description: string;
|
|
98251
|
+
alignment: "Center" | "Left";
|
|
98252
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
98253
|
+
showBackgroundOverlay: boolean;
|
|
98254
|
+
showCoverText: boolean;
|
|
98255
|
+
foregroundColor?: {
|
|
98256
|
+
aliasTo?: string | null | undefined;
|
|
98257
|
+
value?: {
|
|
98258
|
+
opacity: {
|
|
98259
|
+
aliasTo?: string | null | undefined;
|
|
98260
|
+
value?: {
|
|
98261
|
+
unit: "Pixels" | "Raw";
|
|
98262
|
+
measure: number;
|
|
98263
|
+
} | null | undefined;
|
|
98264
|
+
};
|
|
98265
|
+
color: (string | {
|
|
98266
|
+
aliasTo?: string | null | undefined;
|
|
98267
|
+
}) & (string | {
|
|
98268
|
+
aliasTo?: string | null | undefined;
|
|
98269
|
+
} | undefined);
|
|
98270
|
+
} | null | undefined;
|
|
98271
|
+
} | null | undefined;
|
|
98272
|
+
backgroundColor?: {
|
|
98273
|
+
aliasTo?: string | null | undefined;
|
|
98274
|
+
value?: {
|
|
98275
|
+
opacity: {
|
|
98276
|
+
aliasTo?: string | null | undefined;
|
|
98277
|
+
value?: {
|
|
98278
|
+
unit: "Pixels" | "Raw";
|
|
98279
|
+
measure: number;
|
|
98280
|
+
} | null | undefined;
|
|
98281
|
+
};
|
|
98282
|
+
color: (string | {
|
|
98283
|
+
aliasTo?: string | null | undefined;
|
|
98284
|
+
}) & (string | {
|
|
98285
|
+
aliasTo?: string | null | undefined;
|
|
98286
|
+
} | undefined);
|
|
98287
|
+
} | null | undefined;
|
|
98288
|
+
} | null | undefined;
|
|
98289
|
+
backgroundImageAsset?: {
|
|
98290
|
+
id: string;
|
|
98291
|
+
type: "image";
|
|
98292
|
+
url?: string | undefined;
|
|
98293
|
+
} | {
|
|
98294
|
+
type: "figmaFrame";
|
|
98295
|
+
figmaFrame: {
|
|
98296
|
+
persistentId: string;
|
|
98297
|
+
sourceId: string;
|
|
98298
|
+
sourceFrameId: string;
|
|
98299
|
+
title?: string | null | undefined;
|
|
98300
|
+
description?: string | null | undefined;
|
|
98301
|
+
backgroundColor?: {
|
|
98302
|
+
value: string;
|
|
98303
|
+
} | null | undefined;
|
|
98304
|
+
origin?: {
|
|
98305
|
+
sourceFileName?: string | null | undefined;
|
|
98306
|
+
title?: string | null | undefined;
|
|
98307
|
+
previewUrl?: string | null | undefined;
|
|
98308
|
+
valid?: boolean | null | undefined;
|
|
98309
|
+
referenceId?: string | null | undefined;
|
|
98310
|
+
assetId?: string | null | undefined;
|
|
98311
|
+
assetScale?: number | null | undefined;
|
|
98312
|
+
width?: number | null | undefined;
|
|
98313
|
+
height?: number | null | undefined;
|
|
98314
|
+
} | null | undefined;
|
|
98315
|
+
};
|
|
98316
|
+
url?: string | undefined;
|
|
98317
|
+
} | null | undefined;
|
|
98318
|
+
minHeight?: number | null | undefined;
|
|
98319
|
+
};
|
|
98320
|
+
} | null | undefined;
|
|
98321
|
+
}>;
|
|
98322
|
+
}, "strip", z.ZodTypeAny, {
|
|
98323
|
+
id: string;
|
|
98324
|
+
createdAt: Date;
|
|
98325
|
+
updatedAt: Date;
|
|
98326
|
+
persistentId: string;
|
|
98327
|
+
designSystemVersionId: string;
|
|
98328
|
+
data: {
|
|
98329
|
+
configuration?: {
|
|
98330
|
+
showSidebar: boolean;
|
|
98331
|
+
header: {
|
|
98332
|
+
description: string;
|
|
98333
|
+
alignment: "Center" | "Left";
|
|
98334
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
98335
|
+
showBackgroundOverlay: boolean;
|
|
98336
|
+
showCoverText: boolean;
|
|
98337
|
+
foregroundColor?: {
|
|
98338
|
+
aliasTo?: string | undefined;
|
|
98339
|
+
value?: {
|
|
98340
|
+
opacity: {
|
|
98341
|
+
aliasTo?: string | undefined;
|
|
98342
|
+
value?: {
|
|
98343
|
+
unit: "Pixels" | "Raw";
|
|
98344
|
+
measure: number;
|
|
98345
|
+
} | undefined;
|
|
98346
|
+
};
|
|
98347
|
+
color: (string | {
|
|
98348
|
+
aliasTo?: string | undefined;
|
|
98349
|
+
}) & (string | {
|
|
98350
|
+
aliasTo?: string | undefined;
|
|
98351
|
+
} | undefined);
|
|
98352
|
+
} | undefined;
|
|
98353
|
+
} | null | undefined;
|
|
98354
|
+
backgroundColor?: {
|
|
98355
|
+
aliasTo?: string | undefined;
|
|
98356
|
+
value?: {
|
|
98357
|
+
opacity: {
|
|
98358
|
+
aliasTo?: string | undefined;
|
|
98359
|
+
value?: {
|
|
98360
|
+
unit: "Pixels" | "Raw";
|
|
98361
|
+
measure: number;
|
|
98362
|
+
} | undefined;
|
|
98363
|
+
};
|
|
98364
|
+
color: (string | {
|
|
98365
|
+
aliasTo?: string | undefined;
|
|
98366
|
+
}) & (string | {
|
|
98367
|
+
aliasTo?: string | undefined;
|
|
98368
|
+
} | undefined);
|
|
98369
|
+
} | undefined;
|
|
98370
|
+
} | null | undefined;
|
|
98371
|
+
backgroundImageAsset?: {
|
|
98372
|
+
id: string;
|
|
98373
|
+
type: "image";
|
|
98374
|
+
url?: string | undefined;
|
|
98375
|
+
} | {
|
|
98376
|
+
type: "figmaFrame";
|
|
98377
|
+
figmaFrame: {
|
|
98378
|
+
persistentId: string;
|
|
98379
|
+
sourceId: string;
|
|
98380
|
+
sourceFrameId: string;
|
|
98381
|
+
title?: string | undefined;
|
|
98382
|
+
description?: string | undefined;
|
|
98383
|
+
backgroundColor?: {
|
|
98384
|
+
value: string;
|
|
98385
|
+
} | undefined;
|
|
98386
|
+
origin?: {
|
|
98387
|
+
sourceFileName?: string | undefined;
|
|
98388
|
+
title?: string | undefined;
|
|
98389
|
+
previewUrl?: string | undefined;
|
|
98390
|
+
valid?: boolean | undefined;
|
|
98391
|
+
referenceId?: string | undefined;
|
|
98392
|
+
assetId?: string | undefined;
|
|
98393
|
+
assetScale?: number | undefined;
|
|
98394
|
+
width?: number | undefined;
|
|
98395
|
+
height?: number | undefined;
|
|
98396
|
+
} | undefined;
|
|
98397
|
+
};
|
|
98398
|
+
url?: string | undefined;
|
|
98399
|
+
} | null | undefined;
|
|
98400
|
+
minHeight?: number | null | undefined;
|
|
98401
|
+
};
|
|
98402
|
+
} | undefined;
|
|
98403
|
+
};
|
|
98404
|
+
parentPersistentId: string;
|
|
98405
|
+
shortPersistentId: string;
|
|
98406
|
+
sortOrder: number;
|
|
98407
|
+
meta: {
|
|
98408
|
+
name: string;
|
|
98409
|
+
description?: string | undefined;
|
|
98410
|
+
};
|
|
98411
|
+
slug?: string | undefined;
|
|
98412
|
+
userSlug?: string | undefined;
|
|
98413
|
+
}, {
|
|
98414
|
+
id: string;
|
|
98415
|
+
createdAt: Date;
|
|
98416
|
+
updatedAt: Date;
|
|
98417
|
+
persistentId: string;
|
|
98418
|
+
designSystemVersionId: string;
|
|
98419
|
+
data: {
|
|
98420
|
+
configuration?: {
|
|
98421
|
+
showSidebar: boolean;
|
|
98422
|
+
header: {
|
|
98423
|
+
description: string;
|
|
98424
|
+
alignment: "Center" | "Left";
|
|
98425
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
98426
|
+
showBackgroundOverlay: boolean;
|
|
98427
|
+
showCoverText: boolean;
|
|
98428
|
+
foregroundColor?: {
|
|
98429
|
+
aliasTo?: string | null | undefined;
|
|
98430
|
+
value?: {
|
|
98431
|
+
opacity: {
|
|
98432
|
+
aliasTo?: string | null | undefined;
|
|
98433
|
+
value?: {
|
|
98434
|
+
unit: "Pixels" | "Raw";
|
|
98435
|
+
measure: number;
|
|
98436
|
+
} | null | undefined;
|
|
98437
|
+
};
|
|
98438
|
+
color: (string | {
|
|
98439
|
+
aliasTo?: string | null | undefined;
|
|
98440
|
+
}) & (string | {
|
|
98441
|
+
aliasTo?: string | null | undefined;
|
|
98442
|
+
} | undefined);
|
|
98443
|
+
} | null | undefined;
|
|
98444
|
+
} | null | undefined;
|
|
98445
|
+
backgroundColor?: {
|
|
98446
|
+
aliasTo?: string | null | undefined;
|
|
98447
|
+
value?: {
|
|
98448
|
+
opacity: {
|
|
98449
|
+
aliasTo?: string | null | undefined;
|
|
98450
|
+
value?: {
|
|
98451
|
+
unit: "Pixels" | "Raw";
|
|
98452
|
+
measure: number;
|
|
98453
|
+
} | null | undefined;
|
|
98454
|
+
};
|
|
98455
|
+
color: (string | {
|
|
98456
|
+
aliasTo?: string | null | undefined;
|
|
98457
|
+
}) & (string | {
|
|
98458
|
+
aliasTo?: string | null | undefined;
|
|
98459
|
+
} | undefined);
|
|
98460
|
+
} | null | undefined;
|
|
98461
|
+
} | null | undefined;
|
|
98462
|
+
backgroundImageAsset?: {
|
|
98463
|
+
id: string;
|
|
98464
|
+
type: "image";
|
|
98465
|
+
url?: string | undefined;
|
|
98466
|
+
} | {
|
|
98467
|
+
type: "figmaFrame";
|
|
98468
|
+
figmaFrame: {
|
|
98469
|
+
persistentId: string;
|
|
98470
|
+
sourceId: string;
|
|
98471
|
+
sourceFrameId: string;
|
|
98472
|
+
title?: string | null | undefined;
|
|
98473
|
+
description?: string | null | undefined;
|
|
98474
|
+
backgroundColor?: {
|
|
98475
|
+
value: string;
|
|
98476
|
+
} | null | undefined;
|
|
98477
|
+
origin?: {
|
|
98478
|
+
sourceFileName?: string | null | undefined;
|
|
98479
|
+
title?: string | null | undefined;
|
|
98480
|
+
previewUrl?: string | null | undefined;
|
|
98481
|
+
valid?: boolean | null | undefined;
|
|
98482
|
+
referenceId?: string | null | undefined;
|
|
98483
|
+
assetId?: string | null | undefined;
|
|
98484
|
+
assetScale?: number | null | undefined;
|
|
98485
|
+
width?: number | null | undefined;
|
|
98486
|
+
height?: number | null | undefined;
|
|
98487
|
+
} | null | undefined;
|
|
98488
|
+
};
|
|
98489
|
+
url?: string | undefined;
|
|
98490
|
+
} | null | undefined;
|
|
98491
|
+
minHeight?: number | null | undefined;
|
|
98492
|
+
};
|
|
98493
|
+
} | null | undefined;
|
|
98494
|
+
};
|
|
98495
|
+
parentPersistentId: string;
|
|
98496
|
+
shortPersistentId: string;
|
|
98497
|
+
sortOrder: number;
|
|
98498
|
+
meta: {
|
|
98499
|
+
name: string;
|
|
98500
|
+
description?: string | undefined;
|
|
98501
|
+
};
|
|
98502
|
+
slug?: string | undefined;
|
|
98503
|
+
userSlug?: string | undefined;
|
|
98504
|
+
}>;
|
|
98505
|
+
pageParent: z.ZodObject<{
|
|
98506
|
+
id: z.ZodString;
|
|
98507
|
+
createdAt: z.ZodDate;
|
|
98508
|
+
updatedAt: z.ZodDate;
|
|
98509
|
+
persistentId: z.ZodString;
|
|
98510
|
+
designSystemVersionId: z.ZodString;
|
|
98511
|
+
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
98512
|
+
parentPersistentId: z.ZodOptional<z.ZodString>;
|
|
98513
|
+
sortOrder: z.ZodNumber;
|
|
98514
|
+
meta: z.ZodObject<{
|
|
98515
|
+
name: z.ZodString;
|
|
98516
|
+
description: z.ZodOptional<z.ZodString>;
|
|
98517
|
+
}, "strip", z.ZodTypeAny, {
|
|
98518
|
+
name: string;
|
|
98519
|
+
description?: string | undefined;
|
|
98520
|
+
}, {
|
|
98521
|
+
name: string;
|
|
98522
|
+
description?: string | undefined;
|
|
98523
|
+
}>;
|
|
98524
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
98525
|
+
userSlug: z.ZodOptional<z.ZodString>;
|
|
98526
|
+
shortPersistentId: z.ZodOptional<z.ZodString>;
|
|
98527
|
+
childType: z.ZodUnion<[z.ZodEnum<["Color", "Border", "Gradient", "Shadow", "Dimension", "Duration", "Size", "Space", "Opacity", "FontSize", "LineHeight", "LetterSpacing", "ParagraphSpacing", "BorderWidth", "BorderRadius", "Duration", "ZIndex", "Image", "String", "ProductCopy", "FontFamily", "FontWeight", "TextDecoration", "TextCase", "Visibility", "Typography", "Blur", "Font"]>, z.ZodEnum<["Component", "Theme", "Documentation", "DocumentationPage", "DesignSystemComponent", "ElementGroup", "FigmaNodeStructure", "FigmaNodeReference", "PageBlock"]>]>;
|
|
98528
|
+
data: z.ZodOptional<z.ZodObject<{
|
|
98529
|
+
behavior: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"Tabs" | "Group" | undefined, z.ZodTypeDef, "Tabs" | "Group" | undefined>>>, NonNullable<"Tabs" | "Group" | undefined> | undefined, "Tabs" | "Group" | null | undefined>;
|
|
98530
|
+
configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
98531
|
+
showSidebar: boolean;
|
|
98532
|
+
header: {
|
|
98533
|
+
description: string;
|
|
98534
|
+
alignment: "Center" | "Left";
|
|
98535
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
98536
|
+
showBackgroundOverlay: boolean;
|
|
98537
|
+
showCoverText: boolean;
|
|
98538
|
+
foregroundColor?: {
|
|
98539
|
+
aliasTo?: string | undefined;
|
|
98540
|
+
value?: {
|
|
98541
|
+
opacity: {
|
|
98542
|
+
aliasTo?: string | undefined;
|
|
98543
|
+
value?: {
|
|
98544
|
+
unit: "Pixels" | "Raw";
|
|
98545
|
+
measure: number;
|
|
98546
|
+
} | undefined;
|
|
98547
|
+
};
|
|
98548
|
+
color: (string | {
|
|
98549
|
+
aliasTo?: string | undefined;
|
|
98550
|
+
}) & (string | {
|
|
98551
|
+
aliasTo?: string | undefined;
|
|
98552
|
+
} | undefined);
|
|
98553
|
+
} | undefined;
|
|
98554
|
+
} | null | undefined;
|
|
98555
|
+
backgroundColor?: {
|
|
98556
|
+
aliasTo?: string | undefined;
|
|
98557
|
+
value?: {
|
|
98558
|
+
opacity: {
|
|
98559
|
+
aliasTo?: string | undefined;
|
|
98560
|
+
value?: {
|
|
98561
|
+
unit: "Pixels" | "Raw";
|
|
98562
|
+
measure: number;
|
|
98563
|
+
} | undefined;
|
|
98564
|
+
};
|
|
98565
|
+
color: (string | {
|
|
98566
|
+
aliasTo?: string | undefined;
|
|
98567
|
+
}) & (string | {
|
|
98568
|
+
aliasTo?: string | undefined;
|
|
98569
|
+
} | undefined);
|
|
98570
|
+
} | undefined;
|
|
98571
|
+
} | null | undefined;
|
|
98572
|
+
backgroundImageAsset?: {
|
|
98573
|
+
id: string;
|
|
98574
|
+
type: "image";
|
|
98575
|
+
url?: string | undefined;
|
|
98576
|
+
} | {
|
|
98577
|
+
type: "figmaFrame";
|
|
98578
|
+
figmaFrame: {
|
|
98579
|
+
persistentId: string;
|
|
98580
|
+
sourceId: string;
|
|
98581
|
+
sourceFrameId: string;
|
|
98582
|
+
title?: string | undefined;
|
|
98583
|
+
description?: string | undefined;
|
|
98584
|
+
backgroundColor?: {
|
|
98585
|
+
value: string;
|
|
98586
|
+
} | undefined;
|
|
98587
|
+
origin?: {
|
|
98588
|
+
sourceFileName?: string | undefined;
|
|
98589
|
+
title?: string | undefined;
|
|
98590
|
+
previewUrl?: string | undefined;
|
|
98591
|
+
valid?: boolean | undefined;
|
|
98592
|
+
referenceId?: string | undefined;
|
|
98593
|
+
assetId?: string | undefined;
|
|
98594
|
+
assetScale?: number | undefined;
|
|
98595
|
+
width?: number | undefined;
|
|
98596
|
+
height?: number | undefined;
|
|
98597
|
+
} | undefined;
|
|
98598
|
+
};
|
|
98599
|
+
url?: string | undefined;
|
|
98600
|
+
} | null | undefined;
|
|
98601
|
+
minHeight?: number | null | undefined;
|
|
98602
|
+
};
|
|
98603
|
+
}, z.ZodTypeDef, {
|
|
98604
|
+
showSidebar: boolean;
|
|
98605
|
+
header: {
|
|
98606
|
+
description: string;
|
|
98607
|
+
alignment: "Center" | "Left";
|
|
98608
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
98609
|
+
showBackgroundOverlay: boolean;
|
|
98610
|
+
showCoverText: boolean;
|
|
98611
|
+
foregroundColor?: {
|
|
98612
|
+
aliasTo?: string | null | undefined;
|
|
98613
|
+
value?: {
|
|
98614
|
+
opacity: {
|
|
98615
|
+
aliasTo?: string | null | undefined;
|
|
98616
|
+
value?: {
|
|
98617
|
+
unit: "Pixels" | "Raw";
|
|
98618
|
+
measure: number;
|
|
98619
|
+
} | null | undefined;
|
|
98620
|
+
};
|
|
98621
|
+
color: (string | {
|
|
98622
|
+
aliasTo?: string | null | undefined;
|
|
98623
|
+
}) & (string | {
|
|
98624
|
+
aliasTo?: string | null | undefined;
|
|
98625
|
+
} | undefined);
|
|
98626
|
+
} | null | undefined;
|
|
98627
|
+
} | null | undefined;
|
|
98628
|
+
backgroundColor?: {
|
|
98629
|
+
aliasTo?: string | null | undefined;
|
|
98630
|
+
value?: {
|
|
98631
|
+
opacity: {
|
|
98632
|
+
aliasTo?: string | null | undefined;
|
|
98633
|
+
value?: {
|
|
98634
|
+
unit: "Pixels" | "Raw";
|
|
98635
|
+
measure: number;
|
|
98636
|
+
} | null | undefined;
|
|
98637
|
+
};
|
|
98638
|
+
color: (string | {
|
|
98639
|
+
aliasTo?: string | null | undefined;
|
|
98640
|
+
}) & (string | {
|
|
98641
|
+
aliasTo?: string | null | undefined;
|
|
98642
|
+
} | undefined);
|
|
98643
|
+
} | null | undefined;
|
|
98644
|
+
} | null | undefined;
|
|
98645
|
+
backgroundImageAsset?: {
|
|
98646
|
+
id: string;
|
|
98647
|
+
type: "image";
|
|
98648
|
+
url?: string | undefined;
|
|
98649
|
+
} | {
|
|
98650
|
+
type: "figmaFrame";
|
|
98651
|
+
figmaFrame: {
|
|
98652
|
+
persistentId: string;
|
|
98653
|
+
sourceId: string;
|
|
98654
|
+
sourceFrameId: string;
|
|
98655
|
+
title?: string | null | undefined;
|
|
98656
|
+
description?: string | null | undefined;
|
|
98657
|
+
backgroundColor?: {
|
|
98658
|
+
value: string;
|
|
98659
|
+
} | null | undefined;
|
|
98660
|
+
origin?: {
|
|
98661
|
+
sourceFileName?: string | null | undefined;
|
|
98662
|
+
title?: string | null | undefined;
|
|
98663
|
+
previewUrl?: string | null | undefined;
|
|
98664
|
+
valid?: boolean | null | undefined;
|
|
98665
|
+
referenceId?: string | null | undefined;
|
|
98666
|
+
assetId?: string | null | undefined;
|
|
98667
|
+
assetScale?: number | null | undefined;
|
|
98668
|
+
width?: number | null | undefined;
|
|
98669
|
+
height?: number | null | undefined;
|
|
98670
|
+
} | null | undefined;
|
|
98671
|
+
};
|
|
98672
|
+
url?: string | undefined;
|
|
98673
|
+
} | null | undefined;
|
|
98674
|
+
minHeight?: number | null | undefined;
|
|
98675
|
+
};
|
|
98676
|
+
}>>>, {
|
|
98677
|
+
showSidebar: boolean;
|
|
98678
|
+
header: {
|
|
98679
|
+
description: string;
|
|
98680
|
+
alignment: "Center" | "Left";
|
|
98681
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
98682
|
+
showBackgroundOverlay: boolean;
|
|
98683
|
+
showCoverText: boolean;
|
|
98684
|
+
foregroundColor?: {
|
|
98685
|
+
aliasTo?: string | undefined;
|
|
98686
|
+
value?: {
|
|
98687
|
+
opacity: {
|
|
98688
|
+
aliasTo?: string | undefined;
|
|
98689
|
+
value?: {
|
|
98690
|
+
unit: "Pixels" | "Raw";
|
|
98691
|
+
measure: number;
|
|
98692
|
+
} | undefined;
|
|
98693
|
+
};
|
|
98694
|
+
color: (string | {
|
|
98695
|
+
aliasTo?: string | undefined;
|
|
98696
|
+
}) & (string | {
|
|
98697
|
+
aliasTo?: string | undefined;
|
|
98698
|
+
} | undefined);
|
|
98699
|
+
} | undefined;
|
|
98700
|
+
} | null | undefined;
|
|
98701
|
+
backgroundColor?: {
|
|
98702
|
+
aliasTo?: string | undefined;
|
|
98703
|
+
value?: {
|
|
98704
|
+
opacity: {
|
|
98705
|
+
aliasTo?: string | undefined;
|
|
98706
|
+
value?: {
|
|
98707
|
+
unit: "Pixels" | "Raw";
|
|
98708
|
+
measure: number;
|
|
98709
|
+
} | undefined;
|
|
98710
|
+
};
|
|
98711
|
+
color: (string | {
|
|
98712
|
+
aliasTo?: string | undefined;
|
|
98713
|
+
}) & (string | {
|
|
98714
|
+
aliasTo?: string | undefined;
|
|
98715
|
+
} | undefined);
|
|
98716
|
+
} | undefined;
|
|
98717
|
+
} | null | undefined;
|
|
98718
|
+
backgroundImageAsset?: {
|
|
98719
|
+
id: string;
|
|
98720
|
+
type: "image";
|
|
98721
|
+
url?: string | undefined;
|
|
98722
|
+
} | {
|
|
98723
|
+
type: "figmaFrame";
|
|
98724
|
+
figmaFrame: {
|
|
98725
|
+
persistentId: string;
|
|
98726
|
+
sourceId: string;
|
|
98727
|
+
sourceFrameId: string;
|
|
98728
|
+
title?: string | undefined;
|
|
98729
|
+
description?: string | undefined;
|
|
98730
|
+
backgroundColor?: {
|
|
98731
|
+
value: string;
|
|
98732
|
+
} | undefined;
|
|
98733
|
+
origin?: {
|
|
98734
|
+
sourceFileName?: string | undefined;
|
|
98735
|
+
title?: string | undefined;
|
|
98736
|
+
previewUrl?: string | undefined;
|
|
98737
|
+
valid?: boolean | undefined;
|
|
98738
|
+
referenceId?: string | undefined;
|
|
98739
|
+
assetId?: string | undefined;
|
|
98740
|
+
assetScale?: number | undefined;
|
|
98741
|
+
width?: number | undefined;
|
|
98742
|
+
height?: number | undefined;
|
|
98743
|
+
} | undefined;
|
|
98744
|
+
};
|
|
98745
|
+
url?: string | undefined;
|
|
98746
|
+
} | null | undefined;
|
|
98747
|
+
minHeight?: number | null | undefined;
|
|
98748
|
+
};
|
|
98749
|
+
} | undefined, {
|
|
98750
|
+
showSidebar: boolean;
|
|
98751
|
+
header: {
|
|
98752
|
+
description: string;
|
|
98753
|
+
alignment: "Center" | "Left";
|
|
98754
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
98755
|
+
showBackgroundOverlay: boolean;
|
|
98756
|
+
showCoverText: boolean;
|
|
98757
|
+
foregroundColor?: {
|
|
98758
|
+
aliasTo?: string | null | undefined;
|
|
98759
|
+
value?: {
|
|
98760
|
+
opacity: {
|
|
98761
|
+
aliasTo?: string | null | undefined;
|
|
98762
|
+
value?: {
|
|
98763
|
+
unit: "Pixels" | "Raw";
|
|
98764
|
+
measure: number;
|
|
98765
|
+
} | null | undefined;
|
|
98766
|
+
};
|
|
98767
|
+
color: (string | {
|
|
98768
|
+
aliasTo?: string | null | undefined;
|
|
98769
|
+
}) & (string | {
|
|
98770
|
+
aliasTo?: string | null | undefined;
|
|
98771
|
+
} | undefined);
|
|
98772
|
+
} | null | undefined;
|
|
98773
|
+
} | null | undefined;
|
|
98774
|
+
backgroundColor?: {
|
|
98775
|
+
aliasTo?: string | null | undefined;
|
|
98776
|
+
value?: {
|
|
98777
|
+
opacity: {
|
|
98778
|
+
aliasTo?: string | null | undefined;
|
|
98779
|
+
value?: {
|
|
98780
|
+
unit: "Pixels" | "Raw";
|
|
98781
|
+
measure: number;
|
|
98782
|
+
} | null | undefined;
|
|
98783
|
+
};
|
|
98784
|
+
color: (string | {
|
|
98785
|
+
aliasTo?: string | null | undefined;
|
|
98786
|
+
}) & (string | {
|
|
98787
|
+
aliasTo?: string | null | undefined;
|
|
98788
|
+
} | undefined);
|
|
98789
|
+
} | null | undefined;
|
|
98790
|
+
} | null | undefined;
|
|
98791
|
+
backgroundImageAsset?: {
|
|
98792
|
+
id: string;
|
|
98793
|
+
type: "image";
|
|
98794
|
+
url?: string | undefined;
|
|
98795
|
+
} | {
|
|
98796
|
+
type: "figmaFrame";
|
|
98797
|
+
figmaFrame: {
|
|
98798
|
+
persistentId: string;
|
|
98799
|
+
sourceId: string;
|
|
98800
|
+
sourceFrameId: string;
|
|
98801
|
+
title?: string | null | undefined;
|
|
98802
|
+
description?: string | null | undefined;
|
|
98803
|
+
backgroundColor?: {
|
|
98804
|
+
value: string;
|
|
98805
|
+
} | null | undefined;
|
|
98806
|
+
origin?: {
|
|
98807
|
+
sourceFileName?: string | null | undefined;
|
|
98808
|
+
title?: string | null | undefined;
|
|
98809
|
+
previewUrl?: string | null | undefined;
|
|
98810
|
+
valid?: boolean | null | undefined;
|
|
98811
|
+
referenceId?: string | null | undefined;
|
|
98812
|
+
assetId?: string | null | undefined;
|
|
98813
|
+
assetScale?: number | null | undefined;
|
|
98814
|
+
width?: number | null | undefined;
|
|
98815
|
+
height?: number | null | undefined;
|
|
98816
|
+
} | null | undefined;
|
|
98817
|
+
};
|
|
98818
|
+
url?: string | undefined;
|
|
98819
|
+
} | null | undefined;
|
|
98820
|
+
minHeight?: number | null | undefined;
|
|
98821
|
+
};
|
|
98822
|
+
} | null | undefined>;
|
|
98823
|
+
}, "strip", z.ZodTypeAny, {
|
|
98824
|
+
behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
|
|
98825
|
+
configuration?: {
|
|
98826
|
+
showSidebar: boolean;
|
|
98827
|
+
header: {
|
|
98828
|
+
description: string;
|
|
98829
|
+
alignment: "Center" | "Left";
|
|
98830
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
98831
|
+
showBackgroundOverlay: boolean;
|
|
98832
|
+
showCoverText: boolean;
|
|
98833
|
+
foregroundColor?: {
|
|
98834
|
+
aliasTo?: string | undefined;
|
|
98835
|
+
value?: {
|
|
98836
|
+
opacity: {
|
|
98837
|
+
aliasTo?: string | undefined;
|
|
98838
|
+
value?: {
|
|
98839
|
+
unit: "Pixels" | "Raw";
|
|
98840
|
+
measure: number;
|
|
98841
|
+
} | undefined;
|
|
98842
|
+
};
|
|
98843
|
+
color: (string | {
|
|
98844
|
+
aliasTo?: string | undefined;
|
|
98845
|
+
}) & (string | {
|
|
98846
|
+
aliasTo?: string | undefined;
|
|
98847
|
+
} | undefined);
|
|
98848
|
+
} | undefined;
|
|
98849
|
+
} | null | undefined;
|
|
98850
|
+
backgroundColor?: {
|
|
98851
|
+
aliasTo?: string | undefined;
|
|
98852
|
+
value?: {
|
|
98853
|
+
opacity: {
|
|
98854
|
+
aliasTo?: string | undefined;
|
|
98855
|
+
value?: {
|
|
98856
|
+
unit: "Pixels" | "Raw";
|
|
98857
|
+
measure: number;
|
|
98858
|
+
} | undefined;
|
|
98859
|
+
};
|
|
98860
|
+
color: (string | {
|
|
98861
|
+
aliasTo?: string | undefined;
|
|
98862
|
+
}) & (string | {
|
|
98863
|
+
aliasTo?: string | undefined;
|
|
98864
|
+
} | undefined);
|
|
98865
|
+
} | undefined;
|
|
98866
|
+
} | null | undefined;
|
|
98867
|
+
backgroundImageAsset?: {
|
|
98868
|
+
id: string;
|
|
98869
|
+
type: "image";
|
|
98870
|
+
url?: string | undefined;
|
|
98871
|
+
} | {
|
|
98872
|
+
type: "figmaFrame";
|
|
98873
|
+
figmaFrame: {
|
|
98874
|
+
persistentId: string;
|
|
98875
|
+
sourceId: string;
|
|
98876
|
+
sourceFrameId: string;
|
|
98877
|
+
title?: string | undefined;
|
|
98878
|
+
description?: string | undefined;
|
|
98879
|
+
backgroundColor?: {
|
|
98880
|
+
value: string;
|
|
98881
|
+
} | undefined;
|
|
98882
|
+
origin?: {
|
|
98883
|
+
sourceFileName?: string | undefined;
|
|
98884
|
+
title?: string | undefined;
|
|
98885
|
+
previewUrl?: string | undefined;
|
|
98886
|
+
valid?: boolean | undefined;
|
|
98887
|
+
referenceId?: string | undefined;
|
|
98888
|
+
assetId?: string | undefined;
|
|
98889
|
+
assetScale?: number | undefined;
|
|
98890
|
+
width?: number | undefined;
|
|
98891
|
+
height?: number | undefined;
|
|
98892
|
+
} | undefined;
|
|
98893
|
+
};
|
|
98894
|
+
url?: string | undefined;
|
|
98895
|
+
} | null | undefined;
|
|
98896
|
+
minHeight?: number | null | undefined;
|
|
98897
|
+
};
|
|
98898
|
+
} | undefined;
|
|
98899
|
+
}, {
|
|
98900
|
+
behavior?: "Tabs" | "Group" | null | undefined;
|
|
98901
|
+
configuration?: {
|
|
98902
|
+
showSidebar: boolean;
|
|
98903
|
+
header: {
|
|
98904
|
+
description: string;
|
|
98905
|
+
alignment: "Center" | "Left";
|
|
98906
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
98907
|
+
showBackgroundOverlay: boolean;
|
|
98908
|
+
showCoverText: boolean;
|
|
98909
|
+
foregroundColor?: {
|
|
98910
|
+
aliasTo?: string | null | undefined;
|
|
98911
|
+
value?: {
|
|
98912
|
+
opacity: {
|
|
98913
|
+
aliasTo?: string | null | undefined;
|
|
98914
|
+
value?: {
|
|
98915
|
+
unit: "Pixels" | "Raw";
|
|
98916
|
+
measure: number;
|
|
98917
|
+
} | null | undefined;
|
|
98918
|
+
};
|
|
98919
|
+
color: (string | {
|
|
98920
|
+
aliasTo?: string | null | undefined;
|
|
98921
|
+
}) & (string | {
|
|
98922
|
+
aliasTo?: string | null | undefined;
|
|
98923
|
+
} | undefined);
|
|
98924
|
+
} | null | undefined;
|
|
98925
|
+
} | null | undefined;
|
|
98926
|
+
backgroundColor?: {
|
|
98927
|
+
aliasTo?: string | null | undefined;
|
|
98928
|
+
value?: {
|
|
98929
|
+
opacity: {
|
|
98930
|
+
aliasTo?: string | null | undefined;
|
|
98931
|
+
value?: {
|
|
98932
|
+
unit: "Pixels" | "Raw";
|
|
98933
|
+
measure: number;
|
|
98934
|
+
} | null | undefined;
|
|
98935
|
+
};
|
|
98936
|
+
color: (string | {
|
|
98937
|
+
aliasTo?: string | null | undefined;
|
|
98938
|
+
}) & (string | {
|
|
98939
|
+
aliasTo?: string | null | undefined;
|
|
98940
|
+
} | undefined);
|
|
98941
|
+
} | null | undefined;
|
|
98942
|
+
} | null | undefined;
|
|
98943
|
+
backgroundImageAsset?: {
|
|
98944
|
+
id: string;
|
|
98945
|
+
type: "image";
|
|
98946
|
+
url?: string | undefined;
|
|
98947
|
+
} | {
|
|
98948
|
+
type: "figmaFrame";
|
|
98949
|
+
figmaFrame: {
|
|
98950
|
+
persistentId: string;
|
|
98951
|
+
sourceId: string;
|
|
98952
|
+
sourceFrameId: string;
|
|
98953
|
+
title?: string | null | undefined;
|
|
98954
|
+
description?: string | null | undefined;
|
|
98955
|
+
backgroundColor?: {
|
|
98956
|
+
value: string;
|
|
98957
|
+
} | null | undefined;
|
|
98958
|
+
origin?: {
|
|
98959
|
+
sourceFileName?: string | null | undefined;
|
|
98960
|
+
title?: string | null | undefined;
|
|
98961
|
+
previewUrl?: string | null | undefined;
|
|
98962
|
+
valid?: boolean | null | undefined;
|
|
98963
|
+
referenceId?: string | null | undefined;
|
|
98964
|
+
assetId?: string | null | undefined;
|
|
98965
|
+
assetScale?: number | null | undefined;
|
|
98966
|
+
width?: number | null | undefined;
|
|
98967
|
+
height?: number | null | undefined;
|
|
98968
|
+
} | null | undefined;
|
|
98969
|
+
};
|
|
98970
|
+
url?: string | undefined;
|
|
98971
|
+
} | null | undefined;
|
|
98972
|
+
minHeight?: number | null | undefined;
|
|
98973
|
+
};
|
|
98974
|
+
} | null | undefined;
|
|
98975
|
+
}>>;
|
|
98976
|
+
}, "strip", z.ZodTypeAny, {
|
|
98977
|
+
id: string;
|
|
98978
|
+
createdAt: Date;
|
|
98979
|
+
updatedAt: Date;
|
|
98980
|
+
persistentId: string;
|
|
98981
|
+
designSystemVersionId: string;
|
|
98982
|
+
childType: "Image" | "Font" | "Documentation" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Component" | "Theme" | "DocumentationPage" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock";
|
|
98983
|
+
sortOrder: number;
|
|
98984
|
+
meta: {
|
|
98985
|
+
name: string;
|
|
98986
|
+
description?: string | undefined;
|
|
98987
|
+
};
|
|
98988
|
+
brandPersistentId?: string | undefined;
|
|
98989
|
+
parentPersistentId?: string | undefined;
|
|
98990
|
+
slug?: string | undefined;
|
|
98991
|
+
userSlug?: string | undefined;
|
|
98992
|
+
shortPersistentId?: string | undefined;
|
|
98993
|
+
data?: {
|
|
98994
|
+
behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
|
|
98995
|
+
configuration?: {
|
|
98996
|
+
showSidebar: boolean;
|
|
98997
|
+
header: {
|
|
98998
|
+
description: string;
|
|
98999
|
+
alignment: "Center" | "Left";
|
|
99000
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
99001
|
+
showBackgroundOverlay: boolean;
|
|
99002
|
+
showCoverText: boolean;
|
|
99003
|
+
foregroundColor?: {
|
|
99004
|
+
aliasTo?: string | undefined;
|
|
99005
|
+
value?: {
|
|
99006
|
+
opacity: {
|
|
99007
|
+
aliasTo?: string | undefined;
|
|
99008
|
+
value?: {
|
|
99009
|
+
unit: "Pixels" | "Raw";
|
|
99010
|
+
measure: number;
|
|
99011
|
+
} | undefined;
|
|
99012
|
+
};
|
|
99013
|
+
color: (string | {
|
|
99014
|
+
aliasTo?: string | undefined;
|
|
99015
|
+
}) & (string | {
|
|
99016
|
+
aliasTo?: string | undefined;
|
|
99017
|
+
} | undefined);
|
|
99018
|
+
} | undefined;
|
|
99019
|
+
} | null | undefined;
|
|
99020
|
+
backgroundColor?: {
|
|
99021
|
+
aliasTo?: string | undefined;
|
|
99022
|
+
value?: {
|
|
99023
|
+
opacity: {
|
|
99024
|
+
aliasTo?: string | undefined;
|
|
99025
|
+
value?: {
|
|
99026
|
+
unit: "Pixels" | "Raw";
|
|
99027
|
+
measure: number;
|
|
99028
|
+
} | undefined;
|
|
99029
|
+
};
|
|
99030
|
+
color: (string | {
|
|
99031
|
+
aliasTo?: string | undefined;
|
|
99032
|
+
}) & (string | {
|
|
99033
|
+
aliasTo?: string | undefined;
|
|
99034
|
+
} | undefined);
|
|
99035
|
+
} | undefined;
|
|
99036
|
+
} | null | undefined;
|
|
99037
|
+
backgroundImageAsset?: {
|
|
99038
|
+
id: string;
|
|
99039
|
+
type: "image";
|
|
99040
|
+
url?: string | undefined;
|
|
99041
|
+
} | {
|
|
99042
|
+
type: "figmaFrame";
|
|
99043
|
+
figmaFrame: {
|
|
99044
|
+
persistentId: string;
|
|
99045
|
+
sourceId: string;
|
|
99046
|
+
sourceFrameId: string;
|
|
99047
|
+
title?: string | undefined;
|
|
99048
|
+
description?: string | undefined;
|
|
99049
|
+
backgroundColor?: {
|
|
99050
|
+
value: string;
|
|
99051
|
+
} | undefined;
|
|
99052
|
+
origin?: {
|
|
99053
|
+
sourceFileName?: string | undefined;
|
|
99054
|
+
title?: string | undefined;
|
|
99055
|
+
previewUrl?: string | undefined;
|
|
99056
|
+
valid?: boolean | undefined;
|
|
99057
|
+
referenceId?: string | undefined;
|
|
99058
|
+
assetId?: string | undefined;
|
|
99059
|
+
assetScale?: number | undefined;
|
|
99060
|
+
width?: number | undefined;
|
|
99061
|
+
height?: number | undefined;
|
|
99062
|
+
} | undefined;
|
|
99063
|
+
};
|
|
99064
|
+
url?: string | undefined;
|
|
99065
|
+
} | null | undefined;
|
|
99066
|
+
minHeight?: number | null | undefined;
|
|
99067
|
+
};
|
|
99068
|
+
} | undefined;
|
|
99069
|
+
} | undefined;
|
|
99070
|
+
}, {
|
|
99071
|
+
id: string;
|
|
99072
|
+
createdAt: Date;
|
|
99073
|
+
updatedAt: Date;
|
|
99074
|
+
persistentId: string;
|
|
99075
|
+
designSystemVersionId: string;
|
|
99076
|
+
childType: "Image" | "Font" | "Documentation" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Component" | "Theme" | "DocumentationPage" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock";
|
|
99077
|
+
sortOrder: number;
|
|
99078
|
+
meta: {
|
|
99079
|
+
name: string;
|
|
99080
|
+
description?: string | undefined;
|
|
99081
|
+
};
|
|
99082
|
+
brandPersistentId?: string | undefined;
|
|
99083
|
+
parentPersistentId?: string | undefined;
|
|
99084
|
+
slug?: string | undefined;
|
|
99085
|
+
userSlug?: string | undefined;
|
|
99086
|
+
shortPersistentId?: string | undefined;
|
|
99087
|
+
data?: {
|
|
99088
|
+
behavior?: "Tabs" | "Group" | null | undefined;
|
|
99089
|
+
configuration?: {
|
|
99090
|
+
showSidebar: boolean;
|
|
99091
|
+
header: {
|
|
99092
|
+
description: string;
|
|
99093
|
+
alignment: "Center" | "Left";
|
|
99094
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
99095
|
+
showBackgroundOverlay: boolean;
|
|
99096
|
+
showCoverText: boolean;
|
|
99097
|
+
foregroundColor?: {
|
|
99098
|
+
aliasTo?: string | null | undefined;
|
|
99099
|
+
value?: {
|
|
99100
|
+
opacity: {
|
|
99101
|
+
aliasTo?: string | null | undefined;
|
|
99102
|
+
value?: {
|
|
99103
|
+
unit: "Pixels" | "Raw";
|
|
99104
|
+
measure: number;
|
|
99105
|
+
} | null | undefined;
|
|
99106
|
+
};
|
|
99107
|
+
color: (string | {
|
|
99108
|
+
aliasTo?: string | null | undefined;
|
|
99109
|
+
}) & (string | {
|
|
99110
|
+
aliasTo?: string | null | undefined;
|
|
99111
|
+
} | undefined);
|
|
99112
|
+
} | null | undefined;
|
|
99113
|
+
} | null | undefined;
|
|
99114
|
+
backgroundColor?: {
|
|
99115
|
+
aliasTo?: string | null | undefined;
|
|
99116
|
+
value?: {
|
|
99117
|
+
opacity: {
|
|
99118
|
+
aliasTo?: string | null | undefined;
|
|
99119
|
+
value?: {
|
|
99120
|
+
unit: "Pixels" | "Raw";
|
|
99121
|
+
measure: number;
|
|
99122
|
+
} | null | undefined;
|
|
99123
|
+
};
|
|
99124
|
+
color: (string | {
|
|
99125
|
+
aliasTo?: string | null | undefined;
|
|
99126
|
+
}) & (string | {
|
|
99127
|
+
aliasTo?: string | null | undefined;
|
|
99128
|
+
} | undefined);
|
|
99129
|
+
} | null | undefined;
|
|
99130
|
+
} | null | undefined;
|
|
99131
|
+
backgroundImageAsset?: {
|
|
99132
|
+
id: string;
|
|
99133
|
+
type: "image";
|
|
99134
|
+
url?: string | undefined;
|
|
99135
|
+
} | {
|
|
99136
|
+
type: "figmaFrame";
|
|
99137
|
+
figmaFrame: {
|
|
99138
|
+
persistentId: string;
|
|
99139
|
+
sourceId: string;
|
|
99140
|
+
sourceFrameId: string;
|
|
99141
|
+
title?: string | null | undefined;
|
|
99142
|
+
description?: string | null | undefined;
|
|
99143
|
+
backgroundColor?: {
|
|
99144
|
+
value: string;
|
|
99145
|
+
} | null | undefined;
|
|
99146
|
+
origin?: {
|
|
99147
|
+
sourceFileName?: string | null | undefined;
|
|
99148
|
+
title?: string | null | undefined;
|
|
99149
|
+
previewUrl?: string | null | undefined;
|
|
99150
|
+
valid?: boolean | null | undefined;
|
|
99151
|
+
referenceId?: string | null | undefined;
|
|
99152
|
+
assetId?: string | null | undefined;
|
|
99153
|
+
assetScale?: number | null | undefined;
|
|
99154
|
+
width?: number | null | undefined;
|
|
99155
|
+
height?: number | null | undefined;
|
|
99156
|
+
} | null | undefined;
|
|
99157
|
+
};
|
|
99158
|
+
url?: string | undefined;
|
|
99159
|
+
} | null | undefined;
|
|
99160
|
+
minHeight?: number | null | undefined;
|
|
99161
|
+
};
|
|
99162
|
+
} | null | undefined;
|
|
99163
|
+
} | undefined;
|
|
99164
|
+
}>;
|
|
99165
|
+
}, "strip", z.ZodTypeAny, {
|
|
99166
|
+
page: {
|
|
99167
|
+
id: string;
|
|
99168
|
+
createdAt: Date;
|
|
99169
|
+
updatedAt: Date;
|
|
99170
|
+
persistentId: string;
|
|
99171
|
+
designSystemVersionId: string;
|
|
99172
|
+
data: {
|
|
99173
|
+
configuration?: {
|
|
99174
|
+
showSidebar: boolean;
|
|
99175
|
+
header: {
|
|
99176
|
+
description: string;
|
|
99177
|
+
alignment: "Center" | "Left";
|
|
99178
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
99179
|
+
showBackgroundOverlay: boolean;
|
|
99180
|
+
showCoverText: boolean;
|
|
99181
|
+
foregroundColor?: {
|
|
99182
|
+
aliasTo?: string | undefined;
|
|
99183
|
+
value?: {
|
|
99184
|
+
opacity: {
|
|
99185
|
+
aliasTo?: string | undefined;
|
|
99186
|
+
value?: {
|
|
99187
|
+
unit: "Pixels" | "Raw";
|
|
99188
|
+
measure: number;
|
|
99189
|
+
} | undefined;
|
|
99190
|
+
};
|
|
99191
|
+
color: (string | {
|
|
99192
|
+
aliasTo?: string | undefined;
|
|
99193
|
+
}) & (string | {
|
|
99194
|
+
aliasTo?: string | undefined;
|
|
99195
|
+
} | undefined);
|
|
99196
|
+
} | undefined;
|
|
99197
|
+
} | null | undefined;
|
|
99198
|
+
backgroundColor?: {
|
|
99199
|
+
aliasTo?: string | undefined;
|
|
99200
|
+
value?: {
|
|
99201
|
+
opacity: {
|
|
99202
|
+
aliasTo?: string | undefined;
|
|
99203
|
+
value?: {
|
|
99204
|
+
unit: "Pixels" | "Raw";
|
|
99205
|
+
measure: number;
|
|
99206
|
+
} | undefined;
|
|
99207
|
+
};
|
|
99208
|
+
color: (string | {
|
|
99209
|
+
aliasTo?: string | undefined;
|
|
99210
|
+
}) & (string | {
|
|
99211
|
+
aliasTo?: string | undefined;
|
|
99212
|
+
} | undefined);
|
|
99213
|
+
} | undefined;
|
|
99214
|
+
} | null | undefined;
|
|
99215
|
+
backgroundImageAsset?: {
|
|
99216
|
+
id: string;
|
|
99217
|
+
type: "image";
|
|
99218
|
+
url?: string | undefined;
|
|
99219
|
+
} | {
|
|
99220
|
+
type: "figmaFrame";
|
|
99221
|
+
figmaFrame: {
|
|
99222
|
+
persistentId: string;
|
|
99223
|
+
sourceId: string;
|
|
99224
|
+
sourceFrameId: string;
|
|
99225
|
+
title?: string | undefined;
|
|
99226
|
+
description?: string | undefined;
|
|
99227
|
+
backgroundColor?: {
|
|
99228
|
+
value: string;
|
|
99229
|
+
} | undefined;
|
|
99230
|
+
origin?: {
|
|
99231
|
+
sourceFileName?: string | undefined;
|
|
99232
|
+
title?: string | undefined;
|
|
99233
|
+
previewUrl?: string | undefined;
|
|
99234
|
+
valid?: boolean | undefined;
|
|
99235
|
+
referenceId?: string | undefined;
|
|
99236
|
+
assetId?: string | undefined;
|
|
99237
|
+
assetScale?: number | undefined;
|
|
99238
|
+
width?: number | undefined;
|
|
99239
|
+
height?: number | undefined;
|
|
99240
|
+
} | undefined;
|
|
99241
|
+
};
|
|
99242
|
+
url?: string | undefined;
|
|
99243
|
+
} | null | undefined;
|
|
99244
|
+
minHeight?: number | null | undefined;
|
|
99245
|
+
};
|
|
99246
|
+
} | undefined;
|
|
99247
|
+
};
|
|
99248
|
+
parentPersistentId: string;
|
|
99249
|
+
shortPersistentId: string;
|
|
99250
|
+
sortOrder: number;
|
|
99251
|
+
meta: {
|
|
99252
|
+
name: string;
|
|
99253
|
+
description?: string | undefined;
|
|
99254
|
+
};
|
|
99255
|
+
slug?: string | undefined;
|
|
99256
|
+
userSlug?: string | undefined;
|
|
99257
|
+
};
|
|
99258
|
+
pageParent: {
|
|
99259
|
+
id: string;
|
|
99260
|
+
createdAt: Date;
|
|
99261
|
+
updatedAt: Date;
|
|
99262
|
+
persistentId: string;
|
|
99263
|
+
designSystemVersionId: string;
|
|
99264
|
+
childType: "Image" | "Font" | "Documentation" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Component" | "Theme" | "DocumentationPage" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock";
|
|
99265
|
+
sortOrder: number;
|
|
99266
|
+
meta: {
|
|
99267
|
+
name: string;
|
|
99268
|
+
description?: string | undefined;
|
|
99269
|
+
};
|
|
99270
|
+
brandPersistentId?: string | undefined;
|
|
99271
|
+
parentPersistentId?: string | undefined;
|
|
99272
|
+
slug?: string | undefined;
|
|
99273
|
+
userSlug?: string | undefined;
|
|
99274
|
+
shortPersistentId?: string | undefined;
|
|
99275
|
+
data?: {
|
|
99276
|
+
behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
|
|
99277
|
+
configuration?: {
|
|
99278
|
+
showSidebar: boolean;
|
|
99279
|
+
header: {
|
|
99280
|
+
description: string;
|
|
99281
|
+
alignment: "Center" | "Left";
|
|
99282
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
99283
|
+
showBackgroundOverlay: boolean;
|
|
99284
|
+
showCoverText: boolean;
|
|
99285
|
+
foregroundColor?: {
|
|
99286
|
+
aliasTo?: string | undefined;
|
|
99287
|
+
value?: {
|
|
99288
|
+
opacity: {
|
|
99289
|
+
aliasTo?: string | undefined;
|
|
99290
|
+
value?: {
|
|
99291
|
+
unit: "Pixels" | "Raw";
|
|
99292
|
+
measure: number;
|
|
99293
|
+
} | undefined;
|
|
99294
|
+
};
|
|
99295
|
+
color: (string | {
|
|
99296
|
+
aliasTo?: string | undefined;
|
|
99297
|
+
}) & (string | {
|
|
99298
|
+
aliasTo?: string | undefined;
|
|
99299
|
+
} | undefined);
|
|
99300
|
+
} | undefined;
|
|
99301
|
+
} | null | undefined;
|
|
99302
|
+
backgroundColor?: {
|
|
99303
|
+
aliasTo?: string | undefined;
|
|
99304
|
+
value?: {
|
|
99305
|
+
opacity: {
|
|
99306
|
+
aliasTo?: string | undefined;
|
|
99307
|
+
value?: {
|
|
99308
|
+
unit: "Pixels" | "Raw";
|
|
99309
|
+
measure: number;
|
|
99310
|
+
} | undefined;
|
|
99311
|
+
};
|
|
99312
|
+
color: (string | {
|
|
99313
|
+
aliasTo?: string | undefined;
|
|
99314
|
+
}) & (string | {
|
|
99315
|
+
aliasTo?: string | undefined;
|
|
99316
|
+
} | undefined);
|
|
99317
|
+
} | undefined;
|
|
99318
|
+
} | null | undefined;
|
|
99319
|
+
backgroundImageAsset?: {
|
|
99320
|
+
id: string;
|
|
99321
|
+
type: "image";
|
|
99322
|
+
url?: string | undefined;
|
|
99323
|
+
} | {
|
|
99324
|
+
type: "figmaFrame";
|
|
99325
|
+
figmaFrame: {
|
|
99326
|
+
persistentId: string;
|
|
99327
|
+
sourceId: string;
|
|
99328
|
+
sourceFrameId: string;
|
|
99329
|
+
title?: string | undefined;
|
|
99330
|
+
description?: string | undefined;
|
|
99331
|
+
backgroundColor?: {
|
|
99332
|
+
value: string;
|
|
99333
|
+
} | undefined;
|
|
99334
|
+
origin?: {
|
|
99335
|
+
sourceFileName?: string | undefined;
|
|
99336
|
+
title?: string | undefined;
|
|
99337
|
+
previewUrl?: string | undefined;
|
|
99338
|
+
valid?: boolean | undefined;
|
|
99339
|
+
referenceId?: string | undefined;
|
|
99340
|
+
assetId?: string | undefined;
|
|
99341
|
+
assetScale?: number | undefined;
|
|
99342
|
+
width?: number | undefined;
|
|
99343
|
+
height?: number | undefined;
|
|
99344
|
+
} | undefined;
|
|
99345
|
+
};
|
|
99346
|
+
url?: string | undefined;
|
|
99347
|
+
} | null | undefined;
|
|
99348
|
+
minHeight?: number | null | undefined;
|
|
99349
|
+
};
|
|
99350
|
+
} | undefined;
|
|
99351
|
+
} | undefined;
|
|
99352
|
+
};
|
|
99353
|
+
}, {
|
|
99354
|
+
page: {
|
|
99355
|
+
id: string;
|
|
99356
|
+
createdAt: Date;
|
|
99357
|
+
updatedAt: Date;
|
|
99358
|
+
persistentId: string;
|
|
99359
|
+
designSystemVersionId: string;
|
|
99360
|
+
data: {
|
|
99361
|
+
configuration?: {
|
|
99362
|
+
showSidebar: boolean;
|
|
99363
|
+
header: {
|
|
99364
|
+
description: string;
|
|
99365
|
+
alignment: "Center" | "Left";
|
|
99366
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
99367
|
+
showBackgroundOverlay: boolean;
|
|
99368
|
+
showCoverText: boolean;
|
|
99369
|
+
foregroundColor?: {
|
|
99370
|
+
aliasTo?: string | null | undefined;
|
|
99371
|
+
value?: {
|
|
99372
|
+
opacity: {
|
|
99373
|
+
aliasTo?: string | null | undefined;
|
|
99374
|
+
value?: {
|
|
99375
|
+
unit: "Pixels" | "Raw";
|
|
99376
|
+
measure: number;
|
|
99377
|
+
} | null | undefined;
|
|
99378
|
+
};
|
|
99379
|
+
color: (string | {
|
|
99380
|
+
aliasTo?: string | null | undefined;
|
|
99381
|
+
}) & (string | {
|
|
99382
|
+
aliasTo?: string | null | undefined;
|
|
99383
|
+
} | undefined);
|
|
99384
|
+
} | null | undefined;
|
|
99385
|
+
} | null | undefined;
|
|
99386
|
+
backgroundColor?: {
|
|
99387
|
+
aliasTo?: string | null | undefined;
|
|
99388
|
+
value?: {
|
|
99389
|
+
opacity: {
|
|
99390
|
+
aliasTo?: string | null | undefined;
|
|
99391
|
+
value?: {
|
|
99392
|
+
unit: "Pixels" | "Raw";
|
|
99393
|
+
measure: number;
|
|
99394
|
+
} | null | undefined;
|
|
99395
|
+
};
|
|
99396
|
+
color: (string | {
|
|
99397
|
+
aliasTo?: string | null | undefined;
|
|
99398
|
+
}) & (string | {
|
|
99399
|
+
aliasTo?: string | null | undefined;
|
|
99400
|
+
} | undefined);
|
|
99401
|
+
} | null | undefined;
|
|
99402
|
+
} | null | undefined;
|
|
99403
|
+
backgroundImageAsset?: {
|
|
99404
|
+
id: string;
|
|
99405
|
+
type: "image";
|
|
99406
|
+
url?: string | undefined;
|
|
99407
|
+
} | {
|
|
99408
|
+
type: "figmaFrame";
|
|
99409
|
+
figmaFrame: {
|
|
99410
|
+
persistentId: string;
|
|
99411
|
+
sourceId: string;
|
|
99412
|
+
sourceFrameId: string;
|
|
99413
|
+
title?: string | null | undefined;
|
|
99414
|
+
description?: string | null | undefined;
|
|
99415
|
+
backgroundColor?: {
|
|
99416
|
+
value: string;
|
|
99417
|
+
} | null | undefined;
|
|
99418
|
+
origin?: {
|
|
99419
|
+
sourceFileName?: string | null | undefined;
|
|
99420
|
+
title?: string | null | undefined;
|
|
99421
|
+
previewUrl?: string | null | undefined;
|
|
99422
|
+
valid?: boolean | null | undefined;
|
|
99423
|
+
referenceId?: string | null | undefined;
|
|
99424
|
+
assetId?: string | null | undefined;
|
|
99425
|
+
assetScale?: number | null | undefined;
|
|
99426
|
+
width?: number | null | undefined;
|
|
99427
|
+
height?: number | null | undefined;
|
|
99428
|
+
} | null | undefined;
|
|
99429
|
+
};
|
|
99430
|
+
url?: string | undefined;
|
|
99431
|
+
} | null | undefined;
|
|
99432
|
+
minHeight?: number | null | undefined;
|
|
99433
|
+
};
|
|
99434
|
+
} | null | undefined;
|
|
99435
|
+
};
|
|
99436
|
+
parentPersistentId: string;
|
|
99437
|
+
shortPersistentId: string;
|
|
99438
|
+
sortOrder: number;
|
|
99439
|
+
meta: {
|
|
99440
|
+
name: string;
|
|
99441
|
+
description?: string | undefined;
|
|
99442
|
+
};
|
|
99443
|
+
slug?: string | undefined;
|
|
99444
|
+
userSlug?: string | undefined;
|
|
99445
|
+
};
|
|
99446
|
+
pageParent: {
|
|
99447
|
+
id: string;
|
|
99448
|
+
createdAt: Date;
|
|
99449
|
+
updatedAt: Date;
|
|
99450
|
+
persistentId: string;
|
|
99451
|
+
designSystemVersionId: string;
|
|
99452
|
+
childType: "Image" | "Font" | "Documentation" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Component" | "Theme" | "DocumentationPage" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock";
|
|
99453
|
+
sortOrder: number;
|
|
99454
|
+
meta: {
|
|
99455
|
+
name: string;
|
|
99456
|
+
description?: string | undefined;
|
|
99457
|
+
};
|
|
99458
|
+
brandPersistentId?: string | undefined;
|
|
99459
|
+
parentPersistentId?: string | undefined;
|
|
99460
|
+
slug?: string | undefined;
|
|
99461
|
+
userSlug?: string | undefined;
|
|
99462
|
+
shortPersistentId?: string | undefined;
|
|
99463
|
+
data?: {
|
|
99464
|
+
behavior?: "Tabs" | "Group" | null | undefined;
|
|
99465
|
+
configuration?: {
|
|
99466
|
+
showSidebar: boolean;
|
|
99467
|
+
header: {
|
|
99468
|
+
description: string;
|
|
99469
|
+
alignment: "Center" | "Left";
|
|
99470
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
99471
|
+
showBackgroundOverlay: boolean;
|
|
99472
|
+
showCoverText: boolean;
|
|
99473
|
+
foregroundColor?: {
|
|
99474
|
+
aliasTo?: string | null | undefined;
|
|
99475
|
+
value?: {
|
|
99476
|
+
opacity: {
|
|
99477
|
+
aliasTo?: string | null | undefined;
|
|
99478
|
+
value?: {
|
|
99479
|
+
unit: "Pixels" | "Raw";
|
|
99480
|
+
measure: number;
|
|
99481
|
+
} | null | undefined;
|
|
99482
|
+
};
|
|
99483
|
+
color: (string | {
|
|
99484
|
+
aliasTo?: string | null | undefined;
|
|
99485
|
+
}) & (string | {
|
|
99486
|
+
aliasTo?: string | null | undefined;
|
|
99487
|
+
} | undefined);
|
|
99488
|
+
} | null | undefined;
|
|
99489
|
+
} | null | undefined;
|
|
99490
|
+
backgroundColor?: {
|
|
99491
|
+
aliasTo?: string | null | undefined;
|
|
99492
|
+
value?: {
|
|
99493
|
+
opacity: {
|
|
99494
|
+
aliasTo?: string | null | undefined;
|
|
99495
|
+
value?: {
|
|
99496
|
+
unit: "Pixels" | "Raw";
|
|
99497
|
+
measure: number;
|
|
99498
|
+
} | null | undefined;
|
|
99499
|
+
};
|
|
99500
|
+
color: (string | {
|
|
99501
|
+
aliasTo?: string | null | undefined;
|
|
99502
|
+
}) & (string | {
|
|
99503
|
+
aliasTo?: string | null | undefined;
|
|
99504
|
+
} | undefined);
|
|
99505
|
+
} | null | undefined;
|
|
99506
|
+
} | null | undefined;
|
|
99507
|
+
backgroundImageAsset?: {
|
|
99508
|
+
id: string;
|
|
99509
|
+
type: "image";
|
|
99510
|
+
url?: string | undefined;
|
|
99511
|
+
} | {
|
|
99512
|
+
type: "figmaFrame";
|
|
99513
|
+
figmaFrame: {
|
|
99514
|
+
persistentId: string;
|
|
99515
|
+
sourceId: string;
|
|
99516
|
+
sourceFrameId: string;
|
|
99517
|
+
title?: string | null | undefined;
|
|
99518
|
+
description?: string | null | undefined;
|
|
99519
|
+
backgroundColor?: {
|
|
99520
|
+
value: string;
|
|
99521
|
+
} | null | undefined;
|
|
99522
|
+
origin?: {
|
|
99523
|
+
sourceFileName?: string | null | undefined;
|
|
99524
|
+
title?: string | null | undefined;
|
|
99525
|
+
previewUrl?: string | null | undefined;
|
|
99526
|
+
valid?: boolean | null | undefined;
|
|
99527
|
+
referenceId?: string | null | undefined;
|
|
99528
|
+
assetId?: string | null | undefined;
|
|
99529
|
+
assetScale?: number | null | undefined;
|
|
99530
|
+
width?: number | null | undefined;
|
|
99531
|
+
height?: number | null | undefined;
|
|
99532
|
+
} | null | undefined;
|
|
99533
|
+
};
|
|
99534
|
+
url?: string | undefined;
|
|
99535
|
+
} | null | undefined;
|
|
99536
|
+
minHeight?: number | null | undefined;
|
|
99537
|
+
};
|
|
99538
|
+
} | null | undefined;
|
|
99539
|
+
} | undefined;
|
|
99540
|
+
};
|
|
99541
|
+
}>;
|
|
99542
|
+
type DocumentationPageRoomRoomUpdate = z.infer<typeof DocumentationPageRoomRoomUpdate>;
|
|
99543
|
+
declare const DocumentationPageRoomInitialState: z.ZodObject<{
|
|
99544
|
+
page: z.ZodObject<{
|
|
99545
|
+
id: z.ZodString;
|
|
99546
|
+
createdAt: z.ZodDate;
|
|
99547
|
+
updatedAt: z.ZodDate;
|
|
99548
|
+
persistentId: z.ZodString;
|
|
99549
|
+
designSystemVersionId: z.ZodString;
|
|
99550
|
+
parentPersistentId: z.ZodString;
|
|
99551
|
+
sortOrder: z.ZodNumber;
|
|
99552
|
+
meta: z.ZodObject<{
|
|
99553
|
+
name: z.ZodString;
|
|
99554
|
+
description: z.ZodOptional<z.ZodString>;
|
|
99555
|
+
}, "strip", z.ZodTypeAny, {
|
|
99556
|
+
name: string;
|
|
99557
|
+
description?: string | undefined;
|
|
99558
|
+
}, {
|
|
99559
|
+
name: string;
|
|
99560
|
+
description?: string | undefined;
|
|
99561
|
+
}>;
|
|
99562
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
99563
|
+
userSlug: z.ZodOptional<z.ZodString>;
|
|
99564
|
+
shortPersistentId: z.ZodString;
|
|
99565
|
+
data: z.ZodObject<{
|
|
99566
|
+
configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
99567
|
+
showSidebar: boolean;
|
|
99568
|
+
header: {
|
|
99569
|
+
description: string;
|
|
99570
|
+
alignment: "Center" | "Left";
|
|
99571
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
99572
|
+
showBackgroundOverlay: boolean;
|
|
99573
|
+
showCoverText: boolean;
|
|
99574
|
+
foregroundColor?: {
|
|
99575
|
+
aliasTo?: string | undefined;
|
|
99576
|
+
value?: {
|
|
99577
|
+
opacity: {
|
|
99578
|
+
aliasTo?: string | undefined;
|
|
99579
|
+
value?: {
|
|
99580
|
+
unit: "Pixels" | "Raw";
|
|
99581
|
+
measure: number;
|
|
99582
|
+
} | undefined;
|
|
99583
|
+
};
|
|
99584
|
+
color: (string | {
|
|
99585
|
+
aliasTo?: string | undefined;
|
|
99586
|
+
}) & (string | {
|
|
99587
|
+
aliasTo?: string | undefined;
|
|
99588
|
+
} | undefined);
|
|
99589
|
+
} | undefined;
|
|
99590
|
+
} | null | undefined;
|
|
99591
|
+
backgroundColor?: {
|
|
99592
|
+
aliasTo?: string | undefined;
|
|
99593
|
+
value?: {
|
|
99594
|
+
opacity: {
|
|
99595
|
+
aliasTo?: string | undefined;
|
|
99596
|
+
value?: {
|
|
99597
|
+
unit: "Pixels" | "Raw";
|
|
99598
|
+
measure: number;
|
|
99599
|
+
} | undefined;
|
|
99600
|
+
};
|
|
99601
|
+
color: (string | {
|
|
99602
|
+
aliasTo?: string | undefined;
|
|
99603
|
+
}) & (string | {
|
|
99604
|
+
aliasTo?: string | undefined;
|
|
99605
|
+
} | undefined);
|
|
99606
|
+
} | undefined;
|
|
99607
|
+
} | null | undefined;
|
|
99608
|
+
backgroundImageAsset?: {
|
|
99609
|
+
id: string;
|
|
99610
|
+
type: "image";
|
|
99611
|
+
url?: string | undefined;
|
|
99612
|
+
} | {
|
|
99613
|
+
type: "figmaFrame";
|
|
99614
|
+
figmaFrame: {
|
|
99615
|
+
persistentId: string;
|
|
99616
|
+
sourceId: string;
|
|
99617
|
+
sourceFrameId: string;
|
|
99618
|
+
title?: string | undefined;
|
|
99619
|
+
description?: string | undefined;
|
|
99620
|
+
backgroundColor?: {
|
|
99621
|
+
value: string;
|
|
99622
|
+
} | undefined;
|
|
99623
|
+
origin?: {
|
|
99624
|
+
sourceFileName?: string | undefined;
|
|
99625
|
+
title?: string | undefined;
|
|
99626
|
+
previewUrl?: string | undefined;
|
|
99627
|
+
valid?: boolean | undefined;
|
|
99628
|
+
referenceId?: string | undefined;
|
|
99629
|
+
assetId?: string | undefined;
|
|
99630
|
+
assetScale?: number | undefined;
|
|
99631
|
+
width?: number | undefined;
|
|
99632
|
+
height?: number | undefined;
|
|
99633
|
+
} | undefined;
|
|
99634
|
+
};
|
|
99635
|
+
url?: string | undefined;
|
|
99636
|
+
} | null | undefined;
|
|
99637
|
+
minHeight?: number | null | undefined;
|
|
99638
|
+
};
|
|
99639
|
+
}, z.ZodTypeDef, {
|
|
99640
|
+
showSidebar: boolean;
|
|
99641
|
+
header: {
|
|
99642
|
+
description: string;
|
|
99643
|
+
alignment: "Center" | "Left";
|
|
99644
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
99645
|
+
showBackgroundOverlay: boolean;
|
|
99646
|
+
showCoverText: boolean;
|
|
99647
|
+
foregroundColor?: {
|
|
99648
|
+
aliasTo?: string | null | undefined;
|
|
99649
|
+
value?: {
|
|
99650
|
+
opacity: {
|
|
99651
|
+
aliasTo?: string | null | undefined;
|
|
99652
|
+
value?: {
|
|
99653
|
+
unit: "Pixels" | "Raw";
|
|
99654
|
+
measure: number;
|
|
99655
|
+
} | null | undefined;
|
|
99656
|
+
};
|
|
99657
|
+
color: (string | {
|
|
99658
|
+
aliasTo?: string | null | undefined;
|
|
99659
|
+
}) & (string | {
|
|
99660
|
+
aliasTo?: string | null | undefined;
|
|
99661
|
+
} | undefined);
|
|
99662
|
+
} | null | undefined;
|
|
99663
|
+
} | null | undefined;
|
|
99664
|
+
backgroundColor?: {
|
|
99665
|
+
aliasTo?: string | null | undefined;
|
|
99666
|
+
value?: {
|
|
99667
|
+
opacity: {
|
|
99668
|
+
aliasTo?: string | null | undefined;
|
|
99669
|
+
value?: {
|
|
99670
|
+
unit: "Pixels" | "Raw";
|
|
99671
|
+
measure: number;
|
|
99672
|
+
} | null | undefined;
|
|
99673
|
+
};
|
|
99674
|
+
color: (string | {
|
|
99675
|
+
aliasTo?: string | null | undefined;
|
|
99676
|
+
}) & (string | {
|
|
99677
|
+
aliasTo?: string | null | undefined;
|
|
99678
|
+
} | undefined);
|
|
99679
|
+
} | null | undefined;
|
|
99680
|
+
} | null | undefined;
|
|
99681
|
+
backgroundImageAsset?: {
|
|
99682
|
+
id: string;
|
|
99683
|
+
type: "image";
|
|
99684
|
+
url?: string | undefined;
|
|
99685
|
+
} | {
|
|
99686
|
+
type: "figmaFrame";
|
|
99687
|
+
figmaFrame: {
|
|
99688
|
+
persistentId: string;
|
|
99689
|
+
sourceId: string;
|
|
99690
|
+
sourceFrameId: string;
|
|
99691
|
+
title?: string | null | undefined;
|
|
99692
|
+
description?: string | null | undefined;
|
|
99693
|
+
backgroundColor?: {
|
|
99694
|
+
value: string;
|
|
99695
|
+
} | null | undefined;
|
|
99696
|
+
origin?: {
|
|
99697
|
+
sourceFileName?: string | null | undefined;
|
|
99698
|
+
title?: string | null | undefined;
|
|
99699
|
+
previewUrl?: string | null | undefined;
|
|
99700
|
+
valid?: boolean | null | undefined;
|
|
99701
|
+
referenceId?: string | null | undefined;
|
|
99702
|
+
assetId?: string | null | undefined;
|
|
99703
|
+
assetScale?: number | null | undefined;
|
|
99704
|
+
width?: number | null | undefined;
|
|
99705
|
+
height?: number | null | undefined;
|
|
99706
|
+
} | null | undefined;
|
|
99707
|
+
};
|
|
99708
|
+
url?: string | undefined;
|
|
99709
|
+
} | null | undefined;
|
|
99710
|
+
minHeight?: number | null | undefined;
|
|
99711
|
+
};
|
|
99712
|
+
}>>>, {
|
|
99713
|
+
showSidebar: boolean;
|
|
99714
|
+
header: {
|
|
99715
|
+
description: string;
|
|
99716
|
+
alignment: "Center" | "Left";
|
|
99717
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
99718
|
+
showBackgroundOverlay: boolean;
|
|
99719
|
+
showCoverText: boolean;
|
|
99720
|
+
foregroundColor?: {
|
|
99721
|
+
aliasTo?: string | undefined;
|
|
99722
|
+
value?: {
|
|
99723
|
+
opacity: {
|
|
99724
|
+
aliasTo?: string | undefined;
|
|
99725
|
+
value?: {
|
|
99726
|
+
unit: "Pixels" | "Raw";
|
|
99727
|
+
measure: number;
|
|
99728
|
+
} | undefined;
|
|
99729
|
+
};
|
|
99730
|
+
color: (string | {
|
|
99731
|
+
aliasTo?: string | undefined;
|
|
99732
|
+
}) & (string | {
|
|
99733
|
+
aliasTo?: string | undefined;
|
|
99734
|
+
} | undefined);
|
|
99735
|
+
} | undefined;
|
|
99736
|
+
} | null | undefined;
|
|
99737
|
+
backgroundColor?: {
|
|
99738
|
+
aliasTo?: string | undefined;
|
|
99739
|
+
value?: {
|
|
99740
|
+
opacity: {
|
|
99741
|
+
aliasTo?: string | undefined;
|
|
99742
|
+
value?: {
|
|
99743
|
+
unit: "Pixels" | "Raw";
|
|
99744
|
+
measure: number;
|
|
99745
|
+
} | undefined;
|
|
99746
|
+
};
|
|
99747
|
+
color: (string | {
|
|
99748
|
+
aliasTo?: string | undefined;
|
|
99749
|
+
}) & (string | {
|
|
99750
|
+
aliasTo?: string | undefined;
|
|
99751
|
+
} | undefined);
|
|
99752
|
+
} | undefined;
|
|
99753
|
+
} | null | undefined;
|
|
99754
|
+
backgroundImageAsset?: {
|
|
99755
|
+
id: string;
|
|
99756
|
+
type: "image";
|
|
99757
|
+
url?: string | undefined;
|
|
99758
|
+
} | {
|
|
99759
|
+
type: "figmaFrame";
|
|
99760
|
+
figmaFrame: {
|
|
99761
|
+
persistentId: string;
|
|
99762
|
+
sourceId: string;
|
|
99763
|
+
sourceFrameId: string;
|
|
99764
|
+
title?: string | undefined;
|
|
99765
|
+
description?: string | undefined;
|
|
99766
|
+
backgroundColor?: {
|
|
99767
|
+
value: string;
|
|
99768
|
+
} | undefined;
|
|
99769
|
+
origin?: {
|
|
99770
|
+
sourceFileName?: string | undefined;
|
|
99771
|
+
title?: string | undefined;
|
|
99772
|
+
previewUrl?: string | undefined;
|
|
99773
|
+
valid?: boolean | undefined;
|
|
99774
|
+
referenceId?: string | undefined;
|
|
99775
|
+
assetId?: string | undefined;
|
|
99776
|
+
assetScale?: number | undefined;
|
|
99777
|
+
width?: number | undefined;
|
|
99778
|
+
height?: number | undefined;
|
|
99779
|
+
} | undefined;
|
|
99780
|
+
};
|
|
99781
|
+
url?: string | undefined;
|
|
99782
|
+
} | null | undefined;
|
|
99783
|
+
minHeight?: number | null | undefined;
|
|
99784
|
+
};
|
|
99785
|
+
} | undefined, {
|
|
99786
|
+
showSidebar: boolean;
|
|
99787
|
+
header: {
|
|
99788
|
+
description: string;
|
|
99789
|
+
alignment: "Center" | "Left";
|
|
99790
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
99791
|
+
showBackgroundOverlay: boolean;
|
|
99792
|
+
showCoverText: boolean;
|
|
99793
|
+
foregroundColor?: {
|
|
99794
|
+
aliasTo?: string | null | undefined;
|
|
99795
|
+
value?: {
|
|
99796
|
+
opacity: {
|
|
99797
|
+
aliasTo?: string | null | undefined;
|
|
99798
|
+
value?: {
|
|
99799
|
+
unit: "Pixels" | "Raw";
|
|
99800
|
+
measure: number;
|
|
99801
|
+
} | null | undefined;
|
|
99802
|
+
};
|
|
99803
|
+
color: (string | {
|
|
99804
|
+
aliasTo?: string | null | undefined;
|
|
99805
|
+
}) & (string | {
|
|
99806
|
+
aliasTo?: string | null | undefined;
|
|
99807
|
+
} | undefined);
|
|
99808
|
+
} | null | undefined;
|
|
99809
|
+
} | null | undefined;
|
|
99810
|
+
backgroundColor?: {
|
|
99811
|
+
aliasTo?: string | null | undefined;
|
|
99812
|
+
value?: {
|
|
99813
|
+
opacity: {
|
|
99814
|
+
aliasTo?: string | null | undefined;
|
|
99815
|
+
value?: {
|
|
99816
|
+
unit: "Pixels" | "Raw";
|
|
99817
|
+
measure: number;
|
|
99818
|
+
} | null | undefined;
|
|
99819
|
+
};
|
|
99820
|
+
color: (string | {
|
|
99821
|
+
aliasTo?: string | null | undefined;
|
|
99822
|
+
}) & (string | {
|
|
99823
|
+
aliasTo?: string | null | undefined;
|
|
99824
|
+
} | undefined);
|
|
99825
|
+
} | null | undefined;
|
|
99826
|
+
} | null | undefined;
|
|
99827
|
+
backgroundImageAsset?: {
|
|
99828
|
+
id: string;
|
|
99829
|
+
type: "image";
|
|
99830
|
+
url?: string | undefined;
|
|
99831
|
+
} | {
|
|
99832
|
+
type: "figmaFrame";
|
|
99833
|
+
figmaFrame: {
|
|
99834
|
+
persistentId: string;
|
|
99835
|
+
sourceId: string;
|
|
99836
|
+
sourceFrameId: string;
|
|
99837
|
+
title?: string | null | undefined;
|
|
99838
|
+
description?: string | null | undefined;
|
|
99839
|
+
backgroundColor?: {
|
|
99840
|
+
value: string;
|
|
99841
|
+
} | null | undefined;
|
|
99842
|
+
origin?: {
|
|
99843
|
+
sourceFileName?: string | null | undefined;
|
|
99844
|
+
title?: string | null | undefined;
|
|
99845
|
+
previewUrl?: string | null | undefined;
|
|
99846
|
+
valid?: boolean | null | undefined;
|
|
99847
|
+
referenceId?: string | null | undefined;
|
|
99848
|
+
assetId?: string | null | undefined;
|
|
99849
|
+
assetScale?: number | null | undefined;
|
|
99850
|
+
width?: number | null | undefined;
|
|
99851
|
+
height?: number | null | undefined;
|
|
99852
|
+
} | null | undefined;
|
|
99853
|
+
};
|
|
99854
|
+
url?: string | undefined;
|
|
99855
|
+
} | null | undefined;
|
|
99856
|
+
minHeight?: number | null | undefined;
|
|
99857
|
+
};
|
|
99858
|
+
} | null | undefined>;
|
|
99859
|
+
}, "strip", z.ZodTypeAny, {
|
|
99860
|
+
configuration?: {
|
|
99861
|
+
showSidebar: boolean;
|
|
99862
|
+
header: {
|
|
99863
|
+
description: string;
|
|
99864
|
+
alignment: "Center" | "Left";
|
|
99865
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
99866
|
+
showBackgroundOverlay: boolean;
|
|
99867
|
+
showCoverText: boolean;
|
|
99868
|
+
foregroundColor?: {
|
|
99869
|
+
aliasTo?: string | undefined;
|
|
99870
|
+
value?: {
|
|
99871
|
+
opacity: {
|
|
99872
|
+
aliasTo?: string | undefined;
|
|
99873
|
+
value?: {
|
|
99874
|
+
unit: "Pixels" | "Raw";
|
|
99875
|
+
measure: number;
|
|
99876
|
+
} | undefined;
|
|
99877
|
+
};
|
|
99878
|
+
color: (string | {
|
|
99879
|
+
aliasTo?: string | undefined;
|
|
99880
|
+
}) & (string | {
|
|
99881
|
+
aliasTo?: string | undefined;
|
|
99882
|
+
} | undefined);
|
|
99883
|
+
} | undefined;
|
|
99884
|
+
} | null | undefined;
|
|
99885
|
+
backgroundColor?: {
|
|
99886
|
+
aliasTo?: string | undefined;
|
|
99887
|
+
value?: {
|
|
99888
|
+
opacity: {
|
|
99889
|
+
aliasTo?: string | undefined;
|
|
99890
|
+
value?: {
|
|
99891
|
+
unit: "Pixels" | "Raw";
|
|
99892
|
+
measure: number;
|
|
99893
|
+
} | undefined;
|
|
99894
|
+
};
|
|
99895
|
+
color: (string | {
|
|
99896
|
+
aliasTo?: string | undefined;
|
|
99897
|
+
}) & (string | {
|
|
99898
|
+
aliasTo?: string | undefined;
|
|
99899
|
+
} | undefined);
|
|
99900
|
+
} | undefined;
|
|
99901
|
+
} | null | undefined;
|
|
99902
|
+
backgroundImageAsset?: {
|
|
99903
|
+
id: string;
|
|
99904
|
+
type: "image";
|
|
99905
|
+
url?: string | undefined;
|
|
99906
|
+
} | {
|
|
99907
|
+
type: "figmaFrame";
|
|
99908
|
+
figmaFrame: {
|
|
99909
|
+
persistentId: string;
|
|
99910
|
+
sourceId: string;
|
|
99911
|
+
sourceFrameId: string;
|
|
99912
|
+
title?: string | undefined;
|
|
99913
|
+
description?: string | undefined;
|
|
99914
|
+
backgroundColor?: {
|
|
99915
|
+
value: string;
|
|
99916
|
+
} | undefined;
|
|
99917
|
+
origin?: {
|
|
99918
|
+
sourceFileName?: string | undefined;
|
|
99919
|
+
title?: string | undefined;
|
|
99920
|
+
previewUrl?: string | undefined;
|
|
99921
|
+
valid?: boolean | undefined;
|
|
99922
|
+
referenceId?: string | undefined;
|
|
99923
|
+
assetId?: string | undefined;
|
|
99924
|
+
assetScale?: number | undefined;
|
|
99925
|
+
width?: number | undefined;
|
|
99926
|
+
height?: number | undefined;
|
|
99927
|
+
} | undefined;
|
|
99928
|
+
};
|
|
99929
|
+
url?: string | undefined;
|
|
99930
|
+
} | null | undefined;
|
|
99931
|
+
minHeight?: number | null | undefined;
|
|
99932
|
+
};
|
|
99933
|
+
} | undefined;
|
|
99934
|
+
}, {
|
|
99935
|
+
configuration?: {
|
|
99936
|
+
showSidebar: boolean;
|
|
99937
|
+
header: {
|
|
99938
|
+
description: string;
|
|
99939
|
+
alignment: "Center" | "Left";
|
|
99940
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
99941
|
+
showBackgroundOverlay: boolean;
|
|
99942
|
+
showCoverText: boolean;
|
|
99943
|
+
foregroundColor?: {
|
|
99944
|
+
aliasTo?: string | null | undefined;
|
|
99945
|
+
value?: {
|
|
99946
|
+
opacity: {
|
|
99947
|
+
aliasTo?: string | null | undefined;
|
|
99948
|
+
value?: {
|
|
99949
|
+
unit: "Pixels" | "Raw";
|
|
99950
|
+
measure: number;
|
|
99951
|
+
} | null | undefined;
|
|
99952
|
+
};
|
|
99953
|
+
color: (string | {
|
|
99954
|
+
aliasTo?: string | null | undefined;
|
|
99955
|
+
}) & (string | {
|
|
99956
|
+
aliasTo?: string | null | undefined;
|
|
99957
|
+
} | undefined);
|
|
99958
|
+
} | null | undefined;
|
|
99959
|
+
} | null | undefined;
|
|
99960
|
+
backgroundColor?: {
|
|
99961
|
+
aliasTo?: string | null | undefined;
|
|
99962
|
+
value?: {
|
|
99963
|
+
opacity: {
|
|
99964
|
+
aliasTo?: string | null | undefined;
|
|
99965
|
+
value?: {
|
|
99966
|
+
unit: "Pixels" | "Raw";
|
|
99967
|
+
measure: number;
|
|
99968
|
+
} | null | undefined;
|
|
99969
|
+
};
|
|
99970
|
+
color: (string | {
|
|
99971
|
+
aliasTo?: string | null | undefined;
|
|
99972
|
+
}) & (string | {
|
|
99973
|
+
aliasTo?: string | null | undefined;
|
|
99974
|
+
} | undefined);
|
|
99975
|
+
} | null | undefined;
|
|
99976
|
+
} | null | undefined;
|
|
99977
|
+
backgroundImageAsset?: {
|
|
99978
|
+
id: string;
|
|
99979
|
+
type: "image";
|
|
99980
|
+
url?: string | undefined;
|
|
99981
|
+
} | {
|
|
99982
|
+
type: "figmaFrame";
|
|
99983
|
+
figmaFrame: {
|
|
99984
|
+
persistentId: string;
|
|
99985
|
+
sourceId: string;
|
|
99986
|
+
sourceFrameId: string;
|
|
99987
|
+
title?: string | null | undefined;
|
|
99988
|
+
description?: string | null | undefined;
|
|
99989
|
+
backgroundColor?: {
|
|
99990
|
+
value: string;
|
|
99991
|
+
} | null | undefined;
|
|
99992
|
+
origin?: {
|
|
99993
|
+
sourceFileName?: string | null | undefined;
|
|
99994
|
+
title?: string | null | undefined;
|
|
99995
|
+
previewUrl?: string | null | undefined;
|
|
99996
|
+
valid?: boolean | null | undefined;
|
|
99997
|
+
referenceId?: string | null | undefined;
|
|
99998
|
+
assetId?: string | null | undefined;
|
|
99999
|
+
assetScale?: number | null | undefined;
|
|
100000
|
+
width?: number | null | undefined;
|
|
100001
|
+
height?: number | null | undefined;
|
|
100002
|
+
} | null | undefined;
|
|
100003
|
+
};
|
|
100004
|
+
url?: string | undefined;
|
|
100005
|
+
} | null | undefined;
|
|
100006
|
+
minHeight?: number | null | undefined;
|
|
100007
|
+
};
|
|
100008
|
+
} | null | undefined;
|
|
100009
|
+
}>;
|
|
100010
|
+
}, "strip", z.ZodTypeAny, {
|
|
100011
|
+
id: string;
|
|
100012
|
+
createdAt: Date;
|
|
100013
|
+
updatedAt: Date;
|
|
100014
|
+
persistentId: string;
|
|
100015
|
+
designSystemVersionId: string;
|
|
100016
|
+
data: {
|
|
100017
|
+
configuration?: {
|
|
100018
|
+
showSidebar: boolean;
|
|
100019
|
+
header: {
|
|
100020
|
+
description: string;
|
|
100021
|
+
alignment: "Center" | "Left";
|
|
100022
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
100023
|
+
showBackgroundOverlay: boolean;
|
|
100024
|
+
showCoverText: boolean;
|
|
100025
|
+
foregroundColor?: {
|
|
100026
|
+
aliasTo?: string | undefined;
|
|
100027
|
+
value?: {
|
|
100028
|
+
opacity: {
|
|
100029
|
+
aliasTo?: string | undefined;
|
|
100030
|
+
value?: {
|
|
100031
|
+
unit: "Pixels" | "Raw";
|
|
100032
|
+
measure: number;
|
|
100033
|
+
} | undefined;
|
|
100034
|
+
};
|
|
100035
|
+
color: (string | {
|
|
100036
|
+
aliasTo?: string | undefined;
|
|
100037
|
+
}) & (string | {
|
|
100038
|
+
aliasTo?: string | undefined;
|
|
100039
|
+
} | undefined);
|
|
100040
|
+
} | undefined;
|
|
100041
|
+
} | null | undefined;
|
|
100042
|
+
backgroundColor?: {
|
|
100043
|
+
aliasTo?: string | undefined;
|
|
100044
|
+
value?: {
|
|
100045
|
+
opacity: {
|
|
100046
|
+
aliasTo?: string | undefined;
|
|
100047
|
+
value?: {
|
|
100048
|
+
unit: "Pixels" | "Raw";
|
|
100049
|
+
measure: number;
|
|
100050
|
+
} | undefined;
|
|
100051
|
+
};
|
|
100052
|
+
color: (string | {
|
|
100053
|
+
aliasTo?: string | undefined;
|
|
100054
|
+
}) & (string | {
|
|
100055
|
+
aliasTo?: string | undefined;
|
|
100056
|
+
} | undefined);
|
|
100057
|
+
} | undefined;
|
|
100058
|
+
} | null | undefined;
|
|
100059
|
+
backgroundImageAsset?: {
|
|
100060
|
+
id: string;
|
|
100061
|
+
type: "image";
|
|
100062
|
+
url?: string | undefined;
|
|
100063
|
+
} | {
|
|
100064
|
+
type: "figmaFrame";
|
|
100065
|
+
figmaFrame: {
|
|
100066
|
+
persistentId: string;
|
|
100067
|
+
sourceId: string;
|
|
100068
|
+
sourceFrameId: string;
|
|
100069
|
+
title?: string | undefined;
|
|
100070
|
+
description?: string | undefined;
|
|
100071
|
+
backgroundColor?: {
|
|
100072
|
+
value: string;
|
|
100073
|
+
} | undefined;
|
|
100074
|
+
origin?: {
|
|
100075
|
+
sourceFileName?: string | undefined;
|
|
100076
|
+
title?: string | undefined;
|
|
100077
|
+
previewUrl?: string | undefined;
|
|
100078
|
+
valid?: boolean | undefined;
|
|
100079
|
+
referenceId?: string | undefined;
|
|
100080
|
+
assetId?: string | undefined;
|
|
100081
|
+
assetScale?: number | undefined;
|
|
100082
|
+
width?: number | undefined;
|
|
100083
|
+
height?: number | undefined;
|
|
100084
|
+
} | undefined;
|
|
100085
|
+
};
|
|
100086
|
+
url?: string | undefined;
|
|
100087
|
+
} | null | undefined;
|
|
100088
|
+
minHeight?: number | null | undefined;
|
|
100089
|
+
};
|
|
100090
|
+
} | undefined;
|
|
100091
|
+
};
|
|
100092
|
+
parentPersistentId: string;
|
|
100093
|
+
shortPersistentId: string;
|
|
100094
|
+
sortOrder: number;
|
|
100095
|
+
meta: {
|
|
100096
|
+
name: string;
|
|
100097
|
+
description?: string | undefined;
|
|
100098
|
+
};
|
|
100099
|
+
slug?: string | undefined;
|
|
100100
|
+
userSlug?: string | undefined;
|
|
100101
|
+
}, {
|
|
100102
|
+
id: string;
|
|
100103
|
+
createdAt: Date;
|
|
100104
|
+
updatedAt: Date;
|
|
100105
|
+
persistentId: string;
|
|
100106
|
+
designSystemVersionId: string;
|
|
100107
|
+
data: {
|
|
100108
|
+
configuration?: {
|
|
100109
|
+
showSidebar: boolean;
|
|
100110
|
+
header: {
|
|
100111
|
+
description: string;
|
|
100112
|
+
alignment: "Center" | "Left";
|
|
100113
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
100114
|
+
showBackgroundOverlay: boolean;
|
|
100115
|
+
showCoverText: boolean;
|
|
100116
|
+
foregroundColor?: {
|
|
100117
|
+
aliasTo?: string | null | undefined;
|
|
100118
|
+
value?: {
|
|
100119
|
+
opacity: {
|
|
100120
|
+
aliasTo?: string | null | undefined;
|
|
100121
|
+
value?: {
|
|
100122
|
+
unit: "Pixels" | "Raw";
|
|
100123
|
+
measure: number;
|
|
100124
|
+
} | null | undefined;
|
|
100125
|
+
};
|
|
100126
|
+
color: (string | {
|
|
100127
|
+
aliasTo?: string | null | undefined;
|
|
100128
|
+
}) & (string | {
|
|
100129
|
+
aliasTo?: string | null | undefined;
|
|
100130
|
+
} | undefined);
|
|
100131
|
+
} | null | undefined;
|
|
100132
|
+
} | null | undefined;
|
|
100133
|
+
backgroundColor?: {
|
|
100134
|
+
aliasTo?: string | null | undefined;
|
|
100135
|
+
value?: {
|
|
100136
|
+
opacity: {
|
|
100137
|
+
aliasTo?: string | null | undefined;
|
|
100138
|
+
value?: {
|
|
100139
|
+
unit: "Pixels" | "Raw";
|
|
100140
|
+
measure: number;
|
|
100141
|
+
} | null | undefined;
|
|
100142
|
+
};
|
|
100143
|
+
color: (string | {
|
|
100144
|
+
aliasTo?: string | null | undefined;
|
|
100145
|
+
}) & (string | {
|
|
100146
|
+
aliasTo?: string | null | undefined;
|
|
100147
|
+
} | undefined);
|
|
100148
|
+
} | null | undefined;
|
|
100149
|
+
} | null | undefined;
|
|
100150
|
+
backgroundImageAsset?: {
|
|
100151
|
+
id: string;
|
|
100152
|
+
type: "image";
|
|
100153
|
+
url?: string | undefined;
|
|
100154
|
+
} | {
|
|
100155
|
+
type: "figmaFrame";
|
|
100156
|
+
figmaFrame: {
|
|
100157
|
+
persistentId: string;
|
|
100158
|
+
sourceId: string;
|
|
100159
|
+
sourceFrameId: string;
|
|
100160
|
+
title?: string | null | undefined;
|
|
100161
|
+
description?: string | null | undefined;
|
|
100162
|
+
backgroundColor?: {
|
|
100163
|
+
value: string;
|
|
100164
|
+
} | null | undefined;
|
|
100165
|
+
origin?: {
|
|
100166
|
+
sourceFileName?: string | null | undefined;
|
|
100167
|
+
title?: string | null | undefined;
|
|
100168
|
+
previewUrl?: string | null | undefined;
|
|
100169
|
+
valid?: boolean | null | undefined;
|
|
100170
|
+
referenceId?: string | null | undefined;
|
|
100171
|
+
assetId?: string | null | undefined;
|
|
100172
|
+
assetScale?: number | null | undefined;
|
|
100173
|
+
width?: number | null | undefined;
|
|
100174
|
+
height?: number | null | undefined;
|
|
100175
|
+
} | null | undefined;
|
|
100176
|
+
};
|
|
100177
|
+
url?: string | undefined;
|
|
100178
|
+
} | null | undefined;
|
|
100179
|
+
minHeight?: number | null | undefined;
|
|
100180
|
+
};
|
|
100181
|
+
} | null | undefined;
|
|
100182
|
+
};
|
|
100183
|
+
parentPersistentId: string;
|
|
100184
|
+
shortPersistentId: string;
|
|
100185
|
+
sortOrder: number;
|
|
100186
|
+
meta: {
|
|
100187
|
+
name: string;
|
|
100188
|
+
description?: string | undefined;
|
|
100189
|
+
};
|
|
100190
|
+
slug?: string | undefined;
|
|
100191
|
+
userSlug?: string | undefined;
|
|
100192
|
+
}>;
|
|
100193
|
+
pageParent: z.ZodObject<{
|
|
100194
|
+
id: z.ZodString;
|
|
100195
|
+
createdAt: z.ZodDate;
|
|
100196
|
+
updatedAt: z.ZodDate;
|
|
100197
|
+
persistentId: z.ZodString;
|
|
100198
|
+
designSystemVersionId: z.ZodString;
|
|
100199
|
+
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
100200
|
+
parentPersistentId: z.ZodOptional<z.ZodString>;
|
|
100201
|
+
sortOrder: z.ZodNumber;
|
|
100202
|
+
meta: z.ZodObject<{
|
|
100203
|
+
name: z.ZodString;
|
|
100204
|
+
description: z.ZodOptional<z.ZodString>;
|
|
100205
|
+
}, "strip", z.ZodTypeAny, {
|
|
100206
|
+
name: string;
|
|
100207
|
+
description?: string | undefined;
|
|
100208
|
+
}, {
|
|
100209
|
+
name: string;
|
|
100210
|
+
description?: string | undefined;
|
|
100211
|
+
}>;
|
|
100212
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
100213
|
+
userSlug: z.ZodOptional<z.ZodString>;
|
|
100214
|
+
shortPersistentId: z.ZodOptional<z.ZodString>;
|
|
100215
|
+
childType: z.ZodUnion<[z.ZodEnum<["Color", "Border", "Gradient", "Shadow", "Dimension", "Duration", "Size", "Space", "Opacity", "FontSize", "LineHeight", "LetterSpacing", "ParagraphSpacing", "BorderWidth", "BorderRadius", "Duration", "ZIndex", "Image", "String", "ProductCopy", "FontFamily", "FontWeight", "TextDecoration", "TextCase", "Visibility", "Typography", "Blur", "Font"]>, z.ZodEnum<["Component", "Theme", "Documentation", "DocumentationPage", "DesignSystemComponent", "ElementGroup", "FigmaNodeStructure", "FigmaNodeReference", "PageBlock"]>]>;
|
|
100216
|
+
data: z.ZodOptional<z.ZodObject<{
|
|
100217
|
+
behavior: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"Tabs" | "Group" | undefined, z.ZodTypeDef, "Tabs" | "Group" | undefined>>>, NonNullable<"Tabs" | "Group" | undefined> | undefined, "Tabs" | "Group" | null | undefined>;
|
|
100218
|
+
configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
100219
|
+
showSidebar: boolean;
|
|
100220
|
+
header: {
|
|
100221
|
+
description: string;
|
|
100222
|
+
alignment: "Center" | "Left";
|
|
100223
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
100224
|
+
showBackgroundOverlay: boolean;
|
|
100225
|
+
showCoverText: boolean;
|
|
100226
|
+
foregroundColor?: {
|
|
100227
|
+
aliasTo?: string | undefined;
|
|
100228
|
+
value?: {
|
|
100229
|
+
opacity: {
|
|
100230
|
+
aliasTo?: string | undefined;
|
|
100231
|
+
value?: {
|
|
100232
|
+
unit: "Pixels" | "Raw";
|
|
100233
|
+
measure: number;
|
|
100234
|
+
} | undefined;
|
|
100235
|
+
};
|
|
100236
|
+
color: (string | {
|
|
100237
|
+
aliasTo?: string | undefined;
|
|
100238
|
+
}) & (string | {
|
|
100239
|
+
aliasTo?: string | undefined;
|
|
100240
|
+
} | undefined);
|
|
100241
|
+
} | undefined;
|
|
100242
|
+
} | null | undefined;
|
|
100243
|
+
backgroundColor?: {
|
|
100244
|
+
aliasTo?: string | undefined;
|
|
100245
|
+
value?: {
|
|
100246
|
+
opacity: {
|
|
100247
|
+
aliasTo?: string | undefined;
|
|
100248
|
+
value?: {
|
|
100249
|
+
unit: "Pixels" | "Raw";
|
|
100250
|
+
measure: number;
|
|
100251
|
+
} | undefined;
|
|
100252
|
+
};
|
|
100253
|
+
color: (string | {
|
|
100254
|
+
aliasTo?: string | undefined;
|
|
100255
|
+
}) & (string | {
|
|
100256
|
+
aliasTo?: string | undefined;
|
|
100257
|
+
} | undefined);
|
|
100258
|
+
} | undefined;
|
|
100259
|
+
} | null | undefined;
|
|
100260
|
+
backgroundImageAsset?: {
|
|
100261
|
+
id: string;
|
|
100262
|
+
type: "image";
|
|
100263
|
+
url?: string | undefined;
|
|
100264
|
+
} | {
|
|
100265
|
+
type: "figmaFrame";
|
|
100266
|
+
figmaFrame: {
|
|
100267
|
+
persistentId: string;
|
|
100268
|
+
sourceId: string;
|
|
100269
|
+
sourceFrameId: string;
|
|
100270
|
+
title?: string | undefined;
|
|
100271
|
+
description?: string | undefined;
|
|
100272
|
+
backgroundColor?: {
|
|
100273
|
+
value: string;
|
|
100274
|
+
} | undefined;
|
|
100275
|
+
origin?: {
|
|
100276
|
+
sourceFileName?: string | undefined;
|
|
100277
|
+
title?: string | undefined;
|
|
100278
|
+
previewUrl?: string | undefined;
|
|
100279
|
+
valid?: boolean | undefined;
|
|
100280
|
+
referenceId?: string | undefined;
|
|
100281
|
+
assetId?: string | undefined;
|
|
100282
|
+
assetScale?: number | undefined;
|
|
100283
|
+
width?: number | undefined;
|
|
100284
|
+
height?: number | undefined;
|
|
100285
|
+
} | undefined;
|
|
100286
|
+
};
|
|
100287
|
+
url?: string | undefined;
|
|
100288
|
+
} | null | undefined;
|
|
100289
|
+
minHeight?: number | null | undefined;
|
|
100290
|
+
};
|
|
100291
|
+
}, z.ZodTypeDef, {
|
|
100292
|
+
showSidebar: boolean;
|
|
100293
|
+
header: {
|
|
100294
|
+
description: string;
|
|
100295
|
+
alignment: "Center" | "Left";
|
|
100296
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
100297
|
+
showBackgroundOverlay: boolean;
|
|
100298
|
+
showCoverText: boolean;
|
|
100299
|
+
foregroundColor?: {
|
|
100300
|
+
aliasTo?: string | null | undefined;
|
|
100301
|
+
value?: {
|
|
100302
|
+
opacity: {
|
|
100303
|
+
aliasTo?: string | null | undefined;
|
|
100304
|
+
value?: {
|
|
100305
|
+
unit: "Pixels" | "Raw";
|
|
100306
|
+
measure: number;
|
|
100307
|
+
} | null | undefined;
|
|
100308
|
+
};
|
|
100309
|
+
color: (string | {
|
|
100310
|
+
aliasTo?: string | null | undefined;
|
|
100311
|
+
}) & (string | {
|
|
100312
|
+
aliasTo?: string | null | undefined;
|
|
100313
|
+
} | undefined);
|
|
100314
|
+
} | null | undefined;
|
|
100315
|
+
} | null | undefined;
|
|
100316
|
+
backgroundColor?: {
|
|
100317
|
+
aliasTo?: string | null | undefined;
|
|
100318
|
+
value?: {
|
|
100319
|
+
opacity: {
|
|
100320
|
+
aliasTo?: string | null | undefined;
|
|
100321
|
+
value?: {
|
|
100322
|
+
unit: "Pixels" | "Raw";
|
|
100323
|
+
measure: number;
|
|
100324
|
+
} | null | undefined;
|
|
100325
|
+
};
|
|
100326
|
+
color: (string | {
|
|
100327
|
+
aliasTo?: string | null | undefined;
|
|
100328
|
+
}) & (string | {
|
|
100329
|
+
aliasTo?: string | null | undefined;
|
|
100330
|
+
} | undefined);
|
|
100331
|
+
} | null | undefined;
|
|
100332
|
+
} | null | undefined;
|
|
100333
|
+
backgroundImageAsset?: {
|
|
100334
|
+
id: string;
|
|
100335
|
+
type: "image";
|
|
100336
|
+
url?: string | undefined;
|
|
100337
|
+
} | {
|
|
100338
|
+
type: "figmaFrame";
|
|
100339
|
+
figmaFrame: {
|
|
100340
|
+
persistentId: string;
|
|
100341
|
+
sourceId: string;
|
|
100342
|
+
sourceFrameId: string;
|
|
100343
|
+
title?: string | null | undefined;
|
|
100344
|
+
description?: string | null | undefined;
|
|
100345
|
+
backgroundColor?: {
|
|
100346
|
+
value: string;
|
|
100347
|
+
} | null | undefined;
|
|
100348
|
+
origin?: {
|
|
100349
|
+
sourceFileName?: string | null | undefined;
|
|
100350
|
+
title?: string | null | undefined;
|
|
100351
|
+
previewUrl?: string | null | undefined;
|
|
100352
|
+
valid?: boolean | null | undefined;
|
|
100353
|
+
referenceId?: string | null | undefined;
|
|
100354
|
+
assetId?: string | null | undefined;
|
|
100355
|
+
assetScale?: number | null | undefined;
|
|
100356
|
+
width?: number | null | undefined;
|
|
100357
|
+
height?: number | null | undefined;
|
|
100358
|
+
} | null | undefined;
|
|
100359
|
+
};
|
|
100360
|
+
url?: string | undefined;
|
|
100361
|
+
} | null | undefined;
|
|
100362
|
+
minHeight?: number | null | undefined;
|
|
100363
|
+
};
|
|
100364
|
+
}>>>, {
|
|
100365
|
+
showSidebar: boolean;
|
|
100366
|
+
header: {
|
|
100367
|
+
description: string;
|
|
100368
|
+
alignment: "Center" | "Left";
|
|
100369
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
100370
|
+
showBackgroundOverlay: boolean;
|
|
100371
|
+
showCoverText: boolean;
|
|
100372
|
+
foregroundColor?: {
|
|
100373
|
+
aliasTo?: string | undefined;
|
|
100374
|
+
value?: {
|
|
100375
|
+
opacity: {
|
|
100376
|
+
aliasTo?: string | undefined;
|
|
100377
|
+
value?: {
|
|
100378
|
+
unit: "Pixels" | "Raw";
|
|
100379
|
+
measure: number;
|
|
100380
|
+
} | undefined;
|
|
100381
|
+
};
|
|
100382
|
+
color: (string | {
|
|
100383
|
+
aliasTo?: string | undefined;
|
|
100384
|
+
}) & (string | {
|
|
100385
|
+
aliasTo?: string | undefined;
|
|
100386
|
+
} | undefined);
|
|
100387
|
+
} | undefined;
|
|
100388
|
+
} | null | undefined;
|
|
100389
|
+
backgroundColor?: {
|
|
100390
|
+
aliasTo?: string | undefined;
|
|
100391
|
+
value?: {
|
|
100392
|
+
opacity: {
|
|
100393
|
+
aliasTo?: string | undefined;
|
|
100394
|
+
value?: {
|
|
100395
|
+
unit: "Pixels" | "Raw";
|
|
100396
|
+
measure: number;
|
|
100397
|
+
} | undefined;
|
|
100398
|
+
};
|
|
100399
|
+
color: (string | {
|
|
100400
|
+
aliasTo?: string | undefined;
|
|
100401
|
+
}) & (string | {
|
|
100402
|
+
aliasTo?: string | undefined;
|
|
100403
|
+
} | undefined);
|
|
100404
|
+
} | undefined;
|
|
100405
|
+
} | null | undefined;
|
|
100406
|
+
backgroundImageAsset?: {
|
|
100407
|
+
id: string;
|
|
100408
|
+
type: "image";
|
|
100409
|
+
url?: string | undefined;
|
|
100410
|
+
} | {
|
|
100411
|
+
type: "figmaFrame";
|
|
100412
|
+
figmaFrame: {
|
|
100413
|
+
persistentId: string;
|
|
100414
|
+
sourceId: string;
|
|
100415
|
+
sourceFrameId: string;
|
|
100416
|
+
title?: string | undefined;
|
|
100417
|
+
description?: string | undefined;
|
|
100418
|
+
backgroundColor?: {
|
|
100419
|
+
value: string;
|
|
100420
|
+
} | undefined;
|
|
100421
|
+
origin?: {
|
|
100422
|
+
sourceFileName?: string | undefined;
|
|
100423
|
+
title?: string | undefined;
|
|
100424
|
+
previewUrl?: string | undefined;
|
|
100425
|
+
valid?: boolean | undefined;
|
|
100426
|
+
referenceId?: string | undefined;
|
|
100427
|
+
assetId?: string | undefined;
|
|
100428
|
+
assetScale?: number | undefined;
|
|
100429
|
+
width?: number | undefined;
|
|
100430
|
+
height?: number | undefined;
|
|
100431
|
+
} | undefined;
|
|
100432
|
+
};
|
|
100433
|
+
url?: string | undefined;
|
|
100434
|
+
} | null | undefined;
|
|
100435
|
+
minHeight?: number | null | undefined;
|
|
100436
|
+
};
|
|
100437
|
+
} | undefined, {
|
|
100438
|
+
showSidebar: boolean;
|
|
100439
|
+
header: {
|
|
100440
|
+
description: string;
|
|
100441
|
+
alignment: "Center" | "Left";
|
|
100442
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
100443
|
+
showBackgroundOverlay: boolean;
|
|
100444
|
+
showCoverText: boolean;
|
|
100445
|
+
foregroundColor?: {
|
|
100446
|
+
aliasTo?: string | null | undefined;
|
|
100447
|
+
value?: {
|
|
100448
|
+
opacity: {
|
|
100449
|
+
aliasTo?: string | null | undefined;
|
|
100450
|
+
value?: {
|
|
100451
|
+
unit: "Pixels" | "Raw";
|
|
100452
|
+
measure: number;
|
|
100453
|
+
} | null | undefined;
|
|
100454
|
+
};
|
|
100455
|
+
color: (string | {
|
|
100456
|
+
aliasTo?: string | null | undefined;
|
|
100457
|
+
}) & (string | {
|
|
100458
|
+
aliasTo?: string | null | undefined;
|
|
100459
|
+
} | undefined);
|
|
100460
|
+
} | null | undefined;
|
|
100461
|
+
} | null | undefined;
|
|
100462
|
+
backgroundColor?: {
|
|
100463
|
+
aliasTo?: string | null | undefined;
|
|
100464
|
+
value?: {
|
|
100465
|
+
opacity: {
|
|
100466
|
+
aliasTo?: string | null | undefined;
|
|
100467
|
+
value?: {
|
|
100468
|
+
unit: "Pixels" | "Raw";
|
|
100469
|
+
measure: number;
|
|
100470
|
+
} | null | undefined;
|
|
100471
|
+
};
|
|
100472
|
+
color: (string | {
|
|
100473
|
+
aliasTo?: string | null | undefined;
|
|
100474
|
+
}) & (string | {
|
|
100475
|
+
aliasTo?: string | null | undefined;
|
|
100476
|
+
} | undefined);
|
|
100477
|
+
} | null | undefined;
|
|
100478
|
+
} | null | undefined;
|
|
100479
|
+
backgroundImageAsset?: {
|
|
100480
|
+
id: string;
|
|
100481
|
+
type: "image";
|
|
100482
|
+
url?: string | undefined;
|
|
100483
|
+
} | {
|
|
100484
|
+
type: "figmaFrame";
|
|
100485
|
+
figmaFrame: {
|
|
100486
|
+
persistentId: string;
|
|
100487
|
+
sourceId: string;
|
|
100488
|
+
sourceFrameId: string;
|
|
100489
|
+
title?: string | null | undefined;
|
|
100490
|
+
description?: string | null | undefined;
|
|
100491
|
+
backgroundColor?: {
|
|
100492
|
+
value: string;
|
|
100493
|
+
} | null | undefined;
|
|
100494
|
+
origin?: {
|
|
100495
|
+
sourceFileName?: string | null | undefined;
|
|
100496
|
+
title?: string | null | undefined;
|
|
100497
|
+
previewUrl?: string | null | undefined;
|
|
100498
|
+
valid?: boolean | null | undefined;
|
|
100499
|
+
referenceId?: string | null | undefined;
|
|
100500
|
+
assetId?: string | null | undefined;
|
|
100501
|
+
assetScale?: number | null | undefined;
|
|
100502
|
+
width?: number | null | undefined;
|
|
100503
|
+
height?: number | null | undefined;
|
|
100504
|
+
} | null | undefined;
|
|
100505
|
+
};
|
|
100506
|
+
url?: string | undefined;
|
|
100507
|
+
} | null | undefined;
|
|
100508
|
+
minHeight?: number | null | undefined;
|
|
100509
|
+
};
|
|
100510
|
+
} | null | undefined>;
|
|
100511
|
+
}, "strip", z.ZodTypeAny, {
|
|
100512
|
+
behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
|
|
100513
|
+
configuration?: {
|
|
100514
|
+
showSidebar: boolean;
|
|
100515
|
+
header: {
|
|
100516
|
+
description: string;
|
|
100517
|
+
alignment: "Center" | "Left";
|
|
100518
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
100519
|
+
showBackgroundOverlay: boolean;
|
|
100520
|
+
showCoverText: boolean;
|
|
100521
|
+
foregroundColor?: {
|
|
100522
|
+
aliasTo?: string | undefined;
|
|
100523
|
+
value?: {
|
|
100524
|
+
opacity: {
|
|
100525
|
+
aliasTo?: string | undefined;
|
|
100526
|
+
value?: {
|
|
100527
|
+
unit: "Pixels" | "Raw";
|
|
100528
|
+
measure: number;
|
|
100529
|
+
} | undefined;
|
|
100530
|
+
};
|
|
100531
|
+
color: (string | {
|
|
100532
|
+
aliasTo?: string | undefined;
|
|
100533
|
+
}) & (string | {
|
|
100534
|
+
aliasTo?: string | undefined;
|
|
100535
|
+
} | undefined);
|
|
100536
|
+
} | undefined;
|
|
100537
|
+
} | null | undefined;
|
|
100538
|
+
backgroundColor?: {
|
|
100539
|
+
aliasTo?: string | undefined;
|
|
100540
|
+
value?: {
|
|
100541
|
+
opacity: {
|
|
100542
|
+
aliasTo?: string | undefined;
|
|
100543
|
+
value?: {
|
|
100544
|
+
unit: "Pixels" | "Raw";
|
|
100545
|
+
measure: number;
|
|
100546
|
+
} | undefined;
|
|
100547
|
+
};
|
|
100548
|
+
color: (string | {
|
|
100549
|
+
aliasTo?: string | undefined;
|
|
100550
|
+
}) & (string | {
|
|
100551
|
+
aliasTo?: string | undefined;
|
|
100552
|
+
} | undefined);
|
|
100553
|
+
} | undefined;
|
|
100554
|
+
} | null | undefined;
|
|
100555
|
+
backgroundImageAsset?: {
|
|
100556
|
+
id: string;
|
|
100557
|
+
type: "image";
|
|
100558
|
+
url?: string | undefined;
|
|
100559
|
+
} | {
|
|
100560
|
+
type: "figmaFrame";
|
|
100561
|
+
figmaFrame: {
|
|
100562
|
+
persistentId: string;
|
|
100563
|
+
sourceId: string;
|
|
100564
|
+
sourceFrameId: string;
|
|
100565
|
+
title?: string | undefined;
|
|
100566
|
+
description?: string | undefined;
|
|
100567
|
+
backgroundColor?: {
|
|
100568
|
+
value: string;
|
|
100569
|
+
} | undefined;
|
|
100570
|
+
origin?: {
|
|
100571
|
+
sourceFileName?: string | undefined;
|
|
100572
|
+
title?: string | undefined;
|
|
100573
|
+
previewUrl?: string | undefined;
|
|
100574
|
+
valid?: boolean | undefined;
|
|
100575
|
+
referenceId?: string | undefined;
|
|
100576
|
+
assetId?: string | undefined;
|
|
100577
|
+
assetScale?: number | undefined;
|
|
100578
|
+
width?: number | undefined;
|
|
100579
|
+
height?: number | undefined;
|
|
100580
|
+
} | undefined;
|
|
100581
|
+
};
|
|
100582
|
+
url?: string | undefined;
|
|
100583
|
+
} | null | undefined;
|
|
100584
|
+
minHeight?: number | null | undefined;
|
|
100585
|
+
};
|
|
100586
|
+
} | undefined;
|
|
100587
|
+
}, {
|
|
100588
|
+
behavior?: "Tabs" | "Group" | null | undefined;
|
|
100589
|
+
configuration?: {
|
|
100590
|
+
showSidebar: boolean;
|
|
100591
|
+
header: {
|
|
100592
|
+
description: string;
|
|
100593
|
+
alignment: "Center" | "Left";
|
|
100594
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
100595
|
+
showBackgroundOverlay: boolean;
|
|
100596
|
+
showCoverText: boolean;
|
|
100597
|
+
foregroundColor?: {
|
|
100598
|
+
aliasTo?: string | null | undefined;
|
|
100599
|
+
value?: {
|
|
100600
|
+
opacity: {
|
|
100601
|
+
aliasTo?: string | null | undefined;
|
|
100602
|
+
value?: {
|
|
100603
|
+
unit: "Pixels" | "Raw";
|
|
100604
|
+
measure: number;
|
|
100605
|
+
} | null | undefined;
|
|
100606
|
+
};
|
|
100607
|
+
color: (string | {
|
|
100608
|
+
aliasTo?: string | null | undefined;
|
|
100609
|
+
}) & (string | {
|
|
100610
|
+
aliasTo?: string | null | undefined;
|
|
100611
|
+
} | undefined);
|
|
100612
|
+
} | null | undefined;
|
|
100613
|
+
} | null | undefined;
|
|
100614
|
+
backgroundColor?: {
|
|
100615
|
+
aliasTo?: string | null | undefined;
|
|
100616
|
+
value?: {
|
|
100617
|
+
opacity: {
|
|
100618
|
+
aliasTo?: string | null | undefined;
|
|
100619
|
+
value?: {
|
|
100620
|
+
unit: "Pixels" | "Raw";
|
|
100621
|
+
measure: number;
|
|
100622
|
+
} | null | undefined;
|
|
100623
|
+
};
|
|
100624
|
+
color: (string | {
|
|
100625
|
+
aliasTo?: string | null | undefined;
|
|
100626
|
+
}) & (string | {
|
|
100627
|
+
aliasTo?: string | null | undefined;
|
|
100628
|
+
} | undefined);
|
|
100629
|
+
} | null | undefined;
|
|
100630
|
+
} | null | undefined;
|
|
100631
|
+
backgroundImageAsset?: {
|
|
100632
|
+
id: string;
|
|
100633
|
+
type: "image";
|
|
100634
|
+
url?: string | undefined;
|
|
100635
|
+
} | {
|
|
100636
|
+
type: "figmaFrame";
|
|
100637
|
+
figmaFrame: {
|
|
100638
|
+
persistentId: string;
|
|
100639
|
+
sourceId: string;
|
|
100640
|
+
sourceFrameId: string;
|
|
100641
|
+
title?: string | null | undefined;
|
|
100642
|
+
description?: string | null | undefined;
|
|
100643
|
+
backgroundColor?: {
|
|
100644
|
+
value: string;
|
|
100645
|
+
} | null | undefined;
|
|
100646
|
+
origin?: {
|
|
100647
|
+
sourceFileName?: string | null | undefined;
|
|
100648
|
+
title?: string | null | undefined;
|
|
100649
|
+
previewUrl?: string | null | undefined;
|
|
100650
|
+
valid?: boolean | null | undefined;
|
|
100651
|
+
referenceId?: string | null | undefined;
|
|
100652
|
+
assetId?: string | null | undefined;
|
|
100653
|
+
assetScale?: number | null | undefined;
|
|
100654
|
+
width?: number | null | undefined;
|
|
100655
|
+
height?: number | null | undefined;
|
|
100656
|
+
} | null | undefined;
|
|
100657
|
+
};
|
|
100658
|
+
url?: string | undefined;
|
|
100659
|
+
} | null | undefined;
|
|
100660
|
+
minHeight?: number | null | undefined;
|
|
100661
|
+
};
|
|
100662
|
+
} | null | undefined;
|
|
100663
|
+
}>>;
|
|
100664
|
+
}, "strip", z.ZodTypeAny, {
|
|
100665
|
+
id: string;
|
|
100666
|
+
createdAt: Date;
|
|
100667
|
+
updatedAt: Date;
|
|
100668
|
+
persistentId: string;
|
|
100669
|
+
designSystemVersionId: string;
|
|
100670
|
+
childType: "Image" | "Font" | "Documentation" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Component" | "Theme" | "DocumentationPage" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock";
|
|
100671
|
+
sortOrder: number;
|
|
100672
|
+
meta: {
|
|
100673
|
+
name: string;
|
|
100674
|
+
description?: string | undefined;
|
|
100675
|
+
};
|
|
100676
|
+
brandPersistentId?: string | undefined;
|
|
100677
|
+
parentPersistentId?: string | undefined;
|
|
100678
|
+
slug?: string | undefined;
|
|
100679
|
+
userSlug?: string | undefined;
|
|
100680
|
+
shortPersistentId?: string | undefined;
|
|
100681
|
+
data?: {
|
|
100682
|
+
behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
|
|
100683
|
+
configuration?: {
|
|
100684
|
+
showSidebar: boolean;
|
|
100685
|
+
header: {
|
|
100686
|
+
description: string;
|
|
100687
|
+
alignment: "Center" | "Left";
|
|
100688
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
100689
|
+
showBackgroundOverlay: boolean;
|
|
100690
|
+
showCoverText: boolean;
|
|
100691
|
+
foregroundColor?: {
|
|
100692
|
+
aliasTo?: string | undefined;
|
|
100693
|
+
value?: {
|
|
100694
|
+
opacity: {
|
|
100695
|
+
aliasTo?: string | undefined;
|
|
100696
|
+
value?: {
|
|
100697
|
+
unit: "Pixels" | "Raw";
|
|
100698
|
+
measure: number;
|
|
100699
|
+
} | undefined;
|
|
100700
|
+
};
|
|
100701
|
+
color: (string | {
|
|
100702
|
+
aliasTo?: string | undefined;
|
|
100703
|
+
}) & (string | {
|
|
100704
|
+
aliasTo?: string | undefined;
|
|
100705
|
+
} | undefined);
|
|
100706
|
+
} | undefined;
|
|
100707
|
+
} | null | undefined;
|
|
100708
|
+
backgroundColor?: {
|
|
100709
|
+
aliasTo?: string | undefined;
|
|
100710
|
+
value?: {
|
|
100711
|
+
opacity: {
|
|
100712
|
+
aliasTo?: string | undefined;
|
|
100713
|
+
value?: {
|
|
100714
|
+
unit: "Pixels" | "Raw";
|
|
100715
|
+
measure: number;
|
|
100716
|
+
} | undefined;
|
|
100717
|
+
};
|
|
100718
|
+
color: (string | {
|
|
100719
|
+
aliasTo?: string | undefined;
|
|
100720
|
+
}) & (string | {
|
|
100721
|
+
aliasTo?: string | undefined;
|
|
100722
|
+
} | undefined);
|
|
100723
|
+
} | undefined;
|
|
100724
|
+
} | null | undefined;
|
|
100725
|
+
backgroundImageAsset?: {
|
|
100726
|
+
id: string;
|
|
100727
|
+
type: "image";
|
|
100728
|
+
url?: string | undefined;
|
|
100729
|
+
} | {
|
|
100730
|
+
type: "figmaFrame";
|
|
100731
|
+
figmaFrame: {
|
|
100732
|
+
persistentId: string;
|
|
100733
|
+
sourceId: string;
|
|
100734
|
+
sourceFrameId: string;
|
|
100735
|
+
title?: string | undefined;
|
|
100736
|
+
description?: string | undefined;
|
|
100737
|
+
backgroundColor?: {
|
|
100738
|
+
value: string;
|
|
100739
|
+
} | undefined;
|
|
100740
|
+
origin?: {
|
|
100741
|
+
sourceFileName?: string | undefined;
|
|
100742
|
+
title?: string | undefined;
|
|
100743
|
+
previewUrl?: string | undefined;
|
|
100744
|
+
valid?: boolean | undefined;
|
|
100745
|
+
referenceId?: string | undefined;
|
|
100746
|
+
assetId?: string | undefined;
|
|
100747
|
+
assetScale?: number | undefined;
|
|
100748
|
+
width?: number | undefined;
|
|
100749
|
+
height?: number | undefined;
|
|
100750
|
+
} | undefined;
|
|
100751
|
+
};
|
|
100752
|
+
url?: string | undefined;
|
|
100753
|
+
} | null | undefined;
|
|
100754
|
+
minHeight?: number | null | undefined;
|
|
100755
|
+
};
|
|
100756
|
+
} | undefined;
|
|
100757
|
+
} | undefined;
|
|
100758
|
+
}, {
|
|
100759
|
+
id: string;
|
|
100760
|
+
createdAt: Date;
|
|
100761
|
+
updatedAt: Date;
|
|
100762
|
+
persistentId: string;
|
|
100763
|
+
designSystemVersionId: string;
|
|
100764
|
+
childType: "Image" | "Font" | "Documentation" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Component" | "Theme" | "DocumentationPage" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock";
|
|
100765
|
+
sortOrder: number;
|
|
100766
|
+
meta: {
|
|
100767
|
+
name: string;
|
|
100768
|
+
description?: string | undefined;
|
|
100769
|
+
};
|
|
100770
|
+
brandPersistentId?: string | undefined;
|
|
100771
|
+
parentPersistentId?: string | undefined;
|
|
100772
|
+
slug?: string | undefined;
|
|
100773
|
+
userSlug?: string | undefined;
|
|
100774
|
+
shortPersistentId?: string | undefined;
|
|
100775
|
+
data?: {
|
|
100776
|
+
behavior?: "Tabs" | "Group" | null | undefined;
|
|
100777
|
+
configuration?: {
|
|
100778
|
+
showSidebar: boolean;
|
|
100779
|
+
header: {
|
|
100780
|
+
description: string;
|
|
100781
|
+
alignment: "Center" | "Left";
|
|
100782
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
100783
|
+
showBackgroundOverlay: boolean;
|
|
100784
|
+
showCoverText: boolean;
|
|
100785
|
+
foregroundColor?: {
|
|
100786
|
+
aliasTo?: string | null | undefined;
|
|
100787
|
+
value?: {
|
|
100788
|
+
opacity: {
|
|
100789
|
+
aliasTo?: string | null | undefined;
|
|
100790
|
+
value?: {
|
|
100791
|
+
unit: "Pixels" | "Raw";
|
|
100792
|
+
measure: number;
|
|
100793
|
+
} | null | undefined;
|
|
100794
|
+
};
|
|
100795
|
+
color: (string | {
|
|
100796
|
+
aliasTo?: string | null | undefined;
|
|
100797
|
+
}) & (string | {
|
|
100798
|
+
aliasTo?: string | null | undefined;
|
|
100799
|
+
} | undefined);
|
|
100800
|
+
} | null | undefined;
|
|
100801
|
+
} | null | undefined;
|
|
100802
|
+
backgroundColor?: {
|
|
100803
|
+
aliasTo?: string | null | undefined;
|
|
100804
|
+
value?: {
|
|
100805
|
+
opacity: {
|
|
100806
|
+
aliasTo?: string | null | undefined;
|
|
100807
|
+
value?: {
|
|
100808
|
+
unit: "Pixels" | "Raw";
|
|
100809
|
+
measure: number;
|
|
100810
|
+
} | null | undefined;
|
|
100811
|
+
};
|
|
100812
|
+
color: (string | {
|
|
100813
|
+
aliasTo?: string | null | undefined;
|
|
100814
|
+
}) & (string | {
|
|
100815
|
+
aliasTo?: string | null | undefined;
|
|
100816
|
+
} | undefined);
|
|
100817
|
+
} | null | undefined;
|
|
100818
|
+
} | null | undefined;
|
|
100819
|
+
backgroundImageAsset?: {
|
|
100820
|
+
id: string;
|
|
100821
|
+
type: "image";
|
|
100822
|
+
url?: string | undefined;
|
|
100823
|
+
} | {
|
|
100824
|
+
type: "figmaFrame";
|
|
100825
|
+
figmaFrame: {
|
|
100826
|
+
persistentId: string;
|
|
100827
|
+
sourceId: string;
|
|
100828
|
+
sourceFrameId: string;
|
|
100829
|
+
title?: string | null | undefined;
|
|
100830
|
+
description?: string | null | undefined;
|
|
100831
|
+
backgroundColor?: {
|
|
100832
|
+
value: string;
|
|
100833
|
+
} | null | undefined;
|
|
100834
|
+
origin?: {
|
|
100835
|
+
sourceFileName?: string | null | undefined;
|
|
100836
|
+
title?: string | null | undefined;
|
|
100837
|
+
previewUrl?: string | null | undefined;
|
|
100838
|
+
valid?: boolean | null | undefined;
|
|
100839
|
+
referenceId?: string | null | undefined;
|
|
100840
|
+
assetId?: string | null | undefined;
|
|
100841
|
+
assetScale?: number | null | undefined;
|
|
100842
|
+
width?: number | null | undefined;
|
|
100843
|
+
height?: number | null | undefined;
|
|
100844
|
+
} | null | undefined;
|
|
100845
|
+
};
|
|
100846
|
+
url?: string | undefined;
|
|
100847
|
+
} | null | undefined;
|
|
100848
|
+
minHeight?: number | null | undefined;
|
|
100849
|
+
};
|
|
100850
|
+
} | null | undefined;
|
|
100851
|
+
} | undefined;
|
|
100852
|
+
}>;
|
|
100853
|
+
pageBlocks: z.ZodArray<z.ZodObject<{
|
|
100854
|
+
id: z.ZodString;
|
|
100855
|
+
data: z.ZodObject<{
|
|
100856
|
+
packageId: z.ZodString;
|
|
100857
|
+
variantId: z.ZodOptional<z.ZodString>;
|
|
100858
|
+
indentLevel: z.ZodNumber;
|
|
100859
|
+
appearance: z.ZodOptional<z.ZodObject<{
|
|
100860
|
+
itemBackgroundColor: z.ZodOptional<z.ZodObject<{
|
|
100861
|
+
value: z.ZodString;
|
|
100862
|
+
referencedTokenId: z.ZodOptional<z.ZodString>;
|
|
100863
|
+
}, "strip", z.ZodTypeAny, {
|
|
100864
|
+
value: string;
|
|
100865
|
+
referencedTokenId?: string | undefined;
|
|
100866
|
+
}, {
|
|
100867
|
+
value: string;
|
|
100868
|
+
referencedTokenId?: string | undefined;
|
|
100869
|
+
}>>;
|
|
100870
|
+
numberOfColumns: z.ZodOptional<z.ZodNumber>;
|
|
100871
|
+
}, "strip", z.ZodTypeAny, {
|
|
100872
|
+
itemBackgroundColor?: {
|
|
100873
|
+
value: string;
|
|
100874
|
+
referencedTokenId?: string | undefined;
|
|
100875
|
+
} | undefined;
|
|
100876
|
+
numberOfColumns?: number | undefined;
|
|
100877
|
+
}, {
|
|
100878
|
+
itemBackgroundColor?: {
|
|
100879
|
+
value: string;
|
|
100880
|
+
referencedTokenId?: string | undefined;
|
|
100881
|
+
} | undefined;
|
|
100882
|
+
numberOfColumns?: number | undefined;
|
|
100883
|
+
}>>;
|
|
100884
|
+
items: z.ZodArray<z.ZodObject<{
|
|
100885
|
+
id: z.ZodString;
|
|
100886
|
+
linksTo: z.ZodOptional<z.ZodObject<{
|
|
100887
|
+
type: z.ZodEnum<["DocumentationItem", "PageHeading", "Url"]>;
|
|
100888
|
+
documentationItemId: z.ZodOptional<z.ZodString>;
|
|
100889
|
+
pageHeadingId: z.ZodOptional<z.ZodString>;
|
|
100890
|
+
url: z.ZodOptional<z.ZodString>;
|
|
100891
|
+
openInNewTab: z.ZodOptional<z.ZodBoolean>;
|
|
100892
|
+
}, "strip", z.ZodTypeAny, {
|
|
100893
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
100894
|
+
documentationItemId?: string | undefined;
|
|
100895
|
+
pageHeadingId?: string | undefined;
|
|
100896
|
+
url?: string | undefined;
|
|
100897
|
+
openInNewTab?: boolean | undefined;
|
|
100898
|
+
}, {
|
|
100899
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
100900
|
+
documentationItemId?: string | undefined;
|
|
100901
|
+
pageHeadingId?: string | undefined;
|
|
100902
|
+
url?: string | undefined;
|
|
100903
|
+
openInNewTab?: boolean | undefined;
|
|
100904
|
+
}>>;
|
|
100905
|
+
props: z.ZodRecord<z.ZodString, z.ZodIntersection<z.ZodObject<{
|
|
100906
|
+
value: z.ZodAny;
|
|
100907
|
+
}, "strip", z.ZodTypeAny, {
|
|
100908
|
+
value?: any;
|
|
100909
|
+
}, {
|
|
100910
|
+
value?: any;
|
|
100911
|
+
}>, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
100912
|
+
}, "strip", z.ZodTypeAny, {
|
|
100913
|
+
id: string;
|
|
100914
|
+
props: Record<string, {
|
|
100915
|
+
value?: any;
|
|
100916
|
+
} & Record<string, any>>;
|
|
100917
|
+
linksTo?: {
|
|
100918
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
100919
|
+
documentationItemId?: string | undefined;
|
|
100920
|
+
pageHeadingId?: string | undefined;
|
|
100921
|
+
url?: string | undefined;
|
|
100922
|
+
openInNewTab?: boolean | undefined;
|
|
100923
|
+
} | undefined;
|
|
100924
|
+
}, {
|
|
100925
|
+
id: string;
|
|
100926
|
+
props: Record<string, {
|
|
100927
|
+
value?: any;
|
|
100928
|
+
} & Record<string, any>>;
|
|
100929
|
+
linksTo?: {
|
|
100930
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
100931
|
+
documentationItemId?: string | undefined;
|
|
100932
|
+
pageHeadingId?: string | undefined;
|
|
100933
|
+
url?: string | undefined;
|
|
100934
|
+
openInNewTab?: boolean | undefined;
|
|
100935
|
+
} | undefined;
|
|
100936
|
+
}>, "many">;
|
|
100937
|
+
}, "strip", z.ZodTypeAny, {
|
|
100938
|
+
items: {
|
|
100939
|
+
id: string;
|
|
100940
|
+
props: Record<string, {
|
|
100941
|
+
value?: any;
|
|
100942
|
+
} & Record<string, any>>;
|
|
100943
|
+
linksTo?: {
|
|
100944
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
100945
|
+
documentationItemId?: string | undefined;
|
|
100946
|
+
pageHeadingId?: string | undefined;
|
|
100947
|
+
url?: string | undefined;
|
|
100948
|
+
openInNewTab?: boolean | undefined;
|
|
100949
|
+
} | undefined;
|
|
100950
|
+
}[];
|
|
100951
|
+
packageId: string;
|
|
100952
|
+
indentLevel: number;
|
|
100953
|
+
variantId?: string | undefined;
|
|
100954
|
+
appearance?: {
|
|
100955
|
+
itemBackgroundColor?: {
|
|
100956
|
+
value: string;
|
|
100957
|
+
referencedTokenId?: string | undefined;
|
|
100958
|
+
} | undefined;
|
|
100959
|
+
numberOfColumns?: number | undefined;
|
|
100960
|
+
} | undefined;
|
|
100961
|
+
}, {
|
|
100962
|
+
items: {
|
|
100963
|
+
id: string;
|
|
100964
|
+
props: Record<string, {
|
|
100965
|
+
value?: any;
|
|
100966
|
+
} & Record<string, any>>;
|
|
100967
|
+
linksTo?: {
|
|
100968
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
100969
|
+
documentationItemId?: string | undefined;
|
|
100970
|
+
pageHeadingId?: string | undefined;
|
|
100971
|
+
url?: string | undefined;
|
|
100972
|
+
openInNewTab?: boolean | undefined;
|
|
100973
|
+
} | undefined;
|
|
100974
|
+
}[];
|
|
100975
|
+
packageId: string;
|
|
100976
|
+
indentLevel: number;
|
|
100977
|
+
variantId?: string | undefined;
|
|
100978
|
+
appearance?: {
|
|
100979
|
+
itemBackgroundColor?: {
|
|
100980
|
+
value: string;
|
|
100981
|
+
referencedTokenId?: string | undefined;
|
|
100982
|
+
} | undefined;
|
|
100983
|
+
numberOfColumns?: number | undefined;
|
|
100984
|
+
} | undefined;
|
|
100985
|
+
}>;
|
|
100986
|
+
}, "strip", z.ZodTypeAny, {
|
|
100987
|
+
id: string;
|
|
100988
|
+
data: {
|
|
100989
|
+
items: {
|
|
100990
|
+
id: string;
|
|
100991
|
+
props: Record<string, {
|
|
100992
|
+
value?: any;
|
|
100993
|
+
} & Record<string, any>>;
|
|
100994
|
+
linksTo?: {
|
|
100995
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
100996
|
+
documentationItemId?: string | undefined;
|
|
100997
|
+
pageHeadingId?: string | undefined;
|
|
100998
|
+
url?: string | undefined;
|
|
100999
|
+
openInNewTab?: boolean | undefined;
|
|
101000
|
+
} | undefined;
|
|
101001
|
+
}[];
|
|
101002
|
+
packageId: string;
|
|
101003
|
+
indentLevel: number;
|
|
101004
|
+
variantId?: string | undefined;
|
|
101005
|
+
appearance?: {
|
|
101006
|
+
itemBackgroundColor?: {
|
|
101007
|
+
value: string;
|
|
101008
|
+
referencedTokenId?: string | undefined;
|
|
101009
|
+
} | undefined;
|
|
101010
|
+
numberOfColumns?: number | undefined;
|
|
101011
|
+
} | undefined;
|
|
101012
|
+
};
|
|
101013
|
+
}, {
|
|
101014
|
+
id: string;
|
|
101015
|
+
data: {
|
|
101016
|
+
items: {
|
|
101017
|
+
id: string;
|
|
101018
|
+
props: Record<string, {
|
|
101019
|
+
value?: any;
|
|
101020
|
+
} & Record<string, any>>;
|
|
101021
|
+
linksTo?: {
|
|
101022
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
101023
|
+
documentationItemId?: string | undefined;
|
|
101024
|
+
pageHeadingId?: string | undefined;
|
|
101025
|
+
url?: string | undefined;
|
|
101026
|
+
openInNewTab?: boolean | undefined;
|
|
101027
|
+
} | undefined;
|
|
101028
|
+
}[];
|
|
101029
|
+
packageId: string;
|
|
101030
|
+
indentLevel: number;
|
|
101031
|
+
variantId?: string | undefined;
|
|
101032
|
+
appearance?: {
|
|
101033
|
+
itemBackgroundColor?: {
|
|
101034
|
+
value: string;
|
|
101035
|
+
referencedTokenId?: string | undefined;
|
|
101036
|
+
} | undefined;
|
|
101037
|
+
numberOfColumns?: number | undefined;
|
|
101038
|
+
} | undefined;
|
|
101039
|
+
};
|
|
101040
|
+
}>, "many">;
|
|
101041
|
+
blockDefinitions: z.ZodArray<z.ZodObject<{
|
|
101042
|
+
id: z.ZodString;
|
|
101043
|
+
name: z.ZodString;
|
|
101044
|
+
description: z.ZodString;
|
|
101045
|
+
category: z.ZodEnum<["Text", "Layout", "Media", "Embed", "Figma", "Code", "Guidelines", "Tokens", "Components", "Assets", "Data", "Other"]>;
|
|
101046
|
+
icon: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
|
|
101047
|
+
documentationLink: z.ZodOptional<z.ZodString>;
|
|
101048
|
+
searchKeywords: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
101049
|
+
item: z.ZodObject<{
|
|
101050
|
+
properties: z.ZodArray<z.ZodObject<{
|
|
101051
|
+
id: z.ZodString;
|
|
101052
|
+
name: z.ZodString;
|
|
101053
|
+
type: z.ZodEnum<["RichText", "MultiRichText", "Text", "Boolean", "Number", "SingleSelect", "MultiSelect", "Image", "Token", "TokenType", "TokenProperty", "Component", "ComponentProperty", "Asset", "AssetProperty", "FigmaNode", "EmbedURL", "URL", "Markdown", "Code", "CodeSandbox", "Table", "Divider", "Storybook", "Color"]>;
|
|
101054
|
+
description: z.ZodOptional<z.ZodString>;
|
|
101055
|
+
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
101056
|
+
variantOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
101057
|
+
}, "strip", z.ZodTypeAny, {
|
|
101058
|
+
id: string;
|
|
101059
|
+
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "Asset" | "FigmaNode" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
101060
|
+
name: string;
|
|
101061
|
+
description?: string | undefined;
|
|
101062
|
+
options?: Record<string, any> | undefined;
|
|
101063
|
+
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
101064
|
+
}, {
|
|
101065
|
+
id: string;
|
|
101066
|
+
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "Asset" | "FigmaNode" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
101067
|
+
name: string;
|
|
101068
|
+
description?: string | undefined;
|
|
101069
|
+
options?: Record<string, any> | undefined;
|
|
101070
|
+
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
101071
|
+
}>, "many">;
|
|
101072
|
+
appearance: z.ZodOptional<z.ZodObject<{
|
|
101073
|
+
isBordered: z.ZodOptional<z.ZodBoolean>;
|
|
101074
|
+
hasBackground: z.ZodOptional<z.ZodBoolean>;
|
|
101075
|
+
isEditorPresentationDifferent: z.ZodOptional<z.ZodBoolean>;
|
|
101076
|
+
}, "strip", z.ZodTypeAny, {
|
|
101077
|
+
isBordered?: boolean | undefined;
|
|
101078
|
+
hasBackground?: boolean | undefined;
|
|
101079
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
101080
|
+
}, {
|
|
101081
|
+
isBordered?: boolean | undefined;
|
|
101082
|
+
hasBackground?: boolean | undefined;
|
|
101083
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
101084
|
+
}>>;
|
|
101085
|
+
variants: z.ZodArray<z.ZodObject<{
|
|
101086
|
+
id: z.ZodString;
|
|
101087
|
+
name: z.ZodString;
|
|
101088
|
+
image: z.ZodOptional<z.ZodString>;
|
|
101089
|
+
description: z.ZodOptional<z.ZodString>;
|
|
101090
|
+
documentationLink: z.ZodOptional<z.ZodString>;
|
|
101091
|
+
layout: z.ZodType<PageBlockDefinitionLayout, z.ZodTypeDef, PageBlockDefinitionLayout>;
|
|
101092
|
+
maxColumns: z.ZodOptional<z.ZodNumber>;
|
|
101093
|
+
defaultColumns: z.ZodOptional<z.ZodNumber>;
|
|
101094
|
+
appearance: z.ZodOptional<z.ZodObject<{
|
|
101095
|
+
isBordered: z.ZodOptional<z.ZodBoolean>;
|
|
101096
|
+
hasBackground: z.ZodOptional<z.ZodBoolean>;
|
|
101097
|
+
isEditorPresentationDifferent: z.ZodOptional<z.ZodBoolean>;
|
|
101098
|
+
}, "strip", z.ZodTypeAny, {
|
|
101099
|
+
isBordered?: boolean | undefined;
|
|
101100
|
+
hasBackground?: boolean | undefined;
|
|
101101
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
101102
|
+
}, {
|
|
101103
|
+
isBordered?: boolean | undefined;
|
|
101104
|
+
hasBackground?: boolean | undefined;
|
|
101105
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
101106
|
+
}>>;
|
|
101107
|
+
}, "strip", z.ZodTypeAny, {
|
|
101108
|
+
id: string;
|
|
101109
|
+
name: string;
|
|
101110
|
+
layout: {
|
|
101111
|
+
type: "Column" | "Row";
|
|
101112
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
101113
|
+
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
101114
|
+
columnResizing?: "Fill" | "Hug" | undefined;
|
|
101115
|
+
} & {
|
|
101116
|
+
children: (string | PageBlockDefinitionLayout)[];
|
|
101117
|
+
};
|
|
101118
|
+
image?: string | undefined;
|
|
101119
|
+
description?: string | undefined;
|
|
101120
|
+
documentationLink?: string | undefined;
|
|
101121
|
+
maxColumns?: number | undefined;
|
|
101122
|
+
defaultColumns?: number | undefined;
|
|
101123
|
+
appearance?: {
|
|
101124
|
+
isBordered?: boolean | undefined;
|
|
101125
|
+
hasBackground?: boolean | undefined;
|
|
101126
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
101127
|
+
} | undefined;
|
|
101128
|
+
}, {
|
|
101129
|
+
id: string;
|
|
101130
|
+
name: string;
|
|
101131
|
+
layout: {
|
|
101132
|
+
type: "Column" | "Row";
|
|
101133
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
101134
|
+
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
101135
|
+
columnResizing?: "Fill" | "Hug" | undefined;
|
|
101136
|
+
} & {
|
|
101137
|
+
children: (string | PageBlockDefinitionLayout)[];
|
|
101138
|
+
};
|
|
101139
|
+
image?: string | undefined;
|
|
101140
|
+
description?: string | undefined;
|
|
101141
|
+
documentationLink?: string | undefined;
|
|
101142
|
+
maxColumns?: number | undefined;
|
|
101143
|
+
defaultColumns?: number | undefined;
|
|
101144
|
+
appearance?: {
|
|
101145
|
+
isBordered?: boolean | undefined;
|
|
101146
|
+
hasBackground?: boolean | undefined;
|
|
101147
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
101148
|
+
} | undefined;
|
|
101149
|
+
}>, "many">;
|
|
101150
|
+
defaultVariantKey: z.ZodString;
|
|
101151
|
+
}, "strip", z.ZodTypeAny, {
|
|
101152
|
+
properties: {
|
|
101153
|
+
id: string;
|
|
101154
|
+
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "Asset" | "FigmaNode" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
101155
|
+
name: string;
|
|
101156
|
+
description?: string | undefined;
|
|
101157
|
+
options?: Record<string, any> | undefined;
|
|
101158
|
+
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
101159
|
+
}[];
|
|
101160
|
+
variants: {
|
|
101161
|
+
id: string;
|
|
101162
|
+
name: string;
|
|
101163
|
+
layout: {
|
|
101164
|
+
type: "Column" | "Row";
|
|
101165
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
101166
|
+
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
101167
|
+
columnResizing?: "Fill" | "Hug" | undefined;
|
|
101168
|
+
} & {
|
|
101169
|
+
children: (string | PageBlockDefinitionLayout)[];
|
|
101170
|
+
};
|
|
101171
|
+
image?: string | undefined;
|
|
101172
|
+
description?: string | undefined;
|
|
101173
|
+
documentationLink?: string | undefined;
|
|
101174
|
+
maxColumns?: number | undefined;
|
|
101175
|
+
defaultColumns?: number | undefined;
|
|
101176
|
+
appearance?: {
|
|
101177
|
+
isBordered?: boolean | undefined;
|
|
101178
|
+
hasBackground?: boolean | undefined;
|
|
101179
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
101180
|
+
} | undefined;
|
|
101181
|
+
}[];
|
|
101182
|
+
defaultVariantKey: string;
|
|
101183
|
+
appearance?: {
|
|
101184
|
+
isBordered?: boolean | undefined;
|
|
101185
|
+
hasBackground?: boolean | undefined;
|
|
101186
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
101187
|
+
} | undefined;
|
|
101188
|
+
}, {
|
|
101189
|
+
properties: {
|
|
101190
|
+
id: string;
|
|
101191
|
+
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "Asset" | "FigmaNode" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
101192
|
+
name: string;
|
|
101193
|
+
description?: string | undefined;
|
|
101194
|
+
options?: Record<string, any> | undefined;
|
|
101195
|
+
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
101196
|
+
}[];
|
|
101197
|
+
variants: {
|
|
101198
|
+
id: string;
|
|
101199
|
+
name: string;
|
|
101200
|
+
layout: {
|
|
101201
|
+
type: "Column" | "Row";
|
|
101202
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
101203
|
+
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
101204
|
+
columnResizing?: "Fill" | "Hug" | undefined;
|
|
101205
|
+
} & {
|
|
101206
|
+
children: (string | PageBlockDefinitionLayout)[];
|
|
101207
|
+
};
|
|
101208
|
+
image?: string | undefined;
|
|
101209
|
+
description?: string | undefined;
|
|
101210
|
+
documentationLink?: string | undefined;
|
|
101211
|
+
maxColumns?: number | undefined;
|
|
101212
|
+
defaultColumns?: number | undefined;
|
|
101213
|
+
appearance?: {
|
|
101214
|
+
isBordered?: boolean | undefined;
|
|
101215
|
+
hasBackground?: boolean | undefined;
|
|
101216
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
101217
|
+
} | undefined;
|
|
101218
|
+
}[];
|
|
101219
|
+
defaultVariantKey: string;
|
|
101220
|
+
appearance?: {
|
|
101221
|
+
isBordered?: boolean | undefined;
|
|
101222
|
+
hasBackground?: boolean | undefined;
|
|
101223
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
101224
|
+
} | undefined;
|
|
101225
|
+
}>;
|
|
101226
|
+
behavior: z.ZodObject<{
|
|
101227
|
+
dataType: z.ZodEnum<["Item", "Token", "Asset", "Component", "FigmaNode"]>;
|
|
101228
|
+
items: z.ZodOptional<z.ZodObject<{
|
|
101229
|
+
numberOfItems: z.ZodNumber;
|
|
101230
|
+
allowLinks: z.ZodBoolean;
|
|
101231
|
+
}, "strip", z.ZodTypeAny, {
|
|
101232
|
+
numberOfItems: number;
|
|
101233
|
+
allowLinks: boolean;
|
|
101234
|
+
}, {
|
|
101235
|
+
numberOfItems: number;
|
|
101236
|
+
allowLinks: boolean;
|
|
101237
|
+
}>>;
|
|
101238
|
+
entities: z.ZodOptional<z.ZodObject<{
|
|
101239
|
+
selectionType: z.ZodEnum<["Entity", "Group", "EntityAndGroup"]>;
|
|
101240
|
+
maxSelected: z.ZodNumber;
|
|
101241
|
+
}, "strip", z.ZodTypeAny, {
|
|
101242
|
+
selectionType: "Group" | "Entity" | "EntityAndGroup";
|
|
101243
|
+
maxSelected: number;
|
|
101244
|
+
}, {
|
|
101245
|
+
selectionType: "Group" | "Entity" | "EntityAndGroup";
|
|
101246
|
+
maxSelected: number;
|
|
101247
|
+
}>>;
|
|
101248
|
+
}, "strip", z.ZodTypeAny, {
|
|
101249
|
+
dataType: "Component" | "Token" | "Asset" | "FigmaNode" | "Item";
|
|
101250
|
+
items?: {
|
|
101251
|
+
numberOfItems: number;
|
|
101252
|
+
allowLinks: boolean;
|
|
101253
|
+
} | undefined;
|
|
101254
|
+
entities?: {
|
|
101255
|
+
selectionType: "Group" | "Entity" | "EntityAndGroup";
|
|
101256
|
+
maxSelected: number;
|
|
101257
|
+
} | undefined;
|
|
101258
|
+
}, {
|
|
101259
|
+
dataType: "Component" | "Token" | "Asset" | "FigmaNode" | "Item";
|
|
101260
|
+
items?: {
|
|
101261
|
+
numberOfItems: number;
|
|
101262
|
+
allowLinks: boolean;
|
|
101263
|
+
} | undefined;
|
|
101264
|
+
entities?: {
|
|
101265
|
+
selectionType: "Group" | "Entity" | "EntityAndGroup";
|
|
101266
|
+
maxSelected: number;
|
|
101267
|
+
} | undefined;
|
|
101268
|
+
}>;
|
|
101269
|
+
editorOptions: z.ZodObject<{
|
|
101270
|
+
onboarding: z.ZodOptional<z.ZodObject<{
|
|
101271
|
+
helpText: z.ZodString;
|
|
101272
|
+
documentationLink: z.ZodOptional<z.ZodString>;
|
|
101273
|
+
}, "strip", z.ZodTypeAny, {
|
|
101274
|
+
helpText: string;
|
|
101275
|
+
documentationLink?: string | undefined;
|
|
101276
|
+
}, {
|
|
101277
|
+
helpText: string;
|
|
101278
|
+
documentationLink?: string | undefined;
|
|
101279
|
+
}>>;
|
|
101280
|
+
}, "strip", z.ZodTypeAny, {
|
|
101281
|
+
onboarding?: {
|
|
101282
|
+
helpText: string;
|
|
101283
|
+
documentationLink?: string | undefined;
|
|
101284
|
+
} | undefined;
|
|
101285
|
+
}, {
|
|
101286
|
+
onboarding?: {
|
|
101287
|
+
helpText: string;
|
|
101288
|
+
documentationLink?: string | undefined;
|
|
101289
|
+
} | undefined;
|
|
101290
|
+
}>;
|
|
101291
|
+
appearance: z.ZodOptional<z.ZodObject<{
|
|
101292
|
+
isBordered: z.ZodOptional<z.ZodBoolean>;
|
|
101293
|
+
hasBackground: z.ZodOptional<z.ZodBoolean>;
|
|
101294
|
+
isEditorPresentationDifferent: z.ZodOptional<z.ZodBoolean>;
|
|
101295
|
+
}, "strip", z.ZodTypeAny, {
|
|
101296
|
+
isBordered?: boolean | undefined;
|
|
101297
|
+
hasBackground?: boolean | undefined;
|
|
101298
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
101299
|
+
}, {
|
|
101300
|
+
isBordered?: boolean | undefined;
|
|
101301
|
+
hasBackground?: boolean | undefined;
|
|
101302
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
101303
|
+
}>>;
|
|
101304
|
+
}, "strip", z.ZodTypeAny, {
|
|
101305
|
+
id: string;
|
|
101306
|
+
name: string;
|
|
101307
|
+
description: string;
|
|
101308
|
+
item: {
|
|
101309
|
+
properties: {
|
|
101310
|
+
id: string;
|
|
101311
|
+
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "Asset" | "FigmaNode" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
101312
|
+
name: string;
|
|
101313
|
+
description?: string | undefined;
|
|
101314
|
+
options?: Record<string, any> | undefined;
|
|
101315
|
+
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
101316
|
+
}[];
|
|
101317
|
+
variants: {
|
|
101318
|
+
id: string;
|
|
101319
|
+
name: string;
|
|
101320
|
+
layout: {
|
|
101321
|
+
type: "Column" | "Row";
|
|
101322
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
101323
|
+
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
101324
|
+
columnResizing?: "Fill" | "Hug" | undefined;
|
|
101325
|
+
} & {
|
|
101326
|
+
children: (string | PageBlockDefinitionLayout)[];
|
|
101327
|
+
};
|
|
101328
|
+
image?: string | undefined;
|
|
101329
|
+
description?: string | undefined;
|
|
101330
|
+
documentationLink?: string | undefined;
|
|
101331
|
+
maxColumns?: number | undefined;
|
|
101332
|
+
defaultColumns?: number | undefined;
|
|
101333
|
+
appearance?: {
|
|
101334
|
+
isBordered?: boolean | undefined;
|
|
101335
|
+
hasBackground?: boolean | undefined;
|
|
101336
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
101337
|
+
} | undefined;
|
|
101338
|
+
}[];
|
|
101339
|
+
defaultVariantKey: string;
|
|
101340
|
+
appearance?: {
|
|
101341
|
+
isBordered?: boolean | undefined;
|
|
101342
|
+
hasBackground?: boolean | undefined;
|
|
101343
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
101344
|
+
} | undefined;
|
|
101345
|
+
};
|
|
101346
|
+
category: "Text" | "Code" | "Embed" | "Figma" | "Layout" | "Media" | "Guidelines" | "Tokens" | "Components" | "Assets" | "Data" | "Other";
|
|
101347
|
+
behavior: {
|
|
101348
|
+
dataType: "Component" | "Token" | "Asset" | "FigmaNode" | "Item";
|
|
101349
|
+
items?: {
|
|
101350
|
+
numberOfItems: number;
|
|
101351
|
+
allowLinks: boolean;
|
|
101352
|
+
} | undefined;
|
|
101353
|
+
entities?: {
|
|
101354
|
+
selectionType: "Group" | "Entity" | "EntityAndGroup";
|
|
101355
|
+
maxSelected: number;
|
|
101356
|
+
} | undefined;
|
|
101357
|
+
};
|
|
101358
|
+
editorOptions: {
|
|
101359
|
+
onboarding?: {
|
|
101360
|
+
helpText: string;
|
|
101361
|
+
documentationLink?: string | undefined;
|
|
101362
|
+
} | undefined;
|
|
101363
|
+
};
|
|
101364
|
+
icon?: {} | undefined;
|
|
101365
|
+
documentationLink?: string | undefined;
|
|
101366
|
+
searchKeywords?: string[] | undefined;
|
|
101367
|
+
appearance?: {
|
|
101368
|
+
isBordered?: boolean | undefined;
|
|
101369
|
+
hasBackground?: boolean | undefined;
|
|
101370
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
101371
|
+
} | undefined;
|
|
101372
|
+
}, {
|
|
101373
|
+
id: string;
|
|
101374
|
+
name: string;
|
|
101375
|
+
description: string;
|
|
101376
|
+
item: {
|
|
101377
|
+
properties: {
|
|
101378
|
+
id: string;
|
|
101379
|
+
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "Asset" | "FigmaNode" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
101380
|
+
name: string;
|
|
101381
|
+
description?: string | undefined;
|
|
101382
|
+
options?: Record<string, any> | undefined;
|
|
101383
|
+
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
101384
|
+
}[];
|
|
101385
|
+
variants: {
|
|
101386
|
+
id: string;
|
|
101387
|
+
name: string;
|
|
101388
|
+
layout: {
|
|
101389
|
+
type: "Column" | "Row";
|
|
101390
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
101391
|
+
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
101392
|
+
columnResizing?: "Fill" | "Hug" | undefined;
|
|
101393
|
+
} & {
|
|
101394
|
+
children: (string | PageBlockDefinitionLayout)[];
|
|
101395
|
+
};
|
|
101396
|
+
image?: string | undefined;
|
|
101397
|
+
description?: string | undefined;
|
|
101398
|
+
documentationLink?: string | undefined;
|
|
101399
|
+
maxColumns?: number | undefined;
|
|
101400
|
+
defaultColumns?: number | undefined;
|
|
101401
|
+
appearance?: {
|
|
101402
|
+
isBordered?: boolean | undefined;
|
|
101403
|
+
hasBackground?: boolean | undefined;
|
|
101404
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
101405
|
+
} | undefined;
|
|
101406
|
+
}[];
|
|
101407
|
+
defaultVariantKey: string;
|
|
101408
|
+
appearance?: {
|
|
101409
|
+
isBordered?: boolean | undefined;
|
|
101410
|
+
hasBackground?: boolean | undefined;
|
|
101411
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
101412
|
+
} | undefined;
|
|
101413
|
+
};
|
|
101414
|
+
category: "Text" | "Code" | "Embed" | "Figma" | "Layout" | "Media" | "Guidelines" | "Tokens" | "Components" | "Assets" | "Data" | "Other";
|
|
101415
|
+
behavior: {
|
|
101416
|
+
dataType: "Component" | "Token" | "Asset" | "FigmaNode" | "Item";
|
|
101417
|
+
items?: {
|
|
101418
|
+
numberOfItems: number;
|
|
101419
|
+
allowLinks: boolean;
|
|
101420
|
+
} | undefined;
|
|
101421
|
+
entities?: {
|
|
101422
|
+
selectionType: "Group" | "Entity" | "EntityAndGroup";
|
|
101423
|
+
maxSelected: number;
|
|
101424
|
+
} | undefined;
|
|
101425
|
+
};
|
|
101426
|
+
editorOptions: {
|
|
101427
|
+
onboarding?: {
|
|
101428
|
+
helpText: string;
|
|
101429
|
+
documentationLink?: string | undefined;
|
|
101430
|
+
} | undefined;
|
|
101431
|
+
};
|
|
101432
|
+
icon?: {} | undefined;
|
|
101433
|
+
documentationLink?: string | undefined;
|
|
101434
|
+
searchKeywords?: string[] | undefined;
|
|
101435
|
+
appearance?: {
|
|
101436
|
+
isBordered?: boolean | undefined;
|
|
101437
|
+
hasBackground?: boolean | undefined;
|
|
101438
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
101439
|
+
} | undefined;
|
|
101440
|
+
}>, "many">;
|
|
101441
|
+
}, "strip", z.ZodTypeAny, {
|
|
101442
|
+
page: {
|
|
101443
|
+
id: string;
|
|
101444
|
+
createdAt: Date;
|
|
101445
|
+
updatedAt: Date;
|
|
101446
|
+
persistentId: string;
|
|
101447
|
+
designSystemVersionId: string;
|
|
101448
|
+
data: {
|
|
101449
|
+
configuration?: {
|
|
101450
|
+
showSidebar: boolean;
|
|
101451
|
+
header: {
|
|
101452
|
+
description: string;
|
|
101453
|
+
alignment: "Center" | "Left";
|
|
101454
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
101455
|
+
showBackgroundOverlay: boolean;
|
|
101456
|
+
showCoverText: boolean;
|
|
101457
|
+
foregroundColor?: {
|
|
101458
|
+
aliasTo?: string | undefined;
|
|
101459
|
+
value?: {
|
|
101460
|
+
opacity: {
|
|
101461
|
+
aliasTo?: string | undefined;
|
|
101462
|
+
value?: {
|
|
101463
|
+
unit: "Pixels" | "Raw";
|
|
101464
|
+
measure: number;
|
|
101465
|
+
} | undefined;
|
|
101466
|
+
};
|
|
101467
|
+
color: (string | {
|
|
101468
|
+
aliasTo?: string | undefined;
|
|
101469
|
+
}) & (string | {
|
|
101470
|
+
aliasTo?: string | undefined;
|
|
101471
|
+
} | undefined);
|
|
101472
|
+
} | undefined;
|
|
101473
|
+
} | null | undefined;
|
|
101474
|
+
backgroundColor?: {
|
|
101475
|
+
aliasTo?: string | undefined;
|
|
101476
|
+
value?: {
|
|
101477
|
+
opacity: {
|
|
101478
|
+
aliasTo?: string | undefined;
|
|
101479
|
+
value?: {
|
|
101480
|
+
unit: "Pixels" | "Raw";
|
|
101481
|
+
measure: number;
|
|
101482
|
+
} | undefined;
|
|
101483
|
+
};
|
|
101484
|
+
color: (string | {
|
|
101485
|
+
aliasTo?: string | undefined;
|
|
101486
|
+
}) & (string | {
|
|
101487
|
+
aliasTo?: string | undefined;
|
|
101488
|
+
} | undefined);
|
|
101489
|
+
} | undefined;
|
|
101490
|
+
} | null | undefined;
|
|
101491
|
+
backgroundImageAsset?: {
|
|
101492
|
+
id: string;
|
|
101493
|
+
type: "image";
|
|
101494
|
+
url?: string | undefined;
|
|
101495
|
+
} | {
|
|
101496
|
+
type: "figmaFrame";
|
|
101497
|
+
figmaFrame: {
|
|
101498
|
+
persistentId: string;
|
|
101499
|
+
sourceId: string;
|
|
101500
|
+
sourceFrameId: string;
|
|
101501
|
+
title?: string | undefined;
|
|
101502
|
+
description?: string | undefined;
|
|
101503
|
+
backgroundColor?: {
|
|
101504
|
+
value: string;
|
|
101505
|
+
} | undefined;
|
|
101506
|
+
origin?: {
|
|
101507
|
+
sourceFileName?: string | undefined;
|
|
101508
|
+
title?: string | undefined;
|
|
101509
|
+
previewUrl?: string | undefined;
|
|
101510
|
+
valid?: boolean | undefined;
|
|
101511
|
+
referenceId?: string | undefined;
|
|
101512
|
+
assetId?: string | undefined;
|
|
101513
|
+
assetScale?: number | undefined;
|
|
101514
|
+
width?: number | undefined;
|
|
101515
|
+
height?: number | undefined;
|
|
101516
|
+
} | undefined;
|
|
101517
|
+
};
|
|
101518
|
+
url?: string | undefined;
|
|
101519
|
+
} | null | undefined;
|
|
101520
|
+
minHeight?: number | null | undefined;
|
|
101521
|
+
};
|
|
101522
|
+
} | undefined;
|
|
101523
|
+
};
|
|
101524
|
+
parentPersistentId: string;
|
|
101525
|
+
shortPersistentId: string;
|
|
101526
|
+
sortOrder: number;
|
|
101527
|
+
meta: {
|
|
101528
|
+
name: string;
|
|
101529
|
+
description?: string | undefined;
|
|
101530
|
+
};
|
|
101531
|
+
slug?: string | undefined;
|
|
101532
|
+
userSlug?: string | undefined;
|
|
101533
|
+
};
|
|
101534
|
+
pageParent: {
|
|
101535
|
+
id: string;
|
|
101536
|
+
createdAt: Date;
|
|
101537
|
+
updatedAt: Date;
|
|
101538
|
+
persistentId: string;
|
|
101539
|
+
designSystemVersionId: string;
|
|
101540
|
+
childType: "Image" | "Font" | "Documentation" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Component" | "Theme" | "DocumentationPage" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock";
|
|
101541
|
+
sortOrder: number;
|
|
101542
|
+
meta: {
|
|
101543
|
+
name: string;
|
|
101544
|
+
description?: string | undefined;
|
|
101545
|
+
};
|
|
101546
|
+
brandPersistentId?: string | undefined;
|
|
101547
|
+
parentPersistentId?: string | undefined;
|
|
101548
|
+
slug?: string | undefined;
|
|
101549
|
+
userSlug?: string | undefined;
|
|
101550
|
+
shortPersistentId?: string | undefined;
|
|
101551
|
+
data?: {
|
|
101552
|
+
behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
|
|
101553
|
+
configuration?: {
|
|
101554
|
+
showSidebar: boolean;
|
|
101555
|
+
header: {
|
|
101556
|
+
description: string;
|
|
101557
|
+
alignment: "Center" | "Left";
|
|
101558
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
101559
|
+
showBackgroundOverlay: boolean;
|
|
101560
|
+
showCoverText: boolean;
|
|
101561
|
+
foregroundColor?: {
|
|
101562
|
+
aliasTo?: string | undefined;
|
|
101563
|
+
value?: {
|
|
101564
|
+
opacity: {
|
|
101565
|
+
aliasTo?: string | undefined;
|
|
101566
|
+
value?: {
|
|
101567
|
+
unit: "Pixels" | "Raw";
|
|
101568
|
+
measure: number;
|
|
101569
|
+
} | undefined;
|
|
101570
|
+
};
|
|
101571
|
+
color: (string | {
|
|
101572
|
+
aliasTo?: string | undefined;
|
|
101573
|
+
}) & (string | {
|
|
101574
|
+
aliasTo?: string | undefined;
|
|
101575
|
+
} | undefined);
|
|
101576
|
+
} | undefined;
|
|
101577
|
+
} | null | undefined;
|
|
101578
|
+
backgroundColor?: {
|
|
101579
|
+
aliasTo?: string | undefined;
|
|
101580
|
+
value?: {
|
|
101581
|
+
opacity: {
|
|
101582
|
+
aliasTo?: string | undefined;
|
|
101583
|
+
value?: {
|
|
101584
|
+
unit: "Pixels" | "Raw";
|
|
101585
|
+
measure: number;
|
|
101586
|
+
} | undefined;
|
|
101587
|
+
};
|
|
101588
|
+
color: (string | {
|
|
101589
|
+
aliasTo?: string | undefined;
|
|
101590
|
+
}) & (string | {
|
|
101591
|
+
aliasTo?: string | undefined;
|
|
101592
|
+
} | undefined);
|
|
101593
|
+
} | undefined;
|
|
101594
|
+
} | null | undefined;
|
|
101595
|
+
backgroundImageAsset?: {
|
|
101596
|
+
id: string;
|
|
101597
|
+
type: "image";
|
|
101598
|
+
url?: string | undefined;
|
|
101599
|
+
} | {
|
|
101600
|
+
type: "figmaFrame";
|
|
101601
|
+
figmaFrame: {
|
|
101602
|
+
persistentId: string;
|
|
101603
|
+
sourceId: string;
|
|
101604
|
+
sourceFrameId: string;
|
|
101605
|
+
title?: string | undefined;
|
|
101606
|
+
description?: string | undefined;
|
|
101607
|
+
backgroundColor?: {
|
|
101608
|
+
value: string;
|
|
101609
|
+
} | undefined;
|
|
101610
|
+
origin?: {
|
|
101611
|
+
sourceFileName?: string | undefined;
|
|
101612
|
+
title?: string | undefined;
|
|
101613
|
+
previewUrl?: string | undefined;
|
|
101614
|
+
valid?: boolean | undefined;
|
|
101615
|
+
referenceId?: string | undefined;
|
|
101616
|
+
assetId?: string | undefined;
|
|
101617
|
+
assetScale?: number | undefined;
|
|
101618
|
+
width?: number | undefined;
|
|
101619
|
+
height?: number | undefined;
|
|
101620
|
+
} | undefined;
|
|
101621
|
+
};
|
|
101622
|
+
url?: string | undefined;
|
|
101623
|
+
} | null | undefined;
|
|
101624
|
+
minHeight?: number | null | undefined;
|
|
101625
|
+
};
|
|
101626
|
+
} | undefined;
|
|
101627
|
+
} | undefined;
|
|
101628
|
+
};
|
|
101629
|
+
pageBlocks: {
|
|
101630
|
+
id: string;
|
|
101631
|
+
data: {
|
|
101632
|
+
items: {
|
|
101633
|
+
id: string;
|
|
101634
|
+
props: Record<string, {
|
|
101635
|
+
value?: any;
|
|
101636
|
+
} & Record<string, any>>;
|
|
101637
|
+
linksTo?: {
|
|
101638
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
101639
|
+
documentationItemId?: string | undefined;
|
|
101640
|
+
pageHeadingId?: string | undefined;
|
|
101641
|
+
url?: string | undefined;
|
|
101642
|
+
openInNewTab?: boolean | undefined;
|
|
101643
|
+
} | undefined;
|
|
101644
|
+
}[];
|
|
101645
|
+
packageId: string;
|
|
101646
|
+
indentLevel: number;
|
|
101647
|
+
variantId?: string | undefined;
|
|
101648
|
+
appearance?: {
|
|
101649
|
+
itemBackgroundColor?: {
|
|
101650
|
+
value: string;
|
|
101651
|
+
referencedTokenId?: string | undefined;
|
|
101652
|
+
} | undefined;
|
|
101653
|
+
numberOfColumns?: number | undefined;
|
|
101654
|
+
} | undefined;
|
|
101655
|
+
};
|
|
101656
|
+
}[];
|
|
101657
|
+
blockDefinitions: {
|
|
101658
|
+
id: string;
|
|
101659
|
+
name: string;
|
|
101660
|
+
description: string;
|
|
101661
|
+
item: {
|
|
101662
|
+
properties: {
|
|
101663
|
+
id: string;
|
|
101664
|
+
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "Asset" | "FigmaNode" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
101665
|
+
name: string;
|
|
101666
|
+
description?: string | undefined;
|
|
101667
|
+
options?: Record<string, any> | undefined;
|
|
101668
|
+
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
101669
|
+
}[];
|
|
101670
|
+
variants: {
|
|
101671
|
+
id: string;
|
|
101672
|
+
name: string;
|
|
101673
|
+
layout: {
|
|
101674
|
+
type: "Column" | "Row";
|
|
101675
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
101676
|
+
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
101677
|
+
columnResizing?: "Fill" | "Hug" | undefined;
|
|
101678
|
+
} & {
|
|
101679
|
+
children: (string | PageBlockDefinitionLayout)[];
|
|
101680
|
+
};
|
|
101681
|
+
image?: string | undefined;
|
|
101682
|
+
description?: string | undefined;
|
|
101683
|
+
documentationLink?: string | undefined;
|
|
101684
|
+
maxColumns?: number | undefined;
|
|
101685
|
+
defaultColumns?: number | undefined;
|
|
101686
|
+
appearance?: {
|
|
101687
|
+
isBordered?: boolean | undefined;
|
|
101688
|
+
hasBackground?: boolean | undefined;
|
|
101689
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
101690
|
+
} | undefined;
|
|
101691
|
+
}[];
|
|
101692
|
+
defaultVariantKey: string;
|
|
101693
|
+
appearance?: {
|
|
101694
|
+
isBordered?: boolean | undefined;
|
|
101695
|
+
hasBackground?: boolean | undefined;
|
|
101696
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
101697
|
+
} | undefined;
|
|
101698
|
+
};
|
|
101699
|
+
category: "Text" | "Code" | "Embed" | "Figma" | "Layout" | "Media" | "Guidelines" | "Tokens" | "Components" | "Assets" | "Data" | "Other";
|
|
101700
|
+
behavior: {
|
|
101701
|
+
dataType: "Component" | "Token" | "Asset" | "FigmaNode" | "Item";
|
|
101702
|
+
items?: {
|
|
101703
|
+
numberOfItems: number;
|
|
101704
|
+
allowLinks: boolean;
|
|
101705
|
+
} | undefined;
|
|
101706
|
+
entities?: {
|
|
101707
|
+
selectionType: "Group" | "Entity" | "EntityAndGroup";
|
|
101708
|
+
maxSelected: number;
|
|
101709
|
+
} | undefined;
|
|
101710
|
+
};
|
|
101711
|
+
editorOptions: {
|
|
101712
|
+
onboarding?: {
|
|
101713
|
+
helpText: string;
|
|
101714
|
+
documentationLink?: string | undefined;
|
|
101715
|
+
} | undefined;
|
|
101716
|
+
};
|
|
101717
|
+
icon?: {} | undefined;
|
|
101718
|
+
documentationLink?: string | undefined;
|
|
101719
|
+
searchKeywords?: string[] | undefined;
|
|
101720
|
+
appearance?: {
|
|
101721
|
+
isBordered?: boolean | undefined;
|
|
101722
|
+
hasBackground?: boolean | undefined;
|
|
101723
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
101724
|
+
} | undefined;
|
|
101725
|
+
}[];
|
|
101726
|
+
}, {
|
|
101727
|
+
page: {
|
|
101728
|
+
id: string;
|
|
101729
|
+
createdAt: Date;
|
|
101730
|
+
updatedAt: Date;
|
|
101731
|
+
persistentId: string;
|
|
101732
|
+
designSystemVersionId: string;
|
|
101733
|
+
data: {
|
|
101734
|
+
configuration?: {
|
|
101735
|
+
showSidebar: boolean;
|
|
101736
|
+
header: {
|
|
101737
|
+
description: string;
|
|
101738
|
+
alignment: "Center" | "Left";
|
|
101739
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
101740
|
+
showBackgroundOverlay: boolean;
|
|
101741
|
+
showCoverText: boolean;
|
|
101742
|
+
foregroundColor?: {
|
|
101743
|
+
aliasTo?: string | null | undefined;
|
|
101744
|
+
value?: {
|
|
101745
|
+
opacity: {
|
|
101746
|
+
aliasTo?: string | null | undefined;
|
|
101747
|
+
value?: {
|
|
101748
|
+
unit: "Pixels" | "Raw";
|
|
101749
|
+
measure: number;
|
|
101750
|
+
} | null | undefined;
|
|
101751
|
+
};
|
|
101752
|
+
color: (string | {
|
|
101753
|
+
aliasTo?: string | null | undefined;
|
|
101754
|
+
}) & (string | {
|
|
101755
|
+
aliasTo?: string | null | undefined;
|
|
101756
|
+
} | undefined);
|
|
101757
|
+
} | null | undefined;
|
|
101758
|
+
} | null | undefined;
|
|
101759
|
+
backgroundColor?: {
|
|
101760
|
+
aliasTo?: string | null | undefined;
|
|
101761
|
+
value?: {
|
|
101762
|
+
opacity: {
|
|
101763
|
+
aliasTo?: string | null | undefined;
|
|
101764
|
+
value?: {
|
|
101765
|
+
unit: "Pixels" | "Raw";
|
|
101766
|
+
measure: number;
|
|
101767
|
+
} | null | undefined;
|
|
101768
|
+
};
|
|
101769
|
+
color: (string | {
|
|
101770
|
+
aliasTo?: string | null | undefined;
|
|
101771
|
+
}) & (string | {
|
|
101772
|
+
aliasTo?: string | null | undefined;
|
|
101773
|
+
} | undefined);
|
|
101774
|
+
} | null | undefined;
|
|
101775
|
+
} | null | undefined;
|
|
101776
|
+
backgroundImageAsset?: {
|
|
101777
|
+
id: string;
|
|
101778
|
+
type: "image";
|
|
101779
|
+
url?: string | undefined;
|
|
101780
|
+
} | {
|
|
101781
|
+
type: "figmaFrame";
|
|
101782
|
+
figmaFrame: {
|
|
101783
|
+
persistentId: string;
|
|
101784
|
+
sourceId: string;
|
|
101785
|
+
sourceFrameId: string;
|
|
101786
|
+
title?: string | null | undefined;
|
|
101787
|
+
description?: string | null | undefined;
|
|
101788
|
+
backgroundColor?: {
|
|
101789
|
+
value: string;
|
|
101790
|
+
} | null | undefined;
|
|
101791
|
+
origin?: {
|
|
101792
|
+
sourceFileName?: string | null | undefined;
|
|
101793
|
+
title?: string | null | undefined;
|
|
101794
|
+
previewUrl?: string | null | undefined;
|
|
101795
|
+
valid?: boolean | null | undefined;
|
|
101796
|
+
referenceId?: string | null | undefined;
|
|
101797
|
+
assetId?: string | null | undefined;
|
|
101798
|
+
assetScale?: number | null | undefined;
|
|
101799
|
+
width?: number | null | undefined;
|
|
101800
|
+
height?: number | null | undefined;
|
|
101801
|
+
} | null | undefined;
|
|
101802
|
+
};
|
|
101803
|
+
url?: string | undefined;
|
|
101804
|
+
} | null | undefined;
|
|
101805
|
+
minHeight?: number | null | undefined;
|
|
101806
|
+
};
|
|
101807
|
+
} | null | undefined;
|
|
101808
|
+
};
|
|
101809
|
+
parentPersistentId: string;
|
|
101810
|
+
shortPersistentId: string;
|
|
101811
|
+
sortOrder: number;
|
|
101812
|
+
meta: {
|
|
101813
|
+
name: string;
|
|
101814
|
+
description?: string | undefined;
|
|
101815
|
+
};
|
|
101816
|
+
slug?: string | undefined;
|
|
101817
|
+
userSlug?: string | undefined;
|
|
101818
|
+
};
|
|
101819
|
+
pageParent: {
|
|
101820
|
+
id: string;
|
|
101821
|
+
createdAt: Date;
|
|
101822
|
+
updatedAt: Date;
|
|
101823
|
+
persistentId: string;
|
|
101824
|
+
designSystemVersionId: string;
|
|
101825
|
+
childType: "Image" | "Font" | "Documentation" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Component" | "Theme" | "DocumentationPage" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock";
|
|
101826
|
+
sortOrder: number;
|
|
101827
|
+
meta: {
|
|
101828
|
+
name: string;
|
|
101829
|
+
description?: string | undefined;
|
|
101830
|
+
};
|
|
101831
|
+
brandPersistentId?: string | undefined;
|
|
101832
|
+
parentPersistentId?: string | undefined;
|
|
101833
|
+
slug?: string | undefined;
|
|
101834
|
+
userSlug?: string | undefined;
|
|
101835
|
+
shortPersistentId?: string | undefined;
|
|
101836
|
+
data?: {
|
|
101837
|
+
behavior?: "Tabs" | "Group" | null | undefined;
|
|
101838
|
+
configuration?: {
|
|
101839
|
+
showSidebar: boolean;
|
|
101840
|
+
header: {
|
|
101841
|
+
description: string;
|
|
101842
|
+
alignment: "Center" | "Left";
|
|
101843
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
101844
|
+
showBackgroundOverlay: boolean;
|
|
101845
|
+
showCoverText: boolean;
|
|
101846
|
+
foregroundColor?: {
|
|
101847
|
+
aliasTo?: string | null | undefined;
|
|
101848
|
+
value?: {
|
|
101849
|
+
opacity: {
|
|
101850
|
+
aliasTo?: string | null | undefined;
|
|
101851
|
+
value?: {
|
|
101852
|
+
unit: "Pixels" | "Raw";
|
|
101853
|
+
measure: number;
|
|
101854
|
+
} | null | undefined;
|
|
101855
|
+
};
|
|
101856
|
+
color: (string | {
|
|
101857
|
+
aliasTo?: string | null | undefined;
|
|
101858
|
+
}) & (string | {
|
|
101859
|
+
aliasTo?: string | null | undefined;
|
|
101860
|
+
} | undefined);
|
|
101861
|
+
} | null | undefined;
|
|
101862
|
+
} | null | undefined;
|
|
101863
|
+
backgroundColor?: {
|
|
101864
|
+
aliasTo?: string | null | undefined;
|
|
101865
|
+
value?: {
|
|
101866
|
+
opacity: {
|
|
101867
|
+
aliasTo?: string | null | undefined;
|
|
101868
|
+
value?: {
|
|
101869
|
+
unit: "Pixels" | "Raw";
|
|
101870
|
+
measure: number;
|
|
101871
|
+
} | null | undefined;
|
|
101872
|
+
};
|
|
101873
|
+
color: (string | {
|
|
101874
|
+
aliasTo?: string | null | undefined;
|
|
101875
|
+
}) & (string | {
|
|
101876
|
+
aliasTo?: string | null | undefined;
|
|
101877
|
+
} | undefined);
|
|
101878
|
+
} | null | undefined;
|
|
101879
|
+
} | null | undefined;
|
|
101880
|
+
backgroundImageAsset?: {
|
|
101881
|
+
id: string;
|
|
101882
|
+
type: "image";
|
|
101883
|
+
url?: string | undefined;
|
|
101884
|
+
} | {
|
|
101885
|
+
type: "figmaFrame";
|
|
101886
|
+
figmaFrame: {
|
|
101887
|
+
persistentId: string;
|
|
101888
|
+
sourceId: string;
|
|
101889
|
+
sourceFrameId: string;
|
|
101890
|
+
title?: string | null | undefined;
|
|
101891
|
+
description?: string | null | undefined;
|
|
101892
|
+
backgroundColor?: {
|
|
101893
|
+
value: string;
|
|
101894
|
+
} | null | undefined;
|
|
101895
|
+
origin?: {
|
|
101896
|
+
sourceFileName?: string | null | undefined;
|
|
101897
|
+
title?: string | null | undefined;
|
|
101898
|
+
previewUrl?: string | null | undefined;
|
|
101899
|
+
valid?: boolean | null | undefined;
|
|
101900
|
+
referenceId?: string | null | undefined;
|
|
101901
|
+
assetId?: string | null | undefined;
|
|
101902
|
+
assetScale?: number | null | undefined;
|
|
101903
|
+
width?: number | null | undefined;
|
|
101904
|
+
height?: number | null | undefined;
|
|
101905
|
+
} | null | undefined;
|
|
101906
|
+
};
|
|
101907
|
+
url?: string | undefined;
|
|
101908
|
+
} | null | undefined;
|
|
101909
|
+
minHeight?: number | null | undefined;
|
|
101910
|
+
};
|
|
101911
|
+
} | null | undefined;
|
|
101912
|
+
} | undefined;
|
|
101913
|
+
};
|
|
101914
|
+
pageBlocks: {
|
|
101915
|
+
id: string;
|
|
101916
|
+
data: {
|
|
101917
|
+
items: {
|
|
101918
|
+
id: string;
|
|
101919
|
+
props: Record<string, {
|
|
101920
|
+
value?: any;
|
|
101921
|
+
} & Record<string, any>>;
|
|
101922
|
+
linksTo?: {
|
|
101923
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
101924
|
+
documentationItemId?: string | undefined;
|
|
101925
|
+
pageHeadingId?: string | undefined;
|
|
101926
|
+
url?: string | undefined;
|
|
101927
|
+
openInNewTab?: boolean | undefined;
|
|
101928
|
+
} | undefined;
|
|
101929
|
+
}[];
|
|
101930
|
+
packageId: string;
|
|
101931
|
+
indentLevel: number;
|
|
101932
|
+
variantId?: string | undefined;
|
|
101933
|
+
appearance?: {
|
|
101934
|
+
itemBackgroundColor?: {
|
|
101935
|
+
value: string;
|
|
101936
|
+
referencedTokenId?: string | undefined;
|
|
101937
|
+
} | undefined;
|
|
101938
|
+
numberOfColumns?: number | undefined;
|
|
101939
|
+
} | undefined;
|
|
101940
|
+
};
|
|
101941
|
+
}[];
|
|
101942
|
+
blockDefinitions: {
|
|
101943
|
+
id: string;
|
|
101944
|
+
name: string;
|
|
101945
|
+
description: string;
|
|
101946
|
+
item: {
|
|
101947
|
+
properties: {
|
|
101948
|
+
id: string;
|
|
101949
|
+
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "Asset" | "FigmaNode" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
101950
|
+
name: string;
|
|
101951
|
+
description?: string | undefined;
|
|
101952
|
+
options?: Record<string, any> | undefined;
|
|
101953
|
+
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
101954
|
+
}[];
|
|
101955
|
+
variants: {
|
|
101956
|
+
id: string;
|
|
101957
|
+
name: string;
|
|
101958
|
+
layout: {
|
|
101959
|
+
type: "Column" | "Row";
|
|
101960
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
101961
|
+
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
101962
|
+
columnResizing?: "Fill" | "Hug" | undefined;
|
|
101963
|
+
} & {
|
|
101964
|
+
children: (string | PageBlockDefinitionLayout)[];
|
|
101965
|
+
};
|
|
101966
|
+
image?: string | undefined;
|
|
101967
|
+
description?: string | undefined;
|
|
101968
|
+
documentationLink?: string | undefined;
|
|
101969
|
+
maxColumns?: number | undefined;
|
|
101970
|
+
defaultColumns?: number | undefined;
|
|
101971
|
+
appearance?: {
|
|
101972
|
+
isBordered?: boolean | undefined;
|
|
101973
|
+
hasBackground?: boolean | undefined;
|
|
101974
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
101975
|
+
} | undefined;
|
|
101976
|
+
}[];
|
|
101977
|
+
defaultVariantKey: string;
|
|
101978
|
+
appearance?: {
|
|
101979
|
+
isBordered?: boolean | undefined;
|
|
101980
|
+
hasBackground?: boolean | undefined;
|
|
101981
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
101982
|
+
} | undefined;
|
|
101983
|
+
};
|
|
101984
|
+
category: "Text" | "Code" | "Embed" | "Figma" | "Layout" | "Media" | "Guidelines" | "Tokens" | "Components" | "Assets" | "Data" | "Other";
|
|
101985
|
+
behavior: {
|
|
101986
|
+
dataType: "Component" | "Token" | "Asset" | "FigmaNode" | "Item";
|
|
101987
|
+
items?: {
|
|
101988
|
+
numberOfItems: number;
|
|
101989
|
+
allowLinks: boolean;
|
|
101990
|
+
} | undefined;
|
|
101991
|
+
entities?: {
|
|
101992
|
+
selectionType: "Group" | "Entity" | "EntityAndGroup";
|
|
101993
|
+
maxSelected: number;
|
|
101994
|
+
} | undefined;
|
|
101995
|
+
};
|
|
101996
|
+
editorOptions: {
|
|
101997
|
+
onboarding?: {
|
|
101998
|
+
helpText: string;
|
|
101999
|
+
documentationLink?: string | undefined;
|
|
102000
|
+
} | undefined;
|
|
102001
|
+
};
|
|
102002
|
+
icon?: {} | undefined;
|
|
102003
|
+
documentationLink?: string | undefined;
|
|
102004
|
+
searchKeywords?: string[] | undefined;
|
|
102005
|
+
appearance?: {
|
|
102006
|
+
isBordered?: boolean | undefined;
|
|
102007
|
+
hasBackground?: boolean | undefined;
|
|
102008
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
102009
|
+
} | undefined;
|
|
102010
|
+
}[];
|
|
102011
|
+
}>;
|
|
102012
|
+
type DocumentationPageRoomInitialState = z.infer<typeof DocumentationPageRoomInitialState>;
|
|
97654
102013
|
|
|
97655
102014
|
declare enum RoomTypeEnum {
|
|
97656
102015
|
DocumentationPage = "documentation-page",
|
|
@@ -102149,4 +106508,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
102149
106508
|
}>;
|
|
102150
106509
|
type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
|
|
102151
106510
|
|
|
102152
|
-
export { Address, type AllFields, type ArrayElementType, Asset, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, type Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageRoom, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementViewColumn, type CreateExporterMembership, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePublishedDocPage, type CreateTheme, CreateWorkspaceInput, CustomDomain, type CustomDomainState, Customer, type DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type DeleteElementGroup, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, type DesignSystemVersion, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomUpdate, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationGroupBehavior, DocumentationItemConfiguration, DocumentationItemHeader, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationPage, DocumentationPageAsset, DocumentationPageAssetType, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageElementDataV1, DocumentationPageElementDataV2, DocumentationPageFrameAsset, DocumentationPageGroup, DocumentationPageImageAsset, DocumentationPageRoom, DocumentationPageV1, DocumentationPageV2, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupData, ElementGroupElementData, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyValue, type ElementPropertyValueDiff, type ElementView, type ElementViewBaseColumnType, type ElementViewBasePropertyColumn, type ElementViewColumn, type ElementViewColumnSharedAttributes, type ElementViewColumnType, type ElementViewPropertyDefinitionColumn, type ElementViewThemeColumn, Entity, type ExplicitPartial, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDestinationSnDocs, ExporterDetails, ExporterJob, ExporterJobDestination, ExporterJobFindByFilter, ExporterJobLogEntry, ExporterJobLogEntryType, ExporterJobResult, ExporterJobResultDocsDestination, ExporterJobResultPullRequestDestination, ExporterJobResultS3Destination, ExporterJobStatus, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitProvider, GitProviderNames, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, ImportedFigmaSourceData, IntegrationAuthType, type IntegrationToken, IntegrationTokenSchema, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, NpmRegistryTypeWithoutAzure, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetType, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockEditorModelV2, PageBlockFigmaFrameProperties, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaNodeValue, PageBlockItemImageReference, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableMultiRichTextNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, type PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, type ResolvedAsset, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, 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 UpdateComponent, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageRoom, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementViewColumn, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, UrlImageImportModel, User, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserSession, Visibility, VisibilityTokenData, VisibilityValue, Workspace, WorkspaceContext, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, WorkspaceProfile, WorkspaceRole, WorkspaceRoleSchema, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, buildConstantEnum, colorValueFormatDescription, colorValueRegex, defaultDocumentationItemConfiguration, defaultDocumentationItemHeader, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isSlugReserved, isTokenType, mapByUnique, mergeDesignSystemVersionRoomUpdates, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, promiseWithTimeout, publishedDocEnvironments, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlocksV1, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, zodCreateInputOmit, zodUpdateInputOmit };
|
|
106511
|
+
export { Address, type AllFields, type ArrayElementType, Asset, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, type Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageRoom, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementViewColumn, type CreateExporterMembership, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePublishedDocPage, type CreateTheme, CreateWorkspaceInput, CustomDomain, type CustomDomainState, Customer, type DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, type DesignSystemVersion, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomUpdate, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationGroupBehavior, DocumentationItemConfiguration, DocumentationItemHeader, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationPage, DocumentationPageAsset, DocumentationPageAssetType, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageElementDataV1, DocumentationPageElementDataV2, DocumentationPageFrameAsset, DocumentationPageGroup, DocumentationPageImageAsset, DocumentationPageRoom, DocumentationPageRoomInitialState, DocumentationPageRoomRoomUpdate, DocumentationPageV1, DocumentationPageV2, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupData, ElementGroupElementData, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyValue, type ElementPropertyValueDiff, type ElementView, type ElementViewBaseColumnType, type ElementViewBasePropertyColumn, type ElementViewColumn, type ElementViewColumnSharedAttributes, type ElementViewColumnType, type ElementViewPropertyDefinitionColumn, type ElementViewThemeColumn, Entity, type ExplicitPartial, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDestinationSnDocs, ExporterDetails, ExporterJob, ExporterJobDestination, ExporterJobFindByFilter, ExporterJobLogEntry, ExporterJobLogEntryType, ExporterJobResult, ExporterJobResultDocsDestination, ExporterJobResultPullRequestDestination, ExporterJobResultS3Destination, ExporterJobStatus, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitProvider, GitProviderNames, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, ImportedFigmaSourceData, IntegrationAuthType, type IntegrationToken, IntegrationTokenSchema, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, NpmRegistryTypeWithoutAzure, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetType, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockEditorModel, PageBlockEditorModelV2, PageBlockFigmaFrameProperties, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaNodeValue, PageBlockItemImageReference, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableMultiRichTextNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, type PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, type ResolvedAsset, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, 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 UpdateComponent, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageRoom, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementViewColumn, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, UrlImageImportModel, User, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserSession, Visibility, VisibilityTokenData, VisibilityValue, Workspace, WorkspaceContext, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, WorkspaceProfile, WorkspaceRole, WorkspaceRoleSchema, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, buildConstantEnum, colorValueFormatDescription, colorValueRegex, defaultDocumentationItemConfiguration, defaultDocumentationItemHeader, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isSlugReserved, isTokenType, mapByUnique, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, promiseWithTimeout, publishedDocEnvironments, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlocksV1, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, zodCreateInputOmit, zodUpdateInputOmit };
|