@supernova-studio/model 0.59.15 → 0.59.16
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 +5 -711
- package/dist/index.d.ts +5 -711
- package/dist/index.js +2 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/import/figma-frames.ts +3 -9
- package/src/dsm/import/support/import-context.ts +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -82687,15 +82687,15 @@ type FigmaFileAccessData = z.infer<typeof FigmaFileAccessData>;
|
|
|
82687
82687
|
declare const ImportFunctionInput: z.ZodObject<{
|
|
82688
82688
|
importJobId: z.ZodString;
|
|
82689
82689
|
importContextId: z.ZodString;
|
|
82690
|
-
designSystemId: z.
|
|
82690
|
+
designSystemId: z.ZodString;
|
|
82691
82691
|
}, "strip", z.ZodTypeAny, {
|
|
82692
|
+
designSystemId: string;
|
|
82692
82693
|
importContextId: string;
|
|
82693
82694
|
importJobId: string;
|
|
82694
|
-
designSystemId?: string | undefined;
|
|
82695
82695
|
}, {
|
|
82696
|
+
designSystemId: string;
|
|
82696
82697
|
importContextId: string;
|
|
82697
82698
|
importJobId: string;
|
|
82698
|
-
designSystemId?: string | undefined;
|
|
82699
82699
|
}>;
|
|
82700
82700
|
type ImportFunctionInput = z.infer<typeof ImportFunctionInput>;
|
|
82701
82701
|
declare const ImportedFigmaSourceData: z.ZodObject<{
|
|
@@ -93755,25 +93755,6 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93755
93755
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
93756
93756
|
id: string;
|
|
93757
93757
|
name: string;
|
|
93758
|
-
svg: {
|
|
93759
|
-
type: "FigmaRender";
|
|
93760
|
-
originKey: string;
|
|
93761
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
93762
|
-
format: "Svg";
|
|
93763
|
-
fileId: string;
|
|
93764
|
-
nodeId: string;
|
|
93765
|
-
fileVersionId?: string | undefined;
|
|
93766
|
-
};
|
|
93767
|
-
png: {
|
|
93768
|
-
type: "FigmaRender";
|
|
93769
|
-
originKey: string;
|
|
93770
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
93771
|
-
format: "Png";
|
|
93772
|
-
fileId: string;
|
|
93773
|
-
scale: number;
|
|
93774
|
-
nodeId: string;
|
|
93775
|
-
fileVersionId?: string | undefined;
|
|
93776
|
-
};
|
|
93777
93758
|
size?: {
|
|
93778
93759
|
width?: number | null | undefined;
|
|
93779
93760
|
height?: number | null | undefined;
|
|
@@ -93784,25 +93765,6 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93784
93765
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
93785
93766
|
id: string;
|
|
93786
93767
|
name: string;
|
|
93787
|
-
svg: {
|
|
93788
|
-
type: "FigmaRender";
|
|
93789
|
-
originKey: string;
|
|
93790
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
93791
|
-
format: "Svg";
|
|
93792
|
-
fileId: string;
|
|
93793
|
-
nodeId: string;
|
|
93794
|
-
fileVersionId?: string | undefined;
|
|
93795
|
-
};
|
|
93796
|
-
png: {
|
|
93797
|
-
type: "FigmaRender";
|
|
93798
|
-
originKey: string;
|
|
93799
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
93800
|
-
format: "Png";
|
|
93801
|
-
fileId: string;
|
|
93802
|
-
scale: number;
|
|
93803
|
-
nodeId: string;
|
|
93804
|
-
fileVersionId?: string | undefined;
|
|
93805
|
-
};
|
|
93806
93768
|
size?: {
|
|
93807
93769
|
width?: number | null | undefined;
|
|
93808
93770
|
height?: number | null | undefined;
|
|
@@ -93833,25 +93795,6 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93833
93795
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
93834
93796
|
id: string;
|
|
93835
93797
|
name: string;
|
|
93836
|
-
svg: {
|
|
93837
|
-
type: "FigmaRender";
|
|
93838
|
-
originKey: string;
|
|
93839
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
93840
|
-
format: "Svg";
|
|
93841
|
-
fileId: string;
|
|
93842
|
-
nodeId: string;
|
|
93843
|
-
fileVersionId?: string | undefined;
|
|
93844
|
-
};
|
|
93845
|
-
png: {
|
|
93846
|
-
type: "FigmaRender";
|
|
93847
|
-
originKey: string;
|
|
93848
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
93849
|
-
format: "Png";
|
|
93850
|
-
fileId: string;
|
|
93851
|
-
scale: number;
|
|
93852
|
-
nodeId: string;
|
|
93853
|
-
fileVersionId?: string | undefined;
|
|
93854
|
-
};
|
|
93855
93798
|
size?: {
|
|
93856
93799
|
width: number;
|
|
93857
93800
|
height: number;
|
|
@@ -93870,25 +93813,6 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93870
93813
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
93871
93814
|
id: string;
|
|
93872
93815
|
name: string;
|
|
93873
|
-
svg: {
|
|
93874
|
-
type: "FigmaRender";
|
|
93875
|
-
originKey: string;
|
|
93876
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
93877
|
-
format: "Svg";
|
|
93878
|
-
fileId: string;
|
|
93879
|
-
nodeId: string;
|
|
93880
|
-
fileVersionId?: string | undefined;
|
|
93881
|
-
};
|
|
93882
|
-
png: {
|
|
93883
|
-
type: "FigmaRender";
|
|
93884
|
-
originKey: string;
|
|
93885
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
93886
|
-
format: "Png";
|
|
93887
|
-
fileId: string;
|
|
93888
|
-
scale: number;
|
|
93889
|
-
nodeId: string;
|
|
93890
|
-
fileVersionId?: string | undefined;
|
|
93891
|
-
};
|
|
93892
93816
|
size?: {
|
|
93893
93817
|
width?: number | null | undefined;
|
|
93894
93818
|
height?: number | null | undefined;
|
|
@@ -93899,25 +93823,6 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93899
93823
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
93900
93824
|
id: string;
|
|
93901
93825
|
name: string;
|
|
93902
|
-
svg: {
|
|
93903
|
-
type: "FigmaRender";
|
|
93904
|
-
originKey: string;
|
|
93905
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
93906
|
-
format: "Svg";
|
|
93907
|
-
fileId: string;
|
|
93908
|
-
nodeId: string;
|
|
93909
|
-
fileVersionId?: string | undefined;
|
|
93910
|
-
};
|
|
93911
|
-
png: {
|
|
93912
|
-
type: "FigmaRender";
|
|
93913
|
-
originKey: string;
|
|
93914
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
93915
|
-
format: "Png";
|
|
93916
|
-
fileId: string;
|
|
93917
|
-
scale: number;
|
|
93918
|
-
nodeId: string;
|
|
93919
|
-
fileVersionId?: string | undefined;
|
|
93920
|
-
};
|
|
93921
93826
|
size?: {
|
|
93922
93827
|
width?: number | null | undefined;
|
|
93923
93828
|
height?: number | null | undefined;
|
|
@@ -93948,25 +93853,6 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93948
93853
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
93949
93854
|
id: string;
|
|
93950
93855
|
name: string;
|
|
93951
|
-
svg: {
|
|
93952
|
-
type: "FigmaRender";
|
|
93953
|
-
originKey: string;
|
|
93954
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
93955
|
-
format: "Svg";
|
|
93956
|
-
fileId: string;
|
|
93957
|
-
nodeId: string;
|
|
93958
|
-
fileVersionId?: string | undefined;
|
|
93959
|
-
};
|
|
93960
|
-
png: {
|
|
93961
|
-
type: "FigmaRender";
|
|
93962
|
-
originKey: string;
|
|
93963
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
93964
|
-
format: "Png";
|
|
93965
|
-
fileId: string;
|
|
93966
|
-
scale: number;
|
|
93967
|
-
nodeId: string;
|
|
93968
|
-
fileVersionId?: string | undefined;
|
|
93969
|
-
};
|
|
93970
93856
|
size?: {
|
|
93971
93857
|
width: number;
|
|
93972
93858
|
height: number;
|
|
@@ -93998,25 +93884,6 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93998
93884
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
93999
93885
|
id: string;
|
|
94000
93886
|
name: string;
|
|
94001
|
-
svg: {
|
|
94002
|
-
type: "FigmaRender";
|
|
94003
|
-
originKey: string;
|
|
94004
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
94005
|
-
format: "Svg";
|
|
94006
|
-
fileId: string;
|
|
94007
|
-
nodeId: string;
|
|
94008
|
-
fileVersionId?: string | undefined;
|
|
94009
|
-
};
|
|
94010
|
-
png: {
|
|
94011
|
-
type: "FigmaRender";
|
|
94012
|
-
originKey: string;
|
|
94013
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
94014
|
-
format: "Png";
|
|
94015
|
-
fileId: string;
|
|
94016
|
-
scale: number;
|
|
94017
|
-
nodeId: string;
|
|
94018
|
-
fileVersionId?: string | undefined;
|
|
94019
|
-
};
|
|
94020
93887
|
size?: {
|
|
94021
93888
|
width?: number | null | undefined;
|
|
94022
93889
|
height?: number | null | undefined;
|
|
@@ -94027,25 +93894,6 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
94027
93894
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
94028
93895
|
id: string;
|
|
94029
93896
|
name: string;
|
|
94030
|
-
svg: {
|
|
94031
|
-
type: "FigmaRender";
|
|
94032
|
-
originKey: string;
|
|
94033
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
94034
|
-
format: "Svg";
|
|
94035
|
-
fileId: string;
|
|
94036
|
-
nodeId: string;
|
|
94037
|
-
fileVersionId?: string | undefined;
|
|
94038
|
-
};
|
|
94039
|
-
png: {
|
|
94040
|
-
type: "FigmaRender";
|
|
94041
|
-
originKey: string;
|
|
94042
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
94043
|
-
format: "Png";
|
|
94044
|
-
fileId: string;
|
|
94045
|
-
scale: number;
|
|
94046
|
-
nodeId: string;
|
|
94047
|
-
fileVersionId?: string | undefined;
|
|
94048
|
-
};
|
|
94049
93897
|
size?: {
|
|
94050
93898
|
width?: number | null | undefined;
|
|
94051
93899
|
height?: number | null | undefined;
|
|
@@ -95341,25 +95189,6 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
95341
95189
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
95342
95190
|
id: string;
|
|
95343
95191
|
name: string;
|
|
95344
|
-
svg: {
|
|
95345
|
-
type: "FigmaRender";
|
|
95346
|
-
originKey: string;
|
|
95347
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
95348
|
-
format: "Svg";
|
|
95349
|
-
fileId: string;
|
|
95350
|
-
nodeId: string;
|
|
95351
|
-
fileVersionId?: string | undefined;
|
|
95352
|
-
};
|
|
95353
|
-
png: {
|
|
95354
|
-
type: "FigmaRender";
|
|
95355
|
-
originKey: string;
|
|
95356
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
95357
|
-
format: "Png";
|
|
95358
|
-
fileId: string;
|
|
95359
|
-
scale: number;
|
|
95360
|
-
nodeId: string;
|
|
95361
|
-
fileVersionId?: string | undefined;
|
|
95362
|
-
};
|
|
95363
95192
|
size?: {
|
|
95364
95193
|
width: number;
|
|
95365
95194
|
height: number;
|
|
@@ -95406,25 +95235,6 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
95406
95235
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
95407
95236
|
id: string;
|
|
95408
95237
|
name: string;
|
|
95409
|
-
svg: {
|
|
95410
|
-
type: "FigmaRender";
|
|
95411
|
-
originKey: string;
|
|
95412
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
95413
|
-
format: "Svg";
|
|
95414
|
-
fileId: string;
|
|
95415
|
-
nodeId: string;
|
|
95416
|
-
fileVersionId?: string | undefined;
|
|
95417
|
-
};
|
|
95418
|
-
png: {
|
|
95419
|
-
type: "FigmaRender";
|
|
95420
|
-
originKey: string;
|
|
95421
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
95422
|
-
format: "Png";
|
|
95423
|
-
fileId: string;
|
|
95424
|
-
scale: number;
|
|
95425
|
-
nodeId: string;
|
|
95426
|
-
fileVersionId?: string | undefined;
|
|
95427
|
-
};
|
|
95428
95238
|
size?: {
|
|
95429
95239
|
width?: number | null | undefined;
|
|
95430
95240
|
height?: number | null | undefined;
|
|
@@ -95435,25 +95245,6 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
95435
95245
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
95436
95246
|
id: string;
|
|
95437
95247
|
name: string;
|
|
95438
|
-
svg: {
|
|
95439
|
-
type: "FigmaRender";
|
|
95440
|
-
originKey: string;
|
|
95441
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
95442
|
-
format: "Svg";
|
|
95443
|
-
fileId: string;
|
|
95444
|
-
nodeId: string;
|
|
95445
|
-
fileVersionId?: string | undefined;
|
|
95446
|
-
};
|
|
95447
|
-
png: {
|
|
95448
|
-
type: "FigmaRender";
|
|
95449
|
-
originKey: string;
|
|
95450
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
95451
|
-
format: "Png";
|
|
95452
|
-
fileId: string;
|
|
95453
|
-
scale: number;
|
|
95454
|
-
nodeId: string;
|
|
95455
|
-
fileVersionId?: string | undefined;
|
|
95456
|
-
};
|
|
95457
95248
|
size?: {
|
|
95458
95249
|
width?: number | null | undefined;
|
|
95459
95250
|
height?: number | null | undefined;
|
|
@@ -105936,25 +105727,6 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
105936
105727
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
105937
105728
|
id: string;
|
|
105938
105729
|
name: string;
|
|
105939
|
-
svg: {
|
|
105940
|
-
type: "FigmaRender";
|
|
105941
|
-
originKey: string;
|
|
105942
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
105943
|
-
format: "Svg";
|
|
105944
|
-
fileId: string;
|
|
105945
|
-
nodeId: string;
|
|
105946
|
-
fileVersionId?: string | undefined;
|
|
105947
|
-
};
|
|
105948
|
-
png: {
|
|
105949
|
-
type: "FigmaRender";
|
|
105950
|
-
originKey: string;
|
|
105951
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
105952
|
-
format: "Png";
|
|
105953
|
-
fileId: string;
|
|
105954
|
-
scale: number;
|
|
105955
|
-
nodeId: string;
|
|
105956
|
-
fileVersionId?: string | undefined;
|
|
105957
|
-
};
|
|
105958
105730
|
size?: {
|
|
105959
105731
|
width?: number | null | undefined;
|
|
105960
105732
|
height?: number | null | undefined;
|
|
@@ -105965,25 +105737,6 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
105965
105737
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
105966
105738
|
id: string;
|
|
105967
105739
|
name: string;
|
|
105968
|
-
svg: {
|
|
105969
|
-
type: "FigmaRender";
|
|
105970
|
-
originKey: string;
|
|
105971
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
105972
|
-
format: "Svg";
|
|
105973
|
-
fileId: string;
|
|
105974
|
-
nodeId: string;
|
|
105975
|
-
fileVersionId?: string | undefined;
|
|
105976
|
-
};
|
|
105977
|
-
png: {
|
|
105978
|
-
type: "FigmaRender";
|
|
105979
|
-
originKey: string;
|
|
105980
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
105981
|
-
format: "Png";
|
|
105982
|
-
fileId: string;
|
|
105983
|
-
scale: number;
|
|
105984
|
-
nodeId: string;
|
|
105985
|
-
fileVersionId?: string | undefined;
|
|
105986
|
-
};
|
|
105987
105740
|
size?: {
|
|
105988
105741
|
width?: number | null | undefined;
|
|
105989
105742
|
height?: number | null | undefined;
|
|
@@ -106014,25 +105767,6 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
106014
105767
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
106015
105768
|
id: string;
|
|
106016
105769
|
name: string;
|
|
106017
|
-
svg: {
|
|
106018
|
-
type: "FigmaRender";
|
|
106019
|
-
originKey: string;
|
|
106020
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
106021
|
-
format: "Svg";
|
|
106022
|
-
fileId: string;
|
|
106023
|
-
nodeId: string;
|
|
106024
|
-
fileVersionId?: string | undefined;
|
|
106025
|
-
};
|
|
106026
|
-
png: {
|
|
106027
|
-
type: "FigmaRender";
|
|
106028
|
-
originKey: string;
|
|
106029
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
106030
|
-
format: "Png";
|
|
106031
|
-
fileId: string;
|
|
106032
|
-
scale: number;
|
|
106033
|
-
nodeId: string;
|
|
106034
|
-
fileVersionId?: string | undefined;
|
|
106035
|
-
};
|
|
106036
105770
|
size?: {
|
|
106037
105771
|
width: number;
|
|
106038
105772
|
height: number;
|
|
@@ -106051,25 +105785,6 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
106051
105785
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
106052
105786
|
id: string;
|
|
106053
105787
|
name: string;
|
|
106054
|
-
svg: {
|
|
106055
|
-
type: "FigmaRender";
|
|
106056
|
-
originKey: string;
|
|
106057
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
106058
|
-
format: "Svg";
|
|
106059
|
-
fileId: string;
|
|
106060
|
-
nodeId: string;
|
|
106061
|
-
fileVersionId?: string | undefined;
|
|
106062
|
-
};
|
|
106063
|
-
png: {
|
|
106064
|
-
type: "FigmaRender";
|
|
106065
|
-
originKey: string;
|
|
106066
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
106067
|
-
format: "Png";
|
|
106068
|
-
fileId: string;
|
|
106069
|
-
scale: number;
|
|
106070
|
-
nodeId: string;
|
|
106071
|
-
fileVersionId?: string | undefined;
|
|
106072
|
-
};
|
|
106073
105788
|
size?: {
|
|
106074
105789
|
width?: number | null | undefined;
|
|
106075
105790
|
height?: number | null | undefined;
|
|
@@ -106080,25 +105795,6 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
106080
105795
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
106081
105796
|
id: string;
|
|
106082
105797
|
name: string;
|
|
106083
|
-
svg: {
|
|
106084
|
-
type: "FigmaRender";
|
|
106085
|
-
originKey: string;
|
|
106086
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
106087
|
-
format: "Svg";
|
|
106088
|
-
fileId: string;
|
|
106089
|
-
nodeId: string;
|
|
106090
|
-
fileVersionId?: string | undefined;
|
|
106091
|
-
};
|
|
106092
|
-
png: {
|
|
106093
|
-
type: "FigmaRender";
|
|
106094
|
-
originKey: string;
|
|
106095
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
106096
|
-
format: "Png";
|
|
106097
|
-
fileId: string;
|
|
106098
|
-
scale: number;
|
|
106099
|
-
nodeId: string;
|
|
106100
|
-
fileVersionId?: string | undefined;
|
|
106101
|
-
};
|
|
106102
105798
|
size?: {
|
|
106103
105799
|
width?: number | null | undefined;
|
|
106104
105800
|
height?: number | null | undefined;
|
|
@@ -106120,25 +105816,6 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
106120
105816
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
106121
105817
|
id: string;
|
|
106122
105818
|
name: string;
|
|
106123
|
-
svg: {
|
|
106124
|
-
type: "FigmaRender";
|
|
106125
|
-
originKey: string;
|
|
106126
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
106127
|
-
format: "Svg";
|
|
106128
|
-
fileId: string;
|
|
106129
|
-
nodeId: string;
|
|
106130
|
-
fileVersionId?: string | undefined;
|
|
106131
|
-
};
|
|
106132
|
-
png: {
|
|
106133
|
-
type: "FigmaRender";
|
|
106134
|
-
originKey: string;
|
|
106135
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
106136
|
-
format: "Png";
|
|
106137
|
-
fileId: string;
|
|
106138
|
-
scale: number;
|
|
106139
|
-
nodeId: string;
|
|
106140
|
-
fileVersionId?: string | undefined;
|
|
106141
|
-
};
|
|
106142
105819
|
size?: {
|
|
106143
105820
|
width: number;
|
|
106144
105821
|
height: number;
|
|
@@ -106167,25 +105844,6 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
106167
105844
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
106168
105845
|
id: string;
|
|
106169
105846
|
name: string;
|
|
106170
|
-
svg: {
|
|
106171
|
-
type: "FigmaRender";
|
|
106172
|
-
originKey: string;
|
|
106173
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
106174
|
-
format: "Svg";
|
|
106175
|
-
fileId: string;
|
|
106176
|
-
nodeId: string;
|
|
106177
|
-
fileVersionId?: string | undefined;
|
|
106178
|
-
};
|
|
106179
|
-
png: {
|
|
106180
|
-
type: "FigmaRender";
|
|
106181
|
-
originKey: string;
|
|
106182
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
106183
|
-
format: "Png";
|
|
106184
|
-
fileId: string;
|
|
106185
|
-
scale: number;
|
|
106186
|
-
nodeId: string;
|
|
106187
|
-
fileVersionId?: string | undefined;
|
|
106188
|
-
};
|
|
106189
105847
|
size?: {
|
|
106190
105848
|
width?: number | null | undefined;
|
|
106191
105849
|
height?: number | null | undefined;
|
|
@@ -106196,25 +105854,6 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
106196
105854
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
106197
105855
|
id: string;
|
|
106198
105856
|
name: string;
|
|
106199
|
-
svg: {
|
|
106200
|
-
type: "FigmaRender";
|
|
106201
|
-
originKey: string;
|
|
106202
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
106203
|
-
format: "Svg";
|
|
106204
|
-
fileId: string;
|
|
106205
|
-
nodeId: string;
|
|
106206
|
-
fileVersionId?: string | undefined;
|
|
106207
|
-
};
|
|
106208
|
-
png: {
|
|
106209
|
-
type: "FigmaRender";
|
|
106210
|
-
originKey: string;
|
|
106211
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
106212
|
-
format: "Png";
|
|
106213
|
-
fileId: string;
|
|
106214
|
-
scale: number;
|
|
106215
|
-
nodeId: string;
|
|
106216
|
-
fileVersionId?: string | undefined;
|
|
106217
|
-
};
|
|
106218
105857
|
size?: {
|
|
106219
105858
|
width?: number | null | undefined;
|
|
106220
105859
|
height?: number | null | undefined;
|
|
@@ -107534,25 +107173,6 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
107534
107173
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
107535
107174
|
id: string;
|
|
107536
107175
|
name: string;
|
|
107537
|
-
svg: {
|
|
107538
|
-
type: "FigmaRender";
|
|
107539
|
-
originKey: string;
|
|
107540
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
107541
|
-
format: "Svg";
|
|
107542
|
-
fileId: string;
|
|
107543
|
-
nodeId: string;
|
|
107544
|
-
fileVersionId?: string | undefined;
|
|
107545
|
-
};
|
|
107546
|
-
png: {
|
|
107547
|
-
type: "FigmaRender";
|
|
107548
|
-
originKey: string;
|
|
107549
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
107550
|
-
format: "Png";
|
|
107551
|
-
fileId: string;
|
|
107552
|
-
scale: number;
|
|
107553
|
-
nodeId: string;
|
|
107554
|
-
fileVersionId?: string | undefined;
|
|
107555
|
-
};
|
|
107556
107176
|
size?: {
|
|
107557
107177
|
width: number;
|
|
107558
107178
|
height: number;
|
|
@@ -108863,25 +108483,6 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
108863
108483
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
108864
108484
|
id: string;
|
|
108865
108485
|
name: string;
|
|
108866
|
-
svg: {
|
|
108867
|
-
type: "FigmaRender";
|
|
108868
|
-
originKey: string;
|
|
108869
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
108870
|
-
format: "Svg";
|
|
108871
|
-
fileId: string;
|
|
108872
|
-
nodeId: string;
|
|
108873
|
-
fileVersionId?: string | undefined;
|
|
108874
|
-
};
|
|
108875
|
-
png: {
|
|
108876
|
-
type: "FigmaRender";
|
|
108877
|
-
originKey: string;
|
|
108878
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
108879
|
-
format: "Png";
|
|
108880
|
-
fileId: string;
|
|
108881
|
-
scale: number;
|
|
108882
|
-
nodeId: string;
|
|
108883
|
-
fileVersionId?: string | undefined;
|
|
108884
|
-
};
|
|
108885
108486
|
size?: {
|
|
108886
108487
|
width?: number | null | undefined;
|
|
108887
108488
|
height?: number | null | undefined;
|
|
@@ -108892,25 +108493,6 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
108892
108493
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
108893
108494
|
id: string;
|
|
108894
108495
|
name: string;
|
|
108895
|
-
svg: {
|
|
108896
|
-
type: "FigmaRender";
|
|
108897
|
-
originKey: string;
|
|
108898
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
108899
|
-
format: "Svg";
|
|
108900
|
-
fileId: string;
|
|
108901
|
-
nodeId: string;
|
|
108902
|
-
fileVersionId?: string | undefined;
|
|
108903
|
-
};
|
|
108904
|
-
png: {
|
|
108905
|
-
type: "FigmaRender";
|
|
108906
|
-
originKey: string;
|
|
108907
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
108908
|
-
format: "Png";
|
|
108909
|
-
fileId: string;
|
|
108910
|
-
scale: number;
|
|
108911
|
-
nodeId: string;
|
|
108912
|
-
fileVersionId?: string | undefined;
|
|
108913
|
-
};
|
|
108914
108496
|
size?: {
|
|
108915
108497
|
width?: number | null | undefined;
|
|
108916
108498
|
height?: number | null | undefined;
|
|
@@ -110495,147 +110077,11 @@ declare const DataSourceImportModel: z.ZodObject<{
|
|
|
110495
110077
|
}>;
|
|
110496
110078
|
type DataSourceImportModel = z.infer<typeof DataSourceImportModel>;
|
|
110497
110079
|
|
|
110498
|
-
|
|
110499
|
-
id: z.ZodString;
|
|
110500
|
-
name: z.ZodString;
|
|
110501
|
-
type: z.ZodEnum<["DOCUMENT", "CANVAS", "FRAME", "COMPONENT", "COMPONENT_SET"]>;
|
|
110502
|
-
size: z.ZodEffects<z.ZodOptional<z.ZodObject<{
|
|
110503
|
-
width: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
110504
|
-
height: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
110505
|
-
}, "strip", z.ZodTypeAny, {
|
|
110506
|
-
width: number;
|
|
110507
|
-
height: number;
|
|
110508
|
-
}, {
|
|
110509
|
-
width?: number | null | undefined;
|
|
110510
|
-
height?: number | null | undefined;
|
|
110511
|
-
}>>, {
|
|
110512
|
-
width: number;
|
|
110513
|
-
height: number;
|
|
110514
|
-
} | undefined, {
|
|
110515
|
-
width?: number | null | undefined;
|
|
110516
|
-
height?: number | null | undefined;
|
|
110517
|
-
} | undefined>;
|
|
110518
|
-
parentComponentSetId: z.ZodOptional<z.ZodString>;
|
|
110519
|
-
}, {
|
|
110520
|
-
png: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
110521
|
-
scope: z.ZodEnum<["DocumentationFrame", "ComponentThumbnail", "DesignSystem", "Documentation"]>;
|
|
110522
|
-
}, {
|
|
110523
|
-
type: z.ZodLiteral<"FigmaRender">;
|
|
110524
|
-
fileId: z.ZodString;
|
|
110525
|
-
fileVersionId: z.ZodOptional<z.ZodString>;
|
|
110526
|
-
nodeId: z.ZodString;
|
|
110527
|
-
originKey: z.ZodString;
|
|
110528
|
-
}>, {
|
|
110529
|
-
format: z.ZodLiteral<"Png">;
|
|
110530
|
-
scale: z.ZodNumber;
|
|
110531
|
-
}>, "strip", z.ZodTypeAny, {
|
|
110532
|
-
type: "FigmaRender";
|
|
110533
|
-
originKey: string;
|
|
110534
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
110535
|
-
format: "Png";
|
|
110536
|
-
fileId: string;
|
|
110537
|
-
scale: number;
|
|
110538
|
-
nodeId: string;
|
|
110539
|
-
fileVersionId?: string | undefined;
|
|
110540
|
-
}, {
|
|
110541
|
-
type: "FigmaRender";
|
|
110542
|
-
originKey: string;
|
|
110543
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
110544
|
-
format: "Png";
|
|
110545
|
-
fileId: string;
|
|
110546
|
-
scale: number;
|
|
110547
|
-
nodeId: string;
|
|
110548
|
-
fileVersionId?: string | undefined;
|
|
110549
|
-
}>;
|
|
110550
|
-
svg: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
110551
|
-
scope: z.ZodEnum<["DocumentationFrame", "ComponentThumbnail", "DesignSystem", "Documentation"]>;
|
|
110552
|
-
}, {
|
|
110553
|
-
type: z.ZodLiteral<"FigmaRender">;
|
|
110554
|
-
fileId: z.ZodString;
|
|
110555
|
-
fileVersionId: z.ZodOptional<z.ZodString>;
|
|
110556
|
-
nodeId: z.ZodString;
|
|
110557
|
-
originKey: z.ZodString;
|
|
110558
|
-
}>, {
|
|
110559
|
-
format: z.ZodLiteral<"Svg">;
|
|
110560
|
-
}>, "strip", z.ZodTypeAny, {
|
|
110561
|
-
type: "FigmaRender";
|
|
110562
|
-
originKey: string;
|
|
110563
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
110564
|
-
format: "Svg";
|
|
110565
|
-
fileId: string;
|
|
110566
|
-
nodeId: string;
|
|
110567
|
-
fileVersionId?: string | undefined;
|
|
110568
|
-
}, {
|
|
110569
|
-
type: "FigmaRender";
|
|
110570
|
-
originKey: string;
|
|
110571
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
110572
|
-
format: "Svg";
|
|
110573
|
-
fileId: string;
|
|
110574
|
-
nodeId: string;
|
|
110575
|
-
fileVersionId?: string | undefined;
|
|
110576
|
-
}>;
|
|
110577
|
-
}>, "strip", z.ZodTypeAny, {
|
|
110578
|
-
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
110579
|
-
id: string;
|
|
110580
|
-
name: string;
|
|
110581
|
-
svg: {
|
|
110582
|
-
type: "FigmaRender";
|
|
110583
|
-
originKey: string;
|
|
110584
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
110585
|
-
format: "Svg";
|
|
110586
|
-
fileId: string;
|
|
110587
|
-
nodeId: string;
|
|
110588
|
-
fileVersionId?: string | undefined;
|
|
110589
|
-
};
|
|
110590
|
-
png: {
|
|
110591
|
-
type: "FigmaRender";
|
|
110592
|
-
originKey: string;
|
|
110593
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
110594
|
-
format: "Png";
|
|
110595
|
-
fileId: string;
|
|
110596
|
-
scale: number;
|
|
110597
|
-
nodeId: string;
|
|
110598
|
-
fileVersionId?: string | undefined;
|
|
110599
|
-
};
|
|
110600
|
-
size?: {
|
|
110601
|
-
width: number;
|
|
110602
|
-
height: number;
|
|
110603
|
-
} | undefined;
|
|
110604
|
-
parentComponentSetId?: string | undefined;
|
|
110605
|
-
}, {
|
|
110606
|
-
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
110607
|
-
id: string;
|
|
110608
|
-
name: string;
|
|
110609
|
-
svg: {
|
|
110610
|
-
type: "FigmaRender";
|
|
110611
|
-
originKey: string;
|
|
110612
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
110613
|
-
format: "Svg";
|
|
110614
|
-
fileId: string;
|
|
110615
|
-
nodeId: string;
|
|
110616
|
-
fileVersionId?: string | undefined;
|
|
110617
|
-
};
|
|
110618
|
-
png: {
|
|
110619
|
-
type: "FigmaRender";
|
|
110620
|
-
originKey: string;
|
|
110621
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
110622
|
-
format: "Png";
|
|
110623
|
-
fileId: string;
|
|
110624
|
-
scale: number;
|
|
110625
|
-
nodeId: string;
|
|
110626
|
-
fileVersionId?: string | undefined;
|
|
110627
|
-
};
|
|
110628
|
-
size?: {
|
|
110629
|
-
width?: number | null | undefined;
|
|
110630
|
-
height?: number | null | undefined;
|
|
110631
|
-
} | undefined;
|
|
110632
|
-
parentComponentSetId?: string | undefined;
|
|
110633
|
-
}>;
|
|
110634
|
-
type FigmaFileStructureNodeImportModelBaseInput = z.input<typeof FigmaFileStructureNodeImportModelBase> & {
|
|
110080
|
+
type FigmaFileStructureNodeImportModelBaseInput = z.input<typeof FigmaFileStructureNodeBase> & {
|
|
110635
110081
|
children: FigmaFileStructureNodeImportModelBaseInput[];
|
|
110636
110082
|
};
|
|
110637
110083
|
declare const FigmaFileStructureNodeImportModel: z.ZodType<FigmaFileStructureNodeImportModel, ZodTypeDef, FigmaFileStructureNodeImportModelBaseInput>;
|
|
110638
|
-
type FigmaFileStructureNodeImportModel = z.infer<typeof
|
|
110084
|
+
type FigmaFileStructureNodeImportModel = z.infer<typeof FigmaFileStructureNodeBase> & {
|
|
110639
110085
|
children: FigmaFileStructureNodeImportModel[];
|
|
110640
110086
|
};
|
|
110641
110087
|
declare const FigmaFileStructureImportModel: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
@@ -110691,25 +110137,6 @@ declare const FigmaFileStructureImportModel: z.ZodObject<z.objectUtil.extendShap
|
|
|
110691
110137
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
110692
110138
|
id: string;
|
|
110693
110139
|
name: string;
|
|
110694
|
-
svg: {
|
|
110695
|
-
type: "FigmaRender";
|
|
110696
|
-
originKey: string;
|
|
110697
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
110698
|
-
format: "Svg";
|
|
110699
|
-
fileId: string;
|
|
110700
|
-
nodeId: string;
|
|
110701
|
-
fileVersionId?: string | undefined;
|
|
110702
|
-
};
|
|
110703
|
-
png: {
|
|
110704
|
-
type: "FigmaRender";
|
|
110705
|
-
originKey: string;
|
|
110706
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
110707
|
-
format: "Png";
|
|
110708
|
-
fileId: string;
|
|
110709
|
-
scale: number;
|
|
110710
|
-
nodeId: string;
|
|
110711
|
-
fileVersionId?: string | undefined;
|
|
110712
|
-
};
|
|
110713
110140
|
size?: {
|
|
110714
110141
|
width: number;
|
|
110715
110142
|
height: number;
|
|
@@ -110728,25 +110155,6 @@ declare const FigmaFileStructureImportModel: z.ZodObject<z.objectUtil.extendShap
|
|
|
110728
110155
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
110729
110156
|
id: string;
|
|
110730
110157
|
name: string;
|
|
110731
|
-
svg: {
|
|
110732
|
-
type: "FigmaRender";
|
|
110733
|
-
originKey: string;
|
|
110734
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
110735
|
-
format: "Svg";
|
|
110736
|
-
fileId: string;
|
|
110737
|
-
nodeId: string;
|
|
110738
|
-
fileVersionId?: string | undefined;
|
|
110739
|
-
};
|
|
110740
|
-
png: {
|
|
110741
|
-
type: "FigmaRender";
|
|
110742
|
-
originKey: string;
|
|
110743
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
110744
|
-
format: "Png";
|
|
110745
|
-
fileId: string;
|
|
110746
|
-
scale: number;
|
|
110747
|
-
nodeId: string;
|
|
110748
|
-
fileVersionId?: string | undefined;
|
|
110749
|
-
};
|
|
110750
110158
|
size?: {
|
|
110751
110159
|
width?: number | null | undefined;
|
|
110752
110160
|
height?: number | null | undefined;
|
|
@@ -110778,25 +110186,6 @@ declare const FigmaFileStructureImportModel: z.ZodObject<z.objectUtil.extendShap
|
|
|
110778
110186
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
110779
110187
|
id: string;
|
|
110780
110188
|
name: string;
|
|
110781
|
-
svg: {
|
|
110782
|
-
type: "FigmaRender";
|
|
110783
|
-
originKey: string;
|
|
110784
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
110785
|
-
format: "Svg";
|
|
110786
|
-
fileId: string;
|
|
110787
|
-
nodeId: string;
|
|
110788
|
-
fileVersionId?: string | undefined;
|
|
110789
|
-
};
|
|
110790
|
-
png: {
|
|
110791
|
-
type: "FigmaRender";
|
|
110792
|
-
originKey: string;
|
|
110793
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
110794
|
-
format: "Png";
|
|
110795
|
-
fileId: string;
|
|
110796
|
-
scale: number;
|
|
110797
|
-
nodeId: string;
|
|
110798
|
-
fileVersionId?: string | undefined;
|
|
110799
|
-
};
|
|
110800
110189
|
size?: {
|
|
110801
110190
|
width: number;
|
|
110802
110191
|
height: number;
|
|
@@ -110828,25 +110217,6 @@ declare const FigmaFileStructureImportModel: z.ZodObject<z.objectUtil.extendShap
|
|
|
110828
110217
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
110829
110218
|
id: string;
|
|
110830
110219
|
name: string;
|
|
110831
|
-
svg: {
|
|
110832
|
-
type: "FigmaRender";
|
|
110833
|
-
originKey: string;
|
|
110834
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
110835
|
-
format: "Svg";
|
|
110836
|
-
fileId: string;
|
|
110837
|
-
nodeId: string;
|
|
110838
|
-
fileVersionId?: string | undefined;
|
|
110839
|
-
};
|
|
110840
|
-
png: {
|
|
110841
|
-
type: "FigmaRender";
|
|
110842
|
-
originKey: string;
|
|
110843
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
110844
|
-
format: "Png";
|
|
110845
|
-
fileId: string;
|
|
110846
|
-
scale: number;
|
|
110847
|
-
nodeId: string;
|
|
110848
|
-
fileVersionId?: string | undefined;
|
|
110849
|
-
};
|
|
110850
110220
|
size?: {
|
|
110851
110221
|
width?: number | null | undefined;
|
|
110852
110222
|
height?: number | null | undefined;
|
|
@@ -110925,25 +110295,6 @@ declare const FigmaFileStructureImportModelInput: z.ZodObject<z.objectUtil.exten
|
|
|
110925
110295
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
110926
110296
|
id: string;
|
|
110927
110297
|
name: string;
|
|
110928
|
-
svg: {
|
|
110929
|
-
type: "FigmaRender";
|
|
110930
|
-
originKey: string;
|
|
110931
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
110932
|
-
format: "Svg";
|
|
110933
|
-
fileId: string;
|
|
110934
|
-
nodeId: string;
|
|
110935
|
-
fileVersionId?: string | undefined;
|
|
110936
|
-
};
|
|
110937
|
-
png: {
|
|
110938
|
-
type: "FigmaRender";
|
|
110939
|
-
originKey: string;
|
|
110940
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
110941
|
-
format: "Png";
|
|
110942
|
-
fileId: string;
|
|
110943
|
-
scale: number;
|
|
110944
|
-
nodeId: string;
|
|
110945
|
-
fileVersionId?: string | undefined;
|
|
110946
|
-
};
|
|
110947
110298
|
size?: {
|
|
110948
110299
|
width: number;
|
|
110949
110300
|
height: number;
|
|
@@ -110962,25 +110313,6 @@ declare const FigmaFileStructureImportModelInput: z.ZodObject<z.objectUtil.exten
|
|
|
110962
110313
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
110963
110314
|
id: string;
|
|
110964
110315
|
name: string;
|
|
110965
|
-
svg: {
|
|
110966
|
-
type: "FigmaRender";
|
|
110967
|
-
originKey: string;
|
|
110968
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
110969
|
-
format: "Svg";
|
|
110970
|
-
fileId: string;
|
|
110971
|
-
nodeId: string;
|
|
110972
|
-
fileVersionId?: string | undefined;
|
|
110973
|
-
};
|
|
110974
|
-
png: {
|
|
110975
|
-
type: "FigmaRender";
|
|
110976
|
-
originKey: string;
|
|
110977
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
110978
|
-
format: "Png";
|
|
110979
|
-
fileId: string;
|
|
110980
|
-
scale: number;
|
|
110981
|
-
nodeId: string;
|
|
110982
|
-
fileVersionId?: string | undefined;
|
|
110983
|
-
};
|
|
110984
110316
|
size?: {
|
|
110985
110317
|
width?: number | null | undefined;
|
|
110986
110318
|
height?: number | null | undefined;
|
|
@@ -111003,25 +110335,6 @@ declare const FigmaFileStructureImportModelInput: z.ZodObject<z.objectUtil.exten
|
|
|
111003
110335
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
111004
110336
|
id: string;
|
|
111005
110337
|
name: string;
|
|
111006
|
-
svg: {
|
|
111007
|
-
type: "FigmaRender";
|
|
111008
|
-
originKey: string;
|
|
111009
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
111010
|
-
format: "Svg";
|
|
111011
|
-
fileId: string;
|
|
111012
|
-
nodeId: string;
|
|
111013
|
-
fileVersionId?: string | undefined;
|
|
111014
|
-
};
|
|
111015
|
-
png: {
|
|
111016
|
-
type: "FigmaRender";
|
|
111017
|
-
originKey: string;
|
|
111018
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
111019
|
-
format: "Png";
|
|
111020
|
-
fileId: string;
|
|
111021
|
-
scale: number;
|
|
111022
|
-
nodeId: string;
|
|
111023
|
-
fileVersionId?: string | undefined;
|
|
111024
|
-
};
|
|
111025
110338
|
size?: {
|
|
111026
110339
|
width: number;
|
|
111027
110340
|
height: number;
|
|
@@ -111050,25 +110363,6 @@ declare const FigmaFileStructureImportModelInput: z.ZodObject<z.objectUtil.exten
|
|
|
111050
110363
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
111051
110364
|
id: string;
|
|
111052
110365
|
name: string;
|
|
111053
|
-
svg: {
|
|
111054
|
-
type: "FigmaRender";
|
|
111055
|
-
originKey: string;
|
|
111056
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
111057
|
-
format: "Svg";
|
|
111058
|
-
fileId: string;
|
|
111059
|
-
nodeId: string;
|
|
111060
|
-
fileVersionId?: string | undefined;
|
|
111061
|
-
};
|
|
111062
|
-
png: {
|
|
111063
|
-
type: "FigmaRender";
|
|
111064
|
-
originKey: string;
|
|
111065
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
111066
|
-
format: "Png";
|
|
111067
|
-
fileId: string;
|
|
111068
|
-
scale: number;
|
|
111069
|
-
nodeId: string;
|
|
111070
|
-
fileVersionId?: string | undefined;
|
|
111071
|
-
};
|
|
111072
110366
|
size?: {
|
|
111073
110367
|
width?: number | null | undefined;
|
|
111074
110368
|
height?: number | null | undefined;
|