@supernova-studio/model 0.47.43 → 0.47.45
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 +2589 -334
- package/dist/index.d.ts +2589 -334
- package/dist/index.js +27 -23
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1092 -1088
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/element-snapshots/base.ts +13 -0
- package/src/dsm/element-snapshots/documentation-page-snapshot.ts +20 -0
- package/src/dsm/element-snapshots/group-snapshot.ts +19 -0
- package/src/dsm/element-snapshots/index.ts +3 -0
- package/src/dsm/elements/index.ts +0 -1
- package/src/dsm/index.ts +1 -0
- package/src/liveblocks/rooms/design-system-version-room.ts +2 -3
- package/src/dsm/elements/element-snapshot.ts +0 -27
package/dist/index.d.mts
CHANGED
|
@@ -33791,6 +33791,28 @@ declare const DocumentationCommentThread: z.ZodObject<{
|
|
|
33791
33791
|
}>;
|
|
33792
33792
|
type DocumentationCommentThread = z.infer<typeof DocumentationCommentThread>;
|
|
33793
33793
|
|
|
33794
|
+
declare const DesignElementSnapshotBase: z.ZodObject<{
|
|
33795
|
+
id: z.ZodString;
|
|
33796
|
+
designSystemVersionId: z.ZodString;
|
|
33797
|
+
createdAt: z.ZodDate;
|
|
33798
|
+
updatedAt: z.ZodDate;
|
|
33799
|
+
reason: z.ZodEnum<["Publish", "Deletion"]>;
|
|
33800
|
+
}, "strip", z.ZodTypeAny, {
|
|
33801
|
+
id: string;
|
|
33802
|
+
createdAt: Date;
|
|
33803
|
+
updatedAt: Date;
|
|
33804
|
+
designSystemVersionId: string;
|
|
33805
|
+
reason: "Publish" | "Deletion";
|
|
33806
|
+
}, {
|
|
33807
|
+
id: string;
|
|
33808
|
+
createdAt: Date;
|
|
33809
|
+
updatedAt: Date;
|
|
33810
|
+
designSystemVersionId: string;
|
|
33811
|
+
reason: "Publish" | "Deletion";
|
|
33812
|
+
}>;
|
|
33813
|
+
declare const DesignElementSnapshotReason: z.ZodEnum<["Publish", "Deletion"]>;
|
|
33814
|
+
type DesignElementSnapshotReason = z.infer<typeof DesignElementSnapshotReason>;
|
|
33815
|
+
|
|
33794
33816
|
declare const TokenDataAliasSchema: z.ZodObject<{
|
|
33795
33817
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
33796
33818
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -51069,42 +51091,6 @@ type DocumentationPageV2 = z.infer<typeof DocumentationPageV2>;
|
|
|
51069
51091
|
type CreateDocumentationPageV2 = DbCreateInputOmit<DocumentationPageV2>;
|
|
51070
51092
|
type UpdateDocumentationPageV2 = OmitStrict<DbUpdate<DocumentationPageV2>, "designSystemVersionId">;
|
|
51071
51093
|
|
|
51072
|
-
declare const DesignElementSnapshot: z.ZodObject<{
|
|
51073
|
-
id: z.ZodString;
|
|
51074
|
-
designSystemVersionId: z.ZodString;
|
|
51075
|
-
elementId: z.ZodString;
|
|
51076
|
-
elementType: 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"]>]>;
|
|
51077
|
-
elementPersistentId: z.ZodString;
|
|
51078
|
-
elementParentPersistentId: z.ZodString;
|
|
51079
|
-
elementName: z.ZodString;
|
|
51080
|
-
hash: z.ZodString;
|
|
51081
|
-
storageKey: z.ZodString;
|
|
51082
|
-
createdAt: z.ZodDate;
|
|
51083
|
-
}, "strip", z.ZodTypeAny, {
|
|
51084
|
-
id: string;
|
|
51085
|
-
createdAt: Date;
|
|
51086
|
-
designSystemVersionId: string;
|
|
51087
|
-
elementId: string;
|
|
51088
|
-
elementType: "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";
|
|
51089
|
-
elementPersistentId: string;
|
|
51090
|
-
elementParentPersistentId: string;
|
|
51091
|
-
elementName: string;
|
|
51092
|
-
hash: string;
|
|
51093
|
-
storageKey: string;
|
|
51094
|
-
}, {
|
|
51095
|
-
id: string;
|
|
51096
|
-
createdAt: Date;
|
|
51097
|
-
designSystemVersionId: string;
|
|
51098
|
-
elementId: string;
|
|
51099
|
-
elementType: "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";
|
|
51100
|
-
elementPersistentId: string;
|
|
51101
|
-
elementParentPersistentId: string;
|
|
51102
|
-
elementName: string;
|
|
51103
|
-
hash: string;
|
|
51104
|
-
storageKey: string;
|
|
51105
|
-
}>;
|
|
51106
|
-
type DesignElementSnapshot = z.infer<typeof DesignElementSnapshot>;
|
|
51107
|
-
|
|
51108
51094
|
declare const FigmaFileStructureOrigin: z.ZodObject<{
|
|
51109
51095
|
sourceId: z.ZodString;
|
|
51110
51096
|
fileId: z.ZodOptional<z.ZodString>;
|
|
@@ -68664,197 +68650,2582 @@ declare const CreateDesignToken: z.ZodIntersection<z.ZodDiscriminatedUnion<"type
|
|
|
68664
68650
|
} | null | undefined;
|
|
68665
68651
|
aliasTo?: string | null | undefined;
|
|
68666
68652
|
} | undefined;
|
|
68667
|
-
} | null | undefined;
|
|
68668
|
-
aliasTo?: string | null | undefined;
|
|
68669
|
-
};
|
|
68670
|
-
}>, z.ZodObject<{
|
|
68671
|
-
type: z.ZodLiteral<"Visibility">;
|
|
68672
|
-
data: z.ZodObject<z.objectUtil.extendShape<{
|
|
68673
|
-
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
68674
|
-
}, {
|
|
68675
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"Hidden" | "Visible", z.ZodTypeDef, "Hidden" | "Visible">>>, "Hidden" | "Visible" | undefined, "Hidden" | "Visible" | null | undefined>;
|
|
68676
|
-
}>, "strip", z.ZodTypeAny, {
|
|
68677
|
-
value?: "Hidden" | "Visible" | undefined;
|
|
68678
|
-
aliasTo?: string | undefined;
|
|
68679
|
-
}, {
|
|
68680
|
-
value?: "Hidden" | "Visible" | null | undefined;
|
|
68681
|
-
aliasTo?: string | null | undefined;
|
|
68682
|
-
}>;
|
|
68683
|
-
}, "strip", z.ZodTypeAny, {
|
|
68684
|
-
type: "Visibility";
|
|
68685
|
-
data: {
|
|
68686
|
-
value?: "Hidden" | "Visible" | undefined;
|
|
68687
|
-
aliasTo?: string | undefined;
|
|
68688
|
-
};
|
|
68689
|
-
}, {
|
|
68690
|
-
type: "Visibility";
|
|
68691
|
-
data: {
|
|
68692
|
-
value?: "Hidden" | "Visible" | null | undefined;
|
|
68693
|
-
aliasTo?: string | null | undefined;
|
|
68694
|
-
};
|
|
68695
|
-
}>, z.ZodObject<{
|
|
68696
|
-
type: z.ZodLiteral<"ZIndex">;
|
|
68697
|
-
data: z.ZodObject<z.objectUtil.extendShape<{
|
|
68698
|
-
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
68699
|
-
}, {
|
|
68700
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<{
|
|
68701
|
-
unit: "Raw";
|
|
68702
|
-
measure: number;
|
|
68703
|
-
}, z.ZodTypeDef, {
|
|
68704
|
-
unit: "Raw";
|
|
68705
|
-
measure: number;
|
|
68706
|
-
}>>>, {
|
|
68707
|
-
unit: "Raw";
|
|
68708
|
-
measure: number;
|
|
68709
|
-
} | undefined, {
|
|
68710
|
-
unit: "Raw";
|
|
68711
|
-
measure: number;
|
|
68712
|
-
} | null | undefined>;
|
|
68653
|
+
} | null | undefined;
|
|
68654
|
+
aliasTo?: string | null | undefined;
|
|
68655
|
+
};
|
|
68656
|
+
}>, z.ZodObject<{
|
|
68657
|
+
type: z.ZodLiteral<"Visibility">;
|
|
68658
|
+
data: z.ZodObject<z.objectUtil.extendShape<{
|
|
68659
|
+
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
68660
|
+
}, {
|
|
68661
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"Hidden" | "Visible", z.ZodTypeDef, "Hidden" | "Visible">>>, "Hidden" | "Visible" | undefined, "Hidden" | "Visible" | null | undefined>;
|
|
68662
|
+
}>, "strip", z.ZodTypeAny, {
|
|
68663
|
+
value?: "Hidden" | "Visible" | undefined;
|
|
68664
|
+
aliasTo?: string | undefined;
|
|
68665
|
+
}, {
|
|
68666
|
+
value?: "Hidden" | "Visible" | null | undefined;
|
|
68667
|
+
aliasTo?: string | null | undefined;
|
|
68668
|
+
}>;
|
|
68669
|
+
}, "strip", z.ZodTypeAny, {
|
|
68670
|
+
type: "Visibility";
|
|
68671
|
+
data: {
|
|
68672
|
+
value?: "Hidden" | "Visible" | undefined;
|
|
68673
|
+
aliasTo?: string | undefined;
|
|
68674
|
+
};
|
|
68675
|
+
}, {
|
|
68676
|
+
type: "Visibility";
|
|
68677
|
+
data: {
|
|
68678
|
+
value?: "Hidden" | "Visible" | null | undefined;
|
|
68679
|
+
aliasTo?: string | null | undefined;
|
|
68680
|
+
};
|
|
68681
|
+
}>, z.ZodObject<{
|
|
68682
|
+
type: z.ZodLiteral<"ZIndex">;
|
|
68683
|
+
data: z.ZodObject<z.objectUtil.extendShape<{
|
|
68684
|
+
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
68685
|
+
}, {
|
|
68686
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<{
|
|
68687
|
+
unit: "Raw";
|
|
68688
|
+
measure: number;
|
|
68689
|
+
}, z.ZodTypeDef, {
|
|
68690
|
+
unit: "Raw";
|
|
68691
|
+
measure: number;
|
|
68692
|
+
}>>>, {
|
|
68693
|
+
unit: "Raw";
|
|
68694
|
+
measure: number;
|
|
68695
|
+
} | undefined, {
|
|
68696
|
+
unit: "Raw";
|
|
68697
|
+
measure: number;
|
|
68698
|
+
} | null | undefined>;
|
|
68699
|
+
}>, "strip", z.ZodTypeAny, {
|
|
68700
|
+
value?: {
|
|
68701
|
+
unit: "Raw";
|
|
68702
|
+
measure: number;
|
|
68703
|
+
} | undefined;
|
|
68704
|
+
aliasTo?: string | undefined;
|
|
68705
|
+
}, {
|
|
68706
|
+
value?: {
|
|
68707
|
+
unit: "Raw";
|
|
68708
|
+
measure: number;
|
|
68709
|
+
} | null | undefined;
|
|
68710
|
+
aliasTo?: string | null | undefined;
|
|
68711
|
+
}>;
|
|
68712
|
+
}, "strip", z.ZodTypeAny, {
|
|
68713
|
+
type: "ZIndex";
|
|
68714
|
+
data: {
|
|
68715
|
+
value?: {
|
|
68716
|
+
unit: "Raw";
|
|
68717
|
+
measure: number;
|
|
68718
|
+
} | undefined;
|
|
68719
|
+
aliasTo?: string | undefined;
|
|
68720
|
+
};
|
|
68721
|
+
}, {
|
|
68722
|
+
type: "ZIndex";
|
|
68723
|
+
data: {
|
|
68724
|
+
value?: {
|
|
68725
|
+
unit: "Raw";
|
|
68726
|
+
measure: number;
|
|
68727
|
+
} | null | undefined;
|
|
68728
|
+
aliasTo?: string | null | undefined;
|
|
68729
|
+
};
|
|
68730
|
+
}>, z.ZodObject<{
|
|
68731
|
+
type: z.ZodLiteral<"Font">;
|
|
68732
|
+
data: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
68733
|
+
}, "strip", z.ZodTypeAny, {
|
|
68734
|
+
type: "Font";
|
|
68735
|
+
data: Record<string, any>;
|
|
68736
|
+
}, {
|
|
68737
|
+
type: "Font";
|
|
68738
|
+
data: Record<string, any>;
|
|
68739
|
+
}>]>, z.ZodObject<Omit<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
68740
|
+
id: z.ZodString;
|
|
68741
|
+
persistentId: z.ZodString;
|
|
68742
|
+
meta: z.ZodObject<{
|
|
68743
|
+
name: z.ZodString;
|
|
68744
|
+
description: z.ZodOptional<z.ZodString>;
|
|
68745
|
+
}, "strip", z.ZodTypeAny, {
|
|
68746
|
+
name: string;
|
|
68747
|
+
description?: string | undefined;
|
|
68748
|
+
}, {
|
|
68749
|
+
name: string;
|
|
68750
|
+
description?: string | undefined;
|
|
68751
|
+
}>;
|
|
68752
|
+
designSystemVersionId: z.ZodString;
|
|
68753
|
+
createdAt: z.ZodDate;
|
|
68754
|
+
updatedAt: z.ZodDate;
|
|
68755
|
+
}, z.objectUtil.extendShape<{
|
|
68756
|
+
parentPersistentId: z.ZodOptional<z.ZodString>;
|
|
68757
|
+
sortOrder: z.ZodNumber;
|
|
68758
|
+
}, {
|
|
68759
|
+
parentPersistentId: z.ZodString;
|
|
68760
|
+
}>>, {
|
|
68761
|
+
brandPersistentId: z.ZodString;
|
|
68762
|
+
}>, {
|
|
68763
|
+
origin: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
68764
|
+
id: z.ZodString;
|
|
68765
|
+
sourceId: z.ZodString;
|
|
68766
|
+
name: z.ZodString;
|
|
68767
|
+
}, {
|
|
68768
|
+
referenceOriginId: z.ZodOptional<z.ZodString>;
|
|
68769
|
+
referencePersistentId: z.ZodOptional<z.ZodString>;
|
|
68770
|
+
}>, "strip", z.ZodTypeAny, {
|
|
68771
|
+
id: string;
|
|
68772
|
+
name: string;
|
|
68773
|
+
sourceId: string;
|
|
68774
|
+
referenceOriginId?: string | undefined;
|
|
68775
|
+
referencePersistentId?: string | undefined;
|
|
68776
|
+
}, {
|
|
68777
|
+
id: string;
|
|
68778
|
+
name: string;
|
|
68779
|
+
sourceId: string;
|
|
68780
|
+
referenceOriginId?: string | undefined;
|
|
68781
|
+
referencePersistentId?: string | undefined;
|
|
68782
|
+
}>>;
|
|
68783
|
+
}>, "id" | "createdAt" | "updatedAt">, "strip", z.ZodTypeAny, {
|
|
68784
|
+
persistentId: string;
|
|
68785
|
+
designSystemVersionId: string;
|
|
68786
|
+
brandPersistentId: string;
|
|
68787
|
+
parentPersistentId: string;
|
|
68788
|
+
sortOrder: number;
|
|
68789
|
+
meta: {
|
|
68790
|
+
name: string;
|
|
68791
|
+
description?: string | undefined;
|
|
68792
|
+
};
|
|
68793
|
+
origin?: {
|
|
68794
|
+
id: string;
|
|
68795
|
+
name: string;
|
|
68796
|
+
sourceId: string;
|
|
68797
|
+
referenceOriginId?: string | undefined;
|
|
68798
|
+
referencePersistentId?: string | undefined;
|
|
68799
|
+
} | undefined;
|
|
68800
|
+
}, {
|
|
68801
|
+
persistentId: string;
|
|
68802
|
+
designSystemVersionId: string;
|
|
68803
|
+
brandPersistentId: string;
|
|
68804
|
+
parentPersistentId: string;
|
|
68805
|
+
sortOrder: number;
|
|
68806
|
+
meta: {
|
|
68807
|
+
name: string;
|
|
68808
|
+
description?: string | undefined;
|
|
68809
|
+
};
|
|
68810
|
+
origin?: {
|
|
68811
|
+
id: string;
|
|
68812
|
+
name: string;
|
|
68813
|
+
sourceId: string;
|
|
68814
|
+
referenceOriginId?: string | undefined;
|
|
68815
|
+
referencePersistentId?: string | undefined;
|
|
68816
|
+
} | undefined;
|
|
68817
|
+
}>>;
|
|
68818
|
+
type CreateDesignToken = z.infer<typeof CreateDesignToken>;
|
|
68819
|
+
type UpdateDesignToken = OmitStrict<DbUpdate<DesignToken>, "brandPersistentId" | "designSystemVersionId">;
|
|
68820
|
+
type DesignTokensDiff = {
|
|
68821
|
+
toCreate: CreateDesignToken[];
|
|
68822
|
+
toUpdate: UpdateDesignToken[];
|
|
68823
|
+
};
|
|
68824
|
+
declare function extractTokenTypedData<T extends DesignTokenType, I extends DesignTokenTypedDataOfType<T>>(source: I): DesignTokenTypedDataOfType<T>;
|
|
68825
|
+
declare function isImportedDesignToken<T extends DesignTokenType>(designToken: DesignTokenOfType<T>): designToken is ImportedDesignTokenOfType<T>;
|
|
68826
|
+
declare function isDesignTokenOfType<T extends DesignTokenType>(designToken: DesignToken, type: T): designToken is DesignTokenOfType<T>;
|
|
68827
|
+
declare function designTokenTypeFilter<T extends DesignTokenType>(type: T): (designToken: DesignToken) => designToken is DesignTokenOfType<T>;
|
|
68828
|
+
|
|
68829
|
+
/**
|
|
68830
|
+
* Pay attention to correct types!
|
|
68831
|
+
*/
|
|
68832
|
+
declare function mapPageBlockItemValuesV2(pageItems: DocumentationPageContentItem[], definitionsMap: PageBlockDefinitionsMap, fn: (block: PageBlockEditorModelV2, item: PageBlockItemV2, property: PageBlockDefinitionProperty, value: PageBlockItemUntypedValue) => PageBlockItemUntypedValue): void;
|
|
68833
|
+
declare function traversePageBlockItemValuesV2(pageItems: DocumentationPageContentItem[], definitionsMap: PageBlockDefinitionsMap, fn: (block: PageBlockEditorModelV2, item: PageBlockItemV2, property: PageBlockDefinitionProperty, value: PageBlockItemUntypedValue) => void): void;
|
|
68834
|
+
declare function traversePageBlockItemsV2(pageItems: DocumentationPageContentItem[], fn: (block: PageBlockEditorModelV2, item: PageBlockItemV2) => void): void;
|
|
68835
|
+
declare function traversePageItemsV2(pageItems: DocumentationPageContentItem[], fn: (item: PageBlockEditorModelV2) => void): void;
|
|
68836
|
+
declare class PageBlockDefinitionsMap {
|
|
68837
|
+
private definitionsMap;
|
|
68838
|
+
private propertiesMap;
|
|
68839
|
+
constructor(definitions: PageBlockDefinition[]);
|
|
68840
|
+
getDefinition(id: string): PageBlockDefinition | undefined;
|
|
68841
|
+
getDefinitionProperty(defId: string, propId: string): PageBlockDefinitionProperty | undefined;
|
|
68842
|
+
private propertyKey;
|
|
68843
|
+
}
|
|
68844
|
+
|
|
68845
|
+
/**
|
|
68846
|
+
* Snapshot of a documentation page.
|
|
68847
|
+
*
|
|
68848
|
+
* Please note that existence of snapshot's references (including parent persistent id) is not guaranteed.
|
|
68849
|
+
*/
|
|
68850
|
+
declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
68851
|
+
id: z.ZodString;
|
|
68852
|
+
designSystemVersionId: z.ZodString;
|
|
68853
|
+
createdAt: z.ZodDate;
|
|
68854
|
+
updatedAt: z.ZodDate;
|
|
68855
|
+
reason: z.ZodEnum<["Publish", "Deletion"]>;
|
|
68856
|
+
}, {
|
|
68857
|
+
page: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
68858
|
+
id: z.ZodString;
|
|
68859
|
+
persistentId: z.ZodString;
|
|
68860
|
+
meta: z.ZodObject<{
|
|
68861
|
+
name: z.ZodString;
|
|
68862
|
+
description: z.ZodOptional<z.ZodString>;
|
|
68863
|
+
}, "strip", z.ZodTypeAny, {
|
|
68864
|
+
name: string;
|
|
68865
|
+
description?: string | undefined;
|
|
68866
|
+
}, {
|
|
68867
|
+
name: string;
|
|
68868
|
+
description?: string | undefined;
|
|
68869
|
+
}>;
|
|
68870
|
+
designSystemVersionId: z.ZodString;
|
|
68871
|
+
createdAt: z.ZodDate;
|
|
68872
|
+
updatedAt: z.ZodDate;
|
|
68873
|
+
}, z.objectUtil.extendShape<{
|
|
68874
|
+
parentPersistentId: z.ZodOptional<z.ZodString>;
|
|
68875
|
+
sortOrder: z.ZodNumber;
|
|
68876
|
+
}, {
|
|
68877
|
+
parentPersistentId: z.ZodString;
|
|
68878
|
+
}>>, {
|
|
68879
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
68880
|
+
userSlug: z.ZodOptional<z.ZodString>;
|
|
68881
|
+
}>, {
|
|
68882
|
+
shortPersistentId: z.ZodString;
|
|
68883
|
+
data: z.ZodObject<z.objectUtil.extendShape<{
|
|
68884
|
+
configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
68885
|
+
showSidebar: boolean;
|
|
68886
|
+
header: {
|
|
68887
|
+
description: string;
|
|
68888
|
+
alignment: "Center" | "Left";
|
|
68889
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
68890
|
+
showBackgroundOverlay: boolean;
|
|
68891
|
+
showCoverText: boolean;
|
|
68892
|
+
backgroundColor?: {
|
|
68893
|
+
value: string;
|
|
68894
|
+
referencedTokenId?: string | undefined;
|
|
68895
|
+
} | null | undefined;
|
|
68896
|
+
foregroundColor?: {
|
|
68897
|
+
value: string;
|
|
68898
|
+
referencedTokenId?: string | undefined;
|
|
68899
|
+
} | null | undefined;
|
|
68900
|
+
backgroundImageAsset?: {
|
|
68901
|
+
type: "Resource" | "FigmaNode";
|
|
68902
|
+
resource?: {
|
|
68903
|
+
url: string;
|
|
68904
|
+
resourceId: string;
|
|
68905
|
+
} | undefined;
|
|
68906
|
+
figmaNode?: {
|
|
68907
|
+
sourceId: string;
|
|
68908
|
+
frameReferenceId: string;
|
|
68909
|
+
} | undefined;
|
|
68910
|
+
} | null | undefined;
|
|
68911
|
+
minHeight?: number | null | undefined;
|
|
68912
|
+
};
|
|
68913
|
+
isHidden?: boolean | undefined;
|
|
68914
|
+
isPrivate?: boolean | undefined;
|
|
68915
|
+
}, z.ZodTypeDef, {
|
|
68916
|
+
showSidebar: boolean;
|
|
68917
|
+
header: {
|
|
68918
|
+
description: string;
|
|
68919
|
+
alignment: "Center" | "Left";
|
|
68920
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
68921
|
+
showBackgroundOverlay: boolean;
|
|
68922
|
+
showCoverText: boolean;
|
|
68923
|
+
backgroundColor?: {
|
|
68924
|
+
value: string;
|
|
68925
|
+
referencedTokenId?: string | undefined;
|
|
68926
|
+
} | null | undefined;
|
|
68927
|
+
foregroundColor?: {
|
|
68928
|
+
value: string;
|
|
68929
|
+
referencedTokenId?: string | undefined;
|
|
68930
|
+
} | null | undefined;
|
|
68931
|
+
backgroundImageAsset?: {
|
|
68932
|
+
type: "Resource" | "FigmaNode";
|
|
68933
|
+
resource?: {
|
|
68934
|
+
url: string;
|
|
68935
|
+
resourceId: string;
|
|
68936
|
+
} | undefined;
|
|
68937
|
+
figmaNode?: {
|
|
68938
|
+
sourceId: string;
|
|
68939
|
+
frameReferenceId: string;
|
|
68940
|
+
} | undefined;
|
|
68941
|
+
} | null | undefined;
|
|
68942
|
+
minHeight?: number | null | undefined;
|
|
68943
|
+
};
|
|
68944
|
+
isHidden?: boolean | undefined;
|
|
68945
|
+
isPrivate?: boolean | undefined;
|
|
68946
|
+
}>>>, {
|
|
68947
|
+
showSidebar: boolean;
|
|
68948
|
+
header: {
|
|
68949
|
+
description: string;
|
|
68950
|
+
alignment: "Center" | "Left";
|
|
68951
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
68952
|
+
showBackgroundOverlay: boolean;
|
|
68953
|
+
showCoverText: boolean;
|
|
68954
|
+
backgroundColor?: {
|
|
68955
|
+
value: string;
|
|
68956
|
+
referencedTokenId?: string | undefined;
|
|
68957
|
+
} | null | undefined;
|
|
68958
|
+
foregroundColor?: {
|
|
68959
|
+
value: string;
|
|
68960
|
+
referencedTokenId?: string | undefined;
|
|
68961
|
+
} | null | undefined;
|
|
68962
|
+
backgroundImageAsset?: {
|
|
68963
|
+
type: "Resource" | "FigmaNode";
|
|
68964
|
+
resource?: {
|
|
68965
|
+
url: string;
|
|
68966
|
+
resourceId: string;
|
|
68967
|
+
} | undefined;
|
|
68968
|
+
figmaNode?: {
|
|
68969
|
+
sourceId: string;
|
|
68970
|
+
frameReferenceId: string;
|
|
68971
|
+
} | undefined;
|
|
68972
|
+
} | null | undefined;
|
|
68973
|
+
minHeight?: number | null | undefined;
|
|
68974
|
+
};
|
|
68975
|
+
isHidden?: boolean | undefined;
|
|
68976
|
+
isPrivate?: boolean | undefined;
|
|
68977
|
+
} | undefined, {
|
|
68978
|
+
showSidebar: boolean;
|
|
68979
|
+
header: {
|
|
68980
|
+
description: string;
|
|
68981
|
+
alignment: "Center" | "Left";
|
|
68982
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
68983
|
+
showBackgroundOverlay: boolean;
|
|
68984
|
+
showCoverText: boolean;
|
|
68985
|
+
backgroundColor?: {
|
|
68986
|
+
value: string;
|
|
68987
|
+
referencedTokenId?: string | undefined;
|
|
68988
|
+
} | null | undefined;
|
|
68989
|
+
foregroundColor?: {
|
|
68990
|
+
value: string;
|
|
68991
|
+
referencedTokenId?: string | undefined;
|
|
68992
|
+
} | null | undefined;
|
|
68993
|
+
backgroundImageAsset?: {
|
|
68994
|
+
type: "Resource" | "FigmaNode";
|
|
68995
|
+
resource?: {
|
|
68996
|
+
url: string;
|
|
68997
|
+
resourceId: string;
|
|
68998
|
+
} | undefined;
|
|
68999
|
+
figmaNode?: {
|
|
69000
|
+
sourceId: string;
|
|
69001
|
+
frameReferenceId: string;
|
|
69002
|
+
} | undefined;
|
|
69003
|
+
} | null | undefined;
|
|
69004
|
+
minHeight?: number | null | undefined;
|
|
69005
|
+
};
|
|
69006
|
+
isHidden?: boolean | undefined;
|
|
69007
|
+
isPrivate?: boolean | undefined;
|
|
69008
|
+
} | null | undefined>;
|
|
69009
|
+
}, {
|
|
69010
|
+
oldBlocks: z.ZodOptional<z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
|
|
69011
|
+
persistentId: string;
|
|
69012
|
+
type: "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
69013
|
+
url?: string | null | undefined;
|
|
69014
|
+
tokenType?: "Image" | "Font" | "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" | null | undefined;
|
|
69015
|
+
asset?: {
|
|
69016
|
+
type: "image" | "figmaFrame";
|
|
69017
|
+
id?: string | null | undefined;
|
|
69018
|
+
url?: string | null | undefined;
|
|
69019
|
+
figmaFrame?: {
|
|
69020
|
+
persistentId: string;
|
|
69021
|
+
sourceId: string;
|
|
69022
|
+
sourceFrameId: string;
|
|
69023
|
+
description?: string | null | undefined;
|
|
69024
|
+
title?: string | null | undefined;
|
|
69025
|
+
origin?: {
|
|
69026
|
+
valid?: boolean | null | undefined;
|
|
69027
|
+
title?: string | null | undefined;
|
|
69028
|
+
assetId?: string | null | undefined;
|
|
69029
|
+
width?: number | null | undefined;
|
|
69030
|
+
height?: number | null | undefined;
|
|
69031
|
+
sourceFileName?: string | null | undefined;
|
|
69032
|
+
previewUrl?: string | null | undefined;
|
|
69033
|
+
referenceId?: string | null | undefined;
|
|
69034
|
+
assetScale?: number | null | undefined;
|
|
69035
|
+
} | null | undefined;
|
|
69036
|
+
backgroundColor?: {
|
|
69037
|
+
value: string;
|
|
69038
|
+
} | null | undefined;
|
|
69039
|
+
} | null | undefined;
|
|
69040
|
+
} | null | undefined;
|
|
69041
|
+
theme?: {
|
|
69042
|
+
type: "Override" | "Comparison";
|
|
69043
|
+
themeIds: string[];
|
|
69044
|
+
} | null | undefined;
|
|
69045
|
+
backgroundColor?: {
|
|
69046
|
+
value: string;
|
|
69047
|
+
} | null | undefined;
|
|
69048
|
+
urlPreview?: {
|
|
69049
|
+
description?: string | null | undefined;
|
|
69050
|
+
title?: string | null | undefined;
|
|
69051
|
+
thumbnailUrl?: string | null | undefined;
|
|
69052
|
+
} | null | undefined;
|
|
69053
|
+
alignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
69054
|
+
text?: {
|
|
69055
|
+
spans: {
|
|
69056
|
+
text: string;
|
|
69057
|
+
attributes: {
|
|
69058
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
69059
|
+
link?: string | null | undefined;
|
|
69060
|
+
documentationItemId?: string | null | undefined;
|
|
69061
|
+
openInNewTab?: boolean | null | undefined;
|
|
69062
|
+
openInNewWindow?: boolean | null | undefined;
|
|
69063
|
+
}[];
|
|
69064
|
+
}[];
|
|
69065
|
+
} | null | undefined;
|
|
69066
|
+
designObjectId?: string | null | undefined;
|
|
69067
|
+
designObjectIds?: string[] | null | undefined;
|
|
69068
|
+
showNestedGroups?: boolean | null | undefined;
|
|
69069
|
+
brandId?: string | null | undefined;
|
|
69070
|
+
caption?: string | null | undefined;
|
|
69071
|
+
headingType?: number | null | undefined;
|
|
69072
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
69073
|
+
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
69074
|
+
urlInput?: string | null | undefined;
|
|
69075
|
+
shortcuts?: {
|
|
69076
|
+
persistentId: string;
|
|
69077
|
+
url?: string | null | undefined;
|
|
69078
|
+
description?: string | null | undefined;
|
|
69079
|
+
title?: string | null | undefined;
|
|
69080
|
+
asset?: {
|
|
69081
|
+
type: "image" | "figmaFrame";
|
|
69082
|
+
id?: string | null | undefined;
|
|
69083
|
+
url?: string | null | undefined;
|
|
69084
|
+
figmaFrame?: {
|
|
69085
|
+
persistentId: string;
|
|
69086
|
+
sourceId: string;
|
|
69087
|
+
sourceFrameId: string;
|
|
69088
|
+
description?: string | null | undefined;
|
|
69089
|
+
title?: string | null | undefined;
|
|
69090
|
+
origin?: {
|
|
69091
|
+
valid?: boolean | null | undefined;
|
|
69092
|
+
title?: string | null | undefined;
|
|
69093
|
+
assetId?: string | null | undefined;
|
|
69094
|
+
width?: number | null | undefined;
|
|
69095
|
+
height?: number | null | undefined;
|
|
69096
|
+
sourceFileName?: string | null | undefined;
|
|
69097
|
+
previewUrl?: string | null | undefined;
|
|
69098
|
+
referenceId?: string | null | undefined;
|
|
69099
|
+
assetScale?: number | null | undefined;
|
|
69100
|
+
} | null | undefined;
|
|
69101
|
+
backgroundColor?: {
|
|
69102
|
+
value: string;
|
|
69103
|
+
} | null | undefined;
|
|
69104
|
+
} | null | undefined;
|
|
69105
|
+
} | null | undefined;
|
|
69106
|
+
documentationItemId?: string | null | undefined;
|
|
69107
|
+
pageHeadingId?: string | null | undefined;
|
|
69108
|
+
openInNewTab?: boolean | null | undefined;
|
|
69109
|
+
urlPreview?: {
|
|
69110
|
+
description?: string | null | undefined;
|
|
69111
|
+
title?: string | null | undefined;
|
|
69112
|
+
thumbnailUrl?: string | null | undefined;
|
|
69113
|
+
} | null | undefined;
|
|
69114
|
+
documentationItemPreview?: {
|
|
69115
|
+
valid?: boolean | null | undefined;
|
|
69116
|
+
title?: string | null | undefined;
|
|
69117
|
+
} | null | undefined;
|
|
69118
|
+
}[] | null | undefined;
|
|
69119
|
+
customBlockKey?: string | null | undefined;
|
|
69120
|
+
customBlockProperties?: {
|
|
69121
|
+
key: string;
|
|
69122
|
+
value?: any;
|
|
69123
|
+
}[] | null | undefined;
|
|
69124
|
+
variantKey?: string | null | undefined;
|
|
69125
|
+
figmaFrameProperties?: {
|
|
69126
|
+
alignment: "Center" | "FrameHeight";
|
|
69127
|
+
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
69128
|
+
showTitles: boolean;
|
|
69129
|
+
color?: {
|
|
69130
|
+
value: string;
|
|
69131
|
+
} | null | undefined;
|
|
69132
|
+
backgroundColor?: {
|
|
69133
|
+
value: string;
|
|
69134
|
+
} | null | undefined;
|
|
69135
|
+
} | null | undefined;
|
|
69136
|
+
figmaFrames?: {
|
|
69137
|
+
persistentId: string;
|
|
69138
|
+
sourceId: string;
|
|
69139
|
+
sourceFrameId: string;
|
|
69140
|
+
description?: string | null | undefined;
|
|
69141
|
+
title?: string | null | undefined;
|
|
69142
|
+
origin?: {
|
|
69143
|
+
valid?: boolean | null | undefined;
|
|
69144
|
+
title?: string | null | undefined;
|
|
69145
|
+
assetId?: string | null | undefined;
|
|
69146
|
+
width?: number | null | undefined;
|
|
69147
|
+
height?: number | null | undefined;
|
|
69148
|
+
sourceFileName?: string | null | undefined;
|
|
69149
|
+
previewUrl?: string | null | undefined;
|
|
69150
|
+
referenceId?: string | null | undefined;
|
|
69151
|
+
assetScale?: number | null | undefined;
|
|
69152
|
+
} | null | undefined;
|
|
69153
|
+
backgroundColor?: {
|
|
69154
|
+
value: string;
|
|
69155
|
+
} | null | undefined;
|
|
69156
|
+
}[] | null | undefined;
|
|
69157
|
+
size?: {
|
|
69158
|
+
width?: number | null | undefined;
|
|
69159
|
+
height?: number | null | undefined;
|
|
69160
|
+
} | null | undefined;
|
|
69161
|
+
renderCodeProperties?: {
|
|
69162
|
+
showCode: boolean;
|
|
69163
|
+
showControls?: boolean | undefined;
|
|
69164
|
+
} | null | undefined;
|
|
69165
|
+
componentAssets?: {
|
|
69166
|
+
persistentId: string;
|
|
69167
|
+
componentAssetId: string;
|
|
69168
|
+
description?: string | null | undefined;
|
|
69169
|
+
title?: string | null | undefined;
|
|
69170
|
+
backgroundColor?: {
|
|
69171
|
+
value: string;
|
|
69172
|
+
} | null | undefined;
|
|
69173
|
+
}[] | null | undefined;
|
|
69174
|
+
tableProperties?: {
|
|
69175
|
+
showBorders: boolean;
|
|
69176
|
+
showHeaderRow: boolean;
|
|
69177
|
+
showHeaderColumn: boolean;
|
|
69178
|
+
columns: {
|
|
69179
|
+
id: string;
|
|
69180
|
+
width: {
|
|
69181
|
+
value?: {
|
|
69182
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
69183
|
+
measure: number;
|
|
69184
|
+
} | null | undefined;
|
|
69185
|
+
aliasTo?: string | null | undefined;
|
|
69186
|
+
};
|
|
69187
|
+
}[];
|
|
69188
|
+
} | null | undefined;
|
|
69189
|
+
columnId?: string | null | undefined;
|
|
69190
|
+
blacklistedElementProperties?: string[] | null | undefined;
|
|
69191
|
+
userMetadata?: string | null | undefined;
|
|
69192
|
+
} & {
|
|
69193
|
+
children: ({
|
|
69194
|
+
persistentId: string;
|
|
69195
|
+
type: "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
69196
|
+
url?: string | null | undefined;
|
|
69197
|
+
tokenType?: "Image" | "Font" | "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" | null | undefined;
|
|
69198
|
+
asset?: {
|
|
69199
|
+
type: "image" | "figmaFrame";
|
|
69200
|
+
id?: string | null | undefined;
|
|
69201
|
+
url?: string | null | undefined;
|
|
69202
|
+
figmaFrame?: {
|
|
69203
|
+
persistentId: string;
|
|
69204
|
+
sourceId: string;
|
|
69205
|
+
sourceFrameId: string;
|
|
69206
|
+
description?: string | null | undefined;
|
|
69207
|
+
title?: string | null | undefined;
|
|
69208
|
+
origin?: {
|
|
69209
|
+
valid?: boolean | null | undefined;
|
|
69210
|
+
title?: string | null | undefined;
|
|
69211
|
+
assetId?: string | null | undefined;
|
|
69212
|
+
width?: number | null | undefined;
|
|
69213
|
+
height?: number | null | undefined;
|
|
69214
|
+
sourceFileName?: string | null | undefined;
|
|
69215
|
+
previewUrl?: string | null | undefined;
|
|
69216
|
+
referenceId?: string | null | undefined;
|
|
69217
|
+
assetScale?: number | null | undefined;
|
|
69218
|
+
} | null | undefined;
|
|
69219
|
+
backgroundColor?: {
|
|
69220
|
+
value: string;
|
|
69221
|
+
} | null | undefined;
|
|
69222
|
+
} | null | undefined;
|
|
69223
|
+
} | null | undefined;
|
|
69224
|
+
theme?: {
|
|
69225
|
+
type: "Override" | "Comparison";
|
|
69226
|
+
themeIds: string[];
|
|
69227
|
+
} | null | undefined;
|
|
69228
|
+
backgroundColor?: {
|
|
69229
|
+
value: string;
|
|
69230
|
+
} | null | undefined;
|
|
69231
|
+
urlPreview?: {
|
|
69232
|
+
description?: string | null | undefined;
|
|
69233
|
+
title?: string | null | undefined;
|
|
69234
|
+
thumbnailUrl?: string | null | undefined;
|
|
69235
|
+
} | null | undefined;
|
|
69236
|
+
alignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
69237
|
+
text?: {
|
|
69238
|
+
spans: {
|
|
69239
|
+
text: string;
|
|
69240
|
+
attributes: {
|
|
69241
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
69242
|
+
link?: string | null | undefined;
|
|
69243
|
+
documentationItemId?: string | null | undefined;
|
|
69244
|
+
openInNewTab?: boolean | null | undefined;
|
|
69245
|
+
openInNewWindow?: boolean | null | undefined;
|
|
69246
|
+
}[];
|
|
69247
|
+
}[];
|
|
69248
|
+
} | null | undefined;
|
|
69249
|
+
designObjectId?: string | null | undefined;
|
|
69250
|
+
designObjectIds?: string[] | null | undefined;
|
|
69251
|
+
showNestedGroups?: boolean | null | undefined;
|
|
69252
|
+
brandId?: string | null | undefined;
|
|
69253
|
+
caption?: string | null | undefined;
|
|
69254
|
+
headingType?: number | null | undefined;
|
|
69255
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
69256
|
+
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
69257
|
+
urlInput?: string | null | undefined;
|
|
69258
|
+
shortcuts?: {
|
|
69259
|
+
persistentId: string;
|
|
69260
|
+
url?: string | null | undefined;
|
|
69261
|
+
description?: string | null | undefined;
|
|
69262
|
+
title?: string | null | undefined;
|
|
69263
|
+
asset?: {
|
|
69264
|
+
type: "image" | "figmaFrame";
|
|
69265
|
+
id?: string | null | undefined;
|
|
69266
|
+
url?: string | null | undefined;
|
|
69267
|
+
figmaFrame?: {
|
|
69268
|
+
persistentId: string;
|
|
69269
|
+
sourceId: string;
|
|
69270
|
+
sourceFrameId: string;
|
|
69271
|
+
description?: string | null | undefined;
|
|
69272
|
+
title?: string | null | undefined;
|
|
69273
|
+
origin?: {
|
|
69274
|
+
valid?: boolean | null | undefined;
|
|
69275
|
+
title?: string | null | undefined;
|
|
69276
|
+
assetId?: string | null | undefined;
|
|
69277
|
+
width?: number | null | undefined;
|
|
69278
|
+
height?: number | null | undefined;
|
|
69279
|
+
sourceFileName?: string | null | undefined;
|
|
69280
|
+
previewUrl?: string | null | undefined;
|
|
69281
|
+
referenceId?: string | null | undefined;
|
|
69282
|
+
assetScale?: number | null | undefined;
|
|
69283
|
+
} | null | undefined;
|
|
69284
|
+
backgroundColor?: {
|
|
69285
|
+
value: string;
|
|
69286
|
+
} | null | undefined;
|
|
69287
|
+
} | null | undefined;
|
|
69288
|
+
} | null | undefined;
|
|
69289
|
+
documentationItemId?: string | null | undefined;
|
|
69290
|
+
pageHeadingId?: string | null | undefined;
|
|
69291
|
+
openInNewTab?: boolean | null | undefined;
|
|
69292
|
+
urlPreview?: {
|
|
69293
|
+
description?: string | null | undefined;
|
|
69294
|
+
title?: string | null | undefined;
|
|
69295
|
+
thumbnailUrl?: string | null | undefined;
|
|
69296
|
+
} | null | undefined;
|
|
69297
|
+
documentationItemPreview?: {
|
|
69298
|
+
valid?: boolean | null | undefined;
|
|
69299
|
+
title?: string | null | undefined;
|
|
69300
|
+
} | null | undefined;
|
|
69301
|
+
}[] | null | undefined;
|
|
69302
|
+
customBlockKey?: string | null | undefined;
|
|
69303
|
+
customBlockProperties?: {
|
|
69304
|
+
key: string;
|
|
69305
|
+
value?: any;
|
|
69306
|
+
}[] | null | undefined;
|
|
69307
|
+
variantKey?: string | null | undefined;
|
|
69308
|
+
figmaFrameProperties?: {
|
|
69309
|
+
alignment: "Center" | "FrameHeight";
|
|
69310
|
+
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
69311
|
+
showTitles: boolean;
|
|
69312
|
+
color?: {
|
|
69313
|
+
value: string;
|
|
69314
|
+
} | null | undefined;
|
|
69315
|
+
backgroundColor?: {
|
|
69316
|
+
value: string;
|
|
69317
|
+
} | null | undefined;
|
|
69318
|
+
} | null | undefined;
|
|
69319
|
+
figmaFrames?: {
|
|
69320
|
+
persistentId: string;
|
|
69321
|
+
sourceId: string;
|
|
69322
|
+
sourceFrameId: string;
|
|
69323
|
+
description?: string | null | undefined;
|
|
69324
|
+
title?: string | null | undefined;
|
|
69325
|
+
origin?: {
|
|
69326
|
+
valid?: boolean | null | undefined;
|
|
69327
|
+
title?: string | null | undefined;
|
|
69328
|
+
assetId?: string | null | undefined;
|
|
69329
|
+
width?: number | null | undefined;
|
|
69330
|
+
height?: number | null | undefined;
|
|
69331
|
+
sourceFileName?: string | null | undefined;
|
|
69332
|
+
previewUrl?: string | null | undefined;
|
|
69333
|
+
referenceId?: string | null | undefined;
|
|
69334
|
+
assetScale?: number | null | undefined;
|
|
69335
|
+
} | null | undefined;
|
|
69336
|
+
backgroundColor?: {
|
|
69337
|
+
value: string;
|
|
69338
|
+
} | null | undefined;
|
|
69339
|
+
}[] | null | undefined;
|
|
69340
|
+
size?: {
|
|
69341
|
+
width?: number | null | undefined;
|
|
69342
|
+
height?: number | null | undefined;
|
|
69343
|
+
} | null | undefined;
|
|
69344
|
+
renderCodeProperties?: {
|
|
69345
|
+
showCode: boolean;
|
|
69346
|
+
showControls?: boolean | undefined;
|
|
69347
|
+
} | null | undefined;
|
|
69348
|
+
componentAssets?: {
|
|
69349
|
+
persistentId: string;
|
|
69350
|
+
componentAssetId: string;
|
|
69351
|
+
description?: string | null | undefined;
|
|
69352
|
+
title?: string | null | undefined;
|
|
69353
|
+
backgroundColor?: {
|
|
69354
|
+
value: string;
|
|
69355
|
+
} | null | undefined;
|
|
69356
|
+
}[] | null | undefined;
|
|
69357
|
+
tableProperties?: {
|
|
69358
|
+
showBorders: boolean;
|
|
69359
|
+
showHeaderRow: boolean;
|
|
69360
|
+
showHeaderColumn: boolean;
|
|
69361
|
+
columns: {
|
|
69362
|
+
id: string;
|
|
69363
|
+
width: {
|
|
69364
|
+
value?: {
|
|
69365
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
69366
|
+
measure: number;
|
|
69367
|
+
} | null | undefined;
|
|
69368
|
+
aliasTo?: string | null | undefined;
|
|
69369
|
+
};
|
|
69370
|
+
}[];
|
|
69371
|
+
} | null | undefined;
|
|
69372
|
+
columnId?: string | null | undefined;
|
|
69373
|
+
blacklistedElementProperties?: string[] | null | undefined;
|
|
69374
|
+
userMetadata?: string | null | undefined;
|
|
69375
|
+
} & any)[] | null | undefined;
|
|
69376
|
+
}>, "many">>;
|
|
69377
|
+
}>, "strip", z.ZodTypeAny, {
|
|
69378
|
+
configuration?: {
|
|
69379
|
+
showSidebar: boolean;
|
|
69380
|
+
header: {
|
|
69381
|
+
description: string;
|
|
69382
|
+
alignment: "Center" | "Left";
|
|
69383
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
69384
|
+
showBackgroundOverlay: boolean;
|
|
69385
|
+
showCoverText: boolean;
|
|
69386
|
+
backgroundColor?: {
|
|
69387
|
+
value: string;
|
|
69388
|
+
referencedTokenId?: string | undefined;
|
|
69389
|
+
} | null | undefined;
|
|
69390
|
+
foregroundColor?: {
|
|
69391
|
+
value: string;
|
|
69392
|
+
referencedTokenId?: string | undefined;
|
|
69393
|
+
} | null | undefined;
|
|
69394
|
+
backgroundImageAsset?: {
|
|
69395
|
+
type: "Resource" | "FigmaNode";
|
|
69396
|
+
resource?: {
|
|
69397
|
+
url: string;
|
|
69398
|
+
resourceId: string;
|
|
69399
|
+
} | undefined;
|
|
69400
|
+
figmaNode?: {
|
|
69401
|
+
sourceId: string;
|
|
69402
|
+
frameReferenceId: string;
|
|
69403
|
+
} | undefined;
|
|
69404
|
+
} | null | undefined;
|
|
69405
|
+
minHeight?: number | null | undefined;
|
|
69406
|
+
};
|
|
69407
|
+
isHidden?: boolean | undefined;
|
|
69408
|
+
isPrivate?: boolean | undefined;
|
|
69409
|
+
} | undefined;
|
|
69410
|
+
oldBlocks?: PageBlockV1[] | undefined;
|
|
69411
|
+
}, {
|
|
69412
|
+
configuration?: {
|
|
69413
|
+
showSidebar: boolean;
|
|
69414
|
+
header: {
|
|
69415
|
+
description: string;
|
|
69416
|
+
alignment: "Center" | "Left";
|
|
69417
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
69418
|
+
showBackgroundOverlay: boolean;
|
|
69419
|
+
showCoverText: boolean;
|
|
69420
|
+
backgroundColor?: {
|
|
69421
|
+
value: string;
|
|
69422
|
+
referencedTokenId?: string | undefined;
|
|
69423
|
+
} | null | undefined;
|
|
69424
|
+
foregroundColor?: {
|
|
69425
|
+
value: string;
|
|
69426
|
+
referencedTokenId?: string | undefined;
|
|
69427
|
+
} | null | undefined;
|
|
69428
|
+
backgroundImageAsset?: {
|
|
69429
|
+
type: "Resource" | "FigmaNode";
|
|
69430
|
+
resource?: {
|
|
69431
|
+
url: string;
|
|
69432
|
+
resourceId: string;
|
|
69433
|
+
} | undefined;
|
|
69434
|
+
figmaNode?: {
|
|
69435
|
+
sourceId: string;
|
|
69436
|
+
frameReferenceId: string;
|
|
69437
|
+
} | undefined;
|
|
69438
|
+
} | null | undefined;
|
|
69439
|
+
minHeight?: number | null | undefined;
|
|
69440
|
+
};
|
|
69441
|
+
isHidden?: boolean | undefined;
|
|
69442
|
+
isPrivate?: boolean | undefined;
|
|
69443
|
+
} | null | undefined;
|
|
69444
|
+
oldBlocks?: ({
|
|
69445
|
+
persistentId: string;
|
|
69446
|
+
type: "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
69447
|
+
url?: string | null | undefined;
|
|
69448
|
+
tokenType?: "Image" | "Font" | "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" | null | undefined;
|
|
69449
|
+
asset?: {
|
|
69450
|
+
type: "image" | "figmaFrame";
|
|
69451
|
+
id?: string | null | undefined;
|
|
69452
|
+
url?: string | null | undefined;
|
|
69453
|
+
figmaFrame?: {
|
|
69454
|
+
persistentId: string;
|
|
69455
|
+
sourceId: string;
|
|
69456
|
+
sourceFrameId: string;
|
|
69457
|
+
description?: string | null | undefined;
|
|
69458
|
+
title?: string | null | undefined;
|
|
69459
|
+
origin?: {
|
|
69460
|
+
valid?: boolean | null | undefined;
|
|
69461
|
+
title?: string | null | undefined;
|
|
69462
|
+
assetId?: string | null | undefined;
|
|
69463
|
+
width?: number | null | undefined;
|
|
69464
|
+
height?: number | null | undefined;
|
|
69465
|
+
sourceFileName?: string | null | undefined;
|
|
69466
|
+
previewUrl?: string | null | undefined;
|
|
69467
|
+
referenceId?: string | null | undefined;
|
|
69468
|
+
assetScale?: number | null | undefined;
|
|
69469
|
+
} | null | undefined;
|
|
69470
|
+
backgroundColor?: {
|
|
69471
|
+
value: string;
|
|
69472
|
+
} | null | undefined;
|
|
69473
|
+
} | null | undefined;
|
|
69474
|
+
} | null | undefined;
|
|
69475
|
+
theme?: {
|
|
69476
|
+
type: "Override" | "Comparison";
|
|
69477
|
+
themeIds: string[];
|
|
69478
|
+
} | null | undefined;
|
|
69479
|
+
backgroundColor?: {
|
|
69480
|
+
value: string;
|
|
69481
|
+
} | null | undefined;
|
|
69482
|
+
urlPreview?: {
|
|
69483
|
+
description?: string | null | undefined;
|
|
69484
|
+
title?: string | null | undefined;
|
|
69485
|
+
thumbnailUrl?: string | null | undefined;
|
|
69486
|
+
} | null | undefined;
|
|
69487
|
+
alignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
69488
|
+
text?: {
|
|
69489
|
+
spans: {
|
|
69490
|
+
text: string;
|
|
69491
|
+
attributes: {
|
|
69492
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
69493
|
+
link?: string | null | undefined;
|
|
69494
|
+
documentationItemId?: string | null | undefined;
|
|
69495
|
+
openInNewTab?: boolean | null | undefined;
|
|
69496
|
+
openInNewWindow?: boolean | null | undefined;
|
|
69497
|
+
}[];
|
|
69498
|
+
}[];
|
|
69499
|
+
} | null | undefined;
|
|
69500
|
+
designObjectId?: string | null | undefined;
|
|
69501
|
+
designObjectIds?: string[] | null | undefined;
|
|
69502
|
+
showNestedGroups?: boolean | null | undefined;
|
|
69503
|
+
brandId?: string | null | undefined;
|
|
69504
|
+
caption?: string | null | undefined;
|
|
69505
|
+
headingType?: number | null | undefined;
|
|
69506
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
69507
|
+
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
69508
|
+
urlInput?: string | null | undefined;
|
|
69509
|
+
shortcuts?: {
|
|
69510
|
+
persistentId: string;
|
|
69511
|
+
url?: string | null | undefined;
|
|
69512
|
+
description?: string | null | undefined;
|
|
69513
|
+
title?: string | null | undefined;
|
|
69514
|
+
asset?: {
|
|
69515
|
+
type: "image" | "figmaFrame";
|
|
69516
|
+
id?: string | null | undefined;
|
|
69517
|
+
url?: string | null | undefined;
|
|
69518
|
+
figmaFrame?: {
|
|
69519
|
+
persistentId: string;
|
|
69520
|
+
sourceId: string;
|
|
69521
|
+
sourceFrameId: string;
|
|
69522
|
+
description?: string | null | undefined;
|
|
69523
|
+
title?: string | null | undefined;
|
|
69524
|
+
origin?: {
|
|
69525
|
+
valid?: boolean | null | undefined;
|
|
69526
|
+
title?: string | null | undefined;
|
|
69527
|
+
assetId?: string | null | undefined;
|
|
69528
|
+
width?: number | null | undefined;
|
|
69529
|
+
height?: number | null | undefined;
|
|
69530
|
+
sourceFileName?: string | null | undefined;
|
|
69531
|
+
previewUrl?: string | null | undefined;
|
|
69532
|
+
referenceId?: string | null | undefined;
|
|
69533
|
+
assetScale?: number | null | undefined;
|
|
69534
|
+
} | null | undefined;
|
|
69535
|
+
backgroundColor?: {
|
|
69536
|
+
value: string;
|
|
69537
|
+
} | null | undefined;
|
|
69538
|
+
} | null | undefined;
|
|
69539
|
+
} | null | undefined;
|
|
69540
|
+
documentationItemId?: string | null | undefined;
|
|
69541
|
+
pageHeadingId?: string | null | undefined;
|
|
69542
|
+
openInNewTab?: boolean | null | undefined;
|
|
69543
|
+
urlPreview?: {
|
|
69544
|
+
description?: string | null | undefined;
|
|
69545
|
+
title?: string | null | undefined;
|
|
69546
|
+
thumbnailUrl?: string | null | undefined;
|
|
69547
|
+
} | null | undefined;
|
|
69548
|
+
documentationItemPreview?: {
|
|
69549
|
+
valid?: boolean | null | undefined;
|
|
69550
|
+
title?: string | null | undefined;
|
|
69551
|
+
} | null | undefined;
|
|
69552
|
+
}[] | null | undefined;
|
|
69553
|
+
customBlockKey?: string | null | undefined;
|
|
69554
|
+
customBlockProperties?: {
|
|
69555
|
+
key: string;
|
|
69556
|
+
value?: any;
|
|
69557
|
+
}[] | null | undefined;
|
|
69558
|
+
variantKey?: string | null | undefined;
|
|
69559
|
+
figmaFrameProperties?: {
|
|
69560
|
+
alignment: "Center" | "FrameHeight";
|
|
69561
|
+
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
69562
|
+
showTitles: boolean;
|
|
69563
|
+
color?: {
|
|
69564
|
+
value: string;
|
|
69565
|
+
} | null | undefined;
|
|
69566
|
+
backgroundColor?: {
|
|
69567
|
+
value: string;
|
|
69568
|
+
} | null | undefined;
|
|
69569
|
+
} | null | undefined;
|
|
69570
|
+
figmaFrames?: {
|
|
69571
|
+
persistentId: string;
|
|
69572
|
+
sourceId: string;
|
|
69573
|
+
sourceFrameId: string;
|
|
69574
|
+
description?: string | null | undefined;
|
|
69575
|
+
title?: string | null | undefined;
|
|
69576
|
+
origin?: {
|
|
69577
|
+
valid?: boolean | null | undefined;
|
|
69578
|
+
title?: string | null | undefined;
|
|
69579
|
+
assetId?: string | null | undefined;
|
|
69580
|
+
width?: number | null | undefined;
|
|
69581
|
+
height?: number | null | undefined;
|
|
69582
|
+
sourceFileName?: string | null | undefined;
|
|
69583
|
+
previewUrl?: string | null | undefined;
|
|
69584
|
+
referenceId?: string | null | undefined;
|
|
69585
|
+
assetScale?: number | null | undefined;
|
|
69586
|
+
} | null | undefined;
|
|
69587
|
+
backgroundColor?: {
|
|
69588
|
+
value: string;
|
|
69589
|
+
} | null | undefined;
|
|
69590
|
+
}[] | null | undefined;
|
|
69591
|
+
size?: {
|
|
69592
|
+
width?: number | null | undefined;
|
|
69593
|
+
height?: number | null | undefined;
|
|
69594
|
+
} | null | undefined;
|
|
69595
|
+
renderCodeProperties?: {
|
|
69596
|
+
showCode: boolean;
|
|
69597
|
+
showControls?: boolean | undefined;
|
|
69598
|
+
} | null | undefined;
|
|
69599
|
+
componentAssets?: {
|
|
69600
|
+
persistentId: string;
|
|
69601
|
+
componentAssetId: string;
|
|
69602
|
+
description?: string | null | undefined;
|
|
69603
|
+
title?: string | null | undefined;
|
|
69604
|
+
backgroundColor?: {
|
|
69605
|
+
value: string;
|
|
69606
|
+
} | null | undefined;
|
|
69607
|
+
}[] | null | undefined;
|
|
69608
|
+
tableProperties?: {
|
|
69609
|
+
showBorders: boolean;
|
|
69610
|
+
showHeaderRow: boolean;
|
|
69611
|
+
showHeaderColumn: boolean;
|
|
69612
|
+
columns: {
|
|
69613
|
+
id: string;
|
|
69614
|
+
width: {
|
|
69615
|
+
value?: {
|
|
69616
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
69617
|
+
measure: number;
|
|
69618
|
+
} | null | undefined;
|
|
69619
|
+
aliasTo?: string | null | undefined;
|
|
69620
|
+
};
|
|
69621
|
+
}[];
|
|
69622
|
+
} | null | undefined;
|
|
69623
|
+
columnId?: string | null | undefined;
|
|
69624
|
+
blacklistedElementProperties?: string[] | null | undefined;
|
|
69625
|
+
userMetadata?: string | null | undefined;
|
|
69626
|
+
} & {
|
|
69627
|
+
children: ({
|
|
69628
|
+
persistentId: string;
|
|
69629
|
+
type: "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
69630
|
+
url?: string | null | undefined;
|
|
69631
|
+
tokenType?: "Image" | "Font" | "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" | null | undefined;
|
|
69632
|
+
asset?: {
|
|
69633
|
+
type: "image" | "figmaFrame";
|
|
69634
|
+
id?: string | null | undefined;
|
|
69635
|
+
url?: string | null | undefined;
|
|
69636
|
+
figmaFrame?: {
|
|
69637
|
+
persistentId: string;
|
|
69638
|
+
sourceId: string;
|
|
69639
|
+
sourceFrameId: string;
|
|
69640
|
+
description?: string | null | undefined;
|
|
69641
|
+
title?: string | null | undefined;
|
|
69642
|
+
origin?: {
|
|
69643
|
+
valid?: boolean | null | undefined;
|
|
69644
|
+
title?: string | null | undefined;
|
|
69645
|
+
assetId?: string | null | undefined;
|
|
69646
|
+
width?: number | null | undefined;
|
|
69647
|
+
height?: number | null | undefined;
|
|
69648
|
+
sourceFileName?: string | null | undefined;
|
|
69649
|
+
previewUrl?: string | null | undefined;
|
|
69650
|
+
referenceId?: string | null | undefined;
|
|
69651
|
+
assetScale?: number | null | undefined;
|
|
69652
|
+
} | null | undefined;
|
|
69653
|
+
backgroundColor?: {
|
|
69654
|
+
value: string;
|
|
69655
|
+
} | null | undefined;
|
|
69656
|
+
} | null | undefined;
|
|
69657
|
+
} | null | undefined;
|
|
69658
|
+
theme?: {
|
|
69659
|
+
type: "Override" | "Comparison";
|
|
69660
|
+
themeIds: string[];
|
|
69661
|
+
} | null | undefined;
|
|
69662
|
+
backgroundColor?: {
|
|
69663
|
+
value: string;
|
|
69664
|
+
} | null | undefined;
|
|
69665
|
+
urlPreview?: {
|
|
69666
|
+
description?: string | null | undefined;
|
|
69667
|
+
title?: string | null | undefined;
|
|
69668
|
+
thumbnailUrl?: string | null | undefined;
|
|
69669
|
+
} | null | undefined;
|
|
69670
|
+
alignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
69671
|
+
text?: {
|
|
69672
|
+
spans: {
|
|
69673
|
+
text: string;
|
|
69674
|
+
attributes: {
|
|
69675
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
69676
|
+
link?: string | null | undefined;
|
|
69677
|
+
documentationItemId?: string | null | undefined;
|
|
69678
|
+
openInNewTab?: boolean | null | undefined;
|
|
69679
|
+
openInNewWindow?: boolean | null | undefined;
|
|
69680
|
+
}[];
|
|
69681
|
+
}[];
|
|
69682
|
+
} | null | undefined;
|
|
69683
|
+
designObjectId?: string | null | undefined;
|
|
69684
|
+
designObjectIds?: string[] | null | undefined;
|
|
69685
|
+
showNestedGroups?: boolean | null | undefined;
|
|
69686
|
+
brandId?: string | null | undefined;
|
|
69687
|
+
caption?: string | null | undefined;
|
|
69688
|
+
headingType?: number | null | undefined;
|
|
69689
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
69690
|
+
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
69691
|
+
urlInput?: string | null | undefined;
|
|
69692
|
+
shortcuts?: {
|
|
69693
|
+
persistentId: string;
|
|
69694
|
+
url?: string | null | undefined;
|
|
69695
|
+
description?: string | null | undefined;
|
|
69696
|
+
title?: string | null | undefined;
|
|
69697
|
+
asset?: {
|
|
69698
|
+
type: "image" | "figmaFrame";
|
|
69699
|
+
id?: string | null | undefined;
|
|
69700
|
+
url?: string | null | undefined;
|
|
69701
|
+
figmaFrame?: {
|
|
69702
|
+
persistentId: string;
|
|
69703
|
+
sourceId: string;
|
|
69704
|
+
sourceFrameId: string;
|
|
69705
|
+
description?: string | null | undefined;
|
|
69706
|
+
title?: string | null | undefined;
|
|
69707
|
+
origin?: {
|
|
69708
|
+
valid?: boolean | null | undefined;
|
|
69709
|
+
title?: string | null | undefined;
|
|
69710
|
+
assetId?: string | null | undefined;
|
|
69711
|
+
width?: number | null | undefined;
|
|
69712
|
+
height?: number | null | undefined;
|
|
69713
|
+
sourceFileName?: string | null | undefined;
|
|
69714
|
+
previewUrl?: string | null | undefined;
|
|
69715
|
+
referenceId?: string | null | undefined;
|
|
69716
|
+
assetScale?: number | null | undefined;
|
|
69717
|
+
} | null | undefined;
|
|
69718
|
+
backgroundColor?: {
|
|
69719
|
+
value: string;
|
|
69720
|
+
} | null | undefined;
|
|
69721
|
+
} | null | undefined;
|
|
69722
|
+
} | null | undefined;
|
|
69723
|
+
documentationItemId?: string | null | undefined;
|
|
69724
|
+
pageHeadingId?: string | null | undefined;
|
|
69725
|
+
openInNewTab?: boolean | null | undefined;
|
|
69726
|
+
urlPreview?: {
|
|
69727
|
+
description?: string | null | undefined;
|
|
69728
|
+
title?: string | null | undefined;
|
|
69729
|
+
thumbnailUrl?: string | null | undefined;
|
|
69730
|
+
} | null | undefined;
|
|
69731
|
+
documentationItemPreview?: {
|
|
69732
|
+
valid?: boolean | null | undefined;
|
|
69733
|
+
title?: string | null | undefined;
|
|
69734
|
+
} | null | undefined;
|
|
69735
|
+
}[] | null | undefined;
|
|
69736
|
+
customBlockKey?: string | null | undefined;
|
|
69737
|
+
customBlockProperties?: {
|
|
69738
|
+
key: string;
|
|
69739
|
+
value?: any;
|
|
69740
|
+
}[] | null | undefined;
|
|
69741
|
+
variantKey?: string | null | undefined;
|
|
69742
|
+
figmaFrameProperties?: {
|
|
69743
|
+
alignment: "Center" | "FrameHeight";
|
|
69744
|
+
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
69745
|
+
showTitles: boolean;
|
|
69746
|
+
color?: {
|
|
69747
|
+
value: string;
|
|
69748
|
+
} | null | undefined;
|
|
69749
|
+
backgroundColor?: {
|
|
69750
|
+
value: string;
|
|
69751
|
+
} | null | undefined;
|
|
69752
|
+
} | null | undefined;
|
|
69753
|
+
figmaFrames?: {
|
|
69754
|
+
persistentId: string;
|
|
69755
|
+
sourceId: string;
|
|
69756
|
+
sourceFrameId: string;
|
|
69757
|
+
description?: string | null | undefined;
|
|
69758
|
+
title?: string | null | undefined;
|
|
69759
|
+
origin?: {
|
|
69760
|
+
valid?: boolean | null | undefined;
|
|
69761
|
+
title?: string | null | undefined;
|
|
69762
|
+
assetId?: string | null | undefined;
|
|
69763
|
+
width?: number | null | undefined;
|
|
69764
|
+
height?: number | null | undefined;
|
|
69765
|
+
sourceFileName?: string | null | undefined;
|
|
69766
|
+
previewUrl?: string | null | undefined;
|
|
69767
|
+
referenceId?: string | null | undefined;
|
|
69768
|
+
assetScale?: number | null | undefined;
|
|
69769
|
+
} | null | undefined;
|
|
69770
|
+
backgroundColor?: {
|
|
69771
|
+
value: string;
|
|
69772
|
+
} | null | undefined;
|
|
69773
|
+
}[] | null | undefined;
|
|
69774
|
+
size?: {
|
|
69775
|
+
width?: number | null | undefined;
|
|
69776
|
+
height?: number | null | undefined;
|
|
69777
|
+
} | null | undefined;
|
|
69778
|
+
renderCodeProperties?: {
|
|
69779
|
+
showCode: boolean;
|
|
69780
|
+
showControls?: boolean | undefined;
|
|
69781
|
+
} | null | undefined;
|
|
69782
|
+
componentAssets?: {
|
|
69783
|
+
persistentId: string;
|
|
69784
|
+
componentAssetId: string;
|
|
69785
|
+
description?: string | null | undefined;
|
|
69786
|
+
title?: string | null | undefined;
|
|
69787
|
+
backgroundColor?: {
|
|
69788
|
+
value: string;
|
|
69789
|
+
} | null | undefined;
|
|
69790
|
+
}[] | null | undefined;
|
|
69791
|
+
tableProperties?: {
|
|
69792
|
+
showBorders: boolean;
|
|
69793
|
+
showHeaderRow: boolean;
|
|
69794
|
+
showHeaderColumn: boolean;
|
|
69795
|
+
columns: {
|
|
69796
|
+
id: string;
|
|
69797
|
+
width: {
|
|
69798
|
+
value?: {
|
|
69799
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
69800
|
+
measure: number;
|
|
69801
|
+
} | null | undefined;
|
|
69802
|
+
aliasTo?: string | null | undefined;
|
|
69803
|
+
};
|
|
69804
|
+
}[];
|
|
69805
|
+
} | null | undefined;
|
|
69806
|
+
columnId?: string | null | undefined;
|
|
69807
|
+
blacklistedElementProperties?: string[] | null | undefined;
|
|
69808
|
+
userMetadata?: string | null | undefined;
|
|
69809
|
+
} & any)[] | null | undefined;
|
|
69810
|
+
})[] | undefined;
|
|
69811
|
+
}>;
|
|
69812
|
+
}>, "strip", z.ZodTypeAny, {
|
|
69813
|
+
id: string;
|
|
69814
|
+
createdAt: Date;
|
|
69815
|
+
updatedAt: Date;
|
|
69816
|
+
persistentId: string;
|
|
69817
|
+
designSystemVersionId: string;
|
|
69818
|
+
data: {
|
|
69819
|
+
configuration?: {
|
|
69820
|
+
showSidebar: boolean;
|
|
69821
|
+
header: {
|
|
69822
|
+
description: string;
|
|
69823
|
+
alignment: "Center" | "Left";
|
|
69824
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
69825
|
+
showBackgroundOverlay: boolean;
|
|
69826
|
+
showCoverText: boolean;
|
|
69827
|
+
backgroundColor?: {
|
|
69828
|
+
value: string;
|
|
69829
|
+
referencedTokenId?: string | undefined;
|
|
69830
|
+
} | null | undefined;
|
|
69831
|
+
foregroundColor?: {
|
|
69832
|
+
value: string;
|
|
69833
|
+
referencedTokenId?: string | undefined;
|
|
69834
|
+
} | null | undefined;
|
|
69835
|
+
backgroundImageAsset?: {
|
|
69836
|
+
type: "Resource" | "FigmaNode";
|
|
69837
|
+
resource?: {
|
|
69838
|
+
url: string;
|
|
69839
|
+
resourceId: string;
|
|
69840
|
+
} | undefined;
|
|
69841
|
+
figmaNode?: {
|
|
69842
|
+
sourceId: string;
|
|
69843
|
+
frameReferenceId: string;
|
|
69844
|
+
} | undefined;
|
|
69845
|
+
} | null | undefined;
|
|
69846
|
+
minHeight?: number | null | undefined;
|
|
69847
|
+
};
|
|
69848
|
+
isHidden?: boolean | undefined;
|
|
69849
|
+
isPrivate?: boolean | undefined;
|
|
69850
|
+
} | undefined;
|
|
69851
|
+
oldBlocks?: PageBlockV1[] | undefined;
|
|
69852
|
+
};
|
|
69853
|
+
parentPersistentId: string;
|
|
69854
|
+
shortPersistentId: string;
|
|
69855
|
+
sortOrder: number;
|
|
69856
|
+
meta: {
|
|
69857
|
+
name: string;
|
|
69858
|
+
description?: string | undefined;
|
|
69859
|
+
};
|
|
69860
|
+
slug?: string | undefined;
|
|
69861
|
+
userSlug?: string | undefined;
|
|
69862
|
+
}, {
|
|
69863
|
+
id: string;
|
|
69864
|
+
createdAt: Date;
|
|
69865
|
+
updatedAt: Date;
|
|
69866
|
+
persistentId: string;
|
|
69867
|
+
designSystemVersionId: string;
|
|
69868
|
+
data: {
|
|
69869
|
+
configuration?: {
|
|
69870
|
+
showSidebar: boolean;
|
|
69871
|
+
header: {
|
|
69872
|
+
description: string;
|
|
69873
|
+
alignment: "Center" | "Left";
|
|
69874
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
69875
|
+
showBackgroundOverlay: boolean;
|
|
69876
|
+
showCoverText: boolean;
|
|
69877
|
+
backgroundColor?: {
|
|
69878
|
+
value: string;
|
|
69879
|
+
referencedTokenId?: string | undefined;
|
|
69880
|
+
} | null | undefined;
|
|
69881
|
+
foregroundColor?: {
|
|
69882
|
+
value: string;
|
|
69883
|
+
referencedTokenId?: string | undefined;
|
|
69884
|
+
} | null | undefined;
|
|
69885
|
+
backgroundImageAsset?: {
|
|
69886
|
+
type: "Resource" | "FigmaNode";
|
|
69887
|
+
resource?: {
|
|
69888
|
+
url: string;
|
|
69889
|
+
resourceId: string;
|
|
69890
|
+
} | undefined;
|
|
69891
|
+
figmaNode?: {
|
|
69892
|
+
sourceId: string;
|
|
69893
|
+
frameReferenceId: string;
|
|
69894
|
+
} | undefined;
|
|
69895
|
+
} | null | undefined;
|
|
69896
|
+
minHeight?: number | null | undefined;
|
|
69897
|
+
};
|
|
69898
|
+
isHidden?: boolean | undefined;
|
|
69899
|
+
isPrivate?: boolean | undefined;
|
|
69900
|
+
} | null | undefined;
|
|
69901
|
+
oldBlocks?: ({
|
|
69902
|
+
persistentId: string;
|
|
69903
|
+
type: "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
69904
|
+
url?: string | null | undefined;
|
|
69905
|
+
tokenType?: "Image" | "Font" | "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" | null | undefined;
|
|
69906
|
+
asset?: {
|
|
69907
|
+
type: "image" | "figmaFrame";
|
|
69908
|
+
id?: string | null | undefined;
|
|
69909
|
+
url?: string | null | undefined;
|
|
69910
|
+
figmaFrame?: {
|
|
69911
|
+
persistentId: string;
|
|
69912
|
+
sourceId: string;
|
|
69913
|
+
sourceFrameId: string;
|
|
69914
|
+
description?: string | null | undefined;
|
|
69915
|
+
title?: string | null | undefined;
|
|
69916
|
+
origin?: {
|
|
69917
|
+
valid?: boolean | null | undefined;
|
|
69918
|
+
title?: string | null | undefined;
|
|
69919
|
+
assetId?: string | null | undefined;
|
|
69920
|
+
width?: number | null | undefined;
|
|
69921
|
+
height?: number | null | undefined;
|
|
69922
|
+
sourceFileName?: string | null | undefined;
|
|
69923
|
+
previewUrl?: string | null | undefined;
|
|
69924
|
+
referenceId?: string | null | undefined;
|
|
69925
|
+
assetScale?: number | null | undefined;
|
|
69926
|
+
} | null | undefined;
|
|
69927
|
+
backgroundColor?: {
|
|
69928
|
+
value: string;
|
|
69929
|
+
} | null | undefined;
|
|
69930
|
+
} | null | undefined;
|
|
69931
|
+
} | null | undefined;
|
|
69932
|
+
theme?: {
|
|
69933
|
+
type: "Override" | "Comparison";
|
|
69934
|
+
themeIds: string[];
|
|
69935
|
+
} | null | undefined;
|
|
69936
|
+
backgroundColor?: {
|
|
69937
|
+
value: string;
|
|
69938
|
+
} | null | undefined;
|
|
69939
|
+
urlPreview?: {
|
|
69940
|
+
description?: string | null | undefined;
|
|
69941
|
+
title?: string | null | undefined;
|
|
69942
|
+
thumbnailUrl?: string | null | undefined;
|
|
69943
|
+
} | null | undefined;
|
|
69944
|
+
alignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
69945
|
+
text?: {
|
|
69946
|
+
spans: {
|
|
69947
|
+
text: string;
|
|
69948
|
+
attributes: {
|
|
69949
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
69950
|
+
link?: string | null | undefined;
|
|
69951
|
+
documentationItemId?: string | null | undefined;
|
|
69952
|
+
openInNewTab?: boolean | null | undefined;
|
|
69953
|
+
openInNewWindow?: boolean | null | undefined;
|
|
69954
|
+
}[];
|
|
69955
|
+
}[];
|
|
69956
|
+
} | null | undefined;
|
|
69957
|
+
designObjectId?: string | null | undefined;
|
|
69958
|
+
designObjectIds?: string[] | null | undefined;
|
|
69959
|
+
showNestedGroups?: boolean | null | undefined;
|
|
69960
|
+
brandId?: string | null | undefined;
|
|
69961
|
+
caption?: string | null | undefined;
|
|
69962
|
+
headingType?: number | null | undefined;
|
|
69963
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
69964
|
+
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
69965
|
+
urlInput?: string | null | undefined;
|
|
69966
|
+
shortcuts?: {
|
|
69967
|
+
persistentId: string;
|
|
69968
|
+
url?: string | null | undefined;
|
|
69969
|
+
description?: string | null | undefined;
|
|
69970
|
+
title?: string | null | undefined;
|
|
69971
|
+
asset?: {
|
|
69972
|
+
type: "image" | "figmaFrame";
|
|
69973
|
+
id?: string | null | undefined;
|
|
69974
|
+
url?: string | null | undefined;
|
|
69975
|
+
figmaFrame?: {
|
|
69976
|
+
persistentId: string;
|
|
69977
|
+
sourceId: string;
|
|
69978
|
+
sourceFrameId: string;
|
|
69979
|
+
description?: string | null | undefined;
|
|
69980
|
+
title?: string | null | undefined;
|
|
69981
|
+
origin?: {
|
|
69982
|
+
valid?: boolean | null | undefined;
|
|
69983
|
+
title?: string | null | undefined;
|
|
69984
|
+
assetId?: string | null | undefined;
|
|
69985
|
+
width?: number | null | undefined;
|
|
69986
|
+
height?: number | null | undefined;
|
|
69987
|
+
sourceFileName?: string | null | undefined;
|
|
69988
|
+
previewUrl?: string | null | undefined;
|
|
69989
|
+
referenceId?: string | null | undefined;
|
|
69990
|
+
assetScale?: number | null | undefined;
|
|
69991
|
+
} | null | undefined;
|
|
69992
|
+
backgroundColor?: {
|
|
69993
|
+
value: string;
|
|
69994
|
+
} | null | undefined;
|
|
69995
|
+
} | null | undefined;
|
|
69996
|
+
} | null | undefined;
|
|
69997
|
+
documentationItemId?: string | null | undefined;
|
|
69998
|
+
pageHeadingId?: string | null | undefined;
|
|
69999
|
+
openInNewTab?: boolean | null | undefined;
|
|
70000
|
+
urlPreview?: {
|
|
70001
|
+
description?: string | null | undefined;
|
|
70002
|
+
title?: string | null | undefined;
|
|
70003
|
+
thumbnailUrl?: string | null | undefined;
|
|
70004
|
+
} | null | undefined;
|
|
70005
|
+
documentationItemPreview?: {
|
|
70006
|
+
valid?: boolean | null | undefined;
|
|
70007
|
+
title?: string | null | undefined;
|
|
70008
|
+
} | null | undefined;
|
|
70009
|
+
}[] | null | undefined;
|
|
70010
|
+
customBlockKey?: string | null | undefined;
|
|
70011
|
+
customBlockProperties?: {
|
|
70012
|
+
key: string;
|
|
70013
|
+
value?: any;
|
|
70014
|
+
}[] | null | undefined;
|
|
70015
|
+
variantKey?: string | null | undefined;
|
|
70016
|
+
figmaFrameProperties?: {
|
|
70017
|
+
alignment: "Center" | "FrameHeight";
|
|
70018
|
+
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
70019
|
+
showTitles: boolean;
|
|
70020
|
+
color?: {
|
|
70021
|
+
value: string;
|
|
70022
|
+
} | null | undefined;
|
|
70023
|
+
backgroundColor?: {
|
|
70024
|
+
value: string;
|
|
70025
|
+
} | null | undefined;
|
|
70026
|
+
} | null | undefined;
|
|
70027
|
+
figmaFrames?: {
|
|
70028
|
+
persistentId: string;
|
|
70029
|
+
sourceId: string;
|
|
70030
|
+
sourceFrameId: string;
|
|
70031
|
+
description?: string | null | undefined;
|
|
70032
|
+
title?: string | null | undefined;
|
|
70033
|
+
origin?: {
|
|
70034
|
+
valid?: boolean | null | undefined;
|
|
70035
|
+
title?: string | null | undefined;
|
|
70036
|
+
assetId?: string | null | undefined;
|
|
70037
|
+
width?: number | null | undefined;
|
|
70038
|
+
height?: number | null | undefined;
|
|
70039
|
+
sourceFileName?: string | null | undefined;
|
|
70040
|
+
previewUrl?: string | null | undefined;
|
|
70041
|
+
referenceId?: string | null | undefined;
|
|
70042
|
+
assetScale?: number | null | undefined;
|
|
70043
|
+
} | null | undefined;
|
|
70044
|
+
backgroundColor?: {
|
|
70045
|
+
value: string;
|
|
70046
|
+
} | null | undefined;
|
|
70047
|
+
}[] | null | undefined;
|
|
70048
|
+
size?: {
|
|
70049
|
+
width?: number | null | undefined;
|
|
70050
|
+
height?: number | null | undefined;
|
|
70051
|
+
} | null | undefined;
|
|
70052
|
+
renderCodeProperties?: {
|
|
70053
|
+
showCode: boolean;
|
|
70054
|
+
showControls?: boolean | undefined;
|
|
70055
|
+
} | null | undefined;
|
|
70056
|
+
componentAssets?: {
|
|
70057
|
+
persistentId: string;
|
|
70058
|
+
componentAssetId: string;
|
|
70059
|
+
description?: string | null | undefined;
|
|
70060
|
+
title?: string | null | undefined;
|
|
70061
|
+
backgroundColor?: {
|
|
70062
|
+
value: string;
|
|
70063
|
+
} | null | undefined;
|
|
70064
|
+
}[] | null | undefined;
|
|
70065
|
+
tableProperties?: {
|
|
70066
|
+
showBorders: boolean;
|
|
70067
|
+
showHeaderRow: boolean;
|
|
70068
|
+
showHeaderColumn: boolean;
|
|
70069
|
+
columns: {
|
|
70070
|
+
id: string;
|
|
70071
|
+
width: {
|
|
70072
|
+
value?: {
|
|
70073
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
70074
|
+
measure: number;
|
|
70075
|
+
} | null | undefined;
|
|
70076
|
+
aliasTo?: string | null | undefined;
|
|
70077
|
+
};
|
|
70078
|
+
}[];
|
|
70079
|
+
} | null | undefined;
|
|
70080
|
+
columnId?: string | null | undefined;
|
|
70081
|
+
blacklistedElementProperties?: string[] | null | undefined;
|
|
70082
|
+
userMetadata?: string | null | undefined;
|
|
70083
|
+
} & {
|
|
70084
|
+
children: ({
|
|
70085
|
+
persistentId: string;
|
|
70086
|
+
type: "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
70087
|
+
url?: string | null | undefined;
|
|
70088
|
+
tokenType?: "Image" | "Font" | "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" | null | undefined;
|
|
70089
|
+
asset?: {
|
|
70090
|
+
type: "image" | "figmaFrame";
|
|
70091
|
+
id?: string | null | undefined;
|
|
70092
|
+
url?: string | null | undefined;
|
|
70093
|
+
figmaFrame?: {
|
|
70094
|
+
persistentId: string;
|
|
70095
|
+
sourceId: string;
|
|
70096
|
+
sourceFrameId: string;
|
|
70097
|
+
description?: string | null | undefined;
|
|
70098
|
+
title?: string | null | undefined;
|
|
70099
|
+
origin?: {
|
|
70100
|
+
valid?: boolean | null | undefined;
|
|
70101
|
+
title?: string | null | undefined;
|
|
70102
|
+
assetId?: string | null | undefined;
|
|
70103
|
+
width?: number | null | undefined;
|
|
70104
|
+
height?: number | null | undefined;
|
|
70105
|
+
sourceFileName?: string | null | undefined;
|
|
70106
|
+
previewUrl?: string | null | undefined;
|
|
70107
|
+
referenceId?: string | null | undefined;
|
|
70108
|
+
assetScale?: number | null | undefined;
|
|
70109
|
+
} | null | undefined;
|
|
70110
|
+
backgroundColor?: {
|
|
70111
|
+
value: string;
|
|
70112
|
+
} | null | undefined;
|
|
70113
|
+
} | null | undefined;
|
|
70114
|
+
} | null | undefined;
|
|
70115
|
+
theme?: {
|
|
70116
|
+
type: "Override" | "Comparison";
|
|
70117
|
+
themeIds: string[];
|
|
70118
|
+
} | null | undefined;
|
|
70119
|
+
backgroundColor?: {
|
|
70120
|
+
value: string;
|
|
70121
|
+
} | null | undefined;
|
|
70122
|
+
urlPreview?: {
|
|
70123
|
+
description?: string | null | undefined;
|
|
70124
|
+
title?: string | null | undefined;
|
|
70125
|
+
thumbnailUrl?: string | null | undefined;
|
|
70126
|
+
} | null | undefined;
|
|
70127
|
+
alignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
70128
|
+
text?: {
|
|
70129
|
+
spans: {
|
|
70130
|
+
text: string;
|
|
70131
|
+
attributes: {
|
|
70132
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
70133
|
+
link?: string | null | undefined;
|
|
70134
|
+
documentationItemId?: string | null | undefined;
|
|
70135
|
+
openInNewTab?: boolean | null | undefined;
|
|
70136
|
+
openInNewWindow?: boolean | null | undefined;
|
|
70137
|
+
}[];
|
|
70138
|
+
}[];
|
|
70139
|
+
} | null | undefined;
|
|
70140
|
+
designObjectId?: string | null | undefined;
|
|
70141
|
+
designObjectIds?: string[] | null | undefined;
|
|
70142
|
+
showNestedGroups?: boolean | null | undefined;
|
|
70143
|
+
brandId?: string | null | undefined;
|
|
70144
|
+
caption?: string | null | undefined;
|
|
70145
|
+
headingType?: number | null | undefined;
|
|
70146
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
70147
|
+
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
70148
|
+
urlInput?: string | null | undefined;
|
|
70149
|
+
shortcuts?: {
|
|
70150
|
+
persistentId: string;
|
|
70151
|
+
url?: string | null | undefined;
|
|
70152
|
+
description?: string | null | undefined;
|
|
70153
|
+
title?: string | null | undefined;
|
|
70154
|
+
asset?: {
|
|
70155
|
+
type: "image" | "figmaFrame";
|
|
70156
|
+
id?: string | null | undefined;
|
|
70157
|
+
url?: string | null | undefined;
|
|
70158
|
+
figmaFrame?: {
|
|
70159
|
+
persistentId: string;
|
|
70160
|
+
sourceId: string;
|
|
70161
|
+
sourceFrameId: string;
|
|
70162
|
+
description?: string | null | undefined;
|
|
70163
|
+
title?: string | null | undefined;
|
|
70164
|
+
origin?: {
|
|
70165
|
+
valid?: boolean | null | undefined;
|
|
70166
|
+
title?: string | null | undefined;
|
|
70167
|
+
assetId?: string | null | undefined;
|
|
70168
|
+
width?: number | null | undefined;
|
|
70169
|
+
height?: number | null | undefined;
|
|
70170
|
+
sourceFileName?: string | null | undefined;
|
|
70171
|
+
previewUrl?: string | null | undefined;
|
|
70172
|
+
referenceId?: string | null | undefined;
|
|
70173
|
+
assetScale?: number | null | undefined;
|
|
70174
|
+
} | null | undefined;
|
|
70175
|
+
backgroundColor?: {
|
|
70176
|
+
value: string;
|
|
70177
|
+
} | null | undefined;
|
|
70178
|
+
} | null | undefined;
|
|
70179
|
+
} | null | undefined;
|
|
70180
|
+
documentationItemId?: string | null | undefined;
|
|
70181
|
+
pageHeadingId?: string | null | undefined;
|
|
70182
|
+
openInNewTab?: boolean | null | undefined;
|
|
70183
|
+
urlPreview?: {
|
|
70184
|
+
description?: string | null | undefined;
|
|
70185
|
+
title?: string | null | undefined;
|
|
70186
|
+
thumbnailUrl?: string | null | undefined;
|
|
70187
|
+
} | null | undefined;
|
|
70188
|
+
documentationItemPreview?: {
|
|
70189
|
+
valid?: boolean | null | undefined;
|
|
70190
|
+
title?: string | null | undefined;
|
|
70191
|
+
} | null | undefined;
|
|
70192
|
+
}[] | null | undefined;
|
|
70193
|
+
customBlockKey?: string | null | undefined;
|
|
70194
|
+
customBlockProperties?: {
|
|
70195
|
+
key: string;
|
|
70196
|
+
value?: any;
|
|
70197
|
+
}[] | null | undefined;
|
|
70198
|
+
variantKey?: string | null | undefined;
|
|
70199
|
+
figmaFrameProperties?: {
|
|
70200
|
+
alignment: "Center" | "FrameHeight";
|
|
70201
|
+
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
70202
|
+
showTitles: boolean;
|
|
70203
|
+
color?: {
|
|
70204
|
+
value: string;
|
|
70205
|
+
} | null | undefined;
|
|
70206
|
+
backgroundColor?: {
|
|
70207
|
+
value: string;
|
|
70208
|
+
} | null | undefined;
|
|
70209
|
+
} | null | undefined;
|
|
70210
|
+
figmaFrames?: {
|
|
70211
|
+
persistentId: string;
|
|
70212
|
+
sourceId: string;
|
|
70213
|
+
sourceFrameId: string;
|
|
70214
|
+
description?: string | null | undefined;
|
|
70215
|
+
title?: string | null | undefined;
|
|
70216
|
+
origin?: {
|
|
70217
|
+
valid?: boolean | null | undefined;
|
|
70218
|
+
title?: string | null | undefined;
|
|
70219
|
+
assetId?: string | null | undefined;
|
|
70220
|
+
width?: number | null | undefined;
|
|
70221
|
+
height?: number | null | undefined;
|
|
70222
|
+
sourceFileName?: string | null | undefined;
|
|
70223
|
+
previewUrl?: string | null | undefined;
|
|
70224
|
+
referenceId?: string | null | undefined;
|
|
70225
|
+
assetScale?: number | null | undefined;
|
|
70226
|
+
} | null | undefined;
|
|
70227
|
+
backgroundColor?: {
|
|
70228
|
+
value: string;
|
|
70229
|
+
} | null | undefined;
|
|
70230
|
+
}[] | null | undefined;
|
|
70231
|
+
size?: {
|
|
70232
|
+
width?: number | null | undefined;
|
|
70233
|
+
height?: number | null | undefined;
|
|
70234
|
+
} | null | undefined;
|
|
70235
|
+
renderCodeProperties?: {
|
|
70236
|
+
showCode: boolean;
|
|
70237
|
+
showControls?: boolean | undefined;
|
|
70238
|
+
} | null | undefined;
|
|
70239
|
+
componentAssets?: {
|
|
70240
|
+
persistentId: string;
|
|
70241
|
+
componentAssetId: string;
|
|
70242
|
+
description?: string | null | undefined;
|
|
70243
|
+
title?: string | null | undefined;
|
|
70244
|
+
backgroundColor?: {
|
|
70245
|
+
value: string;
|
|
70246
|
+
} | null | undefined;
|
|
70247
|
+
}[] | null | undefined;
|
|
70248
|
+
tableProperties?: {
|
|
70249
|
+
showBorders: boolean;
|
|
70250
|
+
showHeaderRow: boolean;
|
|
70251
|
+
showHeaderColumn: boolean;
|
|
70252
|
+
columns: {
|
|
70253
|
+
id: string;
|
|
70254
|
+
width: {
|
|
70255
|
+
value?: {
|
|
70256
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
70257
|
+
measure: number;
|
|
70258
|
+
} | null | undefined;
|
|
70259
|
+
aliasTo?: string | null | undefined;
|
|
70260
|
+
};
|
|
70261
|
+
}[];
|
|
70262
|
+
} | null | undefined;
|
|
70263
|
+
columnId?: string | null | undefined;
|
|
70264
|
+
blacklistedElementProperties?: string[] | null | undefined;
|
|
70265
|
+
userMetadata?: string | null | undefined;
|
|
70266
|
+
} & any)[] | null | undefined;
|
|
70267
|
+
})[] | undefined;
|
|
70268
|
+
};
|
|
70269
|
+
parentPersistentId: string;
|
|
70270
|
+
shortPersistentId: string;
|
|
70271
|
+
sortOrder: number;
|
|
70272
|
+
meta: {
|
|
70273
|
+
name: string;
|
|
70274
|
+
description?: string | undefined;
|
|
70275
|
+
};
|
|
70276
|
+
slug?: string | undefined;
|
|
70277
|
+
userSlug?: string | undefined;
|
|
70278
|
+
}>;
|
|
70279
|
+
pageContentHash: z.ZodString;
|
|
70280
|
+
}>, "strip", z.ZodTypeAny, {
|
|
70281
|
+
id: string;
|
|
70282
|
+
createdAt: Date;
|
|
70283
|
+
updatedAt: Date;
|
|
70284
|
+
designSystemVersionId: string;
|
|
70285
|
+
page: {
|
|
70286
|
+
id: string;
|
|
70287
|
+
createdAt: Date;
|
|
70288
|
+
updatedAt: Date;
|
|
70289
|
+
persistentId: string;
|
|
70290
|
+
designSystemVersionId: string;
|
|
70291
|
+
data: {
|
|
70292
|
+
configuration?: {
|
|
70293
|
+
showSidebar: boolean;
|
|
70294
|
+
header: {
|
|
70295
|
+
description: string;
|
|
70296
|
+
alignment: "Center" | "Left";
|
|
70297
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
70298
|
+
showBackgroundOverlay: boolean;
|
|
70299
|
+
showCoverText: boolean;
|
|
70300
|
+
backgroundColor?: {
|
|
70301
|
+
value: string;
|
|
70302
|
+
referencedTokenId?: string | undefined;
|
|
70303
|
+
} | null | undefined;
|
|
70304
|
+
foregroundColor?: {
|
|
70305
|
+
value: string;
|
|
70306
|
+
referencedTokenId?: string | undefined;
|
|
70307
|
+
} | null | undefined;
|
|
70308
|
+
backgroundImageAsset?: {
|
|
70309
|
+
type: "Resource" | "FigmaNode";
|
|
70310
|
+
resource?: {
|
|
70311
|
+
url: string;
|
|
70312
|
+
resourceId: string;
|
|
70313
|
+
} | undefined;
|
|
70314
|
+
figmaNode?: {
|
|
70315
|
+
sourceId: string;
|
|
70316
|
+
frameReferenceId: string;
|
|
70317
|
+
} | undefined;
|
|
70318
|
+
} | null | undefined;
|
|
70319
|
+
minHeight?: number | null | undefined;
|
|
70320
|
+
};
|
|
70321
|
+
isHidden?: boolean | undefined;
|
|
70322
|
+
isPrivate?: boolean | undefined;
|
|
70323
|
+
} | undefined;
|
|
70324
|
+
oldBlocks?: PageBlockV1[] | undefined;
|
|
70325
|
+
};
|
|
70326
|
+
parentPersistentId: string;
|
|
70327
|
+
shortPersistentId: string;
|
|
70328
|
+
sortOrder: number;
|
|
70329
|
+
meta: {
|
|
70330
|
+
name: string;
|
|
70331
|
+
description?: string | undefined;
|
|
70332
|
+
};
|
|
70333
|
+
slug?: string | undefined;
|
|
70334
|
+
userSlug?: string | undefined;
|
|
70335
|
+
};
|
|
70336
|
+
reason: "Publish" | "Deletion";
|
|
70337
|
+
pageContentHash: string;
|
|
70338
|
+
}, {
|
|
70339
|
+
id: string;
|
|
70340
|
+
createdAt: Date;
|
|
70341
|
+
updatedAt: Date;
|
|
70342
|
+
designSystemVersionId: string;
|
|
70343
|
+
page: {
|
|
70344
|
+
id: string;
|
|
70345
|
+
createdAt: Date;
|
|
70346
|
+
updatedAt: Date;
|
|
70347
|
+
persistentId: string;
|
|
70348
|
+
designSystemVersionId: string;
|
|
70349
|
+
data: {
|
|
70350
|
+
configuration?: {
|
|
70351
|
+
showSidebar: boolean;
|
|
70352
|
+
header: {
|
|
70353
|
+
description: string;
|
|
70354
|
+
alignment: "Center" | "Left";
|
|
70355
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
70356
|
+
showBackgroundOverlay: boolean;
|
|
70357
|
+
showCoverText: boolean;
|
|
70358
|
+
backgroundColor?: {
|
|
70359
|
+
value: string;
|
|
70360
|
+
referencedTokenId?: string | undefined;
|
|
70361
|
+
} | null | undefined;
|
|
70362
|
+
foregroundColor?: {
|
|
70363
|
+
value: string;
|
|
70364
|
+
referencedTokenId?: string | undefined;
|
|
70365
|
+
} | null | undefined;
|
|
70366
|
+
backgroundImageAsset?: {
|
|
70367
|
+
type: "Resource" | "FigmaNode";
|
|
70368
|
+
resource?: {
|
|
70369
|
+
url: string;
|
|
70370
|
+
resourceId: string;
|
|
70371
|
+
} | undefined;
|
|
70372
|
+
figmaNode?: {
|
|
70373
|
+
sourceId: string;
|
|
70374
|
+
frameReferenceId: string;
|
|
70375
|
+
} | undefined;
|
|
70376
|
+
} | null | undefined;
|
|
70377
|
+
minHeight?: number | null | undefined;
|
|
70378
|
+
};
|
|
70379
|
+
isHidden?: boolean | undefined;
|
|
70380
|
+
isPrivate?: boolean | undefined;
|
|
70381
|
+
} | null | undefined;
|
|
70382
|
+
oldBlocks?: ({
|
|
70383
|
+
persistentId: string;
|
|
70384
|
+
type: "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
70385
|
+
url?: string | null | undefined;
|
|
70386
|
+
tokenType?: "Image" | "Font" | "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" | null | undefined;
|
|
70387
|
+
asset?: {
|
|
70388
|
+
type: "image" | "figmaFrame";
|
|
70389
|
+
id?: string | null | undefined;
|
|
70390
|
+
url?: string | null | undefined;
|
|
70391
|
+
figmaFrame?: {
|
|
70392
|
+
persistentId: string;
|
|
70393
|
+
sourceId: string;
|
|
70394
|
+
sourceFrameId: string;
|
|
70395
|
+
description?: string | null | undefined;
|
|
70396
|
+
title?: string | null | undefined;
|
|
70397
|
+
origin?: {
|
|
70398
|
+
valid?: boolean | null | undefined;
|
|
70399
|
+
title?: string | null | undefined;
|
|
70400
|
+
assetId?: string | null | undefined;
|
|
70401
|
+
width?: number | null | undefined;
|
|
70402
|
+
height?: number | null | undefined;
|
|
70403
|
+
sourceFileName?: string | null | undefined;
|
|
70404
|
+
previewUrl?: string | null | undefined;
|
|
70405
|
+
referenceId?: string | null | undefined;
|
|
70406
|
+
assetScale?: number | null | undefined;
|
|
70407
|
+
} | null | undefined;
|
|
70408
|
+
backgroundColor?: {
|
|
70409
|
+
value: string;
|
|
70410
|
+
} | null | undefined;
|
|
70411
|
+
} | null | undefined;
|
|
70412
|
+
} | null | undefined;
|
|
70413
|
+
theme?: {
|
|
70414
|
+
type: "Override" | "Comparison";
|
|
70415
|
+
themeIds: string[];
|
|
70416
|
+
} | null | undefined;
|
|
70417
|
+
backgroundColor?: {
|
|
70418
|
+
value: string;
|
|
70419
|
+
} | null | undefined;
|
|
70420
|
+
urlPreview?: {
|
|
70421
|
+
description?: string | null | undefined;
|
|
70422
|
+
title?: string | null | undefined;
|
|
70423
|
+
thumbnailUrl?: string | null | undefined;
|
|
70424
|
+
} | null | undefined;
|
|
70425
|
+
alignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
70426
|
+
text?: {
|
|
70427
|
+
spans: {
|
|
70428
|
+
text: string;
|
|
70429
|
+
attributes: {
|
|
70430
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
70431
|
+
link?: string | null | undefined;
|
|
70432
|
+
documentationItemId?: string | null | undefined;
|
|
70433
|
+
openInNewTab?: boolean | null | undefined;
|
|
70434
|
+
openInNewWindow?: boolean | null | undefined;
|
|
70435
|
+
}[];
|
|
70436
|
+
}[];
|
|
70437
|
+
} | null | undefined;
|
|
70438
|
+
designObjectId?: string | null | undefined;
|
|
70439
|
+
designObjectIds?: string[] | null | undefined;
|
|
70440
|
+
showNestedGroups?: boolean | null | undefined;
|
|
70441
|
+
brandId?: string | null | undefined;
|
|
70442
|
+
caption?: string | null | undefined;
|
|
70443
|
+
headingType?: number | null | undefined;
|
|
70444
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
70445
|
+
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
70446
|
+
urlInput?: string | null | undefined;
|
|
70447
|
+
shortcuts?: {
|
|
70448
|
+
persistentId: string;
|
|
70449
|
+
url?: string | null | undefined;
|
|
70450
|
+
description?: string | null | undefined;
|
|
70451
|
+
title?: string | null | undefined;
|
|
70452
|
+
asset?: {
|
|
70453
|
+
type: "image" | "figmaFrame";
|
|
70454
|
+
id?: string | null | undefined;
|
|
70455
|
+
url?: string | null | undefined;
|
|
70456
|
+
figmaFrame?: {
|
|
70457
|
+
persistentId: string;
|
|
70458
|
+
sourceId: string;
|
|
70459
|
+
sourceFrameId: string;
|
|
70460
|
+
description?: string | null | undefined;
|
|
70461
|
+
title?: string | null | undefined;
|
|
70462
|
+
origin?: {
|
|
70463
|
+
valid?: boolean | null | undefined;
|
|
70464
|
+
title?: string | null | undefined;
|
|
70465
|
+
assetId?: string | null | undefined;
|
|
70466
|
+
width?: number | null | undefined;
|
|
70467
|
+
height?: number | null | undefined;
|
|
70468
|
+
sourceFileName?: string | null | undefined;
|
|
70469
|
+
previewUrl?: string | null | undefined;
|
|
70470
|
+
referenceId?: string | null | undefined;
|
|
70471
|
+
assetScale?: number | null | undefined;
|
|
70472
|
+
} | null | undefined;
|
|
70473
|
+
backgroundColor?: {
|
|
70474
|
+
value: string;
|
|
70475
|
+
} | null | undefined;
|
|
70476
|
+
} | null | undefined;
|
|
70477
|
+
} | null | undefined;
|
|
70478
|
+
documentationItemId?: string | null | undefined;
|
|
70479
|
+
pageHeadingId?: string | null | undefined;
|
|
70480
|
+
openInNewTab?: boolean | null | undefined;
|
|
70481
|
+
urlPreview?: {
|
|
70482
|
+
description?: string | null | undefined;
|
|
70483
|
+
title?: string | null | undefined;
|
|
70484
|
+
thumbnailUrl?: string | null | undefined;
|
|
70485
|
+
} | null | undefined;
|
|
70486
|
+
documentationItemPreview?: {
|
|
70487
|
+
valid?: boolean | null | undefined;
|
|
70488
|
+
title?: string | null | undefined;
|
|
70489
|
+
} | null | undefined;
|
|
70490
|
+
}[] | null | undefined;
|
|
70491
|
+
customBlockKey?: string | null | undefined;
|
|
70492
|
+
customBlockProperties?: {
|
|
70493
|
+
key: string;
|
|
70494
|
+
value?: any;
|
|
70495
|
+
}[] | null | undefined;
|
|
70496
|
+
variantKey?: string | null | undefined;
|
|
70497
|
+
figmaFrameProperties?: {
|
|
70498
|
+
alignment: "Center" | "FrameHeight";
|
|
70499
|
+
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
70500
|
+
showTitles: boolean;
|
|
70501
|
+
color?: {
|
|
70502
|
+
value: string;
|
|
70503
|
+
} | null | undefined;
|
|
70504
|
+
backgroundColor?: {
|
|
70505
|
+
value: string;
|
|
70506
|
+
} | null | undefined;
|
|
70507
|
+
} | null | undefined;
|
|
70508
|
+
figmaFrames?: {
|
|
70509
|
+
persistentId: string;
|
|
70510
|
+
sourceId: string;
|
|
70511
|
+
sourceFrameId: string;
|
|
70512
|
+
description?: string | null | undefined;
|
|
70513
|
+
title?: string | null | undefined;
|
|
70514
|
+
origin?: {
|
|
70515
|
+
valid?: boolean | null | undefined;
|
|
70516
|
+
title?: string | null | undefined;
|
|
70517
|
+
assetId?: string | null | undefined;
|
|
70518
|
+
width?: number | null | undefined;
|
|
70519
|
+
height?: number | null | undefined;
|
|
70520
|
+
sourceFileName?: string | null | undefined;
|
|
70521
|
+
previewUrl?: string | null | undefined;
|
|
70522
|
+
referenceId?: string | null | undefined;
|
|
70523
|
+
assetScale?: number | null | undefined;
|
|
70524
|
+
} | null | undefined;
|
|
70525
|
+
backgroundColor?: {
|
|
70526
|
+
value: string;
|
|
70527
|
+
} | null | undefined;
|
|
70528
|
+
}[] | null | undefined;
|
|
70529
|
+
size?: {
|
|
70530
|
+
width?: number | null | undefined;
|
|
70531
|
+
height?: number | null | undefined;
|
|
70532
|
+
} | null | undefined;
|
|
70533
|
+
renderCodeProperties?: {
|
|
70534
|
+
showCode: boolean;
|
|
70535
|
+
showControls?: boolean | undefined;
|
|
70536
|
+
} | null | undefined;
|
|
70537
|
+
componentAssets?: {
|
|
70538
|
+
persistentId: string;
|
|
70539
|
+
componentAssetId: string;
|
|
70540
|
+
description?: string | null | undefined;
|
|
70541
|
+
title?: string | null | undefined;
|
|
70542
|
+
backgroundColor?: {
|
|
70543
|
+
value: string;
|
|
70544
|
+
} | null | undefined;
|
|
70545
|
+
}[] | null | undefined;
|
|
70546
|
+
tableProperties?: {
|
|
70547
|
+
showBorders: boolean;
|
|
70548
|
+
showHeaderRow: boolean;
|
|
70549
|
+
showHeaderColumn: boolean;
|
|
70550
|
+
columns: {
|
|
70551
|
+
id: string;
|
|
70552
|
+
width: {
|
|
70553
|
+
value?: {
|
|
70554
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
70555
|
+
measure: number;
|
|
70556
|
+
} | null | undefined;
|
|
70557
|
+
aliasTo?: string | null | undefined;
|
|
70558
|
+
};
|
|
70559
|
+
}[];
|
|
70560
|
+
} | null | undefined;
|
|
70561
|
+
columnId?: string | null | undefined;
|
|
70562
|
+
blacklistedElementProperties?: string[] | null | undefined;
|
|
70563
|
+
userMetadata?: string | null | undefined;
|
|
70564
|
+
} & {
|
|
70565
|
+
children: ({
|
|
70566
|
+
persistentId: string;
|
|
70567
|
+
type: "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
70568
|
+
url?: string | null | undefined;
|
|
70569
|
+
tokenType?: "Image" | "Font" | "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" | null | undefined;
|
|
70570
|
+
asset?: {
|
|
70571
|
+
type: "image" | "figmaFrame";
|
|
70572
|
+
id?: string | null | undefined;
|
|
70573
|
+
url?: string | null | undefined;
|
|
70574
|
+
figmaFrame?: {
|
|
70575
|
+
persistentId: string;
|
|
70576
|
+
sourceId: string;
|
|
70577
|
+
sourceFrameId: string;
|
|
70578
|
+
description?: string | null | undefined;
|
|
70579
|
+
title?: string | null | undefined;
|
|
70580
|
+
origin?: {
|
|
70581
|
+
valid?: boolean | null | undefined;
|
|
70582
|
+
title?: string | null | undefined;
|
|
70583
|
+
assetId?: string | null | undefined;
|
|
70584
|
+
width?: number | null | undefined;
|
|
70585
|
+
height?: number | null | undefined;
|
|
70586
|
+
sourceFileName?: string | null | undefined;
|
|
70587
|
+
previewUrl?: string | null | undefined;
|
|
70588
|
+
referenceId?: string | null | undefined;
|
|
70589
|
+
assetScale?: number | null | undefined;
|
|
70590
|
+
} | null | undefined;
|
|
70591
|
+
backgroundColor?: {
|
|
70592
|
+
value: string;
|
|
70593
|
+
} | null | undefined;
|
|
70594
|
+
} | null | undefined;
|
|
70595
|
+
} | null | undefined;
|
|
70596
|
+
theme?: {
|
|
70597
|
+
type: "Override" | "Comparison";
|
|
70598
|
+
themeIds: string[];
|
|
70599
|
+
} | null | undefined;
|
|
70600
|
+
backgroundColor?: {
|
|
70601
|
+
value: string;
|
|
70602
|
+
} | null | undefined;
|
|
70603
|
+
urlPreview?: {
|
|
70604
|
+
description?: string | null | undefined;
|
|
70605
|
+
title?: string | null | undefined;
|
|
70606
|
+
thumbnailUrl?: string | null | undefined;
|
|
70607
|
+
} | null | undefined;
|
|
70608
|
+
alignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
70609
|
+
text?: {
|
|
70610
|
+
spans: {
|
|
70611
|
+
text: string;
|
|
70612
|
+
attributes: {
|
|
70613
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
70614
|
+
link?: string | null | undefined;
|
|
70615
|
+
documentationItemId?: string | null | undefined;
|
|
70616
|
+
openInNewTab?: boolean | null | undefined;
|
|
70617
|
+
openInNewWindow?: boolean | null | undefined;
|
|
70618
|
+
}[];
|
|
70619
|
+
}[];
|
|
70620
|
+
} | null | undefined;
|
|
70621
|
+
designObjectId?: string | null | undefined;
|
|
70622
|
+
designObjectIds?: string[] | null | undefined;
|
|
70623
|
+
showNestedGroups?: boolean | null | undefined;
|
|
70624
|
+
brandId?: string | null | undefined;
|
|
70625
|
+
caption?: string | null | undefined;
|
|
70626
|
+
headingType?: number | null | undefined;
|
|
70627
|
+
codeLanguage?: "C" | "Angular" | "Bash" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
70628
|
+
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
70629
|
+
urlInput?: string | null | undefined;
|
|
70630
|
+
shortcuts?: {
|
|
70631
|
+
persistentId: string;
|
|
70632
|
+
url?: string | null | undefined;
|
|
70633
|
+
description?: string | null | undefined;
|
|
70634
|
+
title?: string | null | undefined;
|
|
70635
|
+
asset?: {
|
|
70636
|
+
type: "image" | "figmaFrame";
|
|
70637
|
+
id?: string | null | undefined;
|
|
70638
|
+
url?: string | null | undefined;
|
|
70639
|
+
figmaFrame?: {
|
|
70640
|
+
persistentId: string;
|
|
70641
|
+
sourceId: string;
|
|
70642
|
+
sourceFrameId: string;
|
|
70643
|
+
description?: string | null | undefined;
|
|
70644
|
+
title?: string | null | undefined;
|
|
70645
|
+
origin?: {
|
|
70646
|
+
valid?: boolean | null | undefined;
|
|
70647
|
+
title?: string | null | undefined;
|
|
70648
|
+
assetId?: string | null | undefined;
|
|
70649
|
+
width?: number | null | undefined;
|
|
70650
|
+
height?: number | null | undefined;
|
|
70651
|
+
sourceFileName?: string | null | undefined;
|
|
70652
|
+
previewUrl?: string | null | undefined;
|
|
70653
|
+
referenceId?: string | null | undefined;
|
|
70654
|
+
assetScale?: number | null | undefined;
|
|
70655
|
+
} | null | undefined;
|
|
70656
|
+
backgroundColor?: {
|
|
70657
|
+
value: string;
|
|
70658
|
+
} | null | undefined;
|
|
70659
|
+
} | null | undefined;
|
|
70660
|
+
} | null | undefined;
|
|
70661
|
+
documentationItemId?: string | null | undefined;
|
|
70662
|
+
pageHeadingId?: string | null | undefined;
|
|
70663
|
+
openInNewTab?: boolean | null | undefined;
|
|
70664
|
+
urlPreview?: {
|
|
70665
|
+
description?: string | null | undefined;
|
|
70666
|
+
title?: string | null | undefined;
|
|
70667
|
+
thumbnailUrl?: string | null | undefined;
|
|
70668
|
+
} | null | undefined;
|
|
70669
|
+
documentationItemPreview?: {
|
|
70670
|
+
valid?: boolean | null | undefined;
|
|
70671
|
+
title?: string | null | undefined;
|
|
70672
|
+
} | null | undefined;
|
|
70673
|
+
}[] | null | undefined;
|
|
70674
|
+
customBlockKey?: string | null | undefined;
|
|
70675
|
+
customBlockProperties?: {
|
|
70676
|
+
key: string;
|
|
70677
|
+
value?: any;
|
|
70678
|
+
}[] | null | undefined;
|
|
70679
|
+
variantKey?: string | null | undefined;
|
|
70680
|
+
figmaFrameProperties?: {
|
|
70681
|
+
alignment: "Center" | "FrameHeight";
|
|
70682
|
+
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
70683
|
+
showTitles: boolean;
|
|
70684
|
+
color?: {
|
|
70685
|
+
value: string;
|
|
70686
|
+
} | null | undefined;
|
|
70687
|
+
backgroundColor?: {
|
|
70688
|
+
value: string;
|
|
70689
|
+
} | null | undefined;
|
|
70690
|
+
} | null | undefined;
|
|
70691
|
+
figmaFrames?: {
|
|
70692
|
+
persistentId: string;
|
|
70693
|
+
sourceId: string;
|
|
70694
|
+
sourceFrameId: string;
|
|
70695
|
+
description?: string | null | undefined;
|
|
70696
|
+
title?: string | null | undefined;
|
|
70697
|
+
origin?: {
|
|
70698
|
+
valid?: boolean | null | undefined;
|
|
70699
|
+
title?: string | null | undefined;
|
|
70700
|
+
assetId?: string | null | undefined;
|
|
70701
|
+
width?: number | null | undefined;
|
|
70702
|
+
height?: number | null | undefined;
|
|
70703
|
+
sourceFileName?: string | null | undefined;
|
|
70704
|
+
previewUrl?: string | null | undefined;
|
|
70705
|
+
referenceId?: string | null | undefined;
|
|
70706
|
+
assetScale?: number | null | undefined;
|
|
70707
|
+
} | null | undefined;
|
|
70708
|
+
backgroundColor?: {
|
|
70709
|
+
value: string;
|
|
70710
|
+
} | null | undefined;
|
|
70711
|
+
}[] | null | undefined;
|
|
70712
|
+
size?: {
|
|
70713
|
+
width?: number | null | undefined;
|
|
70714
|
+
height?: number | null | undefined;
|
|
70715
|
+
} | null | undefined;
|
|
70716
|
+
renderCodeProperties?: {
|
|
70717
|
+
showCode: boolean;
|
|
70718
|
+
showControls?: boolean | undefined;
|
|
70719
|
+
} | null | undefined;
|
|
70720
|
+
componentAssets?: {
|
|
70721
|
+
persistentId: string;
|
|
70722
|
+
componentAssetId: string;
|
|
70723
|
+
description?: string | null | undefined;
|
|
70724
|
+
title?: string | null | undefined;
|
|
70725
|
+
backgroundColor?: {
|
|
70726
|
+
value: string;
|
|
70727
|
+
} | null | undefined;
|
|
70728
|
+
}[] | null | undefined;
|
|
70729
|
+
tableProperties?: {
|
|
70730
|
+
showBorders: boolean;
|
|
70731
|
+
showHeaderRow: boolean;
|
|
70732
|
+
showHeaderColumn: boolean;
|
|
70733
|
+
columns: {
|
|
70734
|
+
id: string;
|
|
70735
|
+
width: {
|
|
70736
|
+
value?: {
|
|
70737
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
70738
|
+
measure: number;
|
|
70739
|
+
} | null | undefined;
|
|
70740
|
+
aliasTo?: string | null | undefined;
|
|
70741
|
+
};
|
|
70742
|
+
}[];
|
|
70743
|
+
} | null | undefined;
|
|
70744
|
+
columnId?: string | null | undefined;
|
|
70745
|
+
blacklistedElementProperties?: string[] | null | undefined;
|
|
70746
|
+
userMetadata?: string | null | undefined;
|
|
70747
|
+
} & any)[] | null | undefined;
|
|
70748
|
+
})[] | undefined;
|
|
70749
|
+
};
|
|
70750
|
+
parentPersistentId: string;
|
|
70751
|
+
shortPersistentId: string;
|
|
70752
|
+
sortOrder: number;
|
|
70753
|
+
meta: {
|
|
70754
|
+
name: string;
|
|
70755
|
+
description?: string | undefined;
|
|
70756
|
+
};
|
|
70757
|
+
slug?: string | undefined;
|
|
70758
|
+
userSlug?: string | undefined;
|
|
70759
|
+
};
|
|
70760
|
+
reason: "Publish" | "Deletion";
|
|
70761
|
+
pageContentHash: string;
|
|
70762
|
+
}>;
|
|
70763
|
+
type DocumentationPageSnapshot = z.infer<typeof DocumentationPageSnapshot>;
|
|
70764
|
+
type CreateDocumentationPageSnapshot = DbCreateInputOmit<DocumentationPageSnapshot>;
|
|
70765
|
+
type UpdateDocumentationPageSnapshot = OmitStrict<DbUpdate<DocumentationPageSnapshot>, "designSystemVersionId">;
|
|
70766
|
+
|
|
70767
|
+
/**
|
|
70768
|
+
* Snapshot of an element group.
|
|
70769
|
+
*
|
|
70770
|
+
* Please note that existence of snapshot's references (including parent persistent id) is not guaranteed.
|
|
70771
|
+
*/
|
|
70772
|
+
declare const ElementGroupSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
70773
|
+
id: z.ZodString;
|
|
70774
|
+
designSystemVersionId: z.ZodString;
|
|
70775
|
+
createdAt: z.ZodDate;
|
|
70776
|
+
updatedAt: z.ZodDate;
|
|
70777
|
+
reason: z.ZodEnum<["Publish", "Deletion"]>;
|
|
70778
|
+
}, {
|
|
70779
|
+
group: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
70780
|
+
id: z.ZodString;
|
|
70781
|
+
persistentId: z.ZodString;
|
|
70782
|
+
meta: z.ZodObject<{
|
|
70783
|
+
name: z.ZodString;
|
|
70784
|
+
description: z.ZodOptional<z.ZodString>;
|
|
70785
|
+
}, "strip", z.ZodTypeAny, {
|
|
70786
|
+
name: string;
|
|
70787
|
+
description?: string | undefined;
|
|
70788
|
+
}, {
|
|
70789
|
+
name: string;
|
|
70790
|
+
description?: string | undefined;
|
|
70791
|
+
}>;
|
|
70792
|
+
designSystemVersionId: z.ZodString;
|
|
70793
|
+
createdAt: z.ZodDate;
|
|
70794
|
+
updatedAt: z.ZodDate;
|
|
70795
|
+
}, {
|
|
70796
|
+
parentPersistentId: z.ZodOptional<z.ZodString>;
|
|
70797
|
+
sortOrder: z.ZodNumber;
|
|
70798
|
+
}>, {
|
|
70799
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
70800
|
+
userSlug: z.ZodOptional<z.ZodString>;
|
|
70801
|
+
}>, {
|
|
70802
|
+
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
70803
|
+
}>, {
|
|
70804
|
+
shortPersistentId: z.ZodOptional<z.ZodString>;
|
|
70805
|
+
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"]>]>;
|
|
70806
|
+
data: z.ZodOptional<z.ZodObject<{
|
|
70807
|
+
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>;
|
|
70808
|
+
configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
70809
|
+
showSidebar: boolean;
|
|
70810
|
+
header: {
|
|
70811
|
+
description: string;
|
|
70812
|
+
alignment: "Center" | "Left";
|
|
70813
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
70814
|
+
showBackgroundOverlay: boolean;
|
|
70815
|
+
showCoverText: boolean;
|
|
70816
|
+
backgroundColor?: {
|
|
70817
|
+
value: string;
|
|
70818
|
+
referencedTokenId?: string | undefined;
|
|
70819
|
+
} | null | undefined;
|
|
70820
|
+
foregroundColor?: {
|
|
70821
|
+
value: string;
|
|
70822
|
+
referencedTokenId?: string | undefined;
|
|
70823
|
+
} | null | undefined;
|
|
70824
|
+
backgroundImageAsset?: {
|
|
70825
|
+
type: "Resource" | "FigmaNode";
|
|
70826
|
+
resource?: {
|
|
70827
|
+
url: string;
|
|
70828
|
+
resourceId: string;
|
|
70829
|
+
} | undefined;
|
|
70830
|
+
figmaNode?: {
|
|
70831
|
+
sourceId: string;
|
|
70832
|
+
frameReferenceId: string;
|
|
70833
|
+
} | undefined;
|
|
70834
|
+
} | null | undefined;
|
|
70835
|
+
minHeight?: number | null | undefined;
|
|
70836
|
+
};
|
|
70837
|
+
isHidden?: boolean | undefined;
|
|
70838
|
+
isPrivate?: boolean | undefined;
|
|
70839
|
+
}, z.ZodTypeDef, {
|
|
70840
|
+
showSidebar: boolean;
|
|
70841
|
+
header: {
|
|
70842
|
+
description: string;
|
|
70843
|
+
alignment: "Center" | "Left";
|
|
70844
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
70845
|
+
showBackgroundOverlay: boolean;
|
|
70846
|
+
showCoverText: boolean;
|
|
70847
|
+
backgroundColor?: {
|
|
70848
|
+
value: string;
|
|
70849
|
+
referencedTokenId?: string | undefined;
|
|
70850
|
+
} | null | undefined;
|
|
70851
|
+
foregroundColor?: {
|
|
70852
|
+
value: string;
|
|
70853
|
+
referencedTokenId?: string | undefined;
|
|
70854
|
+
} | null | undefined;
|
|
70855
|
+
backgroundImageAsset?: {
|
|
70856
|
+
type: "Resource" | "FigmaNode";
|
|
70857
|
+
resource?: {
|
|
70858
|
+
url: string;
|
|
70859
|
+
resourceId: string;
|
|
70860
|
+
} | undefined;
|
|
70861
|
+
figmaNode?: {
|
|
70862
|
+
sourceId: string;
|
|
70863
|
+
frameReferenceId: string;
|
|
70864
|
+
} | undefined;
|
|
70865
|
+
} | null | undefined;
|
|
70866
|
+
minHeight?: number | null | undefined;
|
|
70867
|
+
};
|
|
70868
|
+
isHidden?: boolean | undefined;
|
|
70869
|
+
isPrivate?: boolean | undefined;
|
|
70870
|
+
}>>>, {
|
|
70871
|
+
showSidebar: boolean;
|
|
70872
|
+
header: {
|
|
70873
|
+
description: string;
|
|
70874
|
+
alignment: "Center" | "Left";
|
|
70875
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
70876
|
+
showBackgroundOverlay: boolean;
|
|
70877
|
+
showCoverText: boolean;
|
|
70878
|
+
backgroundColor?: {
|
|
70879
|
+
value: string;
|
|
70880
|
+
referencedTokenId?: string | undefined;
|
|
70881
|
+
} | null | undefined;
|
|
70882
|
+
foregroundColor?: {
|
|
70883
|
+
value: string;
|
|
70884
|
+
referencedTokenId?: string | undefined;
|
|
70885
|
+
} | null | undefined;
|
|
70886
|
+
backgroundImageAsset?: {
|
|
70887
|
+
type: "Resource" | "FigmaNode";
|
|
70888
|
+
resource?: {
|
|
70889
|
+
url: string;
|
|
70890
|
+
resourceId: string;
|
|
70891
|
+
} | undefined;
|
|
70892
|
+
figmaNode?: {
|
|
70893
|
+
sourceId: string;
|
|
70894
|
+
frameReferenceId: string;
|
|
70895
|
+
} | undefined;
|
|
70896
|
+
} | null | undefined;
|
|
70897
|
+
minHeight?: number | null | undefined;
|
|
70898
|
+
};
|
|
70899
|
+
isHidden?: boolean | undefined;
|
|
70900
|
+
isPrivate?: boolean | undefined;
|
|
70901
|
+
} | undefined, {
|
|
70902
|
+
showSidebar: boolean;
|
|
70903
|
+
header: {
|
|
70904
|
+
description: string;
|
|
70905
|
+
alignment: "Center" | "Left";
|
|
70906
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
70907
|
+
showBackgroundOverlay: boolean;
|
|
70908
|
+
showCoverText: boolean;
|
|
70909
|
+
backgroundColor?: {
|
|
70910
|
+
value: string;
|
|
70911
|
+
referencedTokenId?: string | undefined;
|
|
70912
|
+
} | null | undefined;
|
|
70913
|
+
foregroundColor?: {
|
|
70914
|
+
value: string;
|
|
70915
|
+
referencedTokenId?: string | undefined;
|
|
70916
|
+
} | null | undefined;
|
|
70917
|
+
backgroundImageAsset?: {
|
|
70918
|
+
type: "Resource" | "FigmaNode";
|
|
70919
|
+
resource?: {
|
|
70920
|
+
url: string;
|
|
70921
|
+
resourceId: string;
|
|
70922
|
+
} | undefined;
|
|
70923
|
+
figmaNode?: {
|
|
70924
|
+
sourceId: string;
|
|
70925
|
+
frameReferenceId: string;
|
|
70926
|
+
} | undefined;
|
|
70927
|
+
} | null | undefined;
|
|
70928
|
+
minHeight?: number | null | undefined;
|
|
70929
|
+
};
|
|
70930
|
+
isHidden?: boolean | undefined;
|
|
70931
|
+
isPrivate?: boolean | undefined;
|
|
70932
|
+
} | null | undefined>;
|
|
70933
|
+
}, "strip", z.ZodTypeAny, {
|
|
70934
|
+
configuration?: {
|
|
70935
|
+
showSidebar: boolean;
|
|
70936
|
+
header: {
|
|
70937
|
+
description: string;
|
|
70938
|
+
alignment: "Center" | "Left";
|
|
70939
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
70940
|
+
showBackgroundOverlay: boolean;
|
|
70941
|
+
showCoverText: boolean;
|
|
70942
|
+
backgroundColor?: {
|
|
70943
|
+
value: string;
|
|
70944
|
+
referencedTokenId?: string | undefined;
|
|
70945
|
+
} | null | undefined;
|
|
70946
|
+
foregroundColor?: {
|
|
70947
|
+
value: string;
|
|
70948
|
+
referencedTokenId?: string | undefined;
|
|
70949
|
+
} | null | undefined;
|
|
70950
|
+
backgroundImageAsset?: {
|
|
70951
|
+
type: "Resource" | "FigmaNode";
|
|
70952
|
+
resource?: {
|
|
70953
|
+
url: string;
|
|
70954
|
+
resourceId: string;
|
|
70955
|
+
} | undefined;
|
|
70956
|
+
figmaNode?: {
|
|
70957
|
+
sourceId: string;
|
|
70958
|
+
frameReferenceId: string;
|
|
70959
|
+
} | undefined;
|
|
70960
|
+
} | null | undefined;
|
|
70961
|
+
minHeight?: number | null | undefined;
|
|
70962
|
+
};
|
|
70963
|
+
isHidden?: boolean | undefined;
|
|
70964
|
+
isPrivate?: boolean | undefined;
|
|
70965
|
+
} | undefined;
|
|
70966
|
+
behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
|
|
70967
|
+
}, {
|
|
70968
|
+
configuration?: {
|
|
70969
|
+
showSidebar: boolean;
|
|
70970
|
+
header: {
|
|
70971
|
+
description: string;
|
|
70972
|
+
alignment: "Center" | "Left";
|
|
70973
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
70974
|
+
showBackgroundOverlay: boolean;
|
|
70975
|
+
showCoverText: boolean;
|
|
70976
|
+
backgroundColor?: {
|
|
70977
|
+
value: string;
|
|
70978
|
+
referencedTokenId?: string | undefined;
|
|
70979
|
+
} | null | undefined;
|
|
70980
|
+
foregroundColor?: {
|
|
70981
|
+
value: string;
|
|
70982
|
+
referencedTokenId?: string | undefined;
|
|
70983
|
+
} | null | undefined;
|
|
70984
|
+
backgroundImageAsset?: {
|
|
70985
|
+
type: "Resource" | "FigmaNode";
|
|
70986
|
+
resource?: {
|
|
70987
|
+
url: string;
|
|
70988
|
+
resourceId: string;
|
|
70989
|
+
} | undefined;
|
|
70990
|
+
figmaNode?: {
|
|
70991
|
+
sourceId: string;
|
|
70992
|
+
frameReferenceId: string;
|
|
70993
|
+
} | undefined;
|
|
70994
|
+
} | null | undefined;
|
|
70995
|
+
minHeight?: number | null | undefined;
|
|
70996
|
+
};
|
|
70997
|
+
isHidden?: boolean | undefined;
|
|
70998
|
+
isPrivate?: boolean | undefined;
|
|
70999
|
+
} | null | undefined;
|
|
71000
|
+
behavior?: "Tabs" | "Group" | null | undefined;
|
|
71001
|
+
}>>;
|
|
68713
71002
|
}>, "strip", z.ZodTypeAny, {
|
|
68714
|
-
|
|
68715
|
-
|
|
68716
|
-
|
|
71003
|
+
id: string;
|
|
71004
|
+
createdAt: Date;
|
|
71005
|
+
updatedAt: Date;
|
|
71006
|
+
persistentId: string;
|
|
71007
|
+
designSystemVersionId: string;
|
|
71008
|
+
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";
|
|
71009
|
+
sortOrder: number;
|
|
71010
|
+
meta: {
|
|
71011
|
+
name: string;
|
|
71012
|
+
description?: string | undefined;
|
|
71013
|
+
};
|
|
71014
|
+
data?: {
|
|
71015
|
+
configuration?: {
|
|
71016
|
+
showSidebar: boolean;
|
|
71017
|
+
header: {
|
|
71018
|
+
description: string;
|
|
71019
|
+
alignment: "Center" | "Left";
|
|
71020
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
71021
|
+
showBackgroundOverlay: boolean;
|
|
71022
|
+
showCoverText: boolean;
|
|
71023
|
+
backgroundColor?: {
|
|
71024
|
+
value: string;
|
|
71025
|
+
referencedTokenId?: string | undefined;
|
|
71026
|
+
} | null | undefined;
|
|
71027
|
+
foregroundColor?: {
|
|
71028
|
+
value: string;
|
|
71029
|
+
referencedTokenId?: string | undefined;
|
|
71030
|
+
} | null | undefined;
|
|
71031
|
+
backgroundImageAsset?: {
|
|
71032
|
+
type: "Resource" | "FigmaNode";
|
|
71033
|
+
resource?: {
|
|
71034
|
+
url: string;
|
|
71035
|
+
resourceId: string;
|
|
71036
|
+
} | undefined;
|
|
71037
|
+
figmaNode?: {
|
|
71038
|
+
sourceId: string;
|
|
71039
|
+
frameReferenceId: string;
|
|
71040
|
+
} | undefined;
|
|
71041
|
+
} | null | undefined;
|
|
71042
|
+
minHeight?: number | null | undefined;
|
|
71043
|
+
};
|
|
71044
|
+
isHidden?: boolean | undefined;
|
|
71045
|
+
isPrivate?: boolean | undefined;
|
|
71046
|
+
} | undefined;
|
|
71047
|
+
behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
|
|
68717
71048
|
} | undefined;
|
|
68718
|
-
|
|
71049
|
+
brandPersistentId?: string | undefined;
|
|
71050
|
+
parentPersistentId?: string | undefined;
|
|
71051
|
+
shortPersistentId?: string | undefined;
|
|
71052
|
+
slug?: string | undefined;
|
|
71053
|
+
userSlug?: string | undefined;
|
|
68719
71054
|
}, {
|
|
68720
|
-
|
|
68721
|
-
|
|
68722
|
-
|
|
68723
|
-
|
|
68724
|
-
|
|
68725
|
-
|
|
68726
|
-
|
|
68727
|
-
|
|
68728
|
-
|
|
68729
|
-
|
|
68730
|
-
|
|
68731
|
-
|
|
71055
|
+
id: string;
|
|
71056
|
+
createdAt: Date;
|
|
71057
|
+
updatedAt: Date;
|
|
71058
|
+
persistentId: string;
|
|
71059
|
+
designSystemVersionId: string;
|
|
71060
|
+
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";
|
|
71061
|
+
sortOrder: number;
|
|
71062
|
+
meta: {
|
|
71063
|
+
name: string;
|
|
71064
|
+
description?: string | undefined;
|
|
71065
|
+
};
|
|
71066
|
+
data?: {
|
|
71067
|
+
configuration?: {
|
|
71068
|
+
showSidebar: boolean;
|
|
71069
|
+
header: {
|
|
71070
|
+
description: string;
|
|
71071
|
+
alignment: "Center" | "Left";
|
|
71072
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
71073
|
+
showBackgroundOverlay: boolean;
|
|
71074
|
+
showCoverText: boolean;
|
|
71075
|
+
backgroundColor?: {
|
|
71076
|
+
value: string;
|
|
71077
|
+
referencedTokenId?: string | undefined;
|
|
71078
|
+
} | null | undefined;
|
|
71079
|
+
foregroundColor?: {
|
|
71080
|
+
value: string;
|
|
71081
|
+
referencedTokenId?: string | undefined;
|
|
71082
|
+
} | null | undefined;
|
|
71083
|
+
backgroundImageAsset?: {
|
|
71084
|
+
type: "Resource" | "FigmaNode";
|
|
71085
|
+
resource?: {
|
|
71086
|
+
url: string;
|
|
71087
|
+
resourceId: string;
|
|
71088
|
+
} | undefined;
|
|
71089
|
+
figmaNode?: {
|
|
71090
|
+
sourceId: string;
|
|
71091
|
+
frameReferenceId: string;
|
|
71092
|
+
} | undefined;
|
|
71093
|
+
} | null | undefined;
|
|
71094
|
+
minHeight?: number | null | undefined;
|
|
71095
|
+
};
|
|
71096
|
+
isHidden?: boolean | undefined;
|
|
71097
|
+
isPrivate?: boolean | undefined;
|
|
71098
|
+
} | null | undefined;
|
|
71099
|
+
behavior?: "Tabs" | "Group" | null | undefined;
|
|
68732
71100
|
} | undefined;
|
|
68733
|
-
|
|
68734
|
-
|
|
68735
|
-
|
|
68736
|
-
|
|
68737
|
-
|
|
68738
|
-
value?: {
|
|
68739
|
-
unit: "Raw";
|
|
68740
|
-
measure: number;
|
|
68741
|
-
} | null | undefined;
|
|
68742
|
-
aliasTo?: string | null | undefined;
|
|
68743
|
-
};
|
|
68744
|
-
}>, z.ZodObject<{
|
|
68745
|
-
type: z.ZodLiteral<"Font">;
|
|
68746
|
-
data: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
68747
|
-
}, "strip", z.ZodTypeAny, {
|
|
68748
|
-
type: "Font";
|
|
68749
|
-
data: Record<string, any>;
|
|
68750
|
-
}, {
|
|
68751
|
-
type: "Font";
|
|
68752
|
-
data: Record<string, any>;
|
|
68753
|
-
}>]>, z.ZodObject<Omit<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
68754
|
-
id: z.ZodString;
|
|
68755
|
-
persistentId: z.ZodString;
|
|
68756
|
-
meta: z.ZodObject<{
|
|
68757
|
-
name: z.ZodString;
|
|
68758
|
-
description: z.ZodOptional<z.ZodString>;
|
|
68759
|
-
}, "strip", z.ZodTypeAny, {
|
|
68760
|
-
name: string;
|
|
68761
|
-
description?: string | undefined;
|
|
68762
|
-
}, {
|
|
68763
|
-
name: string;
|
|
68764
|
-
description?: string | undefined;
|
|
71101
|
+
brandPersistentId?: string | undefined;
|
|
71102
|
+
parentPersistentId?: string | undefined;
|
|
71103
|
+
shortPersistentId?: string | undefined;
|
|
71104
|
+
slug?: string | undefined;
|
|
71105
|
+
userSlug?: string | undefined;
|
|
68765
71106
|
}>;
|
|
68766
|
-
|
|
68767
|
-
|
|
68768
|
-
|
|
68769
|
-
|
|
68770
|
-
parentPersistentId: z.ZodOptional<z.ZodString>;
|
|
68771
|
-
sortOrder: z.ZodNumber;
|
|
68772
|
-
}, {
|
|
68773
|
-
parentPersistentId: z.ZodString;
|
|
68774
|
-
}>>, {
|
|
68775
|
-
brandPersistentId: z.ZodString;
|
|
68776
|
-
}>, {
|
|
68777
|
-
origin: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
68778
|
-
id: z.ZodString;
|
|
68779
|
-
sourceId: z.ZodString;
|
|
68780
|
-
name: z.ZodString;
|
|
68781
|
-
}, {
|
|
68782
|
-
referenceOriginId: z.ZodOptional<z.ZodString>;
|
|
68783
|
-
referencePersistentId: z.ZodOptional<z.ZodString>;
|
|
68784
|
-
}>, "strip", z.ZodTypeAny, {
|
|
68785
|
-
id: string;
|
|
68786
|
-
name: string;
|
|
68787
|
-
sourceId: string;
|
|
68788
|
-
referenceOriginId?: string | undefined;
|
|
68789
|
-
referencePersistentId?: string | undefined;
|
|
68790
|
-
}, {
|
|
68791
|
-
id: string;
|
|
68792
|
-
name: string;
|
|
68793
|
-
sourceId: string;
|
|
68794
|
-
referenceOriginId?: string | undefined;
|
|
68795
|
-
referencePersistentId?: string | undefined;
|
|
68796
|
-
}>>;
|
|
68797
|
-
}>, "id" | "createdAt" | "updatedAt">, "strip", z.ZodTypeAny, {
|
|
68798
|
-
persistentId: string;
|
|
71107
|
+
}>, "strip", z.ZodTypeAny, {
|
|
71108
|
+
id: string;
|
|
71109
|
+
createdAt: Date;
|
|
71110
|
+
updatedAt: Date;
|
|
68799
71111
|
designSystemVersionId: string;
|
|
68800
|
-
|
|
68801
|
-
parentPersistentId: string;
|
|
68802
|
-
sortOrder: number;
|
|
68803
|
-
meta: {
|
|
68804
|
-
name: string;
|
|
68805
|
-
description?: string | undefined;
|
|
68806
|
-
};
|
|
68807
|
-
origin?: {
|
|
71112
|
+
group: {
|
|
68808
71113
|
id: string;
|
|
68809
|
-
|
|
68810
|
-
|
|
68811
|
-
|
|
68812
|
-
|
|
68813
|
-
|
|
71114
|
+
createdAt: Date;
|
|
71115
|
+
updatedAt: Date;
|
|
71116
|
+
persistentId: string;
|
|
71117
|
+
designSystemVersionId: string;
|
|
71118
|
+
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";
|
|
71119
|
+
sortOrder: number;
|
|
71120
|
+
meta: {
|
|
71121
|
+
name: string;
|
|
71122
|
+
description?: string | undefined;
|
|
71123
|
+
};
|
|
71124
|
+
data?: {
|
|
71125
|
+
configuration?: {
|
|
71126
|
+
showSidebar: boolean;
|
|
71127
|
+
header: {
|
|
71128
|
+
description: string;
|
|
71129
|
+
alignment: "Center" | "Left";
|
|
71130
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
71131
|
+
showBackgroundOverlay: boolean;
|
|
71132
|
+
showCoverText: boolean;
|
|
71133
|
+
backgroundColor?: {
|
|
71134
|
+
value: string;
|
|
71135
|
+
referencedTokenId?: string | undefined;
|
|
71136
|
+
} | null | undefined;
|
|
71137
|
+
foregroundColor?: {
|
|
71138
|
+
value: string;
|
|
71139
|
+
referencedTokenId?: string | undefined;
|
|
71140
|
+
} | null | undefined;
|
|
71141
|
+
backgroundImageAsset?: {
|
|
71142
|
+
type: "Resource" | "FigmaNode";
|
|
71143
|
+
resource?: {
|
|
71144
|
+
url: string;
|
|
71145
|
+
resourceId: string;
|
|
71146
|
+
} | undefined;
|
|
71147
|
+
figmaNode?: {
|
|
71148
|
+
sourceId: string;
|
|
71149
|
+
frameReferenceId: string;
|
|
71150
|
+
} | undefined;
|
|
71151
|
+
} | null | undefined;
|
|
71152
|
+
minHeight?: number | null | undefined;
|
|
71153
|
+
};
|
|
71154
|
+
isHidden?: boolean | undefined;
|
|
71155
|
+
isPrivate?: boolean | undefined;
|
|
71156
|
+
} | undefined;
|
|
71157
|
+
behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
|
|
71158
|
+
} | undefined;
|
|
71159
|
+
brandPersistentId?: string | undefined;
|
|
71160
|
+
parentPersistentId?: string | undefined;
|
|
71161
|
+
shortPersistentId?: string | undefined;
|
|
71162
|
+
slug?: string | undefined;
|
|
71163
|
+
userSlug?: string | undefined;
|
|
71164
|
+
};
|
|
71165
|
+
reason: "Publish" | "Deletion";
|
|
68814
71166
|
}, {
|
|
68815
|
-
|
|
71167
|
+
id: string;
|
|
71168
|
+
createdAt: Date;
|
|
71169
|
+
updatedAt: Date;
|
|
68816
71170
|
designSystemVersionId: string;
|
|
68817
|
-
|
|
68818
|
-
parentPersistentId: string;
|
|
68819
|
-
sortOrder: number;
|
|
68820
|
-
meta: {
|
|
68821
|
-
name: string;
|
|
68822
|
-
description?: string | undefined;
|
|
68823
|
-
};
|
|
68824
|
-
origin?: {
|
|
71171
|
+
group: {
|
|
68825
71172
|
id: string;
|
|
68826
|
-
|
|
68827
|
-
|
|
68828
|
-
|
|
68829
|
-
|
|
68830
|
-
|
|
68831
|
-
|
|
68832
|
-
|
|
68833
|
-
|
|
68834
|
-
|
|
68835
|
-
|
|
68836
|
-
|
|
68837
|
-
|
|
68838
|
-
|
|
68839
|
-
|
|
68840
|
-
|
|
68841
|
-
|
|
68842
|
-
|
|
68843
|
-
|
|
68844
|
-
|
|
68845
|
-
|
|
68846
|
-
|
|
68847
|
-
|
|
68848
|
-
|
|
68849
|
-
|
|
68850
|
-
|
|
68851
|
-
|
|
68852
|
-
|
|
68853
|
-
|
|
68854
|
-
|
|
68855
|
-
|
|
68856
|
-
|
|
68857
|
-
|
|
71173
|
+
createdAt: Date;
|
|
71174
|
+
updatedAt: Date;
|
|
71175
|
+
persistentId: string;
|
|
71176
|
+
designSystemVersionId: string;
|
|
71177
|
+
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";
|
|
71178
|
+
sortOrder: number;
|
|
71179
|
+
meta: {
|
|
71180
|
+
name: string;
|
|
71181
|
+
description?: string | undefined;
|
|
71182
|
+
};
|
|
71183
|
+
data?: {
|
|
71184
|
+
configuration?: {
|
|
71185
|
+
showSidebar: boolean;
|
|
71186
|
+
header: {
|
|
71187
|
+
description: string;
|
|
71188
|
+
alignment: "Center" | "Left";
|
|
71189
|
+
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
71190
|
+
showBackgroundOverlay: boolean;
|
|
71191
|
+
showCoverText: boolean;
|
|
71192
|
+
backgroundColor?: {
|
|
71193
|
+
value: string;
|
|
71194
|
+
referencedTokenId?: string | undefined;
|
|
71195
|
+
} | null | undefined;
|
|
71196
|
+
foregroundColor?: {
|
|
71197
|
+
value: string;
|
|
71198
|
+
referencedTokenId?: string | undefined;
|
|
71199
|
+
} | null | undefined;
|
|
71200
|
+
backgroundImageAsset?: {
|
|
71201
|
+
type: "Resource" | "FigmaNode";
|
|
71202
|
+
resource?: {
|
|
71203
|
+
url: string;
|
|
71204
|
+
resourceId: string;
|
|
71205
|
+
} | undefined;
|
|
71206
|
+
figmaNode?: {
|
|
71207
|
+
sourceId: string;
|
|
71208
|
+
frameReferenceId: string;
|
|
71209
|
+
} | undefined;
|
|
71210
|
+
} | null | undefined;
|
|
71211
|
+
minHeight?: number | null | undefined;
|
|
71212
|
+
};
|
|
71213
|
+
isHidden?: boolean | undefined;
|
|
71214
|
+
isPrivate?: boolean | undefined;
|
|
71215
|
+
} | null | undefined;
|
|
71216
|
+
behavior?: "Tabs" | "Group" | null | undefined;
|
|
71217
|
+
} | undefined;
|
|
71218
|
+
brandPersistentId?: string | undefined;
|
|
71219
|
+
parentPersistentId?: string | undefined;
|
|
71220
|
+
shortPersistentId?: string | undefined;
|
|
71221
|
+
slug?: string | undefined;
|
|
71222
|
+
userSlug?: string | undefined;
|
|
71223
|
+
};
|
|
71224
|
+
reason: "Publish" | "Deletion";
|
|
71225
|
+
}>;
|
|
71226
|
+
type ElementGroupSnapshot = z.infer<typeof ElementGroupSnapshot>;
|
|
71227
|
+
type CreateElementGroupSnapshot = DbCreateInputOmit<ElementGroupSnapshot>;
|
|
71228
|
+
type UpdateElementGroupSnapshot = OmitStrict<DbUpdate<ElementGroupSnapshot>, "designSystemVersionId">;
|
|
68858
71229
|
|
|
68859
71230
|
declare const FigmaFileDownloadScope: z.ZodObject<{
|
|
68860
71231
|
styles: z.ZodBoolean;
|
|
@@ -129341,40 +131712,6 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
129341
131712
|
slug?: string | undefined;
|
|
129342
131713
|
userSlug?: string | undefined;
|
|
129343
131714
|
}>, "many">;
|
|
129344
|
-
documentationPublishedState: z.ZodArray<z.ZodObject<{
|
|
129345
|
-
id: z.ZodString;
|
|
129346
|
-
designSystemVersionId: z.ZodString;
|
|
129347
|
-
elementId: z.ZodString;
|
|
129348
|
-
elementType: 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"]>]>;
|
|
129349
|
-
elementPersistentId: z.ZodString;
|
|
129350
|
-
elementParentPersistentId: z.ZodString;
|
|
129351
|
-
elementName: z.ZodString;
|
|
129352
|
-
hash: z.ZodString;
|
|
129353
|
-
storageKey: z.ZodString;
|
|
129354
|
-
createdAt: z.ZodDate;
|
|
129355
|
-
}, "strip", z.ZodTypeAny, {
|
|
129356
|
-
id: string;
|
|
129357
|
-
createdAt: Date;
|
|
129358
|
-
designSystemVersionId: string;
|
|
129359
|
-
elementId: string;
|
|
129360
|
-
elementType: "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";
|
|
129361
|
-
elementPersistentId: string;
|
|
129362
|
-
elementParentPersistentId: string;
|
|
129363
|
-
elementName: string;
|
|
129364
|
-
hash: string;
|
|
129365
|
-
storageKey: string;
|
|
129366
|
-
}, {
|
|
129367
|
-
id: string;
|
|
129368
|
-
createdAt: Date;
|
|
129369
|
-
designSystemVersionId: string;
|
|
129370
|
-
elementId: string;
|
|
129371
|
-
elementType: "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";
|
|
129372
|
-
elementPersistentId: string;
|
|
129373
|
-
elementParentPersistentId: string;
|
|
129374
|
-
elementName: string;
|
|
129375
|
-
hash: string;
|
|
129376
|
-
storageKey: string;
|
|
129377
|
-
}>, "many">;
|
|
129378
131715
|
internalSettings: z.ZodObject<{
|
|
129379
131716
|
routingVersion: z.ZodString;
|
|
129380
131717
|
isDraftFeatureAdopted: z.ZodBoolean;
|
|
@@ -129490,18 +131827,6 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
129490
131827
|
slug?: string | undefined;
|
|
129491
131828
|
userSlug?: string | undefined;
|
|
129492
131829
|
}[];
|
|
129493
|
-
documentationPublishedState: {
|
|
129494
|
-
id: string;
|
|
129495
|
-
createdAt: Date;
|
|
129496
|
-
designSystemVersionId: string;
|
|
129497
|
-
elementId: string;
|
|
129498
|
-
elementType: "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";
|
|
129499
|
-
elementPersistentId: string;
|
|
129500
|
-
elementParentPersistentId: string;
|
|
129501
|
-
elementName: string;
|
|
129502
|
-
hash: string;
|
|
129503
|
-
storageKey: string;
|
|
129504
|
-
}[];
|
|
129505
131830
|
internalSettings: {
|
|
129506
131831
|
routingVersion: string;
|
|
129507
131832
|
isDraftFeatureAdopted: boolean;
|
|
@@ -129977,18 +132302,6 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
129977
132302
|
slug?: string | undefined;
|
|
129978
132303
|
userSlug?: string | undefined;
|
|
129979
132304
|
}[];
|
|
129980
|
-
documentationPublishedState: {
|
|
129981
|
-
id: string;
|
|
129982
|
-
createdAt: Date;
|
|
129983
|
-
designSystemVersionId: string;
|
|
129984
|
-
elementId: string;
|
|
129985
|
-
elementType: "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";
|
|
129986
|
-
elementPersistentId: string;
|
|
129987
|
-
elementParentPersistentId: string;
|
|
129988
|
-
elementName: string;
|
|
129989
|
-
hash: string;
|
|
129990
|
-
storageKey: string;
|
|
129991
|
-
}[];
|
|
129992
132305
|
internalSettings: {
|
|
129993
132306
|
routingVersion: string;
|
|
129994
132307
|
isDraftFeatureAdopted: boolean;
|
|
@@ -131746,40 +134059,6 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
131746
134059
|
slug?: string | undefined;
|
|
131747
134060
|
userSlug?: string | undefined;
|
|
131748
134061
|
}>, "many">;
|
|
131749
|
-
documentationPublishedState: z.ZodArray<z.ZodObject<{
|
|
131750
|
-
id: z.ZodString;
|
|
131751
|
-
designSystemVersionId: z.ZodString;
|
|
131752
|
-
elementId: z.ZodString;
|
|
131753
|
-
elementType: 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"]>]>;
|
|
131754
|
-
elementPersistentId: z.ZodString;
|
|
131755
|
-
elementParentPersistentId: z.ZodString;
|
|
131756
|
-
elementName: z.ZodString;
|
|
131757
|
-
hash: z.ZodString;
|
|
131758
|
-
storageKey: z.ZodString;
|
|
131759
|
-
createdAt: z.ZodDate;
|
|
131760
|
-
}, "strip", z.ZodTypeAny, {
|
|
131761
|
-
id: string;
|
|
131762
|
-
createdAt: Date;
|
|
131763
|
-
designSystemVersionId: string;
|
|
131764
|
-
elementId: string;
|
|
131765
|
-
elementType: "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";
|
|
131766
|
-
elementPersistentId: string;
|
|
131767
|
-
elementParentPersistentId: string;
|
|
131768
|
-
elementName: string;
|
|
131769
|
-
hash: string;
|
|
131770
|
-
storageKey: string;
|
|
131771
|
-
}, {
|
|
131772
|
-
id: string;
|
|
131773
|
-
createdAt: Date;
|
|
131774
|
-
designSystemVersionId: string;
|
|
131775
|
-
elementId: string;
|
|
131776
|
-
elementType: "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";
|
|
131777
|
-
elementPersistentId: string;
|
|
131778
|
-
elementParentPersistentId: string;
|
|
131779
|
-
elementName: string;
|
|
131780
|
-
hash: string;
|
|
131781
|
-
storageKey: string;
|
|
131782
|
-
}>, "many">;
|
|
131783
134062
|
deletedPageIds: z.ZodArray<z.ZodString, "many">;
|
|
131784
134063
|
deletedGroupIds: z.ZodArray<z.ZodString, "many">;
|
|
131785
134064
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -131887,18 +134166,6 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
131887
134166
|
slug?: string | undefined;
|
|
131888
134167
|
userSlug?: string | undefined;
|
|
131889
134168
|
}[];
|
|
131890
|
-
documentationPublishedState: {
|
|
131891
|
-
id: string;
|
|
131892
|
-
createdAt: Date;
|
|
131893
|
-
designSystemVersionId: string;
|
|
131894
|
-
elementId: string;
|
|
131895
|
-
elementType: "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";
|
|
131896
|
-
elementPersistentId: string;
|
|
131897
|
-
elementParentPersistentId: string;
|
|
131898
|
-
elementName: string;
|
|
131899
|
-
hash: string;
|
|
131900
|
-
storageKey: string;
|
|
131901
|
-
}[];
|
|
131902
134169
|
deletedPageIds: string[];
|
|
131903
134170
|
deletedGroupIds: string[];
|
|
131904
134171
|
}, {
|
|
@@ -132372,18 +134639,6 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
132372
134639
|
slug?: string | undefined;
|
|
132373
134640
|
userSlug?: string | undefined;
|
|
132374
134641
|
}[];
|
|
132375
|
-
documentationPublishedState: {
|
|
132376
|
-
id: string;
|
|
132377
|
-
createdAt: Date;
|
|
132378
|
-
designSystemVersionId: string;
|
|
132379
|
-
elementId: string;
|
|
132380
|
-
elementType: "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";
|
|
132381
|
-
elementPersistentId: string;
|
|
132382
|
-
elementParentPersistentId: string;
|
|
132383
|
-
elementName: string;
|
|
132384
|
-
hash: string;
|
|
132385
|
-
storageKey: string;
|
|
132386
|
-
}[];
|
|
132387
134642
|
deletedPageIds: string[];
|
|
132388
134643
|
deletedGroupIds: string[];
|
|
132389
134644
|
}>;
|
|
@@ -145295,4 +147550,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
145295
147550
|
}>;
|
|
145296
147551
|
type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
|
|
145297
147552
|
|
|
145298
|
-
export { Address, type AllFields, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, 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, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeIntegrationDump, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageContent, type CreateDocumentationPageRoom, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreateTheme, CreateUserInput, CreateWorkspaceInput, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshot, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemDump, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, 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, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageV1, DocumentationPageV2, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, type ExplicitPartial, ExportDestinationsMap, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationContext, ExportJobDump, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyImageValue, ExporterPropertyValue, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, 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, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitBranch, GitIntegrationType, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, 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, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, 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, PageBlockResourceFrameNodeReference, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, 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 UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserTest, VersionCreationJob, VersionCreationJobStatus, Visibility, VisibilityTokenData, VisibilityValue, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isSlugReserved, isTokenType, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, promiseWithTimeout, publishedDocEnvironments, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, zodCreateInputOmit, zodUpdateInputOmit };
|
|
147553
|
+
export { Address, type AllFields, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, 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, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeIntegrationDump, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageContent, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreateTheme, CreateUserInput, CreateWorkspaceInput, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemDump, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, 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, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, type ExplicitPartial, ExportDestinationsMap, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationContext, ExportJobDump, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyImageValue, ExporterPropertyValue, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, 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, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitBranch, GitIntegrationType, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, 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, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, 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, PageBlockResourceFrameNodeReference, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, 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 UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserTest, VersionCreationJob, VersionCreationJobStatus, Visibility, VisibilityTokenData, VisibilityValue, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isSlugReserved, isTokenType, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, promiseWithTimeout, publishedDocEnvironments, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, zodCreateInputOmit, zodUpdateInputOmit };
|