@supernova-studio/model 1.44.2 → 1.44.4

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.mjs CHANGED
@@ -203,7 +203,7 @@ var PostStripePortalSessionOutputSchema = z9.object({
203
203
 
204
204
  // src/billing/price.ts
205
205
  import { z as z10 } from "zod";
206
- var BillingIntervalSchema = z10.enum(["daily", "monthly", "weekly", "yearly"]);
206
+ var BillingIntervalSchema = z10.enum(["daily", "monthly", "yearly"]);
207
207
  var PriceSchema = z10.object({
208
208
  stripePriceId: z10.string(),
209
209
  stripeProductId: z10.string(),
@@ -5199,9 +5199,6 @@ var UserProfile = z143.object({
5199
5199
  theme: nullishToOptional(UserTheme),
5200
5200
  portalTheme: nullishToOptional(PortalTheme)
5201
5201
  });
5202
- var UserProfileUpdate = UserProfile.partial().omit({
5203
- avatar: true
5204
- });
5205
5202
 
5206
5203
  // src/users/user-test.ts
5207
5204
  import { z as z144 } from "zod";
@@ -5213,6 +5210,9 @@ var UserTest = z144.object({
5213
5210
  // src/users/user.ts
5214
5211
  import { z as z145 } from "zod";
5215
5212
  var UserSource = z145.enum(["SignUp", "Invite", "SSO"]);
5213
+ var UserEmailSettings = z145.object({
5214
+ marketingEmails: z145.boolean()
5215
+ });
5216
5216
  var User = z145.object({
5217
5217
  id: z145.string(),
5218
5218
  email: z145.string(),
@@ -5220,7 +5220,8 @@ var User = z145.object({
5220
5220
  profile: UserProfile,
5221
5221
  loggedOutAt: z145.coerce.date().optional(),
5222
5222
  isProtected: z145.boolean(),
5223
- source: UserSource.optional()
5223
+ source: UserSource.optional(),
5224
+ emailSettings: UserEmailSettings
5224
5225
  });
5225
5226
 
5226
5227
  // src/workspace/workspace-membership.ts
@@ -5693,10 +5694,10 @@ var CodeIntegrationDump = z163.object({
5693
5694
  });
5694
5695
 
5695
5696
  // src/data-dumps/design-system-dump.ts
5696
- import { z as z187 } from "zod";
5697
+ import { z as z188 } from "zod";
5697
5698
 
5698
5699
  // src/data-dumps/design-system-version-dump.ts
5699
- import { z as z186 } from "zod";
5700
+ import { z as z187 } from "zod";
5700
5701
 
5701
5702
  // src/liveblocks/rooms/design-system-version-room.ts
5702
5703
  import { z as z164 } from "zod";
@@ -5782,7 +5783,7 @@ var ForgeProjectArtifactRoom = Entity.extend({
5782
5783
  });
5783
5784
 
5784
5785
  // src/liveblocks/rooms/forge-project-room.ts
5785
- import { z as z182 } from "zod";
5786
+ import { z as z183 } from "zod";
5786
5787
 
5787
5788
  // src/forge/agent.ts
5788
5789
  import { z as z168 } from "zod";
@@ -6021,31 +6022,46 @@ var ForgeProjectIteration = z181.object({
6021
6022
  mergeMeta: ForgeProjectIterationMergeMeta.optional()
6022
6023
  });
6023
6024
 
6025
+ // src/forge/relation.ts
6026
+ import { z as z182 } from "zod";
6027
+ var ForgeRelationType = z182.enum(["Feature", "Document"]);
6028
+ var ForgeRelation = z182.object({
6029
+ id: z182.string(),
6030
+ projectId: z182.string(),
6031
+ sourceItemId: z182.string().uuid(),
6032
+ sourceItemType: ForgeRelationType,
6033
+ targetItemId: z182.string().uuid(),
6034
+ targetItemType: ForgeRelationType,
6035
+ createdAt: z182.string()
6036
+ });
6037
+
6024
6038
  // src/liveblocks/rooms/forge-project-room.ts
6025
6039
  var ForgeProjectRoom = Entity.extend({
6026
- projectId: z182.string(),
6027
- liveblocksId: z182.string()
6028
- });
6029
- var ForgeProjectRoomInitialState = z182.object({
6030
- artifacts: z182.array(ForgeProjectArtifact),
6031
- features: z182.array(ProjectFeature),
6032
- artifactSections: z182.array(ForgeSection),
6033
- featureSections: z182.array(ForgeSection)
6034
- });
6035
- var ForgeProjectRoomUpdate = z182.object({
6036
- artifacts: z182.array(ForgeProjectArtifact).optional(),
6037
- artifactIdsToDelete: z182.array(z182.string()).optional(),
6038
- features: z182.array(ProjectFeature).optional(),
6039
- featureIdsToDelete: z182.array(z182.string()).optional(),
6040
- artifactSections: z182.array(ForgeSection).optional(),
6041
- artifactSectionIdsToDelete: z182.array(z182.string()).optional(),
6042
- featureSections: z182.array(ForgeSection).optional(),
6043
- featureSectionIdsToDelete: z182.array(z182.string()).optional(),
6044
- executedTransactionIds: z182.string().array().optional()
6040
+ projectId: z183.string(),
6041
+ liveblocksId: z183.string()
6042
+ });
6043
+ var ForgeProjectRoomInitialState = z183.object({
6044
+ artifacts: z183.array(ForgeProjectArtifact),
6045
+ features: z183.array(ProjectFeature),
6046
+ artifactSections: z183.array(ForgeSection),
6047
+ featureSections: z183.array(ForgeSection),
6048
+ relations: z183.array(ForgeRelation)
6049
+ });
6050
+ var ForgeProjectRoomUpdate = z183.object({
6051
+ artifacts: z183.array(ForgeProjectArtifact).optional(),
6052
+ artifactIdsToDelete: z183.array(z183.string()).optional(),
6053
+ features: z183.array(ProjectFeature).optional(),
6054
+ featureIdsToDelete: z183.array(z183.string()).optional(),
6055
+ artifactSections: z183.array(ForgeSection).optional(),
6056
+ artifactSectionIdsToDelete: z183.array(z183.string()).optional(),
6057
+ featureSections: z183.array(ForgeSection).optional(),
6058
+ featureSectionIdsToDelete: z183.array(z183.string()).optional(),
6059
+ relations: z183.array(ForgeRelation).optional(),
6060
+ executedTransactionIds: z183.string().array().optional()
6045
6061
  });
6046
6062
 
6047
6063
  // src/liveblocks/rooms/room-type.ts
6048
- import { z as z183 } from "zod";
6064
+ import { z as z184 } from "zod";
6049
6065
  var RoomTypeEnum = /* @__PURE__ */ ((RoomTypeEnum2) => {
6050
6066
  RoomTypeEnum2["DocumentationPageOld"] = "documentation-page";
6051
6067
  RoomTypeEnum2["DocumentationPage"] = "doc-page";
@@ -6056,36 +6072,36 @@ var RoomTypeEnum = /* @__PURE__ */ ((RoomTypeEnum2) => {
6056
6072
  RoomTypeEnum2["ForgeProjectFeature"] = "forge-project-feature";
6057
6073
  return RoomTypeEnum2;
6058
6074
  })(RoomTypeEnum || {});
6059
- var RoomTypeSchema = z183.nativeEnum(RoomTypeEnum);
6075
+ var RoomTypeSchema = z184.nativeEnum(RoomTypeEnum);
6060
6076
  var RoomType = RoomTypeSchema.enum;
6061
6077
 
6062
6078
  // src/liveblocks/rooms/workspace-room.ts
6063
- import { z as z184 } from "zod";
6079
+ import { z as z185 } from "zod";
6064
6080
  var WorkspaceRoom = Entity.extend({
6065
- workspaceId: z184.string(),
6066
- liveblocksId: z184.string()
6081
+ workspaceId: z185.string(),
6082
+ liveblocksId: z185.string()
6067
6083
  });
6068
6084
 
6069
6085
  // src/data-dumps/published-docs-dump.ts
6070
- import { z as z185 } from "zod";
6071
- var PublishedDocsDump = z185.object({
6086
+ import { z as z186 } from "zod";
6087
+ var PublishedDocsDump = z186.object({
6072
6088
  documentation: PublishedDoc,
6073
6089
  pages: PublishedDocPage.array()
6074
6090
  });
6075
6091
 
6076
6092
  // src/data-dumps/design-system-version-dump.ts
6077
- var DocumentationThreadDump = z186.object({
6093
+ var DocumentationThreadDump = z187.object({
6078
6094
  thread: DocumentationCommentThread,
6079
6095
  comments: DocumentationComment.array()
6080
6096
  });
6081
- var DocumentationPageRoomDump = z186.object({
6097
+ var DocumentationPageRoomDump = z187.object({
6082
6098
  room: DocumentationPageRoom,
6083
6099
  threads: DocumentationThreadDump.array()
6084
6100
  });
6085
- var DesignSystemVersionMultiplayerDump = z186.object({
6101
+ var DesignSystemVersionMultiplayerDump = z187.object({
6086
6102
  documentationPages: DocumentationPageRoomDump.array()
6087
6103
  });
6088
- var DesignSystemVersionDump = z186.object({
6104
+ var DesignSystemVersionDump = z187.object({
6089
6105
  version: DesignSystemVersion,
6090
6106
  brands: Brand.array(),
6091
6107
  elements: DesignElement.array(),
@@ -6100,7 +6116,7 @@ var DesignSystemVersionDump = z186.object({
6100
6116
  });
6101
6117
 
6102
6118
  // src/data-dumps/design-system-dump.ts
6103
- var DesignSystemDump = z187.object({
6119
+ var DesignSystemDump = z188.object({
6104
6120
  designSystem: DesignSystem,
6105
6121
  dataSources: DataSource.array(),
6106
6122
  versions: DesignSystemVersionDump.array(),
@@ -6109,50 +6125,50 @@ var DesignSystemDump = z187.object({
6109
6125
  });
6110
6126
 
6111
6127
  // src/data-dumps/user-data-dump.ts
6112
- import { z as z190 } from "zod";
6128
+ import { z as z191 } from "zod";
6113
6129
 
6114
6130
  // src/data-dumps/workspace-dump.ts
6115
- import { z as z189 } from "zod";
6131
+ import { z as z190 } from "zod";
6116
6132
 
6117
6133
  // src/integrations/integration.ts
6118
- import { z as z188 } from "zod";
6119
- var IntegrationDesignSystem = z188.object({
6120
- designSystemId: z188.string(),
6121
- brandId: z188.string(),
6122
- title: z188.string().optional(),
6123
- userId: z188.string().optional(),
6124
- date: z188.coerce.date().optional()
6125
- });
6126
- var IntegrationCredentialsType = z188.enum(["OAuth2", "PAT"]);
6127
- var IntegrationCredentialsState = z188.enum(["Active", "Inactive"]);
6128
- var IntegrationCredentialsProfile = z188.object({
6129
- id: nullishToOptional(z188.string()),
6130
- email: nullishToOptional(z188.string()),
6131
- handle: nullishToOptional(z188.string()),
6132
- type: nullishToOptional(z188.string()),
6133
- avatarUrl: nullishToOptional(z188.string()),
6134
- organization: nullishToOptional(z188.string()),
6135
- collection: nullishToOptional(z188.string())
6136
- });
6137
- var IntegrationCredentials = z188.object({
6138
- id: z188.string(),
6134
+ import { z as z189 } from "zod";
6135
+ var IntegrationDesignSystem = z189.object({
6136
+ designSystemId: z189.string(),
6137
+ brandId: z189.string(),
6138
+ title: z189.string().optional(),
6139
+ userId: z189.string().optional(),
6140
+ date: z189.coerce.date().optional()
6141
+ });
6142
+ var IntegrationCredentialsType = z189.enum(["OAuth2", "PAT"]);
6143
+ var IntegrationCredentialsState = z189.enum(["Active", "Inactive"]);
6144
+ var IntegrationCredentialsProfile = z189.object({
6145
+ id: nullishToOptional(z189.string()),
6146
+ email: nullishToOptional(z189.string()),
6147
+ handle: nullishToOptional(z189.string()),
6148
+ type: nullishToOptional(z189.string()),
6149
+ avatarUrl: nullishToOptional(z189.string()),
6150
+ organization: nullishToOptional(z189.string()),
6151
+ collection: nullishToOptional(z189.string())
6152
+ });
6153
+ var IntegrationCredentials = z189.object({
6154
+ id: z189.string(),
6139
6155
  type: IntegrationCredentialsType,
6140
- integrationId: z188.string(),
6141
- accessToken: z188.string(),
6142
- userId: z188.string(),
6143
- createdAt: z188.coerce.date(),
6144
- refreshToken: z188.string().optional(),
6145
- tokenName: z188.string().optional(),
6146
- expiresAt: z188.coerce.date().optional(),
6147
- refreshedAt: z188.coerce.date().optional(),
6148
- username: z188.string().optional(),
6149
- appInstallationId: z188.string().optional(),
6156
+ integrationId: z189.string(),
6157
+ accessToken: z189.string(),
6158
+ userId: z189.string(),
6159
+ createdAt: z189.coerce.date(),
6160
+ refreshToken: z189.string().optional(),
6161
+ tokenName: z189.string().optional(),
6162
+ expiresAt: z189.coerce.date().optional(),
6163
+ refreshedAt: z189.coerce.date().optional(),
6164
+ username: z189.string().optional(),
6165
+ appInstallationId: z189.string().optional(),
6150
6166
  profile: IntegrationCredentialsProfile.optional(),
6151
- customUrl: z188.string().optional(),
6167
+ customUrl: z189.string().optional(),
6152
6168
  state: IntegrationCredentialsState,
6153
6169
  user: UserMinified.optional()
6154
6170
  });
6155
- var ExtendedIntegrationType = z188.enum([
6171
+ var ExtendedIntegrationType = z189.enum([
6156
6172
  "Figma",
6157
6173
  "Github",
6158
6174
  "Gitlab",
@@ -6163,26 +6179,26 @@ var ExtendedIntegrationType = z188.enum([
6163
6179
  ]);
6164
6180
  var IntegrationType = ExtendedIntegrationType.exclude(["TokenStudio", "FigmaVariablesPlugin"]);
6165
6181
  var GitIntegrationType = IntegrationType.exclude(["Figma"]);
6166
- var Integration = z188.object({
6167
- id: z188.string(),
6168
- workspaceId: z188.string(),
6182
+ var Integration = z189.object({
6183
+ id: z189.string(),
6184
+ workspaceId: z189.string(),
6169
6185
  type: IntegrationType,
6170
- createdAt: z188.coerce.date(),
6171
- integrationCredentials: z188.array(IntegrationCredentials).optional()
6172
- });
6173
- var IntegrationToken = z188.object({
6174
- access_token: z188.string(),
6175
- refresh_token: z188.string().optional(),
6176
- expires_in: z188.union([z188.number().optional(), z188.string().optional()]),
6177
- token_type: z188.string().optional(),
6178
- token_name: z188.string().optional(),
6179
- token_azure_organization_name: z188.string().optional(),
6186
+ createdAt: z189.coerce.date(),
6187
+ integrationCredentials: z189.array(IntegrationCredentials).optional()
6188
+ });
6189
+ var IntegrationToken = z189.object({
6190
+ access_token: z189.string(),
6191
+ refresh_token: z189.string().optional(),
6192
+ expires_in: z189.union([z189.number().optional(), z189.string().optional()]),
6193
+ token_type: z189.string().optional(),
6194
+ token_name: z189.string().optional(),
6195
+ token_azure_organization_name: z189.string().optional(),
6180
6196
  // Azure Cloud PAT only
6181
- token_azure_collection_name: z188.string().optional(),
6197
+ token_azure_collection_name: z189.string().optional(),
6182
6198
  // Azure Server PAT only
6183
- token_bitbucket_username: z188.string().optional(),
6199
+ token_bitbucket_username: z189.string().optional(),
6184
6200
  // Bitbucket only
6185
- custom_url: z188.string().optional().transform((value) => {
6201
+ custom_url: z189.string().optional().transform((value) => {
6186
6202
  if (!value?.trim()) return void 0;
6187
6203
  return formatCustomUrl(value);
6188
6204
  })
@@ -6219,7 +6235,7 @@ function formatCustomUrl(url) {
6219
6235
  }
6220
6236
 
6221
6237
  // src/data-dumps/workspace-dump.ts
6222
- var WorkspaceDump = z189.object({
6238
+ var WorkspaceDump = z190.object({
6223
6239
  workspace: Workspace,
6224
6240
  designSystems: DesignSystemDump.array(),
6225
6241
  codeIntegration: CodeIntegrationDump,
@@ -6227,148 +6243,148 @@ var WorkspaceDump = z189.object({
6227
6243
  });
6228
6244
 
6229
6245
  // src/data-dumps/user-data-dump.ts
6230
- var UserDump = z190.object({
6246
+ var UserDump = z191.object({
6231
6247
  user: User,
6232
6248
  workspaces: WorkspaceDump.array()
6233
6249
  });
6234
6250
 
6235
6251
  // src/docs-server/session.ts
6236
- import { z as z191 } from "zod";
6237
- var NpmProxyToken = z191.object({
6238
- access: z191.string(),
6239
- expiresAt: z191.number()
6252
+ import { z as z192 } from "zod";
6253
+ var NpmProxyToken = z192.object({
6254
+ access: z192.string(),
6255
+ expiresAt: z192.number()
6240
6256
  });
6241
- var SessionData = z191.object({
6242
- returnToUrl: z191.string().optional(),
6257
+ var SessionData = z192.object({
6258
+ returnToUrl: z192.string().optional(),
6243
6259
  npmProxyToken: NpmProxyToken.optional()
6244
6260
  });
6245
- var Session = z191.object({
6246
- id: z191.string(),
6247
- expiresAt: z191.coerce.date(),
6248
- userId: z191.string().nullable(),
6249
- anonymousId: z191.string().nullable(),
6261
+ var Session = z192.object({
6262
+ id: z192.string(),
6263
+ expiresAt: z192.coerce.date(),
6264
+ userId: z192.string().nullable(),
6265
+ anonymousId: z192.string().nullable(),
6250
6266
  data: SessionData
6251
6267
  });
6252
- var AuthTokens = z191.object({
6253
- access: z191.string(),
6254
- refresh: z191.string()
6268
+ var AuthTokens = z192.object({
6269
+ access: z192.string(),
6270
+ refresh: z192.string()
6255
6271
  });
6256
- var UserSession = z191.object({
6272
+ var UserSession = z192.object({
6257
6273
  session: Session,
6258
6274
  user: User.nullable()
6259
6275
  });
6260
6276
 
6261
6277
  // src/emails/design-system-invite.ts
6262
- import { z as z192 } from "zod";
6263
- var DesignSystemInviteEmailRecipient = z192.object({
6264
- email: z192.string(),
6278
+ import { z as z193 } from "zod";
6279
+ var DesignSystemInviteEmailRecipient = z193.object({
6280
+ email: z193.string(),
6265
6281
  role: WorkspaceRoleSchema
6266
6282
  });
6267
- var DesignSystemInviteEmailData = z192.object({
6283
+ var DesignSystemInviteEmailData = z193.object({
6268
6284
  workspace: Workspace,
6269
6285
  designSystem: DesignSystem,
6270
6286
  invitedBy: User,
6271
- documentationDomain: z192.string().optional()
6287
+ documentationDomain: z193.string().optional()
6272
6288
  });
6273
6289
 
6274
6290
  // src/emails/workspace-invite.ts
6275
- import { z as z193 } from "zod";
6276
- var WorkspaceInviteEmailRecipient = z193.object({
6277
- email: z193.string(),
6291
+ import { z as z194 } from "zod";
6292
+ var WorkspaceInviteEmailRecipient = z194.object({
6293
+ email: z194.string(),
6278
6294
  role: WorkspaceRoleSchema
6279
6295
  });
6280
- var WorkspaceInviteEmailData = z193.object({
6296
+ var WorkspaceInviteEmailData = z194.object({
6281
6297
  workspace: Workspace,
6282
6298
  invitedBy: User,
6283
- documentationDomain: z193.string().optional()
6299
+ documentationDomain: z194.string().optional()
6284
6300
  });
6285
6301
 
6286
6302
  // src/events/base.ts
6287
- import { z as z197 } from "zod";
6303
+ import { z as z198 } from "zod";
6288
6304
 
6289
6305
  // src/events/data-source-imported.ts
6290
- import { z as z194 } from "zod";
6291
- var EventDataSourceImported = z194.object({
6292
- type: z194.literal("DataSourceImported"),
6293
- workspaceId: z194.string(),
6294
- designSystemId: z194.string()
6295
- });
6296
-
6297
- // src/events/version-released.ts
6298
6306
  import { z as z195 } from "zod";
6299
- var EventVersionReleased = z195.object({
6300
- type: z195.literal("DesignSystemVersionReleased"),
6307
+ var EventDataSourceImported = z195.object({
6308
+ type: z195.literal("DataSourceImported"),
6301
6309
  workspaceId: z195.string(),
6302
- designSystemId: z195.string(),
6303
- versionId: z195.string()
6310
+ designSystemId: z195.string()
6304
6311
  });
6305
6312
 
6306
- // src/events/documentation-published.ts
6313
+ // src/events/version-released.ts
6307
6314
  import { z as z196 } from "zod";
6308
- var EventDocumentationPublished = z196.object({
6309
- type: z196.literal("DocumentationPublished"),
6315
+ var EventVersionReleased = z196.object({
6316
+ type: z196.literal("DesignSystemVersionReleased"),
6310
6317
  workspaceId: z196.string(),
6311
6318
  designSystemId: z196.string(),
6312
6319
  versionId: z196.string()
6313
6320
  });
6314
6321
 
6322
+ // src/events/documentation-published.ts
6323
+ import { z as z197 } from "zod";
6324
+ var EventDocumentationPublished = z197.object({
6325
+ type: z197.literal("DocumentationPublished"),
6326
+ workspaceId: z197.string(),
6327
+ designSystemId: z197.string(),
6328
+ versionId: z197.string()
6329
+ });
6330
+
6315
6331
  // src/events/base.ts
6316
- var Event = z197.discriminatedUnion("type", [
6332
+ var Event = z198.discriminatedUnion("type", [
6317
6333
  EventVersionReleased,
6318
6334
  EventDataSourceImported,
6319
6335
  EventDocumentationPublished
6320
6336
  ]);
6321
6337
 
6322
6338
  // src/export/export-runner/export-context.ts
6323
- import { z as z198 } from "zod";
6324
- var ExportJobDocumentationContext = z198.object({
6325
- isSingleVersionDocs: z198.boolean(),
6326
- versionSlug: z198.string(),
6339
+ import { z as z199 } from "zod";
6340
+ var ExportJobDocumentationContext = z199.object({
6341
+ isSingleVersionDocs: z199.boolean(),
6342
+ versionSlug: z199.string(),
6327
6343
  environment: PublishedDocEnvironment
6328
6344
  });
6329
- var ExportJobDebugContext = z198.object({
6330
- debugMode: z198.boolean().optional(),
6331
- concurrency: z198.number().optional(),
6332
- preloadData: z198.string().optional(),
6333
- concurrencyMode: z198.string().optional(),
6334
- cacheSdk: z198.string().optional(),
6335
- logSdkNetwork: z198.boolean().optional(),
6336
- profilerMode: z198.string().optional()
6337
- });
6338
- var ExportJobContext = z198.object({
6339
- apiUrl: z198.string(),
6340
- accessToken: z198.string(),
6341
- designSystemId: z198.string(),
6342
- designSystemName: z198.string(),
6343
- exporterId: z198.string(),
6344
- versionId: z198.string(),
6345
- brandId: z198.string().optional(),
6346
- themeId: z198.string().optional(),
6347
- themePersistentIds: z198.string().array().optional(),
6348
- previewMode: z198.boolean().optional(),
6349
- exporterName: z198.string(),
6345
+ var ExportJobDebugContext = z199.object({
6346
+ debugMode: z199.boolean().optional(),
6347
+ concurrency: z199.number().optional(),
6348
+ preloadData: z199.string().optional(),
6349
+ concurrencyMode: z199.string().optional(),
6350
+ cacheSdk: z199.string().optional(),
6351
+ logSdkNetwork: z199.boolean().optional(),
6352
+ profilerMode: z199.string().optional()
6353
+ });
6354
+ var ExportJobContext = z199.object({
6355
+ apiUrl: z199.string(),
6356
+ accessToken: z199.string(),
6357
+ designSystemId: z199.string(),
6358
+ designSystemName: z199.string(),
6359
+ exporterId: z199.string(),
6360
+ versionId: z199.string(),
6361
+ brandId: z199.string().optional(),
6362
+ themeId: z199.string().optional(),
6363
+ themePersistentIds: z199.string().array().optional(),
6364
+ previewMode: z199.boolean().optional(),
6365
+ exporterName: z199.string(),
6350
6366
  documentation: ExportJobDocumentationContext.optional(),
6351
6367
  debug: ExportJobDebugContext.optional()
6352
6368
  });
6353
- var ExportJobExporterConfiguration = z198.object({
6354
- exporterPackageUrl: z198.string(),
6369
+ var ExportJobExporterConfiguration = z199.object({
6370
+ exporterPackageUrl: z199.string(),
6355
6371
  exporterPropertyValues: ExporterConfigurationPropertyValue.array(),
6356
6372
  exporterPropertyValuesV2: ExporterPropertyValueMap.optional()
6357
6373
  });
6358
6374
 
6359
6375
  // src/export/export-runner/exporter-payload.ts
6360
- import { z as z199 } from "zod";
6361
- var ExporterFunctionPayload = z199.object({
6362
- exportJobId: z199.string(),
6363
- exportContextId: z199.string(),
6364
- designSystemId: z199.string(),
6365
- workspaceId: z199.string(),
6366
- exporterId: z199.string()
6376
+ import { z as z200 } from "zod";
6377
+ var ExporterFunctionPayload = z200.object({
6378
+ exportJobId: z200.string(),
6379
+ exportContextId: z200.string(),
6380
+ designSystemId: z200.string(),
6381
+ workspaceId: z200.string(),
6382
+ exporterId: z200.string()
6367
6383
  });
6368
6384
 
6369
6385
  // src/export/export-jobs.ts
6370
- import { z as z200 } from "zod";
6371
- var ExportJobDestinationType = z200.enum([
6386
+ import { z as z201 } from "zod";
6387
+ var ExportJobDestinationType = z201.enum([
6372
6388
  "s3",
6373
6389
  "webhookUrl",
6374
6390
  "github",
@@ -6377,31 +6393,31 @@ var ExportJobDestinationType = z200.enum([
6377
6393
  "gitlab",
6378
6394
  "bitbucket"
6379
6395
  ]);
6380
- var ExportJobStatus = z200.enum(["InProgress", "Success", "Failed", "Timeout"]);
6381
- var ExportJobLogEntryType = z200.enum(["success", "info", "warning", "error", "user"]);
6382
- var ExportJobLogEntry = z200.object({
6383
- id: z200.string().optional(),
6384
- time: z200.coerce.date(),
6396
+ var ExportJobStatus = z201.enum(["InProgress", "Success", "Failed", "Timeout"]);
6397
+ var ExportJobLogEntryType = z201.enum(["success", "info", "warning", "error", "user"]);
6398
+ var ExportJobLogEntry = z201.object({
6399
+ id: z201.string().optional(),
6400
+ time: z201.coerce.date(),
6385
6401
  type: ExportJobLogEntryType,
6386
- message: z200.string()
6402
+ message: z201.string()
6387
6403
  });
6388
- var ExportJobPullRequestDestinationResult = z200.object({
6389
- pullRequestUrl: z200.string(),
6390
- sparseCheckoutUsed: nullishToOptional(z200.boolean())
6404
+ var ExportJobPullRequestDestinationResult = z201.object({
6405
+ pullRequestUrl: z201.string(),
6406
+ sparseCheckoutUsed: nullishToOptional(z201.boolean())
6391
6407
  });
6392
- var ExportJobS3DestinationResult = z200.object({
6393
- bucket: z200.string(),
6394
- urlPrefix: z200.string().optional(),
6395
- path: z200.string(),
6396
- files: z200.array(z200.string()),
6397
- url: nullishToOptional(z200.string()),
6398
- urls: nullishToOptional(z200.string().array())
6408
+ var ExportJobS3DestinationResult = z201.object({
6409
+ bucket: z201.string(),
6410
+ urlPrefix: z201.string().optional(),
6411
+ path: z201.string(),
6412
+ files: z201.array(z201.string()),
6413
+ url: nullishToOptional(z201.string()),
6414
+ urls: nullishToOptional(z201.string().array())
6399
6415
  });
6400
- var ExportJobDocsDestinationResult = z200.object({
6401
- url: z200.string()
6416
+ var ExportJobDocsDestinationResult = z201.object({
6417
+ url: z201.string()
6402
6418
  });
6403
- var ExportJobResult = z200.object({
6404
- error: z200.string().optional(),
6419
+ var ExportJobResult = z201.object({
6420
+ error: z201.string().optional(),
6405
6421
  s3: nullishToOptional(ExportJobS3DestinationResult),
6406
6422
  github: nullishToOptional(ExportJobPullRequestDestinationResult),
6407
6423
  azure: nullishToOptional(ExportJobPullRequestDestinationResult),
@@ -6410,25 +6426,25 @@ var ExportJobResult = z200.object({
6410
6426
  sndocs: nullishToOptional(ExportJobDocsDestinationResult),
6411
6427
  logs: nullishToOptional(ExportJobLogEntry.array())
6412
6428
  });
6413
- var ExportJob = z200.object({
6414
- id: z200.string(),
6415
- createdAt: z200.coerce.date(),
6416
- finishedAt: z200.coerce.date().optional(),
6417
- designSystemId: z200.string(),
6418
- designSystemVersionId: z200.string(),
6419
- workspaceId: z200.string(),
6420
- scheduleId: z200.string().nullish(),
6421
- exporterId: z200.string(),
6422
- brandId: z200.string().optional(),
6423
- themeId: z200.string().optional(),
6424
- themePersistentIds: z200.string().array().optional(),
6425
- estimatedExecutionTime: z200.number().optional(),
6429
+ var ExportJob = z201.object({
6430
+ id: z201.string(),
6431
+ createdAt: z201.coerce.date(),
6432
+ finishedAt: z201.coerce.date().optional(),
6433
+ designSystemId: z201.string(),
6434
+ designSystemVersionId: z201.string(),
6435
+ workspaceId: z201.string(),
6436
+ scheduleId: z201.string().nullish(),
6437
+ exporterId: z201.string(),
6438
+ brandId: z201.string().optional(),
6439
+ themeId: z201.string().optional(),
6440
+ themePersistentIds: z201.string().array().optional(),
6441
+ estimatedExecutionTime: z201.number().optional(),
6426
6442
  status: ExportJobStatus,
6427
6443
  result: ExportJobResult.optional(),
6428
- createdByUserId: z200.string().optional(),
6444
+ createdByUserId: z201.string().optional(),
6429
6445
  exporterPropertyValues: ExporterPropertyValueMap.optional(),
6430
- previewMode: z200.boolean().optional(),
6431
- exportContextId: z200.string().optional().nullable(),
6446
+ previewMode: z201.boolean().optional(),
6447
+ exportContextId: z201.string().optional().nullable(),
6432
6448
  // Destinations
6433
6449
  ...ExportDestinationsMap.shape
6434
6450
  });
@@ -6442,37 +6458,37 @@ var ExportJobFindByFilter = ExportJob.pick({
6442
6458
  themeId: true,
6443
6459
  brandId: true
6444
6460
  }).extend({
6445
- destinations: z200.array(ExportJobDestinationType),
6461
+ destinations: z201.array(ExportJobDestinationType),
6446
6462
  docsEnvironment: PublishedDocEnvironment,
6447
- selectivePublishing: z200.boolean().optional()
6463
+ selectivePublishing: z201.boolean().optional()
6448
6464
  }).partial();
6449
6465
 
6450
6466
  // src/export/exporter-list-query.ts
6451
- import { z as z201 } from "zod";
6452
- var ExporterType2 = z201.enum(["documentation", "code"]);
6453
- var ListExporterQuery = z201.object({
6454
- limit: z201.number().optional(),
6455
- offset: z201.number().optional(),
6467
+ import { z as z202 } from "zod";
6468
+ var ExporterType2 = z202.enum(["documentation", "code"]);
6469
+ var ListExporterQuery = z202.object({
6470
+ limit: z202.number().optional(),
6471
+ offset: z202.number().optional(),
6456
6472
  type: ExporterType2.optional(),
6457
- search: z201.string().optional()
6473
+ search: z202.string().optional()
6458
6474
  });
6459
6475
 
6460
6476
  // src/export/exporter-workspace-membership-role.ts
6461
- import { z as z202 } from "zod";
6462
- var ExporterWorkspaceMembershipRole = z202.enum(["Owner", "OwnerArchived", "User"]);
6477
+ import { z as z203 } from "zod";
6478
+ var ExporterWorkspaceMembershipRole = z203.enum(["Owner", "OwnerArchived", "User"]);
6463
6479
 
6464
6480
  // src/export/exporter-workspace-membership.ts
6465
- import { z as z203 } from "zod";
6466
- var ExporterWorkspaceMembership = z203.object({
6467
- id: z203.string(),
6468
- workspaceId: z203.string(),
6469
- exporterId: z203.string(),
6481
+ import { z as z204 } from "zod";
6482
+ var ExporterWorkspaceMembership = z204.object({
6483
+ id: z204.string(),
6484
+ workspaceId: z204.string(),
6485
+ exporterId: z204.string(),
6470
6486
  role: ExporterWorkspaceMembershipRole
6471
6487
  });
6472
6488
 
6473
6489
  // src/feature-flags/feature-flags.ts
6474
- import { z as z204 } from "zod";
6475
- var FlaggedFeature = z204.enum([
6490
+ import { z as z205 } from "zod";
6491
+ var FlaggedFeature = z205.enum([
6476
6492
  "FigmaImporterV2",
6477
6493
  "DisableImporter",
6478
6494
  "VariablesOrder",
@@ -6497,21 +6513,21 @@ var FlaggedFeature = z204.enum([
6497
6513
  var FeatureFlagDefaults = {
6498
6514
  DocumentationIgnoreSnapshotsOnPublish: "route-bff+route-p3"
6499
6515
  };
6500
- var FeatureFlagMap = z204.record(FlaggedFeature, z204.boolean());
6501
- var FeatureFlag = z204.object({
6502
- id: z204.string(),
6516
+ var FeatureFlagMap = z205.record(FlaggedFeature, z205.boolean());
6517
+ var FeatureFlag = z205.object({
6518
+ id: z205.string(),
6503
6519
  feature: FlaggedFeature,
6504
- createdAt: z204.coerce.date(),
6505
- enabled: z204.boolean(),
6506
- designSystemId: z204.string().optional(),
6507
- data: z204.record(z204.any()).nullable().optional()
6520
+ createdAt: z205.coerce.date(),
6521
+ enabled: z205.boolean(),
6522
+ designSystemId: z205.string().optional(),
6523
+ data: z205.record(z205.any()).nullable().optional()
6508
6524
  });
6509
6525
 
6510
6526
  // src/integrations/external-oauth-request.ts
6511
- import { z as z206 } from "zod";
6527
+ import { z as z207 } from "zod";
6512
6528
 
6513
6529
  // src/integrations/oauth-providers.ts
6514
- import { z as z205 } from "zod";
6530
+ import { z as z206 } from "zod";
6515
6531
  var OAuthProviderNames = /* @__PURE__ */ ((OAuthProviderNames2) => {
6516
6532
  OAuthProviderNames2["Figma"] = "figma";
6517
6533
  OAuthProviderNames2["Azure"] = "azure";
@@ -6520,189 +6536,189 @@ var OAuthProviderNames = /* @__PURE__ */ ((OAuthProviderNames2) => {
6520
6536
  OAuthProviderNames2["Bitbucket"] = "bitbucket";
6521
6537
  return OAuthProviderNames2;
6522
6538
  })(OAuthProviderNames || {});
6523
- var OAuthProviderSchema = z205.nativeEnum(OAuthProviderNames);
6539
+ var OAuthProviderSchema = z206.nativeEnum(OAuthProviderNames);
6524
6540
  var OAuthProvider = OAuthProviderSchema.enum;
6525
6541
 
6526
6542
  // src/integrations/external-oauth-request.ts
6527
- var ExternalOAuthRequest = z206.object({
6528
- id: z206.string(),
6543
+ var ExternalOAuthRequest = z207.object({
6544
+ id: z207.string(),
6529
6545
  provider: OAuthProviderSchema,
6530
- userId: z206.string(),
6531
- state: z206.string(),
6532
- createdAt: z206.coerce.date()
6546
+ userId: z207.string(),
6547
+ state: z207.string(),
6548
+ createdAt: z207.coerce.date()
6533
6549
  });
6534
6550
 
6535
6551
  // src/integrations/git.ts
6536
- import { z as z207 } from "zod";
6537
- var GitObjectsQuery = z207.object({
6538
- organization: z207.string().optional(),
6552
+ import { z as z208 } from "zod";
6553
+ var GitObjectsQuery = z208.object({
6554
+ organization: z208.string().optional(),
6539
6555
  // Azure Organization | Bitbucket Workspace slug | Gitlab Group | Github Account (User or Organization)
6540
- project: z207.string().optional(),
6556
+ project: z208.string().optional(),
6541
6557
  // Only for Bitbucket and Azure
6542
- repository: z207.string().optional(),
6558
+ repository: z208.string().optional(),
6543
6559
  // For all providers. For Gitlab, it's called "project".
6544
- branch: z207.string().optional(),
6560
+ branch: z208.string().optional(),
6545
6561
  // For all providers.
6546
- user: z207.string().optional()
6562
+ user: z208.string().optional()
6547
6563
  // Gitlab user
6548
6564
  });
6549
- var GitOrganization = z207.object({
6550
- id: z207.string(),
6551
- name: z207.string(),
6552
- url: z207.string(),
6553
- slug: z207.string()
6565
+ var GitOrganization = z208.object({
6566
+ id: z208.string(),
6567
+ name: z208.string(),
6568
+ url: z208.string(),
6569
+ slug: z208.string()
6554
6570
  });
6555
- var GitProject = z207.object({
6556
- id: z207.string(),
6557
- name: z207.string(),
6558
- url: z207.string(),
6559
- slug: z207.string()
6571
+ var GitProject = z208.object({
6572
+ id: z208.string(),
6573
+ name: z208.string(),
6574
+ url: z208.string(),
6575
+ slug: z208.string()
6560
6576
  });
6561
- var GitRepository = z207.object({
6562
- id: z207.string(),
6563
- name: z207.string(),
6564
- url: z207.string(),
6565
- slug: z207.string(),
6577
+ var GitRepository = z208.object({
6578
+ id: z208.string(),
6579
+ name: z208.string(),
6580
+ url: z208.string(),
6581
+ slug: z208.string(),
6566
6582
  /**
6567
6583
  * Can be undefined when:
6568
6584
  * - there are no branches in the repository yet
6569
6585
  * - Git provider doesn't expose this information on a repository via their API
6570
6586
  */
6571
- defaultBranch: z207.string().optional()
6587
+ defaultBranch: z208.string().optional()
6572
6588
  });
6573
- var GitBranch = z207.object({
6574
- name: z207.string(),
6575
- lastCommitId: z207.string()
6589
+ var GitBranch = z208.object({
6590
+ name: z208.string(),
6591
+ lastCommitId: z208.string()
6576
6592
  });
6577
6593
 
6578
6594
  // src/integrations/oauth-token.ts
6579
- import { z as z208 } from "zod";
6580
- var IntegrationTokenSchemaOld = z208.object({
6581
- id: z208.string(),
6595
+ import { z as z209 } from "zod";
6596
+ var IntegrationTokenSchemaOld = z209.object({
6597
+ id: z209.string(),
6582
6598
  provider: OAuthProviderSchema,
6583
- scope: z208.string(),
6584
- userId: z208.string(),
6585
- accessToken: z208.string(),
6586
- refreshToken: z208.string(),
6587
- expiresAt: z208.coerce.date(),
6588
- externalUserId: z208.string().nullish()
6599
+ scope: z209.string(),
6600
+ userId: z209.string(),
6601
+ accessToken: z209.string(),
6602
+ refreshToken: z209.string(),
6603
+ expiresAt: z209.coerce.date(),
6604
+ externalUserId: z209.string().nullish()
6589
6605
  });
6590
6606
 
6591
6607
  // src/integrations/workspace-oauth-requests.ts
6592
- import { z as z209 } from "zod";
6593
- var WorkspaceOAuthRequestSchema = z209.object({
6594
- id: z209.string(),
6595
- workspaceId: z209.string(),
6608
+ import { z as z210 } from "zod";
6609
+ var WorkspaceOAuthRequestSchema = z210.object({
6610
+ id: z210.string(),
6611
+ workspaceId: z210.string(),
6596
6612
  provider: OAuthProviderSchema,
6597
- userId: z209.string(),
6598
- createdAt: z209.coerce.date()
6613
+ userId: z210.string(),
6614
+ createdAt: z210.coerce.date()
6599
6615
  });
6600
6616
 
6601
6617
  // src/npm/npm-package.ts
6602
- import { z as z210 } from "zod";
6603
- var AnyRecord = z210.record(z210.any());
6618
+ import { z as z211 } from "zod";
6619
+ var AnyRecord = z211.record(z211.any());
6604
6620
  var NpmPackageVersionDist = AnyRecord.and(
6605
- z210.object({
6606
- tarball: z210.string()
6621
+ z211.object({
6622
+ tarball: z211.string()
6607
6623
  })
6608
6624
  );
6609
6625
  var NpmPackageVersion = AnyRecord.and(
6610
- z210.object({
6626
+ z211.object({
6611
6627
  dist: NpmPackageVersionDist
6612
6628
  })
6613
6629
  );
6614
6630
  var NpmPackage = AnyRecord.and(
6615
- z210.object({
6616
- _id: z210.string(),
6617
- name: z210.string(),
6631
+ z211.object({
6632
+ _id: z211.string(),
6633
+ name: z211.string(),
6618
6634
  // e.g. "latest": "1.2.3"
6619
- "dist-tags": z210.record(z210.string(), z210.string()),
6635
+ "dist-tags": z211.record(z211.string(), z211.string()),
6620
6636
  // "1.2.3": {...}
6621
- versions: z210.record(NpmPackageVersion)
6637
+ versions: z211.record(NpmPackageVersion)
6622
6638
  })
6623
6639
  );
6624
6640
 
6625
6641
  // src/npm/npm-proxy-token-payload.ts
6626
- import { z as z211 } from "zod";
6627
- var NpmProxyTokenPayload = z211.object({
6628
- npmProxyRegistryConfigId: z211.string()
6642
+ import { z as z212 } from "zod";
6643
+ var NpmProxyTokenPayload = z212.object({
6644
+ npmProxyRegistryConfigId: z212.string()
6629
6645
  });
6630
6646
 
6631
6647
  // src/page-screenshot/page-screenshot.ts
6632
- import { z as z212 } from "zod";
6633
- var PageScreenshotInput = z212.object({
6634
- url: z212.string().url(),
6635
- elementSelector: z212.string(),
6636
- uploadUrl: z212.string().url(),
6637
- viewportSize: z212.object({
6638
- width: z212.number().positive(),
6639
- height: z212.number().positive()
6648
+ import { z as z213 } from "zod";
6649
+ var PageScreenshotInput = z213.object({
6650
+ url: z213.string().url(),
6651
+ elementSelector: z213.string(),
6652
+ uploadUrl: z213.string().url(),
6653
+ viewportSize: z213.object({
6654
+ width: z213.number().positive(),
6655
+ height: z213.number().positive()
6640
6656
  }).optional(),
6641
- imageSize: z212.object({
6642
- width: z212.number().positive(),
6643
- height: z212.number().positive()
6657
+ imageSize: z213.object({
6658
+ width: z213.number().positive(),
6659
+ height: z213.number().positive()
6644
6660
  }).optional(),
6645
- supernovaAuth: z212.object({
6646
- accessToken: z212.string(),
6647
- authPageUrl: z212.string()
6661
+ supernovaAuth: z213.object({
6662
+ accessToken: z213.string(),
6663
+ authPageUrl: z213.string()
6648
6664
  }).optional()
6649
6665
  });
6650
- var PageScreenshotOutput = z212.discriminatedUnion("success", [
6651
- z212.object({
6652
- success: z212.literal(true),
6653
- fileSize: z212.number()
6666
+ var PageScreenshotOutput = z213.discriminatedUnion("success", [
6667
+ z213.object({
6668
+ success: z213.literal(true),
6669
+ fileSize: z213.number()
6654
6670
  }),
6655
- z212.object({
6656
- success: z212.literal(false),
6657
- error: z212.string()
6671
+ z213.object({
6672
+ success: z213.literal(false),
6673
+ error: z213.string()
6658
6674
  })
6659
6675
  ]);
6660
6676
 
6661
6677
  // src/portal/portal-settings.ts
6662
- import { z as z213 } from "zod";
6678
+ import { z as z214 } from "zod";
6663
6679
  var PortalSettingsTheme = UserTheme;
6664
- var PortalSettingsSidebarLink = z213.object({
6665
- name: z213.string(),
6666
- url: z213.string(),
6667
- emoji: z213.string()
6668
- });
6669
- var PortalSettingsSidebarSection = z213.object({
6670
- sectionName: z213.string(),
6671
- links: z213.array(PortalSettingsSidebarLink)
6672
- });
6673
- var PortalSettingsSidebar = z213.array(PortalSettingsSidebarSection);
6674
- var PortalSettings = z213.object({
6675
- id: z213.string(),
6676
- workspaceId: z213.string(),
6677
- enabledDesignSystemIds: z213.array(z213.string()),
6678
- enabledBrandPersistentIds: z213.array(z213.string()),
6680
+ var PortalSettingsSidebarLink = z214.object({
6681
+ name: z214.string(),
6682
+ url: z214.string(),
6683
+ emoji: z214.string()
6684
+ });
6685
+ var PortalSettingsSidebarSection = z214.object({
6686
+ sectionName: z214.string(),
6687
+ links: z214.array(PortalSettingsSidebarLink)
6688
+ });
6689
+ var PortalSettingsSidebar = z214.array(PortalSettingsSidebarSection);
6690
+ var PortalSettings = z214.object({
6691
+ id: z214.string(),
6692
+ workspaceId: z214.string(),
6693
+ enabledDesignSystemIds: z214.array(z214.string()),
6694
+ enabledBrandPersistentIds: z214.array(z214.string()),
6679
6695
  theme: PortalSettingsTheme.nullish(),
6680
6696
  sidebar: PortalSettingsSidebar.nullish(),
6681
- createdAt: z213.coerce.date(),
6682
- updatedAt: z213.coerce.date()
6697
+ createdAt: z214.coerce.date(),
6698
+ updatedAt: z214.coerce.date()
6683
6699
  });
6684
6700
 
6685
6701
  // src/sentry/headers.ts
6686
- import z214 from "zod";
6687
- var SentryTraceHeaders = z214.object({
6688
- sentryTrace: z214.string(),
6689
- baggage: z214.string()
6702
+ import z215 from "zod";
6703
+ var SentryTraceHeaders = z215.object({
6704
+ sentryTrace: z215.string(),
6705
+ baggage: z215.string()
6690
6706
  });
6691
6707
 
6692
6708
  // src/tokens/personal-access-token.ts
6693
- import { z as z215 } from "zod";
6694
- var PersonalAccessToken = z215.object({
6695
- id: z215.string(),
6696
- userId: z215.string(),
6697
- workspaceId: z215.string().optional(),
6698
- designSystemId: z215.string().optional(),
6709
+ import { z as z216 } from "zod";
6710
+ var PersonalAccessToken = z216.object({
6711
+ id: z216.string(),
6712
+ userId: z216.string(),
6713
+ workspaceId: z216.string().optional(),
6714
+ designSystemId: z216.string().optional(),
6699
6715
  workspaceRole: WorkspaceRoleSchema.optional(),
6700
- name: z215.string(),
6701
- hidden: z215.boolean(),
6702
- token: z215.string(),
6703
- scope: z215.string().optional(),
6704
- createdAt: z215.coerce.date(),
6705
- expireAt: z215.coerce.date().optional()
6716
+ name: z216.string(),
6717
+ hidden: z216.boolean(),
6718
+ token: z216.string(),
6719
+ scope: z216.string().optional(),
6720
+ createdAt: z216.coerce.date(),
6721
+ expireAt: z216.coerce.date().optional()
6706
6722
  });
6707
6723
  export {
6708
6724
  Address,
@@ -7046,6 +7062,8 @@ export {
7046
7062
  ForgeProjectRoomInitialState,
7047
7063
  ForgeProjectRoomUpdate,
7048
7064
  ForgeProjectSectionChildType,
7065
+ ForgeRelation,
7066
+ ForgeRelationType,
7049
7067
  ForgeSection,
7050
7068
  ForgeSpecArtifact,
7051
7069
  GitBranch,
@@ -7392,6 +7410,7 @@ export {
7392
7410
  UserAnalyticsCleanupSchedule,
7393
7411
  UserAnalyticsCleanupScheduleDbInput,
7394
7412
  UserDump,
7413
+ UserEmailSettings,
7395
7414
  UserIdentity,
7396
7415
  UserInvite,
7397
7416
  UserInvites,
@@ -7402,7 +7421,6 @@ export {
7402
7421
  UserOnboardingDepartment,
7403
7422
  UserOnboardingJobLevel,
7404
7423
  UserProfile,
7405
- UserProfileUpdate,
7406
7424
  UserSession,
7407
7425
  UserSource,
7408
7426
  UserTest,