@supernova-studio/model 1.9.12 → 1.9.14
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 +383 -5
- package/dist/index.d.ts +383 -5
- package/dist/index.js +18 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +28 -11
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -85704,6 +85704,7 @@ declare const FigmaExporterProcessedStylesSchema: z.ZodObject<{
|
|
|
85704
85704
|
mixBlendMode: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"multiply">, z.ZodLiteral<"screen">, z.ZodLiteral<"overlay">, z.ZodLiteral<"darken">, z.ZodLiteral<"lighten">, z.ZodLiteral<"color-dodge">, z.ZodLiteral<"color-burn">, z.ZodLiteral<"hard-light">, z.ZodLiteral<"soft-light">, z.ZodLiteral<"difference">, z.ZodLiteral<"exclusion">, z.ZodLiteral<"hue">, z.ZodLiteral<"saturation">, z.ZodLiteral<"color">, z.ZodLiteral<"luminosity">, z.ZodLiteral<"plus-lighter">]>>;
|
|
85705
85705
|
transform: z.ZodOptional<z.ZodString>;
|
|
85706
85706
|
transformOrigin: z.ZodOptional<z.ZodString>;
|
|
85707
|
+
rotate: z.ZodOptional<z.ZodString>;
|
|
85707
85708
|
clipPath: z.ZodOptional<z.ZodString>;
|
|
85708
85709
|
color: z.ZodOptional<z.ZodString>;
|
|
85709
85710
|
fontFamily: z.ZodOptional<z.ZodString>;
|
|
@@ -85818,6 +85819,7 @@ declare const FigmaExporterProcessedStylesSchema: z.ZodObject<{
|
|
|
85818
85819
|
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
85819
85820
|
transform?: string | undefined;
|
|
85820
85821
|
transformOrigin?: string | undefined;
|
|
85822
|
+
rotate?: string | undefined;
|
|
85821
85823
|
clipPath?: string | undefined;
|
|
85822
85824
|
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
85823
85825
|
fontStretch?: string | undefined;
|
|
@@ -85925,6 +85927,7 @@ declare const FigmaExporterProcessedStylesSchema: z.ZodObject<{
|
|
|
85925
85927
|
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
85926
85928
|
transform?: string | undefined;
|
|
85927
85929
|
transformOrigin?: string | undefined;
|
|
85930
|
+
rotate?: string | undefined;
|
|
85928
85931
|
clipPath?: string | undefined;
|
|
85929
85932
|
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
85930
85933
|
fontStretch?: string | undefined;
|
|
@@ -86031,6 +86034,7 @@ declare const frameNodeObjectSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
86031
86034
|
mixBlendMode: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"multiply">, z.ZodLiteral<"screen">, z.ZodLiteral<"overlay">, z.ZodLiteral<"darken">, z.ZodLiteral<"lighten">, z.ZodLiteral<"color-dodge">, z.ZodLiteral<"color-burn">, z.ZodLiteral<"hard-light">, z.ZodLiteral<"soft-light">, z.ZodLiteral<"difference">, z.ZodLiteral<"exclusion">, z.ZodLiteral<"hue">, z.ZodLiteral<"saturation">, z.ZodLiteral<"color">, z.ZodLiteral<"luminosity">, z.ZodLiteral<"plus-lighter">]>>>;
|
|
86032
86035
|
transform: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86033
86036
|
transformOrigin: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86037
|
+
rotate: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86034
86038
|
clipPath: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86035
86039
|
color: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86036
86040
|
fontFamily: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -86145,6 +86149,7 @@ declare const frameNodeObjectSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
86145
86149
|
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
86146
86150
|
transform?: string | undefined;
|
|
86147
86151
|
transformOrigin?: string | undefined;
|
|
86152
|
+
rotate?: string | undefined;
|
|
86148
86153
|
clipPath?: string | undefined;
|
|
86149
86154
|
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
86150
86155
|
fontStretch?: string | undefined;
|
|
@@ -86252,6 +86257,7 @@ declare const frameNodeObjectSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
86252
86257
|
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
86253
86258
|
transform?: string | undefined;
|
|
86254
86259
|
transformOrigin?: string | undefined;
|
|
86260
|
+
rotate?: string | undefined;
|
|
86255
86261
|
clipPath?: string | undefined;
|
|
86256
86262
|
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
86257
86263
|
fontStretch?: string | undefined;
|
|
@@ -86365,6 +86371,7 @@ declare const frameNodeObjectSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
86365
86371
|
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
86366
86372
|
transform?: string | undefined;
|
|
86367
86373
|
transformOrigin?: string | undefined;
|
|
86374
|
+
rotate?: string | undefined;
|
|
86368
86375
|
clipPath?: string | undefined;
|
|
86369
86376
|
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
86370
86377
|
fontStretch?: string | undefined;
|
|
@@ -86477,6 +86484,7 @@ declare const frameNodeObjectSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
86477
86484
|
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
86478
86485
|
transform?: string | undefined;
|
|
86479
86486
|
transformOrigin?: string | undefined;
|
|
86487
|
+
rotate?: string | undefined;
|
|
86480
86488
|
clipPath?: string | undefined;
|
|
86481
86489
|
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
86482
86490
|
fontStretch?: string | undefined;
|
|
@@ -86584,6 +86592,7 @@ declare const textNodeObjectSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
86584
86592
|
mixBlendMode: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"multiply">, z.ZodLiteral<"screen">, z.ZodLiteral<"overlay">, z.ZodLiteral<"darken">, z.ZodLiteral<"lighten">, z.ZodLiteral<"color-dodge">, z.ZodLiteral<"color-burn">, z.ZodLiteral<"hard-light">, z.ZodLiteral<"soft-light">, z.ZodLiteral<"difference">, z.ZodLiteral<"exclusion">, z.ZodLiteral<"hue">, z.ZodLiteral<"saturation">, z.ZodLiteral<"color">, z.ZodLiteral<"luminosity">, z.ZodLiteral<"plus-lighter">]>>>;
|
|
86585
86593
|
transform: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86586
86594
|
transformOrigin: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86595
|
+
rotate: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86587
86596
|
clipPath: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86588
86597
|
color: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
86589
86598
|
fontFamily: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -86698,6 +86707,7 @@ declare const textNodeObjectSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
86698
86707
|
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
86699
86708
|
transform?: string | undefined;
|
|
86700
86709
|
transformOrigin?: string | undefined;
|
|
86710
|
+
rotate?: string | undefined;
|
|
86701
86711
|
clipPath?: string | undefined;
|
|
86702
86712
|
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
86703
86713
|
fontStretch?: string | undefined;
|
|
@@ -86805,6 +86815,7 @@ declare const textNodeObjectSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
86805
86815
|
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
86806
86816
|
transform?: string | undefined;
|
|
86807
86817
|
transformOrigin?: string | undefined;
|
|
86818
|
+
rotate?: string | undefined;
|
|
86808
86819
|
clipPath?: string | undefined;
|
|
86809
86820
|
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
86810
86821
|
fontStretch?: string | undefined;
|
|
@@ -86919,6 +86930,7 @@ declare const textNodeObjectSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
86919
86930
|
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
86920
86931
|
transform?: string | undefined;
|
|
86921
86932
|
transformOrigin?: string | undefined;
|
|
86933
|
+
rotate?: string | undefined;
|
|
86922
86934
|
clipPath?: string | undefined;
|
|
86923
86935
|
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
86924
86936
|
fontStretch?: string | undefined;
|
|
@@ -87032,6 +87044,7 @@ declare const textNodeObjectSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
87032
87044
|
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
87033
87045
|
transform?: string | undefined;
|
|
87034
87046
|
transformOrigin?: string | undefined;
|
|
87047
|
+
rotate?: string | undefined;
|
|
87035
87048
|
clipPath?: string | undefined;
|
|
87036
87049
|
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
87037
87050
|
fontStretch?: string | undefined;
|
|
@@ -87140,6 +87153,7 @@ declare const svgNodeObjectSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
87140
87153
|
mixBlendMode: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"multiply">, z.ZodLiteral<"screen">, z.ZodLiteral<"overlay">, z.ZodLiteral<"darken">, z.ZodLiteral<"lighten">, z.ZodLiteral<"color-dodge">, z.ZodLiteral<"color-burn">, z.ZodLiteral<"hard-light">, z.ZodLiteral<"soft-light">, z.ZodLiteral<"difference">, z.ZodLiteral<"exclusion">, z.ZodLiteral<"hue">, z.ZodLiteral<"saturation">, z.ZodLiteral<"color">, z.ZodLiteral<"luminosity">, z.ZodLiteral<"plus-lighter">]>>>;
|
|
87141
87154
|
transform: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87142
87155
|
transformOrigin: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87156
|
+
rotate: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87143
87157
|
clipPath: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87144
87158
|
color: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87145
87159
|
fontFamily: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -87254,6 +87268,7 @@ declare const svgNodeObjectSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
87254
87268
|
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
87255
87269
|
transform?: string | undefined;
|
|
87256
87270
|
transformOrigin?: string | undefined;
|
|
87271
|
+
rotate?: string | undefined;
|
|
87257
87272
|
clipPath?: string | undefined;
|
|
87258
87273
|
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
87259
87274
|
fontStretch?: string | undefined;
|
|
@@ -87361,6 +87376,7 @@ declare const svgNodeObjectSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
87361
87376
|
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
87362
87377
|
transform?: string | undefined;
|
|
87363
87378
|
transformOrigin?: string | undefined;
|
|
87379
|
+
rotate?: string | undefined;
|
|
87364
87380
|
clipPath?: string | undefined;
|
|
87365
87381
|
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
87366
87382
|
fontStretch?: string | undefined;
|
|
@@ -87475,6 +87491,7 @@ declare const svgNodeObjectSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
87475
87491
|
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
87476
87492
|
transform?: string | undefined;
|
|
87477
87493
|
transformOrigin?: string | undefined;
|
|
87494
|
+
rotate?: string | undefined;
|
|
87478
87495
|
clipPath?: string | undefined;
|
|
87479
87496
|
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
87480
87497
|
fontStretch?: string | undefined;
|
|
@@ -87588,6 +87605,7 @@ declare const svgNodeObjectSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
87588
87605
|
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
87589
87606
|
transform?: string | undefined;
|
|
87590
87607
|
transformOrigin?: string | undefined;
|
|
87608
|
+
rotate?: string | undefined;
|
|
87591
87609
|
clipPath?: string | undefined;
|
|
87592
87610
|
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
87593
87611
|
fontStretch?: string | undefined;
|
|
@@ -87696,6 +87714,7 @@ declare const componentInstanceObjectSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
87696
87714
|
mixBlendMode: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"multiply">, z.ZodLiteral<"screen">, z.ZodLiteral<"overlay">, z.ZodLiteral<"darken">, z.ZodLiteral<"lighten">, z.ZodLiteral<"color-dodge">, z.ZodLiteral<"color-burn">, z.ZodLiteral<"hard-light">, z.ZodLiteral<"soft-light">, z.ZodLiteral<"difference">, z.ZodLiteral<"exclusion">, z.ZodLiteral<"hue">, z.ZodLiteral<"saturation">, z.ZodLiteral<"color">, z.ZodLiteral<"luminosity">, z.ZodLiteral<"plus-lighter">]>>>;
|
|
87697
87715
|
transform: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87698
87716
|
transformOrigin: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87717
|
+
rotate: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87699
87718
|
clipPath: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87700
87719
|
color: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
87701
87720
|
fontFamily: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -87810,6 +87829,7 @@ declare const componentInstanceObjectSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
87810
87829
|
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
87811
87830
|
transform?: string | undefined;
|
|
87812
87831
|
transformOrigin?: string | undefined;
|
|
87832
|
+
rotate?: string | undefined;
|
|
87813
87833
|
clipPath?: string | undefined;
|
|
87814
87834
|
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
87815
87835
|
fontStretch?: string | undefined;
|
|
@@ -87917,6 +87937,7 @@ declare const componentInstanceObjectSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
87917
87937
|
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
87918
87938
|
transform?: string | undefined;
|
|
87919
87939
|
transformOrigin?: string | undefined;
|
|
87940
|
+
rotate?: string | undefined;
|
|
87920
87941
|
clipPath?: string | undefined;
|
|
87921
87942
|
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
87922
87943
|
fontStretch?: string | undefined;
|
|
@@ -88036,6 +88057,7 @@ declare const componentInstanceObjectSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
88036
88057
|
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
88037
88058
|
transform?: string | undefined;
|
|
88038
88059
|
transformOrigin?: string | undefined;
|
|
88060
|
+
rotate?: string | undefined;
|
|
88039
88061
|
clipPath?: string | undefined;
|
|
88040
88062
|
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
88041
88063
|
fontStretch?: string | undefined;
|
|
@@ -88154,6 +88176,7 @@ declare const componentInstanceObjectSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
88154
88176
|
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
88155
88177
|
transform?: string | undefined;
|
|
88156
88178
|
transformOrigin?: string | undefined;
|
|
88179
|
+
rotate?: string | undefined;
|
|
88157
88180
|
clipPath?: string | undefined;
|
|
88158
88181
|
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
88159
88182
|
fontStretch?: string | undefined;
|
|
@@ -88195,9 +88218,7 @@ type FrameNode = z.infer<typeof frameNodeObjectSchema> & {
|
|
|
88195
88218
|
children: AnyDesignNode[];
|
|
88196
88219
|
};
|
|
88197
88220
|
type TextNode = z.infer<typeof textNodeObjectSchema>;
|
|
88198
|
-
type SvgNode = z.infer<typeof svgNodeObjectSchema
|
|
88199
|
-
children: AnyDesignNode[];
|
|
88200
|
-
};
|
|
88221
|
+
type SvgNode = z.infer<typeof svgNodeObjectSchema>;
|
|
88201
88222
|
type ComponentInstanceNode = z.infer<typeof componentInstanceObjectSchema> & {
|
|
88202
88223
|
children: AnyDesignNode[];
|
|
88203
88224
|
};
|
|
@@ -88278,6 +88299,7 @@ declare const FigmaExporterAnyDesignNodeSchema: z.ZodUnion<[z.ZodType<FrameNode,
|
|
|
88278
88299
|
mixBlendMode: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"multiply">, z.ZodLiteral<"screen">, z.ZodLiteral<"overlay">, z.ZodLiteral<"darken">, z.ZodLiteral<"lighten">, z.ZodLiteral<"color-dodge">, z.ZodLiteral<"color-burn">, z.ZodLiteral<"hard-light">, z.ZodLiteral<"soft-light">, z.ZodLiteral<"difference">, z.ZodLiteral<"exclusion">, z.ZodLiteral<"hue">, z.ZodLiteral<"saturation">, z.ZodLiteral<"color">, z.ZodLiteral<"luminosity">, z.ZodLiteral<"plus-lighter">]>>>;
|
|
88279
88300
|
transform: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
88280
88301
|
transformOrigin: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
88302
|
+
rotate: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
88281
88303
|
clipPath: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
88282
88304
|
color: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
88283
88305
|
fontFamily: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -88392,6 +88414,7 @@ declare const FigmaExporterAnyDesignNodeSchema: z.ZodUnion<[z.ZodType<FrameNode,
|
|
|
88392
88414
|
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
88393
88415
|
transform?: string | undefined;
|
|
88394
88416
|
transformOrigin?: string | undefined;
|
|
88417
|
+
rotate?: string | undefined;
|
|
88395
88418
|
clipPath?: string | undefined;
|
|
88396
88419
|
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
88397
88420
|
fontStretch?: string | undefined;
|
|
@@ -88499,6 +88522,7 @@ declare const FigmaExporterAnyDesignNodeSchema: z.ZodUnion<[z.ZodType<FrameNode,
|
|
|
88499
88522
|
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
88500
88523
|
transform?: string | undefined;
|
|
88501
88524
|
transformOrigin?: string | undefined;
|
|
88525
|
+
rotate?: string | undefined;
|
|
88502
88526
|
clipPath?: string | undefined;
|
|
88503
88527
|
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
88504
88528
|
fontStretch?: string | undefined;
|
|
@@ -88613,6 +88637,7 @@ declare const FigmaExporterAnyDesignNodeSchema: z.ZodUnion<[z.ZodType<FrameNode,
|
|
|
88613
88637
|
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
88614
88638
|
transform?: string | undefined;
|
|
88615
88639
|
transformOrigin?: string | undefined;
|
|
88640
|
+
rotate?: string | undefined;
|
|
88616
88641
|
clipPath?: string | undefined;
|
|
88617
88642
|
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
88618
88643
|
fontStretch?: string | undefined;
|
|
@@ -88726,6 +88751,7 @@ declare const FigmaExporterAnyDesignNodeSchema: z.ZodUnion<[z.ZodType<FrameNode,
|
|
|
88726
88751
|
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
88727
88752
|
transform?: string | undefined;
|
|
88728
88753
|
transformOrigin?: string | undefined;
|
|
88754
|
+
rotate?: string | undefined;
|
|
88729
88755
|
clipPath?: string | undefined;
|
|
88730
88756
|
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
88731
88757
|
fontStretch?: string | undefined;
|
|
@@ -88757,7 +88783,235 @@ declare const FigmaExporterAnyDesignNodeSchema: z.ZodUnion<[z.ZodType<FrameNode,
|
|
|
88757
88783
|
};
|
|
88758
88784
|
parentId: string | null;
|
|
88759
88785
|
characters: string;
|
|
88760
|
-
}>, z.ZodType<
|
|
88786
|
+
}>, z.ZodType<{
|
|
88787
|
+
type: "SVG";
|
|
88788
|
+
id: string;
|
|
88789
|
+
styles: {
|
|
88790
|
+
filter?: string | undefined;
|
|
88791
|
+
fill?: string | undefined;
|
|
88792
|
+
top?: string | undefined;
|
|
88793
|
+
color?: string | undefined;
|
|
88794
|
+
width?: string | undefined;
|
|
88795
|
+
height?: string | undefined;
|
|
88796
|
+
opacity?: number | undefined;
|
|
88797
|
+
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
88798
|
+
backgroundColor?: string | undefined;
|
|
88799
|
+
gap?: string | undefined;
|
|
88800
|
+
aspectRatio?: string | undefined;
|
|
88801
|
+
minHeight?: string | undefined;
|
|
88802
|
+
bottom?: string | undefined;
|
|
88803
|
+
left?: string | undefined;
|
|
88804
|
+
right?: string | undefined;
|
|
88805
|
+
padding?: string | undefined;
|
|
88806
|
+
fontSize?: string | undefined;
|
|
88807
|
+
fontFamily?: string | undefined;
|
|
88808
|
+
fontWeight?: string | number | undefined;
|
|
88809
|
+
letterSpacing?: string | undefined;
|
|
88810
|
+
lineHeight?: string | number | undefined;
|
|
88811
|
+
display?: "block" | "inline-block" | "inline" | "flex" | "grid" | "none" | undefined;
|
|
88812
|
+
minWidth?: string | undefined;
|
|
88813
|
+
maxWidth?: string | undefined;
|
|
88814
|
+
maxHeight?: string | undefined;
|
|
88815
|
+
zIndex?: number | undefined;
|
|
88816
|
+
overflow?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
88817
|
+
overflowX?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
88818
|
+
overflowY?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
88819
|
+
flexDirection?: "row" | "row-reverse" | "column" | "column-reverse" | undefined;
|
|
88820
|
+
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
88821
|
+
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
88822
|
+
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
88823
|
+
flexGrow?: number | undefined;
|
|
88824
|
+
flexShrink?: number | undefined;
|
|
88825
|
+
flexBasis?: string | undefined;
|
|
88826
|
+
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
88827
|
+
rowGap?: string | undefined;
|
|
88828
|
+
columnGap?: string | undefined;
|
|
88829
|
+
gridTemplateColumns?: string | undefined;
|
|
88830
|
+
gridTemplateRows?: string | undefined;
|
|
88831
|
+
gridColumn?: string | undefined;
|
|
88832
|
+
gridRow?: string | undefined;
|
|
88833
|
+
gridAutoFlow?: "row" | "column" | "dense" | "row dense" | "column dense" | undefined;
|
|
88834
|
+
alignContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "stretch" | undefined;
|
|
88835
|
+
paddingTop?: string | undefined;
|
|
88836
|
+
paddingRight?: string | undefined;
|
|
88837
|
+
paddingBottom?: string | undefined;
|
|
88838
|
+
paddingLeft?: string | undefined;
|
|
88839
|
+
margin?: string | undefined;
|
|
88840
|
+
marginTop?: string | undefined;
|
|
88841
|
+
marginRight?: string | undefined;
|
|
88842
|
+
marginBottom?: string | undefined;
|
|
88843
|
+
marginLeft?: string | undefined;
|
|
88844
|
+
border?: string | undefined;
|
|
88845
|
+
borderWidth?: string | undefined;
|
|
88846
|
+
borderStyle?: string | undefined;
|
|
88847
|
+
borderColor?: string | undefined;
|
|
88848
|
+
borderTop?: string | undefined;
|
|
88849
|
+
borderRight?: string | undefined;
|
|
88850
|
+
borderBottom?: string | undefined;
|
|
88851
|
+
borderLeft?: string | undefined;
|
|
88852
|
+
borderRadius?: string | undefined;
|
|
88853
|
+
borderTopLeftRadius?: string | undefined;
|
|
88854
|
+
borderTopRightRadius?: string | undefined;
|
|
88855
|
+
borderBottomRightRadius?: string | undefined;
|
|
88856
|
+
borderBottomLeftRadius?: string | undefined;
|
|
88857
|
+
backgroundImage?: string | undefined;
|
|
88858
|
+
backgroundSize?: string | undefined;
|
|
88859
|
+
backgroundPosition?: string | undefined;
|
|
88860
|
+
backgroundRepeat?: string | undefined;
|
|
88861
|
+
backgroundClip?: "text" | "border-box" | "padding-box" | "content-box" | undefined;
|
|
88862
|
+
backgroundOrigin?: "border-box" | "padding-box" | "content-box" | undefined;
|
|
88863
|
+
boxShadow?: string | undefined;
|
|
88864
|
+
backdropFilter?: string | undefined;
|
|
88865
|
+
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
88866
|
+
transform?: string | undefined;
|
|
88867
|
+
transformOrigin?: string | undefined;
|
|
88868
|
+
rotate?: string | undefined;
|
|
88869
|
+
clipPath?: string | undefined;
|
|
88870
|
+
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
88871
|
+
fontStretch?: string | undefined;
|
|
88872
|
+
fontVariantCaps?: "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps" | undefined;
|
|
88873
|
+
textAlign?: "end" | "start" | "left" | "right" | "center" | "justify" | undefined;
|
|
88874
|
+
textDecorationLine?: "none" | "underline" | "overline" | "line-through" | undefined;
|
|
88875
|
+
textDecorationColor?: string | undefined;
|
|
88876
|
+
textDecorationStyle?: "solid" | "double" | "dotted" | "dashed" | "wavy" | undefined;
|
|
88877
|
+
textDecorationThickness?: string | undefined;
|
|
88878
|
+
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize" | "full-width" | undefined;
|
|
88879
|
+
whiteSpace?: "nowrap" | "normal" | "pre" | "pre-wrap" | "pre-line" | "break-spaces" | undefined;
|
|
88880
|
+
wordBreak?: "normal" | "break-all" | "keep-all" | "break-word" | undefined;
|
|
88881
|
+
textOverflow?: "clip" | "ellipsis" | undefined;
|
|
88882
|
+
WebkitLineClamp?: number | undefined;
|
|
88883
|
+
WebkitBoxOrient?: "vertical" | undefined;
|
|
88884
|
+
fontFeatureSettings?: string | undefined;
|
|
88885
|
+
stroke?: string | undefined;
|
|
88886
|
+
strokeWidth?: string | undefined;
|
|
88887
|
+
strokeLinecap?: "butt" | "round" | "square" | undefined;
|
|
88888
|
+
strokeLinejoin?: "round" | "miter" | "bevel" | undefined;
|
|
88889
|
+
strokeDasharray?: string | undefined;
|
|
88890
|
+
strokeDashoffset?: string | undefined;
|
|
88891
|
+
transition?: string | undefined;
|
|
88892
|
+
animation?: string | undefined;
|
|
88893
|
+
cursor?: string | undefined;
|
|
88894
|
+
userSelect?: "all" | "text" | "none" | "auto" | undefined;
|
|
88895
|
+
pointerEvents?: "fill" | "all" | "none" | "visible" | "auto" | "stroke" | "visiblePainted" | "visibleFill" | "visibleStroke" | "painted" | "inherit" | undefined;
|
|
88896
|
+
visibility?: "visible" | "hidden" | "collapse" | undefined;
|
|
88897
|
+
};
|
|
88898
|
+
parentId: string | null;
|
|
88899
|
+
svgString: string;
|
|
88900
|
+
}, z.ZodTypeDef, {
|
|
88901
|
+
type: "SVG";
|
|
88902
|
+
id: string;
|
|
88903
|
+
styles: {
|
|
88904
|
+
filter?: string | undefined;
|
|
88905
|
+
fill?: string | undefined;
|
|
88906
|
+
top?: string | undefined;
|
|
88907
|
+
color?: string | undefined;
|
|
88908
|
+
width?: string | undefined;
|
|
88909
|
+
height?: string | undefined;
|
|
88910
|
+
opacity?: number | undefined;
|
|
88911
|
+
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
88912
|
+
backgroundColor?: string | undefined;
|
|
88913
|
+
gap?: string | undefined;
|
|
88914
|
+
aspectRatio?: string | undefined;
|
|
88915
|
+
minHeight?: string | undefined;
|
|
88916
|
+
bottom?: string | undefined;
|
|
88917
|
+
left?: string | undefined;
|
|
88918
|
+
right?: string | undefined;
|
|
88919
|
+
padding?: string | undefined;
|
|
88920
|
+
fontSize?: string | undefined;
|
|
88921
|
+
fontFamily?: string | undefined;
|
|
88922
|
+
fontWeight?: string | number | undefined;
|
|
88923
|
+
letterSpacing?: string | undefined;
|
|
88924
|
+
lineHeight?: string | number | undefined;
|
|
88925
|
+
display?: "block" | "inline-block" | "inline" | "flex" | "grid" | "none" | undefined;
|
|
88926
|
+
minWidth?: string | undefined;
|
|
88927
|
+
maxWidth?: string | undefined;
|
|
88928
|
+
maxHeight?: string | undefined;
|
|
88929
|
+
zIndex?: number | undefined;
|
|
88930
|
+
overflow?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
88931
|
+
overflowX?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
88932
|
+
overflowY?: "visible" | "hidden" | "scroll" | "auto" | "clip" | undefined;
|
|
88933
|
+
flexDirection?: "row" | "row-reverse" | "column" | "column-reverse" | undefined;
|
|
88934
|
+
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
88935
|
+
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
88936
|
+
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline" | undefined;
|
|
88937
|
+
flexGrow?: number | undefined;
|
|
88938
|
+
flexShrink?: number | undefined;
|
|
88939
|
+
flexBasis?: string | undefined;
|
|
88940
|
+
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
88941
|
+
rowGap?: string | undefined;
|
|
88942
|
+
columnGap?: string | undefined;
|
|
88943
|
+
gridTemplateColumns?: string | undefined;
|
|
88944
|
+
gridTemplateRows?: string | undefined;
|
|
88945
|
+
gridColumn?: string | undefined;
|
|
88946
|
+
gridRow?: string | undefined;
|
|
88947
|
+
gridAutoFlow?: "row" | "column" | "dense" | "row dense" | "column dense" | undefined;
|
|
88948
|
+
alignContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "stretch" | undefined;
|
|
88949
|
+
paddingTop?: string | undefined;
|
|
88950
|
+
paddingRight?: string | undefined;
|
|
88951
|
+
paddingBottom?: string | undefined;
|
|
88952
|
+
paddingLeft?: string | undefined;
|
|
88953
|
+
margin?: string | undefined;
|
|
88954
|
+
marginTop?: string | undefined;
|
|
88955
|
+
marginRight?: string | undefined;
|
|
88956
|
+
marginBottom?: string | undefined;
|
|
88957
|
+
marginLeft?: string | undefined;
|
|
88958
|
+
border?: string | undefined;
|
|
88959
|
+
borderWidth?: string | undefined;
|
|
88960
|
+
borderStyle?: string | undefined;
|
|
88961
|
+
borderColor?: string | undefined;
|
|
88962
|
+
borderTop?: string | undefined;
|
|
88963
|
+
borderRight?: string | undefined;
|
|
88964
|
+
borderBottom?: string | undefined;
|
|
88965
|
+
borderLeft?: string | undefined;
|
|
88966
|
+
borderRadius?: string | undefined;
|
|
88967
|
+
borderTopLeftRadius?: string | undefined;
|
|
88968
|
+
borderTopRightRadius?: string | undefined;
|
|
88969
|
+
borderBottomRightRadius?: string | undefined;
|
|
88970
|
+
borderBottomLeftRadius?: string | undefined;
|
|
88971
|
+
backgroundImage?: string | undefined;
|
|
88972
|
+
backgroundSize?: string | undefined;
|
|
88973
|
+
backgroundPosition?: string | undefined;
|
|
88974
|
+
backgroundRepeat?: string | undefined;
|
|
88975
|
+
backgroundClip?: "text" | "border-box" | "padding-box" | "content-box" | undefined;
|
|
88976
|
+
backgroundOrigin?: "border-box" | "padding-box" | "content-box" | undefined;
|
|
88977
|
+
boxShadow?: string | undefined;
|
|
88978
|
+
backdropFilter?: string | undefined;
|
|
88979
|
+
mixBlendMode?: "color" | "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "luminosity" | "plus-lighter" | undefined;
|
|
88980
|
+
transform?: string | undefined;
|
|
88981
|
+
transformOrigin?: string | undefined;
|
|
88982
|
+
rotate?: string | undefined;
|
|
88983
|
+
clipPath?: string | undefined;
|
|
88984
|
+
fontStyle?: "normal" | "italic" | "oblique" | undefined;
|
|
88985
|
+
fontStretch?: string | undefined;
|
|
88986
|
+
fontVariantCaps?: "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps" | undefined;
|
|
88987
|
+
textAlign?: "end" | "start" | "left" | "right" | "center" | "justify" | undefined;
|
|
88988
|
+
textDecorationLine?: "none" | "underline" | "overline" | "line-through" | undefined;
|
|
88989
|
+
textDecorationColor?: string | undefined;
|
|
88990
|
+
textDecorationStyle?: "solid" | "double" | "dotted" | "dashed" | "wavy" | undefined;
|
|
88991
|
+
textDecorationThickness?: string | undefined;
|
|
88992
|
+
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize" | "full-width" | undefined;
|
|
88993
|
+
whiteSpace?: "nowrap" | "normal" | "pre" | "pre-wrap" | "pre-line" | "break-spaces" | undefined;
|
|
88994
|
+
wordBreak?: "normal" | "break-all" | "keep-all" | "break-word" | undefined;
|
|
88995
|
+
textOverflow?: "clip" | "ellipsis" | undefined;
|
|
88996
|
+
WebkitLineClamp?: number | undefined;
|
|
88997
|
+
WebkitBoxOrient?: "vertical" | undefined;
|
|
88998
|
+
fontFeatureSettings?: string | undefined;
|
|
88999
|
+
stroke?: string | undefined;
|
|
89000
|
+
strokeWidth?: string | undefined;
|
|
89001
|
+
strokeLinecap?: "butt" | "round" | "square" | undefined;
|
|
89002
|
+
strokeLinejoin?: "round" | "miter" | "bevel" | undefined;
|
|
89003
|
+
strokeDasharray?: string | undefined;
|
|
89004
|
+
strokeDashoffset?: string | undefined;
|
|
89005
|
+
transition?: string | undefined;
|
|
89006
|
+
animation?: string | undefined;
|
|
89007
|
+
cursor?: string | undefined;
|
|
89008
|
+
userSelect?: "all" | "text" | "none" | "auto" | undefined;
|
|
89009
|
+
pointerEvents?: "fill" | "all" | "none" | "visible" | "auto" | "stroke" | "visiblePainted" | "visibleFill" | "visibleStroke" | "painted" | "inherit" | undefined;
|
|
89010
|
+
visibility?: "visible" | "hidden" | "collapse" | undefined;
|
|
89011
|
+
};
|
|
89012
|
+
parentId: string | null;
|
|
89013
|
+
svgString: string;
|
|
89014
|
+
}>, z.ZodType<ComponentInstanceNode, z.ZodTypeDef, ComponentInstanceNode>]>;
|
|
88761
89015
|
type FigmaExporter = {
|
|
88762
89016
|
AnyDesignNode: AnyDesignNode;
|
|
88763
89017
|
FrameNode: FrameNode;
|
|
@@ -190233,6 +190487,130 @@ declare const NpmProxyTokenPayload: z.ZodObject<{
|
|
|
190233
190487
|
}>;
|
|
190234
190488
|
type NpmProxyTokenPayload = z.infer<typeof NpmProxyTokenPayload>;
|
|
190235
190489
|
|
|
190490
|
+
declare const PortalSettingsTheme: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
190491
|
+
backgroundColor?: string | undefined;
|
|
190492
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
190493
|
+
accentColor?: string | undefined;
|
|
190494
|
+
contrast?: number | undefined;
|
|
190495
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
190496
|
+
secondaryBackgroundColor?: string | undefined;
|
|
190497
|
+
secondaryContrast?: number | undefined;
|
|
190498
|
+
isEditorWhite?: boolean | undefined;
|
|
190499
|
+
}, z.ZodTypeDef, {
|
|
190500
|
+
backgroundColor?: string | undefined;
|
|
190501
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
190502
|
+
accentColor?: string | undefined;
|
|
190503
|
+
contrast?: number | undefined;
|
|
190504
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
190505
|
+
secondaryBackgroundColor?: string | undefined;
|
|
190506
|
+
secondaryContrast?: number | undefined;
|
|
190507
|
+
isEditorWhite?: boolean | undefined;
|
|
190508
|
+
}>>>, {
|
|
190509
|
+
backgroundColor?: string | undefined;
|
|
190510
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
190511
|
+
accentColor?: string | undefined;
|
|
190512
|
+
contrast?: number | undefined;
|
|
190513
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
190514
|
+
secondaryBackgroundColor?: string | undefined;
|
|
190515
|
+
secondaryContrast?: number | undefined;
|
|
190516
|
+
isEditorWhite?: boolean | undefined;
|
|
190517
|
+
} | undefined, {
|
|
190518
|
+
backgroundColor?: string | undefined;
|
|
190519
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
190520
|
+
accentColor?: string | undefined;
|
|
190521
|
+
contrast?: number | undefined;
|
|
190522
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
190523
|
+
secondaryBackgroundColor?: string | undefined;
|
|
190524
|
+
secondaryContrast?: number | undefined;
|
|
190525
|
+
isEditorWhite?: boolean | undefined;
|
|
190526
|
+
} | null | undefined>;
|
|
190527
|
+
type PortalSettingsTheme = z.infer<typeof PortalSettingsTheme>;
|
|
190528
|
+
declare const PortalSettings: z.ZodObject<{
|
|
190529
|
+
id: z.ZodString;
|
|
190530
|
+
workspaceId: z.ZodString;
|
|
190531
|
+
enabledDesignSystemIds: z.ZodArray<z.ZodString, "many">;
|
|
190532
|
+
enabledBrandPersistentIds: z.ZodArray<z.ZodString, "many">;
|
|
190533
|
+
theme: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
190534
|
+
backgroundColor?: string | undefined;
|
|
190535
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
190536
|
+
accentColor?: string | undefined;
|
|
190537
|
+
contrast?: number | undefined;
|
|
190538
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
190539
|
+
secondaryBackgroundColor?: string | undefined;
|
|
190540
|
+
secondaryContrast?: number | undefined;
|
|
190541
|
+
isEditorWhite?: boolean | undefined;
|
|
190542
|
+
}, z.ZodTypeDef, {
|
|
190543
|
+
backgroundColor?: string | undefined;
|
|
190544
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
190545
|
+
accentColor?: string | undefined;
|
|
190546
|
+
contrast?: number | undefined;
|
|
190547
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
190548
|
+
secondaryBackgroundColor?: string | undefined;
|
|
190549
|
+
secondaryContrast?: number | undefined;
|
|
190550
|
+
isEditorWhite?: boolean | undefined;
|
|
190551
|
+
}>>>, {
|
|
190552
|
+
backgroundColor?: string | undefined;
|
|
190553
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
190554
|
+
accentColor?: string | undefined;
|
|
190555
|
+
contrast?: number | undefined;
|
|
190556
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
190557
|
+
secondaryBackgroundColor?: string | undefined;
|
|
190558
|
+
secondaryContrast?: number | undefined;
|
|
190559
|
+
isEditorWhite?: boolean | undefined;
|
|
190560
|
+
} | undefined, {
|
|
190561
|
+
backgroundColor?: string | undefined;
|
|
190562
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
190563
|
+
accentColor?: string | undefined;
|
|
190564
|
+
contrast?: number | undefined;
|
|
190565
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
190566
|
+
secondaryBackgroundColor?: string | undefined;
|
|
190567
|
+
secondaryContrast?: number | undefined;
|
|
190568
|
+
isEditorWhite?: boolean | undefined;
|
|
190569
|
+
} | null | undefined>;
|
|
190570
|
+
sidebar: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<any, z.ZodTypeDef, any>>>, any, any>;
|
|
190571
|
+
createdAt: z.ZodDate;
|
|
190572
|
+
updatedAt: z.ZodDate;
|
|
190573
|
+
}, "strip", z.ZodTypeAny, {
|
|
190574
|
+
id: string;
|
|
190575
|
+
createdAt: Date;
|
|
190576
|
+
updatedAt: Date;
|
|
190577
|
+
workspaceId: string;
|
|
190578
|
+
enabledDesignSystemIds: string[];
|
|
190579
|
+
enabledBrandPersistentIds: string[];
|
|
190580
|
+
theme?: {
|
|
190581
|
+
backgroundColor?: string | undefined;
|
|
190582
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
190583
|
+
accentColor?: string | undefined;
|
|
190584
|
+
contrast?: number | undefined;
|
|
190585
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
190586
|
+
secondaryBackgroundColor?: string | undefined;
|
|
190587
|
+
secondaryContrast?: number | undefined;
|
|
190588
|
+
isEditorWhite?: boolean | undefined;
|
|
190589
|
+
} | undefined;
|
|
190590
|
+
sidebar?: any;
|
|
190591
|
+
}, {
|
|
190592
|
+
id: string;
|
|
190593
|
+
createdAt: Date;
|
|
190594
|
+
updatedAt: Date;
|
|
190595
|
+
workspaceId: string;
|
|
190596
|
+
enabledDesignSystemIds: string[];
|
|
190597
|
+
enabledBrandPersistentIds: string[];
|
|
190598
|
+
theme?: {
|
|
190599
|
+
backgroundColor?: string | undefined;
|
|
190600
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
190601
|
+
accentColor?: string | undefined;
|
|
190602
|
+
contrast?: number | undefined;
|
|
190603
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
190604
|
+
secondaryBackgroundColor?: string | undefined;
|
|
190605
|
+
secondaryContrast?: number | undefined;
|
|
190606
|
+
isEditorWhite?: boolean | undefined;
|
|
190607
|
+
} | null | undefined;
|
|
190608
|
+
sidebar?: any;
|
|
190609
|
+
}>;
|
|
190610
|
+
type PortalSettings = z.infer<typeof PortalSettings>;
|
|
190611
|
+
type CreatePortalSettings = DbCreateInputOmit<PortalSettings>;
|
|
190612
|
+
type UpdatePortalSettings = OmitStrict<DbUpdate<PortalSettings>, "workspaceId">;
|
|
190613
|
+
|
|
190236
190614
|
declare const PersonalAccessToken: z.ZodObject<{
|
|
190237
190615
|
id: z.ZodString;
|
|
190238
190616
|
userId: z.ZodString;
|
|
@@ -191144,4 +191522,4 @@ type PersonalAccessTokenWithUser = {
|
|
|
191144
191522
|
token: PersonalAccessToken;
|
|
191145
191523
|
};
|
|
191146
191524
|
|
|
191147
|
-
export { Address, type AllFields, AnalyzeCodeComponentsInPackage, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, AuthV2Request, AuthV2Session, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeComponent, type CodeComponentCreate, CodeComponentParentType, CodeComponentProperty, CodeComponentResolvedType, CodeComponentResolvedTypeKind, type CodeComponentUpdate, type CodeComponentUpsert, CodeComponentUpsertResponse, CodeIntegrationDump, Collection, CollectionImportModel, CollectionImportModelInput, CollectionOrigin, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateCollection, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystem, type CreateDesignSystemInvitation, type CreateDesignSystemMembership, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, type CreateDocumentationPageContent, type CreateDocumentationPageDependencies, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateFigmaNodeStructureV2, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreatePublishedDocPageVisitsEntry, type CreateStorybookEntry, type CreateStorybookPayload, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, type DataSourceOfType, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceStorybookRemote, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DependencyDefinition, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, type DesignSystemVersionParsedRoomId, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageDependencies, DocumentationPageGroup, type DocumentationPageOldParsedRoomId, type DocumentationPageParsedRoomId, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyImmutableType, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventDocumentationPublished, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportDestinationsMapUpdate, ExportJob, ExportJobContext, ExportJobDebugContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobExporterConfiguration, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterConfigurationPropertyValue, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyDefinition, ExporterPropertyDefinitionArray, ExporterPropertyDefinitionBoolean, ExporterPropertyDefinitionCode, ExporterPropertyDefinitionEnum, ExporterPropertyDefinitionEnumOption, ExporterPropertyDefinitionNumber, ExporterPropertyDefinitionObject, ExporterPropertyDefinitionString, type ExporterPropertyDefinitionValue, ExporterPropertyImageValue, ExporterPropertyType, ExporterPropertyValue, ExporterPropertyValueMap, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, FeatureFlagsKeepAliases, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, type FigmaExporter, FigmaExporterAnyDesignNodeSchema, FigmaFile, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceOrigin, FigmaNodeRelinkData, FigmaNodeRenderError, FigmaNodeRenderErrorType, FigmaNodeRenderFormat, FigmaNodeRenderState, FigmaNodeRenderedImage, FigmaNodeRendererPayload, FigmaNodeStructureDataV2, FigmaNodeStructureStateV2, FigmaNodeStructureV2, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, GitBranch, GitCommonDestinationOptions, GitIntegrationType, GitInteropPulsarError, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, ListExporterQuery, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetBlockConfig, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionFigmaComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentBlockConfig, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFile, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemFileValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemStorybookValueOld, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockStorybookBlockConfig, PageBlockStorybookItem, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenBlockConfig, PageBlockTokenNameFormat, PageBlockTokenValueFormat, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, type PageContentDependencies, PageRedirect, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type PagesContentDependencies, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, type ParsedRoomId, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocPageVisitsEntry, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, Registry, RegistryType, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, type RoomOwner, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShadowValue, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportStorybookSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StorybookEntry, StorybookEntryOrigin, StorybookPayload, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateCollection, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageDependencies, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateFigmaNodeStructureV2, type UpdateImportJob, type UpdateIntegrationCredential, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateStorybookEntry, type UpdateStorybookPayload, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserSource, UserTest, UserTheme, VersionCreationJob, VersionCreationJobStatus, type VersionRoomOwner, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, type WorkspaceParsedRoomId, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, type WorkspaceRoomOwner, WorkspaceUntypedData, type WorkspaceUntypedDataCreate, type WorkspaceUntypedDataUpdate, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, applyShallowObjectUpdate, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, castStringToDimensionValue, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, generateShortPersistentId, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, hasProperty, isDataSourceOfType, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isNotNullish, isNullish, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, recordToMap, removeCommentSpans, sleep, slugRegex, slugify, storybookValueFromOldValue, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };
|
|
191525
|
+
export { Address, type AllFields, AnalyzeCodeComponentsInPackage, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, AuthV2Request, AuthV2Session, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeComponent, type CodeComponentCreate, CodeComponentParentType, CodeComponentProperty, CodeComponentResolvedType, CodeComponentResolvedTypeKind, type CodeComponentUpdate, type CodeComponentUpsert, CodeComponentUpsertResponse, CodeIntegrationDump, Collection, CollectionImportModel, CollectionImportModelInput, CollectionOrigin, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateCollection, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystem, type CreateDesignSystemInvitation, type CreateDesignSystemMembership, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, type CreateDocumentationPageContent, type CreateDocumentationPageDependencies, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateFigmaNodeStructureV2, type CreateImportJob, type CreatePersonalAccessToken, type CreatePortalSettings, type CreatePublishedDocPage, type CreatePublishedDocPageVisitsEntry, type CreateStorybookEntry, type CreateStorybookPayload, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, type DataSourceOfType, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceStorybookRemote, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DependencyDefinition, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, type DesignSystemVersionParsedRoomId, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageDependencies, DocumentationPageGroup, type DocumentationPageOldParsedRoomId, type DocumentationPageParsedRoomId, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyImmutableType, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventDocumentationPublished, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportDestinationsMapUpdate, ExportJob, ExportJobContext, ExportJobDebugContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobExporterConfiguration, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterConfigurationPropertyValue, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyDefinition, ExporterPropertyDefinitionArray, ExporterPropertyDefinitionBoolean, ExporterPropertyDefinitionCode, ExporterPropertyDefinitionEnum, ExporterPropertyDefinitionEnumOption, ExporterPropertyDefinitionNumber, ExporterPropertyDefinitionObject, ExporterPropertyDefinitionString, type ExporterPropertyDefinitionValue, ExporterPropertyImageValue, ExporterPropertyType, ExporterPropertyValue, ExporterPropertyValueMap, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, FeatureFlagsKeepAliases, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, type FigmaExporter, FigmaExporterAnyDesignNodeSchema, FigmaFile, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceOrigin, FigmaNodeRelinkData, FigmaNodeRenderError, FigmaNodeRenderErrorType, FigmaNodeRenderFormat, FigmaNodeRenderState, FigmaNodeRenderedImage, FigmaNodeRendererPayload, FigmaNodeStructureDataV2, FigmaNodeStructureStateV2, FigmaNodeStructureV2, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, GitBranch, GitCommonDestinationOptions, GitIntegrationType, GitInteropPulsarError, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, ListExporterQuery, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetBlockConfig, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionFigmaComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentBlockConfig, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFile, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemFileValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemStorybookValueOld, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockStorybookBlockConfig, PageBlockStorybookItem, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenBlockConfig, PageBlockTokenNameFormat, PageBlockTokenValueFormat, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, type PageContentDependencies, PageRedirect, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type PagesContentDependencies, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, type ParsedRoomId, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PortalSettings, PortalSettingsTheme, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocPageVisitsEntry, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, Registry, RegistryType, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, type RoomOwner, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShadowValue, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportStorybookSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StorybookEntry, StorybookEntryOrigin, StorybookPayload, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateCollection, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageDependencies, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateFigmaNodeStructureV2, type UpdateImportJob, type UpdateIntegrationCredential, UpdateMembershipRolesInput, type UpdatePortalSettings, type UpdatePublishedDocPage, type UpdateStorybookEntry, type UpdateStorybookPayload, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserSource, UserTest, UserTheme, VersionCreationJob, VersionCreationJobStatus, type VersionRoomOwner, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, type WorkspaceParsedRoomId, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, type WorkspaceRoomOwner, WorkspaceUntypedData, type WorkspaceUntypedDataCreate, type WorkspaceUntypedDataUpdate, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, applyShallowObjectUpdate, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, castStringToDimensionValue, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, generateShortPersistentId, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, hasProperty, isDataSourceOfType, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isNotNullish, isNullish, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, recordToMap, removeCommentSpans, sleep, slugRegex, slugify, storybookValueFromOldValue, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };
|