@supernova-studio/model 0.57.4 → 0.57.6
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 +85 -47
- package/dist/index.d.ts +85 -47
- package/dist/index.js +22 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +21 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/elements/data/component.ts +1 -0
- package/src/dsm/elements/figma-component.ts +1 -0
- package/src/dsm/elements/tokens.ts +16 -2
- package/src/dsm/import/component.ts +1 -0
- package/src/export/export-runner/export-context.ts +6 -2
package/dist/index.d.mts
CHANGED
|
@@ -36771,6 +36771,7 @@ declare const ComponentElementData: z.ZodObject<{
|
|
|
36771
36771
|
defaultValue: string;
|
|
36772
36772
|
}> | null | undefined>;
|
|
36773
36773
|
variantPropertyValues: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, z.ZodTypeDef, Record<string, string>>>>, Record<string, string> | undefined, Record<string, string> | null | undefined>;
|
|
36774
|
+
renderNodeId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
36774
36775
|
}, "strip", z.ZodTypeAny, {
|
|
36775
36776
|
thumbnailImage: {
|
|
36776
36777
|
value: {
|
|
@@ -36813,6 +36814,7 @@ declare const ComponentElementData: z.ZodObject<{
|
|
|
36813
36814
|
defaultValue: string;
|
|
36814
36815
|
}> | undefined;
|
|
36815
36816
|
variantPropertyValues?: Record<string, string> | undefined;
|
|
36817
|
+
renderNodeId?: string | undefined;
|
|
36816
36818
|
}, {
|
|
36817
36819
|
thumbnailImage: {
|
|
36818
36820
|
value: {
|
|
@@ -36855,6 +36857,7 @@ declare const ComponentElementData: z.ZodObject<{
|
|
|
36855
36857
|
defaultValue: string;
|
|
36856
36858
|
}> | null | undefined;
|
|
36857
36859
|
variantPropertyValues?: Record<string, string> | null | undefined;
|
|
36860
|
+
renderNodeId?: string | null | undefined;
|
|
36858
36861
|
}>;
|
|
36859
36862
|
}, "strip", z.ZodTypeAny, {
|
|
36860
36863
|
value: {
|
|
@@ -36899,6 +36902,7 @@ declare const ComponentElementData: z.ZodObject<{
|
|
|
36899
36902
|
defaultValue: string;
|
|
36900
36903
|
}> | undefined;
|
|
36901
36904
|
variantPropertyValues?: Record<string, string> | undefined;
|
|
36905
|
+
renderNodeId?: string | undefined;
|
|
36902
36906
|
};
|
|
36903
36907
|
}, {
|
|
36904
36908
|
value: {
|
|
@@ -36943,6 +36947,7 @@ declare const ComponentElementData: z.ZodObject<{
|
|
|
36943
36947
|
defaultValue: string;
|
|
36944
36948
|
}> | null | undefined;
|
|
36945
36949
|
variantPropertyValues?: Record<string, string> | null | undefined;
|
|
36950
|
+
renderNodeId?: string | null | undefined;
|
|
36946
36951
|
};
|
|
36947
36952
|
}>;
|
|
36948
36953
|
type ComponentElementData = z.infer<typeof ComponentElementData>;
|
|
@@ -56220,6 +56225,7 @@ declare const FigmaComponent: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
56220
56225
|
}>>;
|
|
56221
56226
|
isAsset: z.ZodBoolean;
|
|
56222
56227
|
parentComponentPersistentId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
56228
|
+
renderNodeId: z.ZodOptional<z.ZodString>;
|
|
56223
56229
|
}>, "strip", z.ZodTypeAny, {
|
|
56224
56230
|
id: string;
|
|
56225
56231
|
createdAt: Date;
|
|
@@ -56279,6 +56285,7 @@ declare const FigmaComponent: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
56279
56285
|
defaultValue: string;
|
|
56280
56286
|
}> | undefined;
|
|
56281
56287
|
variantPropertyValues?: Record<string, string> | undefined;
|
|
56288
|
+
renderNodeId?: string | undefined;
|
|
56282
56289
|
}, {
|
|
56283
56290
|
id: string;
|
|
56284
56291
|
createdAt: Date;
|
|
@@ -56338,6 +56345,7 @@ declare const FigmaComponent: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
56338
56345
|
defaultValue: string;
|
|
56339
56346
|
}> | undefined;
|
|
56340
56347
|
variantPropertyValues?: Record<string, string> | undefined;
|
|
56348
|
+
renderNodeId?: string | undefined;
|
|
56341
56349
|
}>;
|
|
56342
56350
|
type FigmaComponent = z.infer<typeof FigmaComponent>;
|
|
56343
56351
|
declare const FigmaComponentOrigin: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -74506,6 +74514,7 @@ type DesignTokensDiff = {
|
|
|
74506
74514
|
toUpdate: UpdateDesignToken[];
|
|
74507
74515
|
};
|
|
74508
74516
|
declare function extractTokenTypedData<T extends DesignTokenType, I extends DesignTokenTypedDataOfType<T>>(source: I): DesignTokenTypedDataOfType<T>;
|
|
74517
|
+
declare function convertTokenTypedData<I extends DesignTokenType, O extends DesignTokenType>(source: DesignTokenTypedDataOfType<I>, type: O): DesignTokenTypedDataOfType<O>;
|
|
74509
74518
|
declare function isImportedDesignToken<T extends DesignTokenType>(designToken: DesignTokenOfType<T>): designToken is ImportedDesignTokenOfType<T>;
|
|
74510
74519
|
declare function isDesignTokenOfType<T extends DesignTokenType>(designToken: DesignToken, type: T): designToken is DesignTokenOfType<T>;
|
|
74511
74520
|
declare function designTokenTypeFilter<T extends DesignTokenType>(type: T): (designToken: DesignToken) => designToken is DesignTokenOfType<T>;
|
|
@@ -82623,6 +82632,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
82623
82632
|
defaultValue: string;
|
|
82624
82633
|
}>]>>>;
|
|
82625
82634
|
variantPropertyValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
82635
|
+
renderNodeId: z.ZodString;
|
|
82626
82636
|
}>, {
|
|
82627
82637
|
isAsset: z.ZodBoolean;
|
|
82628
82638
|
svg: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
@@ -82685,6 +82695,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
82685
82695
|
height?: number | undefined;
|
|
82686
82696
|
nodeId?: string | undefined;
|
|
82687
82697
|
};
|
|
82698
|
+
renderNodeId: string;
|
|
82688
82699
|
brandPersistentId: string;
|
|
82689
82700
|
sortOrder: number;
|
|
82690
82701
|
meta: {
|
|
@@ -82764,6 +82775,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
82764
82775
|
height?: number | undefined;
|
|
82765
82776
|
nodeId?: string | undefined;
|
|
82766
82777
|
};
|
|
82778
|
+
renderNodeId: string;
|
|
82767
82779
|
brandPersistentId: string;
|
|
82768
82780
|
sortOrder: number;
|
|
82769
82781
|
meta: {
|
|
@@ -89748,6 +89760,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
89748
89760
|
height?: number | undefined;
|
|
89749
89761
|
nodeId?: string | undefined;
|
|
89750
89762
|
};
|
|
89763
|
+
renderNodeId: string;
|
|
89751
89764
|
brandPersistentId: string;
|
|
89752
89765
|
sortOrder: number;
|
|
89753
89766
|
meta: {
|
|
@@ -91107,6 +91120,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
91107
91120
|
height?: number | undefined;
|
|
91108
91121
|
nodeId?: string | undefined;
|
|
91109
91122
|
};
|
|
91123
|
+
renderNodeId: string;
|
|
91110
91124
|
brandPersistentId: string;
|
|
91111
91125
|
sortOrder: number;
|
|
91112
91126
|
meta: {
|
|
@@ -94461,6 +94475,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
94461
94475
|
defaultValue: string;
|
|
94462
94476
|
}>]>>>;
|
|
94463
94477
|
variantPropertyValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
94478
|
+
renderNodeId: z.ZodString;
|
|
94464
94479
|
}>, {
|
|
94465
94480
|
originMetadata: z.ZodObject<{
|
|
94466
94481
|
nodeId: z.ZodOptional<z.ZodString>;
|
|
@@ -94477,6 +94492,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
94477
94492
|
}>;
|
|
94478
94493
|
}>, "strip", z.ZodTypeAny, {
|
|
94479
94494
|
id: string;
|
|
94495
|
+
renderNodeId: string;
|
|
94480
94496
|
meta: {
|
|
94481
94497
|
name: string;
|
|
94482
94498
|
description?: string | undefined;
|
|
@@ -94542,6 +94558,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
94542
94558
|
parentComponentId?: string | undefined;
|
|
94543
94559
|
}, {
|
|
94544
94560
|
id: string;
|
|
94561
|
+
renderNodeId: string;
|
|
94545
94562
|
meta: {
|
|
94546
94563
|
name: string;
|
|
94547
94564
|
description?: string | undefined;
|
|
@@ -94806,6 +94823,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
94806
94823
|
defaultValue: string;
|
|
94807
94824
|
}>]>>>;
|
|
94808
94825
|
variantPropertyValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
94826
|
+
renderNodeId: z.ZodString;
|
|
94809
94827
|
}>, {
|
|
94810
94828
|
svg: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
94811
94829
|
scope: z.ZodEnum<["DocumentationFrame", "ComponentThumbnail", "DesignSystem", "Documentation"]>;
|
|
@@ -94858,6 +94876,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
94858
94876
|
fileId: string;
|
|
94859
94877
|
fileVersionId?: string | undefined;
|
|
94860
94878
|
};
|
|
94879
|
+
renderNodeId: string;
|
|
94861
94880
|
meta: {
|
|
94862
94881
|
name: string;
|
|
94863
94882
|
description?: string | undefined;
|
|
@@ -94932,6 +94951,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
94932
94951
|
fileId: string;
|
|
94933
94952
|
fileVersionId?: string | undefined;
|
|
94934
94953
|
};
|
|
94954
|
+
renderNodeId: string;
|
|
94935
94955
|
meta: {
|
|
94936
94956
|
name: string;
|
|
94937
94957
|
description?: string | undefined;
|
|
@@ -101836,6 +101856,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
101836
101856
|
fileId: string;
|
|
101837
101857
|
fileVersionId?: string | undefined;
|
|
101838
101858
|
};
|
|
101859
|
+
renderNodeId: string;
|
|
101839
101860
|
meta: {
|
|
101840
101861
|
name: string;
|
|
101841
101862
|
description?: string | undefined;
|
|
@@ -101902,6 +101923,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
101902
101923
|
}[];
|
|
101903
101924
|
components: {
|
|
101904
101925
|
id: string;
|
|
101926
|
+
renderNodeId: string;
|
|
101905
101927
|
meta: {
|
|
101906
101928
|
name: string;
|
|
101907
101929
|
description?: string | undefined;
|
|
@@ -103156,6 +103178,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
103156
103178
|
fileId: string;
|
|
103157
103179
|
fileVersionId?: string | undefined;
|
|
103158
103180
|
};
|
|
103181
|
+
renderNodeId: string;
|
|
103159
103182
|
meta: {
|
|
103160
103183
|
name: string;
|
|
103161
103184
|
description?: string | undefined;
|
|
@@ -103222,6 +103245,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
103222
103245
|
}[] | undefined;
|
|
103223
103246
|
components?: {
|
|
103224
103247
|
id: string;
|
|
103248
|
+
renderNodeId: string;
|
|
103225
103249
|
meta: {
|
|
103226
103250
|
name: string;
|
|
103227
103251
|
description?: string | undefined;
|
|
@@ -104308,6 +104332,7 @@ declare const FigmaComponentImportModel: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
104308
104332
|
defaultValue: string;
|
|
104309
104333
|
}>]>>>;
|
|
104310
104334
|
variantPropertyValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
104335
|
+
renderNodeId: z.ZodString;
|
|
104311
104336
|
}>, {
|
|
104312
104337
|
isAsset: z.ZodBoolean;
|
|
104313
104338
|
svg: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
@@ -104370,6 +104395,7 @@ declare const FigmaComponentImportModel: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
104370
104395
|
height?: number | undefined;
|
|
104371
104396
|
nodeId?: string | undefined;
|
|
104372
104397
|
};
|
|
104398
|
+
renderNodeId: string;
|
|
104373
104399
|
brandPersistentId: string;
|
|
104374
104400
|
sortOrder: number;
|
|
104375
104401
|
meta: {
|
|
@@ -104449,6 +104475,7 @@ declare const FigmaComponentImportModel: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
104449
104475
|
height?: number | undefined;
|
|
104450
104476
|
nodeId?: string | undefined;
|
|
104451
104477
|
};
|
|
104478
|
+
renderNodeId: string;
|
|
104452
104479
|
brandPersistentId: string;
|
|
104453
104480
|
sortOrder: number;
|
|
104454
104481
|
meta: {
|
|
@@ -104720,6 +104747,7 @@ declare const FigmaComponentImportModelInput: z.ZodObject<z.objectUtil.extendSha
|
|
|
104720
104747
|
defaultValue: string;
|
|
104721
104748
|
}>]>>>;
|
|
104722
104749
|
variantPropertyValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
104750
|
+
renderNodeId: z.ZodString;
|
|
104723
104751
|
}>, {
|
|
104724
104752
|
originMetadata: z.ZodObject<{
|
|
104725
104753
|
nodeId: z.ZodOptional<z.ZodString>;
|
|
@@ -104736,6 +104764,7 @@ declare const FigmaComponentImportModelInput: z.ZodObject<z.objectUtil.extendSha
|
|
|
104736
104764
|
}>;
|
|
104737
104765
|
}>, "strip", z.ZodTypeAny, {
|
|
104738
104766
|
id: string;
|
|
104767
|
+
renderNodeId: string;
|
|
104739
104768
|
meta: {
|
|
104740
104769
|
name: string;
|
|
104741
104770
|
description?: string | undefined;
|
|
@@ -104801,6 +104830,7 @@ declare const FigmaComponentImportModelInput: z.ZodObject<z.objectUtil.extendSha
|
|
|
104801
104830
|
parentComponentId?: string | undefined;
|
|
104802
104831
|
}, {
|
|
104803
104832
|
id: string;
|
|
104833
|
+
renderNodeId: string;
|
|
104804
104834
|
meta: {
|
|
104805
104835
|
name: string;
|
|
104806
104836
|
description?: string | undefined;
|
|
@@ -105066,6 +105096,7 @@ declare const AssetImportModelInput: z.ZodObject<z.objectUtil.extendShape<z.obje
|
|
|
105066
105096
|
defaultValue: string;
|
|
105067
105097
|
}>]>>>;
|
|
105068
105098
|
variantPropertyValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
105099
|
+
renderNodeId: z.ZodString;
|
|
105069
105100
|
}>, {
|
|
105070
105101
|
svg: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
105071
105102
|
scope: z.ZodEnum<["DocumentationFrame", "ComponentThumbnail", "DesignSystem", "Documentation"]>;
|
|
@@ -105118,6 +105149,7 @@ declare const AssetImportModelInput: z.ZodObject<z.objectUtil.extendShape<z.obje
|
|
|
105118
105149
|
fileId: string;
|
|
105119
105150
|
fileVersionId?: string | undefined;
|
|
105120
105151
|
};
|
|
105152
|
+
renderNodeId: string;
|
|
105121
105153
|
meta: {
|
|
105122
105154
|
name: string;
|
|
105123
105155
|
description?: string | undefined;
|
|
@@ -105192,6 +105224,7 @@ declare const AssetImportModelInput: z.ZodObject<z.objectUtil.extendShape<z.obje
|
|
|
105192
105224
|
fileId: string;
|
|
105193
105225
|
fileVersionId?: string | undefined;
|
|
105194
105226
|
};
|
|
105227
|
+
renderNodeId: string;
|
|
105195
105228
|
meta: {
|
|
105196
105229
|
name: string;
|
|
105197
105230
|
description?: string | undefined;
|
|
@@ -142701,17 +142734,7 @@ declare const ExportJobDocumentationContext: z.ZodObject<{
|
|
|
142701
142734
|
versionSlug: string;
|
|
142702
142735
|
}>;
|
|
142703
142736
|
type ExportJobDocumentationContext = z.infer<typeof ExportJobDocumentationContext>;
|
|
142704
|
-
declare const
|
|
142705
|
-
apiUrl: z.ZodString;
|
|
142706
|
-
accessToken: z.ZodString;
|
|
142707
|
-
designSystemId: z.ZodString;
|
|
142708
|
-
designSystemName: z.ZodString;
|
|
142709
|
-
exporterId: z.ZodString;
|
|
142710
|
-
versionId: z.ZodString;
|
|
142711
|
-
brandId: z.ZodOptional<z.ZodString>;
|
|
142712
|
-
themeId: z.ZodOptional<z.ZodString>;
|
|
142713
|
-
themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
142714
|
-
exporterName: z.ZodString;
|
|
142737
|
+
declare const ExportJobExporterConfiguration: z.ZodObject<{
|
|
142715
142738
|
exporterPackageUrl: z.ZodString;
|
|
142716
142739
|
exporterPropertyValues: z.ZodArray<z.ZodObject<{
|
|
142717
142740
|
key: z.ZodString;
|
|
@@ -143514,27 +143537,7 @@ declare const ExportJobContext: z.ZodObject<{
|
|
|
143514
143537
|
};
|
|
143515
143538
|
key: string;
|
|
143516
143539
|
}>, "many">;
|
|
143517
|
-
documentation: z.ZodOptional<z.ZodObject<{
|
|
143518
|
-
isSingleVersionDocs: z.ZodBoolean;
|
|
143519
|
-
versionSlug: z.ZodString;
|
|
143520
|
-
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
143521
|
-
}, "strip", z.ZodTypeAny, {
|
|
143522
|
-
environment: "Live" | "Preview";
|
|
143523
|
-
isSingleVersionDocs: boolean;
|
|
143524
|
-
versionSlug: string;
|
|
143525
|
-
}, {
|
|
143526
|
-
environment: "Live" | "Preview";
|
|
143527
|
-
isSingleVersionDocs: boolean;
|
|
143528
|
-
versionSlug: string;
|
|
143529
|
-
}>>;
|
|
143530
143540
|
}, "strip", z.ZodTypeAny, {
|
|
143531
|
-
designSystemId: string;
|
|
143532
|
-
accessToken: string;
|
|
143533
|
-
versionId: string;
|
|
143534
|
-
designSystemName: string;
|
|
143535
|
-
exporterId: string;
|
|
143536
|
-
apiUrl: string;
|
|
143537
|
-
exporterName: string;
|
|
143538
143541
|
exporterPackageUrl: string;
|
|
143539
143542
|
exporterPropertyValues: {
|
|
143540
143543
|
value: string | number | boolean | {
|
|
@@ -143638,22 +143641,7 @@ declare const ExportJobContext: z.ZodObject<{
|
|
|
143638
143641
|
};
|
|
143639
143642
|
key: string;
|
|
143640
143643
|
}[];
|
|
143641
|
-
documentation?: {
|
|
143642
|
-
environment: "Live" | "Preview";
|
|
143643
|
-
isSingleVersionDocs: boolean;
|
|
143644
|
-
versionSlug: string;
|
|
143645
|
-
} | undefined;
|
|
143646
|
-
brandId?: string | undefined;
|
|
143647
|
-
themeId?: string | undefined;
|
|
143648
|
-
themePersistentIds?: string[] | undefined;
|
|
143649
143644
|
}, {
|
|
143650
|
-
designSystemId: string;
|
|
143651
|
-
accessToken: string;
|
|
143652
|
-
versionId: string;
|
|
143653
|
-
designSystemName: string;
|
|
143654
|
-
exporterId: string;
|
|
143655
|
-
apiUrl: string;
|
|
143656
|
-
exporterName: string;
|
|
143657
143645
|
exporterPackageUrl: string;
|
|
143658
143646
|
exporterPropertyValues: {
|
|
143659
143647
|
value: string | number | boolean | {
|
|
@@ -143757,6 +143745,56 @@ declare const ExportJobContext: z.ZodObject<{
|
|
|
143757
143745
|
};
|
|
143758
143746
|
key: string;
|
|
143759
143747
|
}[];
|
|
143748
|
+
}>;
|
|
143749
|
+
type ExportJobExporterConfiguration = z.infer<typeof ExportJobExporterConfiguration>;
|
|
143750
|
+
declare const ExportJobContext: z.ZodObject<{
|
|
143751
|
+
apiUrl: z.ZodString;
|
|
143752
|
+
accessToken: z.ZodString;
|
|
143753
|
+
designSystemId: z.ZodString;
|
|
143754
|
+
designSystemName: z.ZodString;
|
|
143755
|
+
exporterId: z.ZodString;
|
|
143756
|
+
versionId: z.ZodString;
|
|
143757
|
+
brandId: z.ZodOptional<z.ZodString>;
|
|
143758
|
+
themeId: z.ZodOptional<z.ZodString>;
|
|
143759
|
+
themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
143760
|
+
exporterName: z.ZodString;
|
|
143761
|
+
documentation: z.ZodOptional<z.ZodObject<{
|
|
143762
|
+
isSingleVersionDocs: z.ZodBoolean;
|
|
143763
|
+
versionSlug: z.ZodString;
|
|
143764
|
+
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
143765
|
+
}, "strip", z.ZodTypeAny, {
|
|
143766
|
+
environment: "Live" | "Preview";
|
|
143767
|
+
isSingleVersionDocs: boolean;
|
|
143768
|
+
versionSlug: string;
|
|
143769
|
+
}, {
|
|
143770
|
+
environment: "Live" | "Preview";
|
|
143771
|
+
isSingleVersionDocs: boolean;
|
|
143772
|
+
versionSlug: string;
|
|
143773
|
+
}>>;
|
|
143774
|
+
}, "strip", z.ZodTypeAny, {
|
|
143775
|
+
designSystemId: string;
|
|
143776
|
+
accessToken: string;
|
|
143777
|
+
versionId: string;
|
|
143778
|
+
designSystemName: string;
|
|
143779
|
+
exporterId: string;
|
|
143780
|
+
apiUrl: string;
|
|
143781
|
+
exporterName: string;
|
|
143782
|
+
documentation?: {
|
|
143783
|
+
environment: "Live" | "Preview";
|
|
143784
|
+
isSingleVersionDocs: boolean;
|
|
143785
|
+
versionSlug: string;
|
|
143786
|
+
} | undefined;
|
|
143787
|
+
brandId?: string | undefined;
|
|
143788
|
+
themeId?: string | undefined;
|
|
143789
|
+
themePersistentIds?: string[] | undefined;
|
|
143790
|
+
}, {
|
|
143791
|
+
designSystemId: string;
|
|
143792
|
+
accessToken: string;
|
|
143793
|
+
versionId: string;
|
|
143794
|
+
designSystemName: string;
|
|
143795
|
+
exporterId: string;
|
|
143796
|
+
apiUrl: string;
|
|
143797
|
+
exporterName: string;
|
|
143760
143798
|
documentation?: {
|
|
143761
143799
|
environment: "Live" | "Preview";
|
|
143762
143800
|
isSingleVersionDocs: boolean;
|
|
@@ -174412,4 +174450,4 @@ type PersonalAccessTokenWithUser = {
|
|
|
174412
174450
|
token: PersonalAccessToken;
|
|
174413
174451
|
};
|
|
174414
174452
|
|
|
174415
|
-
export { Address, type AllFields, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeIntegrationDump, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystem, type CreateDesignSystemInvitation, type CreateDesignSystemMembership, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, type CreateDocumentationPageContent, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyImageValue, ExporterPropertyValue, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaNodeRenderFormat, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, GitBranch, GitIntegrationType, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionFigmaComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentBlockConfig, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserSource, UserTest, VersionCreationJob, VersionCreationJobStatus, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isNotNullish, isNullish, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, removeCommentSpans, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };
|
|
174453
|
+
export { Address, type AllFields, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeIntegrationDump, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystem, type CreateDesignSystemInvitation, type CreateDesignSystemMembership, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, type CreateDocumentationPageContent, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobExporterConfiguration, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyImageValue, ExporterPropertyValue, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaNodeRenderFormat, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, GitBranch, GitIntegrationType, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionFigmaComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentBlockConfig, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserSource, UserTest, VersionCreationJob, VersionCreationJobStatus, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isNotNullish, isNullish, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, removeCommentSpans, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };
|