@supernova-studio/model 0.11.0 → 0.13.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 +90 -456
- package/dist/index.d.ts +90 -456
- package/dist/index.js +10 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +9 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/elements/data/documentation-block-v2.ts +8 -3
- package/src/dsm/elements/data/page-asset.ts +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -8740,101 +8740,39 @@ 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.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
|
+
}>;
|
|
8753
|
+
type PageBlockColorV2 = z.infer<typeof PageBlockColorV2>;
|
|
8743
8754
|
declare const PageBlockAppearanceV2: z.ZodObject<{
|
|
8744
8755
|
itemBackgroundColor: z.ZodOptional<z.ZodObject<{
|
|
8745
|
-
|
|
8746
|
-
|
|
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
|
-
}>]>;
|
|
8756
|
+
value: z.ZodString;
|
|
8757
|
+
referencedTokenId: z.ZodOptional<z.ZodString>;
|
|
8780
8758
|
}, "strip", z.ZodTypeAny, {
|
|
8781
|
-
|
|
8782
|
-
|
|
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);
|
|
8759
|
+
value: string;
|
|
8760
|
+
referencedTokenId?: string | undefined;
|
|
8793
8761
|
}, {
|
|
8794
|
-
|
|
8795
|
-
|
|
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);
|
|
8762
|
+
value: string;
|
|
8763
|
+
referencedTokenId?: string | undefined;
|
|
8806
8764
|
}>>;
|
|
8807
8765
|
numberOfColumns: z.ZodOptional<z.ZodNumber>;
|
|
8808
8766
|
}, "strip", z.ZodTypeAny, {
|
|
8809
8767
|
itemBackgroundColor?: {
|
|
8810
|
-
|
|
8811
|
-
|
|
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);
|
|
8768
|
+
value: string;
|
|
8769
|
+
referencedTokenId?: string | undefined;
|
|
8822
8770
|
} | undefined;
|
|
8823
8771
|
numberOfColumns?: number | undefined;
|
|
8824
8772
|
}, {
|
|
8825
8773
|
itemBackgroundColor?: {
|
|
8826
|
-
|
|
8827
|
-
|
|
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);
|
|
8774
|
+
value: string;
|
|
8775
|
+
referencedTokenId?: string | undefined;
|
|
8838
8776
|
} | undefined;
|
|
8839
8777
|
numberOfColumns?: number | undefined;
|
|
8840
8778
|
}>;
|
|
@@ -8927,99 +8865,26 @@ declare const PageBlockDataV2: z.ZodObject<{
|
|
|
8927
8865
|
indentLevel: z.ZodNumber;
|
|
8928
8866
|
appearance: z.ZodOptional<z.ZodObject<{
|
|
8929
8867
|
itemBackgroundColor: z.ZodOptional<z.ZodObject<{
|
|
8930
|
-
|
|
8931
|
-
|
|
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
|
-
}>]>;
|
|
8868
|
+
value: z.ZodString;
|
|
8869
|
+
referencedTokenId: z.ZodOptional<z.ZodString>;
|
|
8965
8870
|
}, "strip", z.ZodTypeAny, {
|
|
8966
|
-
|
|
8967
|
-
|
|
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);
|
|
8871
|
+
value: string;
|
|
8872
|
+
referencedTokenId?: string | undefined;
|
|
8978
8873
|
}, {
|
|
8979
|
-
|
|
8980
|
-
|
|
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);
|
|
8874
|
+
value: string;
|
|
8875
|
+
referencedTokenId?: string | undefined;
|
|
8991
8876
|
}>>;
|
|
8992
8877
|
numberOfColumns: z.ZodOptional<z.ZodNumber>;
|
|
8993
8878
|
}, "strip", z.ZodTypeAny, {
|
|
8994
8879
|
itemBackgroundColor?: {
|
|
8995
|
-
|
|
8996
|
-
|
|
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);
|
|
8880
|
+
value: string;
|
|
8881
|
+
referencedTokenId?: string | undefined;
|
|
9007
8882
|
} | undefined;
|
|
9008
8883
|
numberOfColumns?: number | undefined;
|
|
9009
8884
|
}, {
|
|
9010
8885
|
itemBackgroundColor?: {
|
|
9011
|
-
|
|
9012
|
-
|
|
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);
|
|
8886
|
+
value: string;
|
|
8887
|
+
referencedTokenId?: string | undefined;
|
|
9023
8888
|
} | undefined;
|
|
9024
8889
|
numberOfColumns?: number | undefined;
|
|
9025
8890
|
}>>;
|
|
@@ -9095,18 +8960,8 @@ declare const PageBlockDataV2: z.ZodObject<{
|
|
|
9095
8960
|
variantId?: string | undefined;
|
|
9096
8961
|
appearance?: {
|
|
9097
8962
|
itemBackgroundColor?: {
|
|
9098
|
-
|
|
9099
|
-
|
|
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);
|
|
8963
|
+
value: string;
|
|
8964
|
+
referencedTokenId?: string | undefined;
|
|
9110
8965
|
} | undefined;
|
|
9111
8966
|
numberOfColumns?: number | undefined;
|
|
9112
8967
|
} | undefined;
|
|
@@ -9129,18 +8984,8 @@ declare const PageBlockDataV2: z.ZodObject<{
|
|
|
9129
8984
|
variantId?: string | undefined;
|
|
9130
8985
|
appearance?: {
|
|
9131
8986
|
itemBackgroundColor?: {
|
|
9132
|
-
|
|
9133
|
-
|
|
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);
|
|
8987
|
+
value: string;
|
|
8988
|
+
referencedTokenId?: string | undefined;
|
|
9144
8989
|
} | undefined;
|
|
9145
8990
|
numberOfColumns?: number | undefined;
|
|
9146
8991
|
} | undefined;
|
|
@@ -9231,7 +9076,16 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
|
|
|
9231
9076
|
selectedPropertyIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
9232
9077
|
showSearch: z.ZodOptional<z.ZodBoolean>;
|
|
9233
9078
|
previewContainerSize: z.ZodOptional<z.ZodEnum<["Centered", "NaturalHeight"]>>;
|
|
9234
|
-
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
|
+
}>>;
|
|
9235
9089
|
value: z.ZodArray<z.ZodObject<{
|
|
9236
9090
|
entityId: z.ZodString;
|
|
9237
9091
|
entityType: z.ZodEnum<["Asset", "AssetGroup"]>;
|
|
@@ -9272,7 +9126,10 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
|
|
|
9272
9126
|
selectedPropertyIds?: string[] | undefined;
|
|
9273
9127
|
showSearch?: boolean | undefined;
|
|
9274
9128
|
previewContainerSize?: "Centered" | "NaturalHeight" | undefined;
|
|
9275
|
-
backgroundColor?:
|
|
9129
|
+
backgroundColor?: {
|
|
9130
|
+
value: string;
|
|
9131
|
+
referencedTokenId?: string | undefined;
|
|
9132
|
+
} | undefined;
|
|
9276
9133
|
}, {
|
|
9277
9134
|
value: {
|
|
9278
9135
|
entityId: string;
|
|
@@ -9285,7 +9142,10 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
|
|
|
9285
9142
|
selectedPropertyIds?: string[] | undefined;
|
|
9286
9143
|
showSearch?: boolean | undefined;
|
|
9287
9144
|
previewContainerSize?: "Centered" | "NaturalHeight" | undefined;
|
|
9288
|
-
backgroundColor?:
|
|
9145
|
+
backgroundColor?: {
|
|
9146
|
+
value: string;
|
|
9147
|
+
referencedTokenId?: string | undefined;
|
|
9148
|
+
} | undefined;
|
|
9289
9149
|
}>;
|
|
9290
9150
|
type PageBlockItemAssetValue = z.infer<typeof PageBlockItemAssetValue>;
|
|
9291
9151
|
declare const PageBlockItemAssetPropertyValue: z.ZodObject<{
|
|
@@ -25258,99 +25118,26 @@ declare const PageBlockV2: z.ZodObject<{
|
|
|
25258
25118
|
indentLevel: z.ZodNumber;
|
|
25259
25119
|
appearance: z.ZodOptional<z.ZodObject<{
|
|
25260
25120
|
itemBackgroundColor: z.ZodOptional<z.ZodObject<{
|
|
25261
|
-
|
|
25262
|
-
|
|
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
|
-
}>]>;
|
|
25121
|
+
value: z.ZodString;
|
|
25122
|
+
referencedTokenId: z.ZodOptional<z.ZodString>;
|
|
25296
25123
|
}, "strip", z.ZodTypeAny, {
|
|
25297
|
-
|
|
25298
|
-
|
|
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);
|
|
25124
|
+
value: string;
|
|
25125
|
+
referencedTokenId?: string | undefined;
|
|
25309
25126
|
}, {
|
|
25310
|
-
|
|
25311
|
-
|
|
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);
|
|
25127
|
+
value: string;
|
|
25128
|
+
referencedTokenId?: string | undefined;
|
|
25322
25129
|
}>>;
|
|
25323
25130
|
numberOfColumns: z.ZodOptional<z.ZodNumber>;
|
|
25324
25131
|
}, "strip", z.ZodTypeAny, {
|
|
25325
25132
|
itemBackgroundColor?: {
|
|
25326
|
-
|
|
25327
|
-
|
|
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);
|
|
25133
|
+
value: string;
|
|
25134
|
+
referencedTokenId?: string | undefined;
|
|
25338
25135
|
} | undefined;
|
|
25339
25136
|
numberOfColumns?: number | undefined;
|
|
25340
25137
|
}, {
|
|
25341
25138
|
itemBackgroundColor?: {
|
|
25342
|
-
|
|
25343
|
-
|
|
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);
|
|
25139
|
+
value: string;
|
|
25140
|
+
referencedTokenId?: string | undefined;
|
|
25354
25141
|
} | undefined;
|
|
25355
25142
|
numberOfColumns?: number | undefined;
|
|
25356
25143
|
}>>;
|
|
@@ -25426,18 +25213,8 @@ declare const PageBlockV2: z.ZodObject<{
|
|
|
25426
25213
|
variantId?: string | undefined;
|
|
25427
25214
|
appearance?: {
|
|
25428
25215
|
itemBackgroundColor?: {
|
|
25429
|
-
|
|
25430
|
-
|
|
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);
|
|
25216
|
+
value: string;
|
|
25217
|
+
referencedTokenId?: string | undefined;
|
|
25441
25218
|
} | undefined;
|
|
25442
25219
|
numberOfColumns?: number | undefined;
|
|
25443
25220
|
} | undefined;
|
|
@@ -25460,18 +25237,8 @@ declare const PageBlockV2: z.ZodObject<{
|
|
|
25460
25237
|
variantId?: string | undefined;
|
|
25461
25238
|
appearance?: {
|
|
25462
25239
|
itemBackgroundColor?: {
|
|
25463
|
-
|
|
25464
|
-
|
|
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);
|
|
25240
|
+
value: string;
|
|
25241
|
+
referencedTokenId?: string | undefined;
|
|
25475
25242
|
} | undefined;
|
|
25476
25243
|
numberOfColumns?: number | undefined;
|
|
25477
25244
|
} | undefined;
|
|
@@ -25501,18 +25268,8 @@ declare const PageBlockV2: z.ZodObject<{
|
|
|
25501
25268
|
variantId?: string | undefined;
|
|
25502
25269
|
appearance?: {
|
|
25503
25270
|
itemBackgroundColor?: {
|
|
25504
|
-
|
|
25505
|
-
|
|
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);
|
|
25271
|
+
value: string;
|
|
25272
|
+
referencedTokenId?: string | undefined;
|
|
25516
25273
|
} | undefined;
|
|
25517
25274
|
numberOfColumns?: number | undefined;
|
|
25518
25275
|
} | undefined;
|
|
@@ -25548,18 +25305,8 @@ declare const PageBlockV2: z.ZodObject<{
|
|
|
25548
25305
|
variantId?: string | undefined;
|
|
25549
25306
|
appearance?: {
|
|
25550
25307
|
itemBackgroundColor?: {
|
|
25551
|
-
|
|
25552
|
-
|
|
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);
|
|
25308
|
+
value: string;
|
|
25309
|
+
referencedTokenId?: string | undefined;
|
|
25563
25310
|
} | undefined;
|
|
25564
25311
|
numberOfColumns?: number | undefined;
|
|
25565
25312
|
} | undefined;
|
|
@@ -25580,99 +25327,26 @@ declare const PageBlockEditorModelV2: z.ZodObject<{
|
|
|
25580
25327
|
indentLevel: z.ZodNumber;
|
|
25581
25328
|
appearance: z.ZodOptional<z.ZodObject<{
|
|
25582
25329
|
itemBackgroundColor: z.ZodOptional<z.ZodObject<{
|
|
25583
|
-
|
|
25584
|
-
|
|
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
|
-
}>]>;
|
|
25330
|
+
value: z.ZodString;
|
|
25331
|
+
referencedTokenId: z.ZodOptional<z.ZodString>;
|
|
25618
25332
|
}, "strip", z.ZodTypeAny, {
|
|
25619
|
-
|
|
25620
|
-
|
|
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);
|
|
25333
|
+
value: string;
|
|
25334
|
+
referencedTokenId?: string | undefined;
|
|
25631
25335
|
}, {
|
|
25632
|
-
|
|
25633
|
-
|
|
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);
|
|
25336
|
+
value: string;
|
|
25337
|
+
referencedTokenId?: string | undefined;
|
|
25644
25338
|
}>>;
|
|
25645
25339
|
numberOfColumns: z.ZodOptional<z.ZodNumber>;
|
|
25646
25340
|
}, "strip", z.ZodTypeAny, {
|
|
25647
25341
|
itemBackgroundColor?: {
|
|
25648
|
-
|
|
25649
|
-
|
|
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);
|
|
25342
|
+
value: string;
|
|
25343
|
+
referencedTokenId?: string | undefined;
|
|
25660
25344
|
} | undefined;
|
|
25661
25345
|
numberOfColumns?: number | undefined;
|
|
25662
25346
|
}, {
|
|
25663
25347
|
itemBackgroundColor?: {
|
|
25664
|
-
|
|
25665
|
-
|
|
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);
|
|
25348
|
+
value: string;
|
|
25349
|
+
referencedTokenId?: string | undefined;
|
|
25676
25350
|
} | undefined;
|
|
25677
25351
|
numberOfColumns?: number | undefined;
|
|
25678
25352
|
}>>;
|
|
@@ -25748,18 +25422,8 @@ declare const PageBlockEditorModelV2: z.ZodObject<{
|
|
|
25748
25422
|
variantId?: string | undefined;
|
|
25749
25423
|
appearance?: {
|
|
25750
25424
|
itemBackgroundColor?: {
|
|
25751
|
-
|
|
25752
|
-
|
|
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);
|
|
25425
|
+
value: string;
|
|
25426
|
+
referencedTokenId?: string | undefined;
|
|
25763
25427
|
} | undefined;
|
|
25764
25428
|
numberOfColumns?: number | undefined;
|
|
25765
25429
|
} | undefined;
|
|
@@ -25782,18 +25446,8 @@ declare const PageBlockEditorModelV2: z.ZodObject<{
|
|
|
25782
25446
|
variantId?: string | undefined;
|
|
25783
25447
|
appearance?: {
|
|
25784
25448
|
itemBackgroundColor?: {
|
|
25785
|
-
|
|
25786
|
-
|
|
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);
|
|
25449
|
+
value: string;
|
|
25450
|
+
referencedTokenId?: string | undefined;
|
|
25797
25451
|
} | undefined;
|
|
25798
25452
|
numberOfColumns?: number | undefined;
|
|
25799
25453
|
} | undefined;
|
|
@@ -25819,18 +25473,8 @@ declare const PageBlockEditorModelV2: z.ZodObject<{
|
|
|
25819
25473
|
variantId?: string | undefined;
|
|
25820
25474
|
appearance?: {
|
|
25821
25475
|
itemBackgroundColor?: {
|
|
25822
|
-
|
|
25823
|
-
|
|
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);
|
|
25476
|
+
value: string;
|
|
25477
|
+
referencedTokenId?: string | undefined;
|
|
25834
25478
|
} | undefined;
|
|
25835
25479
|
numberOfColumns?: number | undefined;
|
|
25836
25480
|
} | undefined;
|
|
@@ -25856,18 +25500,8 @@ declare const PageBlockEditorModelV2: z.ZodObject<{
|
|
|
25856
25500
|
variantId?: string | undefined;
|
|
25857
25501
|
appearance?: {
|
|
25858
25502
|
itemBackgroundColor?: {
|
|
25859
|
-
|
|
25860
|
-
|
|
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);
|
|
25503
|
+
value: string;
|
|
25504
|
+
referencedTokenId?: string | undefined;
|
|
25871
25505
|
} | undefined;
|
|
25872
25506
|
numberOfColumns?: number | undefined;
|
|
25873
25507
|
} | undefined;
|
|
@@ -99059,4 +98693,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
99059
98693
|
}>;
|
|
99060
98694
|
type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
|
|
99061
98695
|
|
|
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 };
|
|
98696
|
+
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 };
|