@fern-api/fdr-sdk 1.2.74-68c3d5964d → 1.2.74-9da4eb6ac8
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.
- package/dist/js/client/FdrClient.js +7 -1
- package/dist/js/client/FdrClient.js.map +1 -1
- package/dist/js/client/FdrClient.mjs +7 -1
- package/dist/js/client/FdrClient.mjs.map +1 -1
- package/dist/js/client/types.js +7 -1
- package/dist/js/client/types.js.map +1 -1
- package/dist/js/client/types.mjs +7 -1
- package/dist/js/client/types.mjs.map +1 -1
- package/dist/js/converters/index.js +7 -1
- package/dist/js/converters/index.js.map +1 -1
- package/dist/js/converters/index.mjs +7 -1
- package/dist/js/converters/index.mjs.map +1 -1
- package/dist/js/docs/index.js +7 -1
- package/dist/js/docs/index.js.map +1 -1
- package/dist/js/docs/index.mjs +7 -1
- package/dist/js/docs/index.mjs.map +1 -1
- package/dist/js/index.js +7 -1
- package/dist/js/index.js.map +1 -1
- package/dist/js/index.mjs +7 -1
- package/dist/js/index.mjs.map +1 -1
- package/dist/js/navigation/index.js +7 -1
- package/dist/js/navigation/index.js.map +1 -1
- package/dist/js/navigation/index.mjs +7 -1
- package/dist/js/navigation/index.mjs.map +1 -1
- package/dist/js/orpc-client.js +7 -1
- package/dist/js/orpc-client.js.map +1 -1
- package/dist/js/orpc-client.mjs +7 -1
- package/dist/js/orpc-client.mjs.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/client/docs-types/db.d.ts +61 -0
- package/dist/types/client/docs-types/db.d.ts.map +1 -1
- package/dist/types/client/docs-types/read.d.ts +27 -0
- package/dist/types/client/docs-types/read.d.ts.map +1 -1
- package/dist/types/client/docs-types/shared.d.ts +18 -0
- package/dist/types/client/docs-types/shared.d.ts.map +1 -1
- package/dist/types/client/docs-types/write.d.ts +16 -0
- package/dist/types/client/docs-types/write.d.ts.map +1 -1
- package/dist/types/orpc-client/docs/v1/read/contract.d.ts +18 -0
- package/dist/types/orpc-client/docs/v1/read/contract.d.ts.map +1 -1
- package/dist/types/orpc-client/docs/v1/write/contract.d.ts +4 -0
- package/dist/types/orpc-client/docs/v1/write/contract.d.ts.map +1 -1
- package/dist/types/orpc-client/docs/v2/read/contract.d.ts +40 -0
- package/dist/types/orpc-client/docs/v2/read/contract.d.ts.map +1 -1
- package/dist/types/orpc-client/docs/v2/write/contract.d.ts +8 -0
- package/dist/types/orpc-client/docs/v2/write/contract.d.ts.map +1 -1
- package/dist/types/orpc-client/docs-ledger/contract.d.ts +56 -0
- package/dist/types/orpc-client/docs-ledger/contract.d.ts.map +1 -1
- package/dist/types/orpc-client/docs-ledger/ledger-manifest.d.ts +22 -0
- package/dist/types/orpc-client/docs-ledger/ledger-manifest.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -5982,12 +5982,15 @@ export declare const DocsDbConfigSchema: z.ZodObject<{
|
|
|
5982
5982
|
search: z.ZodOptional<z.ZodObject<{
|
|
5983
5983
|
prioritizeCurrentProduct: z.ZodOptional<z.ZodBoolean>;
|
|
5984
5984
|
defaultFilterByCurrentProduct: z.ZodOptional<z.ZodBoolean>;
|
|
5985
|
+
externalSitemaps: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
5985
5986
|
}, "strip", z.ZodTypeAny, {
|
|
5986
5987
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
5987
5988
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
5989
|
+
externalSitemaps?: string[] | undefined;
|
|
5988
5990
|
}, {
|
|
5989
5991
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
5990
5992
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
5993
|
+
externalSitemaps?: string[] | undefined;
|
|
5991
5994
|
}>>;
|
|
5992
5995
|
httpSnippets: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodEnum<["curl", "csharp", "go", "java", "javascript", "php", "python", "ruby", "swift", "rust", "typescript"]>, "many">]>>;
|
|
5993
5996
|
hide404Page: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6006,6 +6009,7 @@ export declare const DocsDbConfigSchema: z.ZodObject<{
|
|
|
6006
6009
|
search?: {
|
|
6007
6010
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
6008
6011
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
6012
|
+
externalSitemaps?: string[] | undefined;
|
|
6009
6013
|
} | undefined;
|
|
6010
6014
|
httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
|
|
6011
6015
|
hide404Page?: boolean | undefined;
|
|
@@ -6023,6 +6027,7 @@ export declare const DocsDbConfigSchema: z.ZodObject<{
|
|
|
6023
6027
|
search?: {
|
|
6024
6028
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
6025
6029
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
6030
|
+
externalSitemaps?: string[] | undefined;
|
|
6026
6031
|
} | undefined;
|
|
6027
6032
|
httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
|
|
6028
6033
|
hide404Page?: boolean | undefined;
|
|
@@ -8102,6 +8107,7 @@ export declare const DocsDbConfigSchema: z.ZodObject<{
|
|
|
8102
8107
|
search?: {
|
|
8103
8108
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
8104
8109
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
8110
|
+
externalSitemaps?: string[] | undefined;
|
|
8105
8111
|
} | undefined;
|
|
8106
8112
|
httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
|
|
8107
8113
|
hide404Page?: boolean | undefined;
|
|
@@ -9214,6 +9220,7 @@ export declare const DocsDbConfigSchema: z.ZodObject<{
|
|
|
9214
9220
|
search?: {
|
|
9215
9221
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
9216
9222
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
9223
|
+
externalSitemaps?: string[] | undefined;
|
|
9217
9224
|
} | undefined;
|
|
9218
9225
|
httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
|
|
9219
9226
|
hide404Page?: boolean | undefined;
|
|
@@ -13531,12 +13538,15 @@ export declare const DocsDefinitionDbV1Schema: z.ZodObject<{
|
|
|
13531
13538
|
search: z.ZodOptional<z.ZodObject<{
|
|
13532
13539
|
prioritizeCurrentProduct: z.ZodOptional<z.ZodBoolean>;
|
|
13533
13540
|
defaultFilterByCurrentProduct: z.ZodOptional<z.ZodBoolean>;
|
|
13541
|
+
externalSitemaps: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
13534
13542
|
}, "strip", z.ZodTypeAny, {
|
|
13535
13543
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
13536
13544
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
13545
|
+
externalSitemaps?: string[] | undefined;
|
|
13537
13546
|
}, {
|
|
13538
13547
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
13539
13548
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
13549
|
+
externalSitemaps?: string[] | undefined;
|
|
13540
13550
|
}>>;
|
|
13541
13551
|
httpSnippets: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodEnum<["curl", "csharp", "go", "java", "javascript", "php", "python", "ruby", "swift", "rust", "typescript"]>, "many">]>>;
|
|
13542
13552
|
hide404Page: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -13555,6 +13565,7 @@ export declare const DocsDefinitionDbV1Schema: z.ZodObject<{
|
|
|
13555
13565
|
search?: {
|
|
13556
13566
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
13557
13567
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
13568
|
+
externalSitemaps?: string[] | undefined;
|
|
13558
13569
|
} | undefined;
|
|
13559
13570
|
httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
|
|
13560
13571
|
hide404Page?: boolean | undefined;
|
|
@@ -13572,6 +13583,7 @@ export declare const DocsDefinitionDbV1Schema: z.ZodObject<{
|
|
|
13572
13583
|
search?: {
|
|
13573
13584
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
13574
13585
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
13586
|
+
externalSitemaps?: string[] | undefined;
|
|
13575
13587
|
} | undefined;
|
|
13576
13588
|
httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
|
|
13577
13589
|
hide404Page?: boolean | undefined;
|
|
@@ -15651,6 +15663,7 @@ export declare const DocsDefinitionDbV1Schema: z.ZodObject<{
|
|
|
15651
15663
|
search?: {
|
|
15652
15664
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
15653
15665
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
15666
|
+
externalSitemaps?: string[] | undefined;
|
|
15654
15667
|
} | undefined;
|
|
15655
15668
|
httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
|
|
15656
15669
|
hide404Page?: boolean | undefined;
|
|
@@ -16763,6 +16776,7 @@ export declare const DocsDefinitionDbV1Schema: z.ZodObject<{
|
|
|
16763
16776
|
search?: {
|
|
16764
16777
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
16765
16778
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
16779
|
+
externalSitemaps?: string[] | undefined;
|
|
16766
16780
|
} | undefined;
|
|
16767
16781
|
httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
|
|
16768
16782
|
hide404Page?: boolean | undefined;
|
|
@@ -17912,6 +17926,7 @@ export declare const DocsDefinitionDbV1Schema: z.ZodObject<{
|
|
|
17912
17926
|
search?: {
|
|
17913
17927
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
17914
17928
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
17929
|
+
externalSitemaps?: string[] | undefined;
|
|
17915
17930
|
} | undefined;
|
|
17916
17931
|
httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
|
|
17917
17932
|
hide404Page?: boolean | undefined;
|
|
@@ -19044,6 +19059,7 @@ export declare const DocsDefinitionDbV1Schema: z.ZodObject<{
|
|
|
19044
19059
|
search?: {
|
|
19045
19060
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
19046
19061
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
19062
|
+
externalSitemaps?: string[] | undefined;
|
|
19047
19063
|
} | undefined;
|
|
19048
19064
|
httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
|
|
19049
19065
|
hide404Page?: boolean | undefined;
|
|
@@ -23377,12 +23393,15 @@ export declare const DocsDefinitionDbV2Schema: z.ZodObject<{
|
|
|
23377
23393
|
search: z.ZodOptional<z.ZodObject<{
|
|
23378
23394
|
prioritizeCurrentProduct: z.ZodOptional<z.ZodBoolean>;
|
|
23379
23395
|
defaultFilterByCurrentProduct: z.ZodOptional<z.ZodBoolean>;
|
|
23396
|
+
externalSitemaps: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
23380
23397
|
}, "strip", z.ZodTypeAny, {
|
|
23381
23398
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
23382
23399
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
23400
|
+
externalSitemaps?: string[] | undefined;
|
|
23383
23401
|
}, {
|
|
23384
23402
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
23385
23403
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
23404
|
+
externalSitemaps?: string[] | undefined;
|
|
23386
23405
|
}>>;
|
|
23387
23406
|
httpSnippets: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodEnum<["curl", "csharp", "go", "java", "javascript", "php", "python", "ruby", "swift", "rust", "typescript"]>, "many">]>>;
|
|
23388
23407
|
hide404Page: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -23401,6 +23420,7 @@ export declare const DocsDefinitionDbV2Schema: z.ZodObject<{
|
|
|
23401
23420
|
search?: {
|
|
23402
23421
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
23403
23422
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
23423
|
+
externalSitemaps?: string[] | undefined;
|
|
23404
23424
|
} | undefined;
|
|
23405
23425
|
httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
|
|
23406
23426
|
hide404Page?: boolean | undefined;
|
|
@@ -23418,6 +23438,7 @@ export declare const DocsDefinitionDbV2Schema: z.ZodObject<{
|
|
|
23418
23438
|
search?: {
|
|
23419
23439
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
23420
23440
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
23441
|
+
externalSitemaps?: string[] | undefined;
|
|
23421
23442
|
} | undefined;
|
|
23422
23443
|
httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
|
|
23423
23444
|
hide404Page?: boolean | undefined;
|
|
@@ -25497,6 +25518,7 @@ export declare const DocsDefinitionDbV2Schema: z.ZodObject<{
|
|
|
25497
25518
|
search?: {
|
|
25498
25519
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
25499
25520
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
25521
|
+
externalSitemaps?: string[] | undefined;
|
|
25500
25522
|
} | undefined;
|
|
25501
25523
|
httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
|
|
25502
25524
|
hide404Page?: boolean | undefined;
|
|
@@ -26609,6 +26631,7 @@ export declare const DocsDefinitionDbV2Schema: z.ZodObject<{
|
|
|
26609
26631
|
search?: {
|
|
26610
26632
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
26611
26633
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
26634
|
+
externalSitemaps?: string[] | undefined;
|
|
26612
26635
|
} | undefined;
|
|
26613
26636
|
httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
|
|
26614
26637
|
hide404Page?: boolean | undefined;
|
|
@@ -27840,6 +27863,7 @@ export declare const DocsDefinitionDbV2Schema: z.ZodObject<{
|
|
|
27840
27863
|
search?: {
|
|
27841
27864
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
27842
27865
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
27866
|
+
externalSitemaps?: string[] | undefined;
|
|
27843
27867
|
} | undefined;
|
|
27844
27868
|
httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
|
|
27845
27869
|
hide404Page?: boolean | undefined;
|
|
@@ -28992,6 +29016,7 @@ export declare const DocsDefinitionDbV2Schema: z.ZodObject<{
|
|
|
28992
29016
|
search?: {
|
|
28993
29017
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
28994
29018
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
29019
|
+
externalSitemaps?: string[] | undefined;
|
|
28995
29020
|
} | undefined;
|
|
28996
29021
|
httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
|
|
28997
29022
|
hide404Page?: boolean | undefined;
|
|
@@ -33369,12 +33394,15 @@ export declare const DocsDefinitionDbV3Schema: z.ZodObject<{
|
|
|
33369
33394
|
search: z.ZodOptional<z.ZodObject<{
|
|
33370
33395
|
prioritizeCurrentProduct: z.ZodOptional<z.ZodBoolean>;
|
|
33371
33396
|
defaultFilterByCurrentProduct: z.ZodOptional<z.ZodBoolean>;
|
|
33397
|
+
externalSitemaps: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
33372
33398
|
}, "strip", z.ZodTypeAny, {
|
|
33373
33399
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
33374
33400
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
33401
|
+
externalSitemaps?: string[] | undefined;
|
|
33375
33402
|
}, {
|
|
33376
33403
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
33377
33404
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
33405
|
+
externalSitemaps?: string[] | undefined;
|
|
33378
33406
|
}>>;
|
|
33379
33407
|
httpSnippets: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodEnum<["curl", "csharp", "go", "java", "javascript", "php", "python", "ruby", "swift", "rust", "typescript"]>, "many">]>>;
|
|
33380
33408
|
hide404Page: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -33393,6 +33421,7 @@ export declare const DocsDefinitionDbV3Schema: z.ZodObject<{
|
|
|
33393
33421
|
search?: {
|
|
33394
33422
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
33395
33423
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
33424
|
+
externalSitemaps?: string[] | undefined;
|
|
33396
33425
|
} | undefined;
|
|
33397
33426
|
httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
|
|
33398
33427
|
hide404Page?: boolean | undefined;
|
|
@@ -33410,6 +33439,7 @@ export declare const DocsDefinitionDbV3Schema: z.ZodObject<{
|
|
|
33410
33439
|
search?: {
|
|
33411
33440
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
33412
33441
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
33442
|
+
externalSitemaps?: string[] | undefined;
|
|
33413
33443
|
} | undefined;
|
|
33414
33444
|
httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
|
|
33415
33445
|
hide404Page?: boolean | undefined;
|
|
@@ -35489,6 +35519,7 @@ export declare const DocsDefinitionDbV3Schema: z.ZodObject<{
|
|
|
35489
35519
|
search?: {
|
|
35490
35520
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
35491
35521
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
35522
|
+
externalSitemaps?: string[] | undefined;
|
|
35492
35523
|
} | undefined;
|
|
35493
35524
|
httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
|
|
35494
35525
|
hide404Page?: boolean | undefined;
|
|
@@ -36601,6 +36632,7 @@ export declare const DocsDefinitionDbV3Schema: z.ZodObject<{
|
|
|
36601
36632
|
search?: {
|
|
36602
36633
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
36603
36634
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
36635
|
+
externalSitemaps?: string[] | undefined;
|
|
36604
36636
|
} | undefined;
|
|
36605
36637
|
httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
|
|
36606
36638
|
hide404Page?: boolean | undefined;
|
|
@@ -37727,6 +37759,7 @@ export declare const DocsDefinitionDbV3Schema: z.ZodObject<{
|
|
|
37727
37759
|
search?: {
|
|
37728
37760
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
37729
37761
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
37762
|
+
externalSitemaps?: string[] | undefined;
|
|
37730
37763
|
} | undefined;
|
|
37731
37764
|
httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
|
|
37732
37765
|
hide404Page?: boolean | undefined;
|
|
@@ -38860,6 +38893,7 @@ export declare const DocsDefinitionDbV3Schema: z.ZodObject<{
|
|
|
38860
38893
|
search?: {
|
|
38861
38894
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
38862
38895
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
38896
|
+
externalSitemaps?: string[] | undefined;
|
|
38863
38897
|
} | undefined;
|
|
38864
38898
|
httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
|
|
38865
38899
|
hide404Page?: boolean | undefined;
|
|
@@ -43186,12 +43220,15 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
43186
43220
|
search: z.ZodOptional<z.ZodObject<{
|
|
43187
43221
|
prioritizeCurrentProduct: z.ZodOptional<z.ZodBoolean>;
|
|
43188
43222
|
defaultFilterByCurrentProduct: z.ZodOptional<z.ZodBoolean>;
|
|
43223
|
+
externalSitemaps: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
43189
43224
|
}, "strip", z.ZodTypeAny, {
|
|
43190
43225
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
43191
43226
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
43227
|
+
externalSitemaps?: string[] | undefined;
|
|
43192
43228
|
}, {
|
|
43193
43229
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
43194
43230
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
43231
|
+
externalSitemaps?: string[] | undefined;
|
|
43195
43232
|
}>>;
|
|
43196
43233
|
httpSnippets: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodEnum<["curl", "csharp", "go", "java", "javascript", "php", "python", "ruby", "swift", "rust", "typescript"]>, "many">]>>;
|
|
43197
43234
|
hide404Page: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -43210,6 +43247,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
43210
43247
|
search?: {
|
|
43211
43248
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
43212
43249
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
43250
|
+
externalSitemaps?: string[] | undefined;
|
|
43213
43251
|
} | undefined;
|
|
43214
43252
|
httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
|
|
43215
43253
|
hide404Page?: boolean | undefined;
|
|
@@ -43227,6 +43265,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
43227
43265
|
search?: {
|
|
43228
43266
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
43229
43267
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
43268
|
+
externalSitemaps?: string[] | undefined;
|
|
43230
43269
|
} | undefined;
|
|
43231
43270
|
httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
|
|
43232
43271
|
hide404Page?: boolean | undefined;
|
|
@@ -45306,6 +45345,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
45306
45345
|
search?: {
|
|
45307
45346
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
45308
45347
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
45348
|
+
externalSitemaps?: string[] | undefined;
|
|
45309
45349
|
} | undefined;
|
|
45310
45350
|
httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
|
|
45311
45351
|
hide404Page?: boolean | undefined;
|
|
@@ -46418,6 +46458,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
46418
46458
|
search?: {
|
|
46419
46459
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
46420
46460
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
46461
|
+
externalSitemaps?: string[] | undefined;
|
|
46421
46462
|
} | undefined;
|
|
46422
46463
|
httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
|
|
46423
46464
|
hide404Page?: boolean | undefined;
|
|
@@ -47569,6 +47610,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
47569
47610
|
search?: {
|
|
47570
47611
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
47571
47612
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
47613
|
+
externalSitemaps?: string[] | undefined;
|
|
47572
47614
|
} | undefined;
|
|
47573
47615
|
httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
|
|
47574
47616
|
hide404Page?: boolean | undefined;
|
|
@@ -48702,6 +48744,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
48702
48744
|
search?: {
|
|
48703
48745
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
48704
48746
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
48747
|
+
externalSitemaps?: string[] | undefined;
|
|
48705
48748
|
} | undefined;
|
|
48706
48749
|
httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
|
|
48707
48750
|
hide404Page?: boolean | undefined;
|
|
@@ -53033,12 +53076,15 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
53033
53076
|
search: z.ZodOptional<z.ZodObject<{
|
|
53034
53077
|
prioritizeCurrentProduct: z.ZodOptional<z.ZodBoolean>;
|
|
53035
53078
|
defaultFilterByCurrentProduct: z.ZodOptional<z.ZodBoolean>;
|
|
53079
|
+
externalSitemaps: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
53036
53080
|
}, "strip", z.ZodTypeAny, {
|
|
53037
53081
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
53038
53082
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
53083
|
+
externalSitemaps?: string[] | undefined;
|
|
53039
53084
|
}, {
|
|
53040
53085
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
53041
53086
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
53087
|
+
externalSitemaps?: string[] | undefined;
|
|
53042
53088
|
}>>;
|
|
53043
53089
|
httpSnippets: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodEnum<["curl", "csharp", "go", "java", "javascript", "php", "python", "ruby", "swift", "rust", "typescript"]>, "many">]>>;
|
|
53044
53090
|
hide404Page: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -53057,6 +53103,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
53057
53103
|
search?: {
|
|
53058
53104
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
53059
53105
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
53106
|
+
externalSitemaps?: string[] | undefined;
|
|
53060
53107
|
} | undefined;
|
|
53061
53108
|
httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
|
|
53062
53109
|
hide404Page?: boolean | undefined;
|
|
@@ -53074,6 +53121,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
53074
53121
|
search?: {
|
|
53075
53122
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
53076
53123
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
53124
|
+
externalSitemaps?: string[] | undefined;
|
|
53077
53125
|
} | undefined;
|
|
53078
53126
|
httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
|
|
53079
53127
|
hide404Page?: boolean | undefined;
|
|
@@ -55153,6 +55201,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
55153
55201
|
search?: {
|
|
55154
55202
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
55155
55203
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
55204
|
+
externalSitemaps?: string[] | undefined;
|
|
55156
55205
|
} | undefined;
|
|
55157
55206
|
httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
|
|
55158
55207
|
hide404Page?: boolean | undefined;
|
|
@@ -56265,6 +56314,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
56265
56314
|
search?: {
|
|
56266
56315
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
56267
56316
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
56317
|
+
externalSitemaps?: string[] | undefined;
|
|
56268
56318
|
} | undefined;
|
|
56269
56319
|
httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
|
|
56270
56320
|
hide404Page?: boolean | undefined;
|
|
@@ -57498,6 +57548,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
57498
57548
|
search?: {
|
|
57499
57549
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
57500
57550
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
57551
|
+
externalSitemaps?: string[] | undefined;
|
|
57501
57552
|
} | undefined;
|
|
57502
57553
|
httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
|
|
57503
57554
|
hide404Page?: boolean | undefined;
|
|
@@ -58651,6 +58702,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
58651
58702
|
search?: {
|
|
58652
58703
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
58653
58704
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
58705
|
+
externalSitemaps?: string[] | undefined;
|
|
58654
58706
|
} | undefined;
|
|
58655
58707
|
httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
|
|
58656
58708
|
hide404Page?: boolean | undefined;
|
|
@@ -63026,12 +63078,15 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
63026
63078
|
search: z.ZodOptional<z.ZodObject<{
|
|
63027
63079
|
prioritizeCurrentProduct: z.ZodOptional<z.ZodBoolean>;
|
|
63028
63080
|
defaultFilterByCurrentProduct: z.ZodOptional<z.ZodBoolean>;
|
|
63081
|
+
externalSitemaps: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
63029
63082
|
}, "strip", z.ZodTypeAny, {
|
|
63030
63083
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
63031
63084
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
63085
|
+
externalSitemaps?: string[] | undefined;
|
|
63032
63086
|
}, {
|
|
63033
63087
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
63034
63088
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
63089
|
+
externalSitemaps?: string[] | undefined;
|
|
63035
63090
|
}>>;
|
|
63036
63091
|
httpSnippets: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodEnum<["curl", "csharp", "go", "java", "javascript", "php", "python", "ruby", "swift", "rust", "typescript"]>, "many">]>>;
|
|
63037
63092
|
hide404Page: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -63050,6 +63105,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
63050
63105
|
search?: {
|
|
63051
63106
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
63052
63107
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
63108
|
+
externalSitemaps?: string[] | undefined;
|
|
63053
63109
|
} | undefined;
|
|
63054
63110
|
httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
|
|
63055
63111
|
hide404Page?: boolean | undefined;
|
|
@@ -63067,6 +63123,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
63067
63123
|
search?: {
|
|
63068
63124
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
63069
63125
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
63126
|
+
externalSitemaps?: string[] | undefined;
|
|
63070
63127
|
} | undefined;
|
|
63071
63128
|
httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
|
|
63072
63129
|
hide404Page?: boolean | undefined;
|
|
@@ -65146,6 +65203,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
65146
65203
|
search?: {
|
|
65147
65204
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
65148
65205
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
65206
|
+
externalSitemaps?: string[] | undefined;
|
|
65149
65207
|
} | undefined;
|
|
65150
65208
|
httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
|
|
65151
65209
|
hide404Page?: boolean | undefined;
|
|
@@ -66258,6 +66316,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
66258
66316
|
search?: {
|
|
66259
66317
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
66260
66318
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
66319
|
+
externalSitemaps?: string[] | undefined;
|
|
66261
66320
|
} | undefined;
|
|
66262
66321
|
httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
|
|
66263
66322
|
hide404Page?: boolean | undefined;
|
|
@@ -67386,6 +67445,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
67386
67445
|
search?: {
|
|
67387
67446
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
67388
67447
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
67448
|
+
externalSitemaps?: string[] | undefined;
|
|
67389
67449
|
} | undefined;
|
|
67390
67450
|
httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
|
|
67391
67451
|
hide404Page?: boolean | undefined;
|
|
@@ -68520,6 +68580,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
68520
68580
|
search?: {
|
|
68521
68581
|
prioritizeCurrentProduct?: boolean | undefined;
|
|
68522
68582
|
defaultFilterByCurrentProduct?: boolean | undefined;
|
|
68583
|
+
externalSitemaps?: string[] | undefined;
|
|
68523
68584
|
} | undefined;
|
|
68524
68585
|
httpSnippets?: boolean | ("typescript" | "python" | "go" | "ruby" | "java" | "csharp" | "curl" | "javascript" | "php" | "swift" | "rust")[] | undefined;
|
|
68525
68586
|
hide404Page?: boolean | undefined;
|