@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.
package/dist/js/index.js CHANGED
@@ -9372,8 +9372,20 @@ var LedgerFileArtifactMetadataSchema = LedgerMetadataBaseSchema.extend({
9372
9372
  height: z20.number().optional(),
9373
9373
  blurDataURL: z20.string().optional()
9374
9374
  });
9375
+ var LedgerStructuralRedirectKindSchema = z20.enum([
9376
+ "root",
9377
+ "product",
9378
+ "version",
9379
+ "variant",
9380
+ "tab",
9381
+ "section",
9382
+ "api-section"
9383
+ ]);
9384
+ var LedgerRedirectKindSchema = z20.enum(["structural", "link"]);
9375
9385
  var LedgerRedirectMetadataSchema = LedgerMetadataBaseSchema.extend({
9376
- href: z20.string().optional()
9386
+ href: z20.string().optional(),
9387
+ redirectKind: LedgerRedirectKindSchema.optional(),
9388
+ structuralKind: LedgerStructuralRedirectKindSchema.optional()
9377
9389
  });
9378
9390
  var LedgerArtifactMetadataSchema = z20.union([
9379
9391
  LedgerMarkdownMetadataSchema,