@supernova-studio/model 0.31.0 → 0.33.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 +329 -279
- package/dist/index.d.ts +329 -279
- package/dist/index.js +18 -14
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +17 -13
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/codegen/pulsar.ts +5 -5
- package/src/dsm/elements/data/documentation-block-v1.ts +1 -0
- package/src/dsm/elements/data/documentation-block-v2.ts +14 -13
package/dist/index.d.mts
CHANGED
|
@@ -2436,7 +2436,6 @@ declare const ExporterDetails: z.ZodObject<{
|
|
|
2436
2436
|
}[] | null | undefined>>;
|
|
2437
2437
|
customBlocks: z.ZodDefault<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2438
2438
|
key: string;
|
|
2439
|
-
category: string;
|
|
2440
2439
|
properties: {
|
|
2441
2440
|
type: "string" | "number" | "boolean" | "image" | "color" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
2442
2441
|
key: string;
|
|
@@ -2447,14 +2446,19 @@ declare const ExporterDetails: z.ZodObject<{
|
|
|
2447
2446
|
inputType?: "code" | "plain" | undefined;
|
|
2448
2447
|
isMultiline?: boolean | null | undefined;
|
|
2449
2448
|
}[];
|
|
2450
|
-
title
|
|
2451
|
-
|
|
2452
|
-
mode: "array" | "block";
|
|
2449
|
+
title?: string | undefined;
|
|
2450
|
+
category?: string | undefined;
|
|
2453
2451
|
description?: string | undefined;
|
|
2452
|
+
iconURL?: string | undefined;
|
|
2453
|
+
mode?: NonNullable<"array" | "block"> | undefined;
|
|
2454
2454
|
}[], z.ZodTypeDef, {
|
|
2455
2455
|
key: string;
|
|
2456
|
-
|
|
2457
|
-
|
|
2456
|
+
title?: string | null | undefined;
|
|
2457
|
+
category?: string | null | undefined;
|
|
2458
|
+
description?: string | null | undefined;
|
|
2459
|
+
iconURL?: string | null | undefined;
|
|
2460
|
+
mode?: "array" | "block" | null | undefined;
|
|
2461
|
+
properties?: {
|
|
2458
2462
|
type: "string" | "number" | "boolean" | "image" | "color" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
2459
2463
|
key: string;
|
|
2460
2464
|
label: string;
|
|
@@ -2463,14 +2467,9 @@ declare const ExporterDetails: z.ZodObject<{
|
|
|
2463
2467
|
default?: string | number | boolean | null | undefined;
|
|
2464
2468
|
inputType?: "code" | "plain" | undefined;
|
|
2465
2469
|
isMultiline?: boolean | null | undefined;
|
|
2466
|
-
}[];
|
|
2467
|
-
title: string;
|
|
2468
|
-
iconURL: string;
|
|
2469
|
-
mode: "array" | "block";
|
|
2470
|
-
description?: string | null | undefined;
|
|
2470
|
+
}[] | null | undefined;
|
|
2471
2471
|
}[]>>>, {
|
|
2472
2472
|
key: string;
|
|
2473
|
-
category: string;
|
|
2474
2473
|
properties: {
|
|
2475
2474
|
type: "string" | "number" | "boolean" | "image" | "color" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
2476
2475
|
key: string;
|
|
@@ -2481,14 +2480,19 @@ declare const ExporterDetails: z.ZodObject<{
|
|
|
2481
2480
|
inputType?: "code" | "plain" | undefined;
|
|
2482
2481
|
isMultiline?: boolean | null | undefined;
|
|
2483
2482
|
}[];
|
|
2484
|
-
title
|
|
2485
|
-
|
|
2486
|
-
mode: "array" | "block";
|
|
2483
|
+
title?: string | undefined;
|
|
2484
|
+
category?: string | undefined;
|
|
2487
2485
|
description?: string | undefined;
|
|
2486
|
+
iconURL?: string | undefined;
|
|
2487
|
+
mode?: NonNullable<"array" | "block"> | undefined;
|
|
2488
2488
|
}[] | undefined, {
|
|
2489
2489
|
key: string;
|
|
2490
|
-
|
|
2491
|
-
|
|
2490
|
+
title?: string | null | undefined;
|
|
2491
|
+
category?: string | null | undefined;
|
|
2492
|
+
description?: string | null | undefined;
|
|
2493
|
+
iconURL?: string | null | undefined;
|
|
2494
|
+
mode?: "array" | "block" | null | undefined;
|
|
2495
|
+
properties?: {
|
|
2492
2496
|
type: "string" | "number" | "boolean" | "image" | "color" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
2493
2497
|
key: string;
|
|
2494
2498
|
label: string;
|
|
@@ -2497,11 +2501,7 @@ declare const ExporterDetails: z.ZodObject<{
|
|
|
2497
2501
|
default?: string | number | boolean | null | undefined;
|
|
2498
2502
|
inputType?: "code" | "plain" | undefined;
|
|
2499
2503
|
isMultiline?: boolean | null | undefined;
|
|
2500
|
-
}[];
|
|
2501
|
-
title: string;
|
|
2502
|
-
iconURL: string;
|
|
2503
|
-
mode: "array" | "block";
|
|
2504
|
-
description?: string | null | undefined;
|
|
2504
|
+
}[] | null | undefined;
|
|
2505
2505
|
}[] | null | undefined>>;
|
|
2506
2506
|
blockVariants: z.ZodDefault<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, {
|
|
2507
2507
|
name: string;
|
|
@@ -2553,7 +2553,6 @@ declare const ExporterDetails: z.ZodObject<{
|
|
|
2553
2553
|
}[];
|
|
2554
2554
|
customBlocks: {
|
|
2555
2555
|
key: string;
|
|
2556
|
-
category: string;
|
|
2557
2556
|
properties: {
|
|
2558
2557
|
type: "string" | "number" | "boolean" | "image" | "color" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
2559
2558
|
key: string;
|
|
@@ -2564,10 +2563,11 @@ declare const ExporterDetails: z.ZodObject<{
|
|
|
2564
2563
|
inputType?: "code" | "plain" | undefined;
|
|
2565
2564
|
isMultiline?: boolean | null | undefined;
|
|
2566
2565
|
}[];
|
|
2567
|
-
title
|
|
2568
|
-
|
|
2569
|
-
mode: "array" | "block";
|
|
2566
|
+
title?: string | undefined;
|
|
2567
|
+
category?: string | undefined;
|
|
2570
2568
|
description?: string | undefined;
|
|
2569
|
+
iconURL?: string | undefined;
|
|
2570
|
+
mode?: NonNullable<"array" | "block"> | undefined;
|
|
2571
2571
|
}[];
|
|
2572
2572
|
blockVariants: Record<string, {
|
|
2573
2573
|
name: string;
|
|
@@ -2614,8 +2614,12 @@ declare const ExporterDetails: z.ZodObject<{
|
|
|
2614
2614
|
}[] | null | undefined;
|
|
2615
2615
|
customBlocks?: {
|
|
2616
2616
|
key: string;
|
|
2617
|
-
|
|
2618
|
-
|
|
2617
|
+
title?: string | null | undefined;
|
|
2618
|
+
category?: string | null | undefined;
|
|
2619
|
+
description?: string | null | undefined;
|
|
2620
|
+
iconURL?: string | null | undefined;
|
|
2621
|
+
mode?: "array" | "block" | null | undefined;
|
|
2622
|
+
properties?: {
|
|
2619
2623
|
type: "string" | "number" | "boolean" | "image" | "color" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
2620
2624
|
key: string;
|
|
2621
2625
|
label: string;
|
|
@@ -2624,11 +2628,7 @@ declare const ExporterDetails: z.ZodObject<{
|
|
|
2624
2628
|
default?: string | number | boolean | null | undefined;
|
|
2625
2629
|
inputType?: "code" | "plain" | undefined;
|
|
2626
2630
|
isMultiline?: boolean | null | undefined;
|
|
2627
|
-
}[];
|
|
2628
|
-
title: string;
|
|
2629
|
-
iconURL: string;
|
|
2630
|
-
mode: "array" | "block";
|
|
2631
|
-
description?: string | null | undefined;
|
|
2631
|
+
}[] | null | undefined;
|
|
2632
2632
|
}[] | null | undefined;
|
|
2633
2633
|
blockVariants?: Record<string, {
|
|
2634
2634
|
name: string;
|
|
@@ -2704,7 +2704,6 @@ declare const Exporter: z.ZodObject<{
|
|
|
2704
2704
|
}[] | null | undefined>>;
|
|
2705
2705
|
customBlocks: z.ZodDefault<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2706
2706
|
key: string;
|
|
2707
|
-
category: string;
|
|
2708
2707
|
properties: {
|
|
2709
2708
|
type: "string" | "number" | "boolean" | "image" | "color" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
2710
2709
|
key: string;
|
|
@@ -2715,14 +2714,19 @@ declare const Exporter: z.ZodObject<{
|
|
|
2715
2714
|
inputType?: "code" | "plain" | undefined;
|
|
2716
2715
|
isMultiline?: boolean | null | undefined;
|
|
2717
2716
|
}[];
|
|
2718
|
-
title
|
|
2719
|
-
|
|
2720
|
-
mode: "array" | "block";
|
|
2717
|
+
title?: string | undefined;
|
|
2718
|
+
category?: string | undefined;
|
|
2721
2719
|
description?: string | undefined;
|
|
2720
|
+
iconURL?: string | undefined;
|
|
2721
|
+
mode?: NonNullable<"array" | "block"> | undefined;
|
|
2722
2722
|
}[], z.ZodTypeDef, {
|
|
2723
2723
|
key: string;
|
|
2724
|
-
|
|
2725
|
-
|
|
2724
|
+
title?: string | null | undefined;
|
|
2725
|
+
category?: string | null | undefined;
|
|
2726
|
+
description?: string | null | undefined;
|
|
2727
|
+
iconURL?: string | null | undefined;
|
|
2728
|
+
mode?: "array" | "block" | null | undefined;
|
|
2729
|
+
properties?: {
|
|
2726
2730
|
type: "string" | "number" | "boolean" | "image" | "color" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
2727
2731
|
key: string;
|
|
2728
2732
|
label: string;
|
|
@@ -2731,14 +2735,9 @@ declare const Exporter: z.ZodObject<{
|
|
|
2731
2735
|
default?: string | number | boolean | null | undefined;
|
|
2732
2736
|
inputType?: "code" | "plain" | undefined;
|
|
2733
2737
|
isMultiline?: boolean | null | undefined;
|
|
2734
|
-
}[];
|
|
2735
|
-
title: string;
|
|
2736
|
-
iconURL: string;
|
|
2737
|
-
mode: "array" | "block";
|
|
2738
|
-
description?: string | null | undefined;
|
|
2738
|
+
}[] | null | undefined;
|
|
2739
2739
|
}[]>>>, {
|
|
2740
2740
|
key: string;
|
|
2741
|
-
category: string;
|
|
2742
2741
|
properties: {
|
|
2743
2742
|
type: "string" | "number" | "boolean" | "image" | "color" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
2744
2743
|
key: string;
|
|
@@ -2749,14 +2748,19 @@ declare const Exporter: z.ZodObject<{
|
|
|
2749
2748
|
inputType?: "code" | "plain" | undefined;
|
|
2750
2749
|
isMultiline?: boolean | null | undefined;
|
|
2751
2750
|
}[];
|
|
2752
|
-
title
|
|
2753
|
-
|
|
2754
|
-
mode: "array" | "block";
|
|
2751
|
+
title?: string | undefined;
|
|
2752
|
+
category?: string | undefined;
|
|
2755
2753
|
description?: string | undefined;
|
|
2754
|
+
iconURL?: string | undefined;
|
|
2755
|
+
mode?: NonNullable<"array" | "block"> | undefined;
|
|
2756
2756
|
}[] | undefined, {
|
|
2757
2757
|
key: string;
|
|
2758
|
-
|
|
2759
|
-
|
|
2758
|
+
title?: string | null | undefined;
|
|
2759
|
+
category?: string | null | undefined;
|
|
2760
|
+
description?: string | null | undefined;
|
|
2761
|
+
iconURL?: string | null | undefined;
|
|
2762
|
+
mode?: "array" | "block" | null | undefined;
|
|
2763
|
+
properties?: {
|
|
2760
2764
|
type: "string" | "number" | "boolean" | "image" | "color" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
2761
2765
|
key: string;
|
|
2762
2766
|
label: string;
|
|
@@ -2765,11 +2769,7 @@ declare const Exporter: z.ZodObject<{
|
|
|
2765
2769
|
default?: string | number | boolean | null | undefined;
|
|
2766
2770
|
inputType?: "code" | "plain" | undefined;
|
|
2767
2771
|
isMultiline?: boolean | null | undefined;
|
|
2768
|
-
}[];
|
|
2769
|
-
title: string;
|
|
2770
|
-
iconURL: string;
|
|
2771
|
-
mode: "array" | "block";
|
|
2772
|
-
description?: string | null | undefined;
|
|
2772
|
+
}[] | null | undefined;
|
|
2773
2773
|
}[] | null | undefined>>;
|
|
2774
2774
|
blockVariants: z.ZodDefault<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, {
|
|
2775
2775
|
name: string;
|
|
@@ -2821,7 +2821,6 @@ declare const Exporter: z.ZodObject<{
|
|
|
2821
2821
|
}[];
|
|
2822
2822
|
customBlocks: {
|
|
2823
2823
|
key: string;
|
|
2824
|
-
category: string;
|
|
2825
2824
|
properties: {
|
|
2826
2825
|
type: "string" | "number" | "boolean" | "image" | "color" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
2827
2826
|
key: string;
|
|
@@ -2832,10 +2831,11 @@ declare const Exporter: z.ZodObject<{
|
|
|
2832
2831
|
inputType?: "code" | "plain" | undefined;
|
|
2833
2832
|
isMultiline?: boolean | null | undefined;
|
|
2834
2833
|
}[];
|
|
2835
|
-
title
|
|
2836
|
-
|
|
2837
|
-
mode: "array" | "block";
|
|
2834
|
+
title?: string | undefined;
|
|
2835
|
+
category?: string | undefined;
|
|
2838
2836
|
description?: string | undefined;
|
|
2837
|
+
iconURL?: string | undefined;
|
|
2838
|
+
mode?: NonNullable<"array" | "block"> | undefined;
|
|
2839
2839
|
}[];
|
|
2840
2840
|
blockVariants: Record<string, {
|
|
2841
2841
|
name: string;
|
|
@@ -2882,8 +2882,12 @@ declare const Exporter: z.ZodObject<{
|
|
|
2882
2882
|
}[] | null | undefined;
|
|
2883
2883
|
customBlocks?: {
|
|
2884
2884
|
key: string;
|
|
2885
|
-
|
|
2886
|
-
|
|
2885
|
+
title?: string | null | undefined;
|
|
2886
|
+
category?: string | null | undefined;
|
|
2887
|
+
description?: string | null | undefined;
|
|
2888
|
+
iconURL?: string | null | undefined;
|
|
2889
|
+
mode?: "array" | "block" | null | undefined;
|
|
2890
|
+
properties?: {
|
|
2887
2891
|
type: "string" | "number" | "boolean" | "image" | "color" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
2888
2892
|
key: string;
|
|
2889
2893
|
label: string;
|
|
@@ -2892,11 +2896,7 @@ declare const Exporter: z.ZodObject<{
|
|
|
2892
2896
|
default?: string | number | boolean | null | undefined;
|
|
2893
2897
|
inputType?: "code" | "plain" | undefined;
|
|
2894
2898
|
isMultiline?: boolean | null | undefined;
|
|
2895
|
-
}[];
|
|
2896
|
-
title: string;
|
|
2897
|
-
iconURL: string;
|
|
2898
|
-
mode: "array" | "block";
|
|
2899
|
-
description?: string | null | undefined;
|
|
2899
|
+
}[] | null | undefined;
|
|
2900
2900
|
}[] | null | undefined;
|
|
2901
2901
|
blockVariants?: Record<string, {
|
|
2902
2902
|
name: string;
|
|
@@ -2938,7 +2938,6 @@ declare const Exporter: z.ZodObject<{
|
|
|
2938
2938
|
}[];
|
|
2939
2939
|
customBlocks: {
|
|
2940
2940
|
key: string;
|
|
2941
|
-
category: string;
|
|
2942
2941
|
properties: {
|
|
2943
2942
|
type: "string" | "number" | "boolean" | "image" | "color" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
2944
2943
|
key: string;
|
|
@@ -2949,10 +2948,11 @@ declare const Exporter: z.ZodObject<{
|
|
|
2949
2948
|
inputType?: "code" | "plain" | undefined;
|
|
2950
2949
|
isMultiline?: boolean | null | undefined;
|
|
2951
2950
|
}[];
|
|
2952
|
-
title
|
|
2953
|
-
|
|
2954
|
-
mode: "array" | "block";
|
|
2951
|
+
title?: string | undefined;
|
|
2952
|
+
category?: string | undefined;
|
|
2955
2953
|
description?: string | undefined;
|
|
2954
|
+
iconURL?: string | undefined;
|
|
2955
|
+
mode?: NonNullable<"array" | "block"> | undefined;
|
|
2956
2956
|
}[];
|
|
2957
2957
|
blockVariants: Record<string, {
|
|
2958
2958
|
name: string;
|
|
@@ -3006,8 +3006,12 @@ declare const Exporter: z.ZodObject<{
|
|
|
3006
3006
|
}[] | null | undefined;
|
|
3007
3007
|
customBlocks?: {
|
|
3008
3008
|
key: string;
|
|
3009
|
-
|
|
3010
|
-
|
|
3009
|
+
title?: string | null | undefined;
|
|
3010
|
+
category?: string | null | undefined;
|
|
3011
|
+
description?: string | null | undefined;
|
|
3012
|
+
iconURL?: string | null | undefined;
|
|
3013
|
+
mode?: "array" | "block" | null | undefined;
|
|
3014
|
+
properties?: {
|
|
3011
3015
|
type: "string" | "number" | "boolean" | "image" | "color" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
3012
3016
|
key: string;
|
|
3013
3017
|
label: string;
|
|
@@ -3016,11 +3020,7 @@ declare const Exporter: z.ZodObject<{
|
|
|
3016
3020
|
default?: string | number | boolean | null | undefined;
|
|
3017
3021
|
inputType?: "code" | "plain" | undefined;
|
|
3018
3022
|
isMultiline?: boolean | null | undefined;
|
|
3019
|
-
}[];
|
|
3020
|
-
title: string;
|
|
3021
|
-
iconURL: string;
|
|
3022
|
-
mode: "array" | "block";
|
|
3023
|
-
description?: string | null | undefined;
|
|
3023
|
+
}[] | null | undefined;
|
|
3024
3024
|
}[] | null | undefined;
|
|
3025
3025
|
blockVariants?: Record<string, {
|
|
3026
3026
|
name: string;
|
|
@@ -3093,22 +3093,13 @@ declare const PulsarBaseProperty: z.ZodObject<{
|
|
|
3093
3093
|
}>;
|
|
3094
3094
|
type PulsarBaseProperty = z.infer<typeof PulsarBaseProperty>;
|
|
3095
3095
|
declare const PulsarCustomBlock: z.ZodObject<{
|
|
3096
|
-
title: z.
|
|
3096
|
+
title: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
3097
3097
|
key: z.ZodString;
|
|
3098
|
-
category: z.
|
|
3098
|
+
category: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
3099
3099
|
description: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
3100
|
-
iconURL: z.
|
|
3101
|
-
mode: z.
|
|
3102
|
-
properties: z.
|
|
3103
|
-
label: z.ZodString;
|
|
3104
|
-
key: z.ZodString;
|
|
3105
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3106
|
-
type: z.ZodEnum<["string", "number", "boolean", "image", "enum", "color", "typography", "component", "componentProperties", "tokenProperties", "tokenType"]>;
|
|
3107
|
-
values: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
3108
|
-
default: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodBoolean, z.ZodNumber]>>>;
|
|
3109
|
-
inputType: z.ZodOptional<z.ZodEnum<["code", "plain"]>>;
|
|
3110
|
-
isMultiline: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
3111
|
-
}, "strip", z.ZodTypeAny, {
|
|
3100
|
+
iconURL: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
3101
|
+
mode: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"array" | "block", z.ZodTypeDef, "array" | "block">>>, NonNullable<"array" | "block"> | undefined, "array" | "block" | null | undefined>;
|
|
3102
|
+
properties: z.ZodEffects<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
3112
3103
|
type: "string" | "number" | "boolean" | "image" | "color" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
3113
3104
|
key: string;
|
|
3114
3105
|
label: string;
|
|
@@ -3117,7 +3108,7 @@ declare const PulsarCustomBlock: z.ZodObject<{
|
|
|
3117
3108
|
default?: string | number | boolean | null | undefined;
|
|
3118
3109
|
inputType?: "code" | "plain" | undefined;
|
|
3119
3110
|
isMultiline?: boolean | null | undefined;
|
|
3120
|
-
}, {
|
|
3111
|
+
}[], z.ZodTypeDef, {
|
|
3121
3112
|
type: "string" | "number" | "boolean" | "image" | "color" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
3122
3113
|
key: string;
|
|
3123
3114
|
label: string;
|
|
@@ -3126,10 +3117,45 @@ declare const PulsarCustomBlock: z.ZodObject<{
|
|
|
3126
3117
|
default?: string | number | boolean | null | undefined;
|
|
3127
3118
|
inputType?: "code" | "plain" | undefined;
|
|
3128
3119
|
isMultiline?: boolean | null | undefined;
|
|
3129
|
-
}
|
|
3120
|
+
}[]>>>, {
|
|
3121
|
+
type: "string" | "number" | "boolean" | "image" | "color" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
3122
|
+
key: string;
|
|
3123
|
+
label: string;
|
|
3124
|
+
description?: string | null | undefined;
|
|
3125
|
+
values?: string[] | null | undefined;
|
|
3126
|
+
default?: string | number | boolean | null | undefined;
|
|
3127
|
+
inputType?: "code" | "plain" | undefined;
|
|
3128
|
+
isMultiline?: boolean | null | undefined;
|
|
3129
|
+
}[] | undefined, {
|
|
3130
|
+
type: "string" | "number" | "boolean" | "image" | "color" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
3131
|
+
key: string;
|
|
3132
|
+
label: string;
|
|
3133
|
+
description?: string | null | undefined;
|
|
3134
|
+
values?: string[] | null | undefined;
|
|
3135
|
+
default?: string | number | boolean | null | undefined;
|
|
3136
|
+
inputType?: "code" | "plain" | undefined;
|
|
3137
|
+
isMultiline?: boolean | null | undefined;
|
|
3138
|
+
}[] | null | undefined>, {
|
|
3139
|
+
type: "string" | "number" | "boolean" | "image" | "color" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
3140
|
+
key: string;
|
|
3141
|
+
label: string;
|
|
3142
|
+
description?: string | null | undefined;
|
|
3143
|
+
values?: string[] | null | undefined;
|
|
3144
|
+
default?: string | number | boolean | null | undefined;
|
|
3145
|
+
inputType?: "code" | "plain" | undefined;
|
|
3146
|
+
isMultiline?: boolean | null | undefined;
|
|
3147
|
+
}[], {
|
|
3148
|
+
type: "string" | "number" | "boolean" | "image" | "color" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
3149
|
+
key: string;
|
|
3150
|
+
label: string;
|
|
3151
|
+
description?: string | null | undefined;
|
|
3152
|
+
values?: string[] | null | undefined;
|
|
3153
|
+
default?: string | number | boolean | null | undefined;
|
|
3154
|
+
inputType?: "code" | "plain" | undefined;
|
|
3155
|
+
isMultiline?: boolean | null | undefined;
|
|
3156
|
+
}[] | null | undefined>;
|
|
3130
3157
|
}, "strip", z.ZodTypeAny, {
|
|
3131
3158
|
key: string;
|
|
3132
|
-
category: string;
|
|
3133
3159
|
properties: {
|
|
3134
3160
|
type: "string" | "number" | "boolean" | "image" | "color" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
3135
3161
|
key: string;
|
|
@@ -3140,14 +3166,19 @@ declare const PulsarCustomBlock: z.ZodObject<{
|
|
|
3140
3166
|
inputType?: "code" | "plain" | undefined;
|
|
3141
3167
|
isMultiline?: boolean | null | undefined;
|
|
3142
3168
|
}[];
|
|
3143
|
-
title
|
|
3144
|
-
|
|
3145
|
-
mode: "array" | "block";
|
|
3169
|
+
title?: string | undefined;
|
|
3170
|
+
category?: string | undefined;
|
|
3146
3171
|
description?: string | undefined;
|
|
3172
|
+
iconURL?: string | undefined;
|
|
3173
|
+
mode?: NonNullable<"array" | "block"> | undefined;
|
|
3147
3174
|
}, {
|
|
3148
3175
|
key: string;
|
|
3149
|
-
|
|
3150
|
-
|
|
3176
|
+
title?: string | null | undefined;
|
|
3177
|
+
category?: string | null | undefined;
|
|
3178
|
+
description?: string | null | undefined;
|
|
3179
|
+
iconURL?: string | null | undefined;
|
|
3180
|
+
mode?: "array" | "block" | null | undefined;
|
|
3181
|
+
properties?: {
|
|
3151
3182
|
type: "string" | "number" | "boolean" | "image" | "color" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
3152
3183
|
key: string;
|
|
3153
3184
|
label: string;
|
|
@@ -3156,11 +3187,7 @@ declare const PulsarCustomBlock: z.ZodObject<{
|
|
|
3156
3187
|
default?: string | number | boolean | null | undefined;
|
|
3157
3188
|
inputType?: "code" | "plain" | undefined;
|
|
3158
3189
|
isMultiline?: boolean | null | undefined;
|
|
3159
|
-
}[];
|
|
3160
|
-
title: string;
|
|
3161
|
-
iconURL: string;
|
|
3162
|
-
mode: "array" | "block";
|
|
3163
|
-
description?: string | null | undefined;
|
|
3190
|
+
}[] | null | undefined;
|
|
3164
3191
|
}>;
|
|
3165
3192
|
type PulsarCustomBlock = z.infer<typeof PulsarCustomBlock>;
|
|
3166
3193
|
declare const PulsarContributionConfigurationProperty: z.ZodObject<{
|
|
@@ -6069,8 +6096,8 @@ declare const DocumentationLinkPreview: z.ZodObject<{
|
|
|
6069
6096
|
thumbnail: z.ZodOptional<z.ZodObject<{
|
|
6070
6097
|
type: z.ZodEnum<["Resource", "FigmaNode"]>;
|
|
6071
6098
|
resource: z.ZodOptional<z.ZodObject<{
|
|
6072
|
-
url: z.ZodString;
|
|
6073
6099
|
resourceId: z.ZodString;
|
|
6100
|
+
url: z.ZodString;
|
|
6074
6101
|
}, "strip", z.ZodTypeAny, {
|
|
6075
6102
|
url: string;
|
|
6076
6103
|
resourceId: string;
|
|
@@ -9838,169 +9865,6 @@ declare const PageBlockLinkPreview: z.ZodObject<{
|
|
|
9838
9865
|
title?: string | null | undefined;
|
|
9839
9866
|
valid?: boolean | null | undefined;
|
|
9840
9867
|
}>;
|
|
9841
|
-
declare const PageBlockCustomBlockPropertyImageValue: z.ZodObject<{
|
|
9842
|
-
asset: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
9843
|
-
type: "image" | "figmaFrame";
|
|
9844
|
-
id?: string | undefined;
|
|
9845
|
-
url?: string | undefined;
|
|
9846
|
-
figmaFrame?: {
|
|
9847
|
-
persistentId: string;
|
|
9848
|
-
sourceId: string;
|
|
9849
|
-
sourceFrameId: string;
|
|
9850
|
-
title?: string | undefined;
|
|
9851
|
-
description?: string | undefined;
|
|
9852
|
-
backgroundColor?: {
|
|
9853
|
-
value: string;
|
|
9854
|
-
} | undefined;
|
|
9855
|
-
origin?: {
|
|
9856
|
-
sourceFileName?: string | undefined;
|
|
9857
|
-
title?: string | undefined;
|
|
9858
|
-
previewUrl?: string | undefined;
|
|
9859
|
-
valid?: boolean | undefined;
|
|
9860
|
-
referenceId?: string | undefined;
|
|
9861
|
-
assetId?: string | undefined;
|
|
9862
|
-
assetScale?: number | undefined;
|
|
9863
|
-
width?: number | undefined;
|
|
9864
|
-
height?: number | undefined;
|
|
9865
|
-
} | undefined;
|
|
9866
|
-
} | undefined;
|
|
9867
|
-
}, z.ZodTypeDef, {
|
|
9868
|
-
type: "image" | "figmaFrame";
|
|
9869
|
-
id?: string | null | undefined;
|
|
9870
|
-
url?: string | null | undefined;
|
|
9871
|
-
figmaFrame?: {
|
|
9872
|
-
persistentId: string;
|
|
9873
|
-
sourceId: string;
|
|
9874
|
-
sourceFrameId: string;
|
|
9875
|
-
title?: string | null | undefined;
|
|
9876
|
-
description?: string | null | undefined;
|
|
9877
|
-
backgroundColor?: {
|
|
9878
|
-
value: string;
|
|
9879
|
-
} | null | undefined;
|
|
9880
|
-
origin?: {
|
|
9881
|
-
sourceFileName?: string | null | undefined;
|
|
9882
|
-
title?: string | null | undefined;
|
|
9883
|
-
previewUrl?: string | null | undefined;
|
|
9884
|
-
valid?: boolean | null | undefined;
|
|
9885
|
-
referenceId?: string | null | undefined;
|
|
9886
|
-
assetId?: string | null | undefined;
|
|
9887
|
-
assetScale?: number | null | undefined;
|
|
9888
|
-
width?: number | null | undefined;
|
|
9889
|
-
height?: number | null | undefined;
|
|
9890
|
-
} | null | undefined;
|
|
9891
|
-
} | null | undefined;
|
|
9892
|
-
}>>>, {
|
|
9893
|
-
type: "image" | "figmaFrame";
|
|
9894
|
-
id?: string | undefined;
|
|
9895
|
-
url?: string | undefined;
|
|
9896
|
-
figmaFrame?: {
|
|
9897
|
-
persistentId: string;
|
|
9898
|
-
sourceId: string;
|
|
9899
|
-
sourceFrameId: string;
|
|
9900
|
-
title?: string | undefined;
|
|
9901
|
-
description?: string | undefined;
|
|
9902
|
-
backgroundColor?: {
|
|
9903
|
-
value: string;
|
|
9904
|
-
} | undefined;
|
|
9905
|
-
origin?: {
|
|
9906
|
-
sourceFileName?: string | undefined;
|
|
9907
|
-
title?: string | undefined;
|
|
9908
|
-
previewUrl?: string | undefined;
|
|
9909
|
-
valid?: boolean | undefined;
|
|
9910
|
-
referenceId?: string | undefined;
|
|
9911
|
-
assetId?: string | undefined;
|
|
9912
|
-
assetScale?: number | undefined;
|
|
9913
|
-
width?: number | undefined;
|
|
9914
|
-
height?: number | undefined;
|
|
9915
|
-
} | undefined;
|
|
9916
|
-
} | undefined;
|
|
9917
|
-
} | undefined, {
|
|
9918
|
-
type: "image" | "figmaFrame";
|
|
9919
|
-
id?: string | null | undefined;
|
|
9920
|
-
url?: string | null | undefined;
|
|
9921
|
-
figmaFrame?: {
|
|
9922
|
-
persistentId: string;
|
|
9923
|
-
sourceId: string;
|
|
9924
|
-
sourceFrameId: string;
|
|
9925
|
-
title?: string | null | undefined;
|
|
9926
|
-
description?: string | null | undefined;
|
|
9927
|
-
backgroundColor?: {
|
|
9928
|
-
value: string;
|
|
9929
|
-
} | null | undefined;
|
|
9930
|
-
origin?: {
|
|
9931
|
-
sourceFileName?: string | null | undefined;
|
|
9932
|
-
title?: string | null | undefined;
|
|
9933
|
-
previewUrl?: string | null | undefined;
|
|
9934
|
-
valid?: boolean | null | undefined;
|
|
9935
|
-
referenceId?: string | null | undefined;
|
|
9936
|
-
assetId?: string | null | undefined;
|
|
9937
|
-
assetScale?: number | null | undefined;
|
|
9938
|
-
width?: number | null | undefined;
|
|
9939
|
-
height?: number | null | undefined;
|
|
9940
|
-
} | null | undefined;
|
|
9941
|
-
} | null | undefined;
|
|
9942
|
-
} | null | undefined>;
|
|
9943
|
-
assetId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
9944
|
-
assetUrl: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
9945
|
-
}, "strip", z.ZodTypeAny, {
|
|
9946
|
-
asset?: {
|
|
9947
|
-
type: "image" | "figmaFrame";
|
|
9948
|
-
id?: string | undefined;
|
|
9949
|
-
url?: string | undefined;
|
|
9950
|
-
figmaFrame?: {
|
|
9951
|
-
persistentId: string;
|
|
9952
|
-
sourceId: string;
|
|
9953
|
-
sourceFrameId: string;
|
|
9954
|
-
title?: string | undefined;
|
|
9955
|
-
description?: string | undefined;
|
|
9956
|
-
backgroundColor?: {
|
|
9957
|
-
value: string;
|
|
9958
|
-
} | undefined;
|
|
9959
|
-
origin?: {
|
|
9960
|
-
sourceFileName?: string | undefined;
|
|
9961
|
-
title?: string | undefined;
|
|
9962
|
-
previewUrl?: string | undefined;
|
|
9963
|
-
valid?: boolean | undefined;
|
|
9964
|
-
referenceId?: string | undefined;
|
|
9965
|
-
assetId?: string | undefined;
|
|
9966
|
-
assetScale?: number | undefined;
|
|
9967
|
-
width?: number | undefined;
|
|
9968
|
-
height?: number | undefined;
|
|
9969
|
-
} | undefined;
|
|
9970
|
-
} | undefined;
|
|
9971
|
-
} | undefined;
|
|
9972
|
-
assetId?: string | undefined;
|
|
9973
|
-
assetUrl?: string | undefined;
|
|
9974
|
-
}, {
|
|
9975
|
-
asset?: {
|
|
9976
|
-
type: "image" | "figmaFrame";
|
|
9977
|
-
id?: string | null | undefined;
|
|
9978
|
-
url?: string | null | undefined;
|
|
9979
|
-
figmaFrame?: {
|
|
9980
|
-
persistentId: string;
|
|
9981
|
-
sourceId: string;
|
|
9982
|
-
sourceFrameId: string;
|
|
9983
|
-
title?: string | null | undefined;
|
|
9984
|
-
description?: string | null | undefined;
|
|
9985
|
-
backgroundColor?: {
|
|
9986
|
-
value: string;
|
|
9987
|
-
} | null | undefined;
|
|
9988
|
-
origin?: {
|
|
9989
|
-
sourceFileName?: string | null | undefined;
|
|
9990
|
-
title?: string | null | undefined;
|
|
9991
|
-
previewUrl?: string | null | undefined;
|
|
9992
|
-
valid?: boolean | null | undefined;
|
|
9993
|
-
referenceId?: string | null | undefined;
|
|
9994
|
-
assetId?: string | null | undefined;
|
|
9995
|
-
assetScale?: number | null | undefined;
|
|
9996
|
-
width?: number | null | undefined;
|
|
9997
|
-
height?: number | null | undefined;
|
|
9998
|
-
} | null | undefined;
|
|
9999
|
-
} | null | undefined;
|
|
10000
|
-
} | null | undefined;
|
|
10001
|
-
assetId?: string | null | undefined;
|
|
10002
|
-
assetUrl?: string | null | undefined;
|
|
10003
|
-
}>;
|
|
10004
9868
|
declare const PageBlockFigmaFrameProperties: z.ZodObject<{
|
|
10005
9869
|
color: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
10006
9870
|
value: string;
|
|
@@ -10853,6 +10717,170 @@ declare const PageBlockCustomBlockPropertyValue: z.ZodObject<{
|
|
|
10853
10717
|
value?: any;
|
|
10854
10718
|
}>;
|
|
10855
10719
|
type PageBlockCustomBlockPropertyValue = z.infer<typeof PageBlockCustomBlockPropertyValue>;
|
|
10720
|
+
declare const PageBlockCustomBlockPropertyImageValue: z.ZodObject<{
|
|
10721
|
+
asset: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
10722
|
+
type: "image" | "figmaFrame";
|
|
10723
|
+
id?: string | undefined;
|
|
10724
|
+
url?: string | undefined;
|
|
10725
|
+
figmaFrame?: {
|
|
10726
|
+
persistentId: string;
|
|
10727
|
+
sourceId: string;
|
|
10728
|
+
sourceFrameId: string;
|
|
10729
|
+
title?: string | undefined;
|
|
10730
|
+
description?: string | undefined;
|
|
10731
|
+
backgroundColor?: {
|
|
10732
|
+
value: string;
|
|
10733
|
+
} | undefined;
|
|
10734
|
+
origin?: {
|
|
10735
|
+
sourceFileName?: string | undefined;
|
|
10736
|
+
title?: string | undefined;
|
|
10737
|
+
previewUrl?: string | undefined;
|
|
10738
|
+
valid?: boolean | undefined;
|
|
10739
|
+
referenceId?: string | undefined;
|
|
10740
|
+
assetId?: string | undefined;
|
|
10741
|
+
assetScale?: number | undefined;
|
|
10742
|
+
width?: number | undefined;
|
|
10743
|
+
height?: number | undefined;
|
|
10744
|
+
} | undefined;
|
|
10745
|
+
} | undefined;
|
|
10746
|
+
}, z.ZodTypeDef, {
|
|
10747
|
+
type: "image" | "figmaFrame";
|
|
10748
|
+
id?: string | null | undefined;
|
|
10749
|
+
url?: string | null | undefined;
|
|
10750
|
+
figmaFrame?: {
|
|
10751
|
+
persistentId: string;
|
|
10752
|
+
sourceId: string;
|
|
10753
|
+
sourceFrameId: string;
|
|
10754
|
+
title?: string | null | undefined;
|
|
10755
|
+
description?: string | null | undefined;
|
|
10756
|
+
backgroundColor?: {
|
|
10757
|
+
value: string;
|
|
10758
|
+
} | null | undefined;
|
|
10759
|
+
origin?: {
|
|
10760
|
+
sourceFileName?: string | null | undefined;
|
|
10761
|
+
title?: string | null | undefined;
|
|
10762
|
+
previewUrl?: string | null | undefined;
|
|
10763
|
+
valid?: boolean | null | undefined;
|
|
10764
|
+
referenceId?: string | null | undefined;
|
|
10765
|
+
assetId?: string | null | undefined;
|
|
10766
|
+
assetScale?: number | null | undefined;
|
|
10767
|
+
width?: number | null | undefined;
|
|
10768
|
+
height?: number | null | undefined;
|
|
10769
|
+
} | null | undefined;
|
|
10770
|
+
} | null | undefined;
|
|
10771
|
+
}>>>, {
|
|
10772
|
+
type: "image" | "figmaFrame";
|
|
10773
|
+
id?: string | undefined;
|
|
10774
|
+
url?: string | undefined;
|
|
10775
|
+
figmaFrame?: {
|
|
10776
|
+
persistentId: string;
|
|
10777
|
+
sourceId: string;
|
|
10778
|
+
sourceFrameId: string;
|
|
10779
|
+
title?: string | undefined;
|
|
10780
|
+
description?: string | undefined;
|
|
10781
|
+
backgroundColor?: {
|
|
10782
|
+
value: string;
|
|
10783
|
+
} | undefined;
|
|
10784
|
+
origin?: {
|
|
10785
|
+
sourceFileName?: string | undefined;
|
|
10786
|
+
title?: string | undefined;
|
|
10787
|
+
previewUrl?: string | undefined;
|
|
10788
|
+
valid?: boolean | undefined;
|
|
10789
|
+
referenceId?: string | undefined;
|
|
10790
|
+
assetId?: string | undefined;
|
|
10791
|
+
assetScale?: number | undefined;
|
|
10792
|
+
width?: number | undefined;
|
|
10793
|
+
height?: number | undefined;
|
|
10794
|
+
} | undefined;
|
|
10795
|
+
} | undefined;
|
|
10796
|
+
} | undefined, {
|
|
10797
|
+
type: "image" | "figmaFrame";
|
|
10798
|
+
id?: string | null | undefined;
|
|
10799
|
+
url?: string | null | undefined;
|
|
10800
|
+
figmaFrame?: {
|
|
10801
|
+
persistentId: string;
|
|
10802
|
+
sourceId: string;
|
|
10803
|
+
sourceFrameId: string;
|
|
10804
|
+
title?: string | null | undefined;
|
|
10805
|
+
description?: string | null | undefined;
|
|
10806
|
+
backgroundColor?: {
|
|
10807
|
+
value: string;
|
|
10808
|
+
} | null | undefined;
|
|
10809
|
+
origin?: {
|
|
10810
|
+
sourceFileName?: string | null | undefined;
|
|
10811
|
+
title?: string | null | undefined;
|
|
10812
|
+
previewUrl?: string | null | undefined;
|
|
10813
|
+
valid?: boolean | null | undefined;
|
|
10814
|
+
referenceId?: string | null | undefined;
|
|
10815
|
+
assetId?: string | null | undefined;
|
|
10816
|
+
assetScale?: number | null | undefined;
|
|
10817
|
+
width?: number | null | undefined;
|
|
10818
|
+
height?: number | null | undefined;
|
|
10819
|
+
} | null | undefined;
|
|
10820
|
+
} | null | undefined;
|
|
10821
|
+
} | null | undefined>;
|
|
10822
|
+
assetId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
10823
|
+
assetUrl: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
10824
|
+
}, "strip", z.ZodTypeAny, {
|
|
10825
|
+
asset?: {
|
|
10826
|
+
type: "image" | "figmaFrame";
|
|
10827
|
+
id?: string | undefined;
|
|
10828
|
+
url?: string | undefined;
|
|
10829
|
+
figmaFrame?: {
|
|
10830
|
+
persistentId: string;
|
|
10831
|
+
sourceId: string;
|
|
10832
|
+
sourceFrameId: string;
|
|
10833
|
+
title?: string | undefined;
|
|
10834
|
+
description?: string | undefined;
|
|
10835
|
+
backgroundColor?: {
|
|
10836
|
+
value: string;
|
|
10837
|
+
} | undefined;
|
|
10838
|
+
origin?: {
|
|
10839
|
+
sourceFileName?: string | undefined;
|
|
10840
|
+
title?: string | undefined;
|
|
10841
|
+
previewUrl?: string | undefined;
|
|
10842
|
+
valid?: boolean | undefined;
|
|
10843
|
+
referenceId?: string | undefined;
|
|
10844
|
+
assetId?: string | undefined;
|
|
10845
|
+
assetScale?: number | undefined;
|
|
10846
|
+
width?: number | undefined;
|
|
10847
|
+
height?: number | undefined;
|
|
10848
|
+
} | undefined;
|
|
10849
|
+
} | undefined;
|
|
10850
|
+
} | undefined;
|
|
10851
|
+
assetId?: string | undefined;
|
|
10852
|
+
assetUrl?: string | undefined;
|
|
10853
|
+
}, {
|
|
10854
|
+
asset?: {
|
|
10855
|
+
type: "image" | "figmaFrame";
|
|
10856
|
+
id?: string | null | undefined;
|
|
10857
|
+
url?: string | null | undefined;
|
|
10858
|
+
figmaFrame?: {
|
|
10859
|
+
persistentId: string;
|
|
10860
|
+
sourceId: string;
|
|
10861
|
+
sourceFrameId: string;
|
|
10862
|
+
title?: string | null | undefined;
|
|
10863
|
+
description?: string | null | undefined;
|
|
10864
|
+
backgroundColor?: {
|
|
10865
|
+
value: string;
|
|
10866
|
+
} | null | undefined;
|
|
10867
|
+
origin?: {
|
|
10868
|
+
sourceFileName?: string | null | undefined;
|
|
10869
|
+
title?: string | null | undefined;
|
|
10870
|
+
previewUrl?: string | null | undefined;
|
|
10871
|
+
valid?: boolean | null | undefined;
|
|
10872
|
+
referenceId?: string | null | undefined;
|
|
10873
|
+
assetId?: string | null | undefined;
|
|
10874
|
+
assetScale?: number | null | undefined;
|
|
10875
|
+
width?: number | null | undefined;
|
|
10876
|
+
height?: number | null | undefined;
|
|
10877
|
+
} | null | undefined;
|
|
10878
|
+
} | null | undefined;
|
|
10879
|
+
} | null | undefined;
|
|
10880
|
+
assetId?: string | null | undefined;
|
|
10881
|
+
assetUrl?: string | null | undefined;
|
|
10882
|
+
}>;
|
|
10883
|
+
type PageBlockCustomBlockPropertyImageValue = z.infer<typeof PageBlockCustomBlockPropertyImageValue>;
|
|
10856
10884
|
declare const PageBlockBaseV1: z.ZodObject<{
|
|
10857
10885
|
persistentId: z.ZodString;
|
|
10858
10886
|
type: z.ZodEnum<["Text", "Heading", "Code", "UnorderedList", "OrderedList", "Quote", "Callout", "Divider", "Image", "Embed", "Link", "Shortcuts", "FigmaEmbed", "YoutubeEmbed", "StorybookEmbed", "Token", "TokenGroup", "TokenList", "Component", "ComponentGroup", "Theme", "ComponentSandbox", "Custom", "FigmaFrames", "ComponentAssets", "RenderCode", "Tabs", "TabItem", "Table", "TableRow", "TableCell"]>;
|
|
@@ -11844,11 +11872,33 @@ declare const PageBlockPreviewContainerSize: z.ZodEnum<["Centered", "NaturalHeig
|
|
|
11844
11872
|
type PageBlockPreviewContainerSize = z.infer<typeof PageBlockPreviewContainerSize>;
|
|
11845
11873
|
declare const PageBlockThemeDisplayMode: z.ZodEnum<["Split", "Override"]>;
|
|
11846
11874
|
type PageBlockThemeDisplayMode = z.infer<typeof PageBlockThemeDisplayMode>;
|
|
11875
|
+
declare const PageBlockImageResourceReference: z.ZodObject<{
|
|
11876
|
+
resourceId: z.ZodString;
|
|
11877
|
+
url: z.ZodString;
|
|
11878
|
+
}, "strip", z.ZodTypeAny, {
|
|
11879
|
+
url: string;
|
|
11880
|
+
resourceId: string;
|
|
11881
|
+
}, {
|
|
11882
|
+
url: string;
|
|
11883
|
+
resourceId: string;
|
|
11884
|
+
}>;
|
|
11885
|
+
type PageBlockImageResourceReference = z.infer<typeof PageBlockImageResourceReference>;
|
|
11886
|
+
declare const PageBlockResourceFrameNodeReference: z.ZodObject<{
|
|
11887
|
+
sourceId: z.ZodString;
|
|
11888
|
+
frameReferenceId: z.ZodString;
|
|
11889
|
+
}, "strip", z.ZodTypeAny, {
|
|
11890
|
+
sourceId: string;
|
|
11891
|
+
frameReferenceId: string;
|
|
11892
|
+
}, {
|
|
11893
|
+
sourceId: string;
|
|
11894
|
+
frameReferenceId: string;
|
|
11895
|
+
}>;
|
|
11896
|
+
type PageBlockResourceFrameNodeReference = z.infer<typeof PageBlockResourceFrameNodeReference>;
|
|
11847
11897
|
declare const PageBlockImageReference: z.ZodObject<{
|
|
11848
11898
|
type: z.ZodEnum<["Resource", "FigmaNode"]>;
|
|
11849
11899
|
resource: z.ZodOptional<z.ZodObject<{
|
|
11850
|
-
url: z.ZodString;
|
|
11851
11900
|
resourceId: z.ZodString;
|
|
11901
|
+
url: z.ZodString;
|
|
11852
11902
|
}, "strip", z.ZodTypeAny, {
|
|
11853
11903
|
url: string;
|
|
11854
11904
|
resourceId: string;
|
|
@@ -12547,8 +12597,8 @@ declare const PageBlockItemImageValue: z.ZodObject<{
|
|
|
12547
12597
|
value: z.ZodOptional<z.ZodObject<{
|
|
12548
12598
|
type: z.ZodEnum<["Resource", "FigmaNode"]>;
|
|
12549
12599
|
resource: z.ZodOptional<z.ZodObject<{
|
|
12550
|
-
url: z.ZodString;
|
|
12551
12600
|
resourceId: z.ZodString;
|
|
12601
|
+
url: z.ZodString;
|
|
12552
12602
|
}, "strip", z.ZodTypeAny, {
|
|
12553
12603
|
url: string;
|
|
12554
12604
|
resourceId: string;
|
|
@@ -13112,8 +13162,8 @@ declare const PageBlockItemTableImageNode: z.ZodObject<{
|
|
|
13112
13162
|
value: z.ZodOptional<z.ZodObject<{
|
|
13113
13163
|
type: z.ZodEnum<["Resource", "FigmaNode"]>;
|
|
13114
13164
|
resource: z.ZodOptional<z.ZodObject<{
|
|
13115
|
-
url: z.ZodString;
|
|
13116
13165
|
resourceId: z.ZodString;
|
|
13166
|
+
url: z.ZodString;
|
|
13117
13167
|
}, "strip", z.ZodTypeAny, {
|
|
13118
13168
|
url: string;
|
|
13119
13169
|
resourceId: string;
|
|
@@ -13279,8 +13329,8 @@ declare const PageBlockItemTableNode: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
13279
13329
|
value: z.ZodOptional<z.ZodObject<{
|
|
13280
13330
|
type: z.ZodEnum<["Resource", "FigmaNode"]>;
|
|
13281
13331
|
resource: z.ZodOptional<z.ZodObject<{
|
|
13282
|
-
url: z.ZodString;
|
|
13283
13332
|
resourceId: z.ZodString;
|
|
13333
|
+
url: z.ZodString;
|
|
13284
13334
|
}, "strip", z.ZodTypeAny, {
|
|
13285
13335
|
url: string;
|
|
13286
13336
|
resourceId: string;
|
|
@@ -13448,8 +13498,8 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
13448
13498
|
value: z.ZodOptional<z.ZodObject<{
|
|
13449
13499
|
type: z.ZodEnum<["Resource", "FigmaNode"]>;
|
|
13450
13500
|
resource: z.ZodOptional<z.ZodObject<{
|
|
13451
|
-
url: z.ZodString;
|
|
13452
13501
|
resourceId: z.ZodString;
|
|
13502
|
+
url: z.ZodString;
|
|
13453
13503
|
}, "strip", z.ZodTypeAny, {
|
|
13454
13504
|
url: string;
|
|
13455
13505
|
resourceId: string;
|
|
@@ -13689,8 +13739,8 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
13689
13739
|
value: z.ZodOptional<z.ZodObject<{
|
|
13690
13740
|
type: z.ZodEnum<["Resource", "FigmaNode"]>;
|
|
13691
13741
|
resource: z.ZodOptional<z.ZodObject<{
|
|
13692
|
-
url: z.ZodString;
|
|
13693
13742
|
resourceId: z.ZodString;
|
|
13743
|
+
url: z.ZodString;
|
|
13694
13744
|
}, "strip", z.ZodTypeAny, {
|
|
13695
13745
|
url: string;
|
|
13696
13746
|
resourceId: string;
|
|
@@ -14007,8 +14057,8 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
14007
14057
|
value: z.ZodOptional<z.ZodObject<{
|
|
14008
14058
|
type: z.ZodEnum<["Resource", "FigmaNode"]>;
|
|
14009
14059
|
resource: z.ZodOptional<z.ZodObject<{
|
|
14010
|
-
url: z.ZodString;
|
|
14011
14060
|
resourceId: z.ZodString;
|
|
14061
|
+
url: z.ZodString;
|
|
14012
14062
|
}, "strip", z.ZodTypeAny, {
|
|
14013
14063
|
url: string;
|
|
14014
14064
|
resourceId: string;
|
|
@@ -17476,8 +17526,8 @@ declare const DocumentationItemConfigurationV2: z.ZodObject<{
|
|
|
17476
17526
|
backgroundImageAsset: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
17477
17527
|
type: z.ZodEnum<["Resource", "FigmaNode"]>;
|
|
17478
17528
|
resource: z.ZodOptional<z.ZodObject<{
|
|
17479
|
-
url: z.ZodString;
|
|
17480
17529
|
resourceId: z.ZodString;
|
|
17530
|
+
url: z.ZodString;
|
|
17481
17531
|
}, "strip", z.ZodTypeAny, {
|
|
17482
17532
|
url: string;
|
|
17483
17533
|
resourceId: string;
|
|
@@ -19638,8 +19688,8 @@ declare const DocumentationItemHeaderV2: z.ZodObject<{
|
|
|
19638
19688
|
backgroundImageAsset: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
19639
19689
|
type: z.ZodEnum<["Resource", "FigmaNode"]>;
|
|
19640
19690
|
resource: z.ZodOptional<z.ZodObject<{
|
|
19641
|
-
url: z.ZodString;
|
|
19642
19691
|
resourceId: z.ZodString;
|
|
19692
|
+
url: z.ZodString;
|
|
19643
19693
|
}, "strip", z.ZodTypeAny, {
|
|
19644
19694
|
url: string;
|
|
19645
19695
|
resourceId: string;
|
|
@@ -98148,8 +98198,8 @@ declare const DocumentationPageRoomState: z.ZodObject<{
|
|
|
98148
98198
|
backgroundImageAsset: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
98149
98199
|
type: z.ZodEnum<["Resource", "FigmaNode"]>;
|
|
98150
98200
|
resource: z.ZodOptional<z.ZodObject<{
|
|
98151
|
-
url: z.ZodString;
|
|
98152
98201
|
resourceId: z.ZodString;
|
|
98202
|
+
url: z.ZodString;
|
|
98153
98203
|
}, "strip", z.ZodTypeAny, {
|
|
98154
98204
|
url: string;
|
|
98155
98205
|
resourceId: string;
|
|
@@ -111867,4 +111917,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
111867
111917
|
}>;
|
|
111868
111918
|
type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
|
|
111869
111919
|
|
|
111870
|
-
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, 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, 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 };
|
|
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 };
|