@fern-api/fdr-sdk 1.2.66-c0946d299a → 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 +21 -4
  6. package/dist/js/client/FdrClient.js.map +1 -1
  7. package/dist/js/client/FdrClient.mjs +21 -4
  8. package/dist/js/client/FdrClient.mjs.map +1 -1
  9. package/dist/js/client/types.js +6 -2
  10. package/dist/js/client/types.js.map +1 -1
  11. package/dist/js/client/types.mjs +6 -2
  12. package/dist/js/client/types.mjs.map +1 -1
  13. package/dist/js/converters/index.js +13 -5
  14. package/dist/js/converters/index.js.map +1 -1
  15. package/dist/js/converters/index.mjs +13 -5
  16. package/dist/js/converters/index.mjs.map +1 -1
  17. package/dist/js/docs/index.js +6 -2
  18. package/dist/js/docs/index.js.map +1 -1
  19. package/dist/js/docs/index.mjs +6 -2
  20. package/dist/js/docs/index.mjs.map +1 -1
  21. package/dist/js/index.js +28 -7
  22. package/dist/js/index.js.map +1 -1
  23. package/dist/js/index.mjs +28 -7
  24. package/dist/js/index.mjs.map +1 -1
  25. package/dist/js/navigation/index.js +13 -5
  26. package/dist/js/navigation/index.js.map +1 -1
  27. package/dist/js/navigation/index.mjs +13 -5
  28. package/dist/js/navigation/index.mjs.map +1 -1
  29. package/dist/js/orpc-client.js +38 -4
  30. package/dist/js/orpc-client.js.map +1 -1
  31. package/dist/js/orpc-client.mjs +35 -4
  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 +108 -0
  36. package/dist/types/client/docs-types/db.d.ts.map +1 -1
  37. package/dist/types/client/docs-types/read.d.ts +48 -0
  38. package/dist/types/client/docs-types/read.d.ts.map +1 -1
  39. package/dist/types/client/docs-types/shared.d.ts +11 -0
  40. package/dist/types/client/docs-types/shared.d.ts.map +1 -1
  41. package/dist/types/client/docs-types/write.d.ts +28 -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 +32 -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 +8 -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 +72 -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 +16 -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 +208 -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 +12037 -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;
@@ -3922,6 +3927,7 @@ export declare const LedgerConfigSchema: z.ZodObject<{
3922
3927
  url: string;
3923
3928
  title?: string | undefined;
3924
3929
  }[] | undefined;
3930
+ maskPii?: boolean | undefined;
3925
3931
  }, z.ZodTypeDef, {
3926
3932
  model?: "claude-3.5" | "claude-3.7" | "claude-4" | "command-a" | undefined;
3927
3933
  systemPrompt?: string | undefined;
@@ -3930,6 +3936,7 @@ export declare const LedgerConfigSchema: z.ZodObject<{
3930
3936
  url: string;
3931
3937
  title?: string | undefined;
3932
3938
  }[] | undefined;
3939
+ maskPii?: boolean | undefined;
3933
3940
  }>>;
3934
3941
  pageActions: z.ZodOptional<z.ZodType<{
3935
3942
  options?: {
@@ -4027,6 +4034,7 @@ export declare const LedgerConfigSchema: z.ZodObject<{
4027
4034
  remote?: {
4028
4035
  url: string;
4029
4036
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
4037
+ disableSri?: boolean | undefined;
4030
4038
  }[] | undefined;
4031
4039
  files?: {
4032
4040
  path: string;
@@ -4894,6 +4902,7 @@ export declare const LedgerConfigSchema: z.ZodObject<{
4894
4902
  url: string;
4895
4903
  title?: string | undefined;
4896
4904
  }[] | undefined;
4905
+ maskPii?: boolean | undefined;
4897
4906
  } | undefined;
4898
4907
  pageActions?: {
4899
4908
  options?: {
@@ -4942,6 +4951,7 @@ export declare const LedgerConfigSchema: z.ZodObject<{
4942
4951
  remote?: {
4943
4952
  url: string;
4944
4953
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
4954
+ disableSri?: boolean | undefined;
4945
4955
  }[] | undefined;
4946
4956
  files?: {
4947
4957
  path: string;
@@ -5809,6 +5819,7 @@ export declare const LedgerConfigSchema: z.ZodObject<{
5809
5819
  url: string;
5810
5820
  title?: string | undefined;
5811
5821
  }[] | undefined;
5822
+ maskPii?: boolean | undefined;
5812
5823
  } | undefined;
5813
5824
  pageActions?: {
5814
5825
  options?: {
@@ -6783,12 +6794,20 @@ export declare const LedgerFileArtifactMetadataSchema: z.ZodObject<{
6783
6794
  height: z.ZodOptional<z.ZodNumber>;
6784
6795
  blurDataURL: z.ZodOptional<z.ZodString>;
6785
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"]>;
6786
6799
  export declare const LedgerRedirectMetadataSchema: z.ZodObject<{
6787
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"]>>;
6788
6803
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
6789
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"]>>;
6790
6807
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
6791
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"]>>;
6792
6811
  }, z.ZodTypeAny, "passthrough">>;
6793
6812
  export declare const LedgerArtifactMetadataSchema: z.ZodUnion<[z.ZodObject<{
6794
6813
  pageId: z.ZodOptional<z.ZodString>;
@@ -7335,10 +7354,16 @@ export declare const LedgerArtifactMetadataSchema: z.ZodUnion<[z.ZodObject<{
7335
7354
  blurDataURL: z.ZodOptional<z.ZodString>;
7336
7355
  }, z.ZodTypeAny, "passthrough">>, z.ZodObject<{
7337
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"]>>;
7338
7359
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
7339
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"]>>;
7340
7363
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
7341
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"]>>;
7342
7367
  }, z.ZodTypeAny, "passthrough">>]>;
7343
7368
  export type LedgerArtifactMetadata = z.infer<typeof LedgerArtifactMetadataSchema>;
7344
7369
  /**
@@ -7994,10 +8019,16 @@ export declare const LEDGER_ARTIFACT_METADATA_SCHEMAS: {
7994
8019
  }, z.ZodTypeAny, "passthrough">>;
7995
8020
  readonly redirect: z.ZodObject<{
7996
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"]>>;
7997
8024
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
7998
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"]>>;
7999
8028
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
8000
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"]>>;
8001
8032
  }, z.ZodTypeAny, "passthrough">>;
8002
8033
  };
8003
8034
  /**
@@ -9233,16 +9264,24 @@ export declare const LedgerNavRouteSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
9233
9264
  type: z.ZodLiteral<"redirect">;
9234
9265
  metadata: z.ZodObject<{
9235
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"]>>;
9236
9269
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
9237
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"]>>;
9238
9273
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
9239
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"]>>;
9240
9277
  }, z.ZodTypeAny, "passthrough">>;
9241
9278
  }, z.UnknownKeysParam, z.ZodTypeAny, {
9242
9279
  type: "redirect";
9243
9280
  hidden: boolean;
9244
9281
  metadata: {
9245
9282
  href?: string | undefined;
9283
+ redirectKind?: "link" | "structural" | undefined;
9284
+ structuralKind?: "version" | "root" | "product" | "variant" | "tab" | "section" | "api-section" | undefined;
9246
9285
  } & {
9247
9286
  [k: string]: unknown;
9248
9287
  };
@@ -9254,6 +9293,8 @@ export declare const LedgerNavRouteSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
9254
9293
  hidden: boolean;
9255
9294
  metadata: {
9256
9295
  href?: string | undefined;
9296
+ redirectKind?: "link" | "structural" | undefined;
9297
+ structuralKind?: "version" | "root" | "product" | "variant" | "tab" | "section" | "api-section" | undefined;
9257
9298
  } & {
9258
9299
  [k: string]: unknown;
9259
9300
  };
@@ -12994,12 +13035,15 @@ export declare const DocsContentFieldsSchema: z.ZodObject<{
12994
13035
  remote: z.ZodOptional<z.ZodArray<z.ZodObject<{
12995
13036
  url: z.ZodString;
12996
13037
  strategy: z.ZodOptional<z.ZodEnum<["beforeInteractive", "afterInteractive", "lazyOnload"]>>;
13038
+ disableSri: z.ZodOptional<z.ZodBoolean>;
12997
13039
  }, "strip", z.ZodTypeAny, {
12998
13040
  url: string;
12999
13041
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
13042
+ disableSri?: boolean | undefined;
13000
13043
  }, {
13001
13044
  url: string;
13002
13045
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
13046
+ disableSri?: boolean | undefined;
13003
13047
  }>, "many">>;
13004
13048
  files: z.ZodOptional<z.ZodArray<z.ZodObject<{
13005
13049
  path: z.ZodString;
@@ -13017,6 +13061,7 @@ export declare const DocsContentFieldsSchema: z.ZodObject<{
13017
13061
  remote?: {
13018
13062
  url: string;
13019
13063
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
13064
+ disableSri?: boolean | undefined;
13020
13065
  }[] | undefined;
13021
13066
  files?: {
13022
13067
  path: string;
@@ -13027,6 +13072,7 @@ export declare const DocsContentFieldsSchema: z.ZodObject<{
13027
13072
  remote?: {
13028
13073
  url: string;
13029
13074
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
13075
+ disableSri?: boolean | undefined;
13030
13076
  }[] | undefined;
13031
13077
  files?: {
13032
13078
  path: string;
@@ -13041,6 +13087,7 @@ export declare const DocsContentFieldsSchema: z.ZodObject<{
13041
13087
  url: string;
13042
13088
  title?: string | undefined;
13043
13089
  }[] | undefined;
13090
+ maskPii?: boolean | undefined;
13044
13091
  }, z.ZodTypeDef, {
13045
13092
  model?: "claude-3.5" | "claude-3.7" | "claude-4" | "command-a" | undefined;
13046
13093
  systemPrompt?: string | undefined;
@@ -13049,6 +13096,7 @@ export declare const DocsContentFieldsSchema: z.ZodObject<{
13049
13096
  url: string;
13050
13097
  title?: string | undefined;
13051
13098
  }[] | undefined;
13099
+ maskPii?: boolean | undefined;
13052
13100
  }>>;
13053
13101
  pageActions: z.ZodOptional<z.ZodType<{
13054
13102
  options?: {
@@ -13146,6 +13194,7 @@ export declare const DocsContentFieldsSchema: z.ZodObject<{
13146
13194
  remote?: {
13147
13195
  url: string;
13148
13196
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
13197
+ disableSri?: boolean | undefined;
13149
13198
  }[] | undefined;
13150
13199
  files?: {
13151
13200
  path: string;
@@ -14013,6 +14062,7 @@ export declare const DocsContentFieldsSchema: z.ZodObject<{
14013
14062
  url: string;
14014
14063
  title?: string | undefined;
14015
14064
  }[] | undefined;
14065
+ maskPii?: boolean | undefined;
14016
14066
  } | undefined;
14017
14067
  pageActions?: {
14018
14068
  options?: {
@@ -14061,6 +14111,7 @@ export declare const DocsContentFieldsSchema: z.ZodObject<{
14061
14111
  remote?: {
14062
14112
  url: string;
14063
14113
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
14114
+ disableSri?: boolean | undefined;
14064
14115
  }[] | undefined;
14065
14116
  files?: {
14066
14117
  path: string;
@@ -14928,6 +14979,7 @@ export declare const DocsContentFieldsSchema: z.ZodObject<{
14928
14979
  url: string;
14929
14980
  title?: string | undefined;
14930
14981
  }[] | undefined;
14982
+ maskPii?: boolean | undefined;
14931
14983
  } | undefined;
14932
14984
  pageActions?: {
14933
14985
  options?: {
@@ -15075,6 +15127,7 @@ export declare const DocsContentFieldsSchema: z.ZodObject<{
15075
15127
  remote?: {
15076
15128
  url: string;
15077
15129
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
15130
+ disableSri?: boolean | undefined;
15078
15131
  }[] | undefined;
15079
15132
  files?: {
15080
15133
  path: string;
@@ -15942,6 +15995,7 @@ export declare const DocsContentFieldsSchema: z.ZodObject<{
15942
15995
  url: string;
15943
15996
  title?: string | undefined;
15944
15997
  }[] | undefined;
15998
+ maskPii?: boolean | undefined;
15945
15999
  } | undefined;
15946
16000
  pageActions?: {
15947
16001
  options?: {
@@ -16030,6 +16084,7 @@ export declare const DocsContentFieldsSchema: z.ZodObject<{
16030
16084
  remote?: {
16031
16085
  url: string;
16032
16086
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
16087
+ disableSri?: boolean | undefined;
16033
16088
  }[] | undefined;
16034
16089
  files?: {
16035
16090
  path: string;
@@ -16897,6 +16952,7 @@ export declare const DocsContentFieldsSchema: z.ZodObject<{
16897
16952
  url: string;
16898
16953
  title?: string | undefined;
16899
16954
  }[] | undefined;
16955
+ maskPii?: boolean | undefined;
16900
16956
  } | undefined;
16901
16957
  pageActions?: {
16902
16958
  options?: {
@@ -20672,12 +20728,15 @@ declare const LocaleEntrySchemaInternal: z.ZodObject<{
20672
20728
  remote: z.ZodOptional<z.ZodArray<z.ZodObject<{
20673
20729
  url: z.ZodString;
20674
20730
  strategy: z.ZodOptional<z.ZodEnum<["beforeInteractive", "afterInteractive", "lazyOnload"]>>;
20731
+ disableSri: z.ZodOptional<z.ZodBoolean>;
20675
20732
  }, "strip", z.ZodTypeAny, {
20676
20733
  url: string;
20677
20734
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
20735
+ disableSri?: boolean | undefined;
20678
20736
  }, {
20679
20737
  url: string;
20680
20738
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
20739
+ disableSri?: boolean | undefined;
20681
20740
  }>, "many">>;
20682
20741
  files: z.ZodOptional<z.ZodArray<z.ZodObject<{
20683
20742
  path: z.ZodString;
@@ -20695,6 +20754,7 @@ declare const LocaleEntrySchemaInternal: z.ZodObject<{
20695
20754
  remote?: {
20696
20755
  url: string;
20697
20756
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
20757
+ disableSri?: boolean | undefined;
20698
20758
  }[] | undefined;
20699
20759
  files?: {
20700
20760
  path: string;
@@ -20705,6 +20765,7 @@ declare const LocaleEntrySchemaInternal: z.ZodObject<{
20705
20765
  remote?: {
20706
20766
  url: string;
20707
20767
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
20768
+ disableSri?: boolean | undefined;
20708
20769
  }[] | undefined;
20709
20770
  files?: {
20710
20771
  path: string;
@@ -20719,6 +20780,7 @@ declare const LocaleEntrySchemaInternal: z.ZodObject<{
20719
20780
  url: string;
20720
20781
  title?: string | undefined;
20721
20782
  }[] | undefined;
20783
+ maskPii?: boolean | undefined;
20722
20784
  }, z.ZodTypeDef, {
20723
20785
  model?: "claude-3.5" | "claude-3.7" | "claude-4" | "command-a" | undefined;
20724
20786
  systemPrompt?: string | undefined;
@@ -20727,6 +20789,7 @@ declare const LocaleEntrySchemaInternal: z.ZodObject<{
20727
20789
  url: string;
20728
20790
  title?: string | undefined;
20729
20791
  }[] | undefined;
20792
+ maskPii?: boolean | undefined;
20730
20793
  }>>;
20731
20794
  pageActions: z.ZodOptional<z.ZodType<{
20732
20795
  options?: {
@@ -20824,6 +20887,7 @@ declare const LocaleEntrySchemaInternal: z.ZodObject<{
20824
20887
  remote?: {
20825
20888
  url: string;
20826
20889
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
20890
+ disableSri?: boolean | undefined;
20827
20891
  }[] | undefined;
20828
20892
  files?: {
20829
20893
  path: string;
@@ -21691,6 +21755,7 @@ declare const LocaleEntrySchemaInternal: z.ZodObject<{
21691
21755
  url: string;
21692
21756
  title?: string | undefined;
21693
21757
  }[] | undefined;
21758
+ maskPii?: boolean | undefined;
21694
21759
  } | undefined;
21695
21760
  pageActions?: {
21696
21761
  options?: {
@@ -21739,6 +21804,7 @@ declare const LocaleEntrySchemaInternal: z.ZodObject<{
21739
21804
  remote?: {
21740
21805
  url: string;
21741
21806
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
21807
+ disableSri?: boolean | undefined;
21742
21808
  }[] | undefined;
21743
21809
  files?: {
21744
21810
  path: string;
@@ -22606,6 +22672,7 @@ declare const LocaleEntrySchemaInternal: z.ZodObject<{
22606
22672
  url: string;
22607
22673
  title?: string | undefined;
22608
22674
  }[] | undefined;
22675
+ maskPii?: boolean | undefined;
22609
22676
  } | undefined;
22610
22677
  pageActions?: {
22611
22678
  options?: {
@@ -22744,6 +22811,7 @@ declare const LocaleEntrySchemaInternal: z.ZodObject<{
22744
22811
  remote?: {
22745
22812
  url: string;
22746
22813
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
22814
+ disableSri?: boolean | undefined;
22747
22815
  }[] | undefined;
22748
22816
  files?: {
22749
22817
  path: string;
@@ -23611,6 +23679,7 @@ declare const LocaleEntrySchemaInternal: z.ZodObject<{
23611
23679
  url: string;
23612
23680
  title?: string | undefined;
23613
23681
  }[] | undefined;
23682
+ maskPii?: boolean | undefined;
23614
23683
  } | undefined;
23615
23684
  pageActions?: {
23616
23685
  options?: {
@@ -23700,6 +23769,7 @@ declare const LocaleEntrySchemaInternal: z.ZodObject<{
23700
23769
  remote?: {
23701
23770
  url: string;
23702
23771
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
23772
+ disableSri?: boolean | undefined;
23703
23773
  }[] | undefined;
23704
23774
  files?: {
23705
23775
  path: string;
@@ -24567,6 +24637,7 @@ declare const LocaleEntrySchemaInternal: z.ZodObject<{
24567
24637
  url: string;
24568
24638
  title?: string | undefined;
24569
24639
  }[] | undefined;
24640
+ maskPii?: boolean | undefined;
24570
24641
  } | undefined;
24571
24642
  pageActions?: {
24572
24643
  options?: {
@@ -24692,6 +24763,7 @@ declare const DocsPublishInputSchemaInternal: z.ZodEffects<z.ZodObject<{
24692
24763
  remote?: {
24693
24764
  url: string;
24694
24765
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
24766
+ disableSri?: boolean | undefined;
24695
24767
  }[] | undefined;
24696
24768
  files?: {
24697
24769
  path: string;
@@ -25559,6 +25631,7 @@ declare const DocsPublishInputSchemaInternal: z.ZodEffects<z.ZodObject<{
25559
25631
  url: string;
25560
25632
  title?: string | undefined;
25561
25633
  }[] | undefined;
25634
+ maskPii?: boolean | undefined;
25562
25635
  } | undefined;
25563
25636
  pageActions?: {
25564
25637
  options?: {
@@ -25648,6 +25721,7 @@ declare const DocsPublishInputSchemaInternal: z.ZodEffects<z.ZodObject<{
25648
25721
  remote?: {
25649
25722
  url: string;
25650
25723
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
25724
+ disableSri?: boolean | undefined;
25651
25725
  }[] | undefined;
25652
25726
  files?: {
25653
25727
  path: string;
@@ -26515,6 +26589,7 @@ declare const DocsPublishInputSchemaInternal: z.ZodEffects<z.ZodObject<{
26515
26589
  url: string;
26516
26590
  title?: string | undefined;
26517
26591
  }[] | undefined;
26592
+ maskPii?: boolean | undefined;
26518
26593
  } | undefined;
26519
26594
  pageActions?: {
26520
26595
  options?: {
@@ -26611,6 +26686,7 @@ declare const DocsPublishInputSchemaInternal: z.ZodEffects<z.ZodObject<{
26611
26686
  remote?: {
26612
26687
  url: string;
26613
26688
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
26689
+ disableSri?: boolean | undefined;
26614
26690
  }[] | undefined;
26615
26691
  files?: {
26616
26692
  path: string;
@@ -27478,6 +27554,7 @@ declare const DocsPublishInputSchemaInternal: z.ZodEffects<z.ZodObject<{
27478
27554
  url: string;
27479
27555
  title?: string | undefined;
27480
27556
  }[] | undefined;
27557
+ maskPii?: boolean | undefined;
27481
27558
  } | undefined;
27482
27559
  pageActions?: {
27483
27560
  options?: {
@@ -27573,6 +27650,7 @@ declare const DocsPublishInputSchemaInternal: z.ZodEffects<z.ZodObject<{
27573
27650
  remote?: {
27574
27651
  url: string;
27575
27652
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
27653
+ disableSri?: boolean | undefined;
27576
27654
  }[] | undefined;
27577
27655
  files?: {
27578
27656
  path: string;
@@ -28440,6 +28518,7 @@ declare const DocsPublishInputSchemaInternal: z.ZodEffects<z.ZodObject<{
28440
28518
  url: string;
28441
28519
  title?: string | undefined;
28442
28520
  }[] | undefined;
28521
+ maskPii?: boolean | undefined;
28443
28522
  } | undefined;
28444
28523
  pageActions?: {
28445
28524
  options?: {
@@ -28541,6 +28620,7 @@ declare const DocsPublishInputSchemaInternal: z.ZodEffects<z.ZodObject<{
28541
28620
  remote?: {
28542
28621
  url: string;
28543
28622
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
28623
+ disableSri?: boolean | undefined;
28544
28624
  }[] | undefined;
28545
28625
  files?: {
28546
28626
  path: string;
@@ -29408,6 +29488,7 @@ declare const DocsPublishInputSchemaInternal: z.ZodEffects<z.ZodObject<{
29408
29488
  url: string;
29409
29489
  title?: string | undefined;
29410
29490
  }[] | undefined;
29491
+ maskPii?: boolean | undefined;
29411
29492
  } | undefined;
29412
29493
  pageActions?: {
29413
29494
  options?: {
@@ -29503,6 +29584,7 @@ declare const DocsPublishInputSchemaInternal: z.ZodEffects<z.ZodObject<{
29503
29584
  remote?: {
29504
29585
  url: string;
29505
29586
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
29587
+ disableSri?: boolean | undefined;
29506
29588
  }[] | undefined;
29507
29589
  files?: {
29508
29590
  path: string;
@@ -30370,6 +30452,7 @@ declare const DocsPublishInputSchemaInternal: z.ZodEffects<z.ZodObject<{
30370
30452
  url: string;
30371
30453
  title?: string | undefined;
30372
30454
  }[] | undefined;
30455
+ maskPii?: boolean | undefined;
30373
30456
  } | undefined;
30374
30457
  pageActions?: {
30375
30458
  options?: {
@@ -34157,12 +34240,15 @@ declare const LedgerPreviewRegisterInputSchemaInternal: z.ZodEffects<z.ZodObject
34157
34240
  remote: z.ZodOptional<z.ZodArray<z.ZodObject<{
34158
34241
  url: z.ZodString;
34159
34242
  strategy: z.ZodOptional<z.ZodEnum<["beforeInteractive", "afterInteractive", "lazyOnload"]>>;
34243
+ disableSri: z.ZodOptional<z.ZodBoolean>;
34160
34244
  }, "strip", z.ZodTypeAny, {
34161
34245
  url: string;
34162
34246
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
34247
+ disableSri?: boolean | undefined;
34163
34248
  }, {
34164
34249
  url: string;
34165
34250
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
34251
+ disableSri?: boolean | undefined;
34166
34252
  }>, "many">>;
34167
34253
  files: z.ZodOptional<z.ZodArray<z.ZodObject<{
34168
34254
  path: z.ZodString;
@@ -34180,6 +34266,7 @@ declare const LedgerPreviewRegisterInputSchemaInternal: z.ZodEffects<z.ZodObject
34180
34266
  remote?: {
34181
34267
  url: string;
34182
34268
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
34269
+ disableSri?: boolean | undefined;
34183
34270
  }[] | undefined;
34184
34271
  files?: {
34185
34272
  path: string;
@@ -34190,6 +34277,7 @@ declare const LedgerPreviewRegisterInputSchemaInternal: z.ZodEffects<z.ZodObject
34190
34277
  remote?: {
34191
34278
  url: string;
34192
34279
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
34280
+ disableSri?: boolean | undefined;
34193
34281
  }[] | undefined;
34194
34282
  files?: {
34195
34283
  path: string;
@@ -34204,6 +34292,7 @@ declare const LedgerPreviewRegisterInputSchemaInternal: z.ZodEffects<z.ZodObject
34204
34292
  url: string;
34205
34293
  title?: string | undefined;
34206
34294
  }[] | undefined;
34295
+ maskPii?: boolean | undefined;
34207
34296
  }, z.ZodTypeDef, {
34208
34297
  model?: "claude-3.5" | "claude-3.7" | "claude-4" | "command-a" | undefined;
34209
34298
  systemPrompt?: string | undefined;
@@ -34212,6 +34301,7 @@ declare const LedgerPreviewRegisterInputSchemaInternal: z.ZodEffects<z.ZodObject
34212
34301
  url: string;
34213
34302
  title?: string | undefined;
34214
34303
  }[] | undefined;
34304
+ maskPii?: boolean | undefined;
34215
34305
  }>>;
34216
34306
  pageActions: z.ZodOptional<z.ZodType<{
34217
34307
  options?: {
@@ -34309,6 +34399,7 @@ declare const LedgerPreviewRegisterInputSchemaInternal: z.ZodEffects<z.ZodObject
34309
34399
  remote?: {
34310
34400
  url: string;
34311
34401
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
34402
+ disableSri?: boolean | undefined;
34312
34403
  }[] | undefined;
34313
34404
  files?: {
34314
34405
  path: string;
@@ -35176,6 +35267,7 @@ declare const LedgerPreviewRegisterInputSchemaInternal: z.ZodEffects<z.ZodObject
35176
35267
  url: string;
35177
35268
  title?: string | undefined;
35178
35269
  }[] | undefined;
35270
+ maskPii?: boolean | undefined;
35179
35271
  } | undefined;
35180
35272
  pageActions?: {
35181
35273
  options?: {
@@ -35224,6 +35316,7 @@ declare const LedgerPreviewRegisterInputSchemaInternal: z.ZodEffects<z.ZodObject
35224
35316
  remote?: {
35225
35317
  url: string;
35226
35318
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
35319
+ disableSri?: boolean | undefined;
35227
35320
  }[] | undefined;
35228
35321
  files?: {
35229
35322
  path: string;
@@ -36091,6 +36184,7 @@ declare const LedgerPreviewRegisterInputSchemaInternal: z.ZodEffects<z.ZodObject
36091
36184
  url: string;
36092
36185
  title?: string | undefined;
36093
36186
  }[] | undefined;
36187
+ maskPii?: boolean | undefined;
36094
36188
  } | undefined;
36095
36189
  pageActions?: {
36096
36190
  options?: {
@@ -36250,6 +36344,7 @@ declare const LedgerPreviewRegisterInputSchemaInternal: z.ZodEffects<z.ZodObject
36250
36344
  remote?: {
36251
36345
  url: string;
36252
36346
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
36347
+ disableSri?: boolean | undefined;
36253
36348
  }[] | undefined;
36254
36349
  files?: {
36255
36350
  path: string;
@@ -37117,6 +37212,7 @@ declare const LedgerPreviewRegisterInputSchemaInternal: z.ZodEffects<z.ZodObject
37117
37212
  url: string;
37118
37213
  title?: string | undefined;
37119
37214
  }[] | undefined;
37215
+ maskPii?: boolean | undefined;
37120
37216
  } | undefined;
37121
37217
  pageActions?: {
37122
37218
  options?: {
@@ -37206,6 +37302,7 @@ declare const LedgerPreviewRegisterInputSchemaInternal: z.ZodEffects<z.ZodObject
37206
37302
  remote?: {
37207
37303
  url: string;
37208
37304
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
37305
+ disableSri?: boolean | undefined;
37209
37306
  }[] | undefined;
37210
37307
  files?: {
37211
37308
  path: string;
@@ -38073,6 +38170,7 @@ declare const LedgerPreviewRegisterInputSchemaInternal: z.ZodEffects<z.ZodObject
38073
38170
  url: string;
38074
38171
  title?: string | undefined;
38075
38172
  }[] | undefined;
38173
+ maskPii?: boolean | undefined;
38076
38174
  } | undefined;
38077
38175
  pageActions?: {
38078
38176
  options?: {
@@ -38159,6 +38257,7 @@ declare const LedgerPreviewRegisterInputSchemaInternal: z.ZodEffects<z.ZodObject
38159
38257
  remote?: {
38160
38258
  url: string;
38161
38259
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
38260
+ disableSri?: boolean | undefined;
38162
38261
  }[] | undefined;
38163
38262
  files?: {
38164
38263
  path: string;
@@ -39026,6 +39125,7 @@ declare const LedgerPreviewRegisterInputSchemaInternal: z.ZodEffects<z.ZodObject
39026
39125
  url: string;
39027
39126
  title?: string | undefined;
39028
39127
  }[] | undefined;
39128
+ maskPii?: boolean | undefined;
39029
39129
  } | undefined;
39030
39130
  pageActions?: {
39031
39131
  options?: {
@@ -39123,6 +39223,7 @@ declare const LedgerPreviewRegisterInputSchemaInternal: z.ZodEffects<z.ZodObject
39123
39223
  remote?: {
39124
39224
  url: string;
39125
39225
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
39226
+ disableSri?: boolean | undefined;
39126
39227
  }[] | undefined;
39127
39228
  files?: {
39128
39229
  path: string;
@@ -39990,6 +40091,7 @@ declare const LedgerPreviewRegisterInputSchemaInternal: z.ZodEffects<z.ZodObject
39990
40091
  url: string;
39991
40092
  title?: string | undefined;
39992
40093
  }[] | undefined;
40094
+ maskPii?: boolean | undefined;
39993
40095
  } | undefined;
39994
40096
  pageActions?: {
39995
40097
  options?: {
@@ -40075,6 +40177,7 @@ declare const LedgerPreviewRegisterInputSchemaInternal: z.ZodEffects<z.ZodObject
40075
40177
  remote?: {
40076
40178
  url: string;
40077
40179
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
40180
+ disableSri?: boolean | undefined;
40078
40181
  }[] | undefined;
40079
40182
  files?: {
40080
40183
  path: string;
@@ -40942,6 +41045,7 @@ declare const LedgerPreviewRegisterInputSchemaInternal: z.ZodEffects<z.ZodObject
40942
41045
  url: string;
40943
41046
  title?: string | undefined;
40944
41047
  }[] | undefined;
41048
+ maskPii?: boolean | undefined;
40945
41049
  } | undefined;
40946
41050
  pageActions?: {
40947
41051
  options?: {
@@ -41040,6 +41144,7 @@ declare const LedgerPreviewRegisterInputSchemaInternal: z.ZodEffects<z.ZodObject
41040
41144
  remote?: {
41041
41145
  url: string;
41042
41146
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
41147
+ disableSri?: boolean | undefined;
41043
41148
  }[] | undefined;
41044
41149
  files?: {
41045
41150
  path: string;
@@ -41907,6 +42012,7 @@ declare const LedgerPreviewRegisterInputSchemaInternal: z.ZodEffects<z.ZodObject
41907
42012
  url: string;
41908
42013
  title?: string | undefined;
41909
42014
  }[] | undefined;
42015
+ maskPii?: boolean | undefined;
41910
42016
  } | undefined;
41911
42017
  pageActions?: {
41912
42018
  options?: {
@@ -41993,6 +42099,7 @@ declare const LedgerPreviewRegisterInputSchemaInternal: z.ZodEffects<z.ZodObject
41993
42099
  remote?: {
41994
42100
  url: string;
41995
42101
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
42102
+ disableSri?: boolean | undefined;
41996
42103
  }[] | undefined;
41997
42104
  files?: {
41998
42105
  path: string;
@@ -42860,6 +42967,7 @@ declare const LedgerPreviewRegisterInputSchemaInternal: z.ZodEffects<z.ZodObject
42860
42967
  url: string;
42861
42968
  title?: string | undefined;
42862
42969
  }[] | undefined;
42970
+ maskPii?: boolean | undefined;
42863
42971
  } | undefined;
42864
42972
  pageActions?: {
42865
42973
  options?: {
@@ -42957,6 +43065,7 @@ declare const LedgerPreviewRegisterInputSchemaInternal: z.ZodEffects<z.ZodObject
42957
43065
  remote?: {
42958
43066
  url: string;
42959
43067
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
43068
+ disableSri?: boolean | undefined;
42960
43069
  }[] | undefined;
42961
43070
  files?: {
42962
43071
  path: string;
@@ -43824,6 +43933,7 @@ declare const LedgerPreviewRegisterInputSchemaInternal: z.ZodEffects<z.ZodObject
43824
43933
  url: string;
43825
43934
  title?: string | undefined;
43826
43935
  }[] | undefined;
43936
+ maskPii?: boolean | undefined;
43827
43937
  } | undefined;
43828
43938
  pageActions?: {
43829
43939
  options?: {
@@ -43909,6 +44019,7 @@ declare const LedgerPreviewRegisterInputSchemaInternal: z.ZodEffects<z.ZodObject
43909
44019
  remote?: {
43910
44020
  url: string;
43911
44021
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
44022
+ disableSri?: boolean | undefined;
43912
44023
  }[] | undefined;
43913
44024
  files?: {
43914
44025
  path: string;
@@ -44776,6 +44887,7 @@ declare const LedgerPreviewRegisterInputSchemaInternal: z.ZodEffects<z.ZodObject
44776
44887
  url: string;
44777
44888
  title?: string | undefined;
44778
44889
  }[] | undefined;
44890
+ maskPii?: boolean | undefined;
44779
44891
  } | undefined;
44780
44892
  pageActions?: {
44781
44893
  options?: {
@@ -44874,6 +44986,7 @@ declare const LedgerPreviewRegisterInputSchemaInternal: z.ZodEffects<z.ZodObject
44874
44986
  remote?: {
44875
44987
  url: string;
44876
44988
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
44989
+ disableSri?: boolean | undefined;
44877
44990
  }[] | undefined;
44878
44991
  files?: {
44879
44992
  path: string;
@@ -45741,6 +45854,7 @@ declare const LedgerPreviewRegisterInputSchemaInternal: z.ZodEffects<z.ZodObject
45741
45854
  url: string;
45742
45855
  title?: string | undefined;
45743
45856
  }[] | undefined;
45857
+ maskPii?: boolean | undefined;
45744
45858
  } | undefined;
45745
45859
  pageActions?: {
45746
45860
  options?: {
@@ -45893,6 +46007,7 @@ export declare const docsLedgerContract: {
45893
46007
  remote?: {
45894
46008
  url: string;
45895
46009
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
46010
+ disableSri?: boolean | undefined;
45896
46011
  }[] | undefined;
45897
46012
  files?: {
45898
46013
  path: string;
@@ -46760,6 +46875,7 @@ export declare const docsLedgerContract: {
46760
46875
  url: string;
46761
46876
  title?: string | undefined;
46762
46877
  }[] | undefined;
46878
+ maskPii?: boolean | undefined;
46763
46879
  } | undefined;
46764
46880
  pageActions?: {
46765
46881
  options?: {
@@ -46855,6 +46971,7 @@ export declare const docsLedgerContract: {
46855
46971
  remote?: {
46856
46972
  url: string;
46857
46973
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
46974
+ disableSri?: boolean | undefined;
46858
46975
  }[] | undefined;
46859
46976
  files?: {
46860
46977
  path: string;
@@ -47722,6 +47839,7 @@ export declare const docsLedgerContract: {
47722
47839
  url: string;
47723
47840
  title?: string | undefined;
47724
47841
  }[] | undefined;
47842
+ maskPii?: boolean | undefined;
47725
47843
  } | undefined;
47726
47844
  pageActions?: {
47727
47845
  options?: {
@@ -47838,6 +47956,7 @@ export declare const docsLedgerContract: {
47838
47956
  remote?: {
47839
47957
  url: string;
47840
47958
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
47959
+ disableSri?: boolean | undefined;
47841
47960
  }[] | undefined;
47842
47961
  files?: {
47843
47962
  path: string;
@@ -48705,6 +48824,7 @@ export declare const docsLedgerContract: {
48705
48824
  url: string;
48706
48825
  title?: string | undefined;
48707
48826
  }[] | undefined;
48827
+ maskPii?: boolean | undefined;
48708
48828
  } | undefined;
48709
48829
  pageActions?: {
48710
48830
  options?: {
@@ -48802,6 +48922,7 @@ export declare const docsLedgerContract: {
48802
48922
  remote?: {
48803
48923
  url: string;
48804
48924
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
48925
+ disableSri?: boolean | undefined;
48805
48926
  }[] | undefined;
48806
48927
  files?: {
48807
48928
  path: string;
@@ -49669,6 +49790,7 @@ export declare const docsLedgerContract: {
49669
49790
  url: string;
49670
49791
  title?: string | undefined;
49671
49792
  }[] | undefined;
49793
+ maskPii?: boolean | undefined;
49672
49794
  } | undefined;
49673
49795
  pageActions?: {
49674
49796
  options?: {
@@ -49754,6 +49876,7 @@ export declare const docsLedgerContract: {
49754
49876
  remote?: {
49755
49877
  url: string;
49756
49878
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
49879
+ disableSri?: boolean | undefined;
49757
49880
  }[] | undefined;
49758
49881
  files?: {
49759
49882
  path: string;
@@ -50621,6 +50744,7 @@ export declare const docsLedgerContract: {
50621
50744
  url: string;
50622
50745
  title?: string | undefined;
50623
50746
  }[] | undefined;
50747
+ maskPii?: boolean | undefined;
50624
50748
  } | undefined;
50625
50749
  pageActions?: {
50626
50750
  options?: {
@@ -50719,6 +50843,7 @@ export declare const docsLedgerContract: {
50719
50843
  remote?: {
50720
50844
  url: string;
50721
50845
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
50846
+ disableSri?: boolean | undefined;
50722
50847
  }[] | undefined;
50723
50848
  files?: {
50724
50849
  path: string;
@@ -51586,6 +51711,7 @@ export declare const docsLedgerContract: {
51586
51711
  url: string;
51587
51712
  title?: string | undefined;
51588
51713
  }[] | undefined;
51714
+ maskPii?: boolean | undefined;
51589
51715
  } | undefined;
51590
51716
  pageActions?: {
51591
51717
  options?: {
@@ -51723,6 +51849,7 @@ export declare const docsLedgerContract: {
51723
51849
  remote?: {
51724
51850
  url: string;
51725
51851
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
51852
+ disableSri?: boolean | undefined;
51726
51853
  }[] | undefined;
51727
51854
  files?: {
51728
51855
  path: string;
@@ -52590,6 +52717,7 @@ export declare const docsLedgerContract: {
52590
52717
  url: string;
52591
52718
  title?: string | undefined;
52592
52719
  }[] | undefined;
52720
+ maskPii?: boolean | undefined;
52593
52721
  } | undefined;
52594
52722
  pageActions?: {
52595
52723
  options?: {
@@ -52685,6 +52813,7 @@ export declare const docsLedgerContract: {
52685
52813
  remote?: {
52686
52814
  url: string;
52687
52815
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
52816
+ disableSri?: boolean | undefined;
52688
52817
  }[] | undefined;
52689
52818
  files?: {
52690
52819
  path: string;
@@ -53552,6 +53681,7 @@ export declare const docsLedgerContract: {
53552
53681
  url: string;
53553
53682
  title?: string | undefined;
53554
53683
  }[] | undefined;
53684
+ maskPii?: boolean | undefined;
53555
53685
  } | undefined;
53556
53686
  pageActions?: {
53557
53687
  options?: {
@@ -57514,12 +57644,15 @@ export declare const VersionMetadataResponseSchema: z.ZodObject<{
57514
57644
  remote: z.ZodOptional<z.ZodArray<z.ZodObject<{
57515
57645
  url: z.ZodString;
57516
57646
  strategy: z.ZodOptional<z.ZodEnum<["beforeInteractive", "afterInteractive", "lazyOnload"]>>;
57647
+ disableSri: z.ZodOptional<z.ZodBoolean>;
57517
57648
  }, "strip", z.ZodTypeAny, {
57518
57649
  url: string;
57519
57650
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
57651
+ disableSri?: boolean | undefined;
57520
57652
  }, {
57521
57653
  url: string;
57522
57654
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
57655
+ disableSri?: boolean | undefined;
57523
57656
  }>, "many">>;
57524
57657
  files: z.ZodOptional<z.ZodArray<z.ZodObject<{
57525
57658
  path: z.ZodString;
@@ -57537,6 +57670,7 @@ export declare const VersionMetadataResponseSchema: z.ZodObject<{
57537
57670
  remote?: {
57538
57671
  url: string;
57539
57672
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
57673
+ disableSri?: boolean | undefined;
57540
57674
  }[] | undefined;
57541
57675
  files?: {
57542
57676
  path: string;
@@ -57547,6 +57681,7 @@ export declare const VersionMetadataResponseSchema: z.ZodObject<{
57547
57681
  remote?: {
57548
57682
  url: string;
57549
57683
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
57684
+ disableSri?: boolean | undefined;
57550
57685
  }[] | undefined;
57551
57686
  files?: {
57552
57687
  path: string;
@@ -57561,6 +57696,7 @@ export declare const VersionMetadataResponseSchema: z.ZodObject<{
57561
57696
  url: string;
57562
57697
  title?: string | undefined;
57563
57698
  }[] | undefined;
57699
+ maskPii?: boolean | undefined;
57564
57700
  }, z.ZodTypeDef, {
57565
57701
  model?: "claude-3.5" | "claude-3.7" | "claude-4" | "command-a" | undefined;
57566
57702
  systemPrompt?: string | undefined;
@@ -57569,6 +57705,7 @@ export declare const VersionMetadataResponseSchema: z.ZodObject<{
57569
57705
  url: string;
57570
57706
  title?: string | undefined;
57571
57707
  }[] | undefined;
57708
+ maskPii?: boolean | undefined;
57572
57709
  }>>;
57573
57710
  pageActions: z.ZodOptional<z.ZodType<{
57574
57711
  options?: {
@@ -57666,6 +57803,7 @@ export declare const VersionMetadataResponseSchema: z.ZodObject<{
57666
57803
  remote?: {
57667
57804
  url: string;
57668
57805
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
57806
+ disableSri?: boolean | undefined;
57669
57807
  }[] | undefined;
57670
57808
  files?: {
57671
57809
  path: string;
@@ -58533,6 +58671,7 @@ export declare const VersionMetadataResponseSchema: z.ZodObject<{
58533
58671
  url: string;
58534
58672
  title?: string | undefined;
58535
58673
  }[] | undefined;
58674
+ maskPii?: boolean | undefined;
58536
58675
  } | undefined;
58537
58676
  pageActions?: {
58538
58677
  options?: {
@@ -58581,6 +58720,7 @@ export declare const VersionMetadataResponseSchema: z.ZodObject<{
58581
58720
  remote?: {
58582
58721
  url: string;
58583
58722
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
58723
+ disableSri?: boolean | undefined;
58584
58724
  }[] | undefined;
58585
58725
  files?: {
58586
58726
  path: string;
@@ -59448,6 +59588,7 @@ export declare const VersionMetadataResponseSchema: z.ZodObject<{
59448
59588
  url: string;
59449
59589
  title?: string | undefined;
59450
59590
  }[] | undefined;
59591
+ maskPii?: boolean | undefined;
59451
59592
  } | undefined;
59452
59593
  pageActions?: {
59453
59594
  options?: {
@@ -60783,6 +60924,7 @@ export declare const VersionMetadataResponseSchema: z.ZodObject<{
60783
60924
  remote?: {
60784
60925
  url: string;
60785
60926
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
60927
+ disableSri?: boolean | undefined;
60786
60928
  }[] | undefined;
60787
60929
  files?: {
60788
60930
  path: string;
@@ -61650,6 +61792,7 @@ export declare const VersionMetadataResponseSchema: z.ZodObject<{
61650
61792
  url: string;
61651
61793
  title?: string | undefined;
61652
61794
  }[] | undefined;
61795
+ maskPii?: boolean | undefined;
61653
61796
  } | undefined;
61654
61797
  pageActions?: {
61655
61798
  options?: {
@@ -61961,6 +62104,7 @@ export declare const VersionMetadataResponseSchema: z.ZodObject<{
61961
62104
  remote?: {
61962
62105
  url: string;
61963
62106
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
62107
+ disableSri?: boolean | undefined;
61964
62108
  }[] | undefined;
61965
62109
  files?: {
61966
62110
  path: string;
@@ -62828,6 +62972,7 @@ export declare const VersionMetadataResponseSchema: z.ZodObject<{
62828
62972
  url: string;
62829
62973
  title?: string | undefined;
62830
62974
  }[] | undefined;
62975
+ maskPii?: boolean | undefined;
62831
62976
  } | undefined;
62832
62977
  pageActions?: {
62833
62978
  options?: {
@@ -64427,16 +64572,24 @@ export declare const NavResponseSchema: z.ZodObject<{
64427
64572
  type: z.ZodLiteral<"redirect">;
64428
64573
  metadata: z.ZodObject<{
64429
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"]>>;
64430
64577
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
64431
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"]>>;
64432
64581
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
64433
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"]>>;
64434
64585
  }, z.ZodTypeAny, "passthrough">>;
64435
64586
  }, z.UnknownKeysParam, z.ZodTypeAny, {
64436
64587
  type: "redirect";
64437
64588
  hidden: boolean;
64438
64589
  metadata: {
64439
64590
  href?: string | undefined;
64591
+ redirectKind?: "link" | "structural" | undefined;
64592
+ structuralKind?: "version" | "root" | "product" | "variant" | "tab" | "section" | "api-section" | undefined;
64440
64593
  } & {
64441
64594
  [k: string]: unknown;
64442
64595
  };
@@ -64448,6 +64601,8 @@ export declare const NavResponseSchema: z.ZodObject<{
64448
64601
  hidden: boolean;
64449
64602
  metadata: {
64450
64603
  href?: string | undefined;
64604
+ redirectKind?: "link" | "structural" | undefined;
64605
+ structuralKind?: "version" | "root" | "product" | "variant" | "tab" | "section" | "api-section" | undefined;
64451
64606
  } & {
64452
64607
  [k: string]: unknown;
64453
64608
  };
@@ -64707,6 +64862,8 @@ export declare const NavResponseSchema: z.ZodObject<{
64707
64862
  hidden: boolean;
64708
64863
  metadata: {
64709
64864
  href?: string | undefined;
64865
+ redirectKind?: "link" | "structural" | undefined;
64866
+ structuralKind?: "version" | "root" | "product" | "variant" | "tab" | "section" | "api-section" | undefined;
64710
64867
  } & {
64711
64868
  [k: string]: unknown;
64712
64869
  };
@@ -64966,6 +65123,8 @@ export declare const NavResponseSchema: z.ZodObject<{
64966
65123
  hidden: boolean;
64967
65124
  metadata: {
64968
65125
  href?: string | undefined;
65126
+ redirectKind?: "link" | "structural" | undefined;
65127
+ structuralKind?: "version" | "root" | "product" | "variant" | "tab" | "section" | "api-section" | undefined;
64969
65128
  } & {
64970
65129
  [k: string]: unknown;
64971
65130
  };
@@ -72619,10 +72778,16 @@ export declare const RouteContextResponseSchema: z.ZodDiscriminatedUnion<"artifa
72619
72778
  artifactType: z.ZodLiteral<"redirect">;
72620
72779
  artifactMetadata: z.ZodObject<{
72621
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"]>>;
72622
72783
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
72623
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"]>>;
72624
72787
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
72625
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"]>>;
72626
72791
  }, z.ZodTypeAny, "passthrough">>;
72627
72792
  }, z.UnknownKeysParam, z.ZodTypeAny, {
72628
72793
  version: {
@@ -72722,6 +72887,8 @@ export declare const RouteContextResponseSchema: z.ZodDiscriminatedUnion<"artifa
72722
72887
  artifactType: "redirect";
72723
72888
  artifactMetadata: {
72724
72889
  href?: string | undefined;
72890
+ redirectKind?: "link" | "structural" | undefined;
72891
+ structuralKind?: "version" | "root" | "product" | "variant" | "tab" | "section" | "api-section" | undefined;
72725
72892
  } & {
72726
72893
  [k: string]: unknown;
72727
72894
  };
@@ -72825,6 +72992,8 @@ export declare const RouteContextResponseSchema: z.ZodDiscriminatedUnion<"artifa
72825
72992
  artifactType: "redirect";
72826
72993
  artifactMetadata: {
72827
72994
  href?: string | undefined;
72995
+ redirectKind?: "link" | "structural" | undefined;
72996
+ structuralKind?: "version" | "root" | "product" | "variant" | "tab" | "section" | "api-section" | undefined;
72828
72997
  } & {
72829
72998
  [k: string]: unknown;
72830
72999
  };
@@ -77352,12 +77521,15 @@ export declare const docsLedgerReadContract: {
77352
77521
  remote: z.ZodOptional<z.ZodArray<z.ZodObject<{
77353
77522
  url: z.ZodString;
77354
77523
  strategy: z.ZodOptional<z.ZodEnum<["beforeInteractive", "afterInteractive", "lazyOnload"]>>;
77524
+ disableSri: z.ZodOptional<z.ZodBoolean>;
77355
77525
  }, "strip", z.ZodTypeAny, {
77356
77526
  url: string;
77357
77527
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
77528
+ disableSri?: boolean | undefined;
77358
77529
  }, {
77359
77530
  url: string;
77360
77531
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
77532
+ disableSri?: boolean | undefined;
77361
77533
  }>, "many">>;
77362
77534
  files: z.ZodOptional<z.ZodArray<z.ZodObject<{
77363
77535
  path: z.ZodString;
@@ -77375,6 +77547,7 @@ export declare const docsLedgerReadContract: {
77375
77547
  remote?: {
77376
77548
  url: string;
77377
77549
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
77550
+ disableSri?: boolean | undefined;
77378
77551
  }[] | undefined;
77379
77552
  files?: {
77380
77553
  path: string;
@@ -77385,6 +77558,7 @@ export declare const docsLedgerReadContract: {
77385
77558
  remote?: {
77386
77559
  url: string;
77387
77560
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
77561
+ disableSri?: boolean | undefined;
77388
77562
  }[] | undefined;
77389
77563
  files?: {
77390
77564
  path: string;
@@ -77399,6 +77573,7 @@ export declare const docsLedgerReadContract: {
77399
77573
  url: string;
77400
77574
  title?: string | undefined;
77401
77575
  }[] | undefined;
77576
+ maskPii?: boolean | undefined;
77402
77577
  }, z.ZodTypeDef, {
77403
77578
  model?: "claude-3.5" | "claude-3.7" | "claude-4" | "command-a" | undefined;
77404
77579
  systemPrompt?: string | undefined;
@@ -77407,6 +77582,7 @@ export declare const docsLedgerReadContract: {
77407
77582
  url: string;
77408
77583
  title?: string | undefined;
77409
77584
  }[] | undefined;
77585
+ maskPii?: boolean | undefined;
77410
77586
  }>>;
77411
77587
  pageActions: z.ZodOptional<z.ZodType<{
77412
77588
  options?: {
@@ -77504,6 +77680,7 @@ export declare const docsLedgerReadContract: {
77504
77680
  remote?: {
77505
77681
  url: string;
77506
77682
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
77683
+ disableSri?: boolean | undefined;
77507
77684
  }[] | undefined;
77508
77685
  files?: {
77509
77686
  path: string;
@@ -78371,6 +78548,7 @@ export declare const docsLedgerReadContract: {
78371
78548
  url: string;
78372
78549
  title?: string | undefined;
78373
78550
  }[] | undefined;
78551
+ maskPii?: boolean | undefined;
78374
78552
  } | undefined;
78375
78553
  pageActions?: {
78376
78554
  options?: {
@@ -78419,6 +78597,7 @@ export declare const docsLedgerReadContract: {
78419
78597
  remote?: {
78420
78598
  url: string;
78421
78599
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
78600
+ disableSri?: boolean | undefined;
78422
78601
  }[] | undefined;
78423
78602
  files?: {
78424
78603
  path: string;
@@ -79286,6 +79465,7 @@ export declare const docsLedgerReadContract: {
79286
79465
  url: string;
79287
79466
  title?: string | undefined;
79288
79467
  }[] | undefined;
79468
+ maskPii?: boolean | undefined;
79289
79469
  } | undefined;
79290
79470
  pageActions?: {
79291
79471
  options?: {
@@ -80621,6 +80801,7 @@ export declare const docsLedgerReadContract: {
80621
80801
  remote?: {
80622
80802
  url: string;
80623
80803
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
80804
+ disableSri?: boolean | undefined;
80624
80805
  }[] | undefined;
80625
80806
  files?: {
80626
80807
  path: string;
@@ -81488,6 +81669,7 @@ export declare const docsLedgerReadContract: {
81488
81669
  url: string;
81489
81670
  title?: string | undefined;
81490
81671
  }[] | undefined;
81672
+ maskPii?: boolean | undefined;
81491
81673
  } | undefined;
81492
81674
  pageActions?: {
81493
81675
  options?: {
@@ -81799,6 +81981,7 @@ export declare const docsLedgerReadContract: {
81799
81981
  remote?: {
81800
81982
  url: string;
81801
81983
  strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
81984
+ disableSri?: boolean | undefined;
81802
81985
  }[] | undefined;
81803
81986
  files?: {
81804
81987
  path: string;
@@ -82666,6 +82849,7 @@ export declare const docsLedgerReadContract: {
82666
82849
  url: string;
82667
82850
  title?: string | undefined;
82668
82851
  }[] | undefined;
82852
+ maskPii?: boolean | undefined;
82669
82853
  } | undefined;
82670
82854
  pageActions?: {
82671
82855
  options?: {
@@ -84249,16 +84433,24 @@ export declare const docsLedgerReadContract: {
84249
84433
  type: z.ZodLiteral<"redirect">;
84250
84434
  metadata: z.ZodObject<{
84251
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"]>>;
84252
84438
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
84253
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"]>>;
84254
84442
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
84255
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"]>>;
84256
84446
  }, z.ZodTypeAny, "passthrough">>;
84257
84447
  }, z.UnknownKeysParam, z.ZodTypeAny, {
84258
84448
  type: "redirect";
84259
84449
  hidden: boolean;
84260
84450
  metadata: {
84261
84451
  href?: string | undefined;
84452
+ redirectKind?: "link" | "structural" | undefined;
84453
+ structuralKind?: "version" | "root" | "product" | "variant" | "tab" | "section" | "api-section" | undefined;
84262
84454
  } & {
84263
84455
  [k: string]: unknown;
84264
84456
  };
@@ -84270,6 +84462,8 @@ export declare const docsLedgerReadContract: {
84270
84462
  hidden: boolean;
84271
84463
  metadata: {
84272
84464
  href?: string | undefined;
84465
+ redirectKind?: "link" | "structural" | undefined;
84466
+ structuralKind?: "version" | "root" | "product" | "variant" | "tab" | "section" | "api-section" | undefined;
84273
84467
  } & {
84274
84468
  [k: string]: unknown;
84275
84469
  };
@@ -84529,6 +84723,8 @@ export declare const docsLedgerReadContract: {
84529
84723
  hidden: boolean;
84530
84724
  metadata: {
84531
84725
  href?: string | undefined;
84726
+ redirectKind?: "link" | "structural" | undefined;
84727
+ structuralKind?: "version" | "root" | "product" | "variant" | "tab" | "section" | "api-section" | undefined;
84532
84728
  } & {
84533
84729
  [k: string]: unknown;
84534
84730
  };
@@ -84788,6 +84984,8 @@ export declare const docsLedgerReadContract: {
84788
84984
  hidden: boolean;
84789
84985
  metadata: {
84790
84986
  href?: string | undefined;
84987
+ redirectKind?: "link" | "structural" | undefined;
84988
+ structuralKind?: "version" | "root" | "product" | "variant" | "tab" | "section" | "api-section" | undefined;
84791
84989
  } & {
84792
84990
  [k: string]: unknown;
84793
84991
  };
@@ -92434,10 +92632,16 @@ export declare const docsLedgerReadContract: {
92434
92632
  artifactType: z.ZodLiteral<"redirect">;
92435
92633
  artifactMetadata: z.ZodObject<{
92436
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"]>>;
92437
92637
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
92438
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"]>>;
92439
92641
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
92440
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"]>>;
92441
92645
  }, z.ZodTypeAny, "passthrough">>;
92442
92646
  }, z.UnknownKeysParam, z.ZodTypeAny, {
92443
92647
  version: {
@@ -92537,6 +92741,8 @@ export declare const docsLedgerReadContract: {
92537
92741
  artifactType: "redirect";
92538
92742
  artifactMetadata: {
92539
92743
  href?: string | undefined;
92744
+ redirectKind?: "link" | "structural" | undefined;
92745
+ structuralKind?: "version" | "root" | "product" | "variant" | "tab" | "section" | "api-section" | undefined;
92540
92746
  } & {
92541
92747
  [k: string]: unknown;
92542
92748
  };
@@ -92640,6 +92846,8 @@ export declare const docsLedgerReadContract: {
92640
92846
  artifactType: "redirect";
92641
92847
  artifactMetadata: {
92642
92848
  href?: string | undefined;
92849
+ redirectKind?: "link" | "structural" | undefined;
92850
+ structuralKind?: "version" | "root" | "product" | "variant" | "tab" | "section" | "api-section" | undefined;
92643
92851
  } & {
92644
92852
  [k: string]: unknown;
92645
92853
  };