@fern-api/fdr-sdk 1.2.66-2ec4f56478 → 1.2.66-3d8402a3a1

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.
@@ -3903,8 +3903,20 @@ var LedgerFileArtifactMetadataSchema = LedgerMetadataBaseSchema.extend({
3903
3903
  height: z20.number().optional(),
3904
3904
  blurDataURL: z20.string().optional()
3905
3905
  });
3906
+ var LedgerStructuralRedirectKindSchema = z20.enum([
3907
+ "root",
3908
+ "product",
3909
+ "version",
3910
+ "variant",
3911
+ "tab",
3912
+ "section",
3913
+ "api-section"
3914
+ ]);
3915
+ var LedgerRedirectKindSchema = z20.enum(["structural", "link"]);
3906
3916
  var LedgerRedirectMetadataSchema = LedgerMetadataBaseSchema.extend({
3907
- href: z20.string().optional()
3917
+ href: z20.string().optional(),
3918
+ redirectKind: LedgerRedirectKindSchema.optional(),
3919
+ structuralKind: LedgerStructuralRedirectKindSchema.optional()
3908
3920
  });
3909
3921
  var LedgerArtifactMetadataSchema = z20.union([
3910
3922
  LedgerMarkdownMetadataSchema,