@supernova-studio/model 0.48.20 → 0.48.22
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 +44 -1
- package/dist/index.d.ts +44 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/elements/documentation-page-v2.ts +1 -0
- package/src/users/user-profile.ts +1 -0
package/dist/index.d.mts
CHANGED
|
@@ -9813,6 +9813,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
9813
9813
|
designSystemName: z.ZodOptional<z.ZodString>;
|
|
9814
9814
|
defaultDestination: z.ZodOptional<z.ZodString>;
|
|
9815
9815
|
figmaUrl: z.ZodOptional<z.ZodString>;
|
|
9816
|
+
isPageDraftOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
|
|
9816
9817
|
}, "strip", z.ZodTypeAny, {
|
|
9817
9818
|
companyName?: string | undefined;
|
|
9818
9819
|
numberOfPeopleInOrg?: string | undefined;
|
|
@@ -9824,6 +9825,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
9824
9825
|
designSystemName?: string | undefined;
|
|
9825
9826
|
defaultDestination?: string | undefined;
|
|
9826
9827
|
figmaUrl?: string | undefined;
|
|
9828
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
9827
9829
|
}, {
|
|
9828
9830
|
companyName?: string | undefined;
|
|
9829
9831
|
numberOfPeopleInOrg?: string | undefined;
|
|
@@ -9835,6 +9837,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
9835
9837
|
designSystemName?: string | undefined;
|
|
9836
9838
|
defaultDestination?: string | undefined;
|
|
9837
9839
|
figmaUrl?: string | undefined;
|
|
9840
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
9838
9841
|
}>>;
|
|
9839
9842
|
}, "strip", z.ZodTypeAny, {
|
|
9840
9843
|
name: string;
|
|
@@ -9851,6 +9854,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
9851
9854
|
designSystemName?: string | undefined;
|
|
9852
9855
|
defaultDestination?: string | undefined;
|
|
9853
9856
|
figmaUrl?: string | undefined;
|
|
9857
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
9854
9858
|
} | undefined;
|
|
9855
9859
|
}, {
|
|
9856
9860
|
name: string;
|
|
@@ -9867,6 +9871,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
9867
9871
|
designSystemName?: string | undefined;
|
|
9868
9872
|
defaultDestination?: string | undefined;
|
|
9869
9873
|
figmaUrl?: string | undefined;
|
|
9874
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
9870
9875
|
} | undefined;
|
|
9871
9876
|
}>;
|
|
9872
9877
|
linkedIntegrations: z.ZodOptional<z.ZodObject<{
|
|
@@ -10084,6 +10089,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
10084
10089
|
designSystemName?: string | undefined;
|
|
10085
10090
|
defaultDestination?: string | undefined;
|
|
10086
10091
|
figmaUrl?: string | undefined;
|
|
10092
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
10087
10093
|
} | undefined;
|
|
10088
10094
|
};
|
|
10089
10095
|
emailVerified: boolean;
|
|
@@ -10151,6 +10157,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
10151
10157
|
designSystemName?: string | undefined;
|
|
10152
10158
|
defaultDestination?: string | undefined;
|
|
10153
10159
|
figmaUrl?: string | undefined;
|
|
10160
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
10154
10161
|
} | undefined;
|
|
10155
10162
|
};
|
|
10156
10163
|
emailVerified: boolean;
|
|
@@ -19051,6 +19058,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
19051
19058
|
designSystemName?: string | undefined;
|
|
19052
19059
|
defaultDestination?: string | undefined;
|
|
19053
19060
|
figmaUrl?: string | undefined;
|
|
19061
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
19054
19062
|
} | undefined;
|
|
19055
19063
|
};
|
|
19056
19064
|
emailVerified: boolean;
|
|
@@ -19909,6 +19917,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
19909
19917
|
designSystemName?: string | undefined;
|
|
19910
19918
|
defaultDestination?: string | undefined;
|
|
19911
19919
|
figmaUrl?: string | undefined;
|
|
19920
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
19912
19921
|
} | undefined;
|
|
19913
19922
|
};
|
|
19914
19923
|
emailVerified: boolean;
|
|
@@ -28180,6 +28189,7 @@ declare const UserSession: z.ZodObject<{
|
|
|
28180
28189
|
designSystemName: z.ZodOptional<z.ZodString>;
|
|
28181
28190
|
defaultDestination: z.ZodOptional<z.ZodString>;
|
|
28182
28191
|
figmaUrl: z.ZodOptional<z.ZodString>;
|
|
28192
|
+
isPageDraftOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
|
|
28183
28193
|
}, "strip", z.ZodTypeAny, {
|
|
28184
28194
|
companyName?: string | undefined;
|
|
28185
28195
|
numberOfPeopleInOrg?: string | undefined;
|
|
@@ -28191,6 +28201,7 @@ declare const UserSession: z.ZodObject<{
|
|
|
28191
28201
|
designSystemName?: string | undefined;
|
|
28192
28202
|
defaultDestination?: string | undefined;
|
|
28193
28203
|
figmaUrl?: string | undefined;
|
|
28204
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
28194
28205
|
}, {
|
|
28195
28206
|
companyName?: string | undefined;
|
|
28196
28207
|
numberOfPeopleInOrg?: string | undefined;
|
|
@@ -28202,6 +28213,7 @@ declare const UserSession: z.ZodObject<{
|
|
|
28202
28213
|
designSystemName?: string | undefined;
|
|
28203
28214
|
defaultDestination?: string | undefined;
|
|
28204
28215
|
figmaUrl?: string | undefined;
|
|
28216
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
28205
28217
|
}>>;
|
|
28206
28218
|
}, "strip", z.ZodTypeAny, {
|
|
28207
28219
|
name: string;
|
|
@@ -28218,6 +28230,7 @@ declare const UserSession: z.ZodObject<{
|
|
|
28218
28230
|
designSystemName?: string | undefined;
|
|
28219
28231
|
defaultDestination?: string | undefined;
|
|
28220
28232
|
figmaUrl?: string | undefined;
|
|
28233
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
28221
28234
|
} | undefined;
|
|
28222
28235
|
}, {
|
|
28223
28236
|
name: string;
|
|
@@ -28234,6 +28247,7 @@ declare const UserSession: z.ZodObject<{
|
|
|
28234
28247
|
designSystemName?: string | undefined;
|
|
28235
28248
|
defaultDestination?: string | undefined;
|
|
28236
28249
|
figmaUrl?: string | undefined;
|
|
28250
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
28237
28251
|
} | undefined;
|
|
28238
28252
|
}>;
|
|
28239
28253
|
linkedIntegrations: z.ZodOptional<z.ZodObject<{
|
|
@@ -28451,6 +28465,7 @@ declare const UserSession: z.ZodObject<{
|
|
|
28451
28465
|
designSystemName?: string | undefined;
|
|
28452
28466
|
defaultDestination?: string | undefined;
|
|
28453
28467
|
figmaUrl?: string | undefined;
|
|
28468
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
28454
28469
|
} | undefined;
|
|
28455
28470
|
};
|
|
28456
28471
|
emailVerified: boolean;
|
|
@@ -28518,6 +28533,7 @@ declare const UserSession: z.ZodObject<{
|
|
|
28518
28533
|
designSystemName?: string | undefined;
|
|
28519
28534
|
defaultDestination?: string | undefined;
|
|
28520
28535
|
figmaUrl?: string | undefined;
|
|
28536
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
28521
28537
|
} | undefined;
|
|
28522
28538
|
};
|
|
28523
28539
|
emailVerified: boolean;
|
|
@@ -28599,6 +28615,7 @@ declare const UserSession: z.ZodObject<{
|
|
|
28599
28615
|
designSystemName?: string | undefined;
|
|
28600
28616
|
defaultDestination?: string | undefined;
|
|
28601
28617
|
figmaUrl?: string | undefined;
|
|
28618
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
28602
28619
|
} | undefined;
|
|
28603
28620
|
};
|
|
28604
28621
|
emailVerified: boolean;
|
|
@@ -28680,6 +28697,7 @@ declare const UserSession: z.ZodObject<{
|
|
|
28680
28697
|
designSystemName?: string | undefined;
|
|
28681
28698
|
defaultDestination?: string | undefined;
|
|
28682
28699
|
figmaUrl?: string | undefined;
|
|
28700
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
28683
28701
|
} | undefined;
|
|
28684
28702
|
};
|
|
28685
28703
|
emailVerified: boolean;
|
|
@@ -53285,6 +53303,11 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
53285
53303
|
type DocumentationPageV2 = z.infer<typeof DocumentationPageV2>;
|
|
53286
53304
|
type CreateDocumentationPageV2 = DbCreateInputOmit<DocumentationPageV2>;
|
|
53287
53305
|
type UpdateDocumentationPageV2 = OmitStrict<DbUpdate<DocumentationPageV2>, "designSystemVersionId">;
|
|
53306
|
+
type RestoreDocumentationPage = CreateDocumentationPageV2 & {
|
|
53307
|
+
id: string;
|
|
53308
|
+
createdAt: Date;
|
|
53309
|
+
updatedAt: Date;
|
|
53310
|
+
};
|
|
53288
53311
|
|
|
53289
53312
|
declare const FigmaFileStructureOrigin: z.ZodObject<{
|
|
53290
53313
|
sourceId: z.ZodString;
|
|
@@ -157801,6 +157824,7 @@ declare const UserOnboarding: z.ZodObject<{
|
|
|
157801
157824
|
designSystemName: z.ZodOptional<z.ZodString>;
|
|
157802
157825
|
defaultDestination: z.ZodOptional<z.ZodString>;
|
|
157803
157826
|
figmaUrl: z.ZodOptional<z.ZodString>;
|
|
157827
|
+
isPageDraftOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
|
|
157804
157828
|
}, "strip", z.ZodTypeAny, {
|
|
157805
157829
|
companyName?: string | undefined;
|
|
157806
157830
|
numberOfPeopleInOrg?: string | undefined;
|
|
@@ -157812,6 +157836,7 @@ declare const UserOnboarding: z.ZodObject<{
|
|
|
157812
157836
|
designSystemName?: string | undefined;
|
|
157813
157837
|
defaultDestination?: string | undefined;
|
|
157814
157838
|
figmaUrl?: string | undefined;
|
|
157839
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
157815
157840
|
}, {
|
|
157816
157841
|
companyName?: string | undefined;
|
|
157817
157842
|
numberOfPeopleInOrg?: string | undefined;
|
|
@@ -157823,6 +157848,7 @@ declare const UserOnboarding: z.ZodObject<{
|
|
|
157823
157848
|
designSystemName?: string | undefined;
|
|
157824
157849
|
defaultDestination?: string | undefined;
|
|
157825
157850
|
figmaUrl?: string | undefined;
|
|
157851
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
157826
157852
|
}>;
|
|
157827
157853
|
type UserOnboarding = z.infer<typeof UserOnboarding>;
|
|
157828
157854
|
declare const UserProfileUpdate: z.ZodObject<Omit<{
|
|
@@ -157840,6 +157866,7 @@ declare const UserProfileUpdate: z.ZodObject<Omit<{
|
|
|
157840
157866
|
designSystemName: z.ZodOptional<z.ZodString>;
|
|
157841
157867
|
defaultDestination: z.ZodOptional<z.ZodString>;
|
|
157842
157868
|
figmaUrl: z.ZodOptional<z.ZodString>;
|
|
157869
|
+
isPageDraftOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
|
|
157843
157870
|
}, "strip", z.ZodTypeAny, {
|
|
157844
157871
|
companyName?: string | undefined;
|
|
157845
157872
|
numberOfPeopleInOrg?: string | undefined;
|
|
@@ -157851,6 +157878,7 @@ declare const UserProfileUpdate: z.ZodObject<Omit<{
|
|
|
157851
157878
|
designSystemName?: string | undefined;
|
|
157852
157879
|
defaultDestination?: string | undefined;
|
|
157853
157880
|
figmaUrl?: string | undefined;
|
|
157881
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
157854
157882
|
}, {
|
|
157855
157883
|
companyName?: string | undefined;
|
|
157856
157884
|
numberOfPeopleInOrg?: string | undefined;
|
|
@@ -157862,6 +157890,7 @@ declare const UserProfileUpdate: z.ZodObject<Omit<{
|
|
|
157862
157890
|
designSystemName?: string | undefined;
|
|
157863
157891
|
defaultDestination?: string | undefined;
|
|
157864
157892
|
figmaUrl?: string | undefined;
|
|
157893
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
157865
157894
|
}>>>;
|
|
157866
157895
|
}, "avatar">, "strip", z.ZodTypeAny, {
|
|
157867
157896
|
name?: string | undefined;
|
|
@@ -157877,6 +157906,7 @@ declare const UserProfileUpdate: z.ZodObject<Omit<{
|
|
|
157877
157906
|
designSystemName?: string | undefined;
|
|
157878
157907
|
defaultDestination?: string | undefined;
|
|
157879
157908
|
figmaUrl?: string | undefined;
|
|
157909
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
157880
157910
|
} | undefined;
|
|
157881
157911
|
}, {
|
|
157882
157912
|
name?: string | undefined;
|
|
@@ -157892,6 +157922,7 @@ declare const UserProfileUpdate: z.ZodObject<Omit<{
|
|
|
157892
157922
|
designSystemName?: string | undefined;
|
|
157893
157923
|
defaultDestination?: string | undefined;
|
|
157894
157924
|
figmaUrl?: string | undefined;
|
|
157925
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
157895
157926
|
} | undefined;
|
|
157896
157927
|
}>;
|
|
157897
157928
|
type UserProfileUpdate = z.infer<typeof UserProfileUpdate>;
|
|
@@ -157910,6 +157941,7 @@ declare const UserProfile: z.ZodObject<{
|
|
|
157910
157941
|
designSystemName: z.ZodOptional<z.ZodString>;
|
|
157911
157942
|
defaultDestination: z.ZodOptional<z.ZodString>;
|
|
157912
157943
|
figmaUrl: z.ZodOptional<z.ZodString>;
|
|
157944
|
+
isPageDraftOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
|
|
157913
157945
|
}, "strip", z.ZodTypeAny, {
|
|
157914
157946
|
companyName?: string | undefined;
|
|
157915
157947
|
numberOfPeopleInOrg?: string | undefined;
|
|
@@ -157921,6 +157953,7 @@ declare const UserProfile: z.ZodObject<{
|
|
|
157921
157953
|
designSystemName?: string | undefined;
|
|
157922
157954
|
defaultDestination?: string | undefined;
|
|
157923
157955
|
figmaUrl?: string | undefined;
|
|
157956
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
157924
157957
|
}, {
|
|
157925
157958
|
companyName?: string | undefined;
|
|
157926
157959
|
numberOfPeopleInOrg?: string | undefined;
|
|
@@ -157932,6 +157965,7 @@ declare const UserProfile: z.ZodObject<{
|
|
|
157932
157965
|
designSystemName?: string | undefined;
|
|
157933
157966
|
defaultDestination?: string | undefined;
|
|
157934
157967
|
figmaUrl?: string | undefined;
|
|
157968
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
157935
157969
|
}>>;
|
|
157936
157970
|
}, "strip", z.ZodTypeAny, {
|
|
157937
157971
|
name: string;
|
|
@@ -157948,6 +157982,7 @@ declare const UserProfile: z.ZodObject<{
|
|
|
157948
157982
|
designSystemName?: string | undefined;
|
|
157949
157983
|
defaultDestination?: string | undefined;
|
|
157950
157984
|
figmaUrl?: string | undefined;
|
|
157985
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
157951
157986
|
} | undefined;
|
|
157952
157987
|
}, {
|
|
157953
157988
|
name: string;
|
|
@@ -157964,6 +157999,7 @@ declare const UserProfile: z.ZodObject<{
|
|
|
157964
157999
|
designSystemName?: string | undefined;
|
|
157965
158000
|
defaultDestination?: string | undefined;
|
|
157966
158001
|
figmaUrl?: string | undefined;
|
|
158002
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
157967
158003
|
} | undefined;
|
|
157968
158004
|
}>;
|
|
157969
158005
|
type UserProfile = z.infer<typeof UserProfile>;
|
|
@@ -158001,6 +158037,7 @@ declare const User: z.ZodObject<{
|
|
|
158001
158037
|
designSystemName: z.ZodOptional<z.ZodString>;
|
|
158002
158038
|
defaultDestination: z.ZodOptional<z.ZodString>;
|
|
158003
158039
|
figmaUrl: z.ZodOptional<z.ZodString>;
|
|
158040
|
+
isPageDraftOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
|
|
158004
158041
|
}, "strip", z.ZodTypeAny, {
|
|
158005
158042
|
companyName?: string | undefined;
|
|
158006
158043
|
numberOfPeopleInOrg?: string | undefined;
|
|
@@ -158012,6 +158049,7 @@ declare const User: z.ZodObject<{
|
|
|
158012
158049
|
designSystemName?: string | undefined;
|
|
158013
158050
|
defaultDestination?: string | undefined;
|
|
158014
158051
|
figmaUrl?: string | undefined;
|
|
158052
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
158015
158053
|
}, {
|
|
158016
158054
|
companyName?: string | undefined;
|
|
158017
158055
|
numberOfPeopleInOrg?: string | undefined;
|
|
@@ -158023,6 +158061,7 @@ declare const User: z.ZodObject<{
|
|
|
158023
158061
|
designSystemName?: string | undefined;
|
|
158024
158062
|
defaultDestination?: string | undefined;
|
|
158025
158063
|
figmaUrl?: string | undefined;
|
|
158064
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
158026
158065
|
}>>;
|
|
158027
158066
|
}, "strip", z.ZodTypeAny, {
|
|
158028
158067
|
name: string;
|
|
@@ -158039,6 +158078,7 @@ declare const User: z.ZodObject<{
|
|
|
158039
158078
|
designSystemName?: string | undefined;
|
|
158040
158079
|
defaultDestination?: string | undefined;
|
|
158041
158080
|
figmaUrl?: string | undefined;
|
|
158081
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
158042
158082
|
} | undefined;
|
|
158043
158083
|
}, {
|
|
158044
158084
|
name: string;
|
|
@@ -158055,6 +158095,7 @@ declare const User: z.ZodObject<{
|
|
|
158055
158095
|
designSystemName?: string | undefined;
|
|
158056
158096
|
defaultDestination?: string | undefined;
|
|
158057
158097
|
figmaUrl?: string | undefined;
|
|
158098
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
158058
158099
|
} | undefined;
|
|
158059
158100
|
}>;
|
|
158060
158101
|
linkedIntegrations: z.ZodOptional<z.ZodObject<{
|
|
@@ -158272,6 +158313,7 @@ declare const User: z.ZodObject<{
|
|
|
158272
158313
|
designSystemName?: string | undefined;
|
|
158273
158314
|
defaultDestination?: string | undefined;
|
|
158274
158315
|
figmaUrl?: string | undefined;
|
|
158316
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
158275
158317
|
} | undefined;
|
|
158276
158318
|
};
|
|
158277
158319
|
emailVerified: boolean;
|
|
@@ -158339,6 +158381,7 @@ declare const User: z.ZodObject<{
|
|
|
158339
158381
|
designSystemName?: string | undefined;
|
|
158340
158382
|
defaultDestination?: string | undefined;
|
|
158341
158383
|
figmaUrl?: string | undefined;
|
|
158384
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
158342
158385
|
} | undefined;
|
|
158343
158386
|
};
|
|
158344
158387
|
emailVerified: boolean;
|
|
@@ -162940,4 +162983,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
162940
162983
|
}>;
|
|
162941
162984
|
type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
|
|
162942
162985
|
|
|
162943
|
-
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, BaseComponent, 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, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ComponentSet, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, 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 CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreateTheme, CreateUserInput, CreateWorkspaceInput, 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, DesignSystemCreateInput, DesignSystemDump, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, DesignSystemUpdateInputMetadata, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignSystemWithWorkspace, 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, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, 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, FigmaComponentBooleanProperty, FigmaComponentInstanceSwapProperty, FigmaComponentProperties, FigmaComponentPropertyType, FigmaComponentSetProperties, 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, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, 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 ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, 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, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, 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, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableMultiRichTextNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockShortcut, 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, 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 UpdateComponent, type UpdateDataSource, type UpdateDesignElement, 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 UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserTest, VersionCreationJob, VersionCreationJobStatus, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isSlugReserved, isTokenType, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, zodCreateInputOmit, zodUpdateInputOmit };
|
|
162986
|
+
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, BaseComponent, 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, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ComponentSet, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, 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 CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreateTheme, CreateUserInput, CreateWorkspaceInput, 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, DesignSystemCreateInput, DesignSystemDump, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, DesignSystemUpdateInputMetadata, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignSystemWithWorkspace, 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, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, 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, FigmaComponentBooleanProperty, FigmaComponentInstanceSwapProperty, FigmaComponentProperties, FigmaComponentPropertyType, FigmaComponentSetProperties, 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, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, 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 ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, 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, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, 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, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableMultiRichTextNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockShortcut, 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, 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 UpdateComponent, type UpdateDataSource, type UpdateDesignElement, 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 UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserTest, VersionCreationJob, VersionCreationJobStatus, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isSlugReserved, isTokenType, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, zodCreateInputOmit, zodUpdateInputOmit };
|