@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.
@@ -4132,8 +4132,20 @@ var LedgerFileArtifactMetadataSchema = LedgerMetadataBaseSchema.extend({
4132
4132
  height: z21.number().optional(),
4133
4133
  blurDataURL: z21.string().optional()
4134
4134
  });
4135
+ var LedgerStructuralRedirectKindSchema = z21.enum([
4136
+ "root",
4137
+ "product",
4138
+ "version",
4139
+ "variant",
4140
+ "tab",
4141
+ "section",
4142
+ "api-section"
4143
+ ]);
4144
+ var LedgerRedirectKindSchema = z21.enum(["structural", "link"]);
4135
4145
  var LedgerRedirectMetadataSchema = LedgerMetadataBaseSchema.extend({
4136
- href: z21.string().optional()
4146
+ href: z21.string().optional(),
4147
+ redirectKind: LedgerRedirectKindSchema.optional(),
4148
+ structuralKind: LedgerStructuralRedirectKindSchema.optional()
4137
4149
  });
4138
4150
  var LedgerArtifactMetadataSchema = z21.union([
4139
4151
  LedgerMarkdownMetadataSchema,
@@ -6023,6 +6035,17 @@ var LedgerManifestSchema = z33.object({
6023
6035
  chrome: LedgerChromeBlobSchema,
6024
6036
  locales: z33.record(z33.string(), LedgerLocaleRoutingSchema)
6025
6037
  });
6038
+ var LedgerSiteArtifactSchema = z33.union([
6039
+ z33.object({
6040
+ schema: z33.literal(LEDGER_MANIFEST_SCHEMA_VERSION),
6041
+ unpublished: z33.literal(true),
6042
+ orgId: z33.string(),
6043
+ domain: z33.string(),
6044
+ basepath: z33.string(),
6045
+ isPreview: z33.boolean()
6046
+ }),
6047
+ LedgerManifestSchema
6048
+ ]);
6026
6049
 
6027
6050
  // src/orpc-client/docs-ledger/stable-stringify.ts
6028
6051
  function stableStringify(value) {
@@ -6422,6 +6445,7 @@ export {
6422
6445
  LedgerPointerSegmentSchema,
6423
6446
  LedgerPreviewRegisterInputSchema,
6424
6447
  LedgerPreviewRegisterResponseSchema,
6448
+ LedgerRedirectKindSchema,
6425
6449
  LedgerRedirectMetadataSchema,
6426
6450
  LedgerRestMetadataSchema,
6427
6451
  LedgerRouteShardSchema,
@@ -6430,6 +6454,8 @@ export {
6430
6454
  LedgerShardFileSchema,
6431
6455
  LedgerSidebarBundleSchema,
6432
6456
  LedgerSidebarMapEntrySchema,
6457
+ LedgerSiteArtifactSchema,
6458
+ LedgerStructuralRedirectKindSchema,
6433
6459
  LedgerWebSocketMetadataSchema,
6434
6460
  LedgerWebhookMetadataSchema,
6435
6461
  LibraryDocsBaseConfigSchema,