@fern-api/fdr-sdk 1.2.66-b70af6724f → 1.2.66-cc15e6c17a

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.
Files changed (55) hide show
  1. package/dist/js/api-definition/index.js +7 -3
  2. package/dist/js/api-definition/index.js.map +1 -1
  3. package/dist/js/api-definition/index.mjs +7 -3
  4. package/dist/js/api-definition/index.mjs.map +1 -1
  5. package/dist/js/client/FdrClient.js +19 -3
  6. package/dist/js/client/FdrClient.js.map +1 -1
  7. package/dist/js/client/FdrClient.mjs +19 -3
  8. package/dist/js/client/FdrClient.mjs.map +1 -1
  9. package/dist/js/client/types.js +4 -1
  10. package/dist/js/client/types.js.map +1 -1
  11. package/dist/js/client/types.mjs +4 -1
  12. package/dist/js/client/types.mjs.map +1 -1
  13. package/dist/js/converters/index.js +11 -4
  14. package/dist/js/converters/index.js.map +1 -1
  15. package/dist/js/converters/index.mjs +11 -4
  16. package/dist/js/converters/index.mjs.map +1 -1
  17. package/dist/js/docs/index.js +4 -1
  18. package/dist/js/docs/index.js.map +1 -1
  19. package/dist/js/docs/index.mjs +4 -1
  20. package/dist/js/docs/index.mjs.map +1 -1
  21. package/dist/js/index.js +26 -6
  22. package/dist/js/index.js.map +1 -1
  23. package/dist/js/index.mjs +26 -6
  24. package/dist/js/index.mjs.map +1 -1
  25. package/dist/js/navigation/index.js +11 -4
  26. package/dist/js/navigation/index.js.map +1 -1
  27. package/dist/js/navigation/index.mjs +11 -4
  28. package/dist/js/navigation/index.mjs.map +1 -1
  29. package/dist/js/orpc-client.js +36 -3
  30. package/dist/js/orpc-client.js.map +1 -1
  31. package/dist/js/orpc-client.mjs +33 -3
  32. package/dist/js/orpc-client.mjs.map +1 -1
  33. package/dist/tsconfig.tsbuildinfo +1 -1
  34. package/dist/types/api-definition/prune.d.ts.map +1 -1
  35. package/dist/types/client/docs-types/db.d.ts +61 -0
  36. package/dist/types/client/docs-types/db.d.ts.map +1 -1
  37. package/dist/types/client/docs-types/read.d.ts +27 -0
  38. package/dist/types/client/docs-types/read.d.ts.map +1 -1
  39. package/dist/types/client/docs-types/shared.d.ts +8 -0
  40. package/dist/types/client/docs-types/shared.d.ts.map +1 -1
  41. package/dist/types/client/docs-types/write.d.ts +16 -0
  42. package/dist/types/client/docs-types/write.d.ts.map +1 -1
  43. package/dist/types/orpc-client/docs/v1/read/contract.d.ts +18 -0
  44. package/dist/types/orpc-client/docs/v1/read/contract.d.ts.map +1 -1
  45. package/dist/types/orpc-client/docs/v1/write/contract.d.ts +4 -0
  46. package/dist/types/orpc-client/docs/v1/write/contract.d.ts.map +1 -1
  47. package/dist/types/orpc-client/docs/v2/read/contract.d.ts +40 -0
  48. package/dist/types/orpc-client/docs/v2/read/contract.d.ts.map +1 -1
  49. package/dist/types/orpc-client/docs/v2/write/contract.d.ts +8 -0
  50. package/dist/types/orpc-client/docs/v2/write/contract.d.ts.map +1 -1
  51. package/dist/types/orpc-client/docs-ledger/contract.d.ts +152 -0
  52. package/dist/types/orpc-client/docs-ledger/contract.d.ts.map +1 -1
  53. package/dist/types/orpc-client/docs-ledger/ledger-manifest.d.ts +12023 -0
  54. package/dist/types/orpc-client/docs-ledger/ledger-manifest.d.ts.map +1 -1
  55. package/package.json +1 -1
@@ -3875,12 +3875,15 @@ export declare const LedgerConfigSchema: z.ZodObject<{
3875
3875
  remote: z.ZodOptional<z.ZodArray<z.ZodObject<{
3876
3876
  url: z.ZodString;
3877
3877
  strategy: z.ZodOptional<z.ZodEnum<["beforeInteractive", "afterInteractive", "lazyOnload"]>>;
3878
+ disableSri: z.ZodOptional<z.ZodBoolean>;
3878
3879
  }, "strip", z.ZodTypeAny, {
3879
3880
  url: string;
3880
3881
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
3882
+ disableSri?: boolean | undefined;
3881
3883
  }, {
3882
3884
  url: string;
3883
3885
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
3886
+ disableSri?: boolean | undefined;
3884
3887
  }>, "many">>;
3885
3888
  files: z.ZodOptional<z.ZodArray<z.ZodObject<{
3886
3889
  path: z.ZodString;
@@ -3898,6 +3901,7 @@ export declare const LedgerConfigSchema: z.ZodObject<{
3898
3901
  remote?: {
3899
3902
  url: string;
3900
3903
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
3904
+ disableSri?: boolean | undefined;
3901
3905
  }[] | undefined;
3902
3906
  files?: {
3903
3907
  path: string;
@@ -3908,6 +3912,7 @@ export declare const LedgerConfigSchema: z.ZodObject<{
3908
3912
  remote?: {
3909
3913
  url: string;
3910
3914
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
3915
+ disableSri?: boolean | undefined;
3911
3916
  }[] | undefined;
3912
3917
  files?: {
3913
3918
  path: string;
@@ -4029,6 +4034,7 @@ export declare const LedgerConfigSchema: z.ZodObject<{
4029
4034
  remote?: {
4030
4035
  url: string;
4031
4036
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
4037
+ disableSri?: boolean | undefined;
4032
4038
  }[] | undefined;
4033
4039
  files?: {
4034
4040
  path: string;
@@ -4945,6 +4951,7 @@ export declare const LedgerConfigSchema: z.ZodObject<{
4945
4951
  remote?: {
4946
4952
  url: string;
4947
4953
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
4954
+ disableSri?: boolean | undefined;
4948
4955
  }[] | undefined;
4949
4956
  files?: {
4950
4957
  path: string;
@@ -6787,12 +6794,20 @@ export declare const LedgerFileArtifactMetadataSchema: z.ZodObject<{
6787
6794
  height: z.ZodOptional<z.ZodNumber>;
6788
6795
  blurDataURL: z.ZodOptional<z.ZodString>;
6789
6796
  }, z.ZodTypeAny, "passthrough">>;
6797
+ export declare const LedgerStructuralRedirectKindSchema: z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>;
6798
+ export declare const LedgerRedirectKindSchema: z.ZodEnum<["structural", "link"]>;
6790
6799
  export declare const LedgerRedirectMetadataSchema: z.ZodObject<{
6791
6800
  href: z.ZodOptional<z.ZodString>;
6801
+ redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
6802
+ structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
6792
6803
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
6793
6804
  href: z.ZodOptional<z.ZodString>;
6805
+ redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
6806
+ structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
6794
6807
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
6795
6808
  href: z.ZodOptional<z.ZodString>;
6809
+ redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
6810
+ structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
6796
6811
  }, z.ZodTypeAny, "passthrough">>;
6797
6812
  export declare const LedgerArtifactMetadataSchema: z.ZodUnion<[z.ZodObject<{
6798
6813
  pageId: z.ZodOptional<z.ZodString>;
@@ -7339,10 +7354,16 @@ export declare const LedgerArtifactMetadataSchema: z.ZodUnion<[z.ZodObject<{
7339
7354
  blurDataURL: z.ZodOptional<z.ZodString>;
7340
7355
  }, z.ZodTypeAny, "passthrough">>, z.ZodObject<{
7341
7356
  href: z.ZodOptional<z.ZodString>;
7357
+ redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
7358
+ structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
7342
7359
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
7343
7360
  href: z.ZodOptional<z.ZodString>;
7361
+ redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
7362
+ structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
7344
7363
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
7345
7364
  href: z.ZodOptional<z.ZodString>;
7365
+ redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
7366
+ structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
7346
7367
  }, z.ZodTypeAny, "passthrough">>]>;
7347
7368
  export type LedgerArtifactMetadata = z.infer<typeof LedgerArtifactMetadataSchema>;
7348
7369
  /**
@@ -7998,10 +8019,16 @@ export declare const LEDGER_ARTIFACT_METADATA_SCHEMAS: {
7998
8019
  }, z.ZodTypeAny, "passthrough">>;
7999
8020
  readonly redirect: z.ZodObject<{
8000
8021
  href: z.ZodOptional<z.ZodString>;
8022
+ redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
8023
+ structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
8001
8024
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
8002
8025
  href: z.ZodOptional<z.ZodString>;
8026
+ redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
8027
+ structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
8003
8028
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
8004
8029
  href: z.ZodOptional<z.ZodString>;
8030
+ redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
8031
+ structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
8005
8032
  }, z.ZodTypeAny, "passthrough">>;
8006
8033
  };
8007
8034
  /**
@@ -9237,16 +9264,24 @@ export declare const LedgerNavRouteSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
9237
9264
  type: z.ZodLiteral<"redirect">;
9238
9265
  metadata: z.ZodObject<{
9239
9266
  href: z.ZodOptional<z.ZodString>;
9267
+ redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
9268
+ structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
9240
9269
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
9241
9270
  href: z.ZodOptional<z.ZodString>;
9271
+ redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
9272
+ structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
9242
9273
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
9243
9274
  href: z.ZodOptional<z.ZodString>;
9275
+ redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
9276
+ structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
9244
9277
  }, z.ZodTypeAny, "passthrough">>;
9245
9278
  }, z.UnknownKeysParam, z.ZodTypeAny, {
9246
9279
  type: "redirect";
9247
9280
  hidden: boolean;
9248
9281
  metadata: {
9249
9282
  href?: string | undefined;
9283
+ redirectKind?: "link" | "structural" | undefined;
9284
+ structuralKind?: "version" | "root" | "product" | "variant" | "tab" | "section" | "api-section" | undefined;
9250
9285
  } & {
9251
9286
  [k: string]: unknown;
9252
9287
  };
@@ -9258,6 +9293,8 @@ export declare const LedgerNavRouteSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
9258
9293
  hidden: boolean;
9259
9294
  metadata: {
9260
9295
  href?: string | undefined;
9296
+ redirectKind?: "link" | "structural" | undefined;
9297
+ structuralKind?: "version" | "root" | "product" | "variant" | "tab" | "section" | "api-section" | undefined;
9261
9298
  } & {
9262
9299
  [k: string]: unknown;
9263
9300
  };
@@ -12998,12 +13035,15 @@ export declare const DocsContentFieldsSchema: z.ZodObject<{
12998
13035
  remote: z.ZodOptional<z.ZodArray<z.ZodObject<{
12999
13036
  url: z.ZodString;
13000
13037
  strategy: z.ZodOptional<z.ZodEnum<["beforeInteractive", "afterInteractive", "lazyOnload"]>>;
13038
+ disableSri: z.ZodOptional<z.ZodBoolean>;
13001
13039
  }, "strip", z.ZodTypeAny, {
13002
13040
  url: string;
13003
13041
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
13042
+ disableSri?: boolean | undefined;
13004
13043
  }, {
13005
13044
  url: string;
13006
13045
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
13046
+ disableSri?: boolean | undefined;
13007
13047
  }>, "many">>;
13008
13048
  files: z.ZodOptional<z.ZodArray<z.ZodObject<{
13009
13049
  path: z.ZodString;
@@ -13021,6 +13061,7 @@ export declare const DocsContentFieldsSchema: z.ZodObject<{
13021
13061
  remote?: {
13022
13062
  url: string;
13023
13063
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
13064
+ disableSri?: boolean | undefined;
13024
13065
  }[] | undefined;
13025
13066
  files?: {
13026
13067
  path: string;
@@ -13031,6 +13072,7 @@ export declare const DocsContentFieldsSchema: z.ZodObject<{
13031
13072
  remote?: {
13032
13073
  url: string;
13033
13074
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
13075
+ disableSri?: boolean | undefined;
13034
13076
  }[] | undefined;
13035
13077
  files?: {
13036
13078
  path: string;
@@ -13152,6 +13194,7 @@ export declare const DocsContentFieldsSchema: z.ZodObject<{
13152
13194
  remote?: {
13153
13195
  url: string;
13154
13196
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
13197
+ disableSri?: boolean | undefined;
13155
13198
  }[] | undefined;
13156
13199
  files?: {
13157
13200
  path: string;
@@ -14068,6 +14111,7 @@ export declare const DocsContentFieldsSchema: z.ZodObject<{
14068
14111
  remote?: {
14069
14112
  url: string;
14070
14113
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
14114
+ disableSri?: boolean | undefined;
14071
14115
  }[] | undefined;
14072
14116
  files?: {
14073
14117
  path: string;
@@ -15083,6 +15127,7 @@ export declare const DocsContentFieldsSchema: z.ZodObject<{
15083
15127
  remote?: {
15084
15128
  url: string;
15085
15129
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
15130
+ disableSri?: boolean | undefined;
15086
15131
  }[] | undefined;
15087
15132
  files?: {
15088
15133
  path: string;
@@ -16039,6 +16084,7 @@ export declare const DocsContentFieldsSchema: z.ZodObject<{
16039
16084
  remote?: {
16040
16085
  url: string;
16041
16086
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
16087
+ disableSri?: boolean | undefined;
16042
16088
  }[] | undefined;
16043
16089
  files?: {
16044
16090
  path: string;
@@ -20682,12 +20728,15 @@ declare const LocaleEntrySchemaInternal: z.ZodObject<{
20682
20728
  remote: z.ZodOptional<z.ZodArray<z.ZodObject<{
20683
20729
  url: z.ZodString;
20684
20730
  strategy: z.ZodOptional<z.ZodEnum<["beforeInteractive", "afterInteractive", "lazyOnload"]>>;
20731
+ disableSri: z.ZodOptional<z.ZodBoolean>;
20685
20732
  }, "strip", z.ZodTypeAny, {
20686
20733
  url: string;
20687
20734
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
20735
+ disableSri?: boolean | undefined;
20688
20736
  }, {
20689
20737
  url: string;
20690
20738
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
20739
+ disableSri?: boolean | undefined;
20691
20740
  }>, "many">>;
20692
20741
  files: z.ZodOptional<z.ZodArray<z.ZodObject<{
20693
20742
  path: z.ZodString;
@@ -20705,6 +20754,7 @@ declare const LocaleEntrySchemaInternal: z.ZodObject<{
20705
20754
  remote?: {
20706
20755
  url: string;
20707
20756
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
20757
+ disableSri?: boolean | undefined;
20708
20758
  }[] | undefined;
20709
20759
  files?: {
20710
20760
  path: string;
@@ -20715,6 +20765,7 @@ declare const LocaleEntrySchemaInternal: z.ZodObject<{
20715
20765
  remote?: {
20716
20766
  url: string;
20717
20767
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
20768
+ disableSri?: boolean | undefined;
20718
20769
  }[] | undefined;
20719
20770
  files?: {
20720
20771
  path: string;
@@ -20836,6 +20887,7 @@ declare const LocaleEntrySchemaInternal: z.ZodObject<{
20836
20887
  remote?: {
20837
20888
  url: string;
20838
20889
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
20890
+ disableSri?: boolean | undefined;
20839
20891
  }[] | undefined;
20840
20892
  files?: {
20841
20893
  path: string;
@@ -21752,6 +21804,7 @@ declare const LocaleEntrySchemaInternal: z.ZodObject<{
21752
21804
  remote?: {
21753
21805
  url: string;
21754
21806
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
21807
+ disableSri?: boolean | undefined;
21755
21808
  }[] | undefined;
21756
21809
  files?: {
21757
21810
  path: string;
@@ -22758,6 +22811,7 @@ declare const LocaleEntrySchemaInternal: z.ZodObject<{
22758
22811
  remote?: {
22759
22812
  url: string;
22760
22813
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
22814
+ disableSri?: boolean | undefined;
22761
22815
  }[] | undefined;
22762
22816
  files?: {
22763
22817
  path: string;
@@ -23715,6 +23769,7 @@ declare const LocaleEntrySchemaInternal: z.ZodObject<{
23715
23769
  remote?: {
23716
23770
  url: string;
23717
23771
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
23772
+ disableSri?: boolean | undefined;
23718
23773
  }[] | undefined;
23719
23774
  files?: {
23720
23775
  path: string;
@@ -24708,6 +24763,7 @@ declare const DocsPublishInputSchemaInternal: z.ZodEffects<z.ZodObject<{
24708
24763
  remote?: {
24709
24764
  url: string;
24710
24765
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
24766
+ disableSri?: boolean | undefined;
24711
24767
  }[] | undefined;
24712
24768
  files?: {
24713
24769
  path: string;
@@ -25665,6 +25721,7 @@ declare const DocsPublishInputSchemaInternal: z.ZodEffects<z.ZodObject<{
25665
25721
  remote?: {
25666
25722
  url: string;
25667
25723
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
25724
+ disableSri?: boolean | undefined;
25668
25725
  }[] | undefined;
25669
25726
  files?: {
25670
25727
  path: string;
@@ -26629,6 +26686,7 @@ declare const DocsPublishInputSchemaInternal: z.ZodEffects<z.ZodObject<{
26629
26686
  remote?: {
26630
26687
  url: string;
26631
26688
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
26689
+ disableSri?: boolean | undefined;
26632
26690
  }[] | undefined;
26633
26691
  files?: {
26634
26692
  path: string;
@@ -27592,6 +27650,7 @@ declare const DocsPublishInputSchemaInternal: z.ZodEffects<z.ZodObject<{
27592
27650
  remote?: {
27593
27651
  url: string;
27594
27652
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
27653
+ disableSri?: boolean | undefined;
27595
27654
  }[] | undefined;
27596
27655
  files?: {
27597
27656
  path: string;
@@ -28561,6 +28620,7 @@ declare const DocsPublishInputSchemaInternal: z.ZodEffects<z.ZodObject<{
28561
28620
  remote?: {
28562
28621
  url: string;
28563
28622
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
28623
+ disableSri?: boolean | undefined;
28564
28624
  }[] | undefined;
28565
28625
  files?: {
28566
28626
  path: string;
@@ -29524,6 +29584,7 @@ declare const DocsPublishInputSchemaInternal: z.ZodEffects<z.ZodObject<{
29524
29584
  remote?: {
29525
29585
  url: string;
29526
29586
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
29587
+ disableSri?: boolean | undefined;
29527
29588
  }[] | undefined;
29528
29589
  files?: {
29529
29590
  path: string;
@@ -34179,12 +34240,15 @@ declare const LedgerPreviewRegisterInputSchemaInternal: z.ZodEffects<z.ZodObject
34179
34240
  remote: z.ZodOptional<z.ZodArray<z.ZodObject<{
34180
34241
  url: z.ZodString;
34181
34242
  strategy: z.ZodOptional<z.ZodEnum<["beforeInteractive", "afterInteractive", "lazyOnload"]>>;
34243
+ disableSri: z.ZodOptional<z.ZodBoolean>;
34182
34244
  }, "strip", z.ZodTypeAny, {
34183
34245
  url: string;
34184
34246
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
34247
+ disableSri?: boolean | undefined;
34185
34248
  }, {
34186
34249
  url: string;
34187
34250
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
34251
+ disableSri?: boolean | undefined;
34188
34252
  }>, "many">>;
34189
34253
  files: z.ZodOptional<z.ZodArray<z.ZodObject<{
34190
34254
  path: z.ZodString;
@@ -34202,6 +34266,7 @@ declare const LedgerPreviewRegisterInputSchemaInternal: z.ZodEffects<z.ZodObject
34202
34266
  remote?: {
34203
34267
  url: string;
34204
34268
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
34269
+ disableSri?: boolean | undefined;
34205
34270
  }[] | undefined;
34206
34271
  files?: {
34207
34272
  path: string;
@@ -34212,6 +34277,7 @@ declare const LedgerPreviewRegisterInputSchemaInternal: z.ZodEffects<z.ZodObject
34212
34277
  remote?: {
34213
34278
  url: string;
34214
34279
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
34280
+ disableSri?: boolean | undefined;
34215
34281
  }[] | undefined;
34216
34282
  files?: {
34217
34283
  path: string;
@@ -34333,6 +34399,7 @@ declare const LedgerPreviewRegisterInputSchemaInternal: z.ZodEffects<z.ZodObject
34333
34399
  remote?: {
34334
34400
  url: string;
34335
34401
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
34402
+ disableSri?: boolean | undefined;
34336
34403
  }[] | undefined;
34337
34404
  files?: {
34338
34405
  path: string;
@@ -35249,6 +35316,7 @@ declare const LedgerPreviewRegisterInputSchemaInternal: z.ZodEffects<z.ZodObject
35249
35316
  remote?: {
35250
35317
  url: string;
35251
35318
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
35319
+ disableSri?: boolean | undefined;
35252
35320
  }[] | undefined;
35253
35321
  files?: {
35254
35322
  path: string;
@@ -36276,6 +36344,7 @@ declare const LedgerPreviewRegisterInputSchemaInternal: z.ZodEffects<z.ZodObject
36276
36344
  remote?: {
36277
36345
  url: string;
36278
36346
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
36347
+ disableSri?: boolean | undefined;
36279
36348
  }[] | undefined;
36280
36349
  files?: {
36281
36350
  path: string;
@@ -37233,6 +37302,7 @@ declare const LedgerPreviewRegisterInputSchemaInternal: z.ZodEffects<z.ZodObject
37233
37302
  remote?: {
37234
37303
  url: string;
37235
37304
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
37305
+ disableSri?: boolean | undefined;
37236
37306
  }[] | undefined;
37237
37307
  files?: {
37238
37308
  path: string;
@@ -38187,6 +38257,7 @@ declare const LedgerPreviewRegisterInputSchemaInternal: z.ZodEffects<z.ZodObject
38187
38257
  remote?: {
38188
38258
  url: string;
38189
38259
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
38260
+ disableSri?: boolean | undefined;
38190
38261
  }[] | undefined;
38191
38262
  files?: {
38192
38263
  path: string;
@@ -39152,6 +39223,7 @@ declare const LedgerPreviewRegisterInputSchemaInternal: z.ZodEffects<z.ZodObject
39152
39223
  remote?: {
39153
39224
  url: string;
39154
39225
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
39226
+ disableSri?: boolean | undefined;
39155
39227
  }[] | undefined;
39156
39228
  files?: {
39157
39229
  path: string;
@@ -40105,6 +40177,7 @@ declare const LedgerPreviewRegisterInputSchemaInternal: z.ZodEffects<z.ZodObject
40105
40177
  remote?: {
40106
40178
  url: string;
40107
40179
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
40180
+ disableSri?: boolean | undefined;
40108
40181
  }[] | undefined;
40109
40182
  files?: {
40110
40183
  path: string;
@@ -41071,6 +41144,7 @@ declare const LedgerPreviewRegisterInputSchemaInternal: z.ZodEffects<z.ZodObject
41071
41144
  remote?: {
41072
41145
  url: string;
41073
41146
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
41147
+ disableSri?: boolean | undefined;
41074
41148
  }[] | undefined;
41075
41149
  files?: {
41076
41150
  path: string;
@@ -42025,6 +42099,7 @@ declare const LedgerPreviewRegisterInputSchemaInternal: z.ZodEffects<z.ZodObject
42025
42099
  remote?: {
42026
42100
  url: string;
42027
42101
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
42102
+ disableSri?: boolean | undefined;
42028
42103
  }[] | undefined;
42029
42104
  files?: {
42030
42105
  path: string;
@@ -42990,6 +43065,7 @@ declare const LedgerPreviewRegisterInputSchemaInternal: z.ZodEffects<z.ZodObject
42990
43065
  remote?: {
42991
43066
  url: string;
42992
43067
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
43068
+ disableSri?: boolean | undefined;
42993
43069
  }[] | undefined;
42994
43070
  files?: {
42995
43071
  path: string;
@@ -43943,6 +44019,7 @@ declare const LedgerPreviewRegisterInputSchemaInternal: z.ZodEffects<z.ZodObject
43943
44019
  remote?: {
43944
44020
  url: string;
43945
44021
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
44022
+ disableSri?: boolean | undefined;
43946
44023
  }[] | undefined;
43947
44024
  files?: {
43948
44025
  path: string;
@@ -44909,6 +44986,7 @@ declare const LedgerPreviewRegisterInputSchemaInternal: z.ZodEffects<z.ZodObject
44909
44986
  remote?: {
44910
44987
  url: string;
44911
44988
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
44989
+ disableSri?: boolean | undefined;
44912
44990
  }[] | undefined;
44913
44991
  files?: {
44914
44992
  path: string;
@@ -45929,6 +46007,7 @@ export declare const docsLedgerContract: {
45929
46007
  remote?: {
45930
46008
  url: string;
45931
46009
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
46010
+ disableSri?: boolean | undefined;
45932
46011
  }[] | undefined;
45933
46012
  files?: {
45934
46013
  path: string;
@@ -46892,6 +46971,7 @@ export declare const docsLedgerContract: {
46892
46971
  remote?: {
46893
46972
  url: string;
46894
46973
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
46974
+ disableSri?: boolean | undefined;
46895
46975
  }[] | undefined;
46896
46976
  files?: {
46897
46977
  path: string;
@@ -47876,6 +47956,7 @@ export declare const docsLedgerContract: {
47876
47956
  remote?: {
47877
47957
  url: string;
47878
47958
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
47959
+ disableSri?: boolean | undefined;
47879
47960
  }[] | undefined;
47880
47961
  files?: {
47881
47962
  path: string;
@@ -48841,6 +48922,7 @@ export declare const docsLedgerContract: {
48841
48922
  remote?: {
48842
48923
  url: string;
48843
48924
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
48925
+ disableSri?: boolean | undefined;
48844
48926
  }[] | undefined;
48845
48927
  files?: {
48846
48928
  path: string;
@@ -49794,6 +49876,7 @@ export declare const docsLedgerContract: {
49794
49876
  remote?: {
49795
49877
  url: string;
49796
49878
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
49879
+ disableSri?: boolean | undefined;
49797
49880
  }[] | undefined;
49798
49881
  files?: {
49799
49882
  path: string;
@@ -50760,6 +50843,7 @@ export declare const docsLedgerContract: {
50760
50843
  remote?: {
50761
50844
  url: string;
50762
50845
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
50846
+ disableSri?: boolean | undefined;
50763
50847
  }[] | undefined;
50764
50848
  files?: {
50765
50849
  path: string;
@@ -51765,6 +51849,7 @@ export declare const docsLedgerContract: {
51765
51849
  remote?: {
51766
51850
  url: string;
51767
51851
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
51852
+ disableSri?: boolean | undefined;
51768
51853
  }[] | undefined;
51769
51854
  files?: {
51770
51855
  path: string;
@@ -52728,6 +52813,7 @@ export declare const docsLedgerContract: {
52728
52813
  remote?: {
52729
52814
  url: string;
52730
52815
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
52816
+ disableSri?: boolean | undefined;
52731
52817
  }[] | undefined;
52732
52818
  files?: {
52733
52819
  path: string;
@@ -57558,12 +57644,15 @@ export declare const VersionMetadataResponseSchema: z.ZodObject<{
57558
57644
  remote: z.ZodOptional<z.ZodArray<z.ZodObject<{
57559
57645
  url: z.ZodString;
57560
57646
  strategy: z.ZodOptional<z.ZodEnum<["beforeInteractive", "afterInteractive", "lazyOnload"]>>;
57647
+ disableSri: z.ZodOptional<z.ZodBoolean>;
57561
57648
  }, "strip", z.ZodTypeAny, {
57562
57649
  url: string;
57563
57650
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
57651
+ disableSri?: boolean | undefined;
57564
57652
  }, {
57565
57653
  url: string;
57566
57654
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
57655
+ disableSri?: boolean | undefined;
57567
57656
  }>, "many">>;
57568
57657
  files: z.ZodOptional<z.ZodArray<z.ZodObject<{
57569
57658
  path: z.ZodString;
@@ -57581,6 +57670,7 @@ export declare const VersionMetadataResponseSchema: z.ZodObject<{
57581
57670
  remote?: {
57582
57671
  url: string;
57583
57672
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
57673
+ disableSri?: boolean | undefined;
57584
57674
  }[] | undefined;
57585
57675
  files?: {
57586
57676
  path: string;
@@ -57591,6 +57681,7 @@ export declare const VersionMetadataResponseSchema: z.ZodObject<{
57591
57681
  remote?: {
57592
57682
  url: string;
57593
57683
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
57684
+ disableSri?: boolean | undefined;
57594
57685
  }[] | undefined;
57595
57686
  files?: {
57596
57687
  path: string;
@@ -57712,6 +57803,7 @@ export declare const VersionMetadataResponseSchema: z.ZodObject<{
57712
57803
  remote?: {
57713
57804
  url: string;
57714
57805
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
57806
+ disableSri?: boolean | undefined;
57715
57807
  }[] | undefined;
57716
57808
  files?: {
57717
57809
  path: string;
@@ -58628,6 +58720,7 @@ export declare const VersionMetadataResponseSchema: z.ZodObject<{
58628
58720
  remote?: {
58629
58721
  url: string;
58630
58722
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
58723
+ disableSri?: boolean | undefined;
58631
58724
  }[] | undefined;
58632
58725
  files?: {
58633
58726
  path: string;
@@ -60831,6 +60924,7 @@ export declare const VersionMetadataResponseSchema: z.ZodObject<{
60831
60924
  remote?: {
60832
60925
  url: string;
60833
60926
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
60927
+ disableSri?: boolean | undefined;
60834
60928
  }[] | undefined;
60835
60929
  files?: {
60836
60930
  path: string;
@@ -62010,6 +62104,7 @@ export declare const VersionMetadataResponseSchema: z.ZodObject<{
62010
62104
  remote?: {
62011
62105
  url: string;
62012
62106
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
62107
+ disableSri?: boolean | undefined;
62013
62108
  }[] | undefined;
62014
62109
  files?: {
62015
62110
  path: string;
@@ -64477,16 +64572,24 @@ export declare const NavResponseSchema: z.ZodObject<{
64477
64572
  type: z.ZodLiteral<"redirect">;
64478
64573
  metadata: z.ZodObject<{
64479
64574
  href: z.ZodOptional<z.ZodString>;
64575
+ redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
64576
+ structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
64480
64577
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
64481
64578
  href: z.ZodOptional<z.ZodString>;
64579
+ redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
64580
+ structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
64482
64581
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
64483
64582
  href: z.ZodOptional<z.ZodString>;
64583
+ redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
64584
+ structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
64484
64585
  }, z.ZodTypeAny, "passthrough">>;
64485
64586
  }, z.UnknownKeysParam, z.ZodTypeAny, {
64486
64587
  type: "redirect";
64487
64588
  hidden: boolean;
64488
64589
  metadata: {
64489
64590
  href?: string | undefined;
64591
+ redirectKind?: "link" | "structural" | undefined;
64592
+ structuralKind?: "version" | "root" | "product" | "variant" | "tab" | "section" | "api-section" | undefined;
64490
64593
  } & {
64491
64594
  [k: string]: unknown;
64492
64595
  };
@@ -64498,6 +64601,8 @@ export declare const NavResponseSchema: z.ZodObject<{
64498
64601
  hidden: boolean;
64499
64602
  metadata: {
64500
64603
  href?: string | undefined;
64604
+ redirectKind?: "link" | "structural" | undefined;
64605
+ structuralKind?: "version" | "root" | "product" | "variant" | "tab" | "section" | "api-section" | undefined;
64501
64606
  } & {
64502
64607
  [k: string]: unknown;
64503
64608
  };
@@ -64757,6 +64862,8 @@ export declare const NavResponseSchema: z.ZodObject<{
64757
64862
  hidden: boolean;
64758
64863
  metadata: {
64759
64864
  href?: string | undefined;
64865
+ redirectKind?: "link" | "structural" | undefined;
64866
+ structuralKind?: "version" | "root" | "product" | "variant" | "tab" | "section" | "api-section" | undefined;
64760
64867
  } & {
64761
64868
  [k: string]: unknown;
64762
64869
  };
@@ -65016,6 +65123,8 @@ export declare const NavResponseSchema: z.ZodObject<{
65016
65123
  hidden: boolean;
65017
65124
  metadata: {
65018
65125
  href?: string | undefined;
65126
+ redirectKind?: "link" | "structural" | undefined;
65127
+ structuralKind?: "version" | "root" | "product" | "variant" | "tab" | "section" | "api-section" | undefined;
65019
65128
  } & {
65020
65129
  [k: string]: unknown;
65021
65130
  };
@@ -72669,10 +72778,16 @@ export declare const RouteContextResponseSchema: z.ZodDiscriminatedUnion<"artifa
72669
72778
  artifactType: z.ZodLiteral<"redirect">;
72670
72779
  artifactMetadata: z.ZodObject<{
72671
72780
  href: z.ZodOptional<z.ZodString>;
72781
+ redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
72782
+ structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
72672
72783
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
72673
72784
  href: z.ZodOptional<z.ZodString>;
72785
+ redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
72786
+ structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
72674
72787
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
72675
72788
  href: z.ZodOptional<z.ZodString>;
72789
+ redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
72790
+ structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
72676
72791
  }, z.ZodTypeAny, "passthrough">>;
72677
72792
  }, z.UnknownKeysParam, z.ZodTypeAny, {
72678
72793
  version: {
@@ -72772,6 +72887,8 @@ export declare const RouteContextResponseSchema: z.ZodDiscriminatedUnion<"artifa
72772
72887
  artifactType: "redirect";
72773
72888
  artifactMetadata: {
72774
72889
  href?: string | undefined;
72890
+ redirectKind?: "link" | "structural" | undefined;
72891
+ structuralKind?: "version" | "root" | "product" | "variant" | "tab" | "section" | "api-section" | undefined;
72775
72892
  } & {
72776
72893
  [k: string]: unknown;
72777
72894
  };
@@ -72875,6 +72992,8 @@ export declare const RouteContextResponseSchema: z.ZodDiscriminatedUnion<"artifa
72875
72992
  artifactType: "redirect";
72876
72993
  artifactMetadata: {
72877
72994
  href?: string | undefined;
72995
+ redirectKind?: "link" | "structural" | undefined;
72996
+ structuralKind?: "version" | "root" | "product" | "variant" | "tab" | "section" | "api-section" | undefined;
72878
72997
  } & {
72879
72998
  [k: string]: unknown;
72880
72999
  };
@@ -77402,12 +77521,15 @@ export declare const docsLedgerReadContract: {
77402
77521
  remote: z.ZodOptional<z.ZodArray<z.ZodObject<{
77403
77522
  url: z.ZodString;
77404
77523
  strategy: z.ZodOptional<z.ZodEnum<["beforeInteractive", "afterInteractive", "lazyOnload"]>>;
77524
+ disableSri: z.ZodOptional<z.ZodBoolean>;
77405
77525
  }, "strip", z.ZodTypeAny, {
77406
77526
  url: string;
77407
77527
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
77528
+ disableSri?: boolean | undefined;
77408
77529
  }, {
77409
77530
  url: string;
77410
77531
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
77532
+ disableSri?: boolean | undefined;
77411
77533
  }>, "many">>;
77412
77534
  files: z.ZodOptional<z.ZodArray<z.ZodObject<{
77413
77535
  path: z.ZodString;
@@ -77425,6 +77547,7 @@ export declare const docsLedgerReadContract: {
77425
77547
  remote?: {
77426
77548
  url: string;
77427
77549
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
77550
+ disableSri?: boolean | undefined;
77428
77551
  }[] | undefined;
77429
77552
  files?: {
77430
77553
  path: string;
@@ -77435,6 +77558,7 @@ export declare const docsLedgerReadContract: {
77435
77558
  remote?: {
77436
77559
  url: string;
77437
77560
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
77561
+ disableSri?: boolean | undefined;
77438
77562
  }[] | undefined;
77439
77563
  files?: {
77440
77564
  path: string;
@@ -77556,6 +77680,7 @@ export declare const docsLedgerReadContract: {
77556
77680
  remote?: {
77557
77681
  url: string;
77558
77682
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
77683
+ disableSri?: boolean | undefined;
77559
77684
  }[] | undefined;
77560
77685
  files?: {
77561
77686
  path: string;
@@ -78472,6 +78597,7 @@ export declare const docsLedgerReadContract: {
78472
78597
  remote?: {
78473
78598
  url: string;
78474
78599
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
78600
+ disableSri?: boolean | undefined;
78475
78601
  }[] | undefined;
78476
78602
  files?: {
78477
78603
  path: string;
@@ -80675,6 +80801,7 @@ export declare const docsLedgerReadContract: {
80675
80801
  remote?: {
80676
80802
  url: string;
80677
80803
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
80804
+ disableSri?: boolean | undefined;
80678
80805
  }[] | undefined;
80679
80806
  files?: {
80680
80807
  path: string;
@@ -81854,6 +81981,7 @@ export declare const docsLedgerReadContract: {
81854
81981
  remote?: {
81855
81982
  url: string;
81856
81983
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
81984
+ disableSri?: boolean | undefined;
81857
81985
  }[] | undefined;
81858
81986
  files?: {
81859
81987
  path: string;
@@ -84305,16 +84433,24 @@ export declare const docsLedgerReadContract: {
84305
84433
  type: z.ZodLiteral<"redirect">;
84306
84434
  metadata: z.ZodObject<{
84307
84435
  href: z.ZodOptional<z.ZodString>;
84436
+ redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
84437
+ structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
84308
84438
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
84309
84439
  href: z.ZodOptional<z.ZodString>;
84440
+ redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
84441
+ structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
84310
84442
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
84311
84443
  href: z.ZodOptional<z.ZodString>;
84444
+ redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
84445
+ structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
84312
84446
  }, z.ZodTypeAny, "passthrough">>;
84313
84447
  }, z.UnknownKeysParam, z.ZodTypeAny, {
84314
84448
  type: "redirect";
84315
84449
  hidden: boolean;
84316
84450
  metadata: {
84317
84451
  href?: string | undefined;
84452
+ redirectKind?: "link" | "structural" | undefined;
84453
+ structuralKind?: "version" | "root" | "product" | "variant" | "tab" | "section" | "api-section" | undefined;
84318
84454
  } & {
84319
84455
  [k: string]: unknown;
84320
84456
  };
@@ -84326,6 +84462,8 @@ export declare const docsLedgerReadContract: {
84326
84462
  hidden: boolean;
84327
84463
  metadata: {
84328
84464
  href?: string | undefined;
84465
+ redirectKind?: "link" | "structural" | undefined;
84466
+ structuralKind?: "version" | "root" | "product" | "variant" | "tab" | "section" | "api-section" | undefined;
84329
84467
  } & {
84330
84468
  [k: string]: unknown;
84331
84469
  };
@@ -84585,6 +84723,8 @@ export declare const docsLedgerReadContract: {
84585
84723
  hidden: boolean;
84586
84724
  metadata: {
84587
84725
  href?: string | undefined;
84726
+ redirectKind?: "link" | "structural" | undefined;
84727
+ structuralKind?: "version" | "root" | "product" | "variant" | "tab" | "section" | "api-section" | undefined;
84588
84728
  } & {
84589
84729
  [k: string]: unknown;
84590
84730
  };
@@ -84844,6 +84984,8 @@ export declare const docsLedgerReadContract: {
84844
84984
  hidden: boolean;
84845
84985
  metadata: {
84846
84986
  href?: string | undefined;
84987
+ redirectKind?: "link" | "structural" | undefined;
84988
+ structuralKind?: "version" | "root" | "product" | "variant" | "tab" | "section" | "api-section" | undefined;
84847
84989
  } & {
84848
84990
  [k: string]: unknown;
84849
84991
  };
@@ -92490,10 +92632,16 @@ export declare const docsLedgerReadContract: {
92490
92632
  artifactType: z.ZodLiteral<"redirect">;
92491
92633
  artifactMetadata: z.ZodObject<{
92492
92634
  href: z.ZodOptional<z.ZodString>;
92635
+ redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
92636
+ structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
92493
92637
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
92494
92638
  href: z.ZodOptional<z.ZodString>;
92639
+ redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
92640
+ structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
92495
92641
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
92496
92642
  href: z.ZodOptional<z.ZodString>;
92643
+ redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
92644
+ structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
92497
92645
  }, z.ZodTypeAny, "passthrough">>;
92498
92646
  }, z.UnknownKeysParam, z.ZodTypeAny, {
92499
92647
  version: {
@@ -92593,6 +92741,8 @@ export declare const docsLedgerReadContract: {
92593
92741
  artifactType: "redirect";
92594
92742
  artifactMetadata: {
92595
92743
  href?: string | undefined;
92744
+ redirectKind?: "link" | "structural" | undefined;
92745
+ structuralKind?: "version" | "root" | "product" | "variant" | "tab" | "section" | "api-section" | undefined;
92596
92746
  } & {
92597
92747
  [k: string]: unknown;
92598
92748
  };
@@ -92696,6 +92846,8 @@ export declare const docsLedgerReadContract: {
92696
92846
  artifactType: "redirect";
92697
92847
  artifactMetadata: {
92698
92848
  href?: string | undefined;
92849
+ redirectKind?: "link" | "structural" | undefined;
92850
+ structuralKind?: "version" | "root" | "product" | "variant" | "tab" | "section" | "api-section" | undefined;
92699
92851
  } & {
92700
92852
  [k: string]: unknown;
92701
92853
  };