@fern-api/fdr-sdk 1.2.74-40dc6e178f → 1.2.74-62f00ca999

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 (60) hide show
  1. package/dist/js/client/FdrClient.js +2030 -1802
  2. package/dist/js/client/FdrClient.js.map +1 -1
  3. package/dist/js/client/FdrClient.mjs +2030 -1802
  4. package/dist/js/client/FdrClient.mjs.map +1 -1
  5. package/dist/js/client/types.js +7 -1
  6. package/dist/js/client/types.js.map +1 -1
  7. package/dist/js/client/types.mjs +7 -1
  8. package/dist/js/client/types.mjs.map +1 -1
  9. package/dist/js/converters/index.js +7 -1
  10. package/dist/js/converters/index.js.map +1 -1
  11. package/dist/js/converters/index.mjs +7 -1
  12. package/dist/js/converters/index.mjs.map +1 -1
  13. package/dist/js/docs/index.js +7 -1
  14. package/dist/js/docs/index.js.map +1 -1
  15. package/dist/js/docs/index.mjs +7 -1
  16. package/dist/js/docs/index.mjs.map +1 -1
  17. package/dist/js/index.js +2301 -2073
  18. package/dist/js/index.js.map +1 -1
  19. package/dist/js/index.mjs +2301 -2073
  20. package/dist/js/index.mjs.map +1 -1
  21. package/dist/js/navigation/index.js +7 -1
  22. package/dist/js/navigation/index.js.map +1 -1
  23. package/dist/js/navigation/index.mjs +7 -1
  24. package/dist/js/navigation/index.mjs.map +1 -1
  25. package/dist/js/orpc-client.js +2305 -2015
  26. package/dist/js/orpc-client.js.map +1 -1
  27. package/dist/js/orpc-client.mjs +2272 -2013
  28. package/dist/js/orpc-client.mjs.map +1 -1
  29. package/dist/tsconfig.tsbuildinfo +1 -1
  30. package/dist/types/client/docs-types/db.d.ts +61 -0
  31. package/dist/types/client/docs-types/db.d.ts.map +1 -1
  32. package/dist/types/client/docs-types/read.d.ts +27 -0
  33. package/dist/types/client/docs-types/read.d.ts.map +1 -1
  34. package/dist/types/client/docs-types/shared.d.ts +18 -0
  35. package/dist/types/client/docs-types/shared.d.ts.map +1 -1
  36. package/dist/types/client/docs-types/write.d.ts +16 -0
  37. package/dist/types/client/docs-types/write.d.ts.map +1 -1
  38. package/dist/types/orpc-client/client.d.ts +2 -0
  39. package/dist/types/orpc-client/client.d.ts.map +1 -1
  40. package/dist/types/orpc-client/dashboard-agent/client.d.ts +13 -0
  41. package/dist/types/orpc-client/dashboard-agent/client.d.ts.map +1 -0
  42. package/dist/types/orpc-client/dashboard-agent/contract.d.ts +1444 -0
  43. package/dist/types/orpc-client/dashboard-agent/contract.d.ts.map +1 -0
  44. package/dist/types/orpc-client/dashboard-agent/index.d.ts +3 -0
  45. package/dist/types/orpc-client/dashboard-agent/index.d.ts.map +1 -0
  46. package/dist/types/orpc-client/docs/v1/read/contract.d.ts +18 -0
  47. package/dist/types/orpc-client/docs/v1/read/contract.d.ts.map +1 -1
  48. package/dist/types/orpc-client/docs/v1/write/contract.d.ts +4 -0
  49. package/dist/types/orpc-client/docs/v1/write/contract.d.ts.map +1 -1
  50. package/dist/types/orpc-client/docs/v2/read/contract.d.ts +40 -0
  51. package/dist/types/orpc-client/docs/v2/read/contract.d.ts.map +1 -1
  52. package/dist/types/orpc-client/docs/v2/write/contract.d.ts +8 -0
  53. package/dist/types/orpc-client/docs/v2/write/contract.d.ts.map +1 -1
  54. package/dist/types/orpc-client/docs-ledger/contract.d.ts +56 -0
  55. package/dist/types/orpc-client/docs-ledger/contract.d.ts.map +1 -1
  56. package/dist/types/orpc-client/docs-ledger/ledger-manifest.d.ts +50 -28
  57. package/dist/types/orpc-client/docs-ledger/ledger-manifest.d.ts.map +1 -1
  58. package/dist/types/orpc-client/index.d.ts +1 -0
  59. package/dist/types/orpc-client/index.d.ts.map +1 -1
  60. package/package.json +1 -1
@@ -3995,8 +3995,8 @@ export declare const ManifestFileSchema: z.ZodObject<{
3995
3995
  contentType: string;
3996
3996
  filename: string;
3997
3997
  domain: string;
3998
- hash: string;
3999
3998
  bucket: "public_docs" | "private_docs";
3999
+ hash: string;
4000
4000
  width?: number | undefined;
4001
4001
  height?: number | undefined;
4002
4002
  contentLength?: number | undefined;
@@ -4006,8 +4006,8 @@ export declare const ManifestFileSchema: z.ZodObject<{
4006
4006
  contentType: string;
4007
4007
  filename: string;
4008
4008
  domain: string;
4009
- hash: string;
4010
4009
  bucket: "public_docs" | "private_docs";
4010
+ hash: string;
4011
4011
  width?: number | undefined;
4012
4012
  height?: number | undefined;
4013
4013
  contentLength?: number | undefined;
@@ -4048,18 +4048,18 @@ export declare const LedgerShardFileSchema: z.ZodObject<{
4048
4048
  fullPath: string;
4049
4049
  width?: number | undefined;
4050
4050
  height?: number | undefined;
4051
+ bucket?: "public_docs" | "private_docs" | undefined;
4051
4052
  contentLength?: number | undefined;
4052
4053
  blurDataURL?: string | undefined;
4053
- bucket?: "public_docs" | "private_docs" | undefined;
4054
4054
  }, {
4055
4055
  contentType: string;
4056
4056
  hash: string;
4057
4057
  fullPath: string;
4058
4058
  width?: number | undefined;
4059
4059
  height?: number | undefined;
4060
+ bucket?: "public_docs" | "private_docs" | undefined;
4060
4061
  contentLength?: number | undefined;
4061
4062
  blurDataURL?: string | undefined;
4062
- bucket?: "public_docs" | "private_docs" | undefined;
4063
4063
  }>;
4064
4064
  export type LedgerShardFile = z.infer<typeof LedgerShardFileSchema>;
4065
4065
  export declare const LedgerConfigBlobSchema: z.ZodObject<{
@@ -7381,6 +7381,7 @@ export declare const LedgerConfigBlobSchema: z.ZodObject<{
7381
7381
  search?: {
7382
7382
  prioritizeCurrentProduct?: boolean | undefined;
7383
7383
  defaultFilterByCurrentProduct?: boolean | undefined;
7384
+ externalSitemaps?: string[] | undefined;
7384
7385
  } | undefined;
7385
7386
  httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
7386
7387
  hide404Page?: boolean | undefined;
@@ -7398,6 +7399,7 @@ export declare const LedgerConfigBlobSchema: z.ZodObject<{
7398
7399
  search?: {
7399
7400
  prioritizeCurrentProduct?: boolean | undefined;
7400
7401
  defaultFilterByCurrentProduct?: boolean | undefined;
7402
+ externalSitemaps?: string[] | undefined;
7401
7403
  } | undefined;
7402
7404
  httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
7403
7405
  hide404Page?: boolean | undefined;
@@ -8639,6 +8641,7 @@ export declare const LedgerConfigBlobSchema: z.ZodObject<{
8639
8641
  search?: {
8640
8642
  prioritizeCurrentProduct?: boolean | undefined;
8641
8643
  defaultFilterByCurrentProduct?: boolean | undefined;
8644
+ externalSitemaps?: string[] | undefined;
8642
8645
  } | undefined;
8643
8646
  httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
8644
8647
  hide404Page?: boolean | undefined;
@@ -9556,6 +9559,7 @@ export declare const LedgerConfigBlobSchema: z.ZodObject<{
9556
9559
  search?: {
9557
9560
  prioritizeCurrentProduct?: boolean | undefined;
9558
9561
  defaultFilterByCurrentProduct?: boolean | undefined;
9562
+ externalSitemaps?: string[] | undefined;
9559
9563
  } | undefined;
9560
9564
  httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
9561
9565
  hide404Page?: boolean | undefined;
@@ -10571,6 +10575,7 @@ export declare const LedgerConfigBlobSchema: z.ZodObject<{
10571
10575
  search?: {
10572
10576
  prioritizeCurrentProduct?: boolean | undefined;
10573
10577
  defaultFilterByCurrentProduct?: boolean | undefined;
10578
+ externalSitemaps?: string[] | undefined;
10574
10579
  } | undefined;
10575
10580
  httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
10576
10581
  hide404Page?: boolean | undefined;
@@ -11518,6 +11523,7 @@ export declare const LedgerConfigBlobSchema: z.ZodObject<{
11518
11523
  search?: {
11519
11524
  prioritizeCurrentProduct?: boolean | undefined;
11520
11525
  defaultFilterByCurrentProduct?: boolean | undefined;
11526
+ externalSitemaps?: string[] | undefined;
11521
11527
  } | undefined;
11522
11528
  httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
11523
11529
  hide404Page?: boolean | undefined;
@@ -19805,8 +19811,8 @@ export declare const LedgerLocaleIndexSchema: z.ZodObject<{
19805
19811
  contentType: string;
19806
19812
  filename: string;
19807
19813
  domain: string;
19808
- hash: string;
19809
19814
  bucket: "public_docs" | "private_docs";
19815
+ hash: string;
19810
19816
  width?: number | undefined;
19811
19817
  height?: number | undefined;
19812
19818
  contentLength?: number | undefined;
@@ -19816,8 +19822,8 @@ export declare const LedgerLocaleIndexSchema: z.ZodObject<{
19816
19822
  contentType: string;
19817
19823
  filename: string;
19818
19824
  domain: string;
19819
- hash: string;
19820
19825
  bucket: "public_docs" | "private_docs";
19826
+ hash: string;
19821
19827
  width?: number | undefined;
19822
19828
  height?: number | undefined;
19823
19829
  contentLength?: number | undefined;
@@ -19829,8 +19835,8 @@ export declare const LedgerLocaleIndexSchema: z.ZodObject<{
19829
19835
  contentType: string;
19830
19836
  filename: string;
19831
19837
  domain: string;
19832
- hash: string;
19833
19838
  bucket: "public_docs" | "private_docs";
19839
+ hash: string;
19834
19840
  width?: number | undefined;
19835
19841
  height?: number | undefined;
19836
19842
  contentLength?: number | undefined;
@@ -20656,8 +20662,8 @@ export declare const LedgerLocaleIndexSchema: z.ZodObject<{
20656
20662
  contentType: string;
20657
20663
  filename: string;
20658
20664
  domain: string;
20659
- hash: string;
20660
20665
  bucket: "public_docs" | "private_docs";
20666
+ hash: string;
20661
20667
  width?: number | undefined;
20662
20668
  height?: number | undefined;
20663
20669
  contentLength?: number | undefined;
@@ -24829,18 +24835,18 @@ export declare const LedgerRouteShardSchema: z.ZodObject<{
24829
24835
  fullPath: string;
24830
24836
  width?: number | undefined;
24831
24837
  height?: number | undefined;
24838
+ bucket?: "public_docs" | "private_docs" | undefined;
24832
24839
  contentLength?: number | undefined;
24833
24840
  blurDataURL?: string | undefined;
24834
- bucket?: "public_docs" | "private_docs" | undefined;
24835
24841
  }, {
24836
24842
  contentType: string;
24837
24843
  hash: string;
24838
24844
  fullPath: string;
24839
24845
  width?: number | undefined;
24840
24846
  height?: number | undefined;
24847
+ bucket?: "public_docs" | "private_docs" | undefined;
24841
24848
  contentLength?: number | undefined;
24842
24849
  blurDataURL?: string | undefined;
24843
- bucket?: "public_docs" | "private_docs" | undefined;
24844
24850
  }>>>;
24845
24851
  }, "strip", z.ZodTypeAny, {
24846
24852
  locale: string;
@@ -25440,9 +25446,9 @@ export declare const LedgerRouteShardSchema: z.ZodObject<{
25440
25446
  fullPath: string;
25441
25447
  width?: number | undefined;
25442
25448
  height?: number | undefined;
25449
+ bucket?: "public_docs" | "private_docs" | undefined;
25443
25450
  contentLength?: number | undefined;
25444
25451
  blurDataURL?: string | undefined;
25445
- bucket?: "public_docs" | "private_docs" | undefined;
25446
25452
  }> | undefined;
25447
25453
  }, {
25448
25454
  locale: string;
@@ -26042,9 +26048,9 @@ export declare const LedgerRouteShardSchema: z.ZodObject<{
26042
26048
  fullPath: string;
26043
26049
  width?: number | undefined;
26044
26050
  height?: number | undefined;
26051
+ bucket?: "public_docs" | "private_docs" | undefined;
26045
26052
  contentLength?: number | undefined;
26046
26053
  blurDataURL?: string | undefined;
26047
- bucket?: "public_docs" | "private_docs" | undefined;
26048
26054
  }> | undefined;
26049
26055
  }>;
26050
26056
  export type LedgerRouteShard = z.infer<typeof LedgerRouteShardSchema>;
@@ -28374,8 +28380,8 @@ export declare const LedgerLocaleRoutingSchema: z.ZodObject<{
28374
28380
  contentType: string;
28375
28381
  filename: string;
28376
28382
  domain: string;
28377
- hash: string;
28378
28383
  bucket: "public_docs" | "private_docs";
28384
+ hash: string;
28379
28385
  width?: number | undefined;
28380
28386
  height?: number | undefined;
28381
28387
  contentLength?: number | undefined;
@@ -28385,8 +28391,8 @@ export declare const LedgerLocaleRoutingSchema: z.ZodObject<{
28385
28391
  contentType: string;
28386
28392
  filename: string;
28387
28393
  domain: string;
28388
- hash: string;
28389
28394
  bucket: "public_docs" | "private_docs";
28395
+ hash: string;
28390
28396
  width?: number | undefined;
28391
28397
  height?: number | undefined;
28392
28398
  contentLength?: number | undefined;
@@ -28429,8 +28435,8 @@ export declare const LedgerLocaleRoutingSchema: z.ZodObject<{
28429
28435
  contentType: string;
28430
28436
  filename: string;
28431
28437
  domain: string;
28432
- hash: string;
28433
28438
  bucket: "public_docs" | "private_docs";
28439
+ hash: string;
28434
28440
  width?: number | undefined;
28435
28441
  height?: number | undefined;
28436
28442
  contentLength?: number | undefined;
@@ -28669,8 +28675,8 @@ export declare const LedgerLocaleRoutingSchema: z.ZodObject<{
28669
28675
  contentType: string;
28670
28676
  filename: string;
28671
28677
  domain: string;
28672
- hash: string;
28673
28678
  bucket: "public_docs" | "private_docs";
28679
+ hash: string;
28674
28680
  width?: number | undefined;
28675
28681
  height?: number | undefined;
28676
28682
  contentLength?: number | undefined;
@@ -32248,6 +32254,7 @@ export declare const LedgerManifestSchema: z.ZodObject<{
32248
32254
  search?: {
32249
32255
  prioritizeCurrentProduct?: boolean | undefined;
32250
32256
  defaultFilterByCurrentProduct?: boolean | undefined;
32257
+ externalSitemaps?: string[] | undefined;
32251
32258
  } | undefined;
32252
32259
  httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
32253
32260
  hide404Page?: boolean | undefined;
@@ -32265,6 +32272,7 @@ export declare const LedgerManifestSchema: z.ZodObject<{
32265
32272
  search?: {
32266
32273
  prioritizeCurrentProduct?: boolean | undefined;
32267
32274
  defaultFilterByCurrentProduct?: boolean | undefined;
32275
+ externalSitemaps?: string[] | undefined;
32268
32276
  } | undefined;
32269
32277
  httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
32270
32278
  hide404Page?: boolean | undefined;
@@ -33506,6 +33514,7 @@ export declare const LedgerManifestSchema: z.ZodObject<{
33506
33514
  search?: {
33507
33515
  prioritizeCurrentProduct?: boolean | undefined;
33508
33516
  defaultFilterByCurrentProduct?: boolean | undefined;
33517
+ externalSitemaps?: string[] | undefined;
33509
33518
  } | undefined;
33510
33519
  httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
33511
33520
  hide404Page?: boolean | undefined;
@@ -34423,6 +34432,7 @@ export declare const LedgerManifestSchema: z.ZodObject<{
34423
34432
  search?: {
34424
34433
  prioritizeCurrentProduct?: boolean | undefined;
34425
34434
  defaultFilterByCurrentProduct?: boolean | undefined;
34435
+ externalSitemaps?: string[] | undefined;
34426
34436
  } | undefined;
34427
34437
  httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
34428
34438
  hide404Page?: boolean | undefined;
@@ -35438,6 +35448,7 @@ export declare const LedgerManifestSchema: z.ZodObject<{
35438
35448
  search?: {
35439
35449
  prioritizeCurrentProduct?: boolean | undefined;
35440
35450
  defaultFilterByCurrentProduct?: boolean | undefined;
35451
+ externalSitemaps?: string[] | undefined;
35441
35452
  } | undefined;
35442
35453
  httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
35443
35454
  hide404Page?: boolean | undefined;
@@ -36385,6 +36396,7 @@ export declare const LedgerManifestSchema: z.ZodObject<{
36385
36396
  search?: {
36386
36397
  prioritizeCurrentProduct?: boolean | undefined;
36387
36398
  defaultFilterByCurrentProduct?: boolean | undefined;
36399
+ externalSitemaps?: string[] | undefined;
36388
36400
  } | undefined;
36389
36401
  httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
36390
36402
  hide404Page?: boolean | undefined;
@@ -37828,8 +37840,8 @@ export declare const LedgerManifestSchema: z.ZodObject<{
37828
37840
  contentType: string;
37829
37841
  filename: string;
37830
37842
  domain: string;
37831
- hash: string;
37832
37843
  bucket: "public_docs" | "private_docs";
37844
+ hash: string;
37833
37845
  width?: number | undefined;
37834
37846
  height?: number | undefined;
37835
37847
  contentLength?: number | undefined;
@@ -37839,8 +37851,8 @@ export declare const LedgerManifestSchema: z.ZodObject<{
37839
37851
  contentType: string;
37840
37852
  filename: string;
37841
37853
  domain: string;
37842
- hash: string;
37843
37854
  bucket: "public_docs" | "private_docs";
37855
+ hash: string;
37844
37856
  width?: number | undefined;
37845
37857
  height?: number | undefined;
37846
37858
  contentLength?: number | undefined;
@@ -37883,8 +37895,8 @@ export declare const LedgerManifestSchema: z.ZodObject<{
37883
37895
  contentType: string;
37884
37896
  filename: string;
37885
37897
  domain: string;
37886
- hash: string;
37887
37898
  bucket: "public_docs" | "private_docs";
37899
+ hash: string;
37888
37900
  width?: number | undefined;
37889
37901
  height?: number | undefined;
37890
37902
  contentLength?: number | undefined;
@@ -38123,8 +38135,8 @@ export declare const LedgerManifestSchema: z.ZodObject<{
38123
38135
  contentType: string;
38124
38136
  filename: string;
38125
38137
  domain: string;
38126
- hash: string;
38127
38138
  bucket: "public_docs" | "private_docs";
38139
+ hash: string;
38128
38140
  width?: number | undefined;
38129
38141
  height?: number | undefined;
38130
38142
  contentLength?: number | undefined;
@@ -39126,6 +39138,7 @@ export declare const LedgerManifestSchema: z.ZodObject<{
39126
39138
  search?: {
39127
39139
  prioritizeCurrentProduct?: boolean | undefined;
39128
39140
  defaultFilterByCurrentProduct?: boolean | undefined;
39141
+ externalSitemaps?: string[] | undefined;
39129
39142
  } | undefined;
39130
39143
  httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
39131
39144
  hide404Page?: boolean | undefined;
@@ -39321,8 +39334,8 @@ export declare const LedgerManifestSchema: z.ZodObject<{
39321
39334
  contentType: string;
39322
39335
  filename: string;
39323
39336
  domain: string;
39324
- hash: string;
39325
39337
  bucket: "public_docs" | "private_docs";
39338
+ hash: string;
39326
39339
  width?: number | undefined;
39327
39340
  height?: number | undefined;
39328
39341
  contentLength?: number | undefined;
@@ -40332,6 +40345,7 @@ export declare const LedgerManifestSchema: z.ZodObject<{
40332
40345
  search?: {
40333
40346
  prioritizeCurrentProduct?: boolean | undefined;
40334
40347
  defaultFilterByCurrentProduct?: boolean | undefined;
40348
+ externalSitemaps?: string[] | undefined;
40335
40349
  } | undefined;
40336
40350
  httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
40337
40351
  hide404Page?: boolean | undefined;
@@ -40527,8 +40541,8 @@ export declare const LedgerManifestSchema: z.ZodObject<{
40527
40541
  contentType: string;
40528
40542
  filename: string;
40529
40543
  domain: string;
40530
- hash: string;
40531
40544
  bucket: "public_docs" | "private_docs";
40545
+ hash: string;
40532
40546
  width?: number | undefined;
40533
40547
  height?: number | undefined;
40534
40548
  contentLength?: number | undefined;
@@ -44136,6 +44150,7 @@ export declare const LedgerSiteArtifactSchema: z.ZodUnion<[z.ZodObject<{
44136
44150
  search?: {
44137
44151
  prioritizeCurrentProduct?: boolean | undefined;
44138
44152
  defaultFilterByCurrentProduct?: boolean | undefined;
44153
+ externalSitemaps?: string[] | undefined;
44139
44154
  } | undefined;
44140
44155
  httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
44141
44156
  hide404Page?: boolean | undefined;
@@ -44153,6 +44168,7 @@ export declare const LedgerSiteArtifactSchema: z.ZodUnion<[z.ZodObject<{
44153
44168
  search?: {
44154
44169
  prioritizeCurrentProduct?: boolean | undefined;
44155
44170
  defaultFilterByCurrentProduct?: boolean | undefined;
44171
+ externalSitemaps?: string[] | undefined;
44156
44172
  } | undefined;
44157
44173
  httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
44158
44174
  hide404Page?: boolean | undefined;
@@ -45394,6 +45410,7 @@ export declare const LedgerSiteArtifactSchema: z.ZodUnion<[z.ZodObject<{
45394
45410
  search?: {
45395
45411
  prioritizeCurrentProduct?: boolean | undefined;
45396
45412
  defaultFilterByCurrentProduct?: boolean | undefined;
45413
+ externalSitemaps?: string[] | undefined;
45397
45414
  } | undefined;
45398
45415
  httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
45399
45416
  hide404Page?: boolean | undefined;
@@ -46311,6 +46328,7 @@ export declare const LedgerSiteArtifactSchema: z.ZodUnion<[z.ZodObject<{
46311
46328
  search?: {
46312
46329
  prioritizeCurrentProduct?: boolean | undefined;
46313
46330
  defaultFilterByCurrentProduct?: boolean | undefined;
46331
+ externalSitemaps?: string[] | undefined;
46314
46332
  } | undefined;
46315
46333
  httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
46316
46334
  hide404Page?: boolean | undefined;
@@ -47326,6 +47344,7 @@ export declare const LedgerSiteArtifactSchema: z.ZodUnion<[z.ZodObject<{
47326
47344
  search?: {
47327
47345
  prioritizeCurrentProduct?: boolean | undefined;
47328
47346
  defaultFilterByCurrentProduct?: boolean | undefined;
47347
+ externalSitemaps?: string[] | undefined;
47329
47348
  } | undefined;
47330
47349
  httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
47331
47350
  hide404Page?: boolean | undefined;
@@ -48273,6 +48292,7 @@ export declare const LedgerSiteArtifactSchema: z.ZodUnion<[z.ZodObject<{
48273
48292
  search?: {
48274
48293
  prioritizeCurrentProduct?: boolean | undefined;
48275
48294
  defaultFilterByCurrentProduct?: boolean | undefined;
48295
+ externalSitemaps?: string[] | undefined;
48276
48296
  } | undefined;
48277
48297
  httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
48278
48298
  hide404Page?: boolean | undefined;
@@ -49716,8 +49736,8 @@ export declare const LedgerSiteArtifactSchema: z.ZodUnion<[z.ZodObject<{
49716
49736
  contentType: string;
49717
49737
  filename: string;
49718
49738
  domain: string;
49719
- hash: string;
49720
49739
  bucket: "public_docs" | "private_docs";
49740
+ hash: string;
49721
49741
  width?: number | undefined;
49722
49742
  height?: number | undefined;
49723
49743
  contentLength?: number | undefined;
@@ -49727,8 +49747,8 @@ export declare const LedgerSiteArtifactSchema: z.ZodUnion<[z.ZodObject<{
49727
49747
  contentType: string;
49728
49748
  filename: string;
49729
49749
  domain: string;
49730
- hash: string;
49731
49750
  bucket: "public_docs" | "private_docs";
49751
+ hash: string;
49732
49752
  width?: number | undefined;
49733
49753
  height?: number | undefined;
49734
49754
  contentLength?: number | undefined;
@@ -49771,8 +49791,8 @@ export declare const LedgerSiteArtifactSchema: z.ZodUnion<[z.ZodObject<{
49771
49791
  contentType: string;
49772
49792
  filename: string;
49773
49793
  domain: string;
49774
- hash: string;
49775
49794
  bucket: "public_docs" | "private_docs";
49795
+ hash: string;
49776
49796
  width?: number | undefined;
49777
49797
  height?: number | undefined;
49778
49798
  contentLength?: number | undefined;
@@ -50011,8 +50031,8 @@ export declare const LedgerSiteArtifactSchema: z.ZodUnion<[z.ZodObject<{
50011
50031
  contentType: string;
50012
50032
  filename: string;
50013
50033
  domain: string;
50014
- hash: string;
50015
50034
  bucket: "public_docs" | "private_docs";
50035
+ hash: string;
50016
50036
  width?: number | undefined;
50017
50037
  height?: number | undefined;
50018
50038
  contentLength?: number | undefined;
@@ -51014,6 +51034,7 @@ export declare const LedgerSiteArtifactSchema: z.ZodUnion<[z.ZodObject<{
51014
51034
  search?: {
51015
51035
  prioritizeCurrentProduct?: boolean | undefined;
51016
51036
  defaultFilterByCurrentProduct?: boolean | undefined;
51037
+ externalSitemaps?: string[] | undefined;
51017
51038
  } | undefined;
51018
51039
  httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
51019
51040
  hide404Page?: boolean | undefined;
@@ -51209,8 +51230,8 @@ export declare const LedgerSiteArtifactSchema: z.ZodUnion<[z.ZodObject<{
51209
51230
  contentType: string;
51210
51231
  filename: string;
51211
51232
  domain: string;
51212
- hash: string;
51213
51233
  bucket: "public_docs" | "private_docs";
51234
+ hash: string;
51214
51235
  width?: number | undefined;
51215
51236
  height?: number | undefined;
51216
51237
  contentLength?: number | undefined;
@@ -52220,6 +52241,7 @@ export declare const LedgerSiteArtifactSchema: z.ZodUnion<[z.ZodObject<{
52220
52241
  search?: {
52221
52242
  prioritizeCurrentProduct?: boolean | undefined;
52222
52243
  defaultFilterByCurrentProduct?: boolean | undefined;
52244
+ externalSitemaps?: string[] | undefined;
52223
52245
  } | undefined;
52224
52246
  httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
52225
52247
  hide404Page?: boolean | undefined;
@@ -52415,8 +52437,8 @@ export declare const LedgerSiteArtifactSchema: z.ZodUnion<[z.ZodObject<{
52415
52437
  contentType: string;
52416
52438
  filename: string;
52417
52439
  domain: string;
52418
- hash: string;
52419
52440
  bucket: "public_docs" | "private_docs";
52441
+ hash: string;
52420
52442
  width?: number | undefined;
52421
52443
  height?: number | undefined;
52422
52444
  contentLength?: number | undefined;