@supernova-studio/model 0.11.0 → 0.12.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 +25 -505
- package/dist/index.d.ts +25 -505
- package/dist/index.js +7 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/elements/data/documentation-block-v2.ts +5 -3
- package/src/dsm/elements/data/page-asset.ts +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -8740,102 +8740,16 @@ 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.ZodString;
|
|
8744
|
+
type PageBlockColorV2 = z.infer<typeof PageBlockColorV2>;
|
|
8743
8745
|
declare const PageBlockAppearanceV2: z.ZodObject<{
|
|
8744
|
-
itemBackgroundColor: z.ZodOptional<z.
|
|
8745
|
-
opacity: z.ZodObject<{
|
|
8746
|
-
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
8747
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<{
|
|
8748
|
-
unit: "Pixels" | "Raw";
|
|
8749
|
-
measure: number;
|
|
8750
|
-
}, z.ZodTypeDef, {
|
|
8751
|
-
unit: "Pixels" | "Raw";
|
|
8752
|
-
measure: number;
|
|
8753
|
-
}>>>, {
|
|
8754
|
-
unit: "Pixels" | "Raw";
|
|
8755
|
-
measure: number;
|
|
8756
|
-
} | undefined, {
|
|
8757
|
-
unit: "Pixels" | "Raw";
|
|
8758
|
-
measure: number;
|
|
8759
|
-
} | null | undefined>;
|
|
8760
|
-
}, "strip", z.ZodTypeAny, {
|
|
8761
|
-
aliasTo?: string | undefined;
|
|
8762
|
-
value?: {
|
|
8763
|
-
unit: "Pixels" | "Raw";
|
|
8764
|
-
measure: number;
|
|
8765
|
-
} | undefined;
|
|
8766
|
-
}, {
|
|
8767
|
-
aliasTo?: string | null | undefined;
|
|
8768
|
-
value?: {
|
|
8769
|
-
unit: "Pixels" | "Raw";
|
|
8770
|
-
measure: number;
|
|
8771
|
-
} | null | undefined;
|
|
8772
|
-
}>;
|
|
8773
|
-
color: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
8774
|
-
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
8775
|
-
}, "strip", z.ZodTypeAny, {
|
|
8776
|
-
aliasTo?: string | undefined;
|
|
8777
|
-
}, {
|
|
8778
|
-
aliasTo?: string | null | undefined;
|
|
8779
|
-
}>]>;
|
|
8780
|
-
}, "strip", z.ZodTypeAny, {
|
|
8781
|
-
opacity: {
|
|
8782
|
-
aliasTo?: string | undefined;
|
|
8783
|
-
value?: {
|
|
8784
|
-
unit: "Pixels" | "Raw";
|
|
8785
|
-
measure: number;
|
|
8786
|
-
} | undefined;
|
|
8787
|
-
};
|
|
8788
|
-
color: (string | {
|
|
8789
|
-
aliasTo?: string | undefined;
|
|
8790
|
-
}) & (string | {
|
|
8791
|
-
aliasTo?: string | undefined;
|
|
8792
|
-
} | undefined);
|
|
8793
|
-
}, {
|
|
8794
|
-
opacity: {
|
|
8795
|
-
aliasTo?: string | null | undefined;
|
|
8796
|
-
value?: {
|
|
8797
|
-
unit: "Pixels" | "Raw";
|
|
8798
|
-
measure: number;
|
|
8799
|
-
} | null | undefined;
|
|
8800
|
-
};
|
|
8801
|
-
color: (string | {
|
|
8802
|
-
aliasTo?: string | null | undefined;
|
|
8803
|
-
}) & (string | {
|
|
8804
|
-
aliasTo?: string | null | undefined;
|
|
8805
|
-
} | undefined);
|
|
8806
|
-
}>>;
|
|
8746
|
+
itemBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
8807
8747
|
numberOfColumns: z.ZodOptional<z.ZodNumber>;
|
|
8808
8748
|
}, "strip", z.ZodTypeAny, {
|
|
8809
|
-
itemBackgroundColor?:
|
|
8810
|
-
opacity: {
|
|
8811
|
-
aliasTo?: string | undefined;
|
|
8812
|
-
value?: {
|
|
8813
|
-
unit: "Pixels" | "Raw";
|
|
8814
|
-
measure: number;
|
|
8815
|
-
} | undefined;
|
|
8816
|
-
};
|
|
8817
|
-
color: (string | {
|
|
8818
|
-
aliasTo?: string | undefined;
|
|
8819
|
-
}) & (string | {
|
|
8820
|
-
aliasTo?: string | undefined;
|
|
8821
|
-
} | undefined);
|
|
8822
|
-
} | undefined;
|
|
8749
|
+
itemBackgroundColor?: string | undefined;
|
|
8823
8750
|
numberOfColumns?: number | undefined;
|
|
8824
8751
|
}, {
|
|
8825
|
-
itemBackgroundColor?:
|
|
8826
|
-
opacity: {
|
|
8827
|
-
aliasTo?: string | null | undefined;
|
|
8828
|
-
value?: {
|
|
8829
|
-
unit: "Pixels" | "Raw";
|
|
8830
|
-
measure: number;
|
|
8831
|
-
} | null | undefined;
|
|
8832
|
-
};
|
|
8833
|
-
color: (string | {
|
|
8834
|
-
aliasTo?: string | null | undefined;
|
|
8835
|
-
}) & (string | {
|
|
8836
|
-
aliasTo?: string | null | undefined;
|
|
8837
|
-
} | undefined);
|
|
8838
|
-
} | undefined;
|
|
8752
|
+
itemBackgroundColor?: string | undefined;
|
|
8839
8753
|
numberOfColumns?: number | undefined;
|
|
8840
8754
|
}>;
|
|
8841
8755
|
type PageBlockAppearanceV2 = z.infer<typeof PageBlockAppearanceV2>;
|
|
@@ -8926,101 +8840,13 @@ declare const PageBlockDataV2: z.ZodObject<{
|
|
|
8926
8840
|
variantId: z.ZodOptional<z.ZodString>;
|
|
8927
8841
|
indentLevel: z.ZodNumber;
|
|
8928
8842
|
appearance: z.ZodOptional<z.ZodObject<{
|
|
8929
|
-
itemBackgroundColor: z.ZodOptional<z.
|
|
8930
|
-
opacity: z.ZodObject<{
|
|
8931
|
-
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
8932
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<{
|
|
8933
|
-
unit: "Pixels" | "Raw";
|
|
8934
|
-
measure: number;
|
|
8935
|
-
}, z.ZodTypeDef, {
|
|
8936
|
-
unit: "Pixels" | "Raw";
|
|
8937
|
-
measure: number;
|
|
8938
|
-
}>>>, {
|
|
8939
|
-
unit: "Pixels" | "Raw";
|
|
8940
|
-
measure: number;
|
|
8941
|
-
} | undefined, {
|
|
8942
|
-
unit: "Pixels" | "Raw";
|
|
8943
|
-
measure: number;
|
|
8944
|
-
} | null | undefined>;
|
|
8945
|
-
}, "strip", z.ZodTypeAny, {
|
|
8946
|
-
aliasTo?: string | undefined;
|
|
8947
|
-
value?: {
|
|
8948
|
-
unit: "Pixels" | "Raw";
|
|
8949
|
-
measure: number;
|
|
8950
|
-
} | undefined;
|
|
8951
|
-
}, {
|
|
8952
|
-
aliasTo?: string | null | undefined;
|
|
8953
|
-
value?: {
|
|
8954
|
-
unit: "Pixels" | "Raw";
|
|
8955
|
-
measure: number;
|
|
8956
|
-
} | null | undefined;
|
|
8957
|
-
}>;
|
|
8958
|
-
color: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
8959
|
-
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
8960
|
-
}, "strip", z.ZodTypeAny, {
|
|
8961
|
-
aliasTo?: string | undefined;
|
|
8962
|
-
}, {
|
|
8963
|
-
aliasTo?: string | null | undefined;
|
|
8964
|
-
}>]>;
|
|
8965
|
-
}, "strip", z.ZodTypeAny, {
|
|
8966
|
-
opacity: {
|
|
8967
|
-
aliasTo?: string | undefined;
|
|
8968
|
-
value?: {
|
|
8969
|
-
unit: "Pixels" | "Raw";
|
|
8970
|
-
measure: number;
|
|
8971
|
-
} | undefined;
|
|
8972
|
-
};
|
|
8973
|
-
color: (string | {
|
|
8974
|
-
aliasTo?: string | undefined;
|
|
8975
|
-
}) & (string | {
|
|
8976
|
-
aliasTo?: string | undefined;
|
|
8977
|
-
} | undefined);
|
|
8978
|
-
}, {
|
|
8979
|
-
opacity: {
|
|
8980
|
-
aliasTo?: string | null | undefined;
|
|
8981
|
-
value?: {
|
|
8982
|
-
unit: "Pixels" | "Raw";
|
|
8983
|
-
measure: number;
|
|
8984
|
-
} | null | undefined;
|
|
8985
|
-
};
|
|
8986
|
-
color: (string | {
|
|
8987
|
-
aliasTo?: string | null | undefined;
|
|
8988
|
-
}) & (string | {
|
|
8989
|
-
aliasTo?: string | null | undefined;
|
|
8990
|
-
} | undefined);
|
|
8991
|
-
}>>;
|
|
8843
|
+
itemBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
8992
8844
|
numberOfColumns: z.ZodOptional<z.ZodNumber>;
|
|
8993
8845
|
}, "strip", z.ZodTypeAny, {
|
|
8994
|
-
itemBackgroundColor?:
|
|
8995
|
-
opacity: {
|
|
8996
|
-
aliasTo?: string | undefined;
|
|
8997
|
-
value?: {
|
|
8998
|
-
unit: "Pixels" | "Raw";
|
|
8999
|
-
measure: number;
|
|
9000
|
-
} | undefined;
|
|
9001
|
-
};
|
|
9002
|
-
color: (string | {
|
|
9003
|
-
aliasTo?: string | undefined;
|
|
9004
|
-
}) & (string | {
|
|
9005
|
-
aliasTo?: string | undefined;
|
|
9006
|
-
} | undefined);
|
|
9007
|
-
} | undefined;
|
|
8846
|
+
itemBackgroundColor?: string | undefined;
|
|
9008
8847
|
numberOfColumns?: number | undefined;
|
|
9009
8848
|
}, {
|
|
9010
|
-
itemBackgroundColor?:
|
|
9011
|
-
opacity: {
|
|
9012
|
-
aliasTo?: string | null | undefined;
|
|
9013
|
-
value?: {
|
|
9014
|
-
unit: "Pixels" | "Raw";
|
|
9015
|
-
measure: number;
|
|
9016
|
-
} | null | undefined;
|
|
9017
|
-
};
|
|
9018
|
-
color: (string | {
|
|
9019
|
-
aliasTo?: string | null | undefined;
|
|
9020
|
-
}) & (string | {
|
|
9021
|
-
aliasTo?: string | null | undefined;
|
|
9022
|
-
} | undefined);
|
|
9023
|
-
} | undefined;
|
|
8849
|
+
itemBackgroundColor?: string | undefined;
|
|
9024
8850
|
numberOfColumns?: number | undefined;
|
|
9025
8851
|
}>>;
|
|
9026
8852
|
items: z.ZodArray<z.ZodObject<{
|
|
@@ -9094,20 +8920,7 @@ declare const PageBlockDataV2: z.ZodObject<{
|
|
|
9094
8920
|
}[];
|
|
9095
8921
|
variantId?: string | undefined;
|
|
9096
8922
|
appearance?: {
|
|
9097
|
-
itemBackgroundColor?:
|
|
9098
|
-
opacity: {
|
|
9099
|
-
aliasTo?: string | undefined;
|
|
9100
|
-
value?: {
|
|
9101
|
-
unit: "Pixels" | "Raw";
|
|
9102
|
-
measure: number;
|
|
9103
|
-
} | undefined;
|
|
9104
|
-
};
|
|
9105
|
-
color: (string | {
|
|
9106
|
-
aliasTo?: string | undefined;
|
|
9107
|
-
}) & (string | {
|
|
9108
|
-
aliasTo?: string | undefined;
|
|
9109
|
-
} | undefined);
|
|
9110
|
-
} | undefined;
|
|
8923
|
+
itemBackgroundColor?: string | undefined;
|
|
9111
8924
|
numberOfColumns?: number | undefined;
|
|
9112
8925
|
} | undefined;
|
|
9113
8926
|
}, {
|
|
@@ -9128,20 +8941,7 @@ declare const PageBlockDataV2: z.ZodObject<{
|
|
|
9128
8941
|
}[];
|
|
9129
8942
|
variantId?: string | undefined;
|
|
9130
8943
|
appearance?: {
|
|
9131
|
-
itemBackgroundColor?:
|
|
9132
|
-
opacity: {
|
|
9133
|
-
aliasTo?: string | null | undefined;
|
|
9134
|
-
value?: {
|
|
9135
|
-
unit: "Pixels" | "Raw";
|
|
9136
|
-
measure: number;
|
|
9137
|
-
} | null | undefined;
|
|
9138
|
-
};
|
|
9139
|
-
color: (string | {
|
|
9140
|
-
aliasTo?: string | null | undefined;
|
|
9141
|
-
}) & (string | {
|
|
9142
|
-
aliasTo?: string | null | undefined;
|
|
9143
|
-
} | undefined);
|
|
9144
|
-
} | undefined;
|
|
8944
|
+
itemBackgroundColor?: string | undefined;
|
|
9145
8945
|
numberOfColumns?: number | undefined;
|
|
9146
8946
|
} | undefined;
|
|
9147
8947
|
}>;
|
|
@@ -25257,101 +25057,13 @@ declare const PageBlockV2: z.ZodObject<{
|
|
|
25257
25057
|
variantId: z.ZodOptional<z.ZodString>;
|
|
25258
25058
|
indentLevel: z.ZodNumber;
|
|
25259
25059
|
appearance: z.ZodOptional<z.ZodObject<{
|
|
25260
|
-
itemBackgroundColor: z.ZodOptional<z.
|
|
25261
|
-
opacity: z.ZodObject<{
|
|
25262
|
-
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
25263
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<{
|
|
25264
|
-
unit: "Pixels" | "Raw";
|
|
25265
|
-
measure: number;
|
|
25266
|
-
}, z.ZodTypeDef, {
|
|
25267
|
-
unit: "Pixels" | "Raw";
|
|
25268
|
-
measure: number;
|
|
25269
|
-
}>>>, {
|
|
25270
|
-
unit: "Pixels" | "Raw";
|
|
25271
|
-
measure: number;
|
|
25272
|
-
} | undefined, {
|
|
25273
|
-
unit: "Pixels" | "Raw";
|
|
25274
|
-
measure: number;
|
|
25275
|
-
} | null | undefined>;
|
|
25276
|
-
}, "strip", z.ZodTypeAny, {
|
|
25277
|
-
aliasTo?: string | undefined;
|
|
25278
|
-
value?: {
|
|
25279
|
-
unit: "Pixels" | "Raw";
|
|
25280
|
-
measure: number;
|
|
25281
|
-
} | undefined;
|
|
25282
|
-
}, {
|
|
25283
|
-
aliasTo?: string | null | undefined;
|
|
25284
|
-
value?: {
|
|
25285
|
-
unit: "Pixels" | "Raw";
|
|
25286
|
-
measure: number;
|
|
25287
|
-
} | null | undefined;
|
|
25288
|
-
}>;
|
|
25289
|
-
color: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
25290
|
-
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
25291
|
-
}, "strip", z.ZodTypeAny, {
|
|
25292
|
-
aliasTo?: string | undefined;
|
|
25293
|
-
}, {
|
|
25294
|
-
aliasTo?: string | null | undefined;
|
|
25295
|
-
}>]>;
|
|
25296
|
-
}, "strip", z.ZodTypeAny, {
|
|
25297
|
-
opacity: {
|
|
25298
|
-
aliasTo?: string | undefined;
|
|
25299
|
-
value?: {
|
|
25300
|
-
unit: "Pixels" | "Raw";
|
|
25301
|
-
measure: number;
|
|
25302
|
-
} | undefined;
|
|
25303
|
-
};
|
|
25304
|
-
color: (string | {
|
|
25305
|
-
aliasTo?: string | undefined;
|
|
25306
|
-
}) & (string | {
|
|
25307
|
-
aliasTo?: string | undefined;
|
|
25308
|
-
} | undefined);
|
|
25309
|
-
}, {
|
|
25310
|
-
opacity: {
|
|
25311
|
-
aliasTo?: string | null | undefined;
|
|
25312
|
-
value?: {
|
|
25313
|
-
unit: "Pixels" | "Raw";
|
|
25314
|
-
measure: number;
|
|
25315
|
-
} | null | undefined;
|
|
25316
|
-
};
|
|
25317
|
-
color: (string | {
|
|
25318
|
-
aliasTo?: string | null | undefined;
|
|
25319
|
-
}) & (string | {
|
|
25320
|
-
aliasTo?: string | null | undefined;
|
|
25321
|
-
} | undefined);
|
|
25322
|
-
}>>;
|
|
25060
|
+
itemBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
25323
25061
|
numberOfColumns: z.ZodOptional<z.ZodNumber>;
|
|
25324
25062
|
}, "strip", z.ZodTypeAny, {
|
|
25325
|
-
itemBackgroundColor?:
|
|
25326
|
-
opacity: {
|
|
25327
|
-
aliasTo?: string | undefined;
|
|
25328
|
-
value?: {
|
|
25329
|
-
unit: "Pixels" | "Raw";
|
|
25330
|
-
measure: number;
|
|
25331
|
-
} | undefined;
|
|
25332
|
-
};
|
|
25333
|
-
color: (string | {
|
|
25334
|
-
aliasTo?: string | undefined;
|
|
25335
|
-
}) & (string | {
|
|
25336
|
-
aliasTo?: string | undefined;
|
|
25337
|
-
} | undefined);
|
|
25338
|
-
} | undefined;
|
|
25063
|
+
itemBackgroundColor?: string | undefined;
|
|
25339
25064
|
numberOfColumns?: number | undefined;
|
|
25340
25065
|
}, {
|
|
25341
|
-
itemBackgroundColor?:
|
|
25342
|
-
opacity: {
|
|
25343
|
-
aliasTo?: string | null | undefined;
|
|
25344
|
-
value?: {
|
|
25345
|
-
unit: "Pixels" | "Raw";
|
|
25346
|
-
measure: number;
|
|
25347
|
-
} | null | undefined;
|
|
25348
|
-
};
|
|
25349
|
-
color: (string | {
|
|
25350
|
-
aliasTo?: string | null | undefined;
|
|
25351
|
-
}) & (string | {
|
|
25352
|
-
aliasTo?: string | null | undefined;
|
|
25353
|
-
} | undefined);
|
|
25354
|
-
} | undefined;
|
|
25066
|
+
itemBackgroundColor?: string | undefined;
|
|
25355
25067
|
numberOfColumns?: number | undefined;
|
|
25356
25068
|
}>>;
|
|
25357
25069
|
items: z.ZodArray<z.ZodObject<{
|
|
@@ -25425,20 +25137,7 @@ declare const PageBlockV2: z.ZodObject<{
|
|
|
25425
25137
|
}[];
|
|
25426
25138
|
variantId?: string | undefined;
|
|
25427
25139
|
appearance?: {
|
|
25428
|
-
itemBackgroundColor?:
|
|
25429
|
-
opacity: {
|
|
25430
|
-
aliasTo?: string | undefined;
|
|
25431
|
-
value?: {
|
|
25432
|
-
unit: "Pixels" | "Raw";
|
|
25433
|
-
measure: number;
|
|
25434
|
-
} | undefined;
|
|
25435
|
-
};
|
|
25436
|
-
color: (string | {
|
|
25437
|
-
aliasTo?: string | undefined;
|
|
25438
|
-
}) & (string | {
|
|
25439
|
-
aliasTo?: string | undefined;
|
|
25440
|
-
} | undefined);
|
|
25441
|
-
} | undefined;
|
|
25140
|
+
itemBackgroundColor?: string | undefined;
|
|
25442
25141
|
numberOfColumns?: number | undefined;
|
|
25443
25142
|
} | undefined;
|
|
25444
25143
|
}, {
|
|
@@ -25459,20 +25158,7 @@ declare const PageBlockV2: z.ZodObject<{
|
|
|
25459
25158
|
}[];
|
|
25460
25159
|
variantId?: string | undefined;
|
|
25461
25160
|
appearance?: {
|
|
25462
|
-
itemBackgroundColor?:
|
|
25463
|
-
opacity: {
|
|
25464
|
-
aliasTo?: string | null | undefined;
|
|
25465
|
-
value?: {
|
|
25466
|
-
unit: "Pixels" | "Raw";
|
|
25467
|
-
measure: number;
|
|
25468
|
-
} | null | undefined;
|
|
25469
|
-
};
|
|
25470
|
-
color: (string | {
|
|
25471
|
-
aliasTo?: string | null | undefined;
|
|
25472
|
-
}) & (string | {
|
|
25473
|
-
aliasTo?: string | null | undefined;
|
|
25474
|
-
} | undefined);
|
|
25475
|
-
} | undefined;
|
|
25161
|
+
itemBackgroundColor?: string | undefined;
|
|
25476
25162
|
numberOfColumns?: number | undefined;
|
|
25477
25163
|
} | undefined;
|
|
25478
25164
|
}>;
|
|
@@ -25500,20 +25186,7 @@ declare const PageBlockV2: z.ZodObject<{
|
|
|
25500
25186
|
}[];
|
|
25501
25187
|
variantId?: string | undefined;
|
|
25502
25188
|
appearance?: {
|
|
25503
|
-
itemBackgroundColor?:
|
|
25504
|
-
opacity: {
|
|
25505
|
-
aliasTo?: string | undefined;
|
|
25506
|
-
value?: {
|
|
25507
|
-
unit: "Pixels" | "Raw";
|
|
25508
|
-
measure: number;
|
|
25509
|
-
} | undefined;
|
|
25510
|
-
};
|
|
25511
|
-
color: (string | {
|
|
25512
|
-
aliasTo?: string | undefined;
|
|
25513
|
-
}) & (string | {
|
|
25514
|
-
aliasTo?: string | undefined;
|
|
25515
|
-
} | undefined);
|
|
25516
|
-
} | undefined;
|
|
25189
|
+
itemBackgroundColor?: string | undefined;
|
|
25517
25190
|
numberOfColumns?: number | undefined;
|
|
25518
25191
|
} | undefined;
|
|
25519
25192
|
};
|
|
@@ -25547,20 +25220,7 @@ declare const PageBlockV2: z.ZodObject<{
|
|
|
25547
25220
|
}[];
|
|
25548
25221
|
variantId?: string | undefined;
|
|
25549
25222
|
appearance?: {
|
|
25550
|
-
itemBackgroundColor?:
|
|
25551
|
-
opacity: {
|
|
25552
|
-
aliasTo?: string | null | undefined;
|
|
25553
|
-
value?: {
|
|
25554
|
-
unit: "Pixels" | "Raw";
|
|
25555
|
-
measure: number;
|
|
25556
|
-
} | null | undefined;
|
|
25557
|
-
};
|
|
25558
|
-
color: (string | {
|
|
25559
|
-
aliasTo?: string | null | undefined;
|
|
25560
|
-
}) & (string | {
|
|
25561
|
-
aliasTo?: string | null | undefined;
|
|
25562
|
-
} | undefined);
|
|
25563
|
-
} | undefined;
|
|
25223
|
+
itemBackgroundColor?: string | undefined;
|
|
25564
25224
|
numberOfColumns?: number | undefined;
|
|
25565
25225
|
} | undefined;
|
|
25566
25226
|
};
|
|
@@ -25579,101 +25239,13 @@ declare const PageBlockEditorModelV2: z.ZodObject<{
|
|
|
25579
25239
|
variantId: z.ZodOptional<z.ZodString>;
|
|
25580
25240
|
indentLevel: z.ZodNumber;
|
|
25581
25241
|
appearance: z.ZodOptional<z.ZodObject<{
|
|
25582
|
-
itemBackgroundColor: z.ZodOptional<z.
|
|
25583
|
-
opacity: z.ZodObject<{
|
|
25584
|
-
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
25585
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<{
|
|
25586
|
-
unit: "Pixels" | "Raw";
|
|
25587
|
-
measure: number;
|
|
25588
|
-
}, z.ZodTypeDef, {
|
|
25589
|
-
unit: "Pixels" | "Raw";
|
|
25590
|
-
measure: number;
|
|
25591
|
-
}>>>, {
|
|
25592
|
-
unit: "Pixels" | "Raw";
|
|
25593
|
-
measure: number;
|
|
25594
|
-
} | undefined, {
|
|
25595
|
-
unit: "Pixels" | "Raw";
|
|
25596
|
-
measure: number;
|
|
25597
|
-
} | null | undefined>;
|
|
25598
|
-
}, "strip", z.ZodTypeAny, {
|
|
25599
|
-
aliasTo?: string | undefined;
|
|
25600
|
-
value?: {
|
|
25601
|
-
unit: "Pixels" | "Raw";
|
|
25602
|
-
measure: number;
|
|
25603
|
-
} | undefined;
|
|
25604
|
-
}, {
|
|
25605
|
-
aliasTo?: string | null | undefined;
|
|
25606
|
-
value?: {
|
|
25607
|
-
unit: "Pixels" | "Raw";
|
|
25608
|
-
measure: number;
|
|
25609
|
-
} | null | undefined;
|
|
25610
|
-
}>;
|
|
25611
|
-
color: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
25612
|
-
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
25613
|
-
}, "strip", z.ZodTypeAny, {
|
|
25614
|
-
aliasTo?: string | undefined;
|
|
25615
|
-
}, {
|
|
25616
|
-
aliasTo?: string | null | undefined;
|
|
25617
|
-
}>]>;
|
|
25618
|
-
}, "strip", z.ZodTypeAny, {
|
|
25619
|
-
opacity: {
|
|
25620
|
-
aliasTo?: string | undefined;
|
|
25621
|
-
value?: {
|
|
25622
|
-
unit: "Pixels" | "Raw";
|
|
25623
|
-
measure: number;
|
|
25624
|
-
} | undefined;
|
|
25625
|
-
};
|
|
25626
|
-
color: (string | {
|
|
25627
|
-
aliasTo?: string | undefined;
|
|
25628
|
-
}) & (string | {
|
|
25629
|
-
aliasTo?: string | undefined;
|
|
25630
|
-
} | undefined);
|
|
25631
|
-
}, {
|
|
25632
|
-
opacity: {
|
|
25633
|
-
aliasTo?: string | null | undefined;
|
|
25634
|
-
value?: {
|
|
25635
|
-
unit: "Pixels" | "Raw";
|
|
25636
|
-
measure: number;
|
|
25637
|
-
} | null | undefined;
|
|
25638
|
-
};
|
|
25639
|
-
color: (string | {
|
|
25640
|
-
aliasTo?: string | null | undefined;
|
|
25641
|
-
}) & (string | {
|
|
25642
|
-
aliasTo?: string | null | undefined;
|
|
25643
|
-
} | undefined);
|
|
25644
|
-
}>>;
|
|
25242
|
+
itemBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
25645
25243
|
numberOfColumns: z.ZodOptional<z.ZodNumber>;
|
|
25646
25244
|
}, "strip", z.ZodTypeAny, {
|
|
25647
|
-
itemBackgroundColor?:
|
|
25648
|
-
opacity: {
|
|
25649
|
-
aliasTo?: string | undefined;
|
|
25650
|
-
value?: {
|
|
25651
|
-
unit: "Pixels" | "Raw";
|
|
25652
|
-
measure: number;
|
|
25653
|
-
} | undefined;
|
|
25654
|
-
};
|
|
25655
|
-
color: (string | {
|
|
25656
|
-
aliasTo?: string | undefined;
|
|
25657
|
-
}) & (string | {
|
|
25658
|
-
aliasTo?: string | undefined;
|
|
25659
|
-
} | undefined);
|
|
25660
|
-
} | undefined;
|
|
25245
|
+
itemBackgroundColor?: string | undefined;
|
|
25661
25246
|
numberOfColumns?: number | undefined;
|
|
25662
25247
|
}, {
|
|
25663
|
-
itemBackgroundColor?:
|
|
25664
|
-
opacity: {
|
|
25665
|
-
aliasTo?: string | null | undefined;
|
|
25666
|
-
value?: {
|
|
25667
|
-
unit: "Pixels" | "Raw";
|
|
25668
|
-
measure: number;
|
|
25669
|
-
} | null | undefined;
|
|
25670
|
-
};
|
|
25671
|
-
color: (string | {
|
|
25672
|
-
aliasTo?: string | null | undefined;
|
|
25673
|
-
}) & (string | {
|
|
25674
|
-
aliasTo?: string | null | undefined;
|
|
25675
|
-
} | undefined);
|
|
25676
|
-
} | undefined;
|
|
25248
|
+
itemBackgroundColor?: string | undefined;
|
|
25677
25249
|
numberOfColumns?: number | undefined;
|
|
25678
25250
|
}>>;
|
|
25679
25251
|
items: z.ZodArray<z.ZodObject<{
|
|
@@ -25747,20 +25319,7 @@ declare const PageBlockEditorModelV2: z.ZodObject<{
|
|
|
25747
25319
|
}[];
|
|
25748
25320
|
variantId?: string | undefined;
|
|
25749
25321
|
appearance?: {
|
|
25750
|
-
itemBackgroundColor?:
|
|
25751
|
-
opacity: {
|
|
25752
|
-
aliasTo?: string | undefined;
|
|
25753
|
-
value?: {
|
|
25754
|
-
unit: "Pixels" | "Raw";
|
|
25755
|
-
measure: number;
|
|
25756
|
-
} | undefined;
|
|
25757
|
-
};
|
|
25758
|
-
color: (string | {
|
|
25759
|
-
aliasTo?: string | undefined;
|
|
25760
|
-
}) & (string | {
|
|
25761
|
-
aliasTo?: string | undefined;
|
|
25762
|
-
} | undefined);
|
|
25763
|
-
} | undefined;
|
|
25322
|
+
itemBackgroundColor?: string | undefined;
|
|
25764
25323
|
numberOfColumns?: number | undefined;
|
|
25765
25324
|
} | undefined;
|
|
25766
25325
|
}, {
|
|
@@ -25781,20 +25340,7 @@ declare const PageBlockEditorModelV2: z.ZodObject<{
|
|
|
25781
25340
|
}[];
|
|
25782
25341
|
variantId?: string | undefined;
|
|
25783
25342
|
appearance?: {
|
|
25784
|
-
itemBackgroundColor?:
|
|
25785
|
-
opacity: {
|
|
25786
|
-
aliasTo?: string | null | undefined;
|
|
25787
|
-
value?: {
|
|
25788
|
-
unit: "Pixels" | "Raw";
|
|
25789
|
-
measure: number;
|
|
25790
|
-
} | null | undefined;
|
|
25791
|
-
};
|
|
25792
|
-
color: (string | {
|
|
25793
|
-
aliasTo?: string | null | undefined;
|
|
25794
|
-
}) & (string | {
|
|
25795
|
-
aliasTo?: string | null | undefined;
|
|
25796
|
-
} | undefined);
|
|
25797
|
-
} | undefined;
|
|
25343
|
+
itemBackgroundColor?: string | undefined;
|
|
25798
25344
|
numberOfColumns?: number | undefined;
|
|
25799
25345
|
} | undefined;
|
|
25800
25346
|
}>;
|
|
@@ -25818,20 +25364,7 @@ declare const PageBlockEditorModelV2: z.ZodObject<{
|
|
|
25818
25364
|
}[];
|
|
25819
25365
|
variantId?: string | undefined;
|
|
25820
25366
|
appearance?: {
|
|
25821
|
-
itemBackgroundColor?:
|
|
25822
|
-
opacity: {
|
|
25823
|
-
aliasTo?: string | undefined;
|
|
25824
|
-
value?: {
|
|
25825
|
-
unit: "Pixels" | "Raw";
|
|
25826
|
-
measure: number;
|
|
25827
|
-
} | undefined;
|
|
25828
|
-
};
|
|
25829
|
-
color: (string | {
|
|
25830
|
-
aliasTo?: string | undefined;
|
|
25831
|
-
}) & (string | {
|
|
25832
|
-
aliasTo?: string | undefined;
|
|
25833
|
-
} | undefined);
|
|
25834
|
-
} | undefined;
|
|
25367
|
+
itemBackgroundColor?: string | undefined;
|
|
25835
25368
|
numberOfColumns?: number | undefined;
|
|
25836
25369
|
} | undefined;
|
|
25837
25370
|
};
|
|
@@ -25855,20 +25388,7 @@ declare const PageBlockEditorModelV2: z.ZodObject<{
|
|
|
25855
25388
|
}[];
|
|
25856
25389
|
variantId?: string | undefined;
|
|
25857
25390
|
appearance?: {
|
|
25858
|
-
itemBackgroundColor?:
|
|
25859
|
-
opacity: {
|
|
25860
|
-
aliasTo?: string | null | undefined;
|
|
25861
|
-
value?: {
|
|
25862
|
-
unit: "Pixels" | "Raw";
|
|
25863
|
-
measure: number;
|
|
25864
|
-
} | null | undefined;
|
|
25865
|
-
};
|
|
25866
|
-
color: (string | {
|
|
25867
|
-
aliasTo?: string | null | undefined;
|
|
25868
|
-
}) & (string | {
|
|
25869
|
-
aliasTo?: string | null | undefined;
|
|
25870
|
-
} | undefined);
|
|
25871
|
-
} | undefined;
|
|
25391
|
+
itemBackgroundColor?: string | undefined;
|
|
25872
25392
|
numberOfColumns?: number | undefined;
|
|
25873
25393
|
} | undefined;
|
|
25874
25394
|
};
|
|
@@ -99059,4 +98579,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
99059
98579
|
}>;
|
|
99060
98580
|
type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
|
|
99061
98581
|
|
|
99062
|
-
export { Address, Asset, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, 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 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, 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, DocumentationItemConfiguration, DocumentationItemHeader, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationPage, DocumentationPageAsset, DocumentationPageAssetType, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageElementDataV1, DocumentationPageElementDataV2, DocumentationPageFrameAsset, DocumentationPageGroup, DocumentationPageImageAsset, DocumentationPageRoom, DocumentationPageV1, DocumentationPageV2, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupData, ElementGroupElementData, 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, 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, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, 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, NpmRegistryTypeWithoutAzure, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetType, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, 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, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaNodeValue, PageBlockItemImageReference, 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, 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, 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, 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 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, colorValueFormatDescription, colorValueRegex, defaultDocumentationItemConfiguration, defaultDocumentationItemHeader, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isTokenType, nullishToOptional, publishedDocEnvironments, slugRegex, tokenAliasOrValue, tokenElementTypes, traversePageBlocksV1, traverseStructure, tryParseShortPersistentId, zodCreateInputOmit, zodUpdateInputOmit };
|
|
98582
|
+
export { Address, Asset, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, 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 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, 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, DocumentationItemConfiguration, DocumentationItemHeader, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationPage, DocumentationPageAsset, DocumentationPageAssetType, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageElementDataV1, DocumentationPageElementDataV2, DocumentationPageFrameAsset, DocumentationPageGroup, DocumentationPageImageAsset, DocumentationPageRoom, DocumentationPageV1, DocumentationPageV2, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupData, ElementGroupElementData, 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, 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, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, 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, NpmRegistryTypeWithoutAzure, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetType, 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, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaNodeValue, PageBlockItemImageReference, 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, 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, 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, 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 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, colorValueFormatDescription, colorValueRegex, defaultDocumentationItemConfiguration, defaultDocumentationItemHeader, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isTokenType, nullishToOptional, publishedDocEnvironments, slugRegex, tokenAliasOrValue, tokenElementTypes, traversePageBlocksV1, traverseStructure, tryParseShortPersistentId, zodCreateInputOmit, zodUpdateInputOmit };
|