@supernova-studio/model 1.19.4 → 1.20.0

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
@@ -160,7 +160,8 @@ var FeaturesSummary = z8.object({
160
160
  documentationPageRedirects: featureToggleSchema,
161
161
  analytics: featureLimitedSchema,
162
162
  designSystemFileSize: featureLimitedSchema,
163
- forgeActiveProjects: featureLimitedSchema
163
+ forgeActiveProjects: featureLimitedSchema,
164
+ forgeProjectFileSize: featureLimitedSchema
164
165
  });
165
166
 
166
167
  // src/billing/invoice.ts
@@ -5666,10 +5667,10 @@ var CodeIntegrationDump = z164.object({
5666
5667
  });
5667
5668
 
5668
5669
  // src/data-dumps/design-system-dump.ts
5669
- import { z as z189 } from "zod";
5670
+ import { z as z190 } from "zod";
5670
5671
 
5671
5672
  // src/data-dumps/design-system-version-dump.ts
5672
- import { z as z188 } from "zod";
5673
+ import { z as z189 } from "zod";
5673
5674
 
5674
5675
  // src/liveblocks/rooms/design-system-version-room.ts
5675
5676
  import { z as z165 } from "zod";
@@ -5747,7 +5748,7 @@ var ForgeProjectArtifactRoom = Entity.extend({
5747
5748
  });
5748
5749
 
5749
5750
  // src/liveblocks/rooms/forge-project-room.ts
5750
- import { z as z184 } from "zod";
5751
+ import { z as z185 } from "zod";
5751
5752
 
5752
5753
  // src/forge/agent.ts
5753
5754
  import { z as z168 } from "zod";
@@ -5959,92 +5960,105 @@ var ForgeProjectFigmaNodeRenderInput = z179.object({
5959
5960
  scale: z179.number()
5960
5961
  });
5961
5962
 
5963
+ // src/forge/project-file.ts
5964
+ import { z as z180 } from "zod";
5965
+ var ForgeProjectFile = z180.object({
5966
+ id: z180.string(),
5967
+ projectId: Id,
5968
+ name: z180.string(),
5969
+ filePath: z180.string(),
5970
+ createdAt: z180.coerce.date().optional(),
5971
+ pendingUpload: z180.boolean().optional(),
5972
+ size: z180.number().int().positive().optional(),
5973
+ checksum: z180.string()
5974
+ });
5975
+
5962
5976
  // src/forge/project-invitation.ts
5963
- import { z as z181 } from "zod";
5977
+ import { z as z182 } from "zod";
5964
5978
 
5965
5979
  // src/forge/project-membership.ts
5966
- import { z as z180 } from "zod";
5967
- var ForgeProjectRole = z180.enum(["Viewer", "Editor", "Admin"]);
5968
- var ForgeProjectMembership = z180.object({
5969
- userId: z180.string(),
5970
- forgeProjectId: z180.string(),
5971
- workspaceMembershipId: z180.string(),
5980
+ import { z as z181 } from "zod";
5981
+ var ForgeProjectRole = z181.enum(["Viewer", "Editor", "Admin"]);
5982
+ var ForgeProjectMembership = z181.object({
5983
+ userId: z181.string(),
5984
+ forgeProjectId: z181.string(),
5985
+ workspaceMembershipId: z181.string(),
5972
5986
  workspaceRole: WorkspaceRoleSchema,
5973
5987
  role: ForgeProjectRole
5974
5988
  });
5975
5989
 
5976
5990
  // src/forge/project-invitation.ts
5977
- var ForgeProjectInvitation = z181.object({
5978
- email: z181.string().email(),
5979
- forgeProjectId: z181.string(),
5980
- workspaceInvitationId: z181.string(),
5991
+ var ForgeProjectInvitation = z182.object({
5992
+ email: z182.string().email(),
5993
+ forgeProjectId: z182.string(),
5994
+ workspaceInvitationId: z182.string(),
5981
5995
  role: ForgeProjectRole,
5982
- createdAt: z181.coerce.date(),
5983
- updatedAt: z181.coerce.date(),
5984
- createdById: z181.string()
5996
+ createdAt: z182.coerce.date(),
5997
+ updatedAt: z182.coerce.date(),
5998
+ createdById: z182.string()
5985
5999
  });
5986
6000
 
5987
6001
  // src/forge/project-iteration.ts
5988
- import { z as z182 } from "zod";
5989
- var ForgeProjectIterationMergeMeta = z182.object({ mergeByUserId: z182.string(), mergeAt: z182.date() });
5990
- var ForgeProjectIteration = z182.object({
5991
- branchId: z182.string().optional(),
5992
- buildArtifactId: z182.string(),
5993
- createdAt: z182.coerce.date(),
5994
- forgeProjectId: z182.string(),
5995
- id: z182.string(),
5996
- locked: z182.boolean(),
5997
- messages: z182.array(ForgeIterationMessage),
5998
- artifacts: z182.array(ForgeArtifact),
5999
- previousIterationId: z182.string().optional(),
6002
+ import { z as z183 } from "zod";
6003
+ var ForgeProjectIterationMergeMeta = z183.object({ mergeByUserId: z183.string(), mergeAt: z183.date() });
6004
+ var ForgeProjectIteration = z183.object({
6005
+ branchId: z183.string().optional(),
6006
+ buildArtifactId: z183.string(),
6007
+ createdAt: z183.coerce.date(),
6008
+ forgeProjectId: z183.string(),
6009
+ id: z183.string(),
6010
+ locked: z183.boolean(),
6011
+ messages: z183.array(ForgeIterationMessage),
6012
+ artifacts: z183.array(ForgeArtifact),
6013
+ previousIterationId: z183.string().optional(),
6000
6014
  mergeMeta: ForgeProjectIterationMergeMeta.optional()
6001
6015
  });
6002
6016
 
6003
6017
  // src/forge/project.ts
6004
- import { z as z183 } from "zod";
6005
- var ForgeProjectTag = z183.array(z183.string()).default([]);
6006
- var ForgeProjectAccessMode = z183.enum(["InviteOnly", "Open"]);
6007
- var ForgeProject = z183.object({
6008
- createdAt: z183.coerce.date(),
6009
- createdByUserId: z183.string().optional(),
6010
- fpContextId: z183.string(),
6011
- id: z183.string(),
6012
- instruction: z183.string().nullable(),
6018
+ import { z as z184 } from "zod";
6019
+ var ForgeProjectTag = z184.array(z184.string()).default([]);
6020
+ var ForgeProjectAccessMode = z184.enum(["InviteOnly", "Open"]);
6021
+ var ForgeProject = z184.object({
6022
+ createdAt: z184.coerce.date(),
6023
+ createdByUserId: z184.string().optional(),
6024
+ fpContextId: z184.string(),
6025
+ id: z184.string(),
6026
+ instruction: z184.string().nullable(),
6013
6027
  meta: ForgeMeta,
6014
- name: z183.string(),
6028
+ name: z184.string(),
6015
6029
  tags: ForgeProjectTag,
6016
- updatedAt: z183.coerce.date().optional(),
6017
- workspaceId: z183.string(),
6030
+ updatedAt: z184.coerce.date().optional(),
6031
+ workspaceId: z184.string(),
6018
6032
  accessMode: ForgeProjectAccessMode,
6019
- isArchived: z183.boolean().optional(),
6020
- emoji: z183.string().optional()
6033
+ isArchived: z184.boolean().optional(),
6034
+ emoji: z184.string().optional()
6021
6035
  });
6022
6036
 
6023
6037
  // src/liveblocks/rooms/forge-project-room.ts
6024
6038
  var ForgeProjectRoom = Entity.extend({
6025
- projectId: z184.string(),
6026
- liveblocksId: z184.string()
6027
- });
6028
- var ForgeProjectRoomInitialState = z184.object({
6029
- artifacts: z184.array(ForgeProjectArtifact),
6030
- features: z184.array(ProjectFeature),
6031
- artifactSections: z184.array(ForgeSection),
6032
- featureSections: z184.array(ForgeSection)
6033
- });
6034
- var ForgeProjectRoomUpdate = z184.object({
6035
- artifacts: z184.array(ForgeProjectArtifact).optional(),
6036
- artifactIdsToDelete: z184.array(z184.string()).optional(),
6037
- features: z184.array(ProjectFeature).optional(),
6038
- featureIdsToDelete: z184.array(z184.string()).optional(),
6039
- artifactSections: z184.array(ForgeSection).optional(),
6040
- artifactSectionIdsToDelete: z184.array(z184.string()).optional(),
6041
- featureSections: z184.array(ForgeSection).optional(),
6042
- featureSectionIdsToDelete: z184.array(z184.string()).optional(),
6043
- executedTransactionIds: z184.string().array().optional()
6039
+ projectId: z185.string(),
6040
+ liveblocksId: z185.string()
6041
+ });
6042
+ var ForgeProjectRoomInitialState = z185.object({
6043
+ artifacts: z185.array(ForgeProjectArtifact),
6044
+ features: z185.array(ProjectFeature),
6045
+ artifactSections: z185.array(ForgeSection),
6046
+ featureSections: z185.array(ForgeSection)
6047
+ });
6048
+ var ForgeProjectRoomUpdate = z185.object({
6049
+ artifacts: z185.array(ForgeProjectArtifact).optional(),
6050
+ artifactIdsToDelete: z185.array(z185.string()).optional(),
6051
+ features: z185.array(ProjectFeature).optional(),
6052
+ featureIdsToDelete: z185.array(z185.string()).optional(),
6053
+ artifactSections: z185.array(ForgeSection).optional(),
6054
+ artifactSectionIdsToDelete: z185.array(z185.string()).optional(),
6055
+ featureSections: z185.array(ForgeSection).optional(),
6056
+ featureSectionIdsToDelete: z185.array(z185.string()).optional(),
6057
+ executedTransactionIds: z185.string().array().optional()
6044
6058
  });
6045
6059
 
6046
6060
  // src/liveblocks/rooms/room-type.ts
6047
- import { z as z185 } from "zod";
6061
+ import { z as z186 } from "zod";
6048
6062
  var RoomTypeEnum = /* @__PURE__ */ ((RoomTypeEnum2) => {
6049
6063
  RoomTypeEnum2["DocumentationPageOld"] = "documentation-page";
6050
6064
  RoomTypeEnum2["DocumentationPage"] = "doc-page";
@@ -6054,36 +6068,36 @@ var RoomTypeEnum = /* @__PURE__ */ ((RoomTypeEnum2) => {
6054
6068
  RoomTypeEnum2["ForgeProjectArtifact"] = "forge-project-artifact";
6055
6069
  return RoomTypeEnum2;
6056
6070
  })(RoomTypeEnum || {});
6057
- var RoomTypeSchema = z185.nativeEnum(RoomTypeEnum);
6071
+ var RoomTypeSchema = z186.nativeEnum(RoomTypeEnum);
6058
6072
  var RoomType = RoomTypeSchema.enum;
6059
6073
 
6060
6074
  // src/liveblocks/rooms/workspace-room.ts
6061
- import { z as z186 } from "zod";
6075
+ import { z as z187 } from "zod";
6062
6076
  var WorkspaceRoom = Entity.extend({
6063
- workspaceId: z186.string(),
6064
- liveblocksId: z186.string()
6077
+ workspaceId: z187.string(),
6078
+ liveblocksId: z187.string()
6065
6079
  });
6066
6080
 
6067
6081
  // src/data-dumps/published-docs-dump.ts
6068
- import { z as z187 } from "zod";
6069
- var PublishedDocsDump = z187.object({
6082
+ import { z as z188 } from "zod";
6083
+ var PublishedDocsDump = z188.object({
6070
6084
  documentation: PublishedDoc,
6071
6085
  pages: PublishedDocPage.array()
6072
6086
  });
6073
6087
 
6074
6088
  // src/data-dumps/design-system-version-dump.ts
6075
- var DocumentationThreadDump = z188.object({
6089
+ var DocumentationThreadDump = z189.object({
6076
6090
  thread: DocumentationCommentThread,
6077
6091
  comments: DocumentationComment.array()
6078
6092
  });
6079
- var DocumentationPageRoomDump = z188.object({
6093
+ var DocumentationPageRoomDump = z189.object({
6080
6094
  room: DocumentationPageRoom,
6081
6095
  threads: DocumentationThreadDump.array()
6082
6096
  });
6083
- var DesignSystemVersionMultiplayerDump = z188.object({
6097
+ var DesignSystemVersionMultiplayerDump = z189.object({
6084
6098
  documentationPages: DocumentationPageRoomDump.array()
6085
6099
  });
6086
- var DesignSystemVersionDump = z188.object({
6100
+ var DesignSystemVersionDump = z189.object({
6087
6101
  version: DesignSystemVersion,
6088
6102
  brands: Brand.array(),
6089
6103
  elements: DesignElement.array(),
@@ -6098,7 +6112,7 @@ var DesignSystemVersionDump = z188.object({
6098
6112
  });
6099
6113
 
6100
6114
  // src/data-dumps/design-system-dump.ts
6101
- var DesignSystemDump = z189.object({
6115
+ var DesignSystemDump = z190.object({
6102
6116
  designSystem: DesignSystem,
6103
6117
  dataSources: DataSource.array(),
6104
6118
  versions: DesignSystemVersionDump.array(),
@@ -6107,50 +6121,50 @@ var DesignSystemDump = z189.object({
6107
6121
  });
6108
6122
 
6109
6123
  // src/data-dumps/user-data-dump.ts
6110
- import { z as z192 } from "zod";
6124
+ import { z as z193 } from "zod";
6111
6125
 
6112
6126
  // src/data-dumps/workspace-dump.ts
6113
- import { z as z191 } from "zod";
6127
+ import { z as z192 } from "zod";
6114
6128
 
6115
6129
  // src/integrations/integration.ts
6116
- import { z as z190 } from "zod";
6117
- var IntegrationDesignSystem = z190.object({
6118
- designSystemId: z190.string(),
6119
- brandId: z190.string(),
6120
- title: z190.string().optional(),
6121
- userId: z190.string().optional(),
6122
- date: z190.coerce.date().optional()
6123
- });
6124
- var IntegrationCredentialsType = z190.enum(["OAuth2", "PAT"]);
6125
- var IntegrationCredentialsState = z190.enum(["Active", "Inactive"]);
6126
- var IntegrationCredentialsProfile = z190.object({
6127
- id: nullishToOptional(z190.string()),
6128
- email: nullishToOptional(z190.string()),
6129
- handle: nullishToOptional(z190.string()),
6130
- type: nullishToOptional(z190.string()),
6131
- avatarUrl: nullishToOptional(z190.string()),
6132
- organization: nullishToOptional(z190.string()),
6133
- collection: nullishToOptional(z190.string())
6134
- });
6135
- var IntegrationCredentials = z190.object({
6136
- id: z190.string(),
6130
+ import { z as z191 } from "zod";
6131
+ var IntegrationDesignSystem = z191.object({
6132
+ designSystemId: z191.string(),
6133
+ brandId: z191.string(),
6134
+ title: z191.string().optional(),
6135
+ userId: z191.string().optional(),
6136
+ date: z191.coerce.date().optional()
6137
+ });
6138
+ var IntegrationCredentialsType = z191.enum(["OAuth2", "PAT"]);
6139
+ var IntegrationCredentialsState = z191.enum(["Active", "Inactive"]);
6140
+ var IntegrationCredentialsProfile = z191.object({
6141
+ id: nullishToOptional(z191.string()),
6142
+ email: nullishToOptional(z191.string()),
6143
+ handle: nullishToOptional(z191.string()),
6144
+ type: nullishToOptional(z191.string()),
6145
+ avatarUrl: nullishToOptional(z191.string()),
6146
+ organization: nullishToOptional(z191.string()),
6147
+ collection: nullishToOptional(z191.string())
6148
+ });
6149
+ var IntegrationCredentials = z191.object({
6150
+ id: z191.string(),
6137
6151
  type: IntegrationCredentialsType,
6138
- integrationId: z190.string(),
6139
- accessToken: z190.string(),
6140
- userId: z190.string(),
6141
- createdAt: z190.coerce.date(),
6142
- refreshToken: z190.string().optional(),
6143
- tokenName: z190.string().optional(),
6144
- expiresAt: z190.coerce.date().optional(),
6145
- refreshedAt: z190.coerce.date().optional(),
6146
- username: z190.string().optional(),
6147
- appInstallationId: z190.string().optional(),
6152
+ integrationId: z191.string(),
6153
+ accessToken: z191.string(),
6154
+ userId: z191.string(),
6155
+ createdAt: z191.coerce.date(),
6156
+ refreshToken: z191.string().optional(),
6157
+ tokenName: z191.string().optional(),
6158
+ expiresAt: z191.coerce.date().optional(),
6159
+ refreshedAt: z191.coerce.date().optional(),
6160
+ username: z191.string().optional(),
6161
+ appInstallationId: z191.string().optional(),
6148
6162
  profile: IntegrationCredentialsProfile.optional(),
6149
- customUrl: z190.string().optional(),
6163
+ customUrl: z191.string().optional(),
6150
6164
  state: IntegrationCredentialsState,
6151
6165
  user: UserMinified.optional()
6152
6166
  });
6153
- var ExtendedIntegrationType = z190.enum([
6167
+ var ExtendedIntegrationType = z191.enum([
6154
6168
  "Figma",
6155
6169
  "Github",
6156
6170
  "Gitlab",
@@ -6161,26 +6175,26 @@ var ExtendedIntegrationType = z190.enum([
6161
6175
  ]);
6162
6176
  var IntegrationType = ExtendedIntegrationType.exclude(["TokenStudio", "FigmaVariablesPlugin"]);
6163
6177
  var GitIntegrationType = IntegrationType.exclude(["Figma"]);
6164
- var Integration = z190.object({
6165
- id: z190.string(),
6166
- workspaceId: z190.string(),
6178
+ var Integration = z191.object({
6179
+ id: z191.string(),
6180
+ workspaceId: z191.string(),
6167
6181
  type: IntegrationType,
6168
- createdAt: z190.coerce.date(),
6169
- integrationCredentials: z190.array(IntegrationCredentials).optional()
6170
- });
6171
- var IntegrationToken = z190.object({
6172
- access_token: z190.string(),
6173
- refresh_token: z190.string().optional(),
6174
- expires_in: z190.union([z190.number().optional(), z190.string().optional()]),
6175
- token_type: z190.string().optional(),
6176
- token_name: z190.string().optional(),
6177
- token_azure_organization_name: z190.string().optional(),
6182
+ createdAt: z191.coerce.date(),
6183
+ integrationCredentials: z191.array(IntegrationCredentials).optional()
6184
+ });
6185
+ var IntegrationToken = z191.object({
6186
+ access_token: z191.string(),
6187
+ refresh_token: z191.string().optional(),
6188
+ expires_in: z191.union([z191.number().optional(), z191.string().optional()]),
6189
+ token_type: z191.string().optional(),
6190
+ token_name: z191.string().optional(),
6191
+ token_azure_organization_name: z191.string().optional(),
6178
6192
  // Azure Cloud PAT only
6179
- token_azure_collection_name: z190.string().optional(),
6193
+ token_azure_collection_name: z191.string().optional(),
6180
6194
  // Azure Server PAT only
6181
- token_bitbucket_username: z190.string().optional(),
6195
+ token_bitbucket_username: z191.string().optional(),
6182
6196
  // Bitbucket only
6183
- custom_url: z190.string().optional().transform((value) => {
6197
+ custom_url: z191.string().optional().transform((value) => {
6184
6198
  if (!value?.trim()) return void 0;
6185
6199
  return formatCustomUrl(value);
6186
6200
  })
@@ -6217,7 +6231,7 @@ function formatCustomUrl(url) {
6217
6231
  }
6218
6232
 
6219
6233
  // src/data-dumps/workspace-dump.ts
6220
- var WorkspaceDump = z191.object({
6234
+ var WorkspaceDump = z192.object({
6221
6235
  workspace: Workspace,
6222
6236
  designSystems: DesignSystemDump.array(),
6223
6237
  codeIntegration: CodeIntegrationDump,
@@ -6225,148 +6239,148 @@ var WorkspaceDump = z191.object({
6225
6239
  });
6226
6240
 
6227
6241
  // src/data-dumps/user-data-dump.ts
6228
- var UserDump = z192.object({
6242
+ var UserDump = z193.object({
6229
6243
  user: User,
6230
6244
  workspaces: WorkspaceDump.array()
6231
6245
  });
6232
6246
 
6233
6247
  // src/docs-server/session.ts
6234
- import { z as z193 } from "zod";
6235
- var NpmProxyToken = z193.object({
6236
- access: z193.string(),
6237
- expiresAt: z193.number()
6248
+ import { z as z194 } from "zod";
6249
+ var NpmProxyToken = z194.object({
6250
+ access: z194.string(),
6251
+ expiresAt: z194.number()
6238
6252
  });
6239
- var SessionData = z193.object({
6240
- returnToUrl: z193.string().optional(),
6253
+ var SessionData = z194.object({
6254
+ returnToUrl: z194.string().optional(),
6241
6255
  npmProxyToken: NpmProxyToken.optional()
6242
6256
  });
6243
- var Session = z193.object({
6244
- id: z193.string(),
6245
- expiresAt: z193.coerce.date(),
6246
- userId: z193.string().nullable(),
6247
- anonymousId: z193.string().nullable(),
6257
+ var Session = z194.object({
6258
+ id: z194.string(),
6259
+ expiresAt: z194.coerce.date(),
6260
+ userId: z194.string().nullable(),
6261
+ anonymousId: z194.string().nullable(),
6248
6262
  data: SessionData
6249
6263
  });
6250
- var AuthTokens = z193.object({
6251
- access: z193.string(),
6252
- refresh: z193.string()
6264
+ var AuthTokens = z194.object({
6265
+ access: z194.string(),
6266
+ refresh: z194.string()
6253
6267
  });
6254
- var UserSession = z193.object({
6268
+ var UserSession = z194.object({
6255
6269
  session: Session,
6256
6270
  user: User.nullable()
6257
6271
  });
6258
6272
 
6259
6273
  // src/emails/design-system-invite.ts
6260
- import { z as z194 } from "zod";
6261
- var DesignSystemInviteEmailRecipient = z194.object({
6262
- email: z194.string(),
6274
+ import { z as z195 } from "zod";
6275
+ var DesignSystemInviteEmailRecipient = z195.object({
6276
+ email: z195.string(),
6263
6277
  role: WorkspaceRoleSchema
6264
6278
  });
6265
- var DesignSystemInviteEmailData = z194.object({
6279
+ var DesignSystemInviteEmailData = z195.object({
6266
6280
  workspace: Workspace,
6267
6281
  designSystem: DesignSystem,
6268
6282
  invitedBy: User,
6269
- documentationDomain: z194.string().optional()
6283
+ documentationDomain: z195.string().optional()
6270
6284
  });
6271
6285
 
6272
6286
  // src/emails/workspace-invite.ts
6273
- import { z as z195 } from "zod";
6274
- var WorkspaceInviteEmailRecipient = z195.object({
6275
- email: z195.string(),
6287
+ import { z as z196 } from "zod";
6288
+ var WorkspaceInviteEmailRecipient = z196.object({
6289
+ email: z196.string(),
6276
6290
  role: WorkspaceRoleSchema
6277
6291
  });
6278
- var WorkspaceInviteEmailData = z195.object({
6292
+ var WorkspaceInviteEmailData = z196.object({
6279
6293
  workspace: Workspace,
6280
6294
  invitedBy: User,
6281
- documentationDomain: z195.string().optional()
6295
+ documentationDomain: z196.string().optional()
6282
6296
  });
6283
6297
 
6284
6298
  // src/events/base.ts
6285
- import { z as z199 } from "zod";
6299
+ import { z as z200 } from "zod";
6286
6300
 
6287
6301
  // src/events/data-source-imported.ts
6288
- import { z as z196 } from "zod";
6289
- var EventDataSourceImported = z196.object({
6290
- type: z196.literal("DataSourceImported"),
6291
- workspaceId: z196.string(),
6292
- designSystemId: z196.string()
6293
- });
6294
-
6295
- // src/events/version-released.ts
6296
6302
  import { z as z197 } from "zod";
6297
- var EventVersionReleased = z197.object({
6298
- type: z197.literal("DesignSystemVersionReleased"),
6303
+ var EventDataSourceImported = z197.object({
6304
+ type: z197.literal("DataSourceImported"),
6299
6305
  workspaceId: z197.string(),
6300
- designSystemId: z197.string(),
6301
- versionId: z197.string()
6306
+ designSystemId: z197.string()
6302
6307
  });
6303
6308
 
6304
- // src/events/documentation-published.ts
6309
+ // src/events/version-released.ts
6305
6310
  import { z as z198 } from "zod";
6306
- var EventDocumentationPublished = z198.object({
6307
- type: z198.literal("DocumentationPublished"),
6311
+ var EventVersionReleased = z198.object({
6312
+ type: z198.literal("DesignSystemVersionReleased"),
6308
6313
  workspaceId: z198.string(),
6309
6314
  designSystemId: z198.string(),
6310
6315
  versionId: z198.string()
6311
6316
  });
6312
6317
 
6318
+ // src/events/documentation-published.ts
6319
+ import { z as z199 } from "zod";
6320
+ var EventDocumentationPublished = z199.object({
6321
+ type: z199.literal("DocumentationPublished"),
6322
+ workspaceId: z199.string(),
6323
+ designSystemId: z199.string(),
6324
+ versionId: z199.string()
6325
+ });
6326
+
6313
6327
  // src/events/base.ts
6314
- var Event = z199.discriminatedUnion("type", [
6328
+ var Event = z200.discriminatedUnion("type", [
6315
6329
  EventVersionReleased,
6316
6330
  EventDataSourceImported,
6317
6331
  EventDocumentationPublished
6318
6332
  ]);
6319
6333
 
6320
6334
  // src/export/export-runner/export-context.ts
6321
- import { z as z200 } from "zod";
6322
- var ExportJobDocumentationContext = z200.object({
6323
- isSingleVersionDocs: z200.boolean(),
6324
- versionSlug: z200.string(),
6335
+ import { z as z201 } from "zod";
6336
+ var ExportJobDocumentationContext = z201.object({
6337
+ isSingleVersionDocs: z201.boolean(),
6338
+ versionSlug: z201.string(),
6325
6339
  environment: PublishedDocEnvironment
6326
6340
  });
6327
- var ExportJobDebugContext = z200.object({
6328
- debugMode: z200.boolean().optional(),
6329
- concurrency: z200.number().optional(),
6330
- preloadData: z200.string().optional(),
6331
- concurrencyMode: z200.string().optional(),
6332
- cacheSdk: z200.string().optional(),
6333
- logSdkNetwork: z200.boolean().optional(),
6334
- profilerMode: z200.string().optional()
6335
- });
6336
- var ExportJobContext = z200.object({
6337
- apiUrl: z200.string(),
6338
- accessToken: z200.string(),
6339
- designSystemId: z200.string(),
6340
- designSystemName: z200.string(),
6341
- exporterId: z200.string(),
6342
- versionId: z200.string(),
6343
- brandId: z200.string().optional(),
6344
- themeId: z200.string().optional(),
6345
- themePersistentIds: z200.string().array().optional(),
6346
- previewMode: z200.boolean().optional(),
6347
- exporterName: z200.string(),
6341
+ var ExportJobDebugContext = z201.object({
6342
+ debugMode: z201.boolean().optional(),
6343
+ concurrency: z201.number().optional(),
6344
+ preloadData: z201.string().optional(),
6345
+ concurrencyMode: z201.string().optional(),
6346
+ cacheSdk: z201.string().optional(),
6347
+ logSdkNetwork: z201.boolean().optional(),
6348
+ profilerMode: z201.string().optional()
6349
+ });
6350
+ var ExportJobContext = z201.object({
6351
+ apiUrl: z201.string(),
6352
+ accessToken: z201.string(),
6353
+ designSystemId: z201.string(),
6354
+ designSystemName: z201.string(),
6355
+ exporterId: z201.string(),
6356
+ versionId: z201.string(),
6357
+ brandId: z201.string().optional(),
6358
+ themeId: z201.string().optional(),
6359
+ themePersistentIds: z201.string().array().optional(),
6360
+ previewMode: z201.boolean().optional(),
6361
+ exporterName: z201.string(),
6348
6362
  documentation: ExportJobDocumentationContext.optional(),
6349
6363
  debug: ExportJobDebugContext.optional()
6350
6364
  });
6351
- var ExportJobExporterConfiguration = z200.object({
6352
- exporterPackageUrl: z200.string(),
6365
+ var ExportJobExporterConfiguration = z201.object({
6366
+ exporterPackageUrl: z201.string(),
6353
6367
  exporterPropertyValues: ExporterConfigurationPropertyValue.array(),
6354
6368
  exporterPropertyValuesV2: ExporterPropertyValueMap.optional()
6355
6369
  });
6356
6370
 
6357
6371
  // src/export/export-runner/exporter-payload.ts
6358
- import { z as z201 } from "zod";
6359
- var ExporterFunctionPayload = z201.object({
6360
- exportJobId: z201.string(),
6361
- exportContextId: z201.string(),
6362
- designSystemId: z201.string(),
6363
- workspaceId: z201.string(),
6364
- exporterId: z201.string()
6372
+ import { z as z202 } from "zod";
6373
+ var ExporterFunctionPayload = z202.object({
6374
+ exportJobId: z202.string(),
6375
+ exportContextId: z202.string(),
6376
+ designSystemId: z202.string(),
6377
+ workspaceId: z202.string(),
6378
+ exporterId: z202.string()
6365
6379
  });
6366
6380
 
6367
6381
  // src/export/export-jobs.ts
6368
- import { z as z202 } from "zod";
6369
- var ExportJobDestinationType = z202.enum([
6382
+ import { z as z203 } from "zod";
6383
+ var ExportJobDestinationType = z203.enum([
6370
6384
  "s3",
6371
6385
  "webhookUrl",
6372
6386
  "github",
@@ -6375,31 +6389,31 @@ var ExportJobDestinationType = z202.enum([
6375
6389
  "gitlab",
6376
6390
  "bitbucket"
6377
6391
  ]);
6378
- var ExportJobStatus = z202.enum(["InProgress", "Success", "Failed", "Timeout"]);
6379
- var ExportJobLogEntryType = z202.enum(["success", "info", "warning", "error", "user"]);
6380
- var ExportJobLogEntry = z202.object({
6381
- id: z202.string().optional(),
6382
- time: z202.coerce.date(),
6392
+ var ExportJobStatus = z203.enum(["InProgress", "Success", "Failed", "Timeout"]);
6393
+ var ExportJobLogEntryType = z203.enum(["success", "info", "warning", "error", "user"]);
6394
+ var ExportJobLogEntry = z203.object({
6395
+ id: z203.string().optional(),
6396
+ time: z203.coerce.date(),
6383
6397
  type: ExportJobLogEntryType,
6384
- message: z202.string()
6398
+ message: z203.string()
6385
6399
  });
6386
- var ExportJobPullRequestDestinationResult = z202.object({
6387
- pullRequestUrl: z202.string(),
6388
- sparseCheckoutUsed: nullishToOptional(z202.boolean())
6400
+ var ExportJobPullRequestDestinationResult = z203.object({
6401
+ pullRequestUrl: z203.string(),
6402
+ sparseCheckoutUsed: nullishToOptional(z203.boolean())
6389
6403
  });
6390
- var ExportJobS3DestinationResult = z202.object({
6391
- bucket: z202.string(),
6392
- urlPrefix: z202.string().optional(),
6393
- path: z202.string(),
6394
- files: z202.array(z202.string()),
6395
- url: nullishToOptional(z202.string()),
6396
- urls: nullishToOptional(z202.string().array())
6404
+ var ExportJobS3DestinationResult = z203.object({
6405
+ bucket: z203.string(),
6406
+ urlPrefix: z203.string().optional(),
6407
+ path: z203.string(),
6408
+ files: z203.array(z203.string()),
6409
+ url: nullishToOptional(z203.string()),
6410
+ urls: nullishToOptional(z203.string().array())
6397
6411
  });
6398
- var ExportJobDocsDestinationResult = z202.object({
6399
- url: z202.string()
6412
+ var ExportJobDocsDestinationResult = z203.object({
6413
+ url: z203.string()
6400
6414
  });
6401
- var ExportJobResult = z202.object({
6402
- error: z202.string().optional(),
6415
+ var ExportJobResult = z203.object({
6416
+ error: z203.string().optional(),
6403
6417
  s3: nullishToOptional(ExportJobS3DestinationResult),
6404
6418
  github: nullishToOptional(ExportJobPullRequestDestinationResult),
6405
6419
  azure: nullishToOptional(ExportJobPullRequestDestinationResult),
@@ -6408,25 +6422,25 @@ var ExportJobResult = z202.object({
6408
6422
  sndocs: nullishToOptional(ExportJobDocsDestinationResult),
6409
6423
  logs: nullishToOptional(ExportJobLogEntry.array())
6410
6424
  });
6411
- var ExportJob = z202.object({
6412
- id: z202.string(),
6413
- createdAt: z202.coerce.date(),
6414
- finishedAt: z202.coerce.date().optional(),
6415
- designSystemId: z202.string(),
6416
- designSystemVersionId: z202.string(),
6417
- workspaceId: z202.string(),
6418
- scheduleId: z202.string().nullish(),
6419
- exporterId: z202.string(),
6420
- brandId: z202.string().optional(),
6421
- themeId: z202.string().optional(),
6422
- themePersistentIds: z202.string().array().optional(),
6423
- estimatedExecutionTime: z202.number().optional(),
6425
+ var ExportJob = z203.object({
6426
+ id: z203.string(),
6427
+ createdAt: z203.coerce.date(),
6428
+ finishedAt: z203.coerce.date().optional(),
6429
+ designSystemId: z203.string(),
6430
+ designSystemVersionId: z203.string(),
6431
+ workspaceId: z203.string(),
6432
+ scheduleId: z203.string().nullish(),
6433
+ exporterId: z203.string(),
6434
+ brandId: z203.string().optional(),
6435
+ themeId: z203.string().optional(),
6436
+ themePersistentIds: z203.string().array().optional(),
6437
+ estimatedExecutionTime: z203.number().optional(),
6424
6438
  status: ExportJobStatus,
6425
6439
  result: ExportJobResult.optional(),
6426
- createdByUserId: z202.string().optional(),
6440
+ createdByUserId: z203.string().optional(),
6427
6441
  exporterPropertyValues: ExporterPropertyValueMap.optional(),
6428
- previewMode: z202.boolean().optional(),
6429
- exportContextId: z202.string().optional().nullable(),
6442
+ previewMode: z203.boolean().optional(),
6443
+ exportContextId: z203.string().optional().nullable(),
6430
6444
  // Destinations
6431
6445
  ...ExportDestinationsMap.shape
6432
6446
  });
@@ -6440,37 +6454,37 @@ var ExportJobFindByFilter = ExportJob.pick({
6440
6454
  themeId: true,
6441
6455
  brandId: true
6442
6456
  }).extend({
6443
- destinations: z202.array(ExportJobDestinationType),
6457
+ destinations: z203.array(ExportJobDestinationType),
6444
6458
  docsEnvironment: PublishedDocEnvironment,
6445
- selectivePublishing: z202.boolean().optional()
6459
+ selectivePublishing: z203.boolean().optional()
6446
6460
  }).partial();
6447
6461
 
6448
6462
  // src/export/exporter-list-query.ts
6449
- import { z as z203 } from "zod";
6450
- var ExporterType2 = z203.enum(["documentation", "code"]);
6451
- var ListExporterQuery = z203.object({
6452
- limit: z203.number().optional(),
6453
- offset: z203.number().optional(),
6463
+ import { z as z204 } from "zod";
6464
+ var ExporterType2 = z204.enum(["documentation", "code"]);
6465
+ var ListExporterQuery = z204.object({
6466
+ limit: z204.number().optional(),
6467
+ offset: z204.number().optional(),
6454
6468
  type: ExporterType2.optional(),
6455
- search: z203.string().optional()
6469
+ search: z204.string().optional()
6456
6470
  });
6457
6471
 
6458
6472
  // src/export/exporter-workspace-membership-role.ts
6459
- import { z as z204 } from "zod";
6460
- var ExporterWorkspaceMembershipRole = z204.enum(["Owner", "OwnerArchived", "User"]);
6473
+ import { z as z205 } from "zod";
6474
+ var ExporterWorkspaceMembershipRole = z205.enum(["Owner", "OwnerArchived", "User"]);
6461
6475
 
6462
6476
  // src/export/exporter-workspace-membership.ts
6463
- import { z as z205 } from "zod";
6464
- var ExporterWorkspaceMembership = z205.object({
6465
- id: z205.string(),
6466
- workspaceId: z205.string(),
6467
- exporterId: z205.string(),
6477
+ import { z as z206 } from "zod";
6478
+ var ExporterWorkspaceMembership = z206.object({
6479
+ id: z206.string(),
6480
+ workspaceId: z206.string(),
6481
+ exporterId: z206.string(),
6468
6482
  role: ExporterWorkspaceMembershipRole
6469
6483
  });
6470
6484
 
6471
6485
  // src/feature-flags/feature-flags.ts
6472
- import { z as z206 } from "zod";
6473
- var FlaggedFeature = z206.enum([
6486
+ import { z as z207 } from "zod";
6487
+ var FlaggedFeature = z207.enum([
6474
6488
  "FigmaImporterV2",
6475
6489
  "DisableImporter",
6476
6490
  "VariablesOrder",
@@ -6493,21 +6507,21 @@ var FlaggedFeature = z206.enum([
6493
6507
  var FeatureFlagDefaults = {
6494
6508
  DocumentationIgnoreSnapshotsOnPublish: "route-bff+route-p3"
6495
6509
  };
6496
- var FeatureFlagMap = z206.record(FlaggedFeature, z206.boolean());
6497
- var FeatureFlag = z206.object({
6498
- id: z206.string(),
6510
+ var FeatureFlagMap = z207.record(FlaggedFeature, z207.boolean());
6511
+ var FeatureFlag = z207.object({
6512
+ id: z207.string(),
6499
6513
  feature: FlaggedFeature,
6500
- createdAt: z206.coerce.date(),
6501
- enabled: z206.boolean(),
6502
- designSystemId: z206.string().optional(),
6503
- data: z206.record(z206.any()).nullable().optional()
6514
+ createdAt: z207.coerce.date(),
6515
+ enabled: z207.boolean(),
6516
+ designSystemId: z207.string().optional(),
6517
+ data: z207.record(z207.any()).nullable().optional()
6504
6518
  });
6505
6519
 
6506
6520
  // src/integrations/external-oauth-request.ts
6507
- import { z as z208 } from "zod";
6521
+ import { z as z209 } from "zod";
6508
6522
 
6509
6523
  // src/integrations/oauth-providers.ts
6510
- import { z as z207 } from "zod";
6524
+ import { z as z208 } from "zod";
6511
6525
  var OAuthProviderNames = /* @__PURE__ */ ((OAuthProviderNames2) => {
6512
6526
  OAuthProviderNames2["Figma"] = "figma";
6513
6527
  OAuthProviderNames2["Azure"] = "azure";
@@ -6516,152 +6530,152 @@ var OAuthProviderNames = /* @__PURE__ */ ((OAuthProviderNames2) => {
6516
6530
  OAuthProviderNames2["Bitbucket"] = "bitbucket";
6517
6531
  return OAuthProviderNames2;
6518
6532
  })(OAuthProviderNames || {});
6519
- var OAuthProviderSchema = z207.nativeEnum(OAuthProviderNames);
6533
+ var OAuthProviderSchema = z208.nativeEnum(OAuthProviderNames);
6520
6534
  var OAuthProvider = OAuthProviderSchema.enum;
6521
6535
 
6522
6536
  // src/integrations/external-oauth-request.ts
6523
- var ExternalOAuthRequest = z208.object({
6524
- id: z208.string(),
6537
+ var ExternalOAuthRequest = z209.object({
6538
+ id: z209.string(),
6525
6539
  provider: OAuthProviderSchema,
6526
- userId: z208.string(),
6527
- state: z208.string(),
6528
- createdAt: z208.coerce.date()
6540
+ userId: z209.string(),
6541
+ state: z209.string(),
6542
+ createdAt: z209.coerce.date()
6529
6543
  });
6530
6544
 
6531
6545
  // src/integrations/git.ts
6532
- import { z as z209 } from "zod";
6533
- var GitObjectsQuery = z209.object({
6534
- organization: z209.string().optional(),
6546
+ import { z as z210 } from "zod";
6547
+ var GitObjectsQuery = z210.object({
6548
+ organization: z210.string().optional(),
6535
6549
  // Azure Organization | Bitbucket Workspace slug | Gitlab Group | Github Account (User or Organization)
6536
- project: z209.string().optional(),
6550
+ project: z210.string().optional(),
6537
6551
  // Only for Bitbucket and Azure
6538
- repository: z209.string().optional(),
6552
+ repository: z210.string().optional(),
6539
6553
  // For all providers. For Gitlab, it's called "project".
6540
- branch: z209.string().optional(),
6554
+ branch: z210.string().optional(),
6541
6555
  // For all providers.
6542
- user: z209.string().optional()
6556
+ user: z210.string().optional()
6543
6557
  // Gitlab user
6544
6558
  });
6545
- var GitOrganization = z209.object({
6546
- id: z209.string(),
6547
- name: z209.string(),
6548
- url: z209.string(),
6549
- slug: z209.string()
6559
+ var GitOrganization = z210.object({
6560
+ id: z210.string(),
6561
+ name: z210.string(),
6562
+ url: z210.string(),
6563
+ slug: z210.string()
6550
6564
  });
6551
- var GitProject = z209.object({
6552
- id: z209.string(),
6553
- name: z209.string(),
6554
- url: z209.string(),
6555
- slug: z209.string()
6565
+ var GitProject = z210.object({
6566
+ id: z210.string(),
6567
+ name: z210.string(),
6568
+ url: z210.string(),
6569
+ slug: z210.string()
6556
6570
  });
6557
- var GitRepository = z209.object({
6558
- id: z209.string(),
6559
- name: z209.string(),
6560
- url: z209.string(),
6561
- slug: z209.string(),
6571
+ var GitRepository = z210.object({
6572
+ id: z210.string(),
6573
+ name: z210.string(),
6574
+ url: z210.string(),
6575
+ slug: z210.string(),
6562
6576
  /**
6563
6577
  * Can be undefined when:
6564
6578
  * - there are no branches in the repository yet
6565
6579
  * - Git provider doesn't expose this information on a repository via their API
6566
6580
  */
6567
- defaultBranch: z209.string().optional()
6581
+ defaultBranch: z210.string().optional()
6568
6582
  });
6569
- var GitBranch = z209.object({
6570
- name: z209.string(),
6571
- lastCommitId: z209.string()
6583
+ var GitBranch = z210.object({
6584
+ name: z210.string(),
6585
+ lastCommitId: z210.string()
6572
6586
  });
6573
6587
 
6574
6588
  // src/integrations/oauth-token.ts
6575
- import { z as z210 } from "zod";
6576
- var IntegrationTokenSchemaOld = z210.object({
6577
- id: z210.string(),
6589
+ import { z as z211 } from "zod";
6590
+ var IntegrationTokenSchemaOld = z211.object({
6591
+ id: z211.string(),
6578
6592
  provider: OAuthProviderSchema,
6579
- scope: z210.string(),
6580
- userId: z210.string(),
6581
- accessToken: z210.string(),
6582
- refreshToken: z210.string(),
6583
- expiresAt: z210.coerce.date(),
6584
- externalUserId: z210.string().nullish()
6593
+ scope: z211.string(),
6594
+ userId: z211.string(),
6595
+ accessToken: z211.string(),
6596
+ refreshToken: z211.string(),
6597
+ expiresAt: z211.coerce.date(),
6598
+ externalUserId: z211.string().nullish()
6585
6599
  });
6586
6600
 
6587
6601
  // src/integrations/workspace-oauth-requests.ts
6588
- import { z as z211 } from "zod";
6589
- var WorkspaceOAuthRequestSchema = z211.object({
6590
- id: z211.string(),
6591
- workspaceId: z211.string(),
6602
+ import { z as z212 } from "zod";
6603
+ var WorkspaceOAuthRequestSchema = z212.object({
6604
+ id: z212.string(),
6605
+ workspaceId: z212.string(),
6592
6606
  provider: OAuthProviderSchema,
6593
- userId: z211.string(),
6594
- createdAt: z211.coerce.date()
6607
+ userId: z212.string(),
6608
+ createdAt: z212.coerce.date()
6595
6609
  });
6596
6610
 
6597
6611
  // src/npm/npm-package.ts
6598
- import { z as z212 } from "zod";
6599
- var AnyRecord = z212.record(z212.any());
6612
+ import { z as z213 } from "zod";
6613
+ var AnyRecord = z213.record(z213.any());
6600
6614
  var NpmPackageVersionDist = AnyRecord.and(
6601
- z212.object({
6602
- tarball: z212.string()
6615
+ z213.object({
6616
+ tarball: z213.string()
6603
6617
  })
6604
6618
  );
6605
6619
  var NpmPackageVersion = AnyRecord.and(
6606
- z212.object({
6620
+ z213.object({
6607
6621
  dist: NpmPackageVersionDist
6608
6622
  })
6609
6623
  );
6610
6624
  var NpmPackage = AnyRecord.and(
6611
- z212.object({
6612
- _id: z212.string(),
6613
- name: z212.string(),
6625
+ z213.object({
6626
+ _id: z213.string(),
6627
+ name: z213.string(),
6614
6628
  // e.g. "latest": "1.2.3"
6615
- "dist-tags": z212.record(z212.string(), z212.string()),
6629
+ "dist-tags": z213.record(z213.string(), z213.string()),
6616
6630
  // "1.2.3": {...}
6617
- versions: z212.record(NpmPackageVersion)
6631
+ versions: z213.record(NpmPackageVersion)
6618
6632
  })
6619
6633
  );
6620
6634
 
6621
6635
  // src/npm/npm-proxy-token-payload.ts
6622
- import { z as z213 } from "zod";
6623
- var NpmProxyTokenPayload = z213.object({
6624
- npmProxyRegistryConfigId: z213.string()
6636
+ import { z as z214 } from "zod";
6637
+ var NpmProxyTokenPayload = z214.object({
6638
+ npmProxyRegistryConfigId: z214.string()
6625
6639
  });
6626
6640
 
6627
6641
  // src/portal/portal-settings.ts
6628
- import { z as z214 } from "zod";
6642
+ import { z as z215 } from "zod";
6629
6643
  var PortalSettingsTheme = UserTheme;
6630
- var PortalSettingsSidebarLink = z214.object({
6631
- name: z214.string(),
6632
- url: z214.string(),
6633
- emoji: z214.string()
6634
- });
6635
- var PortalSettingsSidebarSection = z214.object({
6636
- sectionName: z214.string(),
6637
- links: z214.array(PortalSettingsSidebarLink)
6638
- });
6639
- var PortalSettingsSidebar = z214.array(PortalSettingsSidebarSection);
6640
- var PortalSettings = z214.object({
6641
- id: z214.string(),
6642
- workspaceId: z214.string(),
6643
- enabledDesignSystemIds: z214.array(z214.string()),
6644
- enabledBrandPersistentIds: z214.array(z214.string()),
6644
+ var PortalSettingsSidebarLink = z215.object({
6645
+ name: z215.string(),
6646
+ url: z215.string(),
6647
+ emoji: z215.string()
6648
+ });
6649
+ var PortalSettingsSidebarSection = z215.object({
6650
+ sectionName: z215.string(),
6651
+ links: z215.array(PortalSettingsSidebarLink)
6652
+ });
6653
+ var PortalSettingsSidebar = z215.array(PortalSettingsSidebarSection);
6654
+ var PortalSettings = z215.object({
6655
+ id: z215.string(),
6656
+ workspaceId: z215.string(),
6657
+ enabledDesignSystemIds: z215.array(z215.string()),
6658
+ enabledBrandPersistentIds: z215.array(z215.string()),
6645
6659
  theme: PortalSettingsTheme.nullish(),
6646
6660
  sidebar: PortalSettingsSidebar.nullish(),
6647
- createdAt: z214.coerce.date(),
6648
- updatedAt: z214.coerce.date()
6661
+ createdAt: z215.coerce.date(),
6662
+ updatedAt: z215.coerce.date()
6649
6663
  });
6650
6664
 
6651
6665
  // src/tokens/personal-access-token.ts
6652
- import { z as z215 } from "zod";
6653
- var PersonalAccessToken = z215.object({
6654
- id: z215.string(),
6655
- userId: z215.string(),
6656
- workspaceId: z215.string().optional(),
6657
- designSystemId: z215.string().optional(),
6666
+ import { z as z216 } from "zod";
6667
+ var PersonalAccessToken = z216.object({
6668
+ id: z216.string(),
6669
+ userId: z216.string(),
6670
+ workspaceId: z216.string().optional(),
6671
+ designSystemId: z216.string().optional(),
6658
6672
  workspaceRole: WorkspaceRoleSchema.optional(),
6659
- name: z215.string(),
6660
- hidden: z215.boolean(),
6661
- token: z215.string(),
6662
- scope: z215.string().optional(),
6663
- createdAt: z215.coerce.date(),
6664
- expireAt: z215.coerce.date().optional()
6673
+ name: z216.string(),
6674
+ hidden: z216.boolean(),
6675
+ token: z216.string(),
6676
+ scope: z216.string().optional(),
6677
+ createdAt: z216.coerce.date(),
6678
+ expireAt: z216.coerce.date().optional()
6665
6679
  });
6666
6680
  export {
6667
6681
  Address,
@@ -6998,6 +7012,7 @@ export {
6998
7012
  ForgeProjectContextTailwindConfig,
6999
7013
  ForgeProjectFigmaNode,
7000
7014
  ForgeProjectFigmaNodeRenderInput,
7015
+ ForgeProjectFile,
7001
7016
  ForgeProjectInvitation,
7002
7017
  ForgeProjectIteration,
7003
7018
  ForgeProjectIterationMergeMeta,