@supernova-studio/model 0.35.0 → 0.37.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +352 -128
- package/dist/index.d.ts +352 -128
- package/dist/index.js +170 -18
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +588 -436
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/billing/product.ts +1 -1
- package/src/dsm/brand.ts +11 -7
- package/src/dsm/elements/data/documentation-block-v2.ts +46 -38
- package/src/dsm/elements/index.ts +1 -0
- package/src/dsm/elements/utils.ts +114 -0
- package/src/dsm/properties/property-definition.ts +7 -5
- package/src/dsm/properties/property-value.ts +1 -1
- package/src/dsm/version.ts +24 -14
- package/src/dsm/views/column.ts +46 -32
- package/src/dsm/views/view.ts +12 -9
package/dist/index.d.mts
CHANGED
|
@@ -861,9 +861,9 @@ declare const PriceSchema: z.ZodObject<{
|
|
|
861
861
|
type BillingInterval = z.infer<typeof BillingIntervalSchema>;
|
|
862
862
|
type Price = z.infer<typeof PriceSchema>;
|
|
863
863
|
|
|
864
|
-
declare const ProductCodeSchema: z.ZodEnum<["free", "team", "
|
|
864
|
+
declare const ProductCodeSchema: z.ZodEnum<["free", "team", "company", "enterprise"]>;
|
|
865
865
|
type ProductCode = z.infer<typeof ProductCodeSchema>;
|
|
866
|
-
declare const ProductCode: z.Values<["free", "team", "
|
|
866
|
+
declare const ProductCode: z.Values<["free", "team", "company", "enterprise"]>;
|
|
867
867
|
|
|
868
868
|
declare const StripeSubscriptionStatusSchema: z.ZodEnum<["trialing", "active", "past_due", "canceled", "unpaid", "incomplete_expired", "incomplete", "unknown"]>;
|
|
869
869
|
declare const InternalStatusSchema: z.ZodEnum<["active", "suspended", "gracePeriod", "cancelled", "downgraded_to_free"]>;
|
|
@@ -880,7 +880,7 @@ declare const Subscription: z.ZodObject<{
|
|
|
880
880
|
status: z.ZodOptional<z.ZodEnum<["active", "suspended", "gracePeriod", "cancelled", "downgraded_to_free"]>>;
|
|
881
881
|
subscriptionStatus: z.ZodOptional<z.ZodEnum<["trialing", "active", "past_due", "canceled", "unpaid", "incomplete_expired", "incomplete", "unknown"]>>;
|
|
882
882
|
internalStatus: z.ZodOptional<z.ZodEnum<["active", "suspended", "gracePeriod", "cancelled", "downgraded_to_free"]>>;
|
|
883
|
-
product: z.ZodEnum<["free", "team", "
|
|
883
|
+
product: z.ZodEnum<["free", "team", "company", "enterprise"]>;
|
|
884
884
|
featuresSummary: z.ZodOptional<z.ZodObject<{
|
|
885
885
|
designSystems: z.ZodObject<{
|
|
886
886
|
max: z.ZodNumber;
|
|
@@ -1327,7 +1327,7 @@ declare const Subscription: z.ZodObject<{
|
|
|
1327
1327
|
billingType: z.ZodOptional<z.ZodEnum<["Auto", "Invoice"]>>;
|
|
1328
1328
|
daysUntilDue: z.ZodOptional<z.ZodNumber>;
|
|
1329
1329
|
}, "strip", z.ZodTypeAny, {
|
|
1330
|
-
product: "free" | "team" | "
|
|
1330
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
1331
1331
|
planPriceId: string;
|
|
1332
1332
|
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
1333
1333
|
seats: number;
|
|
@@ -1449,7 +1449,7 @@ declare const Subscription: z.ZodObject<{
|
|
|
1449
1449
|
billingType?: "Auto" | "Invoice" | undefined;
|
|
1450
1450
|
daysUntilDue?: number | undefined;
|
|
1451
1451
|
}, {
|
|
1452
|
-
product: "free" | "team" | "
|
|
1452
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
1453
1453
|
planPriceId: string;
|
|
1454
1454
|
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
1455
1455
|
seats: number;
|
|
@@ -5568,7 +5568,7 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
5568
5568
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
5569
5569
|
} | undefined;
|
|
5570
5570
|
};
|
|
5571
|
-
category: "Text" | "Code" | "Embed" | "
|
|
5571
|
+
category: "Text" | "Code" | "Embed" | "Layout" | "Media" | "Figma" | "Guidelines" | "Tokens" | "Components" | "Assets" | "Data" | "Other";
|
|
5572
5572
|
behavior: {
|
|
5573
5573
|
dataType: "Component" | "Token" | "FigmaNode" | "Asset" | "Item";
|
|
5574
5574
|
items?: {
|
|
@@ -5639,7 +5639,7 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
5639
5639
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
5640
5640
|
} | undefined;
|
|
5641
5641
|
};
|
|
5642
|
-
category: "Text" | "Code" | "Embed" | "
|
|
5642
|
+
category: "Text" | "Code" | "Embed" | "Layout" | "Media" | "Figma" | "Guidelines" | "Tokens" | "Components" | "Assets" | "Data" | "Other";
|
|
5643
5643
|
behavior: {
|
|
5644
5644
|
dataType: "Component" | "Token" | "FigmaNode" | "Asset" | "Item";
|
|
5645
5645
|
items?: {
|
|
@@ -12261,7 +12261,7 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
|
|
|
12261
12261
|
value: string;
|
|
12262
12262
|
referencedTokenId?: string | undefined;
|
|
12263
12263
|
}>>;
|
|
12264
|
-
value: z.ZodArray<z.ZodObject<{
|
|
12264
|
+
value: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
12265
12265
|
entityId: z.ZodString;
|
|
12266
12266
|
entityType: z.ZodEnum<["Asset", "AssetGroup"]>;
|
|
12267
12267
|
entityMeta: z.ZodOptional<z.ZodObject<{
|
|
@@ -12314,7 +12314,7 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
|
|
|
12314
12314
|
referencedTokenId?: string | undefined;
|
|
12315
12315
|
} | undefined;
|
|
12316
12316
|
} | undefined;
|
|
12317
|
-
}>, "many"
|
|
12317
|
+
}>, "many">>;
|
|
12318
12318
|
}, "strip", z.ZodTypeAny, {
|
|
12319
12319
|
value: {
|
|
12320
12320
|
entityId: string;
|
|
@@ -12336,7 +12336,14 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
|
|
|
12336
12336
|
referencedTokenId?: string | undefined;
|
|
12337
12337
|
} | undefined;
|
|
12338
12338
|
}, {
|
|
12339
|
-
|
|
12339
|
+
selectedPropertyIds?: string[] | undefined;
|
|
12340
|
+
showSearch?: boolean | undefined;
|
|
12341
|
+
previewContainerSize?: "Centered" | "NaturalHeight" | undefined;
|
|
12342
|
+
backgroundColor?: {
|
|
12343
|
+
value: string;
|
|
12344
|
+
referencedTokenId?: string | undefined;
|
|
12345
|
+
} | undefined;
|
|
12346
|
+
value?: {
|
|
12340
12347
|
entityId: string;
|
|
12341
12348
|
entityType: "Asset" | "AssetGroup";
|
|
12342
12349
|
entityMeta?: {
|
|
@@ -12347,22 +12354,15 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
|
|
|
12347
12354
|
referencedTokenId?: string | undefined;
|
|
12348
12355
|
} | undefined;
|
|
12349
12356
|
} | undefined;
|
|
12350
|
-
}[];
|
|
12351
|
-
selectedPropertyIds?: string[] | undefined;
|
|
12352
|
-
showSearch?: boolean | undefined;
|
|
12353
|
-
previewContainerSize?: "Centered" | "NaturalHeight" | undefined;
|
|
12354
|
-
backgroundColor?: {
|
|
12355
|
-
value: string;
|
|
12356
|
-
referencedTokenId?: string | undefined;
|
|
12357
|
-
} | undefined;
|
|
12357
|
+
}[] | undefined;
|
|
12358
12358
|
}>;
|
|
12359
12359
|
type PageBlockItemAssetValue = z.infer<typeof PageBlockItemAssetValue>;
|
|
12360
12360
|
declare const PageBlockItemAssetPropertyValue: z.ZodObject<{
|
|
12361
|
-
value: z.ZodArray<z.ZodString, "many"
|
|
12361
|
+
value: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
12362
12362
|
}, "strip", z.ZodTypeAny, {
|
|
12363
12363
|
value: string[];
|
|
12364
12364
|
}, {
|
|
12365
|
-
value
|
|
12365
|
+
value?: string[] | undefined;
|
|
12366
12366
|
}>;
|
|
12367
12367
|
type PageBlockItemAssetPropertyValue = z.infer<typeof PageBlockItemAssetPropertyValue>;
|
|
12368
12368
|
declare const PageBlockItemBooleanValue: z.ZodObject<{
|
|
@@ -12414,7 +12414,7 @@ declare const PageBlockItemColorValue: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
|
12414
12414
|
type PageBlockItemColorValue = z.infer<typeof PageBlockItemColorValue>;
|
|
12415
12415
|
declare const PageBlockItemComponentValue: z.ZodObject<{
|
|
12416
12416
|
selectedPropertyIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
12417
|
-
value: z.ZodArray<z.ZodObject<{
|
|
12417
|
+
value: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
12418
12418
|
entityId: z.ZodString;
|
|
12419
12419
|
entityType: z.ZodEnum<["Component", "ComponentGroup"]>;
|
|
12420
12420
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -12423,7 +12423,7 @@ declare const PageBlockItemComponentValue: z.ZodObject<{
|
|
|
12423
12423
|
}, {
|
|
12424
12424
|
entityId: string;
|
|
12425
12425
|
entityType: "Component" | "ComponentGroup";
|
|
12426
|
-
}>, "many"
|
|
12426
|
+
}>, "many">>;
|
|
12427
12427
|
}, "strip", z.ZodTypeAny, {
|
|
12428
12428
|
value: {
|
|
12429
12429
|
entityId: string;
|
|
@@ -12431,11 +12431,11 @@ declare const PageBlockItemComponentValue: z.ZodObject<{
|
|
|
12431
12431
|
}[];
|
|
12432
12432
|
selectedPropertyIds?: string[] | undefined;
|
|
12433
12433
|
}, {
|
|
12434
|
-
|
|
12434
|
+
selectedPropertyIds?: string[] | undefined;
|
|
12435
|
+
value?: {
|
|
12435
12436
|
entityId: string;
|
|
12436
12437
|
entityType: "Component" | "ComponentGroup";
|
|
12437
|
-
}[];
|
|
12438
|
-
selectedPropertyIds?: string[] | undefined;
|
|
12438
|
+
}[] | undefined;
|
|
12439
12439
|
}>;
|
|
12440
12440
|
type PageBlockItemComponentValue = z.infer<typeof PageBlockItemComponentValue>;
|
|
12441
12441
|
declare const PageBlockItemComponentPropertyValue: z.ZodObject<{
|
|
@@ -12499,7 +12499,7 @@ declare const PageBlockItemFigmaNodeValue: z.ZodObject<{
|
|
|
12499
12499
|
referencedTokenId?: string | undefined;
|
|
12500
12500
|
}>>;
|
|
12501
12501
|
showFrameDetails: z.ZodOptional<z.ZodBoolean>;
|
|
12502
|
-
value: z.ZodArray<z.ZodObject<{
|
|
12502
|
+
value: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
12503
12503
|
entityId: z.ZodString;
|
|
12504
12504
|
entityMeta: z.ZodOptional<z.ZodObject<{
|
|
12505
12505
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -12549,7 +12549,7 @@ declare const PageBlockItemFigmaNodeValue: z.ZodObject<{
|
|
|
12549
12549
|
referencedTokenId?: string | undefined;
|
|
12550
12550
|
} | undefined;
|
|
12551
12551
|
} | undefined;
|
|
12552
|
-
}>, "many"
|
|
12552
|
+
}>, "many">>;
|
|
12553
12553
|
}, "strip", z.ZodTypeAny, {
|
|
12554
12554
|
value: {
|
|
12555
12555
|
entityId: string;
|
|
@@ -12570,7 +12570,14 @@ declare const PageBlockItemFigmaNodeValue: z.ZodObject<{
|
|
|
12570
12570
|
} | undefined;
|
|
12571
12571
|
showFrameDetails?: boolean | undefined;
|
|
12572
12572
|
}, {
|
|
12573
|
-
|
|
12573
|
+
showSearch?: boolean | undefined;
|
|
12574
|
+
previewContainerSize?: "Centered" | "NaturalHeight" | undefined;
|
|
12575
|
+
backgroundColor?: {
|
|
12576
|
+
value: string;
|
|
12577
|
+
referencedTokenId?: string | undefined;
|
|
12578
|
+
} | undefined;
|
|
12579
|
+
showFrameDetails?: boolean | undefined;
|
|
12580
|
+
value?: {
|
|
12574
12581
|
entityId: string;
|
|
12575
12582
|
entityMeta?: {
|
|
12576
12583
|
title?: string | undefined;
|
|
@@ -12580,14 +12587,7 @@ declare const PageBlockItemFigmaNodeValue: z.ZodObject<{
|
|
|
12580
12587
|
referencedTokenId?: string | undefined;
|
|
12581
12588
|
} | undefined;
|
|
12582
12589
|
} | undefined;
|
|
12583
|
-
}[];
|
|
12584
|
-
showSearch?: boolean | undefined;
|
|
12585
|
-
previewContainerSize?: "Centered" | "NaturalHeight" | undefined;
|
|
12586
|
-
backgroundColor?: {
|
|
12587
|
-
value: string;
|
|
12588
|
-
referencedTokenId?: string | undefined;
|
|
12589
|
-
} | undefined;
|
|
12590
|
-
showFrameDetails?: boolean | undefined;
|
|
12590
|
+
}[] | undefined;
|
|
12591
12591
|
}>;
|
|
12592
12592
|
type PageBlockItemFigmaNodeValue = z.infer<typeof PageBlockItemFigmaNodeValue>;
|
|
12593
12593
|
declare const PageBlockItemImageValue: z.ZodObject<{
|
|
@@ -12762,11 +12762,11 @@ declare const PageBlockItemMultiRichTextValue: z.ZodObject<{
|
|
|
12762
12762
|
}>;
|
|
12763
12763
|
type PageBlockItemMultiRichTextValue = z.infer<typeof PageBlockItemMultiRichTextValue>;
|
|
12764
12764
|
declare const PageBlockItemMultiSelectValue: z.ZodObject<{
|
|
12765
|
-
value: z.ZodArray<z.ZodString, "many"
|
|
12765
|
+
value: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
12766
12766
|
}, "strip", z.ZodTypeAny, {
|
|
12767
12767
|
value: string[];
|
|
12768
12768
|
}, {
|
|
12769
|
-
value
|
|
12769
|
+
value?: string[] | undefined;
|
|
12770
12770
|
}>;
|
|
12771
12771
|
type PageBlockItemMultiSelectValue = z.infer<typeof PageBlockItemMultiSelectValue>;
|
|
12772
12772
|
declare const PageBlockItemNumberValue: z.ZodObject<{
|
|
@@ -12875,18 +12875,18 @@ type PageBlockItemSingleSelectValue = z.infer<typeof PageBlockItemSingleSelectVa
|
|
|
12875
12875
|
declare const PageBlockItemStorybookValue: z.ZodObject<{
|
|
12876
12876
|
caption: z.ZodOptional<z.ZodString>;
|
|
12877
12877
|
height: z.ZodOptional<z.ZodNumber>;
|
|
12878
|
-
|
|
12879
|
-
value: z.ZodString
|
|
12878
|
+
embedUrl: z.ZodOptional<z.ZodString>;
|
|
12879
|
+
value: z.ZodOptional<z.ZodString>;
|
|
12880
12880
|
}, "strip", z.ZodTypeAny, {
|
|
12881
|
-
value: string;
|
|
12882
12881
|
caption?: string | undefined;
|
|
12883
12882
|
height?: number | undefined;
|
|
12884
|
-
|
|
12883
|
+
embedUrl?: string | undefined;
|
|
12884
|
+
value?: string | undefined;
|
|
12885
12885
|
}, {
|
|
12886
|
-
value: string;
|
|
12887
12886
|
caption?: string | undefined;
|
|
12888
12887
|
height?: number | undefined;
|
|
12889
|
-
|
|
12888
|
+
embedUrl?: string | undefined;
|
|
12889
|
+
value?: string | undefined;
|
|
12890
12890
|
}>;
|
|
12891
12891
|
type PageBlockItemStorybookValue = z.infer<typeof PageBlockItemStorybookValue>;
|
|
12892
12892
|
declare const PageBlockItemTextValue: z.ZodObject<{
|
|
@@ -12901,7 +12901,7 @@ declare const PageBlockItemTokenValue: z.ZodObject<{
|
|
|
12901
12901
|
selectedPropertyIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
12902
12902
|
selectedThemeIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
12903
12903
|
themeDisplayMode: z.ZodOptional<z.ZodEnum<["Split", "Override"]>>;
|
|
12904
|
-
value: z.ZodArray<z.ZodObject<{
|
|
12904
|
+
value: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
12905
12905
|
entityId: z.ZodString;
|
|
12906
12906
|
entityType: z.ZodEnum<["Token", "TokenGroup"]>;
|
|
12907
12907
|
entityMeta: z.ZodOptional<z.ZodObject<{
|
|
@@ -12923,7 +12923,7 @@ declare const PageBlockItemTokenValue: z.ZodObject<{
|
|
|
12923
12923
|
entityMeta?: {
|
|
12924
12924
|
showNestedGroups?: boolean | undefined;
|
|
12925
12925
|
} | undefined;
|
|
12926
|
-
}>, "many"
|
|
12926
|
+
}>, "many">>;
|
|
12927
12927
|
}, "strip", z.ZodTypeAny, {
|
|
12928
12928
|
value: {
|
|
12929
12929
|
entityId: string;
|
|
@@ -12936,38 +12936,38 @@ declare const PageBlockItemTokenValue: z.ZodObject<{
|
|
|
12936
12936
|
selectedThemeIds?: string[] | undefined;
|
|
12937
12937
|
themeDisplayMode?: "Override" | "Split" | undefined;
|
|
12938
12938
|
}, {
|
|
12939
|
-
|
|
12939
|
+
selectedPropertyIds?: string[] | undefined;
|
|
12940
|
+
selectedThemeIds?: string[] | undefined;
|
|
12941
|
+
themeDisplayMode?: "Override" | "Split" | undefined;
|
|
12942
|
+
value?: {
|
|
12940
12943
|
entityId: string;
|
|
12941
12944
|
entityType: "Token" | "TokenGroup";
|
|
12942
12945
|
entityMeta?: {
|
|
12943
12946
|
showNestedGroups?: boolean | undefined;
|
|
12944
12947
|
} | undefined;
|
|
12945
|
-
}[];
|
|
12946
|
-
selectedPropertyIds?: string[] | undefined;
|
|
12947
|
-
selectedThemeIds?: string[] | undefined;
|
|
12948
|
-
themeDisplayMode?: "Override" | "Split" | undefined;
|
|
12948
|
+
}[] | undefined;
|
|
12949
12949
|
}>;
|
|
12950
12950
|
type PageBlockItemTokenValue = z.infer<typeof PageBlockItemTokenValue>;
|
|
12951
12951
|
declare const PageBlockItemTokenPropertyValue: z.ZodObject<{
|
|
12952
12952
|
selectedPropertyIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
12953
12953
|
selectedThemeIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
12954
|
-
value: z.ZodArray<z.ZodString, "many"
|
|
12954
|
+
value: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
12955
12955
|
}, "strip", z.ZodTypeAny, {
|
|
12956
12956
|
value: string[];
|
|
12957
12957
|
selectedPropertyIds?: string[] | undefined;
|
|
12958
12958
|
selectedThemeIds?: string[] | undefined;
|
|
12959
12959
|
}, {
|
|
12960
|
-
value: string[];
|
|
12961
12960
|
selectedPropertyIds?: string[] | undefined;
|
|
12962
12961
|
selectedThemeIds?: string[] | undefined;
|
|
12962
|
+
value?: string[] | undefined;
|
|
12963
12963
|
}>;
|
|
12964
12964
|
type PageBlockItemTokenPropertyValue = z.infer<typeof PageBlockItemTokenPropertyValue>;
|
|
12965
12965
|
declare const PageBlockItemTokenTypeValue: z.ZodObject<{
|
|
12966
|
-
value: z.ZodArray<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"]>, "many"
|
|
12966
|
+
value: z.ZodDefault<z.ZodArray<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"]>, "many">>;
|
|
12967
12967
|
}, "strip", z.ZodTypeAny, {
|
|
12968
12968
|
value: ("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")[];
|
|
12969
12969
|
}, {
|
|
12970
|
-
value
|
|
12970
|
+
value?: ("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")[] | undefined;
|
|
12971
12971
|
}>;
|
|
12972
12972
|
type PageBlockItemTokenTypeValue = z.infer<typeof PageBlockItemTokenTypeValue>;
|
|
12973
12973
|
declare const PageBlockItemUrlValue: z.ZodObject<{
|
|
@@ -13959,7 +13959,7 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
13959
13959
|
highlightHeaderColumn: z.ZodOptional<z.ZodBoolean>;
|
|
13960
13960
|
highlightHeaderRow: z.ZodOptional<z.ZodBoolean>;
|
|
13961
13961
|
showBorder: z.ZodOptional<z.ZodBoolean>;
|
|
13962
|
-
value: z.ZodArray<z.ZodObject<{
|
|
13962
|
+
value: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
13963
13963
|
cells: z.ZodArray<z.ZodObject<{
|
|
13964
13964
|
id: z.ZodString;
|
|
13965
13965
|
nodes: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -14271,7 +14271,7 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
14271
14271
|
})[];
|
|
14272
14272
|
columnWidth?: number | undefined;
|
|
14273
14273
|
}[];
|
|
14274
|
-
}>, "many"
|
|
14274
|
+
}>, "many">>;
|
|
14275
14275
|
}, "strip", z.ZodTypeAny, {
|
|
14276
14276
|
value: {
|
|
14277
14277
|
cells: {
|
|
@@ -14314,7 +14314,10 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
14314
14314
|
highlightHeaderRow?: boolean | undefined;
|
|
14315
14315
|
showBorder?: boolean | undefined;
|
|
14316
14316
|
}, {
|
|
14317
|
-
|
|
14317
|
+
highlightHeaderColumn?: boolean | undefined;
|
|
14318
|
+
highlightHeaderRow?: boolean | undefined;
|
|
14319
|
+
showBorder?: boolean | undefined;
|
|
14320
|
+
value?: {
|
|
14318
14321
|
cells: {
|
|
14319
14322
|
id: string;
|
|
14320
14323
|
alignment: "Center" | "Left" | "Right";
|
|
@@ -14350,10 +14353,7 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
14350
14353
|
})[];
|
|
14351
14354
|
columnWidth?: number | undefined;
|
|
14352
14355
|
}[];
|
|
14353
|
-
}[];
|
|
14354
|
-
highlightHeaderColumn?: boolean | undefined;
|
|
14355
|
-
highlightHeaderRow?: boolean | undefined;
|
|
14356
|
-
showBorder?: boolean | undefined;
|
|
14356
|
+
}[] | undefined;
|
|
14357
14357
|
}>;
|
|
14358
14358
|
type PageBlockItemTableValue = z.infer<typeof PageBlockItemTableValue>;
|
|
14359
14359
|
|
|
@@ -42662,6 +42662,22 @@ declare function isImportedDesignToken<T extends DesignTokenType>(designToken: D
|
|
|
42662
42662
|
declare function isDesignTokenOfType<T extends DesignTokenType>(designToken: DesignToken, type: T): designToken is DesignTokenOfType<T>;
|
|
42663
42663
|
declare function designTokenTypeFilter<T extends DesignTokenType>(type: T): (designToken: DesignToken) => designToken is DesignTokenOfType<T>;
|
|
42664
42664
|
|
|
42665
|
+
/**
|
|
42666
|
+
* Pay attention to correct types!
|
|
42667
|
+
*/
|
|
42668
|
+
declare function mapPageBlockItemValuesV2(pageItems: DocumentationPageContentItem[], definitionsMap: PageBlockDefinitionsMap, fn: (block: PageBlockEditorModelV2, item: PageBlockItemV2, property: PageBlockDefinitionProperty, value: PageBlockItemUntypedValue) => PageBlockItemUntypedValue): void;
|
|
42669
|
+
declare function traversePageBlockItemValuesV2(pageItems: DocumentationPageContentItem[], definitionsMap: PageBlockDefinitionsMap, fn: (block: PageBlockEditorModelV2, item: PageBlockItemV2, property: PageBlockDefinitionProperty, value: PageBlockItemUntypedValue) => void): void;
|
|
42670
|
+
declare function traversePageBlockItemsV2(pageItems: DocumentationPageContentItem[], fn: (block: PageBlockEditorModelV2, item: PageBlockItemV2) => void): void;
|
|
42671
|
+
declare function traversePageItemsV2(pageItems: DocumentationPageContentItem[], fn: (item: PageBlockEditorModelV2) => void): void;
|
|
42672
|
+
declare class PageBlockDefinitionsMap {
|
|
42673
|
+
private definitionsMap;
|
|
42674
|
+
private propertiesMap;
|
|
42675
|
+
constructor(definitions: PageBlockDefinition[]);
|
|
42676
|
+
getDefinition(id: string): PageBlockDefinition | undefined;
|
|
42677
|
+
getDefinitionProperty(defId: string, propId: string): PageBlockDefinitionProperty | undefined;
|
|
42678
|
+
private propertyKey;
|
|
42679
|
+
}
|
|
42680
|
+
|
|
42665
42681
|
declare const FigmaFileDownloadScope: z.ZodObject<{
|
|
42666
42682
|
styles: z.ZodBoolean;
|
|
42667
42683
|
components: z.ZodBoolean;
|
|
@@ -92741,8 +92757,9 @@ declare const ImportWarning: z.ZodObject<{
|
|
|
92741
92757
|
}>;
|
|
92742
92758
|
type ImportWarning = z.infer<typeof ImportWarning>;
|
|
92743
92759
|
|
|
92744
|
-
declare const
|
|
92745
|
-
type ElementPropertyType = z.infer<typeof
|
|
92760
|
+
declare const ElementPropertyTypeSchema: z.ZodEnum<["Text", "Number", "Boolean", "Select", "Generic", "Link", "URL"]>;
|
|
92761
|
+
type ElementPropertyType = z.infer<typeof ElementPropertyTypeSchema>;
|
|
92762
|
+
declare const ElementPropertyType: z.Values<["Text", "Number", "Boolean", "Select", "Generic", "Link", "URL"]>;
|
|
92746
92763
|
declare const ElementPropertyTargetType: z.ZodEnum<["Token", "Component", "DocumentationPage"]>;
|
|
92747
92764
|
type ElementPropertyTargetType = z.infer<typeof ElementPropertyTargetType>;
|
|
92748
92765
|
declare const ElementPropertyLinkType: z.ZodEnum<["FigmaComponent", "DocumentationPage"]>;
|
|
@@ -92788,7 +92805,7 @@ declare const ElementPropertyDefinition: z.ZodObject<{
|
|
|
92788
92805
|
description: z.ZodString;
|
|
92789
92806
|
type: z.ZodEnum<["Text", "Number", "Boolean", "Select", "Generic", "Link", "URL"]>;
|
|
92790
92807
|
targetElementType: z.ZodEnum<["Token", "Component", "DocumentationPage"]>;
|
|
92791
|
-
options: z.ZodOptional<z.
|
|
92808
|
+
options: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
92792
92809
|
id: z.ZodString;
|
|
92793
92810
|
name: z.ZodString;
|
|
92794
92811
|
backgroundColor: z.ZodOptional<z.ZodObject<{
|
|
@@ -92810,8 +92827,8 @@ declare const ElementPropertyDefinition: z.ZodObject<{
|
|
|
92810
92827
|
backgroundColor?: {
|
|
92811
92828
|
value: string;
|
|
92812
92829
|
} | undefined;
|
|
92813
|
-
}>, "many"
|
|
92814
|
-
linkElementType: z.ZodOptional<z.
|
|
92830
|
+
}>, "many">>;
|
|
92831
|
+
linkElementType: z.ZodOptional<z.ZodEnum<["FigmaComponent", "DocumentationPage"]>>;
|
|
92815
92832
|
}, "strip", z.ZodTypeAny, {
|
|
92816
92833
|
id: string;
|
|
92817
92834
|
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
@@ -92827,8 +92844,8 @@ declare const ElementPropertyDefinition: z.ZodObject<{
|
|
|
92827
92844
|
backgroundColor?: {
|
|
92828
92845
|
value: string;
|
|
92829
92846
|
} | undefined;
|
|
92830
|
-
}[] |
|
|
92831
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" |
|
|
92847
|
+
}[] | undefined;
|
|
92848
|
+
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
92832
92849
|
}, {
|
|
92833
92850
|
id: string;
|
|
92834
92851
|
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
@@ -92844,8 +92861,8 @@ declare const ElementPropertyDefinition: z.ZodObject<{
|
|
|
92844
92861
|
backgroundColor?: {
|
|
92845
92862
|
value: string;
|
|
92846
92863
|
} | undefined;
|
|
92847
|
-
}[] |
|
|
92848
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" |
|
|
92864
|
+
}[] | undefined;
|
|
92865
|
+
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
92849
92866
|
}>;
|
|
92850
92867
|
type ElementPropertyDefinition = z.infer<typeof ElementPropertyDefinition>;
|
|
92851
92868
|
type CreateElementPropertyDefinition = DbCreateInputOmit<ElementPropertyDefinition>;
|
|
@@ -92870,7 +92887,7 @@ declare const ElementPropertyValue: z.ZodObject<{
|
|
|
92870
92887
|
numberValue: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
92871
92888
|
booleanValue: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
92872
92889
|
referenceValue: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
92873
|
-
referenceValuePreview: z.ZodOptional<z.
|
|
92890
|
+
referenceValuePreview: z.ZodOptional<z.ZodString>;
|
|
92874
92891
|
}, "strip", z.ZodTypeAny, {
|
|
92875
92892
|
id: string;
|
|
92876
92893
|
designSystemVersionId: string;
|
|
@@ -92880,7 +92897,7 @@ declare const ElementPropertyValue: z.ZodObject<{
|
|
|
92880
92897
|
numberValue?: number | null | undefined;
|
|
92881
92898
|
booleanValue?: boolean | null | undefined;
|
|
92882
92899
|
referenceValue?: string | null | undefined;
|
|
92883
|
-
referenceValuePreview?: string |
|
|
92900
|
+
referenceValuePreview?: string | undefined;
|
|
92884
92901
|
}, {
|
|
92885
92902
|
id: string;
|
|
92886
92903
|
designSystemVersionId: string;
|
|
@@ -92890,7 +92907,7 @@ declare const ElementPropertyValue: z.ZodObject<{
|
|
|
92890
92907
|
numberValue?: number | null | undefined;
|
|
92891
92908
|
booleanValue?: boolean | null | undefined;
|
|
92892
92909
|
referenceValue?: string | null | undefined;
|
|
92893
|
-
referenceValuePreview?: string |
|
|
92910
|
+
referenceValuePreview?: string | undefined;
|
|
92894
92911
|
}>;
|
|
92895
92912
|
type ElementPropertyValue = z.infer<typeof ElementPropertyValue>;
|
|
92896
92913
|
type CreateElementPropertyValue = DbCreateInputOmit<ElementPropertyValue>;
|
|
@@ -103566,7 +103583,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
103566
103583
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
103567
103584
|
} | undefined;
|
|
103568
103585
|
};
|
|
103569
|
-
category: "Text" | "Code" | "Embed" | "
|
|
103586
|
+
category: "Text" | "Code" | "Embed" | "Layout" | "Media" | "Figma" | "Guidelines" | "Tokens" | "Components" | "Assets" | "Data" | "Other";
|
|
103570
103587
|
behavior: {
|
|
103571
103588
|
dataType: "Component" | "Token" | "FigmaNode" | "Asset" | "Item";
|
|
103572
103589
|
items?: {
|
|
@@ -103637,7 +103654,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
103637
103654
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
103638
103655
|
} | undefined;
|
|
103639
103656
|
};
|
|
103640
|
-
category: "Text" | "Code" | "Embed" | "
|
|
103657
|
+
category: "Text" | "Code" | "Embed" | "Layout" | "Media" | "Figma" | "Guidelines" | "Tokens" | "Components" | "Assets" | "Data" | "Other";
|
|
103641
103658
|
behavior: {
|
|
103642
103659
|
dataType: "Component" | "Token" | "FigmaNode" | "Asset" | "Item";
|
|
103643
103660
|
items?: {
|
|
@@ -103898,7 +103915,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
103898
103915
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
103899
103916
|
} | undefined;
|
|
103900
103917
|
};
|
|
103901
|
-
category: "Text" | "Code" | "Embed" | "
|
|
103918
|
+
category: "Text" | "Code" | "Embed" | "Layout" | "Media" | "Figma" | "Guidelines" | "Tokens" | "Components" | "Assets" | "Data" | "Other";
|
|
103902
103919
|
behavior: {
|
|
103903
103920
|
dataType: "Component" | "Token" | "FigmaNode" | "Asset" | "Item";
|
|
103904
103921
|
items?: {
|
|
@@ -104517,7 +104534,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
104517
104534
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
104518
104535
|
} | undefined;
|
|
104519
104536
|
};
|
|
104520
|
-
category: "Text" | "Code" | "Embed" | "
|
|
104537
|
+
category: "Text" | "Code" | "Embed" | "Layout" | "Media" | "Figma" | "Guidelines" | "Tokens" | "Components" | "Assets" | "Data" | "Other";
|
|
104521
104538
|
behavior: {
|
|
104522
104539
|
dataType: "Component" | "Token" | "FigmaNode" | "Asset" | "Item";
|
|
104523
104540
|
items?: {
|
|
@@ -104556,48 +104573,232 @@ declare const RoomTypeSchema: z.ZodNativeEnum<typeof RoomTypeEnum>;
|
|
|
104556
104573
|
type RoomType = z.infer<typeof RoomTypeSchema>;
|
|
104557
104574
|
declare const RoomType: typeof RoomTypeEnum;
|
|
104558
104575
|
|
|
104559
|
-
|
|
104560
|
-
type
|
|
104561
|
-
|
|
104576
|
+
declare const ElementViewBaseColumnType: z.ZodEnum<["Name", "Description", "Value", "UpdatedAt"]>;
|
|
104577
|
+
type ElementViewBaseColumnType = z.infer<typeof ElementViewBaseColumnType>;
|
|
104578
|
+
declare const ElementViewBasePropertyColumn: z.ZodObject<{
|
|
104579
|
+
id: z.ZodString;
|
|
104580
|
+
persistentId: z.ZodString;
|
|
104581
|
+
width: z.ZodNumber;
|
|
104582
|
+
elementDataViewId: z.ZodString;
|
|
104583
|
+
sortPosition: z.ZodNumber;
|
|
104584
|
+
type: z.ZodLiteral<"BaseProperty">;
|
|
104585
|
+
basePropertyType: z.ZodEnum<["Name", "Description", "Value", "UpdatedAt"]>;
|
|
104586
|
+
}, "strip", z.ZodTypeAny, {
|
|
104587
|
+
id: string;
|
|
104562
104588
|
type: "BaseProperty";
|
|
104563
|
-
|
|
104564
|
-
|
|
104565
|
-
|
|
104589
|
+
persistentId: string;
|
|
104590
|
+
width: number;
|
|
104591
|
+
elementDataViewId: string;
|
|
104592
|
+
sortPosition: number;
|
|
104593
|
+
basePropertyType: "Name" | "Description" | "Value" | "UpdatedAt";
|
|
104594
|
+
}, {
|
|
104595
|
+
id: string;
|
|
104596
|
+
type: "BaseProperty";
|
|
104597
|
+
persistentId: string;
|
|
104598
|
+
width: number;
|
|
104599
|
+
elementDataViewId: string;
|
|
104600
|
+
sortPosition: number;
|
|
104601
|
+
basePropertyType: "Name" | "Description" | "Value" | "UpdatedAt";
|
|
104602
|
+
}>;
|
|
104603
|
+
type ElementViewBasePropertyColumn = z.infer<typeof ElementViewBasePropertyColumn>;
|
|
104604
|
+
declare const ElementViewPropertyDefinitionColumn: z.ZodObject<{
|
|
104605
|
+
id: z.ZodString;
|
|
104606
|
+
persistentId: z.ZodString;
|
|
104607
|
+
width: z.ZodNumber;
|
|
104608
|
+
elementDataViewId: z.ZodString;
|
|
104609
|
+
sortPosition: z.ZodNumber;
|
|
104610
|
+
type: z.ZodLiteral<"PropertyDefinition">;
|
|
104611
|
+
propertyDefinitionId: z.ZodString;
|
|
104612
|
+
}, "strip", z.ZodTypeAny, {
|
|
104613
|
+
id: string;
|
|
104566
104614
|
type: "PropertyDefinition";
|
|
104615
|
+
persistentId: string;
|
|
104616
|
+
width: number;
|
|
104617
|
+
elementDataViewId: string;
|
|
104618
|
+
sortPosition: number;
|
|
104567
104619
|
propertyDefinitionId: string;
|
|
104568
|
-
}
|
|
104569
|
-
|
|
104620
|
+
}, {
|
|
104621
|
+
id: string;
|
|
104622
|
+
type: "PropertyDefinition";
|
|
104623
|
+
persistentId: string;
|
|
104624
|
+
width: number;
|
|
104625
|
+
elementDataViewId: string;
|
|
104626
|
+
sortPosition: number;
|
|
104627
|
+
propertyDefinitionId: string;
|
|
104628
|
+
}>;
|
|
104629
|
+
type ElementViewPropertyDefinitionColumn = z.infer<typeof ElementViewPropertyDefinitionColumn>;
|
|
104630
|
+
declare const ElementViewThemeColumn: z.ZodObject<{
|
|
104631
|
+
id: z.ZodString;
|
|
104632
|
+
persistentId: z.ZodString;
|
|
104633
|
+
width: z.ZodNumber;
|
|
104634
|
+
elementDataViewId: z.ZodString;
|
|
104635
|
+
sortPosition: z.ZodNumber;
|
|
104636
|
+
type: z.ZodLiteral<"Theme">;
|
|
104637
|
+
themeId: z.ZodString;
|
|
104638
|
+
}, "strip", z.ZodTypeAny, {
|
|
104639
|
+
id: string;
|
|
104570
104640
|
type: "Theme";
|
|
104641
|
+
persistentId: string;
|
|
104642
|
+
width: number;
|
|
104643
|
+
elementDataViewId: string;
|
|
104644
|
+
sortPosition: number;
|
|
104571
104645
|
themeId: string;
|
|
104572
|
-
}
|
|
104573
|
-
type ElementViewColumnSharedAttributes = {
|
|
104646
|
+
}, {
|
|
104574
104647
|
id: string;
|
|
104648
|
+
type: "Theme";
|
|
104575
104649
|
persistentId: string;
|
|
104650
|
+
width: number;
|
|
104576
104651
|
elementDataViewId: string;
|
|
104577
104652
|
sortPosition: number;
|
|
104653
|
+
themeId: string;
|
|
104654
|
+
}>;
|
|
104655
|
+
type ElementViewThemeColumn = z.infer<typeof ElementViewThemeColumn>;
|
|
104656
|
+
declare const ElementViewColumn: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
104657
|
+
id: z.ZodString;
|
|
104658
|
+
persistentId: z.ZodString;
|
|
104659
|
+
width: z.ZodNumber;
|
|
104660
|
+
elementDataViewId: z.ZodString;
|
|
104661
|
+
sortPosition: z.ZodNumber;
|
|
104662
|
+
type: z.ZodLiteral<"BaseProperty">;
|
|
104663
|
+
basePropertyType: z.ZodEnum<["Name", "Description", "Value", "UpdatedAt"]>;
|
|
104664
|
+
}, "strip", z.ZodTypeAny, {
|
|
104665
|
+
id: string;
|
|
104666
|
+
type: "BaseProperty";
|
|
104667
|
+
persistentId: string;
|
|
104578
104668
|
width: number;
|
|
104579
|
-
|
|
104580
|
-
|
|
104669
|
+
elementDataViewId: string;
|
|
104670
|
+
sortPosition: number;
|
|
104671
|
+
basePropertyType: "Name" | "Description" | "Value" | "UpdatedAt";
|
|
104672
|
+
}, {
|
|
104673
|
+
id: string;
|
|
104674
|
+
type: "BaseProperty";
|
|
104675
|
+
persistentId: string;
|
|
104676
|
+
width: number;
|
|
104677
|
+
elementDataViewId: string;
|
|
104678
|
+
sortPosition: number;
|
|
104679
|
+
basePropertyType: "Name" | "Description" | "Value" | "UpdatedAt";
|
|
104680
|
+
}>, z.ZodObject<{
|
|
104681
|
+
id: z.ZodString;
|
|
104682
|
+
persistentId: z.ZodString;
|
|
104683
|
+
width: z.ZodNumber;
|
|
104684
|
+
elementDataViewId: z.ZodString;
|
|
104685
|
+
sortPosition: z.ZodNumber;
|
|
104686
|
+
type: z.ZodLiteral<"PropertyDefinition">;
|
|
104687
|
+
propertyDefinitionId: z.ZodString;
|
|
104688
|
+
}, "strip", z.ZodTypeAny, {
|
|
104689
|
+
id: string;
|
|
104690
|
+
type: "PropertyDefinition";
|
|
104691
|
+
persistentId: string;
|
|
104692
|
+
width: number;
|
|
104693
|
+
elementDataViewId: string;
|
|
104694
|
+
sortPosition: number;
|
|
104695
|
+
propertyDefinitionId: string;
|
|
104696
|
+
}, {
|
|
104697
|
+
id: string;
|
|
104698
|
+
type: "PropertyDefinition";
|
|
104699
|
+
persistentId: string;
|
|
104700
|
+
width: number;
|
|
104701
|
+
elementDataViewId: string;
|
|
104702
|
+
sortPosition: number;
|
|
104703
|
+
propertyDefinitionId: string;
|
|
104704
|
+
}>, z.ZodObject<{
|
|
104705
|
+
id: z.ZodString;
|
|
104706
|
+
persistentId: z.ZodString;
|
|
104707
|
+
width: z.ZodNumber;
|
|
104708
|
+
elementDataViewId: z.ZodString;
|
|
104709
|
+
sortPosition: z.ZodNumber;
|
|
104710
|
+
type: z.ZodLiteral<"Theme">;
|
|
104711
|
+
themeId: z.ZodString;
|
|
104712
|
+
}, "strip", z.ZodTypeAny, {
|
|
104713
|
+
id: string;
|
|
104714
|
+
type: "Theme";
|
|
104715
|
+
persistentId: string;
|
|
104716
|
+
width: number;
|
|
104717
|
+
elementDataViewId: string;
|
|
104718
|
+
sortPosition: number;
|
|
104719
|
+
themeId: string;
|
|
104720
|
+
}, {
|
|
104721
|
+
id: string;
|
|
104722
|
+
type: "Theme";
|
|
104723
|
+
persistentId: string;
|
|
104724
|
+
width: number;
|
|
104725
|
+
elementDataViewId: string;
|
|
104726
|
+
sortPosition: number;
|
|
104727
|
+
themeId: string;
|
|
104728
|
+
}>]>;
|
|
104729
|
+
type ElementViewColumn = z.infer<typeof ElementViewColumn>;
|
|
104730
|
+
declare const ElementViewColumnSharedAttributes: z.ZodObject<{
|
|
104731
|
+
id: z.ZodString;
|
|
104732
|
+
persistentId: z.ZodString;
|
|
104733
|
+
elementDataViewId: z.ZodString;
|
|
104734
|
+
sortPosition: z.ZodNumber;
|
|
104735
|
+
width: z.ZodNumber;
|
|
104736
|
+
}, "strip", z.ZodTypeAny, {
|
|
104737
|
+
id: string;
|
|
104738
|
+
persistentId: string;
|
|
104739
|
+
width: number;
|
|
104740
|
+
elementDataViewId: string;
|
|
104741
|
+
sortPosition: number;
|
|
104742
|
+
}, {
|
|
104743
|
+
id: string;
|
|
104744
|
+
persistentId: string;
|
|
104745
|
+
width: number;
|
|
104746
|
+
elementDataViewId: string;
|
|
104747
|
+
sortPosition: number;
|
|
104748
|
+
}>;
|
|
104749
|
+
type ElementViewColumnSharedAttributes = z.infer<typeof ElementViewColumnSharedAttributes>;
|
|
104750
|
+
declare const ElementViewColumnType: z.ZodUnion<[z.ZodLiteral<"BaseProperty">, z.ZodLiteral<"PropertyDefinition">, z.ZodLiteral<"Theme">]>;
|
|
104751
|
+
type ElementViewColumnType = z.infer<typeof ElementViewColumn>["type"];
|
|
104581
104752
|
type CreateElementViewColumn = DbCreateInputOmit<ElementViewBasePropertyColumn> | DbCreateInputOmit<ElementViewPropertyDefinitionColumn> | DbCreateInputOmit<ElementViewThemeColumn>;
|
|
104582
104753
|
type UpdateElementViewColumn = OmitStrict<DbUpdate<ElementViewBasePropertyColumn>, "elementDataViewId"> | OmitStrict<DbUpdate<ElementViewPropertyDefinitionColumn>, "elementDataViewId"> | OmitStrict<DbUpdate<ElementViewThemeColumn>, "elementDataViewId">;
|
|
104583
104754
|
|
|
104584
|
-
|
|
104755
|
+
declare const ElementView: z.ZodObject<{
|
|
104756
|
+
id: z.ZodString;
|
|
104757
|
+
persistentId: z.ZodString;
|
|
104758
|
+
designSystemVersionId: z.ZodString;
|
|
104759
|
+
name: z.ZodString;
|
|
104760
|
+
description: z.ZodString;
|
|
104761
|
+
targetElementType: z.ZodEnum<["Token", "Component", "DocumentationPage"]>;
|
|
104762
|
+
isDefault: z.ZodBoolean;
|
|
104763
|
+
}, "strip", z.ZodTypeAny, {
|
|
104585
104764
|
id: string;
|
|
104765
|
+
name: string;
|
|
104586
104766
|
persistentId: string;
|
|
104767
|
+
description: string;
|
|
104587
104768
|
designSystemVersionId: string;
|
|
104769
|
+
targetElementType: "Component" | "DocumentationPage" | "Token";
|
|
104770
|
+
isDefault: boolean;
|
|
104771
|
+
}, {
|
|
104772
|
+
id: string;
|
|
104588
104773
|
name: string;
|
|
104774
|
+
persistentId: string;
|
|
104589
104775
|
description: string;
|
|
104590
|
-
|
|
104776
|
+
designSystemVersionId: string;
|
|
104777
|
+
targetElementType: "Component" | "DocumentationPage" | "Token";
|
|
104591
104778
|
isDefault: boolean;
|
|
104592
|
-
}
|
|
104779
|
+
}>;
|
|
104780
|
+
type ElementView = z.infer<typeof ElementView>;
|
|
104593
104781
|
|
|
104594
|
-
|
|
104782
|
+
declare const Brand: z.ZodObject<{
|
|
104783
|
+
id: z.ZodString;
|
|
104784
|
+
designSystemVersionId: z.ZodString;
|
|
104785
|
+
persistentId: z.ZodString;
|
|
104786
|
+
name: z.ZodString;
|
|
104787
|
+
description: z.ZodString;
|
|
104788
|
+
}, "strip", z.ZodTypeAny, {
|
|
104595
104789
|
id: string;
|
|
104596
|
-
|
|
104790
|
+
name: string;
|
|
104597
104791
|
persistentId: string;
|
|
104792
|
+
description: string;
|
|
104793
|
+
designSystemVersionId: string;
|
|
104794
|
+
}, {
|
|
104795
|
+
id: string;
|
|
104598
104796
|
name: string;
|
|
104797
|
+
persistentId: string;
|
|
104599
104798
|
description: string;
|
|
104600
|
-
|
|
104799
|
+
designSystemVersionId: string;
|
|
104800
|
+
}>;
|
|
104801
|
+
type Brand = z.infer<typeof Brand>;
|
|
104601
104802
|
|
|
104602
104803
|
declare const DesignSystemSwitcher: z.ZodObject<{
|
|
104603
104804
|
isEnabled: z.ZodBoolean;
|
|
@@ -104863,7 +105064,7 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
|
|
|
104863
105064
|
status: z.ZodOptional<z.ZodEnum<["active", "suspended", "gracePeriod", "cancelled", "downgraded_to_free"]>>;
|
|
104864
105065
|
subscriptionStatus: z.ZodOptional<z.ZodEnum<["trialing", "active", "past_due", "canceled", "unpaid", "incomplete_expired", "incomplete", "unknown"]>>;
|
|
104865
105066
|
internalStatus: z.ZodOptional<z.ZodEnum<["active", "suspended", "gracePeriod", "cancelled", "downgraded_to_free"]>>;
|
|
104866
|
-
product: z.ZodEnum<["free", "team", "
|
|
105067
|
+
product: z.ZodEnum<["free", "team", "company", "enterprise"]>;
|
|
104867
105068
|
featuresSummary: z.ZodOptional<z.ZodObject<{
|
|
104868
105069
|
designSystems: z.ZodObject<{
|
|
104869
105070
|
max: z.ZodNumber;
|
|
@@ -105310,7 +105511,7 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
|
|
|
105310
105511
|
billingType: z.ZodOptional<z.ZodEnum<["Auto", "Invoice"]>>;
|
|
105311
105512
|
daysUntilDue: z.ZodOptional<z.ZodNumber>;
|
|
105312
105513
|
}, "strip", z.ZodTypeAny, {
|
|
105313
|
-
product: "free" | "team" | "
|
|
105514
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
105314
105515
|
planPriceId: string;
|
|
105315
105516
|
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
105316
105517
|
seats: number;
|
|
@@ -105432,7 +105633,7 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
|
|
|
105432
105633
|
billingType?: "Auto" | "Invoice" | undefined;
|
|
105433
105634
|
daysUntilDue?: number | undefined;
|
|
105434
105635
|
}, {
|
|
105435
|
-
product: "free" | "team" | "
|
|
105636
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
105436
105637
|
planPriceId: string;
|
|
105437
105638
|
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
105438
105639
|
seats: number;
|
|
@@ -105797,7 +105998,7 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
|
|
|
105797
105998
|
} | undefined;
|
|
105798
105999
|
};
|
|
105799
106000
|
subscription: {
|
|
105800
|
-
product: "free" | "team" | "
|
|
106001
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
105801
106002
|
planPriceId: string;
|
|
105802
106003
|
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
105803
106004
|
seats: number;
|
|
@@ -106004,7 +106205,7 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
|
|
|
106004
106205
|
} | null | undefined;
|
|
106005
106206
|
};
|
|
106006
106207
|
subscription: {
|
|
106007
|
-
product: "free" | "team" | "
|
|
106208
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
106008
106209
|
planPriceId: string;
|
|
106009
106210
|
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
106010
106211
|
seats: number;
|
|
@@ -106213,7 +106414,7 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
|
|
|
106213
106414
|
} | undefined;
|
|
106214
106415
|
};
|
|
106215
106416
|
subscription: {
|
|
106216
|
-
product: "free" | "team" | "
|
|
106417
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
106217
106418
|
planPriceId: string;
|
|
106218
106419
|
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
106219
106420
|
seats: number;
|
|
@@ -106442,7 +106643,7 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
|
|
|
106442
106643
|
} | null | undefined;
|
|
106443
106644
|
};
|
|
106444
106645
|
subscription: {
|
|
106445
|
-
product: "free" | "team" | "
|
|
106646
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
106446
106647
|
planPriceId: string;
|
|
106447
106648
|
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
106448
106649
|
seats: number;
|
|
@@ -106779,9 +106980,9 @@ declare const PublishedDoc: z.ZodObject<{
|
|
|
106779
106980
|
updatedAt: Date;
|
|
106780
106981
|
designSystemVersionId: string;
|
|
106781
106982
|
storagePath: string;
|
|
106983
|
+
isDefault: boolean;
|
|
106782
106984
|
isPublic: boolean;
|
|
106783
106985
|
lastPublishedAt: Date;
|
|
106784
|
-
isDefault: boolean;
|
|
106785
106986
|
environment: "Live" | "Preview";
|
|
106786
106987
|
checksums: Record<string, string>;
|
|
106787
106988
|
wasMigrated: boolean;
|
|
@@ -106794,9 +106995,9 @@ declare const PublishedDoc: z.ZodObject<{
|
|
|
106794
106995
|
updatedAt: Date;
|
|
106795
106996
|
designSystemVersionId: string;
|
|
106796
106997
|
storagePath: string;
|
|
106998
|
+
isDefault: boolean;
|
|
106797
106999
|
isPublic: boolean;
|
|
106798
107000
|
lastPublishedAt: Date;
|
|
106799
|
-
isDefault: boolean;
|
|
106800
107001
|
environment: "Live" | "Preview";
|
|
106801
107002
|
checksums: Record<string, string>;
|
|
106802
107003
|
wasMigrated: boolean;
|
|
@@ -106813,17 +107014,40 @@ type DesignElementReference = {
|
|
|
106813
107014
|
};
|
|
106814
107015
|
type CreateDesignElementReference = DbCreateInputOmit<DesignElementReference>;
|
|
106815
107016
|
|
|
106816
|
-
|
|
107017
|
+
declare const DesignSystemVersion: z.ZodObject<{
|
|
107018
|
+
id: z.ZodString;
|
|
107019
|
+
version: z.ZodString;
|
|
107020
|
+
createdAt: z.ZodDate;
|
|
107021
|
+
designSystemId: z.ZodString;
|
|
107022
|
+
name: z.ZodString;
|
|
107023
|
+
comment: z.ZodString;
|
|
107024
|
+
isReadonly: z.ZodBoolean;
|
|
107025
|
+
changeLog: z.ZodString;
|
|
107026
|
+
parentId: z.ZodOptional<z.ZodString>;
|
|
107027
|
+
}, "strip", z.ZodTypeAny, {
|
|
106817
107028
|
id: string;
|
|
106818
|
-
version: string;
|
|
106819
107029
|
createdAt: Date;
|
|
107030
|
+
name: string;
|
|
106820
107031
|
designSystemId: string;
|
|
107032
|
+
comment: string;
|
|
107033
|
+
version: string;
|
|
107034
|
+
isReadonly: boolean;
|
|
107035
|
+
changeLog: string;
|
|
107036
|
+
parentId?: string | undefined;
|
|
107037
|
+
}, {
|
|
107038
|
+
id: string;
|
|
107039
|
+
createdAt: Date;
|
|
106821
107040
|
name: string;
|
|
107041
|
+
designSystemId: string;
|
|
106822
107042
|
comment: string;
|
|
107043
|
+
version: string;
|
|
106823
107044
|
isReadonly: boolean;
|
|
106824
|
-
parentId: string | null;
|
|
106825
107045
|
changeLog: string;
|
|
106826
|
-
|
|
107046
|
+
parentId?: string | undefined;
|
|
107047
|
+
}>;
|
|
107048
|
+
type DesignSystemVersion = z.infer<typeof DesignSystemVersion>;
|
|
107049
|
+
type CreateDesignSystemVersion = DbCreateInputOmit<DesignSystemVersion>;
|
|
107050
|
+
type UpdateDesignSystemVersion = OmitStrict<DbUpdate<DesignSystemVersion>, "designSystemId" | "isReadonly" | "version" | "parentId">;
|
|
106827
107051
|
|
|
106828
107052
|
declare const FlaggedFeature: z.ZodEnum<["FigmaImporterV2"]>;
|
|
106829
107053
|
type FlaggedFeature = z.infer<typeof FlaggedFeature>;
|
|
@@ -107915,7 +108139,7 @@ type UserInvites = z.infer<typeof UserInvites>;
|
|
|
107915
108139
|
|
|
107916
108140
|
declare const WorkspaceContext: z.ZodObject<{
|
|
107917
108141
|
workspaceId: z.ZodString;
|
|
107918
|
-
product: z.ZodEnum<["free", "team", "
|
|
108142
|
+
product: z.ZodEnum<["free", "team", "company", "enterprise"]>;
|
|
107919
108143
|
ipWhitelist: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
107920
108144
|
entries: {
|
|
107921
108145
|
name: string;
|
|
@@ -107951,7 +108175,7 @@ declare const WorkspaceContext: z.ZodObject<{
|
|
|
107951
108175
|
} | null | undefined>;
|
|
107952
108176
|
publicDesignSystem: z.ZodOptional<z.ZodBoolean>;
|
|
107953
108177
|
}, "strip", z.ZodTypeAny, {
|
|
107954
|
-
product: "free" | "team" | "
|
|
108178
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
107955
108179
|
workspaceId: string;
|
|
107956
108180
|
ipWhitelist?: {
|
|
107957
108181
|
entries: {
|
|
@@ -107964,7 +108188,7 @@ declare const WorkspaceContext: z.ZodObject<{
|
|
|
107964
108188
|
} | undefined;
|
|
107965
108189
|
publicDesignSystem?: boolean | undefined;
|
|
107966
108190
|
}, {
|
|
107967
|
-
product: "free" | "team" | "
|
|
108191
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
107968
108192
|
workspaceId: string;
|
|
107969
108193
|
ipWhitelist?: {
|
|
107970
108194
|
entries: {
|
|
@@ -107983,7 +108207,7 @@ declare const HANDLE_MIN_LENGTH = 2;
|
|
|
107983
108207
|
declare const HANDLE_MAX_LENGTH = 64;
|
|
107984
108208
|
declare const CreateWorkspaceInput: z.ZodObject<{
|
|
107985
108209
|
name: z.ZodString;
|
|
107986
|
-
product: z.ZodEnum<["free", "team", "
|
|
108210
|
+
product: z.ZodEnum<["free", "team", "company", "enterprise"]>;
|
|
107987
108211
|
priceId: z.ZodString;
|
|
107988
108212
|
billingEmail: z.ZodOptional<z.ZodString>;
|
|
107989
108213
|
handle: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
@@ -108149,7 +108373,7 @@ declare const CreateWorkspaceInput: z.ZodObject<{
|
|
|
108149
108373
|
}, "strip", z.ZodTypeAny, {
|
|
108150
108374
|
name: string;
|
|
108151
108375
|
priceId: string;
|
|
108152
|
-
product: "free" | "team" | "
|
|
108376
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
108153
108377
|
billingEmail?: string | undefined;
|
|
108154
108378
|
handle?: string | undefined;
|
|
108155
108379
|
invites?: {
|
|
@@ -108212,7 +108436,7 @@ declare const CreateWorkspaceInput: z.ZodObject<{
|
|
|
108212
108436
|
}, {
|
|
108213
108437
|
name: string;
|
|
108214
108438
|
priceId: string;
|
|
108215
|
-
product: "free" | "team" | "
|
|
108439
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
108216
108440
|
billingEmail?: string | undefined;
|
|
108217
108441
|
handle?: string | undefined;
|
|
108218
108442
|
invites?: {
|
|
@@ -108622,7 +108846,7 @@ declare const Workspace: z.ZodObject<{
|
|
|
108622
108846
|
status: z.ZodOptional<z.ZodEnum<["active", "suspended", "gracePeriod", "cancelled", "downgraded_to_free"]>>;
|
|
108623
108847
|
subscriptionStatus: z.ZodOptional<z.ZodEnum<["trialing", "active", "past_due", "canceled", "unpaid", "incomplete_expired", "incomplete", "unknown"]>>;
|
|
108624
108848
|
internalStatus: z.ZodOptional<z.ZodEnum<["active", "suspended", "gracePeriod", "cancelled", "downgraded_to_free"]>>;
|
|
108625
|
-
product: z.ZodEnum<["free", "team", "
|
|
108849
|
+
product: z.ZodEnum<["free", "team", "company", "enterprise"]>;
|
|
108626
108850
|
featuresSummary: z.ZodOptional<z.ZodObject<{
|
|
108627
108851
|
designSystems: z.ZodObject<{
|
|
108628
108852
|
max: z.ZodNumber;
|
|
@@ -109069,7 +109293,7 @@ declare const Workspace: z.ZodObject<{
|
|
|
109069
109293
|
billingType: z.ZodOptional<z.ZodEnum<["Auto", "Invoice"]>>;
|
|
109070
109294
|
daysUntilDue: z.ZodOptional<z.ZodNumber>;
|
|
109071
109295
|
}, "strip", z.ZodTypeAny, {
|
|
109072
|
-
product: "free" | "team" | "
|
|
109296
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
109073
109297
|
planPriceId: string;
|
|
109074
109298
|
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
109075
109299
|
seats: number;
|
|
@@ -109191,7 +109415,7 @@ declare const Workspace: z.ZodObject<{
|
|
|
109191
109415
|
billingType?: "Auto" | "Invoice" | undefined;
|
|
109192
109416
|
daysUntilDue?: number | undefined;
|
|
109193
109417
|
}, {
|
|
109194
|
-
product: "free" | "team" | "
|
|
109418
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
109195
109419
|
planPriceId: string;
|
|
109196
109420
|
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
109197
109421
|
seats: number;
|
|
@@ -109556,7 +109780,7 @@ declare const Workspace: z.ZodObject<{
|
|
|
109556
109780
|
} | undefined;
|
|
109557
109781
|
};
|
|
109558
109782
|
subscription: {
|
|
109559
|
-
product: "free" | "team" | "
|
|
109783
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
109560
109784
|
planPriceId: string;
|
|
109561
109785
|
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
109562
109786
|
seats: number;
|
|
@@ -109763,7 +109987,7 @@ declare const Workspace: z.ZodObject<{
|
|
|
109763
109987
|
} | null | undefined;
|
|
109764
109988
|
};
|
|
109765
109989
|
subscription: {
|
|
109766
|
-
product: "free" | "team" | "
|
|
109990
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
109767
109991
|
planPriceId: string;
|
|
109768
109992
|
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
109769
109993
|
seats: number;
|
|
@@ -110065,7 +110289,7 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
110065
110289
|
status: z.ZodOptional<z.ZodEnum<["active", "suspended", "gracePeriod", "cancelled", "downgraded_to_free"]>>;
|
|
110066
110290
|
subscriptionStatus: z.ZodOptional<z.ZodEnum<["trialing", "active", "past_due", "canceled", "unpaid", "incomplete_expired", "incomplete", "unknown"]>>;
|
|
110067
110291
|
internalStatus: z.ZodOptional<z.ZodEnum<["active", "suspended", "gracePeriod", "cancelled", "downgraded_to_free"]>>;
|
|
110068
|
-
product: z.ZodEnum<["free", "team", "
|
|
110292
|
+
product: z.ZodEnum<["free", "team", "company", "enterprise"]>;
|
|
110069
110293
|
featuresSummary: z.ZodOptional<z.ZodObject<{
|
|
110070
110294
|
designSystems: z.ZodObject<{
|
|
110071
110295
|
max: z.ZodNumber;
|
|
@@ -110512,7 +110736,7 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
110512
110736
|
billingType: z.ZodOptional<z.ZodEnum<["Auto", "Invoice"]>>;
|
|
110513
110737
|
daysUntilDue: z.ZodOptional<z.ZodNumber>;
|
|
110514
110738
|
}, "strip", z.ZodTypeAny, {
|
|
110515
|
-
product: "free" | "team" | "
|
|
110739
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
110516
110740
|
planPriceId: string;
|
|
110517
110741
|
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
110518
110742
|
seats: number;
|
|
@@ -110634,7 +110858,7 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
110634
110858
|
billingType?: "Auto" | "Invoice" | undefined;
|
|
110635
110859
|
daysUntilDue?: number | undefined;
|
|
110636
110860
|
}, {
|
|
110637
|
-
product: "free" | "team" | "
|
|
110861
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
110638
110862
|
planPriceId: string;
|
|
110639
110863
|
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
110640
110864
|
seats: number;
|
|
@@ -110999,7 +111223,7 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
110999
111223
|
} | undefined;
|
|
111000
111224
|
};
|
|
111001
111225
|
subscription: {
|
|
111002
|
-
product: "free" | "team" | "
|
|
111226
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
111003
111227
|
planPriceId: string;
|
|
111004
111228
|
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
111005
111229
|
seats: number;
|
|
@@ -111206,7 +111430,7 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
111206
111430
|
} | null | undefined;
|
|
111207
111431
|
};
|
|
111208
111432
|
subscription: {
|
|
111209
|
-
product: "free" | "team" | "
|
|
111433
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
111210
111434
|
planPriceId: string;
|
|
111211
111435
|
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
111212
111436
|
seats: number;
|
|
@@ -111502,7 +111726,7 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
111502
111726
|
} | undefined;
|
|
111503
111727
|
};
|
|
111504
111728
|
subscription: {
|
|
111505
|
-
product: "free" | "team" | "
|
|
111729
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
111506
111730
|
planPriceId: string;
|
|
111507
111731
|
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
111508
111732
|
seats: number;
|
|
@@ -111731,7 +111955,7 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
111731
111955
|
} | null | undefined;
|
|
111732
111956
|
};
|
|
111733
111957
|
subscription: {
|
|
111734
|
-
product: "free" | "team" | "
|
|
111958
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
111735
111959
|
planPriceId: string;
|
|
111736
111960
|
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
111737
111961
|
seats: number;
|
|
@@ -111917,4 +112141,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
111917
112141
|
}>;
|
|
111918
112142
|
type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
|
|
111919
112143
|
|
|
111920
|
-
export { Address, type AllFields, type ArrayElementType, Asset, 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, type Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageContent, type CreateDocumentationPageRoom, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementViewColumn, type CreateExporterMembership, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePublishedDocPage, type CreateTheme, CreateWorkspaceInput, CustomDomain, type CustomDomainState, Customer, type DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, type DesignSystemVersion, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomUpdate, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationGroupBehavior, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageV1, DocumentationPageV2, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV2, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyValue, type ElementPropertyValueDiff, type ElementView, type ElementViewBaseColumnType, type ElementViewBasePropertyColumn, type ElementViewColumn, type ElementViewColumnSharedAttributes, type ElementViewColumnType, type ElementViewPropertyDefinitionColumn, type ElementViewThemeColumn, Entity, type ExplicitPartial, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDestinationSnDocs, ExporterDetails, ExporterJob, ExporterJobDestination, ExporterJobFindByFilter, ExporterJobLogEntry, ExporterJobLogEntryType, ExporterJobResult, ExporterJobResultDocsDestination, ExporterJobResultPullRequestDestination, ExporterJobResultS3Destination, ExporterJobStatus, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitProvider, GitProviderNames, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, ImportedFigmaSourceData, IntegrationAuthType, type IntegrationToken, IntegrationTokenSchema, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, 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, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockEditorModelV2, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, 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, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, type PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, type ResolvedAsset, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateComponent, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementViewColumn, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, UrlImageImportModel, User, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserSession, Visibility, VisibilityTokenData, VisibilityValue, Workspace, WorkspaceContext, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, WorkspaceProfile, WorkspaceRole, WorkspaceRoleSchema, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isSlugReserved, isTokenType, mapByUnique, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, promiseWithTimeout, publishedDocEnvironments, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlocksV1, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, zodCreateInputOmit, zodUpdateInputOmit };
|
|
112144
|
+
export { Address, type AllFields, type ArrayElementType, Asset, 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, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageContent, type CreateDocumentationPageRoom, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementViewColumn, type CreateExporterMembership, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePublishedDocPage, type CreateTheme, CreateWorkspaceInput, CustomDomain, type CustomDomainState, Customer, type DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, DesignSystemVersion, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomUpdate, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationGroupBehavior, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageV1, DocumentationPageV2, DurationTokenData, DurationUnit, DurationValue, ElementGroup, 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, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDestinationSnDocs, ExporterDetails, ExporterJob, ExporterJobDestination, ExporterJobFindByFilter, ExporterJobLogEntry, ExporterJobLogEntryType, ExporterJobResult, ExporterJobResultDocsDestination, ExporterJobResultPullRequestDestination, ExporterJobResultS3Destination, ExporterJobStatus, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitProvider, GitProviderNames, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, ImportedFigmaSourceData, IntegrationAuthType, type IntegrationToken, IntegrationTokenSchema, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, 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, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, 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, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, type PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, type ResolvedAsset, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateComponent, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementViewColumn, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, UrlImageImportModel, User, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserSession, Visibility, VisibilityTokenData, VisibilityValue, Workspace, WorkspaceContext, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, WorkspaceProfile, WorkspaceRole, WorkspaceRoleSchema, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, 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, zodCreateInputOmit, zodUpdateInputOmit };
|