@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.mjs CHANGED
@@ -9309,8 +9309,20 @@ var LedgerFileArtifactMetadataSchema = LedgerMetadataBaseSchema.extend({
9309
9309
  height: z20.number().optional(),
9310
9310
  blurDataURL: z20.string().optional()
9311
9311
  });
9312
+ var LedgerStructuralRedirectKindSchema = z20.enum([
9313
+ "root",
9314
+ "product",
9315
+ "version",
9316
+ "variant",
9317
+ "tab",
9318
+ "section",
9319
+ "api-section"
9320
+ ]);
9321
+ var LedgerRedirectKindSchema = z20.enum(["structural", "link"]);
9312
9322
  var LedgerRedirectMetadataSchema = LedgerMetadataBaseSchema.extend({
9313
- href: z20.string().optional()
9323
+ href: z20.string().optional(),
9324
+ redirectKind: LedgerRedirectKindSchema.optional(),
9325
+ structuralKind: LedgerStructuralRedirectKindSchema.optional()
9314
9326
  });
9315
9327
  var LedgerArtifactMetadataSchema = z20.union([
9316
9328
  LedgerMarkdownMetadataSchema,