@fern-api/fdr-sdk 1.2.66-009ab031f5 → 1.2.66-2ec4f56478

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,20 +4132,8 @@ 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"]);
4145
4135
  var LedgerRedirectMetadataSchema = LedgerMetadataBaseSchema.extend({
4146
- href: z21.string().optional(),
4147
- redirectKind: LedgerRedirectKindSchema.optional(),
4148
- structuralKind: LedgerStructuralRedirectKindSchema.optional()
4136
+ href: z21.string().optional()
4149
4137
  });
4150
4138
  var LedgerArtifactMetadataSchema = z21.union([
4151
4139
  LedgerMarkdownMetadataSchema,
@@ -6035,17 +6023,6 @@ var LedgerManifestSchema = z33.object({
6035
6023
  chrome: LedgerChromeBlobSchema,
6036
6024
  locales: z33.record(z33.string(), LedgerLocaleRoutingSchema)
6037
6025
  });
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
- ]);
6049
6026
 
6050
6027
  // src/orpc-client/docs-ledger/stable-stringify.ts
6051
6028
  function stableStringify(value) {
@@ -6445,7 +6422,6 @@ export {
6445
6422
  LedgerPointerSegmentSchema,
6446
6423
  LedgerPreviewRegisterInputSchema,
6447
6424
  LedgerPreviewRegisterResponseSchema,
6448
- LedgerRedirectKindSchema,
6449
6425
  LedgerRedirectMetadataSchema,
6450
6426
  LedgerRestMetadataSchema,
6451
6427
  LedgerRouteShardSchema,
@@ -6454,8 +6430,6 @@ export {
6454
6430
  LedgerShardFileSchema,
6455
6431
  LedgerSidebarBundleSchema,
6456
6432
  LedgerSidebarMapEntrySchema,
6457
- LedgerSiteArtifactSchema,
6458
- LedgerStructuralRedirectKindSchema,
6459
6433
  LedgerWebSocketMetadataSchema,
6460
6434
  LedgerWebhookMetadataSchema,
6461
6435
  LibraryDocsBaseConfigSchema,