@supernova-studio/model 0.12.0 → 0.14.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 +157 -43
- package/dist/index.d.ts +157 -43
- package/dist/index.js +7 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1142 -1136
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/elements/data/documentation-block-v2.ts +4 -1
- package/src/helpers/db.ts +59 -0
package/dist/index.d.mts
CHANGED
|
@@ -2429,6 +2429,7 @@ declare const ExporterDetails: z.ZodObject<{
|
|
|
2429
2429
|
isMultiline?: boolean | null | undefined;
|
|
2430
2430
|
}[] | null | undefined>>;
|
|
2431
2431
|
customBlocks: z.ZodDefault<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2432
|
+
key: string;
|
|
2432
2433
|
properties: {
|
|
2433
2434
|
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
2434
2435
|
key: string;
|
|
@@ -2440,12 +2441,12 @@ declare const ExporterDetails: z.ZodObject<{
|
|
|
2440
2441
|
isMultiline?: boolean | null | undefined;
|
|
2441
2442
|
}[];
|
|
2442
2443
|
title: string;
|
|
2443
|
-
key: string;
|
|
2444
2444
|
category: string;
|
|
2445
2445
|
iconURL: string;
|
|
2446
2446
|
mode: "array" | "block";
|
|
2447
2447
|
description?: string | undefined;
|
|
2448
2448
|
}[], z.ZodTypeDef, {
|
|
2449
|
+
key: string;
|
|
2449
2450
|
properties: {
|
|
2450
2451
|
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
2451
2452
|
key: string;
|
|
@@ -2457,12 +2458,12 @@ declare const ExporterDetails: z.ZodObject<{
|
|
|
2457
2458
|
isMultiline?: boolean | null | undefined;
|
|
2458
2459
|
}[];
|
|
2459
2460
|
title: string;
|
|
2460
|
-
key: string;
|
|
2461
2461
|
category: string;
|
|
2462
2462
|
iconURL: string;
|
|
2463
2463
|
mode: "array" | "block";
|
|
2464
2464
|
description?: string | null | undefined;
|
|
2465
2465
|
}[]>>>, {
|
|
2466
|
+
key: string;
|
|
2466
2467
|
properties: {
|
|
2467
2468
|
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
2468
2469
|
key: string;
|
|
@@ -2474,12 +2475,12 @@ declare const ExporterDetails: z.ZodObject<{
|
|
|
2474
2475
|
isMultiline?: boolean | null | undefined;
|
|
2475
2476
|
}[];
|
|
2476
2477
|
title: string;
|
|
2477
|
-
key: string;
|
|
2478
2478
|
category: string;
|
|
2479
2479
|
iconURL: string;
|
|
2480
2480
|
mode: "array" | "block";
|
|
2481
2481
|
description?: string | undefined;
|
|
2482
2482
|
}[] | undefined, {
|
|
2483
|
+
key: string;
|
|
2483
2484
|
properties: {
|
|
2484
2485
|
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
2485
2486
|
key: string;
|
|
@@ -2491,7 +2492,6 @@ declare const ExporterDetails: z.ZodObject<{
|
|
|
2491
2492
|
isMultiline?: boolean | null | undefined;
|
|
2492
2493
|
}[];
|
|
2493
2494
|
title: string;
|
|
2494
|
-
key: string;
|
|
2495
2495
|
category: string;
|
|
2496
2496
|
iconURL: string;
|
|
2497
2497
|
mode: "array" | "block";
|
|
@@ -2546,6 +2546,7 @@ declare const ExporterDetails: z.ZodObject<{
|
|
|
2546
2546
|
isMultiline?: boolean | null | undefined;
|
|
2547
2547
|
}[];
|
|
2548
2548
|
customBlocks: {
|
|
2549
|
+
key: string;
|
|
2549
2550
|
properties: {
|
|
2550
2551
|
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
2551
2552
|
key: string;
|
|
@@ -2557,7 +2558,6 @@ declare const ExporterDetails: z.ZodObject<{
|
|
|
2557
2558
|
isMultiline?: boolean | null | undefined;
|
|
2558
2559
|
}[];
|
|
2559
2560
|
title: string;
|
|
2560
|
-
key: string;
|
|
2561
2561
|
category: string;
|
|
2562
2562
|
iconURL: string;
|
|
2563
2563
|
mode: "array" | "block";
|
|
@@ -2607,6 +2607,7 @@ declare const ExporterDetails: z.ZodObject<{
|
|
|
2607
2607
|
isMultiline?: boolean | null | undefined;
|
|
2608
2608
|
}[] | null | undefined;
|
|
2609
2609
|
customBlocks?: {
|
|
2610
|
+
key: string;
|
|
2610
2611
|
properties: {
|
|
2611
2612
|
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
2612
2613
|
key: string;
|
|
@@ -2618,7 +2619,6 @@ declare const ExporterDetails: z.ZodObject<{
|
|
|
2618
2619
|
isMultiline?: boolean | null | undefined;
|
|
2619
2620
|
}[];
|
|
2620
2621
|
title: string;
|
|
2621
|
-
key: string;
|
|
2622
2622
|
category: string;
|
|
2623
2623
|
iconURL: string;
|
|
2624
2624
|
mode: "array" | "block";
|
|
@@ -2697,6 +2697,7 @@ declare const Exporter: z.ZodObject<{
|
|
|
2697
2697
|
isMultiline?: boolean | null | undefined;
|
|
2698
2698
|
}[] | null | undefined>>;
|
|
2699
2699
|
customBlocks: z.ZodDefault<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2700
|
+
key: string;
|
|
2700
2701
|
properties: {
|
|
2701
2702
|
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
2702
2703
|
key: string;
|
|
@@ -2708,12 +2709,12 @@ declare const Exporter: z.ZodObject<{
|
|
|
2708
2709
|
isMultiline?: boolean | null | undefined;
|
|
2709
2710
|
}[];
|
|
2710
2711
|
title: string;
|
|
2711
|
-
key: string;
|
|
2712
2712
|
category: string;
|
|
2713
2713
|
iconURL: string;
|
|
2714
2714
|
mode: "array" | "block";
|
|
2715
2715
|
description?: string | undefined;
|
|
2716
2716
|
}[], z.ZodTypeDef, {
|
|
2717
|
+
key: string;
|
|
2717
2718
|
properties: {
|
|
2718
2719
|
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
2719
2720
|
key: string;
|
|
@@ -2725,12 +2726,12 @@ declare const Exporter: z.ZodObject<{
|
|
|
2725
2726
|
isMultiline?: boolean | null | undefined;
|
|
2726
2727
|
}[];
|
|
2727
2728
|
title: string;
|
|
2728
|
-
key: string;
|
|
2729
2729
|
category: string;
|
|
2730
2730
|
iconURL: string;
|
|
2731
2731
|
mode: "array" | "block";
|
|
2732
2732
|
description?: string | null | undefined;
|
|
2733
2733
|
}[]>>>, {
|
|
2734
|
+
key: string;
|
|
2734
2735
|
properties: {
|
|
2735
2736
|
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
2736
2737
|
key: string;
|
|
@@ -2742,12 +2743,12 @@ declare const Exporter: z.ZodObject<{
|
|
|
2742
2743
|
isMultiline?: boolean | null | undefined;
|
|
2743
2744
|
}[];
|
|
2744
2745
|
title: string;
|
|
2745
|
-
key: string;
|
|
2746
2746
|
category: string;
|
|
2747
2747
|
iconURL: string;
|
|
2748
2748
|
mode: "array" | "block";
|
|
2749
2749
|
description?: string | undefined;
|
|
2750
2750
|
}[] | undefined, {
|
|
2751
|
+
key: string;
|
|
2751
2752
|
properties: {
|
|
2752
2753
|
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
2753
2754
|
key: string;
|
|
@@ -2759,7 +2760,6 @@ declare const Exporter: z.ZodObject<{
|
|
|
2759
2760
|
isMultiline?: boolean | null | undefined;
|
|
2760
2761
|
}[];
|
|
2761
2762
|
title: string;
|
|
2762
|
-
key: string;
|
|
2763
2763
|
category: string;
|
|
2764
2764
|
iconURL: string;
|
|
2765
2765
|
mode: "array" | "block";
|
|
@@ -2814,6 +2814,7 @@ declare const Exporter: z.ZodObject<{
|
|
|
2814
2814
|
isMultiline?: boolean | null | undefined;
|
|
2815
2815
|
}[];
|
|
2816
2816
|
customBlocks: {
|
|
2817
|
+
key: string;
|
|
2817
2818
|
properties: {
|
|
2818
2819
|
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
2819
2820
|
key: string;
|
|
@@ -2825,7 +2826,6 @@ declare const Exporter: z.ZodObject<{
|
|
|
2825
2826
|
isMultiline?: boolean | null | undefined;
|
|
2826
2827
|
}[];
|
|
2827
2828
|
title: string;
|
|
2828
|
-
key: string;
|
|
2829
2829
|
category: string;
|
|
2830
2830
|
iconURL: string;
|
|
2831
2831
|
mode: "array" | "block";
|
|
@@ -2875,6 +2875,7 @@ declare const Exporter: z.ZodObject<{
|
|
|
2875
2875
|
isMultiline?: boolean | null | undefined;
|
|
2876
2876
|
}[] | null | undefined;
|
|
2877
2877
|
customBlocks?: {
|
|
2878
|
+
key: string;
|
|
2878
2879
|
properties: {
|
|
2879
2880
|
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
2880
2881
|
key: string;
|
|
@@ -2886,7 +2887,6 @@ declare const Exporter: z.ZodObject<{
|
|
|
2886
2887
|
isMultiline?: boolean | null | undefined;
|
|
2887
2888
|
}[];
|
|
2888
2889
|
title: string;
|
|
2889
|
-
key: string;
|
|
2890
2890
|
category: string;
|
|
2891
2891
|
iconURL: string;
|
|
2892
2892
|
mode: "array" | "block";
|
|
@@ -2931,6 +2931,7 @@ declare const Exporter: z.ZodObject<{
|
|
|
2931
2931
|
isMultiline?: boolean | null | undefined;
|
|
2932
2932
|
}[];
|
|
2933
2933
|
customBlocks: {
|
|
2934
|
+
key: string;
|
|
2934
2935
|
properties: {
|
|
2935
2936
|
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
2936
2937
|
key: string;
|
|
@@ -2942,7 +2943,6 @@ declare const Exporter: z.ZodObject<{
|
|
|
2942
2943
|
isMultiline?: boolean | null | undefined;
|
|
2943
2944
|
}[];
|
|
2944
2945
|
title: string;
|
|
2945
|
-
key: string;
|
|
2946
2946
|
category: string;
|
|
2947
2947
|
iconURL: string;
|
|
2948
2948
|
mode: "array" | "block";
|
|
@@ -2999,6 +2999,7 @@ declare const Exporter: z.ZodObject<{
|
|
|
2999
2999
|
isMultiline?: boolean | null | undefined;
|
|
3000
3000
|
}[] | null | undefined;
|
|
3001
3001
|
customBlocks?: {
|
|
3002
|
+
key: string;
|
|
3002
3003
|
properties: {
|
|
3003
3004
|
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
3004
3005
|
key: string;
|
|
@@ -3010,7 +3011,6 @@ declare const Exporter: z.ZodObject<{
|
|
|
3010
3011
|
isMultiline?: boolean | null | undefined;
|
|
3011
3012
|
}[];
|
|
3012
3013
|
title: string;
|
|
3013
|
-
key: string;
|
|
3014
3014
|
category: string;
|
|
3015
3015
|
iconURL: string;
|
|
3016
3016
|
mode: "array" | "block";
|
|
@@ -3122,6 +3122,7 @@ declare const PulsarCustomBlock: z.ZodObject<{
|
|
|
3122
3122
|
isMultiline?: boolean | null | undefined;
|
|
3123
3123
|
}>, "many">;
|
|
3124
3124
|
}, "strip", z.ZodTypeAny, {
|
|
3125
|
+
key: string;
|
|
3125
3126
|
properties: {
|
|
3126
3127
|
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
3127
3128
|
key: string;
|
|
@@ -3133,12 +3134,12 @@ declare const PulsarCustomBlock: z.ZodObject<{
|
|
|
3133
3134
|
isMultiline?: boolean | null | undefined;
|
|
3134
3135
|
}[];
|
|
3135
3136
|
title: string;
|
|
3136
|
-
key: string;
|
|
3137
3137
|
category: string;
|
|
3138
3138
|
iconURL: string;
|
|
3139
3139
|
mode: "array" | "block";
|
|
3140
3140
|
description?: string | undefined;
|
|
3141
3141
|
}, {
|
|
3142
|
+
key: string;
|
|
3142
3143
|
properties: {
|
|
3143
3144
|
type: "string" | "number" | "boolean" | "color" | "image" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
3144
3145
|
key: string;
|
|
@@ -3150,7 +3151,6 @@ declare const PulsarCustomBlock: z.ZodObject<{
|
|
|
3150
3151
|
isMultiline?: boolean | null | undefined;
|
|
3151
3152
|
}[];
|
|
3152
3153
|
title: string;
|
|
3153
|
-
key: string;
|
|
3154
3154
|
category: string;
|
|
3155
3155
|
iconURL: string;
|
|
3156
3156
|
mode: "array" | "block";
|
|
@@ -3161,9 +3161,9 @@ declare const PulsarContributionConfigurationProperty: z.ZodObject<{
|
|
|
3161
3161
|
values: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
3162
3162
|
type: z.ZodEnum<["string", "number", "boolean", "image", "enum", "color", "typography", "component", "componentProperties", "tokenProperties", "tokenType"]>;
|
|
3163
3163
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3164
|
+
default: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodBoolean, z.ZodNumber]>>>;
|
|
3164
3165
|
key: z.ZodString;
|
|
3165
3166
|
label: z.ZodString;
|
|
3166
|
-
default: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodBoolean, z.ZodNumber]>>>;
|
|
3167
3167
|
inputType: z.ZodOptional<z.ZodEnum<["code", "plain"]>>;
|
|
3168
3168
|
isMultiline: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
3169
3169
|
category: z.ZodString;
|
|
@@ -8740,16 +8740,40 @@ declare const PageBlockPreviewContainerSize: z.ZodEnum<["Centered", "NaturalHeig
|
|
|
8740
8740
|
type PageBlockPreviewContainerSize = z.infer<typeof PageBlockPreviewContainerSize>;
|
|
8741
8741
|
declare const PageBlockThemeDisplayMode: z.ZodEnum<["Split", "Override"]>;
|
|
8742
8742
|
type PageBlockThemeDisplayMode = z.infer<typeof PageBlockThemeDisplayMode>;
|
|
8743
|
-
declare const PageBlockColorV2: z.
|
|
8743
|
+
declare const PageBlockColorV2: z.ZodObject<{
|
|
8744
|
+
value: z.ZodString;
|
|
8745
|
+
referencedTokenId: z.ZodOptional<z.ZodString>;
|
|
8746
|
+
}, "strip", z.ZodTypeAny, {
|
|
8747
|
+
value: string;
|
|
8748
|
+
referencedTokenId?: string | undefined;
|
|
8749
|
+
}, {
|
|
8750
|
+
value: string;
|
|
8751
|
+
referencedTokenId?: string | undefined;
|
|
8752
|
+
}>;
|
|
8744
8753
|
type PageBlockColorV2 = z.infer<typeof PageBlockColorV2>;
|
|
8745
8754
|
declare const PageBlockAppearanceV2: z.ZodObject<{
|
|
8746
|
-
itemBackgroundColor: z.ZodOptional<z.
|
|
8755
|
+
itemBackgroundColor: z.ZodOptional<z.ZodObject<{
|
|
8756
|
+
value: z.ZodString;
|
|
8757
|
+
referencedTokenId: z.ZodOptional<z.ZodString>;
|
|
8758
|
+
}, "strip", z.ZodTypeAny, {
|
|
8759
|
+
value: string;
|
|
8760
|
+
referencedTokenId?: string | undefined;
|
|
8761
|
+
}, {
|
|
8762
|
+
value: string;
|
|
8763
|
+
referencedTokenId?: string | undefined;
|
|
8764
|
+
}>>;
|
|
8747
8765
|
numberOfColumns: z.ZodOptional<z.ZodNumber>;
|
|
8748
8766
|
}, "strip", z.ZodTypeAny, {
|
|
8749
|
-
itemBackgroundColor?:
|
|
8767
|
+
itemBackgroundColor?: {
|
|
8768
|
+
value: string;
|
|
8769
|
+
referencedTokenId?: string | undefined;
|
|
8770
|
+
} | undefined;
|
|
8750
8771
|
numberOfColumns?: number | undefined;
|
|
8751
8772
|
}, {
|
|
8752
|
-
itemBackgroundColor?:
|
|
8773
|
+
itemBackgroundColor?: {
|
|
8774
|
+
value: string;
|
|
8775
|
+
referencedTokenId?: string | undefined;
|
|
8776
|
+
} | undefined;
|
|
8753
8777
|
numberOfColumns?: number | undefined;
|
|
8754
8778
|
}>;
|
|
8755
8779
|
type PageBlockAppearanceV2 = z.infer<typeof PageBlockAppearanceV2>;
|
|
@@ -8840,13 +8864,28 @@ declare const PageBlockDataV2: z.ZodObject<{
|
|
|
8840
8864
|
variantId: z.ZodOptional<z.ZodString>;
|
|
8841
8865
|
indentLevel: z.ZodNumber;
|
|
8842
8866
|
appearance: z.ZodOptional<z.ZodObject<{
|
|
8843
|
-
itemBackgroundColor: z.ZodOptional<z.
|
|
8867
|
+
itemBackgroundColor: z.ZodOptional<z.ZodObject<{
|
|
8868
|
+
value: z.ZodString;
|
|
8869
|
+
referencedTokenId: z.ZodOptional<z.ZodString>;
|
|
8870
|
+
}, "strip", z.ZodTypeAny, {
|
|
8871
|
+
value: string;
|
|
8872
|
+
referencedTokenId?: string | undefined;
|
|
8873
|
+
}, {
|
|
8874
|
+
value: string;
|
|
8875
|
+
referencedTokenId?: string | undefined;
|
|
8876
|
+
}>>;
|
|
8844
8877
|
numberOfColumns: z.ZodOptional<z.ZodNumber>;
|
|
8845
8878
|
}, "strip", z.ZodTypeAny, {
|
|
8846
|
-
itemBackgroundColor?:
|
|
8879
|
+
itemBackgroundColor?: {
|
|
8880
|
+
value: string;
|
|
8881
|
+
referencedTokenId?: string | undefined;
|
|
8882
|
+
} | undefined;
|
|
8847
8883
|
numberOfColumns?: number | undefined;
|
|
8848
8884
|
}, {
|
|
8849
|
-
itemBackgroundColor?:
|
|
8885
|
+
itemBackgroundColor?: {
|
|
8886
|
+
value: string;
|
|
8887
|
+
referencedTokenId?: string | undefined;
|
|
8888
|
+
} | undefined;
|
|
8850
8889
|
numberOfColumns?: number | undefined;
|
|
8851
8890
|
}>>;
|
|
8852
8891
|
items: z.ZodArray<z.ZodObject<{
|
|
@@ -8920,7 +8959,10 @@ declare const PageBlockDataV2: z.ZodObject<{
|
|
|
8920
8959
|
}[];
|
|
8921
8960
|
variantId?: string | undefined;
|
|
8922
8961
|
appearance?: {
|
|
8923
|
-
itemBackgroundColor?:
|
|
8962
|
+
itemBackgroundColor?: {
|
|
8963
|
+
value: string;
|
|
8964
|
+
referencedTokenId?: string | undefined;
|
|
8965
|
+
} | undefined;
|
|
8924
8966
|
numberOfColumns?: number | undefined;
|
|
8925
8967
|
} | undefined;
|
|
8926
8968
|
}, {
|
|
@@ -8941,7 +8983,10 @@ declare const PageBlockDataV2: z.ZodObject<{
|
|
|
8941
8983
|
}[];
|
|
8942
8984
|
variantId?: string | undefined;
|
|
8943
8985
|
appearance?: {
|
|
8944
|
-
itemBackgroundColor?:
|
|
8986
|
+
itemBackgroundColor?: {
|
|
8987
|
+
value: string;
|
|
8988
|
+
referencedTokenId?: string | undefined;
|
|
8989
|
+
} | undefined;
|
|
8945
8990
|
numberOfColumns?: number | undefined;
|
|
8946
8991
|
} | undefined;
|
|
8947
8992
|
}>;
|
|
@@ -9031,7 +9076,16 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
|
|
|
9031
9076
|
selectedPropertyIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
9032
9077
|
showSearch: z.ZodOptional<z.ZodBoolean>;
|
|
9033
9078
|
previewContainerSize: z.ZodOptional<z.ZodEnum<["Centered", "NaturalHeight"]>>;
|
|
9034
|
-
backgroundColor: z.ZodOptional<z.
|
|
9079
|
+
backgroundColor: z.ZodOptional<z.ZodObject<{
|
|
9080
|
+
value: z.ZodString;
|
|
9081
|
+
referencedTokenId: z.ZodOptional<z.ZodString>;
|
|
9082
|
+
}, "strip", z.ZodTypeAny, {
|
|
9083
|
+
value: string;
|
|
9084
|
+
referencedTokenId?: string | undefined;
|
|
9085
|
+
}, {
|
|
9086
|
+
value: string;
|
|
9087
|
+
referencedTokenId?: string | undefined;
|
|
9088
|
+
}>>;
|
|
9035
9089
|
value: z.ZodArray<z.ZodObject<{
|
|
9036
9090
|
entityId: z.ZodString;
|
|
9037
9091
|
entityType: z.ZodEnum<["Asset", "AssetGroup"]>;
|
|
@@ -9072,7 +9126,10 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
|
|
|
9072
9126
|
selectedPropertyIds?: string[] | undefined;
|
|
9073
9127
|
showSearch?: boolean | undefined;
|
|
9074
9128
|
previewContainerSize?: "Centered" | "NaturalHeight" | undefined;
|
|
9075
|
-
backgroundColor?:
|
|
9129
|
+
backgroundColor?: {
|
|
9130
|
+
value: string;
|
|
9131
|
+
referencedTokenId?: string | undefined;
|
|
9132
|
+
} | undefined;
|
|
9076
9133
|
}, {
|
|
9077
9134
|
value: {
|
|
9078
9135
|
entityId: string;
|
|
@@ -9085,7 +9142,10 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
|
|
|
9085
9142
|
selectedPropertyIds?: string[] | undefined;
|
|
9086
9143
|
showSearch?: boolean | undefined;
|
|
9087
9144
|
previewContainerSize?: "Centered" | "NaturalHeight" | undefined;
|
|
9088
|
-
backgroundColor?:
|
|
9145
|
+
backgroundColor?: {
|
|
9146
|
+
value: string;
|
|
9147
|
+
referencedTokenId?: string | undefined;
|
|
9148
|
+
} | undefined;
|
|
9089
9149
|
}>;
|
|
9090
9150
|
type PageBlockItemAssetValue = z.infer<typeof PageBlockItemAssetValue>;
|
|
9091
9151
|
declare const PageBlockItemAssetPropertyValue: z.ZodObject<{
|
|
@@ -25057,13 +25117,28 @@ declare const PageBlockV2: z.ZodObject<{
|
|
|
25057
25117
|
variantId: z.ZodOptional<z.ZodString>;
|
|
25058
25118
|
indentLevel: z.ZodNumber;
|
|
25059
25119
|
appearance: z.ZodOptional<z.ZodObject<{
|
|
25060
|
-
itemBackgroundColor: z.ZodOptional<z.
|
|
25120
|
+
itemBackgroundColor: z.ZodOptional<z.ZodObject<{
|
|
25121
|
+
value: z.ZodString;
|
|
25122
|
+
referencedTokenId: z.ZodOptional<z.ZodString>;
|
|
25123
|
+
}, "strip", z.ZodTypeAny, {
|
|
25124
|
+
value: string;
|
|
25125
|
+
referencedTokenId?: string | undefined;
|
|
25126
|
+
}, {
|
|
25127
|
+
value: string;
|
|
25128
|
+
referencedTokenId?: string | undefined;
|
|
25129
|
+
}>>;
|
|
25061
25130
|
numberOfColumns: z.ZodOptional<z.ZodNumber>;
|
|
25062
25131
|
}, "strip", z.ZodTypeAny, {
|
|
25063
|
-
itemBackgroundColor?:
|
|
25132
|
+
itemBackgroundColor?: {
|
|
25133
|
+
value: string;
|
|
25134
|
+
referencedTokenId?: string | undefined;
|
|
25135
|
+
} | undefined;
|
|
25064
25136
|
numberOfColumns?: number | undefined;
|
|
25065
25137
|
}, {
|
|
25066
|
-
itemBackgroundColor?:
|
|
25138
|
+
itemBackgroundColor?: {
|
|
25139
|
+
value: string;
|
|
25140
|
+
referencedTokenId?: string | undefined;
|
|
25141
|
+
} | undefined;
|
|
25067
25142
|
numberOfColumns?: number | undefined;
|
|
25068
25143
|
}>>;
|
|
25069
25144
|
items: z.ZodArray<z.ZodObject<{
|
|
@@ -25137,7 +25212,10 @@ declare const PageBlockV2: z.ZodObject<{
|
|
|
25137
25212
|
}[];
|
|
25138
25213
|
variantId?: string | undefined;
|
|
25139
25214
|
appearance?: {
|
|
25140
|
-
itemBackgroundColor?:
|
|
25215
|
+
itemBackgroundColor?: {
|
|
25216
|
+
value: string;
|
|
25217
|
+
referencedTokenId?: string | undefined;
|
|
25218
|
+
} | undefined;
|
|
25141
25219
|
numberOfColumns?: number | undefined;
|
|
25142
25220
|
} | undefined;
|
|
25143
25221
|
}, {
|
|
@@ -25158,7 +25236,10 @@ declare const PageBlockV2: z.ZodObject<{
|
|
|
25158
25236
|
}[];
|
|
25159
25237
|
variantId?: string | undefined;
|
|
25160
25238
|
appearance?: {
|
|
25161
|
-
itemBackgroundColor?:
|
|
25239
|
+
itemBackgroundColor?: {
|
|
25240
|
+
value: string;
|
|
25241
|
+
referencedTokenId?: string | undefined;
|
|
25242
|
+
} | undefined;
|
|
25162
25243
|
numberOfColumns?: number | undefined;
|
|
25163
25244
|
} | undefined;
|
|
25164
25245
|
}>;
|
|
@@ -25186,7 +25267,10 @@ declare const PageBlockV2: z.ZodObject<{
|
|
|
25186
25267
|
}[];
|
|
25187
25268
|
variantId?: string | undefined;
|
|
25188
25269
|
appearance?: {
|
|
25189
|
-
itemBackgroundColor?:
|
|
25270
|
+
itemBackgroundColor?: {
|
|
25271
|
+
value: string;
|
|
25272
|
+
referencedTokenId?: string | undefined;
|
|
25273
|
+
} | undefined;
|
|
25190
25274
|
numberOfColumns?: number | undefined;
|
|
25191
25275
|
} | undefined;
|
|
25192
25276
|
};
|
|
@@ -25220,7 +25304,10 @@ declare const PageBlockV2: z.ZodObject<{
|
|
|
25220
25304
|
}[];
|
|
25221
25305
|
variantId?: string | undefined;
|
|
25222
25306
|
appearance?: {
|
|
25223
|
-
itemBackgroundColor?:
|
|
25307
|
+
itemBackgroundColor?: {
|
|
25308
|
+
value: string;
|
|
25309
|
+
referencedTokenId?: string | undefined;
|
|
25310
|
+
} | undefined;
|
|
25224
25311
|
numberOfColumns?: number | undefined;
|
|
25225
25312
|
} | undefined;
|
|
25226
25313
|
};
|
|
@@ -25239,13 +25326,28 @@ declare const PageBlockEditorModelV2: z.ZodObject<{
|
|
|
25239
25326
|
variantId: z.ZodOptional<z.ZodString>;
|
|
25240
25327
|
indentLevel: z.ZodNumber;
|
|
25241
25328
|
appearance: z.ZodOptional<z.ZodObject<{
|
|
25242
|
-
itemBackgroundColor: z.ZodOptional<z.
|
|
25329
|
+
itemBackgroundColor: z.ZodOptional<z.ZodObject<{
|
|
25330
|
+
value: z.ZodString;
|
|
25331
|
+
referencedTokenId: z.ZodOptional<z.ZodString>;
|
|
25332
|
+
}, "strip", z.ZodTypeAny, {
|
|
25333
|
+
value: string;
|
|
25334
|
+
referencedTokenId?: string | undefined;
|
|
25335
|
+
}, {
|
|
25336
|
+
value: string;
|
|
25337
|
+
referencedTokenId?: string | undefined;
|
|
25338
|
+
}>>;
|
|
25243
25339
|
numberOfColumns: z.ZodOptional<z.ZodNumber>;
|
|
25244
25340
|
}, "strip", z.ZodTypeAny, {
|
|
25245
|
-
itemBackgroundColor?:
|
|
25341
|
+
itemBackgroundColor?: {
|
|
25342
|
+
value: string;
|
|
25343
|
+
referencedTokenId?: string | undefined;
|
|
25344
|
+
} | undefined;
|
|
25246
25345
|
numberOfColumns?: number | undefined;
|
|
25247
25346
|
}, {
|
|
25248
|
-
itemBackgroundColor?:
|
|
25347
|
+
itemBackgroundColor?: {
|
|
25348
|
+
value: string;
|
|
25349
|
+
referencedTokenId?: string | undefined;
|
|
25350
|
+
} | undefined;
|
|
25249
25351
|
numberOfColumns?: number | undefined;
|
|
25250
25352
|
}>>;
|
|
25251
25353
|
items: z.ZodArray<z.ZodObject<{
|
|
@@ -25319,7 +25421,10 @@ declare const PageBlockEditorModelV2: z.ZodObject<{
|
|
|
25319
25421
|
}[];
|
|
25320
25422
|
variantId?: string | undefined;
|
|
25321
25423
|
appearance?: {
|
|
25322
|
-
itemBackgroundColor?:
|
|
25424
|
+
itemBackgroundColor?: {
|
|
25425
|
+
value: string;
|
|
25426
|
+
referencedTokenId?: string | undefined;
|
|
25427
|
+
} | undefined;
|
|
25323
25428
|
numberOfColumns?: number | undefined;
|
|
25324
25429
|
} | undefined;
|
|
25325
25430
|
}, {
|
|
@@ -25340,7 +25445,10 @@ declare const PageBlockEditorModelV2: z.ZodObject<{
|
|
|
25340
25445
|
}[];
|
|
25341
25446
|
variantId?: string | undefined;
|
|
25342
25447
|
appearance?: {
|
|
25343
|
-
itemBackgroundColor?:
|
|
25448
|
+
itemBackgroundColor?: {
|
|
25449
|
+
value: string;
|
|
25450
|
+
referencedTokenId?: string | undefined;
|
|
25451
|
+
} | undefined;
|
|
25344
25452
|
numberOfColumns?: number | undefined;
|
|
25345
25453
|
} | undefined;
|
|
25346
25454
|
}>;
|
|
@@ -25364,7 +25472,10 @@ declare const PageBlockEditorModelV2: z.ZodObject<{
|
|
|
25364
25472
|
}[];
|
|
25365
25473
|
variantId?: string | undefined;
|
|
25366
25474
|
appearance?: {
|
|
25367
|
-
itemBackgroundColor?:
|
|
25475
|
+
itemBackgroundColor?: {
|
|
25476
|
+
value: string;
|
|
25477
|
+
referencedTokenId?: string | undefined;
|
|
25478
|
+
} | undefined;
|
|
25368
25479
|
numberOfColumns?: number | undefined;
|
|
25369
25480
|
} | undefined;
|
|
25370
25481
|
};
|
|
@@ -25388,7 +25499,10 @@ declare const PageBlockEditorModelV2: z.ZodObject<{
|
|
|
25388
25499
|
}[];
|
|
25389
25500
|
variantId?: string | undefined;
|
|
25390
25501
|
appearance?: {
|
|
25391
|
-
itemBackgroundColor?:
|
|
25502
|
+
itemBackgroundColor?: {
|
|
25503
|
+
value: string;
|
|
25504
|
+
referencedTokenId?: string | undefined;
|
|
25505
|
+
} | undefined;
|
|
25392
25506
|
numberOfColumns?: number | undefined;
|
|
25393
25507
|
} | undefined;
|
|
25394
25508
|
};
|