@supernova-studio/model 0.54.28 → 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.ts CHANGED
@@ -10332,6 +10332,7 @@ declare const UserDump: z.ZodObject<{
10332
10332
  }>>;
10333
10333
  loggedOutAt: z.ZodOptional<z.ZodDate>;
10334
10334
  isProtected: z.ZodBoolean;
10335
+ source: z.ZodOptional<z.ZodEnum<["SignUp", "Invite", "SSO"]>>;
10335
10336
  }, "strip", z.ZodTypeAny, {
10336
10337
  id: string;
10337
10338
  createdAt: Date;
@@ -10357,6 +10358,7 @@ declare const UserDump: z.ZodObject<{
10357
10358
  };
10358
10359
  emailVerified: boolean;
10359
10360
  isProtected: boolean;
10361
+ source?: "SignUp" | "Invite" | "SSO" | undefined;
10360
10362
  trialExpiresAt?: Date | undefined;
10361
10363
  linkedIntegrations?: {
10362
10364
  azure?: {
@@ -10426,6 +10428,7 @@ declare const UserDump: z.ZodObject<{
10426
10428
  };
10427
10429
  emailVerified: boolean;
10428
10430
  isProtected: boolean;
10431
+ source?: "SignUp" | "Invite" | "SSO" | undefined;
10429
10432
  trialExpiresAt?: Date | undefined;
10430
10433
  linkedIntegrations?: {
10431
10434
  azure?: {
@@ -19632,6 +19635,7 @@ declare const UserDump: z.ZodObject<{
19632
19635
  };
19633
19636
  emailVerified: boolean;
19634
19637
  isProtected: boolean;
19638
+ source?: "SignUp" | "Invite" | "SSO" | undefined;
19635
19639
  trialExpiresAt?: Date | undefined;
19636
19640
  linkedIntegrations?: {
19637
19641
  azure?: {
@@ -20521,6 +20525,7 @@ declare const UserDump: z.ZodObject<{
20521
20525
  };
20522
20526
  emailVerified: boolean;
20523
20527
  isProtected: boolean;
20528
+ source?: "SignUp" | "Invite" | "SSO" | undefined;
20524
20529
  trialExpiresAt?: Date | undefined;
20525
20530
  linkedIntegrations?: {
20526
20531
  azure?: {
@@ -29325,6 +29330,7 @@ declare const UserSession: z.ZodObject<{
29325
29330
  }>>;
29326
29331
  loggedOutAt: z.ZodOptional<z.ZodDate>;
29327
29332
  isProtected: z.ZodBoolean;
29333
+ source: z.ZodOptional<z.ZodEnum<["SignUp", "Invite", "SSO"]>>;
29328
29334
  }, "strip", z.ZodTypeAny, {
29329
29335
  id: string;
29330
29336
  createdAt: Date;
@@ -29350,6 +29356,7 @@ declare const UserSession: z.ZodObject<{
29350
29356
  };
29351
29357
  emailVerified: boolean;
29352
29358
  isProtected: boolean;
29359
+ source?: "SignUp" | "Invite" | "SSO" | undefined;
29353
29360
  trialExpiresAt?: Date | undefined;
29354
29361
  linkedIntegrations?: {
29355
29362
  azure?: {
@@ -29419,6 +29426,7 @@ declare const UserSession: z.ZodObject<{
29419
29426
  };
29420
29427
  emailVerified: boolean;
29421
29428
  isProtected: boolean;
29429
+ source?: "SignUp" | "Invite" | "SSO" | undefined;
29422
29430
  trialExpiresAt?: Date | undefined;
29423
29431
  linkedIntegrations?: {
29424
29432
  azure?: {
@@ -29502,6 +29510,7 @@ declare const UserSession: z.ZodObject<{
29502
29510
  };
29503
29511
  emailVerified: boolean;
29504
29512
  isProtected: boolean;
29513
+ source?: "SignUp" | "Invite" | "SSO" | undefined;
29505
29514
  trialExpiresAt?: Date | undefined;
29506
29515
  linkedIntegrations?: {
29507
29516
  azure?: {
@@ -29585,6 +29594,7 @@ declare const UserSession: z.ZodObject<{
29585
29594
  };
29586
29595
  emailVerified: boolean;
29587
29596
  isProtected: boolean;
29597
+ source?: "SignUp" | "Invite" | "SSO" | undefined;
29588
29598
  trialExpiresAt?: Date | undefined;
29589
29599
  linkedIntegrations?: {
29590
29600
  azure?: {
@@ -160917,324 +160927,8 @@ declare const UserLinkedIntegrations: z.ZodObject<{
160917
160927
  }>;
160918
160928
  type UserLinkedIntegrations = z.infer<typeof UserLinkedIntegrations>;
160919
160929
 
160920
- declare const UserAnalyticsCleanupSchedule: z.ZodObject<{
160921
- userId: z.ZodString;
160922
- createdAt: z.ZodDate;
160923
- deleteAt: z.ZodDate;
160924
- }, "strip", z.ZodTypeAny, {
160925
- createdAt: Date;
160926
- deleteAt: Date;
160927
- userId: string;
160928
- }, {
160929
- createdAt: Date;
160930
- deleteAt: Date;
160931
- userId: string;
160932
- }>;
160933
- type UserAnalyticsCleanupSchedule = z.infer<typeof UserAnalyticsCleanupSchedule>;
160934
- declare const UserAnalyticsCleanupScheduleDbInput: z.ZodObject<Omit<{
160935
- userId: z.ZodString;
160936
- createdAt: z.ZodDate;
160937
- deleteAt: z.ZodDate;
160938
- }, "createdAt">, "strip", z.ZodTypeAny, {
160939
- deleteAt: Date;
160940
- userId: string;
160941
- }, {
160942
- deleteAt: Date;
160943
- userId: string;
160944
- }>;
160945
- type UserAnalyticsCleanupScheduleDbInput = z.infer<typeof UserAnalyticsCleanupScheduleDbInput>;
160946
-
160947
- declare const CreateUserInput: z.ZodObject<{
160948
- email: z.ZodString;
160949
- name: z.ZodString;
160950
- username: z.ZodString;
160951
- }, "strip", z.ZodTypeAny, {
160952
- name: string;
160953
- email: string;
160954
- username: string;
160955
- }, {
160956
- name: string;
160957
- email: string;
160958
- username: string;
160959
- }>;
160960
- type CreateUserInput = z.infer<typeof CreateUserInput>;
160961
-
160962
- declare const UserIdentity: z.ZodObject<{
160963
- id: z.ZodString;
160964
- userId: z.ZodString;
160965
- }, "strip", z.ZodTypeAny, {
160966
- id: string;
160967
- userId: string;
160968
- }, {
160969
- id: string;
160970
- userId: string;
160971
- }>;
160972
- type UserIdentity = z.infer<typeof UserIdentity>;
160973
-
160974
- declare const UserMinified: z.ZodObject<{
160975
- id: z.ZodString;
160976
- name: z.ZodString;
160977
- email: z.ZodString;
160978
- avatar: z.ZodOptional<z.ZodString>;
160979
- }, "strip", z.ZodTypeAny, {
160980
- id: string;
160981
- name: string;
160982
- email: string;
160983
- avatar?: string | undefined;
160984
- }, {
160985
- id: string;
160986
- name: string;
160987
- email: string;
160988
- avatar?: string | undefined;
160989
- }>;
160990
- type UserMinified = z.infer<typeof UserMinified>;
160991
-
160992
- declare const LiveblocksNotificationSettings: z.ZodObject<{
160993
- sendCommentNotificationEmails: z.ZodBoolean;
160994
- }, "strip", z.ZodTypeAny, {
160995
- sendCommentNotificationEmails: boolean;
160996
- }, {
160997
- sendCommentNotificationEmails: boolean;
160998
- }>;
160999
- type LiveblocksNotificationSettings = z.infer<typeof LiveblocksNotificationSettings>;
161000
- declare const UserNotificationSettings: z.ZodObject<{
161001
- liveblocksNotificationSettings: z.ZodObject<{
161002
- sendCommentNotificationEmails: z.ZodBoolean;
161003
- }, "strip", z.ZodTypeAny, {
161004
- sendCommentNotificationEmails: boolean;
161005
- }, {
161006
- sendCommentNotificationEmails: boolean;
161007
- }>;
161008
- }, "strip", z.ZodTypeAny, {
161009
- liveblocksNotificationSettings: {
161010
- sendCommentNotificationEmails: boolean;
161011
- };
161012
- }, {
161013
- liveblocksNotificationSettings: {
161014
- sendCommentNotificationEmails: boolean;
161015
- };
161016
- }>;
161017
- type UserNotificationSettings = z.infer<typeof UserNotificationSettings>;
161018
- declare const defaultNotificationSettings: UserNotificationSettings;
161019
-
161020
- declare const UserOnboardingDepartment: z.ZodEnum<["Design", "Engineering", "Product", "Brand", "Other"]>;
161021
- declare const UserOnboardingJobLevel: z.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>;
161022
- declare const UserOnboarding: z.ZodObject<{
161023
- companyName: z.ZodOptional<z.ZodString>;
161024
- numberOfPeopleInOrg: z.ZodOptional<z.ZodString>;
161025
- numberOfPeopleInDesignTeam: z.ZodOptional<z.ZodString>;
161026
- department: z.ZodOptional<z.ZodEnum<["Design", "Engineering", "Product", "Brand", "Other"]>>;
161027
- jobTitle: z.ZodOptional<z.ZodString>;
161028
- phase: z.ZodOptional<z.ZodString>;
161029
- jobLevel: z.ZodOptional<z.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>>;
161030
- designSystemName: z.ZodOptional<z.ZodString>;
161031
- defaultDestination: z.ZodOptional<z.ZodString>;
161032
- figmaUrl: z.ZodOptional<z.ZodString>;
161033
- isPageDraftOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
161034
- isApprovalsOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
161035
- }, "strip", z.ZodTypeAny, {
161036
- companyName?: string | undefined;
161037
- numberOfPeopleInOrg?: string | undefined;
161038
- numberOfPeopleInDesignTeam?: string | undefined;
161039
- department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
161040
- jobTitle?: string | undefined;
161041
- phase?: string | undefined;
161042
- jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
161043
- designSystemName?: string | undefined;
161044
- defaultDestination?: string | undefined;
161045
- figmaUrl?: string | undefined;
161046
- isPageDraftOnboardingFinished?: boolean | undefined;
161047
- isApprovalsOnboardingFinished?: boolean | undefined;
161048
- }, {
161049
- companyName?: string | undefined;
161050
- numberOfPeopleInOrg?: string | undefined;
161051
- numberOfPeopleInDesignTeam?: string | undefined;
161052
- department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
161053
- jobTitle?: string | undefined;
161054
- phase?: string | undefined;
161055
- jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
161056
- designSystemName?: string | undefined;
161057
- defaultDestination?: string | undefined;
161058
- figmaUrl?: string | undefined;
161059
- isPageDraftOnboardingFinished?: boolean | undefined;
161060
- isApprovalsOnboardingFinished?: boolean | undefined;
161061
- }>;
161062
- type UserOnboarding = z.infer<typeof UserOnboarding>;
161063
- declare const UserProfileUpdate: z.ZodObject<Omit<{
161064
- name: z.ZodOptional<z.ZodString>;
161065
- avatar: z.ZodOptional<z.ZodOptional<z.ZodString>>;
161066
- nickname: z.ZodOptional<z.ZodOptional<z.ZodString>>;
161067
- onboarding: z.ZodOptional<z.ZodOptional<z.ZodObject<{
161068
- companyName: z.ZodOptional<z.ZodString>;
161069
- numberOfPeopleInOrg: z.ZodOptional<z.ZodString>;
161070
- numberOfPeopleInDesignTeam: z.ZodOptional<z.ZodString>;
161071
- department: z.ZodOptional<z.ZodEnum<["Design", "Engineering", "Product", "Brand", "Other"]>>;
161072
- jobTitle: z.ZodOptional<z.ZodString>;
161073
- phase: z.ZodOptional<z.ZodString>;
161074
- jobLevel: z.ZodOptional<z.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>>;
161075
- designSystemName: z.ZodOptional<z.ZodString>;
161076
- defaultDestination: z.ZodOptional<z.ZodString>;
161077
- figmaUrl: z.ZodOptional<z.ZodString>;
161078
- isPageDraftOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
161079
- isApprovalsOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
161080
- }, "strip", z.ZodTypeAny, {
161081
- companyName?: string | undefined;
161082
- numberOfPeopleInOrg?: string | undefined;
161083
- numberOfPeopleInDesignTeam?: string | undefined;
161084
- department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
161085
- jobTitle?: string | undefined;
161086
- phase?: string | undefined;
161087
- jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
161088
- designSystemName?: string | undefined;
161089
- defaultDestination?: string | undefined;
161090
- figmaUrl?: string | undefined;
161091
- isPageDraftOnboardingFinished?: boolean | undefined;
161092
- isApprovalsOnboardingFinished?: boolean | undefined;
161093
- }, {
161094
- companyName?: string | undefined;
161095
- numberOfPeopleInOrg?: string | undefined;
161096
- numberOfPeopleInDesignTeam?: string | undefined;
161097
- department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
161098
- jobTitle?: string | undefined;
161099
- phase?: string | undefined;
161100
- jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
161101
- designSystemName?: string | undefined;
161102
- defaultDestination?: string | undefined;
161103
- figmaUrl?: string | undefined;
161104
- isPageDraftOnboardingFinished?: boolean | undefined;
161105
- isApprovalsOnboardingFinished?: boolean | undefined;
161106
- }>>>;
161107
- }, "avatar">, "strip", z.ZodTypeAny, {
161108
- name?: string | undefined;
161109
- nickname?: string | undefined;
161110
- onboarding?: {
161111
- companyName?: string | undefined;
161112
- numberOfPeopleInOrg?: string | undefined;
161113
- numberOfPeopleInDesignTeam?: string | undefined;
161114
- department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
161115
- jobTitle?: string | undefined;
161116
- phase?: string | undefined;
161117
- jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
161118
- designSystemName?: string | undefined;
161119
- defaultDestination?: string | undefined;
161120
- figmaUrl?: string | undefined;
161121
- isPageDraftOnboardingFinished?: boolean | undefined;
161122
- isApprovalsOnboardingFinished?: boolean | undefined;
161123
- } | undefined;
161124
- }, {
161125
- name?: string | undefined;
161126
- nickname?: string | undefined;
161127
- onboarding?: {
161128
- companyName?: string | undefined;
161129
- numberOfPeopleInOrg?: string | undefined;
161130
- numberOfPeopleInDesignTeam?: string | undefined;
161131
- department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
161132
- jobTitle?: string | undefined;
161133
- phase?: string | undefined;
161134
- jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
161135
- designSystemName?: string | undefined;
161136
- defaultDestination?: string | undefined;
161137
- figmaUrl?: string | undefined;
161138
- isPageDraftOnboardingFinished?: boolean | undefined;
161139
- isApprovalsOnboardingFinished?: boolean | undefined;
161140
- } | undefined;
161141
- }>;
161142
- type UserProfileUpdate = z.infer<typeof UserProfileUpdate>;
161143
- declare const UserProfile: z.ZodObject<{
161144
- name: z.ZodString;
161145
- avatar: z.ZodOptional<z.ZodString>;
161146
- nickname: z.ZodOptional<z.ZodString>;
161147
- onboarding: z.ZodOptional<z.ZodObject<{
161148
- companyName: z.ZodOptional<z.ZodString>;
161149
- numberOfPeopleInOrg: z.ZodOptional<z.ZodString>;
161150
- numberOfPeopleInDesignTeam: z.ZodOptional<z.ZodString>;
161151
- department: z.ZodOptional<z.ZodEnum<["Design", "Engineering", "Product", "Brand", "Other"]>>;
161152
- jobTitle: z.ZodOptional<z.ZodString>;
161153
- phase: z.ZodOptional<z.ZodString>;
161154
- jobLevel: z.ZodOptional<z.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>>;
161155
- designSystemName: z.ZodOptional<z.ZodString>;
161156
- defaultDestination: z.ZodOptional<z.ZodString>;
161157
- figmaUrl: z.ZodOptional<z.ZodString>;
161158
- isPageDraftOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
161159
- isApprovalsOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
161160
- }, "strip", z.ZodTypeAny, {
161161
- companyName?: string | undefined;
161162
- numberOfPeopleInOrg?: string | undefined;
161163
- numberOfPeopleInDesignTeam?: string | undefined;
161164
- department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
161165
- jobTitle?: string | undefined;
161166
- phase?: string | undefined;
161167
- jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
161168
- designSystemName?: string | undefined;
161169
- defaultDestination?: string | undefined;
161170
- figmaUrl?: string | undefined;
161171
- isPageDraftOnboardingFinished?: boolean | undefined;
161172
- isApprovalsOnboardingFinished?: boolean | undefined;
161173
- }, {
161174
- companyName?: string | undefined;
161175
- numberOfPeopleInOrg?: string | undefined;
161176
- numberOfPeopleInDesignTeam?: string | undefined;
161177
- department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
161178
- jobTitle?: string | undefined;
161179
- phase?: string | undefined;
161180
- jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
161181
- designSystemName?: string | undefined;
161182
- defaultDestination?: string | undefined;
161183
- figmaUrl?: string | undefined;
161184
- isPageDraftOnboardingFinished?: boolean | undefined;
161185
- isApprovalsOnboardingFinished?: boolean | undefined;
161186
- }>>;
161187
- }, "strip", z.ZodTypeAny, {
161188
- name: string;
161189
- avatar?: string | undefined;
161190
- nickname?: string | undefined;
161191
- onboarding?: {
161192
- companyName?: string | undefined;
161193
- numberOfPeopleInOrg?: string | undefined;
161194
- numberOfPeopleInDesignTeam?: string | undefined;
161195
- department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
161196
- jobTitle?: string | undefined;
161197
- phase?: string | undefined;
161198
- jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
161199
- designSystemName?: string | undefined;
161200
- defaultDestination?: string | undefined;
161201
- figmaUrl?: string | undefined;
161202
- isPageDraftOnboardingFinished?: boolean | undefined;
161203
- isApprovalsOnboardingFinished?: boolean | undefined;
161204
- } | undefined;
161205
- }, {
161206
- name: string;
161207
- avatar?: string | undefined;
161208
- nickname?: string | undefined;
161209
- onboarding?: {
161210
- companyName?: string | undefined;
161211
- numberOfPeopleInOrg?: string | undefined;
161212
- numberOfPeopleInDesignTeam?: string | undefined;
161213
- department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
161214
- jobTitle?: string | undefined;
161215
- phase?: string | undefined;
161216
- jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
161217
- designSystemName?: string | undefined;
161218
- defaultDestination?: string | undefined;
161219
- figmaUrl?: string | undefined;
161220
- isPageDraftOnboardingFinished?: boolean | undefined;
161221
- isApprovalsOnboardingFinished?: boolean | undefined;
161222
- } | undefined;
161223
- }>;
161224
- type UserProfile = z.infer<typeof UserProfile>;
161225
-
161226
- declare const UserTest: z.ZodObject<{
161227
- id: z.ZodString;
161228
- email: z.ZodString;
161229
- }, "strip", z.ZodTypeAny, {
161230
- id: string;
161231
- email: string;
161232
- }, {
161233
- id: string;
161234
- email: string;
161235
- }>;
161236
- type UserTest = z.infer<typeof UserTest>;
161237
-
160930
+ declare const UserSource: z.ZodEnum<["SignUp", "Invite", "SSO"]>;
160931
+ type UserSource = z.infer<typeof UserSource>;
161238
160932
  declare const User: z.ZodObject<{
161239
160933
  id: z.ZodString;
161240
160934
  email: z.ZodString;
@@ -161518,6 +161212,7 @@ declare const User: z.ZodObject<{
161518
161212
  }>>;
161519
161213
  loggedOutAt: z.ZodOptional<z.ZodDate>;
161520
161214
  isProtected: z.ZodBoolean;
161215
+ source: z.ZodOptional<z.ZodEnum<["SignUp", "Invite", "SSO"]>>;
161521
161216
  }, "strip", z.ZodTypeAny, {
161522
161217
  id: string;
161523
161218
  createdAt: Date;
@@ -161543,6 +161238,7 @@ declare const User: z.ZodObject<{
161543
161238
  };
161544
161239
  emailVerified: boolean;
161545
161240
  isProtected: boolean;
161241
+ source?: "SignUp" | "Invite" | "SSO" | undefined;
161546
161242
  trialExpiresAt?: Date | undefined;
161547
161243
  linkedIntegrations?: {
161548
161244
  azure?: {
@@ -161612,6 +161308,7 @@ declare const User: z.ZodObject<{
161612
161308
  };
161613
161309
  emailVerified: boolean;
161614
161310
  isProtected: boolean;
161311
+ source?: "SignUp" | "Invite" | "SSO" | undefined;
161615
161312
  trialExpiresAt?: Date | undefined;
161616
161313
  linkedIntegrations?: {
161617
161314
  azure?: {
@@ -161659,6 +161356,311 @@ declare const User: z.ZodObject<{
161659
161356
  }>;
161660
161357
  type User = z.infer<typeof User>;
161661
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;
161655
+ }, "strip", z.ZodTypeAny, {
161656
+ id: string;
161657
+ email: string;
161658
+ }, {
161659
+ id: string;
161660
+ email: string;
161661
+ }>;
161662
+ type UserTest = z.infer<typeof UserTest>;
161663
+
161662
161664
  type PersonalAccessTokenWithUser = {
161663
161665
  user: User;
161664
161666
  token: PersonalAccessToken;
@@ -166517,4 +166519,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
166517
166519
  }>;
166518
166520
  type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
166519
166521
 
166520
- 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, 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 };