@supernova-studio/model 1.10.10 → 1.10.12

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
@@ -6074,7 +6074,8 @@ var ExportJobLogEntry = z184.object({
6074
6074
  message: z184.string()
6075
6075
  });
6076
6076
  var ExportJobPullRequestDestinationResult = z184.object({
6077
- pullRequestUrl: z184.string()
6077
+ pullRequestUrl: z184.string(),
6078
+ sparseCheckoutUsed: nullishToOptional(z184.boolean())
6078
6079
  });
6079
6080
  var ExportJobS3DestinationResult = z184.object({
6080
6081
  bucket: z184.string(),
@@ -6168,6 +6169,8 @@ var FlaggedFeature = z188.enum([
6168
6169
  "NonCompatibleTypeChanges",
6169
6170
  "TypographyUseFontStyle",
6170
6171
  "FigmaImporterV3",
6172
+ "SparseCheckoutEnabled",
6173
+ "NoTagsNoBlobsCheckoutEnabled",
6171
6174
  "PulsarDebugMode",
6172
6175
  "PulsarLogSdkNetwork",
6173
6176
  "PulsarCacheSdk",
@@ -6335,11 +6338,13 @@ var ForgeProjectIteration = z195.object({
6335
6338
 
6336
6339
  // src/forge/project-membership.ts
6337
6340
  import { z as z196 } from "zod";
6338
- var ForgeProjectPrivilegeSchema = z196.object({
6341
+ var ForgeProjectRole = z196.enum(["Viewer", "Editor", "Admin"]);
6342
+ var ForgeProjectMembership = z196.object({
6339
6343
  userId: z196.string(),
6340
6344
  fpId: z196.string(),
6341
- role: z196.string()
6342
- // TODO: RCT-5287 Define enum for role
6345
+ workspaceMembershipId: z196.string(),
6346
+ workspaceRole: WorkspaceRoleSchema,
6347
+ role: ForgeProjectRole
6343
6348
  });
6344
6349
 
6345
6350
  // src/forge/project.ts
@@ -6848,7 +6853,8 @@ export {
6848
6853
  ForgeProjectContextTailwindConfig,
6849
6854
  ForgeProjectIteration,
6850
6855
  ForgeProjectIterationMergeMeta,
6851
- ForgeProjectPrivilegeSchema,
6856
+ ForgeProjectMembership,
6857
+ ForgeProjectRole,
6852
6858
  ForgeProjectTag,
6853
6859
  ForgeSpecArtifact,
6854
6860
  GitBranch,