@supernova-studio/model 0.54.29 → 0.54.30
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 +485 -500
- package/dist/index.d.ts +485 -500
- package/dist/index.js +47 -54
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +386 -393
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/users/index.ts +0 -1
- package/src/users/user-create.ts +0 -9
package/dist/index.d.ts
CHANGED
|
@@ -160927,326 +160927,6 @@ declare const UserLinkedIntegrations: z.ZodObject<{
|
|
|
160927
160927
|
}>;
|
|
160928
160928
|
type UserLinkedIntegrations = z.infer<typeof UserLinkedIntegrations>;
|
|
160929
160929
|
|
|
160930
|
-
declare const UserAnalyticsCleanupSchedule: z.ZodObject<{
|
|
160931
|
-
userId: z.ZodString;
|
|
160932
|
-
createdAt: z.ZodDate;
|
|
160933
|
-
deleteAt: z.ZodDate;
|
|
160934
|
-
}, "strip", z.ZodTypeAny, {
|
|
160935
|
-
createdAt: Date;
|
|
160936
|
-
deleteAt: Date;
|
|
160937
|
-
userId: string;
|
|
160938
|
-
}, {
|
|
160939
|
-
createdAt: Date;
|
|
160940
|
-
deleteAt: Date;
|
|
160941
|
-
userId: string;
|
|
160942
|
-
}>;
|
|
160943
|
-
type UserAnalyticsCleanupSchedule = z.infer<typeof UserAnalyticsCleanupSchedule>;
|
|
160944
|
-
declare const UserAnalyticsCleanupScheduleDbInput: z.ZodObject<Omit<{
|
|
160945
|
-
userId: z.ZodString;
|
|
160946
|
-
createdAt: z.ZodDate;
|
|
160947
|
-
deleteAt: z.ZodDate;
|
|
160948
|
-
}, "createdAt">, "strip", z.ZodTypeAny, {
|
|
160949
|
-
deleteAt: Date;
|
|
160950
|
-
userId: string;
|
|
160951
|
-
}, {
|
|
160952
|
-
deleteAt: Date;
|
|
160953
|
-
userId: string;
|
|
160954
|
-
}>;
|
|
160955
|
-
type UserAnalyticsCleanupScheduleDbInput = z.infer<typeof UserAnalyticsCleanupScheduleDbInput>;
|
|
160956
|
-
|
|
160957
|
-
declare const CreateUserInput: z.ZodObject<{
|
|
160958
|
-
email: z.ZodString;
|
|
160959
|
-
name: z.ZodString;
|
|
160960
|
-
username: z.ZodString;
|
|
160961
|
-
}, "strip", z.ZodTypeAny, {
|
|
160962
|
-
name: string;
|
|
160963
|
-
email: string;
|
|
160964
|
-
username: string;
|
|
160965
|
-
}, {
|
|
160966
|
-
name: string;
|
|
160967
|
-
email: string;
|
|
160968
|
-
username: string;
|
|
160969
|
-
}>;
|
|
160970
|
-
type CreateUserInput = z.infer<typeof CreateUserInput>;
|
|
160971
|
-
|
|
160972
|
-
declare const UserIdentity: z.ZodObject<{
|
|
160973
|
-
id: z.ZodString;
|
|
160974
|
-
userId: z.ZodString;
|
|
160975
|
-
}, "strip", z.ZodTypeAny, {
|
|
160976
|
-
id: string;
|
|
160977
|
-
userId: string;
|
|
160978
|
-
}, {
|
|
160979
|
-
id: string;
|
|
160980
|
-
userId: string;
|
|
160981
|
-
}>;
|
|
160982
|
-
type UserIdentity = z.infer<typeof UserIdentity>;
|
|
160983
|
-
|
|
160984
|
-
declare const UserMinified: z.ZodObject<{
|
|
160985
|
-
id: z.ZodString;
|
|
160986
|
-
name: z.ZodString;
|
|
160987
|
-
email: z.ZodString;
|
|
160988
|
-
avatar: z.ZodOptional<z.ZodString>;
|
|
160989
|
-
}, "strip", z.ZodTypeAny, {
|
|
160990
|
-
id: string;
|
|
160991
|
-
name: string;
|
|
160992
|
-
email: string;
|
|
160993
|
-
avatar?: string | undefined;
|
|
160994
|
-
}, {
|
|
160995
|
-
id: string;
|
|
160996
|
-
name: string;
|
|
160997
|
-
email: string;
|
|
160998
|
-
avatar?: string | undefined;
|
|
160999
|
-
}>;
|
|
161000
|
-
type UserMinified = z.infer<typeof UserMinified>;
|
|
161001
|
-
|
|
161002
|
-
declare const LiveblocksNotificationSettings: z.ZodObject<{
|
|
161003
|
-
sendCommentNotificationEmails: z.ZodBoolean;
|
|
161004
|
-
}, "strip", z.ZodTypeAny, {
|
|
161005
|
-
sendCommentNotificationEmails: boolean;
|
|
161006
|
-
}, {
|
|
161007
|
-
sendCommentNotificationEmails: boolean;
|
|
161008
|
-
}>;
|
|
161009
|
-
type LiveblocksNotificationSettings = z.infer<typeof LiveblocksNotificationSettings>;
|
|
161010
|
-
declare const UserNotificationSettings: z.ZodObject<{
|
|
161011
|
-
liveblocksNotificationSettings: z.ZodObject<{
|
|
161012
|
-
sendCommentNotificationEmails: z.ZodBoolean;
|
|
161013
|
-
}, "strip", z.ZodTypeAny, {
|
|
161014
|
-
sendCommentNotificationEmails: boolean;
|
|
161015
|
-
}, {
|
|
161016
|
-
sendCommentNotificationEmails: boolean;
|
|
161017
|
-
}>;
|
|
161018
|
-
}, "strip", z.ZodTypeAny, {
|
|
161019
|
-
liveblocksNotificationSettings: {
|
|
161020
|
-
sendCommentNotificationEmails: boolean;
|
|
161021
|
-
};
|
|
161022
|
-
}, {
|
|
161023
|
-
liveblocksNotificationSettings: {
|
|
161024
|
-
sendCommentNotificationEmails: boolean;
|
|
161025
|
-
};
|
|
161026
|
-
}>;
|
|
161027
|
-
type UserNotificationSettings = z.infer<typeof UserNotificationSettings>;
|
|
161028
|
-
declare const defaultNotificationSettings: UserNotificationSettings;
|
|
161029
|
-
|
|
161030
|
-
declare const UserOnboardingDepartment: z.ZodEnum<["Design", "Engineering", "Product", "Brand", "Other"]>;
|
|
161031
|
-
type UserOnboardingDepartment = z.infer<typeof UserOnboardingDepartment>;
|
|
161032
|
-
declare const UserOnboardingJobLevel: z.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>;
|
|
161033
|
-
type UserOnboardingJobLevel = z.infer<typeof UserOnboardingJobLevel>;
|
|
161034
|
-
declare const UserOnboarding: z.ZodObject<{
|
|
161035
|
-
companyName: z.ZodOptional<z.ZodString>;
|
|
161036
|
-
numberOfPeopleInOrg: z.ZodOptional<z.ZodString>;
|
|
161037
|
-
numberOfPeopleInDesignTeam: z.ZodOptional<z.ZodString>;
|
|
161038
|
-
department: z.ZodOptional<z.ZodEnum<["Design", "Engineering", "Product", "Brand", "Other"]>>;
|
|
161039
|
-
jobTitle: z.ZodOptional<z.ZodString>;
|
|
161040
|
-
phase: z.ZodOptional<z.ZodString>;
|
|
161041
|
-
jobLevel: z.ZodOptional<z.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>>;
|
|
161042
|
-
designSystemName: z.ZodOptional<z.ZodString>;
|
|
161043
|
-
defaultDestination: z.ZodOptional<z.ZodString>;
|
|
161044
|
-
figmaUrl: z.ZodOptional<z.ZodString>;
|
|
161045
|
-
isPageDraftOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
|
|
161046
|
-
isApprovalsOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
|
|
161047
|
-
}, "strip", z.ZodTypeAny, {
|
|
161048
|
-
companyName?: string | undefined;
|
|
161049
|
-
numberOfPeopleInOrg?: string | undefined;
|
|
161050
|
-
numberOfPeopleInDesignTeam?: string | undefined;
|
|
161051
|
-
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
161052
|
-
jobTitle?: string | undefined;
|
|
161053
|
-
phase?: string | undefined;
|
|
161054
|
-
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
161055
|
-
designSystemName?: string | undefined;
|
|
161056
|
-
defaultDestination?: string | undefined;
|
|
161057
|
-
figmaUrl?: string | undefined;
|
|
161058
|
-
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
161059
|
-
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
161060
|
-
}, {
|
|
161061
|
-
companyName?: string | undefined;
|
|
161062
|
-
numberOfPeopleInOrg?: string | undefined;
|
|
161063
|
-
numberOfPeopleInDesignTeam?: string | undefined;
|
|
161064
|
-
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
161065
|
-
jobTitle?: string | undefined;
|
|
161066
|
-
phase?: string | undefined;
|
|
161067
|
-
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
161068
|
-
designSystemName?: string | undefined;
|
|
161069
|
-
defaultDestination?: string | undefined;
|
|
161070
|
-
figmaUrl?: string | undefined;
|
|
161071
|
-
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
161072
|
-
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
161073
|
-
}>;
|
|
161074
|
-
type UserOnboarding = z.infer<typeof UserOnboarding>;
|
|
161075
|
-
declare const UserProfile: z.ZodObject<{
|
|
161076
|
-
name: z.ZodString;
|
|
161077
|
-
avatar: z.ZodOptional<z.ZodString>;
|
|
161078
|
-
nickname: z.ZodOptional<z.ZodString>;
|
|
161079
|
-
onboarding: z.ZodOptional<z.ZodObject<{
|
|
161080
|
-
companyName: z.ZodOptional<z.ZodString>;
|
|
161081
|
-
numberOfPeopleInOrg: z.ZodOptional<z.ZodString>;
|
|
161082
|
-
numberOfPeopleInDesignTeam: z.ZodOptional<z.ZodString>;
|
|
161083
|
-
department: z.ZodOptional<z.ZodEnum<["Design", "Engineering", "Product", "Brand", "Other"]>>;
|
|
161084
|
-
jobTitle: z.ZodOptional<z.ZodString>;
|
|
161085
|
-
phase: z.ZodOptional<z.ZodString>;
|
|
161086
|
-
jobLevel: z.ZodOptional<z.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>>;
|
|
161087
|
-
designSystemName: z.ZodOptional<z.ZodString>;
|
|
161088
|
-
defaultDestination: z.ZodOptional<z.ZodString>;
|
|
161089
|
-
figmaUrl: z.ZodOptional<z.ZodString>;
|
|
161090
|
-
isPageDraftOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
|
|
161091
|
-
isApprovalsOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
|
|
161092
|
-
}, "strip", z.ZodTypeAny, {
|
|
161093
|
-
companyName?: string | undefined;
|
|
161094
|
-
numberOfPeopleInOrg?: string | undefined;
|
|
161095
|
-
numberOfPeopleInDesignTeam?: string | undefined;
|
|
161096
|
-
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
161097
|
-
jobTitle?: string | undefined;
|
|
161098
|
-
phase?: string | undefined;
|
|
161099
|
-
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
161100
|
-
designSystemName?: string | undefined;
|
|
161101
|
-
defaultDestination?: string | undefined;
|
|
161102
|
-
figmaUrl?: string | undefined;
|
|
161103
|
-
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
161104
|
-
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
161105
|
-
}, {
|
|
161106
|
-
companyName?: string | undefined;
|
|
161107
|
-
numberOfPeopleInOrg?: string | undefined;
|
|
161108
|
-
numberOfPeopleInDesignTeam?: string | undefined;
|
|
161109
|
-
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
161110
|
-
jobTitle?: string | undefined;
|
|
161111
|
-
phase?: string | undefined;
|
|
161112
|
-
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
161113
|
-
designSystemName?: string | undefined;
|
|
161114
|
-
defaultDestination?: string | undefined;
|
|
161115
|
-
figmaUrl?: string | undefined;
|
|
161116
|
-
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
161117
|
-
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
161118
|
-
}>>;
|
|
161119
|
-
}, "strip", z.ZodTypeAny, {
|
|
161120
|
-
name: string;
|
|
161121
|
-
avatar?: string | undefined;
|
|
161122
|
-
nickname?: string | undefined;
|
|
161123
|
-
onboarding?: {
|
|
161124
|
-
companyName?: string | undefined;
|
|
161125
|
-
numberOfPeopleInOrg?: string | undefined;
|
|
161126
|
-
numberOfPeopleInDesignTeam?: string | undefined;
|
|
161127
|
-
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
161128
|
-
jobTitle?: string | undefined;
|
|
161129
|
-
phase?: string | undefined;
|
|
161130
|
-
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
161131
|
-
designSystemName?: string | undefined;
|
|
161132
|
-
defaultDestination?: string | undefined;
|
|
161133
|
-
figmaUrl?: string | undefined;
|
|
161134
|
-
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
161135
|
-
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
161136
|
-
} | undefined;
|
|
161137
|
-
}, {
|
|
161138
|
-
name: string;
|
|
161139
|
-
avatar?: string | undefined;
|
|
161140
|
-
nickname?: string | undefined;
|
|
161141
|
-
onboarding?: {
|
|
161142
|
-
companyName?: string | undefined;
|
|
161143
|
-
numberOfPeopleInOrg?: string | undefined;
|
|
161144
|
-
numberOfPeopleInDesignTeam?: string | undefined;
|
|
161145
|
-
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
161146
|
-
jobTitle?: string | undefined;
|
|
161147
|
-
phase?: string | undefined;
|
|
161148
|
-
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
161149
|
-
designSystemName?: string | undefined;
|
|
161150
|
-
defaultDestination?: string | undefined;
|
|
161151
|
-
figmaUrl?: string | undefined;
|
|
161152
|
-
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
161153
|
-
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
161154
|
-
} | undefined;
|
|
161155
|
-
}>;
|
|
161156
|
-
type UserProfile = z.infer<typeof UserProfile>;
|
|
161157
|
-
declare const UserProfileUpdate: z.ZodObject<Omit<{
|
|
161158
|
-
name: z.ZodOptional<z.ZodString>;
|
|
161159
|
-
avatar: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
161160
|
-
nickname: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
161161
|
-
onboarding: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
161162
|
-
companyName: z.ZodOptional<z.ZodString>;
|
|
161163
|
-
numberOfPeopleInOrg: z.ZodOptional<z.ZodString>;
|
|
161164
|
-
numberOfPeopleInDesignTeam: z.ZodOptional<z.ZodString>;
|
|
161165
|
-
department: z.ZodOptional<z.ZodEnum<["Design", "Engineering", "Product", "Brand", "Other"]>>;
|
|
161166
|
-
jobTitle: z.ZodOptional<z.ZodString>;
|
|
161167
|
-
phase: z.ZodOptional<z.ZodString>;
|
|
161168
|
-
jobLevel: z.ZodOptional<z.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>>;
|
|
161169
|
-
designSystemName: z.ZodOptional<z.ZodString>;
|
|
161170
|
-
defaultDestination: z.ZodOptional<z.ZodString>;
|
|
161171
|
-
figmaUrl: z.ZodOptional<z.ZodString>;
|
|
161172
|
-
isPageDraftOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
|
|
161173
|
-
isApprovalsOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
|
|
161174
|
-
}, "strip", z.ZodTypeAny, {
|
|
161175
|
-
companyName?: string | undefined;
|
|
161176
|
-
numberOfPeopleInOrg?: string | undefined;
|
|
161177
|
-
numberOfPeopleInDesignTeam?: string | undefined;
|
|
161178
|
-
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
161179
|
-
jobTitle?: string | undefined;
|
|
161180
|
-
phase?: string | undefined;
|
|
161181
|
-
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
161182
|
-
designSystemName?: string | undefined;
|
|
161183
|
-
defaultDestination?: string | undefined;
|
|
161184
|
-
figmaUrl?: string | undefined;
|
|
161185
|
-
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
161186
|
-
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
161187
|
-
}, {
|
|
161188
|
-
companyName?: string | undefined;
|
|
161189
|
-
numberOfPeopleInOrg?: string | undefined;
|
|
161190
|
-
numberOfPeopleInDesignTeam?: string | undefined;
|
|
161191
|
-
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
161192
|
-
jobTitle?: string | undefined;
|
|
161193
|
-
phase?: string | undefined;
|
|
161194
|
-
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
161195
|
-
designSystemName?: string | undefined;
|
|
161196
|
-
defaultDestination?: string | undefined;
|
|
161197
|
-
figmaUrl?: string | undefined;
|
|
161198
|
-
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
161199
|
-
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
161200
|
-
}>>>;
|
|
161201
|
-
}, "avatar">, "strip", z.ZodTypeAny, {
|
|
161202
|
-
name?: string | undefined;
|
|
161203
|
-
nickname?: string | undefined;
|
|
161204
|
-
onboarding?: {
|
|
161205
|
-
companyName?: string | undefined;
|
|
161206
|
-
numberOfPeopleInOrg?: string | undefined;
|
|
161207
|
-
numberOfPeopleInDesignTeam?: string | undefined;
|
|
161208
|
-
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
161209
|
-
jobTitle?: string | undefined;
|
|
161210
|
-
phase?: string | undefined;
|
|
161211
|
-
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
161212
|
-
designSystemName?: string | undefined;
|
|
161213
|
-
defaultDestination?: string | undefined;
|
|
161214
|
-
figmaUrl?: string | undefined;
|
|
161215
|
-
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
161216
|
-
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
161217
|
-
} | undefined;
|
|
161218
|
-
}, {
|
|
161219
|
-
name?: string | undefined;
|
|
161220
|
-
nickname?: string | undefined;
|
|
161221
|
-
onboarding?: {
|
|
161222
|
-
companyName?: string | undefined;
|
|
161223
|
-
numberOfPeopleInOrg?: string | undefined;
|
|
161224
|
-
numberOfPeopleInDesignTeam?: string | undefined;
|
|
161225
|
-
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
161226
|
-
jobTitle?: string | undefined;
|
|
161227
|
-
phase?: string | undefined;
|
|
161228
|
-
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
161229
|
-
designSystemName?: string | undefined;
|
|
161230
|
-
defaultDestination?: string | undefined;
|
|
161231
|
-
figmaUrl?: string | undefined;
|
|
161232
|
-
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
161233
|
-
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
161234
|
-
} | undefined;
|
|
161235
|
-
}>;
|
|
161236
|
-
type UserProfileUpdate = z.infer<typeof UserProfileUpdate>;
|
|
161237
|
-
|
|
161238
|
-
declare const UserTest: z.ZodObject<{
|
|
161239
|
-
id: z.ZodString;
|
|
161240
|
-
email: z.ZodString;
|
|
161241
|
-
}, "strip", z.ZodTypeAny, {
|
|
161242
|
-
id: string;
|
|
161243
|
-
email: string;
|
|
161244
|
-
}, {
|
|
161245
|
-
id: string;
|
|
161246
|
-
email: string;
|
|
161247
|
-
}>;
|
|
161248
|
-
type UserTest = z.infer<typeof UserTest>;
|
|
161249
|
-
|
|
161250
160930
|
declare const UserSource: z.ZodEnum<["SignUp", "Invite", "SSO"]>;
|
|
161251
160931
|
type UserSource = z.infer<typeof UserSource>;
|
|
161252
160932
|
declare const User: z.ZodObject<{
|
|
@@ -161489,192 +161169,497 @@ declare const User: z.ZodObject<{
|
|
|
161489
161169
|
customUrl?: string | undefined;
|
|
161490
161170
|
} | undefined;
|
|
161491
161171
|
}, {
|
|
161492
|
-
azure?: {
|
|
161493
|
-
id: string;
|
|
161494
|
-
email?: string | undefined;
|
|
161495
|
-
handle?: string | undefined;
|
|
161496
|
-
avatarUrl?: string | undefined;
|
|
161497
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
161498
|
-
customUrl?: string | undefined;
|
|
161499
|
-
}[] | undefined;
|
|
161500
|
-
github?: {
|
|
161501
|
-
id: string;
|
|
161502
|
-
email?: string | undefined;
|
|
161503
|
-
handle?: string | undefined;
|
|
161504
|
-
avatarUrl?: string | undefined;
|
|
161505
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
161506
|
-
customUrl?: string | undefined;
|
|
161507
|
-
}[] | undefined;
|
|
161508
|
-
gitlab?: {
|
|
161509
|
-
id: string;
|
|
161510
|
-
email?: string | undefined;
|
|
161511
|
-
handle?: string | undefined;
|
|
161512
|
-
avatarUrl?: string | undefined;
|
|
161513
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
161514
|
-
customUrl?: string | undefined;
|
|
161515
|
-
}[] | undefined;
|
|
161516
|
-
bitbucket?: {
|
|
161517
|
-
id: string;
|
|
161518
|
-
email?: string | undefined;
|
|
161519
|
-
handle?: string | undefined;
|
|
161520
|
-
avatarUrl?: string | undefined;
|
|
161521
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
161522
|
-
customUrl?: string | undefined;
|
|
161523
|
-
}[] | undefined;
|
|
161524
|
-
figma?: {
|
|
161525
|
-
id: string;
|
|
161526
|
-
email?: string | undefined;
|
|
161527
|
-
handle?: string | undefined;
|
|
161528
|
-
avatarUrl?: string | undefined;
|
|
161529
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
161530
|
-
customUrl?: string | undefined;
|
|
161531
|
-
} | undefined;
|
|
161532
|
-
}>>;
|
|
161533
|
-
loggedOutAt: z.ZodOptional<z.ZodDate>;
|
|
161534
|
-
isProtected: z.ZodBoolean;
|
|
161535
|
-
source: z.ZodOptional<z.ZodEnum<["SignUp", "Invite", "SSO"]>>;
|
|
161172
|
+
azure?: {
|
|
161173
|
+
id: string;
|
|
161174
|
+
email?: string | undefined;
|
|
161175
|
+
handle?: string | undefined;
|
|
161176
|
+
avatarUrl?: string | undefined;
|
|
161177
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
161178
|
+
customUrl?: string | undefined;
|
|
161179
|
+
}[] | undefined;
|
|
161180
|
+
github?: {
|
|
161181
|
+
id: string;
|
|
161182
|
+
email?: string | undefined;
|
|
161183
|
+
handle?: string | undefined;
|
|
161184
|
+
avatarUrl?: string | undefined;
|
|
161185
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
161186
|
+
customUrl?: string | undefined;
|
|
161187
|
+
}[] | undefined;
|
|
161188
|
+
gitlab?: {
|
|
161189
|
+
id: string;
|
|
161190
|
+
email?: string | undefined;
|
|
161191
|
+
handle?: string | undefined;
|
|
161192
|
+
avatarUrl?: string | undefined;
|
|
161193
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
161194
|
+
customUrl?: string | undefined;
|
|
161195
|
+
}[] | undefined;
|
|
161196
|
+
bitbucket?: {
|
|
161197
|
+
id: string;
|
|
161198
|
+
email?: string | undefined;
|
|
161199
|
+
handle?: string | undefined;
|
|
161200
|
+
avatarUrl?: string | undefined;
|
|
161201
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
161202
|
+
customUrl?: string | undefined;
|
|
161203
|
+
}[] | undefined;
|
|
161204
|
+
figma?: {
|
|
161205
|
+
id: string;
|
|
161206
|
+
email?: string | undefined;
|
|
161207
|
+
handle?: string | undefined;
|
|
161208
|
+
avatarUrl?: string | undefined;
|
|
161209
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
161210
|
+
customUrl?: string | undefined;
|
|
161211
|
+
} | undefined;
|
|
161212
|
+
}>>;
|
|
161213
|
+
loggedOutAt: z.ZodOptional<z.ZodDate>;
|
|
161214
|
+
isProtected: z.ZodBoolean;
|
|
161215
|
+
source: z.ZodOptional<z.ZodEnum<["SignUp", "Invite", "SSO"]>>;
|
|
161216
|
+
}, "strip", z.ZodTypeAny, {
|
|
161217
|
+
id: string;
|
|
161218
|
+
createdAt: Date;
|
|
161219
|
+
email: string;
|
|
161220
|
+
profile: {
|
|
161221
|
+
name: string;
|
|
161222
|
+
avatar?: string | undefined;
|
|
161223
|
+
nickname?: string | undefined;
|
|
161224
|
+
onboarding?: {
|
|
161225
|
+
companyName?: string | undefined;
|
|
161226
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
161227
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
161228
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
161229
|
+
jobTitle?: string | undefined;
|
|
161230
|
+
phase?: string | undefined;
|
|
161231
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
161232
|
+
designSystemName?: string | undefined;
|
|
161233
|
+
defaultDestination?: string | undefined;
|
|
161234
|
+
figmaUrl?: string | undefined;
|
|
161235
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
161236
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
161237
|
+
} | undefined;
|
|
161238
|
+
};
|
|
161239
|
+
emailVerified: boolean;
|
|
161240
|
+
isProtected: boolean;
|
|
161241
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
161242
|
+
trialExpiresAt?: Date | undefined;
|
|
161243
|
+
linkedIntegrations?: {
|
|
161244
|
+
azure?: {
|
|
161245
|
+
id: string;
|
|
161246
|
+
email?: string | undefined;
|
|
161247
|
+
handle?: string | undefined;
|
|
161248
|
+
avatarUrl?: string | undefined;
|
|
161249
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
161250
|
+
customUrl?: string | undefined;
|
|
161251
|
+
}[] | undefined;
|
|
161252
|
+
github?: {
|
|
161253
|
+
id: string;
|
|
161254
|
+
email?: string | undefined;
|
|
161255
|
+
handle?: string | undefined;
|
|
161256
|
+
avatarUrl?: string | undefined;
|
|
161257
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
161258
|
+
customUrl?: string | undefined;
|
|
161259
|
+
}[] | undefined;
|
|
161260
|
+
gitlab?: {
|
|
161261
|
+
id: string;
|
|
161262
|
+
email?: string | undefined;
|
|
161263
|
+
handle?: string | undefined;
|
|
161264
|
+
avatarUrl?: string | undefined;
|
|
161265
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
161266
|
+
customUrl?: string | undefined;
|
|
161267
|
+
}[] | undefined;
|
|
161268
|
+
bitbucket?: {
|
|
161269
|
+
id: string;
|
|
161270
|
+
email?: string | undefined;
|
|
161271
|
+
handle?: string | undefined;
|
|
161272
|
+
avatarUrl?: string | undefined;
|
|
161273
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
161274
|
+
customUrl?: string | undefined;
|
|
161275
|
+
}[] | undefined;
|
|
161276
|
+
figma?: {
|
|
161277
|
+
id: string;
|
|
161278
|
+
email?: string | undefined;
|
|
161279
|
+
handle?: string | undefined;
|
|
161280
|
+
avatarUrl?: string | undefined;
|
|
161281
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
161282
|
+
customUrl?: string | undefined;
|
|
161283
|
+
} | undefined;
|
|
161284
|
+
} | undefined;
|
|
161285
|
+
loggedOutAt?: Date | undefined;
|
|
161286
|
+
}, {
|
|
161287
|
+
id: string;
|
|
161288
|
+
createdAt: Date;
|
|
161289
|
+
email: string;
|
|
161290
|
+
profile: {
|
|
161291
|
+
name: string;
|
|
161292
|
+
avatar?: string | undefined;
|
|
161293
|
+
nickname?: string | undefined;
|
|
161294
|
+
onboarding?: {
|
|
161295
|
+
companyName?: string | undefined;
|
|
161296
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
161297
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
161298
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
161299
|
+
jobTitle?: string | undefined;
|
|
161300
|
+
phase?: string | undefined;
|
|
161301
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
161302
|
+
designSystemName?: string | undefined;
|
|
161303
|
+
defaultDestination?: string | undefined;
|
|
161304
|
+
figmaUrl?: string | undefined;
|
|
161305
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
161306
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
161307
|
+
} | undefined;
|
|
161308
|
+
};
|
|
161309
|
+
emailVerified: boolean;
|
|
161310
|
+
isProtected: boolean;
|
|
161311
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
161312
|
+
trialExpiresAt?: Date | undefined;
|
|
161313
|
+
linkedIntegrations?: {
|
|
161314
|
+
azure?: {
|
|
161315
|
+
id: string;
|
|
161316
|
+
email?: string | undefined;
|
|
161317
|
+
handle?: string | undefined;
|
|
161318
|
+
avatarUrl?: string | undefined;
|
|
161319
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
161320
|
+
customUrl?: string | undefined;
|
|
161321
|
+
}[] | undefined;
|
|
161322
|
+
github?: {
|
|
161323
|
+
id: string;
|
|
161324
|
+
email?: string | undefined;
|
|
161325
|
+
handle?: string | undefined;
|
|
161326
|
+
avatarUrl?: string | undefined;
|
|
161327
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
161328
|
+
customUrl?: string | undefined;
|
|
161329
|
+
}[] | undefined;
|
|
161330
|
+
gitlab?: {
|
|
161331
|
+
id: string;
|
|
161332
|
+
email?: string | undefined;
|
|
161333
|
+
handle?: string | undefined;
|
|
161334
|
+
avatarUrl?: string | undefined;
|
|
161335
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
161336
|
+
customUrl?: string | undefined;
|
|
161337
|
+
}[] | undefined;
|
|
161338
|
+
bitbucket?: {
|
|
161339
|
+
id: string;
|
|
161340
|
+
email?: string | undefined;
|
|
161341
|
+
handle?: string | undefined;
|
|
161342
|
+
avatarUrl?: string | undefined;
|
|
161343
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
161344
|
+
customUrl?: string | undefined;
|
|
161345
|
+
}[] | undefined;
|
|
161346
|
+
figma?: {
|
|
161347
|
+
id: string;
|
|
161348
|
+
email?: string | undefined;
|
|
161349
|
+
handle?: string | undefined;
|
|
161350
|
+
avatarUrl?: string | undefined;
|
|
161351
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
161352
|
+
customUrl?: string | undefined;
|
|
161353
|
+
} | undefined;
|
|
161354
|
+
} | undefined;
|
|
161355
|
+
loggedOutAt?: Date | undefined;
|
|
161356
|
+
}>;
|
|
161357
|
+
type User = z.infer<typeof User>;
|
|
161358
|
+
|
|
161359
|
+
declare const UserAnalyticsCleanupSchedule: z.ZodObject<{
|
|
161360
|
+
userId: z.ZodString;
|
|
161361
|
+
createdAt: z.ZodDate;
|
|
161362
|
+
deleteAt: z.ZodDate;
|
|
161363
|
+
}, "strip", z.ZodTypeAny, {
|
|
161364
|
+
createdAt: Date;
|
|
161365
|
+
deleteAt: Date;
|
|
161366
|
+
userId: string;
|
|
161367
|
+
}, {
|
|
161368
|
+
createdAt: Date;
|
|
161369
|
+
deleteAt: Date;
|
|
161370
|
+
userId: string;
|
|
161371
|
+
}>;
|
|
161372
|
+
type UserAnalyticsCleanupSchedule = z.infer<typeof UserAnalyticsCleanupSchedule>;
|
|
161373
|
+
declare const UserAnalyticsCleanupScheduleDbInput: z.ZodObject<Omit<{
|
|
161374
|
+
userId: z.ZodString;
|
|
161375
|
+
createdAt: z.ZodDate;
|
|
161376
|
+
deleteAt: z.ZodDate;
|
|
161377
|
+
}, "createdAt">, "strip", z.ZodTypeAny, {
|
|
161378
|
+
deleteAt: Date;
|
|
161379
|
+
userId: string;
|
|
161380
|
+
}, {
|
|
161381
|
+
deleteAt: Date;
|
|
161382
|
+
userId: string;
|
|
161383
|
+
}>;
|
|
161384
|
+
type UserAnalyticsCleanupScheduleDbInput = z.infer<typeof UserAnalyticsCleanupScheduleDbInput>;
|
|
161385
|
+
|
|
161386
|
+
declare const UserIdentity: z.ZodObject<{
|
|
161387
|
+
id: z.ZodString;
|
|
161388
|
+
userId: z.ZodString;
|
|
161389
|
+
}, "strip", z.ZodTypeAny, {
|
|
161390
|
+
id: string;
|
|
161391
|
+
userId: string;
|
|
161392
|
+
}, {
|
|
161393
|
+
id: string;
|
|
161394
|
+
userId: string;
|
|
161395
|
+
}>;
|
|
161396
|
+
type UserIdentity = z.infer<typeof UserIdentity>;
|
|
161397
|
+
|
|
161398
|
+
declare const UserMinified: z.ZodObject<{
|
|
161399
|
+
id: z.ZodString;
|
|
161400
|
+
name: z.ZodString;
|
|
161401
|
+
email: z.ZodString;
|
|
161402
|
+
avatar: z.ZodOptional<z.ZodString>;
|
|
161403
|
+
}, "strip", z.ZodTypeAny, {
|
|
161404
|
+
id: string;
|
|
161405
|
+
name: string;
|
|
161406
|
+
email: string;
|
|
161407
|
+
avatar?: string | undefined;
|
|
161408
|
+
}, {
|
|
161409
|
+
id: string;
|
|
161410
|
+
name: string;
|
|
161411
|
+
email: string;
|
|
161412
|
+
avatar?: string | undefined;
|
|
161413
|
+
}>;
|
|
161414
|
+
type UserMinified = z.infer<typeof UserMinified>;
|
|
161415
|
+
|
|
161416
|
+
declare const LiveblocksNotificationSettings: z.ZodObject<{
|
|
161417
|
+
sendCommentNotificationEmails: z.ZodBoolean;
|
|
161418
|
+
}, "strip", z.ZodTypeAny, {
|
|
161419
|
+
sendCommentNotificationEmails: boolean;
|
|
161420
|
+
}, {
|
|
161421
|
+
sendCommentNotificationEmails: boolean;
|
|
161422
|
+
}>;
|
|
161423
|
+
type LiveblocksNotificationSettings = z.infer<typeof LiveblocksNotificationSettings>;
|
|
161424
|
+
declare const UserNotificationSettings: z.ZodObject<{
|
|
161425
|
+
liveblocksNotificationSettings: z.ZodObject<{
|
|
161426
|
+
sendCommentNotificationEmails: z.ZodBoolean;
|
|
161427
|
+
}, "strip", z.ZodTypeAny, {
|
|
161428
|
+
sendCommentNotificationEmails: boolean;
|
|
161429
|
+
}, {
|
|
161430
|
+
sendCommentNotificationEmails: boolean;
|
|
161431
|
+
}>;
|
|
161432
|
+
}, "strip", z.ZodTypeAny, {
|
|
161433
|
+
liveblocksNotificationSettings: {
|
|
161434
|
+
sendCommentNotificationEmails: boolean;
|
|
161435
|
+
};
|
|
161436
|
+
}, {
|
|
161437
|
+
liveblocksNotificationSettings: {
|
|
161438
|
+
sendCommentNotificationEmails: boolean;
|
|
161439
|
+
};
|
|
161440
|
+
}>;
|
|
161441
|
+
type UserNotificationSettings = z.infer<typeof UserNotificationSettings>;
|
|
161442
|
+
declare const defaultNotificationSettings: UserNotificationSettings;
|
|
161443
|
+
|
|
161444
|
+
declare const UserOnboardingDepartment: z.ZodEnum<["Design", "Engineering", "Product", "Brand", "Other"]>;
|
|
161445
|
+
type UserOnboardingDepartment = z.infer<typeof UserOnboardingDepartment>;
|
|
161446
|
+
declare const UserOnboardingJobLevel: z.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>;
|
|
161447
|
+
type UserOnboardingJobLevel = z.infer<typeof UserOnboardingJobLevel>;
|
|
161448
|
+
declare const UserOnboarding: z.ZodObject<{
|
|
161449
|
+
companyName: z.ZodOptional<z.ZodString>;
|
|
161450
|
+
numberOfPeopleInOrg: z.ZodOptional<z.ZodString>;
|
|
161451
|
+
numberOfPeopleInDesignTeam: z.ZodOptional<z.ZodString>;
|
|
161452
|
+
department: z.ZodOptional<z.ZodEnum<["Design", "Engineering", "Product", "Brand", "Other"]>>;
|
|
161453
|
+
jobTitle: z.ZodOptional<z.ZodString>;
|
|
161454
|
+
phase: z.ZodOptional<z.ZodString>;
|
|
161455
|
+
jobLevel: z.ZodOptional<z.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>>;
|
|
161456
|
+
designSystemName: z.ZodOptional<z.ZodString>;
|
|
161457
|
+
defaultDestination: z.ZodOptional<z.ZodString>;
|
|
161458
|
+
figmaUrl: z.ZodOptional<z.ZodString>;
|
|
161459
|
+
isPageDraftOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
|
|
161460
|
+
isApprovalsOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
|
|
161461
|
+
}, "strip", z.ZodTypeAny, {
|
|
161462
|
+
companyName?: string | undefined;
|
|
161463
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
161464
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
161465
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
161466
|
+
jobTitle?: string | undefined;
|
|
161467
|
+
phase?: string | undefined;
|
|
161468
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
161469
|
+
designSystemName?: string | undefined;
|
|
161470
|
+
defaultDestination?: string | undefined;
|
|
161471
|
+
figmaUrl?: string | undefined;
|
|
161472
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
161473
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
161474
|
+
}, {
|
|
161475
|
+
companyName?: string | undefined;
|
|
161476
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
161477
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
161478
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
161479
|
+
jobTitle?: string | undefined;
|
|
161480
|
+
phase?: string | undefined;
|
|
161481
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
161482
|
+
designSystemName?: string | undefined;
|
|
161483
|
+
defaultDestination?: string | undefined;
|
|
161484
|
+
figmaUrl?: string | undefined;
|
|
161485
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
161486
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
161487
|
+
}>;
|
|
161488
|
+
type UserOnboarding = z.infer<typeof UserOnboarding>;
|
|
161489
|
+
declare const UserProfile: z.ZodObject<{
|
|
161490
|
+
name: z.ZodString;
|
|
161491
|
+
avatar: z.ZodOptional<z.ZodString>;
|
|
161492
|
+
nickname: z.ZodOptional<z.ZodString>;
|
|
161493
|
+
onboarding: z.ZodOptional<z.ZodObject<{
|
|
161494
|
+
companyName: z.ZodOptional<z.ZodString>;
|
|
161495
|
+
numberOfPeopleInOrg: z.ZodOptional<z.ZodString>;
|
|
161496
|
+
numberOfPeopleInDesignTeam: z.ZodOptional<z.ZodString>;
|
|
161497
|
+
department: z.ZodOptional<z.ZodEnum<["Design", "Engineering", "Product", "Brand", "Other"]>>;
|
|
161498
|
+
jobTitle: z.ZodOptional<z.ZodString>;
|
|
161499
|
+
phase: z.ZodOptional<z.ZodString>;
|
|
161500
|
+
jobLevel: z.ZodOptional<z.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>>;
|
|
161501
|
+
designSystemName: z.ZodOptional<z.ZodString>;
|
|
161502
|
+
defaultDestination: z.ZodOptional<z.ZodString>;
|
|
161503
|
+
figmaUrl: z.ZodOptional<z.ZodString>;
|
|
161504
|
+
isPageDraftOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
|
|
161505
|
+
isApprovalsOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
|
|
161506
|
+
}, "strip", z.ZodTypeAny, {
|
|
161507
|
+
companyName?: string | undefined;
|
|
161508
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
161509
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
161510
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
161511
|
+
jobTitle?: string | undefined;
|
|
161512
|
+
phase?: string | undefined;
|
|
161513
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
161514
|
+
designSystemName?: string | undefined;
|
|
161515
|
+
defaultDestination?: string | undefined;
|
|
161516
|
+
figmaUrl?: string | undefined;
|
|
161517
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
161518
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
161519
|
+
}, {
|
|
161520
|
+
companyName?: string | undefined;
|
|
161521
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
161522
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
161523
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
161524
|
+
jobTitle?: string | undefined;
|
|
161525
|
+
phase?: string | undefined;
|
|
161526
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
161527
|
+
designSystemName?: string | undefined;
|
|
161528
|
+
defaultDestination?: string | undefined;
|
|
161529
|
+
figmaUrl?: string | undefined;
|
|
161530
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
161531
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
161532
|
+
}>>;
|
|
161533
|
+
}, "strip", z.ZodTypeAny, {
|
|
161534
|
+
name: string;
|
|
161535
|
+
avatar?: string | undefined;
|
|
161536
|
+
nickname?: string | undefined;
|
|
161537
|
+
onboarding?: {
|
|
161538
|
+
companyName?: string | undefined;
|
|
161539
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
161540
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
161541
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
161542
|
+
jobTitle?: string | undefined;
|
|
161543
|
+
phase?: string | undefined;
|
|
161544
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
161545
|
+
designSystemName?: string | undefined;
|
|
161546
|
+
defaultDestination?: string | undefined;
|
|
161547
|
+
figmaUrl?: string | undefined;
|
|
161548
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
161549
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
161550
|
+
} | undefined;
|
|
161551
|
+
}, {
|
|
161552
|
+
name: string;
|
|
161553
|
+
avatar?: string | undefined;
|
|
161554
|
+
nickname?: string | undefined;
|
|
161555
|
+
onboarding?: {
|
|
161556
|
+
companyName?: string | undefined;
|
|
161557
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
161558
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
161559
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
161560
|
+
jobTitle?: string | undefined;
|
|
161561
|
+
phase?: string | undefined;
|
|
161562
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
161563
|
+
designSystemName?: string | undefined;
|
|
161564
|
+
defaultDestination?: string | undefined;
|
|
161565
|
+
figmaUrl?: string | undefined;
|
|
161566
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
161567
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
161568
|
+
} | undefined;
|
|
161569
|
+
}>;
|
|
161570
|
+
type UserProfile = z.infer<typeof UserProfile>;
|
|
161571
|
+
declare const UserProfileUpdate: z.ZodObject<Omit<{
|
|
161572
|
+
name: z.ZodOptional<z.ZodString>;
|
|
161573
|
+
avatar: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
161574
|
+
nickname: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
161575
|
+
onboarding: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
161576
|
+
companyName: z.ZodOptional<z.ZodString>;
|
|
161577
|
+
numberOfPeopleInOrg: z.ZodOptional<z.ZodString>;
|
|
161578
|
+
numberOfPeopleInDesignTeam: z.ZodOptional<z.ZodString>;
|
|
161579
|
+
department: z.ZodOptional<z.ZodEnum<["Design", "Engineering", "Product", "Brand", "Other"]>>;
|
|
161580
|
+
jobTitle: z.ZodOptional<z.ZodString>;
|
|
161581
|
+
phase: z.ZodOptional<z.ZodString>;
|
|
161582
|
+
jobLevel: z.ZodOptional<z.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>>;
|
|
161583
|
+
designSystemName: z.ZodOptional<z.ZodString>;
|
|
161584
|
+
defaultDestination: z.ZodOptional<z.ZodString>;
|
|
161585
|
+
figmaUrl: z.ZodOptional<z.ZodString>;
|
|
161586
|
+
isPageDraftOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
|
|
161587
|
+
isApprovalsOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
|
|
161588
|
+
}, "strip", z.ZodTypeAny, {
|
|
161589
|
+
companyName?: string | undefined;
|
|
161590
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
161591
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
161592
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
161593
|
+
jobTitle?: string | undefined;
|
|
161594
|
+
phase?: string | undefined;
|
|
161595
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
161596
|
+
designSystemName?: string | undefined;
|
|
161597
|
+
defaultDestination?: string | undefined;
|
|
161598
|
+
figmaUrl?: string | undefined;
|
|
161599
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
161600
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
161601
|
+
}, {
|
|
161602
|
+
companyName?: string | undefined;
|
|
161603
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
161604
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
161605
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
161606
|
+
jobTitle?: string | undefined;
|
|
161607
|
+
phase?: string | undefined;
|
|
161608
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
161609
|
+
designSystemName?: string | undefined;
|
|
161610
|
+
defaultDestination?: string | undefined;
|
|
161611
|
+
figmaUrl?: string | undefined;
|
|
161612
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
161613
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
161614
|
+
}>>>;
|
|
161615
|
+
}, "avatar">, "strip", z.ZodTypeAny, {
|
|
161616
|
+
name?: string | undefined;
|
|
161617
|
+
nickname?: string | undefined;
|
|
161618
|
+
onboarding?: {
|
|
161619
|
+
companyName?: string | undefined;
|
|
161620
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
161621
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
161622
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
161623
|
+
jobTitle?: string | undefined;
|
|
161624
|
+
phase?: string | undefined;
|
|
161625
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
161626
|
+
designSystemName?: string | undefined;
|
|
161627
|
+
defaultDestination?: string | undefined;
|
|
161628
|
+
figmaUrl?: string | undefined;
|
|
161629
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
161630
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
161631
|
+
} | undefined;
|
|
161632
|
+
}, {
|
|
161633
|
+
name?: string | undefined;
|
|
161634
|
+
nickname?: string | undefined;
|
|
161635
|
+
onboarding?: {
|
|
161636
|
+
companyName?: string | undefined;
|
|
161637
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
161638
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
161639
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
161640
|
+
jobTitle?: string | undefined;
|
|
161641
|
+
phase?: string | undefined;
|
|
161642
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
161643
|
+
designSystemName?: string | undefined;
|
|
161644
|
+
defaultDestination?: string | undefined;
|
|
161645
|
+
figmaUrl?: string | undefined;
|
|
161646
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
161647
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
161648
|
+
} | undefined;
|
|
161649
|
+
}>;
|
|
161650
|
+
type UserProfileUpdate = z.infer<typeof UserProfileUpdate>;
|
|
161651
|
+
|
|
161652
|
+
declare const UserTest: z.ZodObject<{
|
|
161653
|
+
id: z.ZodString;
|
|
161654
|
+
email: z.ZodString;
|
|
161536
161655
|
}, "strip", z.ZodTypeAny, {
|
|
161537
161656
|
id: string;
|
|
161538
|
-
createdAt: Date;
|
|
161539
161657
|
email: string;
|
|
161540
|
-
profile: {
|
|
161541
|
-
name: string;
|
|
161542
|
-
avatar?: string | undefined;
|
|
161543
|
-
nickname?: string | undefined;
|
|
161544
|
-
onboarding?: {
|
|
161545
|
-
companyName?: string | undefined;
|
|
161546
|
-
numberOfPeopleInOrg?: string | undefined;
|
|
161547
|
-
numberOfPeopleInDesignTeam?: string | undefined;
|
|
161548
|
-
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
161549
|
-
jobTitle?: string | undefined;
|
|
161550
|
-
phase?: string | undefined;
|
|
161551
|
-
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
161552
|
-
designSystemName?: string | undefined;
|
|
161553
|
-
defaultDestination?: string | undefined;
|
|
161554
|
-
figmaUrl?: string | undefined;
|
|
161555
|
-
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
161556
|
-
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
161557
|
-
} | undefined;
|
|
161558
|
-
};
|
|
161559
|
-
emailVerified: boolean;
|
|
161560
|
-
isProtected: boolean;
|
|
161561
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
161562
|
-
trialExpiresAt?: Date | undefined;
|
|
161563
|
-
linkedIntegrations?: {
|
|
161564
|
-
azure?: {
|
|
161565
|
-
id: string;
|
|
161566
|
-
email?: string | undefined;
|
|
161567
|
-
handle?: string | undefined;
|
|
161568
|
-
avatarUrl?: string | undefined;
|
|
161569
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
161570
|
-
customUrl?: string | undefined;
|
|
161571
|
-
}[] | undefined;
|
|
161572
|
-
github?: {
|
|
161573
|
-
id: string;
|
|
161574
|
-
email?: string | undefined;
|
|
161575
|
-
handle?: string | undefined;
|
|
161576
|
-
avatarUrl?: string | undefined;
|
|
161577
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
161578
|
-
customUrl?: string | undefined;
|
|
161579
|
-
}[] | undefined;
|
|
161580
|
-
gitlab?: {
|
|
161581
|
-
id: string;
|
|
161582
|
-
email?: string | undefined;
|
|
161583
|
-
handle?: string | undefined;
|
|
161584
|
-
avatarUrl?: string | undefined;
|
|
161585
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
161586
|
-
customUrl?: string | undefined;
|
|
161587
|
-
}[] | undefined;
|
|
161588
|
-
bitbucket?: {
|
|
161589
|
-
id: string;
|
|
161590
|
-
email?: string | undefined;
|
|
161591
|
-
handle?: string | undefined;
|
|
161592
|
-
avatarUrl?: string | undefined;
|
|
161593
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
161594
|
-
customUrl?: string | undefined;
|
|
161595
|
-
}[] | undefined;
|
|
161596
|
-
figma?: {
|
|
161597
|
-
id: string;
|
|
161598
|
-
email?: string | undefined;
|
|
161599
|
-
handle?: string | undefined;
|
|
161600
|
-
avatarUrl?: string | undefined;
|
|
161601
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
161602
|
-
customUrl?: string | undefined;
|
|
161603
|
-
} | undefined;
|
|
161604
|
-
} | undefined;
|
|
161605
|
-
loggedOutAt?: Date | undefined;
|
|
161606
161658
|
}, {
|
|
161607
161659
|
id: string;
|
|
161608
|
-
createdAt: Date;
|
|
161609
161660
|
email: string;
|
|
161610
|
-
profile: {
|
|
161611
|
-
name: string;
|
|
161612
|
-
avatar?: string | undefined;
|
|
161613
|
-
nickname?: string | undefined;
|
|
161614
|
-
onboarding?: {
|
|
161615
|
-
companyName?: string | undefined;
|
|
161616
|
-
numberOfPeopleInOrg?: string | undefined;
|
|
161617
|
-
numberOfPeopleInDesignTeam?: string | undefined;
|
|
161618
|
-
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
161619
|
-
jobTitle?: string | undefined;
|
|
161620
|
-
phase?: string | undefined;
|
|
161621
|
-
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
161622
|
-
designSystemName?: string | undefined;
|
|
161623
|
-
defaultDestination?: string | undefined;
|
|
161624
|
-
figmaUrl?: string | undefined;
|
|
161625
|
-
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
161626
|
-
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
161627
|
-
} | undefined;
|
|
161628
|
-
};
|
|
161629
|
-
emailVerified: boolean;
|
|
161630
|
-
isProtected: boolean;
|
|
161631
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
161632
|
-
trialExpiresAt?: Date | undefined;
|
|
161633
|
-
linkedIntegrations?: {
|
|
161634
|
-
azure?: {
|
|
161635
|
-
id: string;
|
|
161636
|
-
email?: string | undefined;
|
|
161637
|
-
handle?: string | undefined;
|
|
161638
|
-
avatarUrl?: string | undefined;
|
|
161639
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
161640
|
-
customUrl?: string | undefined;
|
|
161641
|
-
}[] | undefined;
|
|
161642
|
-
github?: {
|
|
161643
|
-
id: string;
|
|
161644
|
-
email?: string | undefined;
|
|
161645
|
-
handle?: string | undefined;
|
|
161646
|
-
avatarUrl?: string | undefined;
|
|
161647
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
161648
|
-
customUrl?: string | undefined;
|
|
161649
|
-
}[] | undefined;
|
|
161650
|
-
gitlab?: {
|
|
161651
|
-
id: string;
|
|
161652
|
-
email?: string | undefined;
|
|
161653
|
-
handle?: string | undefined;
|
|
161654
|
-
avatarUrl?: string | undefined;
|
|
161655
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
161656
|
-
customUrl?: string | undefined;
|
|
161657
|
-
}[] | undefined;
|
|
161658
|
-
bitbucket?: {
|
|
161659
|
-
id: string;
|
|
161660
|
-
email?: string | undefined;
|
|
161661
|
-
handle?: string | undefined;
|
|
161662
|
-
avatarUrl?: string | undefined;
|
|
161663
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
161664
|
-
customUrl?: string | undefined;
|
|
161665
|
-
}[] | undefined;
|
|
161666
|
-
figma?: {
|
|
161667
|
-
id: string;
|
|
161668
|
-
email?: string | undefined;
|
|
161669
|
-
handle?: string | undefined;
|
|
161670
|
-
avatarUrl?: string | undefined;
|
|
161671
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
161672
|
-
customUrl?: string | undefined;
|
|
161673
|
-
} | undefined;
|
|
161674
|
-
} | undefined;
|
|
161675
|
-
loggedOutAt?: Date | undefined;
|
|
161676
161661
|
}>;
|
|
161677
|
-
type
|
|
161662
|
+
type UserTest = z.infer<typeof UserTest>;
|
|
161678
161663
|
|
|
161679
161664
|
type PersonalAccessTokenWithUser = {
|
|
161680
161665
|
user: User;
|
|
@@ -166534,4 +166519,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
166534
166519
|
}>;
|
|
166535
166520
|
type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
|
|
166536
166521
|
|
|
166537
|
-
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 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, 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, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemMembership, DesignSystemSwitcher, 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, 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, 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, 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, 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 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 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, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, areShallowObjectsEqual, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, 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, zodCreateInputOmit, zodUpdateInputOmit };
|
|
166522
|
+
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 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, 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, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemMembership, DesignSystemSwitcher, 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, 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, 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, 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, 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 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 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, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, areShallowObjectsEqual, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, 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, zodCreateInputOmit, zodUpdateInputOmit };
|