@supernova-studio/model 1.17.0 → 1.17.2

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