@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.
@@ -3940,8 +3940,20 @@ var LedgerFileArtifactMetadataSchema = LedgerMetadataBaseSchema.extend({
3940
3940
  height: z20.number().optional(),
3941
3941
  blurDataURL: z20.string().optional()
3942
3942
  });
3943
+ var LedgerStructuralRedirectKindSchema = z20.enum([
3944
+ "root",
3945
+ "product",
3946
+ "version",
3947
+ "variant",
3948
+ "tab",
3949
+ "section",
3950
+ "api-section"
3951
+ ]);
3952
+ var LedgerRedirectKindSchema = z20.enum(["structural", "link"]);
3943
3953
  var LedgerRedirectMetadataSchema = LedgerMetadataBaseSchema.extend({
3944
- href: z20.string().optional()
3954
+ href: z20.string().optional(),
3955
+ redirectKind: LedgerRedirectKindSchema.optional(),
3956
+ structuralKind: LedgerStructuralRedirectKindSchema.optional()
3945
3957
  });
3946
3958
  var LedgerArtifactMetadataSchema = z20.union([
3947
3959
  LedgerMarkdownMetadataSchema,