@fern-api/fdr-sdk 1.2.66-c0946d299a → 1.2.67-b2aaf48f74
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/api-definition/index.js +7 -3
- package/dist/js/api-definition/index.js.map +1 -1
- package/dist/js/api-definition/index.mjs +7 -3
- package/dist/js/api-definition/index.mjs.map +1 -1
- package/dist/js/client/FdrClient.js +21 -4
- package/dist/js/client/FdrClient.js.map +1 -1
- package/dist/js/client/FdrClient.mjs +21 -4
- package/dist/js/client/FdrClient.mjs.map +1 -1
- package/dist/js/client/types.js +6 -2
- package/dist/js/client/types.js.map +1 -1
- package/dist/js/client/types.mjs +6 -2
- package/dist/js/client/types.mjs.map +1 -1
- package/dist/js/converters/index.js +13 -5
- package/dist/js/converters/index.js.map +1 -1
- package/dist/js/converters/index.mjs +13 -5
- package/dist/js/converters/index.mjs.map +1 -1
- package/dist/js/docs/index.js +6 -2
- package/dist/js/docs/index.js.map +1 -1
- package/dist/js/docs/index.mjs +6 -2
- package/dist/js/docs/index.mjs.map +1 -1
- package/dist/js/index.js +28 -7
- package/dist/js/index.js.map +1 -1
- package/dist/js/index.mjs +28 -7
- package/dist/js/index.mjs.map +1 -1
- package/dist/js/navigation/index.js +13 -5
- package/dist/js/navigation/index.js.map +1 -1
- package/dist/js/navigation/index.mjs +13 -5
- package/dist/js/navigation/index.mjs.map +1 -1
- package/dist/js/orpc-client.js +38 -4
- package/dist/js/orpc-client.js.map +1 -1
- package/dist/js/orpc-client.mjs +35 -4
- package/dist/js/orpc-client.mjs.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/api-definition/prune.d.ts.map +1 -1
- package/dist/types/client/docs-types/db.d.ts +108 -0
- package/dist/types/client/docs-types/db.d.ts.map +1 -1
- package/dist/types/client/docs-types/read.d.ts +48 -0
- package/dist/types/client/docs-types/read.d.ts.map +1 -1
- package/dist/types/client/docs-types/shared.d.ts +11 -0
- package/dist/types/client/docs-types/shared.d.ts.map +1 -1
- package/dist/types/client/docs-types/write.d.ts +28 -0
- package/dist/types/client/docs-types/write.d.ts.map +1 -1
- package/dist/types/orpc-client/docs/v1/read/contract.d.ts +32 -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 +8 -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 +72 -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 +16 -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 +208 -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 +12037 -0
- package/dist/types/orpc-client/docs-ledger/ledger-manifest.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -6517,16 +6517,19 @@ export declare const DocsDbConfigSchema: z.ZodObject<{
|
|
|
6517
6517
|
remote: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6518
6518
|
url: z.ZodType<Url, z.ZodTypeDef, Url>;
|
|
6519
6519
|
strategy: z.ZodOptional<z.ZodEnum<["beforeInteractive", "afterInteractive", "lazyOnload"]>>;
|
|
6520
|
+
disableSri: z.ZodOptional<z.ZodBoolean>;
|
|
6520
6521
|
}, "strip", z.ZodTypeAny, {
|
|
6521
6522
|
url: string & {
|
|
6522
6523
|
Url: void;
|
|
6523
6524
|
};
|
|
6524
6525
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
6526
|
+
disableSri?: boolean | undefined;
|
|
6525
6527
|
}, {
|
|
6526
6528
|
url: string & {
|
|
6527
6529
|
Url: void;
|
|
6528
6530
|
};
|
|
6529
6531
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
6532
|
+
disableSri?: boolean | undefined;
|
|
6530
6533
|
}>, "many">>;
|
|
6531
6534
|
files: z.ZodArray<z.ZodObject<{
|
|
6532
6535
|
fileId: z.ZodType<import("./shared").FileId, z.ZodTypeDef, import("./shared").FileId>;
|
|
@@ -6556,6 +6559,7 @@ export declare const DocsDbConfigSchema: z.ZodObject<{
|
|
|
6556
6559
|
Url: void;
|
|
6557
6560
|
};
|
|
6558
6561
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
6562
|
+
disableSri?: boolean | undefined;
|
|
6559
6563
|
}[] | undefined;
|
|
6560
6564
|
}, {
|
|
6561
6565
|
files: {
|
|
@@ -6570,6 +6574,7 @@ export declare const DocsDbConfigSchema: z.ZodObject<{
|
|
|
6570
6574
|
Url: void;
|
|
6571
6575
|
};
|
|
6572
6576
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
6577
|
+
disableSri?: boolean | undefined;
|
|
6573
6578
|
}[] | undefined;
|
|
6574
6579
|
}>>;
|
|
6575
6580
|
aiChatConfig: z.ZodOptional<z.ZodObject<{
|
|
@@ -6586,6 +6591,7 @@ export declare const DocsDbConfigSchema: z.ZodObject<{
|
|
|
6586
6591
|
url: string;
|
|
6587
6592
|
title?: string | undefined;
|
|
6588
6593
|
}>, "many">>;
|
|
6594
|
+
maskPii: z.ZodOptional<z.ZodBoolean>;
|
|
6589
6595
|
}, "strip", z.ZodTypeAny, {
|
|
6590
6596
|
model?: "claude-3.5" | "claude-3.7" | "claude-4" | "command-a" | undefined;
|
|
6591
6597
|
systemPrompt?: string | undefined;
|
|
@@ -6594,6 +6600,7 @@ export declare const DocsDbConfigSchema: z.ZodObject<{
|
|
|
6594
6600
|
url: string;
|
|
6595
6601
|
title?: string | undefined;
|
|
6596
6602
|
}[] | undefined;
|
|
6603
|
+
maskPii?: boolean | undefined;
|
|
6597
6604
|
}, {
|
|
6598
6605
|
model?: "claude-3.5" | "claude-3.7" | "claude-4" | "command-a" | undefined;
|
|
6599
6606
|
systemPrompt?: string | undefined;
|
|
@@ -6602,6 +6609,7 @@ export declare const DocsDbConfigSchema: z.ZodObject<{
|
|
|
6602
6609
|
url: string;
|
|
6603
6610
|
title?: string | undefined;
|
|
6604
6611
|
}[] | undefined;
|
|
6612
|
+
maskPii?: boolean | undefined;
|
|
6605
6613
|
}>>;
|
|
6606
6614
|
pageActions: z.ZodOptional<z.ZodObject<{
|
|
6607
6615
|
default: z.ZodOptional<z.ZodEnum<["copyPage", "viewAsMarkdown", "askAi", "openAi", "claude", "cursor", "claudeCode", "vscode", "installSkills"]>>;
|
|
@@ -7232,6 +7240,7 @@ export declare const DocsDbConfigSchema: z.ZodObject<{
|
|
|
7232
7240
|
Url: void;
|
|
7233
7241
|
};
|
|
7234
7242
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
7243
|
+
disableSri?: boolean | undefined;
|
|
7235
7244
|
}[] | undefined;
|
|
7236
7245
|
} | undefined;
|
|
7237
7246
|
header?: string | undefined;
|
|
@@ -8213,6 +8222,7 @@ export declare const DocsDbConfigSchema: z.ZodObject<{
|
|
|
8213
8222
|
url: string;
|
|
8214
8223
|
title?: string | undefined;
|
|
8215
8224
|
}[] | undefined;
|
|
8225
|
+
maskPii?: boolean | undefined;
|
|
8216
8226
|
} | undefined;
|
|
8217
8227
|
pageActions?: {
|
|
8218
8228
|
options?: {
|
|
@@ -8342,6 +8352,7 @@ export declare const DocsDbConfigSchema: z.ZodObject<{
|
|
|
8342
8352
|
Url: void;
|
|
8343
8353
|
};
|
|
8344
8354
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
8355
|
+
disableSri?: boolean | undefined;
|
|
8345
8356
|
}[] | undefined;
|
|
8346
8357
|
} | undefined;
|
|
8347
8358
|
header?: string | undefined;
|
|
@@ -9323,6 +9334,7 @@ export declare const DocsDbConfigSchema: z.ZodObject<{
|
|
|
9323
9334
|
url: string;
|
|
9324
9335
|
title?: string | undefined;
|
|
9325
9336
|
}[] | undefined;
|
|
9337
|
+
maskPii?: boolean | undefined;
|
|
9326
9338
|
} | undefined;
|
|
9327
9339
|
pageActions?: {
|
|
9328
9340
|
options?: {
|
|
@@ -14054,16 +14066,19 @@ export declare const DocsDefinitionDbV1Schema: z.ZodObject<{
|
|
|
14054
14066
|
remote: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14055
14067
|
url: z.ZodType<Url, z.ZodTypeDef, Url>;
|
|
14056
14068
|
strategy: z.ZodOptional<z.ZodEnum<["beforeInteractive", "afterInteractive", "lazyOnload"]>>;
|
|
14069
|
+
disableSri: z.ZodOptional<z.ZodBoolean>;
|
|
14057
14070
|
}, "strip", z.ZodTypeAny, {
|
|
14058
14071
|
url: string & {
|
|
14059
14072
|
Url: void;
|
|
14060
14073
|
};
|
|
14061
14074
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
14075
|
+
disableSri?: boolean | undefined;
|
|
14062
14076
|
}, {
|
|
14063
14077
|
url: string & {
|
|
14064
14078
|
Url: void;
|
|
14065
14079
|
};
|
|
14066
14080
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
14081
|
+
disableSri?: boolean | undefined;
|
|
14067
14082
|
}>, "many">>;
|
|
14068
14083
|
files: z.ZodArray<z.ZodObject<{
|
|
14069
14084
|
fileId: z.ZodType<import("./shared").FileId, z.ZodTypeDef, import("./shared").FileId>;
|
|
@@ -14093,6 +14108,7 @@ export declare const DocsDefinitionDbV1Schema: z.ZodObject<{
|
|
|
14093
14108
|
Url: void;
|
|
14094
14109
|
};
|
|
14095
14110
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
14111
|
+
disableSri?: boolean | undefined;
|
|
14096
14112
|
}[] | undefined;
|
|
14097
14113
|
}, {
|
|
14098
14114
|
files: {
|
|
@@ -14107,6 +14123,7 @@ export declare const DocsDefinitionDbV1Schema: z.ZodObject<{
|
|
|
14107
14123
|
Url: void;
|
|
14108
14124
|
};
|
|
14109
14125
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
14126
|
+
disableSri?: boolean | undefined;
|
|
14110
14127
|
}[] | undefined;
|
|
14111
14128
|
}>>;
|
|
14112
14129
|
aiChatConfig: z.ZodOptional<z.ZodObject<{
|
|
@@ -14123,6 +14140,7 @@ export declare const DocsDefinitionDbV1Schema: z.ZodObject<{
|
|
|
14123
14140
|
url: string;
|
|
14124
14141
|
title?: string | undefined;
|
|
14125
14142
|
}>, "many">>;
|
|
14143
|
+
maskPii: z.ZodOptional<z.ZodBoolean>;
|
|
14126
14144
|
}, "strip", z.ZodTypeAny, {
|
|
14127
14145
|
model?: "claude-3.5" | "claude-3.7" | "claude-4" | "command-a" | undefined;
|
|
14128
14146
|
systemPrompt?: string | undefined;
|
|
@@ -14131,6 +14149,7 @@ export declare const DocsDefinitionDbV1Schema: z.ZodObject<{
|
|
|
14131
14149
|
url: string;
|
|
14132
14150
|
title?: string | undefined;
|
|
14133
14151
|
}[] | undefined;
|
|
14152
|
+
maskPii?: boolean | undefined;
|
|
14134
14153
|
}, {
|
|
14135
14154
|
model?: "claude-3.5" | "claude-3.7" | "claude-4" | "command-a" | undefined;
|
|
14136
14155
|
systemPrompt?: string | undefined;
|
|
@@ -14139,6 +14158,7 @@ export declare const DocsDefinitionDbV1Schema: z.ZodObject<{
|
|
|
14139
14158
|
url: string;
|
|
14140
14159
|
title?: string | undefined;
|
|
14141
14160
|
}[] | undefined;
|
|
14161
|
+
maskPii?: boolean | undefined;
|
|
14142
14162
|
}>>;
|
|
14143
14163
|
pageActions: z.ZodOptional<z.ZodObject<{
|
|
14144
14164
|
default: z.ZodOptional<z.ZodEnum<["copyPage", "viewAsMarkdown", "askAi", "openAi", "claude", "cursor", "claudeCode", "vscode", "installSkills"]>>;
|
|
@@ -14769,6 +14789,7 @@ export declare const DocsDefinitionDbV1Schema: z.ZodObject<{
|
|
|
14769
14789
|
Url: void;
|
|
14770
14790
|
};
|
|
14771
14791
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
14792
|
+
disableSri?: boolean | undefined;
|
|
14772
14793
|
}[] | undefined;
|
|
14773
14794
|
} | undefined;
|
|
14774
14795
|
header?: string | undefined;
|
|
@@ -15750,6 +15771,7 @@ export declare const DocsDefinitionDbV1Schema: z.ZodObject<{
|
|
|
15750
15771
|
url: string;
|
|
15751
15772
|
title?: string | undefined;
|
|
15752
15773
|
}[] | undefined;
|
|
15774
|
+
maskPii?: boolean | undefined;
|
|
15753
15775
|
} | undefined;
|
|
15754
15776
|
pageActions?: {
|
|
15755
15777
|
options?: {
|
|
@@ -15879,6 +15901,7 @@ export declare const DocsDefinitionDbV1Schema: z.ZodObject<{
|
|
|
15879
15901
|
Url: void;
|
|
15880
15902
|
};
|
|
15881
15903
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
15904
|
+
disableSri?: boolean | undefined;
|
|
15882
15905
|
}[] | undefined;
|
|
15883
15906
|
} | undefined;
|
|
15884
15907
|
header?: string | undefined;
|
|
@@ -16860,6 +16883,7 @@ export declare const DocsDefinitionDbV1Schema: z.ZodObject<{
|
|
|
16860
16883
|
url: string;
|
|
16861
16884
|
title?: string | undefined;
|
|
16862
16885
|
}[] | undefined;
|
|
16886
|
+
maskPii?: boolean | undefined;
|
|
16863
16887
|
} | undefined;
|
|
16864
16888
|
pageActions?: {
|
|
16865
16889
|
options?: {
|
|
@@ -17026,6 +17050,7 @@ export declare const DocsDefinitionDbV1Schema: z.ZodObject<{
|
|
|
17026
17050
|
Url: void;
|
|
17027
17051
|
};
|
|
17028
17052
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
17053
|
+
disableSri?: boolean | undefined;
|
|
17029
17054
|
}[] | undefined;
|
|
17030
17055
|
} | undefined;
|
|
17031
17056
|
header?: string | undefined;
|
|
@@ -18007,6 +18032,7 @@ export declare const DocsDefinitionDbV1Schema: z.ZodObject<{
|
|
|
18007
18032
|
url: string;
|
|
18008
18033
|
title?: string | undefined;
|
|
18009
18034
|
}[] | undefined;
|
|
18035
|
+
maskPii?: boolean | undefined;
|
|
18010
18036
|
} | undefined;
|
|
18011
18037
|
pageActions?: {
|
|
18012
18038
|
options?: {
|
|
@@ -18156,6 +18182,7 @@ export declare const DocsDefinitionDbV1Schema: z.ZodObject<{
|
|
|
18156
18182
|
Url: void;
|
|
18157
18183
|
};
|
|
18158
18184
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
18185
|
+
disableSri?: boolean | undefined;
|
|
18159
18186
|
}[] | undefined;
|
|
18160
18187
|
} | undefined;
|
|
18161
18188
|
header?: string | undefined;
|
|
@@ -19137,6 +19164,7 @@ export declare const DocsDefinitionDbV1Schema: z.ZodObject<{
|
|
|
19137
19164
|
url: string;
|
|
19138
19165
|
title?: string | undefined;
|
|
19139
19166
|
}[] | undefined;
|
|
19167
|
+
maskPii?: boolean | undefined;
|
|
19140
19168
|
} | undefined;
|
|
19141
19169
|
pageActions?: {
|
|
19142
19170
|
options?: {
|
|
@@ -23884,16 +23912,19 @@ export declare const DocsDefinitionDbV2Schema: z.ZodObject<{
|
|
|
23884
23912
|
remote: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
23885
23913
|
url: z.ZodType<Url, z.ZodTypeDef, Url>;
|
|
23886
23914
|
strategy: z.ZodOptional<z.ZodEnum<["beforeInteractive", "afterInteractive", "lazyOnload"]>>;
|
|
23915
|
+
disableSri: z.ZodOptional<z.ZodBoolean>;
|
|
23887
23916
|
}, "strip", z.ZodTypeAny, {
|
|
23888
23917
|
url: string & {
|
|
23889
23918
|
Url: void;
|
|
23890
23919
|
};
|
|
23891
23920
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
23921
|
+
disableSri?: boolean | undefined;
|
|
23892
23922
|
}, {
|
|
23893
23923
|
url: string & {
|
|
23894
23924
|
Url: void;
|
|
23895
23925
|
};
|
|
23896
23926
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
23927
|
+
disableSri?: boolean | undefined;
|
|
23897
23928
|
}>, "many">>;
|
|
23898
23929
|
files: z.ZodArray<z.ZodObject<{
|
|
23899
23930
|
fileId: z.ZodType<import("./shared").FileId, z.ZodTypeDef, import("./shared").FileId>;
|
|
@@ -23923,6 +23954,7 @@ export declare const DocsDefinitionDbV2Schema: z.ZodObject<{
|
|
|
23923
23954
|
Url: void;
|
|
23924
23955
|
};
|
|
23925
23956
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
23957
|
+
disableSri?: boolean | undefined;
|
|
23926
23958
|
}[] | undefined;
|
|
23927
23959
|
}, {
|
|
23928
23960
|
files: {
|
|
@@ -23937,6 +23969,7 @@ export declare const DocsDefinitionDbV2Schema: z.ZodObject<{
|
|
|
23937
23969
|
Url: void;
|
|
23938
23970
|
};
|
|
23939
23971
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
23972
|
+
disableSri?: boolean | undefined;
|
|
23940
23973
|
}[] | undefined;
|
|
23941
23974
|
}>>;
|
|
23942
23975
|
aiChatConfig: z.ZodOptional<z.ZodObject<{
|
|
@@ -23953,6 +23986,7 @@ export declare const DocsDefinitionDbV2Schema: z.ZodObject<{
|
|
|
23953
23986
|
url: string;
|
|
23954
23987
|
title?: string | undefined;
|
|
23955
23988
|
}>, "many">>;
|
|
23989
|
+
maskPii: z.ZodOptional<z.ZodBoolean>;
|
|
23956
23990
|
}, "strip", z.ZodTypeAny, {
|
|
23957
23991
|
model?: "claude-3.5" | "claude-3.7" | "claude-4" | "command-a" | undefined;
|
|
23958
23992
|
systemPrompt?: string | undefined;
|
|
@@ -23961,6 +23995,7 @@ export declare const DocsDefinitionDbV2Schema: z.ZodObject<{
|
|
|
23961
23995
|
url: string;
|
|
23962
23996
|
title?: string | undefined;
|
|
23963
23997
|
}[] | undefined;
|
|
23998
|
+
maskPii?: boolean | undefined;
|
|
23964
23999
|
}, {
|
|
23965
24000
|
model?: "claude-3.5" | "claude-3.7" | "claude-4" | "command-a" | undefined;
|
|
23966
24001
|
systemPrompt?: string | undefined;
|
|
@@ -23969,6 +24004,7 @@ export declare const DocsDefinitionDbV2Schema: z.ZodObject<{
|
|
|
23969
24004
|
url: string;
|
|
23970
24005
|
title?: string | undefined;
|
|
23971
24006
|
}[] | undefined;
|
|
24007
|
+
maskPii?: boolean | undefined;
|
|
23972
24008
|
}>>;
|
|
23973
24009
|
pageActions: z.ZodOptional<z.ZodObject<{
|
|
23974
24010
|
default: z.ZodOptional<z.ZodEnum<["copyPage", "viewAsMarkdown", "askAi", "openAi", "claude", "cursor", "claudeCode", "vscode", "installSkills"]>>;
|
|
@@ -24599,6 +24635,7 @@ export declare const DocsDefinitionDbV2Schema: z.ZodObject<{
|
|
|
24599
24635
|
Url: void;
|
|
24600
24636
|
};
|
|
24601
24637
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
24638
|
+
disableSri?: boolean | undefined;
|
|
24602
24639
|
}[] | undefined;
|
|
24603
24640
|
} | undefined;
|
|
24604
24641
|
header?: string | undefined;
|
|
@@ -25580,6 +25617,7 @@ export declare const DocsDefinitionDbV2Schema: z.ZodObject<{
|
|
|
25580
25617
|
url: string;
|
|
25581
25618
|
title?: string | undefined;
|
|
25582
25619
|
}[] | undefined;
|
|
25620
|
+
maskPii?: boolean | undefined;
|
|
25583
25621
|
} | undefined;
|
|
25584
25622
|
pageActions?: {
|
|
25585
25623
|
options?: {
|
|
@@ -25709,6 +25747,7 @@ export declare const DocsDefinitionDbV2Schema: z.ZodObject<{
|
|
|
25709
25747
|
Url: void;
|
|
25710
25748
|
};
|
|
25711
25749
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
25750
|
+
disableSri?: boolean | undefined;
|
|
25712
25751
|
}[] | undefined;
|
|
25713
25752
|
} | undefined;
|
|
25714
25753
|
header?: string | undefined;
|
|
@@ -26690,6 +26729,7 @@ export declare const DocsDefinitionDbV2Schema: z.ZodObject<{
|
|
|
26690
26729
|
url: string;
|
|
26691
26730
|
title?: string | undefined;
|
|
26692
26731
|
}[] | undefined;
|
|
26732
|
+
maskPii?: boolean | undefined;
|
|
26693
26733
|
} | undefined;
|
|
26694
26734
|
pageActions?: {
|
|
26695
26735
|
options?: {
|
|
@@ -26938,6 +26978,7 @@ export declare const DocsDefinitionDbV2Schema: z.ZodObject<{
|
|
|
26938
26978
|
Url: void;
|
|
26939
26979
|
};
|
|
26940
26980
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
26981
|
+
disableSri?: boolean | undefined;
|
|
26941
26982
|
}[] | undefined;
|
|
26942
26983
|
} | undefined;
|
|
26943
26984
|
header?: string | undefined;
|
|
@@ -27919,6 +27960,7 @@ export declare const DocsDefinitionDbV2Schema: z.ZodObject<{
|
|
|
27919
27960
|
url: string;
|
|
27920
27961
|
title?: string | undefined;
|
|
27921
27962
|
}[] | undefined;
|
|
27963
|
+
maskPii?: boolean | undefined;
|
|
27922
27964
|
} | undefined;
|
|
27923
27965
|
pageActions?: {
|
|
27924
27966
|
options?: {
|
|
@@ -28088,6 +28130,7 @@ export declare const DocsDefinitionDbV2Schema: z.ZodObject<{
|
|
|
28088
28130
|
Url: void;
|
|
28089
28131
|
};
|
|
28090
28132
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
28133
|
+
disableSri?: boolean | undefined;
|
|
28091
28134
|
}[] | undefined;
|
|
28092
28135
|
} | undefined;
|
|
28093
28136
|
header?: string | undefined;
|
|
@@ -29069,6 +29112,7 @@ export declare const DocsDefinitionDbV2Schema: z.ZodObject<{
|
|
|
29069
29112
|
url: string;
|
|
29070
29113
|
title?: string | undefined;
|
|
29071
29114
|
}[] | undefined;
|
|
29115
|
+
maskPii?: boolean | undefined;
|
|
29072
29116
|
} | undefined;
|
|
29073
29117
|
pageActions?: {
|
|
29074
29118
|
options?: {
|
|
@@ -33860,16 +33904,19 @@ export declare const DocsDefinitionDbV3Schema: z.ZodObject<{
|
|
|
33860
33904
|
remote: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
33861
33905
|
url: z.ZodType<Url, z.ZodTypeDef, Url>;
|
|
33862
33906
|
strategy: z.ZodOptional<z.ZodEnum<["beforeInteractive", "afterInteractive", "lazyOnload"]>>;
|
|
33907
|
+
disableSri: z.ZodOptional<z.ZodBoolean>;
|
|
33863
33908
|
}, "strip", z.ZodTypeAny, {
|
|
33864
33909
|
url: string & {
|
|
33865
33910
|
Url: void;
|
|
33866
33911
|
};
|
|
33867
33912
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
33913
|
+
disableSri?: boolean | undefined;
|
|
33868
33914
|
}, {
|
|
33869
33915
|
url: string & {
|
|
33870
33916
|
Url: void;
|
|
33871
33917
|
};
|
|
33872
33918
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
33919
|
+
disableSri?: boolean | undefined;
|
|
33873
33920
|
}>, "many">>;
|
|
33874
33921
|
files: z.ZodArray<z.ZodObject<{
|
|
33875
33922
|
fileId: z.ZodType<import("./shared").FileId, z.ZodTypeDef, import("./shared").FileId>;
|
|
@@ -33899,6 +33946,7 @@ export declare const DocsDefinitionDbV3Schema: z.ZodObject<{
|
|
|
33899
33946
|
Url: void;
|
|
33900
33947
|
};
|
|
33901
33948
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
33949
|
+
disableSri?: boolean | undefined;
|
|
33902
33950
|
}[] | undefined;
|
|
33903
33951
|
}, {
|
|
33904
33952
|
files: {
|
|
@@ -33913,6 +33961,7 @@ export declare const DocsDefinitionDbV3Schema: z.ZodObject<{
|
|
|
33913
33961
|
Url: void;
|
|
33914
33962
|
};
|
|
33915
33963
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
33964
|
+
disableSri?: boolean | undefined;
|
|
33916
33965
|
}[] | undefined;
|
|
33917
33966
|
}>>;
|
|
33918
33967
|
aiChatConfig: z.ZodOptional<z.ZodObject<{
|
|
@@ -33929,6 +33978,7 @@ export declare const DocsDefinitionDbV3Schema: z.ZodObject<{
|
|
|
33929
33978
|
url: string;
|
|
33930
33979
|
title?: string | undefined;
|
|
33931
33980
|
}>, "many">>;
|
|
33981
|
+
maskPii: z.ZodOptional<z.ZodBoolean>;
|
|
33932
33982
|
}, "strip", z.ZodTypeAny, {
|
|
33933
33983
|
model?: "claude-3.5" | "claude-3.7" | "claude-4" | "command-a" | undefined;
|
|
33934
33984
|
systemPrompt?: string | undefined;
|
|
@@ -33937,6 +33987,7 @@ export declare const DocsDefinitionDbV3Schema: z.ZodObject<{
|
|
|
33937
33987
|
url: string;
|
|
33938
33988
|
title?: string | undefined;
|
|
33939
33989
|
}[] | undefined;
|
|
33990
|
+
maskPii?: boolean | undefined;
|
|
33940
33991
|
}, {
|
|
33941
33992
|
model?: "claude-3.5" | "claude-3.7" | "claude-4" | "command-a" | undefined;
|
|
33942
33993
|
systemPrompt?: string | undefined;
|
|
@@ -33945,6 +33996,7 @@ export declare const DocsDefinitionDbV3Schema: z.ZodObject<{
|
|
|
33945
33996
|
url: string;
|
|
33946
33997
|
title?: string | undefined;
|
|
33947
33998
|
}[] | undefined;
|
|
33999
|
+
maskPii?: boolean | undefined;
|
|
33948
34000
|
}>>;
|
|
33949
34001
|
pageActions: z.ZodOptional<z.ZodObject<{
|
|
33950
34002
|
default: z.ZodOptional<z.ZodEnum<["copyPage", "viewAsMarkdown", "askAi", "openAi", "claude", "cursor", "claudeCode", "vscode", "installSkills"]>>;
|
|
@@ -34575,6 +34627,7 @@ export declare const DocsDefinitionDbV3Schema: z.ZodObject<{
|
|
|
34575
34627
|
Url: void;
|
|
34576
34628
|
};
|
|
34577
34629
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
34630
|
+
disableSri?: boolean | undefined;
|
|
34578
34631
|
}[] | undefined;
|
|
34579
34632
|
} | undefined;
|
|
34580
34633
|
header?: string | undefined;
|
|
@@ -35556,6 +35609,7 @@ export declare const DocsDefinitionDbV3Schema: z.ZodObject<{
|
|
|
35556
35609
|
url: string;
|
|
35557
35610
|
title?: string | undefined;
|
|
35558
35611
|
}[] | undefined;
|
|
35612
|
+
maskPii?: boolean | undefined;
|
|
35559
35613
|
} | undefined;
|
|
35560
35614
|
pageActions?: {
|
|
35561
35615
|
options?: {
|
|
@@ -35685,6 +35739,7 @@ export declare const DocsDefinitionDbV3Schema: z.ZodObject<{
|
|
|
35685
35739
|
Url: void;
|
|
35686
35740
|
};
|
|
35687
35741
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
35742
|
+
disableSri?: boolean | undefined;
|
|
35688
35743
|
}[] | undefined;
|
|
35689
35744
|
} | undefined;
|
|
35690
35745
|
header?: string | undefined;
|
|
@@ -36666,6 +36721,7 @@ export declare const DocsDefinitionDbV3Schema: z.ZodObject<{
|
|
|
36666
36721
|
url: string;
|
|
36667
36722
|
title?: string | undefined;
|
|
36668
36723
|
}[] | undefined;
|
|
36724
|
+
maskPii?: boolean | undefined;
|
|
36669
36725
|
} | undefined;
|
|
36670
36726
|
pageActions?: {
|
|
36671
36727
|
options?: {
|
|
@@ -36809,6 +36865,7 @@ export declare const DocsDefinitionDbV3Schema: z.ZodObject<{
|
|
|
36809
36865
|
Url: void;
|
|
36810
36866
|
};
|
|
36811
36867
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
36868
|
+
disableSri?: boolean | undefined;
|
|
36812
36869
|
}[] | undefined;
|
|
36813
36870
|
} | undefined;
|
|
36814
36871
|
header?: string | undefined;
|
|
@@ -37790,6 +37847,7 @@ export declare const DocsDefinitionDbV3Schema: z.ZodObject<{
|
|
|
37790
37847
|
url: string;
|
|
37791
37848
|
title?: string | undefined;
|
|
37792
37849
|
}[] | undefined;
|
|
37850
|
+
maskPii?: boolean | undefined;
|
|
37793
37851
|
} | undefined;
|
|
37794
37852
|
pageActions?: {
|
|
37795
37853
|
options?: {
|
|
@@ -37940,6 +37998,7 @@ export declare const DocsDefinitionDbV3Schema: z.ZodObject<{
|
|
|
37940
37998
|
Url: void;
|
|
37941
37999
|
};
|
|
37942
38000
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
38001
|
+
disableSri?: boolean | undefined;
|
|
37943
38002
|
}[] | undefined;
|
|
37944
38003
|
} | undefined;
|
|
37945
38004
|
header?: string | undefined;
|
|
@@ -38921,6 +38980,7 @@ export declare const DocsDefinitionDbV3Schema: z.ZodObject<{
|
|
|
38921
38980
|
url: string;
|
|
38922
38981
|
title?: string | undefined;
|
|
38923
38982
|
}[] | undefined;
|
|
38983
|
+
maskPii?: boolean | undefined;
|
|
38924
38984
|
} | undefined;
|
|
38925
38985
|
pageActions?: {
|
|
38926
38986
|
options?: {
|
|
@@ -43661,16 +43721,19 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
43661
43721
|
remote: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
43662
43722
|
url: z.ZodType<Url, z.ZodTypeDef, Url>;
|
|
43663
43723
|
strategy: z.ZodOptional<z.ZodEnum<["beforeInteractive", "afterInteractive", "lazyOnload"]>>;
|
|
43724
|
+
disableSri: z.ZodOptional<z.ZodBoolean>;
|
|
43664
43725
|
}, "strip", z.ZodTypeAny, {
|
|
43665
43726
|
url: string & {
|
|
43666
43727
|
Url: void;
|
|
43667
43728
|
};
|
|
43668
43729
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
43730
|
+
disableSri?: boolean | undefined;
|
|
43669
43731
|
}, {
|
|
43670
43732
|
url: string & {
|
|
43671
43733
|
Url: void;
|
|
43672
43734
|
};
|
|
43673
43735
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
43736
|
+
disableSri?: boolean | undefined;
|
|
43674
43737
|
}>, "many">>;
|
|
43675
43738
|
files: z.ZodArray<z.ZodObject<{
|
|
43676
43739
|
fileId: z.ZodType<import("./shared").FileId, z.ZodTypeDef, import("./shared").FileId>;
|
|
@@ -43700,6 +43763,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
43700
43763
|
Url: void;
|
|
43701
43764
|
};
|
|
43702
43765
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
43766
|
+
disableSri?: boolean | undefined;
|
|
43703
43767
|
}[] | undefined;
|
|
43704
43768
|
}, {
|
|
43705
43769
|
files: {
|
|
@@ -43714,6 +43778,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
43714
43778
|
Url: void;
|
|
43715
43779
|
};
|
|
43716
43780
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
43781
|
+
disableSri?: boolean | undefined;
|
|
43717
43782
|
}[] | undefined;
|
|
43718
43783
|
}>>;
|
|
43719
43784
|
aiChatConfig: z.ZodOptional<z.ZodObject<{
|
|
@@ -43730,6 +43795,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
43730
43795
|
url: string;
|
|
43731
43796
|
title?: string | undefined;
|
|
43732
43797
|
}>, "many">>;
|
|
43798
|
+
maskPii: z.ZodOptional<z.ZodBoolean>;
|
|
43733
43799
|
}, "strip", z.ZodTypeAny, {
|
|
43734
43800
|
model?: "claude-3.5" | "claude-3.7" | "claude-4" | "command-a" | undefined;
|
|
43735
43801
|
systemPrompt?: string | undefined;
|
|
@@ -43738,6 +43804,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
43738
43804
|
url: string;
|
|
43739
43805
|
title?: string | undefined;
|
|
43740
43806
|
}[] | undefined;
|
|
43807
|
+
maskPii?: boolean | undefined;
|
|
43741
43808
|
}, {
|
|
43742
43809
|
model?: "claude-3.5" | "claude-3.7" | "claude-4" | "command-a" | undefined;
|
|
43743
43810
|
systemPrompt?: string | undefined;
|
|
@@ -43746,6 +43813,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
43746
43813
|
url: string;
|
|
43747
43814
|
title?: string | undefined;
|
|
43748
43815
|
}[] | undefined;
|
|
43816
|
+
maskPii?: boolean | undefined;
|
|
43749
43817
|
}>>;
|
|
43750
43818
|
pageActions: z.ZodOptional<z.ZodObject<{
|
|
43751
43819
|
default: z.ZodOptional<z.ZodEnum<["copyPage", "viewAsMarkdown", "askAi", "openAi", "claude", "cursor", "claudeCode", "vscode", "installSkills"]>>;
|
|
@@ -44376,6 +44444,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
44376
44444
|
Url: void;
|
|
44377
44445
|
};
|
|
44378
44446
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
44447
|
+
disableSri?: boolean | undefined;
|
|
44379
44448
|
}[] | undefined;
|
|
44380
44449
|
} | undefined;
|
|
44381
44450
|
header?: string | undefined;
|
|
@@ -45357,6 +45426,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
45357
45426
|
url: string;
|
|
45358
45427
|
title?: string | undefined;
|
|
45359
45428
|
}[] | undefined;
|
|
45429
|
+
maskPii?: boolean | undefined;
|
|
45360
45430
|
} | undefined;
|
|
45361
45431
|
pageActions?: {
|
|
45362
45432
|
options?: {
|
|
@@ -45486,6 +45556,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
45486
45556
|
Url: void;
|
|
45487
45557
|
};
|
|
45488
45558
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
45559
|
+
disableSri?: boolean | undefined;
|
|
45489
45560
|
}[] | undefined;
|
|
45490
45561
|
} | undefined;
|
|
45491
45562
|
header?: string | undefined;
|
|
@@ -46467,6 +46538,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
46467
46538
|
url: string;
|
|
46468
46539
|
title?: string | undefined;
|
|
46469
46540
|
}[] | undefined;
|
|
46541
|
+
maskPii?: boolean | undefined;
|
|
46470
46542
|
} | undefined;
|
|
46471
46543
|
pageActions?: {
|
|
46472
46544
|
options?: {
|
|
@@ -46635,6 +46707,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
46635
46707
|
Url: void;
|
|
46636
46708
|
};
|
|
46637
46709
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
46710
|
+
disableSri?: boolean | undefined;
|
|
46638
46711
|
}[] | undefined;
|
|
46639
46712
|
} | undefined;
|
|
46640
46713
|
header?: string | undefined;
|
|
@@ -47616,6 +47689,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
47616
47689
|
url: string;
|
|
47617
47690
|
title?: string | undefined;
|
|
47618
47691
|
}[] | undefined;
|
|
47692
|
+
maskPii?: boolean | undefined;
|
|
47619
47693
|
} | undefined;
|
|
47620
47694
|
pageActions?: {
|
|
47621
47695
|
options?: {
|
|
@@ -47766,6 +47840,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
47766
47840
|
Url: void;
|
|
47767
47841
|
};
|
|
47768
47842
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
47843
|
+
disableSri?: boolean | undefined;
|
|
47769
47844
|
}[] | undefined;
|
|
47770
47845
|
} | undefined;
|
|
47771
47846
|
header?: string | undefined;
|
|
@@ -48747,6 +48822,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
48747
48822
|
url: string;
|
|
48748
48823
|
title?: string | undefined;
|
|
48749
48824
|
}[] | undefined;
|
|
48825
|
+
maskPii?: boolean | undefined;
|
|
48750
48826
|
} | undefined;
|
|
48751
48827
|
pageActions?: {
|
|
48752
48828
|
options?: {
|
|
@@ -53492,16 +53568,19 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
53492
53568
|
remote: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
53493
53569
|
url: z.ZodType<Url, z.ZodTypeDef, Url>;
|
|
53494
53570
|
strategy: z.ZodOptional<z.ZodEnum<["beforeInteractive", "afterInteractive", "lazyOnload"]>>;
|
|
53571
|
+
disableSri: z.ZodOptional<z.ZodBoolean>;
|
|
53495
53572
|
}, "strip", z.ZodTypeAny, {
|
|
53496
53573
|
url: string & {
|
|
53497
53574
|
Url: void;
|
|
53498
53575
|
};
|
|
53499
53576
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
53577
|
+
disableSri?: boolean | undefined;
|
|
53500
53578
|
}, {
|
|
53501
53579
|
url: string & {
|
|
53502
53580
|
Url: void;
|
|
53503
53581
|
};
|
|
53504
53582
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
53583
|
+
disableSri?: boolean | undefined;
|
|
53505
53584
|
}>, "many">>;
|
|
53506
53585
|
files: z.ZodArray<z.ZodObject<{
|
|
53507
53586
|
fileId: z.ZodType<import("./shared").FileId, z.ZodTypeDef, import("./shared").FileId>;
|
|
@@ -53531,6 +53610,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
53531
53610
|
Url: void;
|
|
53532
53611
|
};
|
|
53533
53612
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
53613
|
+
disableSri?: boolean | undefined;
|
|
53534
53614
|
}[] | undefined;
|
|
53535
53615
|
}, {
|
|
53536
53616
|
files: {
|
|
@@ -53545,6 +53625,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
53545
53625
|
Url: void;
|
|
53546
53626
|
};
|
|
53547
53627
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
53628
|
+
disableSri?: boolean | undefined;
|
|
53548
53629
|
}[] | undefined;
|
|
53549
53630
|
}>>;
|
|
53550
53631
|
aiChatConfig: z.ZodOptional<z.ZodObject<{
|
|
@@ -53561,6 +53642,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
53561
53642
|
url: string;
|
|
53562
53643
|
title?: string | undefined;
|
|
53563
53644
|
}>, "many">>;
|
|
53645
|
+
maskPii: z.ZodOptional<z.ZodBoolean>;
|
|
53564
53646
|
}, "strip", z.ZodTypeAny, {
|
|
53565
53647
|
model?: "claude-3.5" | "claude-3.7" | "claude-4" | "command-a" | undefined;
|
|
53566
53648
|
systemPrompt?: string | undefined;
|
|
@@ -53569,6 +53651,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
53569
53651
|
url: string;
|
|
53570
53652
|
title?: string | undefined;
|
|
53571
53653
|
}[] | undefined;
|
|
53654
|
+
maskPii?: boolean | undefined;
|
|
53572
53655
|
}, {
|
|
53573
53656
|
model?: "claude-3.5" | "claude-3.7" | "claude-4" | "command-a" | undefined;
|
|
53574
53657
|
systemPrompt?: string | undefined;
|
|
@@ -53577,6 +53660,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
53577
53660
|
url: string;
|
|
53578
53661
|
title?: string | undefined;
|
|
53579
53662
|
}[] | undefined;
|
|
53663
|
+
maskPii?: boolean | undefined;
|
|
53580
53664
|
}>>;
|
|
53581
53665
|
pageActions: z.ZodOptional<z.ZodObject<{
|
|
53582
53666
|
default: z.ZodOptional<z.ZodEnum<["copyPage", "viewAsMarkdown", "askAi", "openAi", "claude", "cursor", "claudeCode", "vscode", "installSkills"]>>;
|
|
@@ -54207,6 +54291,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
54207
54291
|
Url: void;
|
|
54208
54292
|
};
|
|
54209
54293
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
54294
|
+
disableSri?: boolean | undefined;
|
|
54210
54295
|
}[] | undefined;
|
|
54211
54296
|
} | undefined;
|
|
54212
54297
|
header?: string | undefined;
|
|
@@ -55188,6 +55273,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
55188
55273
|
url: string;
|
|
55189
55274
|
title?: string | undefined;
|
|
55190
55275
|
}[] | undefined;
|
|
55276
|
+
maskPii?: boolean | undefined;
|
|
55191
55277
|
} | undefined;
|
|
55192
55278
|
pageActions?: {
|
|
55193
55279
|
options?: {
|
|
@@ -55317,6 +55403,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
55317
55403
|
Url: void;
|
|
55318
55404
|
};
|
|
55319
55405
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
55406
|
+
disableSri?: boolean | undefined;
|
|
55320
55407
|
}[] | undefined;
|
|
55321
55408
|
} | undefined;
|
|
55322
55409
|
header?: string | undefined;
|
|
@@ -56298,6 +56385,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
56298
56385
|
url: string;
|
|
56299
56386
|
title?: string | undefined;
|
|
56300
56387
|
}[] | undefined;
|
|
56388
|
+
maskPii?: boolean | undefined;
|
|
56301
56389
|
} | undefined;
|
|
56302
56390
|
pageActions?: {
|
|
56303
56391
|
options?: {
|
|
@@ -56548,6 +56636,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
56548
56636
|
Url: void;
|
|
56549
56637
|
};
|
|
56550
56638
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
56639
|
+
disableSri?: boolean | undefined;
|
|
56551
56640
|
}[] | undefined;
|
|
56552
56641
|
} | undefined;
|
|
56553
56642
|
header?: string | undefined;
|
|
@@ -57529,6 +57618,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
57529
57618
|
url: string;
|
|
57530
57619
|
title?: string | undefined;
|
|
57531
57620
|
}[] | undefined;
|
|
57621
|
+
maskPii?: boolean | undefined;
|
|
57532
57622
|
} | undefined;
|
|
57533
57623
|
pageActions?: {
|
|
57534
57624
|
options?: {
|
|
@@ -57699,6 +57789,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
57699
57789
|
Url: void;
|
|
57700
57790
|
};
|
|
57701
57791
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
57792
|
+
disableSri?: boolean | undefined;
|
|
57702
57793
|
}[] | undefined;
|
|
57703
57794
|
} | undefined;
|
|
57704
57795
|
header?: string | undefined;
|
|
@@ -58680,6 +58771,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
58680
58771
|
url: string;
|
|
58681
58772
|
title?: string | undefined;
|
|
58682
58773
|
}[] | undefined;
|
|
58774
|
+
maskPii?: boolean | undefined;
|
|
58683
58775
|
} | undefined;
|
|
58684
58776
|
pageActions?: {
|
|
58685
58777
|
options?: {
|
|
@@ -63469,16 +63561,19 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
63469
63561
|
remote: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
63470
63562
|
url: z.ZodType<Url, z.ZodTypeDef, Url>;
|
|
63471
63563
|
strategy: z.ZodOptional<z.ZodEnum<["beforeInteractive", "afterInteractive", "lazyOnload"]>>;
|
|
63564
|
+
disableSri: z.ZodOptional<z.ZodBoolean>;
|
|
63472
63565
|
}, "strip", z.ZodTypeAny, {
|
|
63473
63566
|
url: string & {
|
|
63474
63567
|
Url: void;
|
|
63475
63568
|
};
|
|
63476
63569
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
63570
|
+
disableSri?: boolean | undefined;
|
|
63477
63571
|
}, {
|
|
63478
63572
|
url: string & {
|
|
63479
63573
|
Url: void;
|
|
63480
63574
|
};
|
|
63481
63575
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
63576
|
+
disableSri?: boolean | undefined;
|
|
63482
63577
|
}>, "many">>;
|
|
63483
63578
|
files: z.ZodArray<z.ZodObject<{
|
|
63484
63579
|
fileId: z.ZodType<import("./shared").FileId, z.ZodTypeDef, import("./shared").FileId>;
|
|
@@ -63508,6 +63603,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
63508
63603
|
Url: void;
|
|
63509
63604
|
};
|
|
63510
63605
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
63606
|
+
disableSri?: boolean | undefined;
|
|
63511
63607
|
}[] | undefined;
|
|
63512
63608
|
}, {
|
|
63513
63609
|
files: {
|
|
@@ -63522,6 +63618,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
63522
63618
|
Url: void;
|
|
63523
63619
|
};
|
|
63524
63620
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
63621
|
+
disableSri?: boolean | undefined;
|
|
63525
63622
|
}[] | undefined;
|
|
63526
63623
|
}>>;
|
|
63527
63624
|
aiChatConfig: z.ZodOptional<z.ZodObject<{
|
|
@@ -63538,6 +63635,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
63538
63635
|
url: string;
|
|
63539
63636
|
title?: string | undefined;
|
|
63540
63637
|
}>, "many">>;
|
|
63638
|
+
maskPii: z.ZodOptional<z.ZodBoolean>;
|
|
63541
63639
|
}, "strip", z.ZodTypeAny, {
|
|
63542
63640
|
model?: "claude-3.5" | "claude-3.7" | "claude-4" | "command-a" | undefined;
|
|
63543
63641
|
systemPrompt?: string | undefined;
|
|
@@ -63546,6 +63644,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
63546
63644
|
url: string;
|
|
63547
63645
|
title?: string | undefined;
|
|
63548
63646
|
}[] | undefined;
|
|
63647
|
+
maskPii?: boolean | undefined;
|
|
63549
63648
|
}, {
|
|
63550
63649
|
model?: "claude-3.5" | "claude-3.7" | "claude-4" | "command-a" | undefined;
|
|
63551
63650
|
systemPrompt?: string | undefined;
|
|
@@ -63554,6 +63653,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
63554
63653
|
url: string;
|
|
63555
63654
|
title?: string | undefined;
|
|
63556
63655
|
}[] | undefined;
|
|
63656
|
+
maskPii?: boolean | undefined;
|
|
63557
63657
|
}>>;
|
|
63558
63658
|
pageActions: z.ZodOptional<z.ZodObject<{
|
|
63559
63659
|
default: z.ZodOptional<z.ZodEnum<["copyPage", "viewAsMarkdown", "askAi", "openAi", "claude", "cursor", "claudeCode", "vscode", "installSkills"]>>;
|
|
@@ -64184,6 +64284,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
64184
64284
|
Url: void;
|
|
64185
64285
|
};
|
|
64186
64286
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
64287
|
+
disableSri?: boolean | undefined;
|
|
64187
64288
|
}[] | undefined;
|
|
64188
64289
|
} | undefined;
|
|
64189
64290
|
header?: string | undefined;
|
|
@@ -65165,6 +65266,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
65165
65266
|
url: string;
|
|
65166
65267
|
title?: string | undefined;
|
|
65167
65268
|
}[] | undefined;
|
|
65269
|
+
maskPii?: boolean | undefined;
|
|
65168
65270
|
} | undefined;
|
|
65169
65271
|
pageActions?: {
|
|
65170
65272
|
options?: {
|
|
@@ -65294,6 +65396,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
65294
65396
|
Url: void;
|
|
65295
65397
|
};
|
|
65296
65398
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
65399
|
+
disableSri?: boolean | undefined;
|
|
65297
65400
|
}[] | undefined;
|
|
65298
65401
|
} | undefined;
|
|
65299
65402
|
header?: string | undefined;
|
|
@@ -66275,6 +66378,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
66275
66378
|
url: string;
|
|
66276
66379
|
title?: string | undefined;
|
|
66277
66380
|
}[] | undefined;
|
|
66381
|
+
maskPii?: boolean | undefined;
|
|
66278
66382
|
} | undefined;
|
|
66279
66383
|
pageActions?: {
|
|
66280
66384
|
options?: {
|
|
@@ -66420,6 +66524,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
66420
66524
|
Url: void;
|
|
66421
66525
|
};
|
|
66422
66526
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
66527
|
+
disableSri?: boolean | undefined;
|
|
66423
66528
|
}[] | undefined;
|
|
66424
66529
|
} | undefined;
|
|
66425
66530
|
header?: string | undefined;
|
|
@@ -67401,6 +67506,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
67401
67506
|
url: string;
|
|
67402
67507
|
title?: string | undefined;
|
|
67403
67508
|
}[] | undefined;
|
|
67509
|
+
maskPii?: boolean | undefined;
|
|
67404
67510
|
} | undefined;
|
|
67405
67511
|
pageActions?: {
|
|
67406
67512
|
options?: {
|
|
@@ -67552,6 +67658,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
67552
67658
|
Url: void;
|
|
67553
67659
|
};
|
|
67554
67660
|
strategy?: "beforeInteractive" | "afterInteractive" | "lazyOnload" | undefined;
|
|
67661
|
+
disableSri?: boolean | undefined;
|
|
67555
67662
|
}[] | undefined;
|
|
67556
67663
|
} | undefined;
|
|
67557
67664
|
header?: string | undefined;
|
|
@@ -68533,6 +68640,7 @@ export declare const DocsDefinitionDbSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
68533
68640
|
url: string;
|
|
68534
68641
|
title?: string | undefined;
|
|
68535
68642
|
}[] | undefined;
|
|
68643
|
+
maskPii?: boolean | undefined;
|
|
68536
68644
|
} | undefined;
|
|
68537
68645
|
pageActions?: {
|
|
68538
68646
|
options?: {
|