librechat-data-provider 0.8.502 → 0.8.503
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/index.es.js +1 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/react-query/index.es.js +1 -1
- package/dist/react-query/index.es.js.map +1 -1
- package/dist/types/api-endpoints.d.ts +2 -1
- package/dist/types/bedrock.d.ts +6 -0
- package/dist/types/config.d.ts +684 -52
- package/dist/types/data-service.d.ts +5 -2
- package/dist/types/generate.d.ts +2 -0
- package/dist/types/mcp.d.ts +1304 -58
- package/dist/types/models.d.ts +22 -0
- package/dist/types/parameterSettings.d.ts +6 -0
- package/dist/types/parameterSettings.spec.d.ts +1 -0
- package/dist/types/schemas.d.ts +54 -13
- package/dist/types/types/mutations.d.ts +1 -0
- package/dist/types/types.d.ts +9 -3
- package/package.json +1 -1
package/dist/types/config.d.ts
CHANGED
|
@@ -401,6 +401,22 @@ export declare const baseEndpointSchema: z.ZodObject<{
|
|
|
401
401
|
maxToolResultChars?: number | undefined;
|
|
402
402
|
}>;
|
|
403
403
|
export type TBaseEndpoint = z.infer<typeof baseEndpointSchema>;
|
|
404
|
+
export declare const bedrockGuardrailConfigSchema: z.ZodObject<{
|
|
405
|
+
guardrailIdentifier: z.ZodString;
|
|
406
|
+
guardrailVersion: z.ZodString;
|
|
407
|
+
trace: z.ZodOptional<z.ZodEnum<["enabled", "disabled", "enabled_full"]>>;
|
|
408
|
+
streamProcessingMode: z.ZodOptional<z.ZodEnum<["sync", "async"]>>;
|
|
409
|
+
}, "strip", z.ZodTypeAny, {
|
|
410
|
+
guardrailIdentifier: string;
|
|
411
|
+
guardrailVersion: string;
|
|
412
|
+
trace?: "disabled" | "enabled" | "enabled_full" | undefined;
|
|
413
|
+
streamProcessingMode?: "async" | "sync" | undefined;
|
|
414
|
+
}, {
|
|
415
|
+
guardrailIdentifier: string;
|
|
416
|
+
guardrailVersion: string;
|
|
417
|
+
trace?: "disabled" | "enabled" | "enabled_full" | undefined;
|
|
418
|
+
streamProcessingMode?: "async" | "sync" | undefined;
|
|
419
|
+
}>;
|
|
404
420
|
export declare const bedrockEndpointSchema: z.ZodObject<{
|
|
405
421
|
streamRate: z.ZodOptional<z.ZodNumber>;
|
|
406
422
|
baseURL: z.ZodOptional<z.ZodString>;
|
|
@@ -415,6 +431,22 @@ export declare const bedrockEndpointSchema: z.ZodObject<{
|
|
|
415
431
|
} & {
|
|
416
432
|
availableRegions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
417
433
|
models: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
434
|
+
guardrailConfig: z.ZodOptional<z.ZodObject<{
|
|
435
|
+
guardrailIdentifier: z.ZodString;
|
|
436
|
+
guardrailVersion: z.ZodString;
|
|
437
|
+
trace: z.ZodOptional<z.ZodEnum<["enabled", "disabled", "enabled_full"]>>;
|
|
438
|
+
streamProcessingMode: z.ZodOptional<z.ZodEnum<["sync", "async"]>>;
|
|
439
|
+
}, "strip", z.ZodTypeAny, {
|
|
440
|
+
guardrailIdentifier: string;
|
|
441
|
+
guardrailVersion: string;
|
|
442
|
+
trace?: "disabled" | "enabled" | "enabled_full" | undefined;
|
|
443
|
+
streamProcessingMode?: "async" | "sync" | undefined;
|
|
444
|
+
}, {
|
|
445
|
+
guardrailIdentifier: string;
|
|
446
|
+
guardrailVersion: string;
|
|
447
|
+
trace?: "disabled" | "enabled" | "enabled_full" | undefined;
|
|
448
|
+
streamProcessingMode?: "async" | "sync" | undefined;
|
|
449
|
+
}>>;
|
|
418
450
|
inferenceProfiles: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
419
451
|
}, "strip", z.ZodTypeAny, {
|
|
420
452
|
baseURL?: string | undefined;
|
|
@@ -428,6 +460,12 @@ export declare const bedrockEndpointSchema: z.ZodObject<{
|
|
|
428
460
|
maxToolResultChars?: number | undefined;
|
|
429
461
|
models?: string[] | undefined;
|
|
430
462
|
availableRegions?: string[] | undefined;
|
|
463
|
+
guardrailConfig?: {
|
|
464
|
+
guardrailIdentifier: string;
|
|
465
|
+
guardrailVersion: string;
|
|
466
|
+
trace?: "disabled" | "enabled" | "enabled_full" | undefined;
|
|
467
|
+
streamProcessingMode?: "async" | "sync" | undefined;
|
|
468
|
+
} | undefined;
|
|
431
469
|
inferenceProfiles?: Record<string, string> | undefined;
|
|
432
470
|
}, {
|
|
433
471
|
baseURL?: string | undefined;
|
|
@@ -441,6 +479,12 @@ export declare const bedrockEndpointSchema: z.ZodObject<{
|
|
|
441
479
|
maxToolResultChars?: number | undefined;
|
|
442
480
|
models?: string[] | undefined;
|
|
443
481
|
availableRegions?: string[] | undefined;
|
|
482
|
+
guardrailConfig?: {
|
|
483
|
+
guardrailIdentifier: string;
|
|
484
|
+
guardrailVersion: string;
|
|
485
|
+
trace?: "disabled" | "enabled" | "enabled_full" | undefined;
|
|
486
|
+
streamProcessingMode?: "async" | "sync" | undefined;
|
|
487
|
+
} | undefined;
|
|
444
488
|
inferenceProfiles?: Record<string, string> | undefined;
|
|
445
489
|
}>;
|
|
446
490
|
export declare const assistantEndpointSchema: z.ZodObject<{
|
|
@@ -594,26 +638,26 @@ export declare const agentsEndpointSchema: z.ZodDefault<z.ZodObject<Omit<{
|
|
|
594
638
|
}, "strip", z.ZodTypeAny, {
|
|
595
639
|
enabled: boolean;
|
|
596
640
|
scope?: string | undefined;
|
|
597
|
-
issuer?: string | undefined;
|
|
598
641
|
audience?: string | undefined;
|
|
642
|
+
issuer?: string | undefined;
|
|
599
643
|
jwksUri?: string | undefined;
|
|
600
644
|
}, {
|
|
601
645
|
enabled?: boolean | undefined;
|
|
602
646
|
scope?: string | undefined;
|
|
603
|
-
issuer?: string | undefined;
|
|
604
647
|
audience?: string | undefined;
|
|
648
|
+
issuer?: string | undefined;
|
|
605
649
|
jwksUri?: string | undefined;
|
|
606
650
|
}>, {
|
|
607
651
|
enabled: boolean;
|
|
608
652
|
scope?: string | undefined;
|
|
609
|
-
issuer?: string | undefined;
|
|
610
653
|
audience?: string | undefined;
|
|
654
|
+
issuer?: string | undefined;
|
|
611
655
|
jwksUri?: string | undefined;
|
|
612
656
|
}, {
|
|
613
657
|
enabled?: boolean | undefined;
|
|
614
658
|
scope?: string | undefined;
|
|
615
|
-
issuer?: string | undefined;
|
|
616
659
|
audience?: string | undefined;
|
|
660
|
+
issuer?: string | undefined;
|
|
617
661
|
jwksUri?: string | undefined;
|
|
618
662
|
}>>;
|
|
619
663
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -623,8 +667,8 @@ export declare const agentsEndpointSchema: z.ZodDefault<z.ZodObject<Omit<{
|
|
|
623
667
|
oidc?: {
|
|
624
668
|
enabled: boolean;
|
|
625
669
|
scope?: string | undefined;
|
|
626
|
-
issuer?: string | undefined;
|
|
627
670
|
audience?: string | undefined;
|
|
671
|
+
issuer?: string | undefined;
|
|
628
672
|
jwksUri?: string | undefined;
|
|
629
673
|
} | undefined;
|
|
630
674
|
}, {
|
|
@@ -634,8 +678,8 @@ export declare const agentsEndpointSchema: z.ZodDefault<z.ZodObject<Omit<{
|
|
|
634
678
|
oidc?: {
|
|
635
679
|
enabled?: boolean | undefined;
|
|
636
680
|
scope?: string | undefined;
|
|
637
|
-
issuer?: string | undefined;
|
|
638
681
|
audience?: string | undefined;
|
|
682
|
+
issuer?: string | undefined;
|
|
639
683
|
jwksUri?: string | undefined;
|
|
640
684
|
} | undefined;
|
|
641
685
|
}>>;
|
|
@@ -647,8 +691,8 @@ export declare const agentsEndpointSchema: z.ZodDefault<z.ZodObject<Omit<{
|
|
|
647
691
|
oidc?: {
|
|
648
692
|
enabled: boolean;
|
|
649
693
|
scope?: string | undefined;
|
|
650
|
-
issuer?: string | undefined;
|
|
651
694
|
audience?: string | undefined;
|
|
695
|
+
issuer?: string | undefined;
|
|
652
696
|
jwksUri?: string | undefined;
|
|
653
697
|
} | undefined;
|
|
654
698
|
} | undefined;
|
|
@@ -660,8 +704,8 @@ export declare const agentsEndpointSchema: z.ZodDefault<z.ZodObject<Omit<{
|
|
|
660
704
|
oidc?: {
|
|
661
705
|
enabled?: boolean | undefined;
|
|
662
706
|
scope?: string | undefined;
|
|
663
|
-
issuer?: string | undefined;
|
|
664
707
|
audience?: string | undefined;
|
|
708
|
+
issuer?: string | undefined;
|
|
665
709
|
jwksUri?: string | undefined;
|
|
666
710
|
} | undefined;
|
|
667
711
|
} | undefined;
|
|
@@ -691,8 +735,8 @@ export declare const agentsEndpointSchema: z.ZodDefault<z.ZodObject<Omit<{
|
|
|
691
735
|
oidc?: {
|
|
692
736
|
enabled: boolean;
|
|
693
737
|
scope?: string | undefined;
|
|
694
|
-
issuer?: string | undefined;
|
|
695
738
|
audience?: string | undefined;
|
|
739
|
+
issuer?: string | undefined;
|
|
696
740
|
jwksUri?: string | undefined;
|
|
697
741
|
} | undefined;
|
|
698
742
|
} | undefined;
|
|
@@ -722,8 +766,8 @@ export declare const agentsEndpointSchema: z.ZodDefault<z.ZodObject<Omit<{
|
|
|
722
766
|
oidc?: {
|
|
723
767
|
enabled?: boolean | undefined;
|
|
724
768
|
scope?: string | undefined;
|
|
725
|
-
issuer?: string | undefined;
|
|
726
769
|
audience?: string | undefined;
|
|
770
|
+
issuer?: string | undefined;
|
|
727
771
|
jwksUri?: string | undefined;
|
|
728
772
|
} | undefined;
|
|
729
773
|
} | undefined;
|
|
@@ -1767,6 +1811,10 @@ declare const mcpServersSchema: z.ZodOptional<z.ZodObject<{
|
|
|
1767
1811
|
} | undefined;
|
|
1768
1812
|
}>>;
|
|
1769
1813
|
export type TMcpServersConfig = z.infer<typeof mcpServersSchema>;
|
|
1814
|
+
export declare enum RetentionMode {
|
|
1815
|
+
ALL = "all",
|
|
1816
|
+
TEMPORARY = "temporary"
|
|
1817
|
+
}
|
|
1770
1818
|
export declare const interfaceSchema: z.ZodDefault<z.ZodObject<{
|
|
1771
1819
|
privacyPolicy: z.ZodOptional<z.ZodObject<{
|
|
1772
1820
|
externalUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -1876,6 +1924,7 @@ export declare const interfaceSchema: z.ZodDefault<z.ZodObject<{
|
|
|
1876
1924
|
temporaryChat: z.ZodOptional<z.ZodBoolean>;
|
|
1877
1925
|
temporaryChatRetention: z.ZodOptional<z.ZodNumber>;
|
|
1878
1926
|
autoSubmitFromUrl: z.ZodOptional<z.ZodBoolean>;
|
|
1927
|
+
retentionMode: z.ZodDefault<z.ZodNativeEnum<typeof RetentionMode>>;
|
|
1879
1928
|
runCode: z.ZodOptional<z.ZodBoolean>;
|
|
1880
1929
|
webSearch: z.ZodOptional<z.ZodBoolean>;
|
|
1881
1930
|
peoplePicker: z.ZodOptional<z.ZodObject<{
|
|
@@ -1900,6 +1949,7 @@ export declare const interfaceSchema: z.ZodDefault<z.ZodObject<{
|
|
|
1900
1949
|
}>>;
|
|
1901
1950
|
fileSearch: z.ZodOptional<z.ZodBoolean>;
|
|
1902
1951
|
fileCitations: z.ZodOptional<z.ZodBoolean>;
|
|
1952
|
+
buildInfo: z.ZodOptional<z.ZodBoolean>;
|
|
1903
1953
|
remoteAgents: z.ZodOptional<z.ZodObject<{
|
|
1904
1954
|
use: z.ZodOptional<z.ZodBoolean>;
|
|
1905
1955
|
create: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1936,6 +1986,7 @@ export declare const interfaceSchema: z.ZodDefault<z.ZodObject<{
|
|
|
1936
1986
|
defaultActiveOnShare?: boolean | undefined;
|
|
1937
1987
|
}>]>>;
|
|
1938
1988
|
}, "strip", z.ZodTypeAny, {
|
|
1989
|
+
retentionMode: RetentionMode;
|
|
1939
1990
|
skills?: boolean | {
|
|
1940
1991
|
use?: boolean | undefined;
|
|
1941
1992
|
create?: boolean | undefined;
|
|
@@ -1999,6 +2050,7 @@ export declare const interfaceSchema: z.ZodDefault<z.ZodObject<{
|
|
|
1999
2050
|
} | undefined;
|
|
2000
2051
|
fileSearch?: boolean | undefined;
|
|
2001
2052
|
fileCitations?: boolean | undefined;
|
|
2053
|
+
buildInfo?: boolean | undefined;
|
|
2002
2054
|
remoteAgents?: {
|
|
2003
2055
|
use?: boolean | undefined;
|
|
2004
2056
|
create?: boolean | undefined;
|
|
@@ -2058,6 +2110,7 @@ export declare const interfaceSchema: z.ZodDefault<z.ZodObject<{
|
|
|
2058
2110
|
temporaryChat?: boolean | undefined;
|
|
2059
2111
|
temporaryChatRetention?: number | undefined;
|
|
2060
2112
|
autoSubmitFromUrl?: boolean | undefined;
|
|
2113
|
+
retentionMode?: RetentionMode | undefined;
|
|
2061
2114
|
runCode?: boolean | undefined;
|
|
2062
2115
|
peoplePicker?: {
|
|
2063
2116
|
users?: boolean | undefined;
|
|
@@ -2069,6 +2122,7 @@ export declare const interfaceSchema: z.ZodDefault<z.ZodObject<{
|
|
|
2069
2122
|
} | undefined;
|
|
2070
2123
|
fileSearch?: boolean | undefined;
|
|
2071
2124
|
fileCitations?: boolean | undefined;
|
|
2125
|
+
buildInfo?: boolean | undefined;
|
|
2072
2126
|
remoteAgents?: {
|
|
2073
2127
|
use?: boolean | undefined;
|
|
2074
2128
|
create?: boolean | undefined;
|
|
@@ -2115,6 +2169,21 @@ export declare const turnstileSchema: z.ZodObject<{
|
|
|
2115
2169
|
} | undefined;
|
|
2116
2170
|
}>;
|
|
2117
2171
|
export type TTurnstileConfig = z.infer<typeof turnstileSchema>;
|
|
2172
|
+
export type TRumConfig = {
|
|
2173
|
+
provider: 'hyperdx';
|
|
2174
|
+
enabled: boolean;
|
|
2175
|
+
url: string;
|
|
2176
|
+
serviceName: string;
|
|
2177
|
+
authMode: 'publicToken';
|
|
2178
|
+
publicToken?: string;
|
|
2179
|
+
tracePropagationTargets?: string[];
|
|
2180
|
+
consoleCapture?: boolean;
|
|
2181
|
+
disableReplay?: boolean;
|
|
2182
|
+
advancedNetworkCapture?: boolean;
|
|
2183
|
+
sampleRate?: number;
|
|
2184
|
+
environment?: string;
|
|
2185
|
+
};
|
|
2186
|
+
export type StartupConfigContext = 'share';
|
|
2118
2187
|
export type TStartupConfig = {
|
|
2119
2188
|
appTitle: string;
|
|
2120
2189
|
socialLogins?: string[];
|
|
@@ -2155,6 +2224,7 @@ export type TStartupConfig = {
|
|
|
2155
2224
|
sharedLinksEnabled: boolean;
|
|
2156
2225
|
publicSharedLinksEnabled: boolean;
|
|
2157
2226
|
analyticsGtmId?: string;
|
|
2227
|
+
rum?: TRumConfig;
|
|
2158
2228
|
bundlerURL?: string;
|
|
2159
2229
|
staticBundlerURL?: string;
|
|
2160
2230
|
sharePointFilePickerEnabled?: boolean;
|
|
@@ -2187,6 +2257,12 @@ export type TStartupConfig = {
|
|
|
2187
2257
|
}>;
|
|
2188
2258
|
mcpPlaceholder?: string;
|
|
2189
2259
|
conversationImportMaxFileSize?: number;
|
|
2260
|
+
buildInfo?: {
|
|
2261
|
+
commit?: string | null;
|
|
2262
|
+
commitShort?: string | null;
|
|
2263
|
+
branch?: string | null;
|
|
2264
|
+
buildDate?: string | null;
|
|
2265
|
+
};
|
|
2190
2266
|
};
|
|
2191
2267
|
export declare enum OCRStrategy {
|
|
2192
2268
|
MISTRAL_OCR = "mistral_ocr",
|
|
@@ -3696,7 +3772,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3696
3772
|
chatMenu: z.ZodOptional<z.ZodBoolean>;
|
|
3697
3773
|
serverInstructions: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
3698
3774
|
requiresOAuth: z.ZodOptional<z.ZodBoolean>;
|
|
3699
|
-
oauth: z.ZodOptional<z.ZodObject<{
|
|
3775
|
+
oauth: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
3700
3776
|
authorization_url: z.ZodOptional<z.ZodString>;
|
|
3701
3777
|
token_url: z.ZodOptional<z.ZodString>;
|
|
3702
3778
|
client_id: z.ZodOptional<z.ZodString>;
|
|
@@ -3709,6 +3785,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3709
3785
|
response_types_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3710
3786
|
code_challenge_methods_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3711
3787
|
skip_code_challenge_check: z.ZodOptional<z.ZodBoolean>;
|
|
3788
|
+
audience: z.ZodOptional<z.ZodString>;
|
|
3789
|
+
forward_audience_on_refresh: z.ZodOptional<z.ZodBoolean>;
|
|
3712
3790
|
revocation_endpoint: z.ZodOptional<z.ZodString>;
|
|
3713
3791
|
revocation_endpoint_auth_methods_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3714
3792
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3724,6 +3802,42 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3724
3802
|
response_types_supported?: string[] | undefined;
|
|
3725
3803
|
code_challenge_methods_supported?: string[] | undefined;
|
|
3726
3804
|
skip_code_challenge_check?: boolean | undefined;
|
|
3805
|
+
audience?: string | undefined;
|
|
3806
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
3807
|
+
revocation_endpoint?: string | undefined;
|
|
3808
|
+
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
3809
|
+
}, {
|
|
3810
|
+
authorization_url?: string | undefined;
|
|
3811
|
+
token_url?: string | undefined;
|
|
3812
|
+
client_id?: string | undefined;
|
|
3813
|
+
client_secret?: string | undefined;
|
|
3814
|
+
scope?: string | undefined;
|
|
3815
|
+
redirect_uri?: string | undefined;
|
|
3816
|
+
token_exchange_method?: import(".").TokenExchangeMethodEnum | undefined;
|
|
3817
|
+
grant_types_supported?: string[] | undefined;
|
|
3818
|
+
token_endpoint_auth_methods_supported?: string[] | undefined;
|
|
3819
|
+
response_types_supported?: string[] | undefined;
|
|
3820
|
+
code_challenge_methods_supported?: string[] | undefined;
|
|
3821
|
+
skip_code_challenge_check?: boolean | undefined;
|
|
3822
|
+
audience?: string | undefined;
|
|
3823
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
3824
|
+
revocation_endpoint?: string | undefined;
|
|
3825
|
+
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
3826
|
+
}>, {
|
|
3827
|
+
authorization_url?: string | undefined;
|
|
3828
|
+
token_url?: string | undefined;
|
|
3829
|
+
client_id?: string | undefined;
|
|
3830
|
+
client_secret?: string | undefined;
|
|
3831
|
+
scope?: string | undefined;
|
|
3832
|
+
redirect_uri?: string | undefined;
|
|
3833
|
+
token_exchange_method?: import(".").TokenExchangeMethodEnum | undefined;
|
|
3834
|
+
grant_types_supported?: string[] | undefined;
|
|
3835
|
+
token_endpoint_auth_methods_supported?: string[] | undefined;
|
|
3836
|
+
response_types_supported?: string[] | undefined;
|
|
3837
|
+
code_challenge_methods_supported?: string[] | undefined;
|
|
3838
|
+
skip_code_challenge_check?: boolean | undefined;
|
|
3839
|
+
audience?: string | undefined;
|
|
3840
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
3727
3841
|
revocation_endpoint?: string | undefined;
|
|
3728
3842
|
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
3729
3843
|
}, {
|
|
@@ -3739,6 +3853,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3739
3853
|
response_types_supported?: string[] | undefined;
|
|
3740
3854
|
code_challenge_methods_supported?: string[] | undefined;
|
|
3741
3855
|
skip_code_challenge_check?: boolean | undefined;
|
|
3856
|
+
audience?: string | undefined;
|
|
3857
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
3742
3858
|
revocation_endpoint?: string | undefined;
|
|
3743
3859
|
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
3744
3860
|
}>>;
|
|
@@ -3808,6 +3924,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3808
3924
|
response_types_supported?: string[] | undefined;
|
|
3809
3925
|
code_challenge_methods_supported?: string[] | undefined;
|
|
3810
3926
|
skip_code_challenge_check?: boolean | undefined;
|
|
3927
|
+
audience?: string | undefined;
|
|
3928
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
3811
3929
|
revocation_endpoint?: string | undefined;
|
|
3812
3930
|
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
3813
3931
|
} | undefined;
|
|
@@ -3851,6 +3969,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3851
3969
|
response_types_supported?: string[] | undefined;
|
|
3852
3970
|
code_challenge_methods_supported?: string[] | undefined;
|
|
3853
3971
|
skip_code_challenge_check?: boolean | undefined;
|
|
3972
|
+
audience?: string | undefined;
|
|
3973
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
3854
3974
|
revocation_endpoint?: string | undefined;
|
|
3855
3975
|
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
3856
3976
|
} | undefined;
|
|
@@ -3872,7 +3992,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3872
3992
|
chatMenu: z.ZodOptional<z.ZodBoolean>;
|
|
3873
3993
|
serverInstructions: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
3874
3994
|
requiresOAuth: z.ZodOptional<z.ZodBoolean>;
|
|
3875
|
-
oauth: z.ZodOptional<z.ZodObject<{
|
|
3995
|
+
oauth: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
3876
3996
|
authorization_url: z.ZodOptional<z.ZodString>;
|
|
3877
3997
|
token_url: z.ZodOptional<z.ZodString>;
|
|
3878
3998
|
client_id: z.ZodOptional<z.ZodString>;
|
|
@@ -3885,6 +4005,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3885
4005
|
response_types_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3886
4006
|
code_challenge_methods_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3887
4007
|
skip_code_challenge_check: z.ZodOptional<z.ZodBoolean>;
|
|
4008
|
+
audience: z.ZodOptional<z.ZodString>;
|
|
4009
|
+
forward_audience_on_refresh: z.ZodOptional<z.ZodBoolean>;
|
|
3888
4010
|
revocation_endpoint: z.ZodOptional<z.ZodString>;
|
|
3889
4011
|
revocation_endpoint_auth_methods_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3890
4012
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3900,6 +4022,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3900
4022
|
response_types_supported?: string[] | undefined;
|
|
3901
4023
|
code_challenge_methods_supported?: string[] | undefined;
|
|
3902
4024
|
skip_code_challenge_check?: boolean | undefined;
|
|
4025
|
+
audience?: string | undefined;
|
|
4026
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
3903
4027
|
revocation_endpoint?: string | undefined;
|
|
3904
4028
|
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
3905
4029
|
}, {
|
|
@@ -3915,6 +4039,42 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3915
4039
|
response_types_supported?: string[] | undefined;
|
|
3916
4040
|
code_challenge_methods_supported?: string[] | undefined;
|
|
3917
4041
|
skip_code_challenge_check?: boolean | undefined;
|
|
4042
|
+
audience?: string | undefined;
|
|
4043
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
4044
|
+
revocation_endpoint?: string | undefined;
|
|
4045
|
+
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
4046
|
+
}>, {
|
|
4047
|
+
authorization_url?: string | undefined;
|
|
4048
|
+
token_url?: string | undefined;
|
|
4049
|
+
client_id?: string | undefined;
|
|
4050
|
+
client_secret?: string | undefined;
|
|
4051
|
+
scope?: string | undefined;
|
|
4052
|
+
redirect_uri?: string | undefined;
|
|
4053
|
+
token_exchange_method?: import(".").TokenExchangeMethodEnum | undefined;
|
|
4054
|
+
grant_types_supported?: string[] | undefined;
|
|
4055
|
+
token_endpoint_auth_methods_supported?: string[] | undefined;
|
|
4056
|
+
response_types_supported?: string[] | undefined;
|
|
4057
|
+
code_challenge_methods_supported?: string[] | undefined;
|
|
4058
|
+
skip_code_challenge_check?: boolean | undefined;
|
|
4059
|
+
audience?: string | undefined;
|
|
4060
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
4061
|
+
revocation_endpoint?: string | undefined;
|
|
4062
|
+
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
4063
|
+
}, {
|
|
4064
|
+
authorization_url?: string | undefined;
|
|
4065
|
+
token_url?: string | undefined;
|
|
4066
|
+
client_id?: string | undefined;
|
|
4067
|
+
client_secret?: string | undefined;
|
|
4068
|
+
scope?: string | undefined;
|
|
4069
|
+
redirect_uri?: string | undefined;
|
|
4070
|
+
token_exchange_method?: import(".").TokenExchangeMethodEnum | undefined;
|
|
4071
|
+
grant_types_supported?: string[] | undefined;
|
|
4072
|
+
token_endpoint_auth_methods_supported?: string[] | undefined;
|
|
4073
|
+
response_types_supported?: string[] | undefined;
|
|
4074
|
+
code_challenge_methods_supported?: string[] | undefined;
|
|
4075
|
+
skip_code_challenge_check?: boolean | undefined;
|
|
4076
|
+
audience?: string | undefined;
|
|
4077
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
3918
4078
|
revocation_endpoint?: string | undefined;
|
|
3919
4079
|
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
3920
4080
|
}>>;
|
|
@@ -3980,6 +4140,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3980
4140
|
response_types_supported?: string[] | undefined;
|
|
3981
4141
|
code_challenge_methods_supported?: string[] | undefined;
|
|
3982
4142
|
skip_code_challenge_check?: boolean | undefined;
|
|
4143
|
+
audience?: string | undefined;
|
|
4144
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
3983
4145
|
revocation_endpoint?: string | undefined;
|
|
3984
4146
|
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
3985
4147
|
} | undefined;
|
|
@@ -4020,6 +4182,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4020
4182
|
response_types_supported?: string[] | undefined;
|
|
4021
4183
|
code_challenge_methods_supported?: string[] | undefined;
|
|
4022
4184
|
skip_code_challenge_check?: boolean | undefined;
|
|
4185
|
+
audience?: string | undefined;
|
|
4186
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
4023
4187
|
revocation_endpoint?: string | undefined;
|
|
4024
4188
|
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
4025
4189
|
} | undefined;
|
|
@@ -4039,7 +4203,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4039
4203
|
chatMenu: z.ZodOptional<z.ZodBoolean>;
|
|
4040
4204
|
serverInstructions: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
4041
4205
|
requiresOAuth: z.ZodOptional<z.ZodBoolean>;
|
|
4042
|
-
oauth: z.ZodOptional<z.ZodObject<{
|
|
4206
|
+
oauth: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
4043
4207
|
authorization_url: z.ZodOptional<z.ZodString>;
|
|
4044
4208
|
token_url: z.ZodOptional<z.ZodString>;
|
|
4045
4209
|
client_id: z.ZodOptional<z.ZodString>;
|
|
@@ -4052,6 +4216,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4052
4216
|
response_types_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4053
4217
|
code_challenge_methods_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4054
4218
|
skip_code_challenge_check: z.ZodOptional<z.ZodBoolean>;
|
|
4219
|
+
audience: z.ZodOptional<z.ZodString>;
|
|
4220
|
+
forward_audience_on_refresh: z.ZodOptional<z.ZodBoolean>;
|
|
4055
4221
|
revocation_endpoint: z.ZodOptional<z.ZodString>;
|
|
4056
4222
|
revocation_endpoint_auth_methods_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4057
4223
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4067,6 +4233,42 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4067
4233
|
response_types_supported?: string[] | undefined;
|
|
4068
4234
|
code_challenge_methods_supported?: string[] | undefined;
|
|
4069
4235
|
skip_code_challenge_check?: boolean | undefined;
|
|
4236
|
+
audience?: string | undefined;
|
|
4237
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
4238
|
+
revocation_endpoint?: string | undefined;
|
|
4239
|
+
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
4240
|
+
}, {
|
|
4241
|
+
authorization_url?: string | undefined;
|
|
4242
|
+
token_url?: string | undefined;
|
|
4243
|
+
client_id?: string | undefined;
|
|
4244
|
+
client_secret?: string | undefined;
|
|
4245
|
+
scope?: string | undefined;
|
|
4246
|
+
redirect_uri?: string | undefined;
|
|
4247
|
+
token_exchange_method?: import(".").TokenExchangeMethodEnum | undefined;
|
|
4248
|
+
grant_types_supported?: string[] | undefined;
|
|
4249
|
+
token_endpoint_auth_methods_supported?: string[] | undefined;
|
|
4250
|
+
response_types_supported?: string[] | undefined;
|
|
4251
|
+
code_challenge_methods_supported?: string[] | undefined;
|
|
4252
|
+
skip_code_challenge_check?: boolean | undefined;
|
|
4253
|
+
audience?: string | undefined;
|
|
4254
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
4255
|
+
revocation_endpoint?: string | undefined;
|
|
4256
|
+
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
4257
|
+
}>, {
|
|
4258
|
+
authorization_url?: string | undefined;
|
|
4259
|
+
token_url?: string | undefined;
|
|
4260
|
+
client_id?: string | undefined;
|
|
4261
|
+
client_secret?: string | undefined;
|
|
4262
|
+
scope?: string | undefined;
|
|
4263
|
+
redirect_uri?: string | undefined;
|
|
4264
|
+
token_exchange_method?: import(".").TokenExchangeMethodEnum | undefined;
|
|
4265
|
+
grant_types_supported?: string[] | undefined;
|
|
4266
|
+
token_endpoint_auth_methods_supported?: string[] | undefined;
|
|
4267
|
+
response_types_supported?: string[] | undefined;
|
|
4268
|
+
code_challenge_methods_supported?: string[] | undefined;
|
|
4269
|
+
skip_code_challenge_check?: boolean | undefined;
|
|
4270
|
+
audience?: string | undefined;
|
|
4271
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
4070
4272
|
revocation_endpoint?: string | undefined;
|
|
4071
4273
|
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
4072
4274
|
}, {
|
|
@@ -4082,6 +4284,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4082
4284
|
response_types_supported?: string[] | undefined;
|
|
4083
4285
|
code_challenge_methods_supported?: string[] | undefined;
|
|
4084
4286
|
skip_code_challenge_check?: boolean | undefined;
|
|
4287
|
+
audience?: string | undefined;
|
|
4288
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
4085
4289
|
revocation_endpoint?: string | undefined;
|
|
4086
4290
|
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
4087
4291
|
}>>;
|
|
@@ -4115,6 +4319,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4115
4319
|
} & {
|
|
4116
4320
|
type: z.ZodDefault<z.ZodLiteral<"sse">>;
|
|
4117
4321
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
4322
|
+
proxy: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, z.ZodString>, string, string>>;
|
|
4118
4323
|
url: z.ZodEffects<z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, z.ZodString>, string, string>;
|
|
4119
4324
|
}, "strip", z.ZodTypeAny, {
|
|
4120
4325
|
type: "sse";
|
|
@@ -4149,6 +4354,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4149
4354
|
response_types_supported?: string[] | undefined;
|
|
4150
4355
|
code_challenge_methods_supported?: string[] | undefined;
|
|
4151
4356
|
skip_code_challenge_check?: boolean | undefined;
|
|
4357
|
+
audience?: string | undefined;
|
|
4358
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
4152
4359
|
revocation_endpoint?: string | undefined;
|
|
4153
4360
|
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
4154
4361
|
} | undefined;
|
|
@@ -4157,6 +4364,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4157
4364
|
title: string;
|
|
4158
4365
|
description: string;
|
|
4159
4366
|
}> | undefined;
|
|
4367
|
+
proxy?: string | undefined;
|
|
4160
4368
|
}, {
|
|
4161
4369
|
url: string;
|
|
4162
4370
|
title?: string | undefined;
|
|
@@ -4190,6 +4398,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4190
4398
|
response_types_supported?: string[] | undefined;
|
|
4191
4399
|
code_challenge_methods_supported?: string[] | undefined;
|
|
4192
4400
|
skip_code_challenge_check?: boolean | undefined;
|
|
4401
|
+
audience?: string | undefined;
|
|
4402
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
4193
4403
|
revocation_endpoint?: string | undefined;
|
|
4194
4404
|
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
4195
4405
|
} | undefined;
|
|
@@ -4198,6 +4408,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4198
4408
|
title: string;
|
|
4199
4409
|
description: string;
|
|
4200
4410
|
}> | undefined;
|
|
4411
|
+
proxy?: string | undefined;
|
|
4201
4412
|
}>, z.ZodObject<{
|
|
4202
4413
|
title: z.ZodOptional<z.ZodString>;
|
|
4203
4414
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -4209,7 +4420,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4209
4420
|
chatMenu: z.ZodOptional<z.ZodBoolean>;
|
|
4210
4421
|
serverInstructions: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
4211
4422
|
requiresOAuth: z.ZodOptional<z.ZodBoolean>;
|
|
4212
|
-
oauth: z.ZodOptional<z.ZodObject<{
|
|
4423
|
+
oauth: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
4213
4424
|
authorization_url: z.ZodOptional<z.ZodString>;
|
|
4214
4425
|
token_url: z.ZodOptional<z.ZodString>;
|
|
4215
4426
|
client_id: z.ZodOptional<z.ZodString>;
|
|
@@ -4222,6 +4433,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4222
4433
|
response_types_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4223
4434
|
code_challenge_methods_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4224
4435
|
skip_code_challenge_check: z.ZodOptional<z.ZodBoolean>;
|
|
4436
|
+
audience: z.ZodOptional<z.ZodString>;
|
|
4437
|
+
forward_audience_on_refresh: z.ZodOptional<z.ZodBoolean>;
|
|
4225
4438
|
revocation_endpoint: z.ZodOptional<z.ZodString>;
|
|
4226
4439
|
revocation_endpoint_auth_methods_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4227
4440
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4237,6 +4450,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4237
4450
|
response_types_supported?: string[] | undefined;
|
|
4238
4451
|
code_challenge_methods_supported?: string[] | undefined;
|
|
4239
4452
|
skip_code_challenge_check?: boolean | undefined;
|
|
4453
|
+
audience?: string | undefined;
|
|
4454
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
4240
4455
|
revocation_endpoint?: string | undefined;
|
|
4241
4456
|
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
4242
4457
|
}, {
|
|
@@ -4252,6 +4467,42 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4252
4467
|
response_types_supported?: string[] | undefined;
|
|
4253
4468
|
code_challenge_methods_supported?: string[] | undefined;
|
|
4254
4469
|
skip_code_challenge_check?: boolean | undefined;
|
|
4470
|
+
audience?: string | undefined;
|
|
4471
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
4472
|
+
revocation_endpoint?: string | undefined;
|
|
4473
|
+
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
4474
|
+
}>, {
|
|
4475
|
+
authorization_url?: string | undefined;
|
|
4476
|
+
token_url?: string | undefined;
|
|
4477
|
+
client_id?: string | undefined;
|
|
4478
|
+
client_secret?: string | undefined;
|
|
4479
|
+
scope?: string | undefined;
|
|
4480
|
+
redirect_uri?: string | undefined;
|
|
4481
|
+
token_exchange_method?: import(".").TokenExchangeMethodEnum | undefined;
|
|
4482
|
+
grant_types_supported?: string[] | undefined;
|
|
4483
|
+
token_endpoint_auth_methods_supported?: string[] | undefined;
|
|
4484
|
+
response_types_supported?: string[] | undefined;
|
|
4485
|
+
code_challenge_methods_supported?: string[] | undefined;
|
|
4486
|
+
skip_code_challenge_check?: boolean | undefined;
|
|
4487
|
+
audience?: string | undefined;
|
|
4488
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
4489
|
+
revocation_endpoint?: string | undefined;
|
|
4490
|
+
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
4491
|
+
}, {
|
|
4492
|
+
authorization_url?: string | undefined;
|
|
4493
|
+
token_url?: string | undefined;
|
|
4494
|
+
client_id?: string | undefined;
|
|
4495
|
+
client_secret?: string | undefined;
|
|
4496
|
+
scope?: string | undefined;
|
|
4497
|
+
redirect_uri?: string | undefined;
|
|
4498
|
+
token_exchange_method?: import(".").TokenExchangeMethodEnum | undefined;
|
|
4499
|
+
grant_types_supported?: string[] | undefined;
|
|
4500
|
+
token_endpoint_auth_methods_supported?: string[] | undefined;
|
|
4501
|
+
response_types_supported?: string[] | undefined;
|
|
4502
|
+
code_challenge_methods_supported?: string[] | undefined;
|
|
4503
|
+
skip_code_challenge_check?: boolean | undefined;
|
|
4504
|
+
audience?: string | undefined;
|
|
4505
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
4255
4506
|
revocation_endpoint?: string | undefined;
|
|
4256
4507
|
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
4257
4508
|
}>>;
|
|
@@ -4285,6 +4536,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4285
4536
|
} & {
|
|
4286
4537
|
type: z.ZodUnion<[z.ZodLiteral<"streamable-http">, z.ZodLiteral<"http">]>;
|
|
4287
4538
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
4539
|
+
proxy: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, z.ZodString>, string, string>>;
|
|
4288
4540
|
url: z.ZodEffects<z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, z.ZodString>, string, string>;
|
|
4289
4541
|
}, "strip", z.ZodTypeAny, {
|
|
4290
4542
|
type: "streamable-http" | "http";
|
|
@@ -4319,6 +4571,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4319
4571
|
response_types_supported?: string[] | undefined;
|
|
4320
4572
|
code_challenge_methods_supported?: string[] | undefined;
|
|
4321
4573
|
skip_code_challenge_check?: boolean | undefined;
|
|
4574
|
+
audience?: string | undefined;
|
|
4575
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
4322
4576
|
revocation_endpoint?: string | undefined;
|
|
4323
4577
|
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
4324
4578
|
} | undefined;
|
|
@@ -4327,6 +4581,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4327
4581
|
title: string;
|
|
4328
4582
|
description: string;
|
|
4329
4583
|
}> | undefined;
|
|
4584
|
+
proxy?: string | undefined;
|
|
4330
4585
|
}, {
|
|
4331
4586
|
type: "streamable-http" | "http";
|
|
4332
4587
|
url: string;
|
|
@@ -4360,6 +4615,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4360
4615
|
response_types_supported?: string[] | undefined;
|
|
4361
4616
|
code_challenge_methods_supported?: string[] | undefined;
|
|
4362
4617
|
skip_code_challenge_check?: boolean | undefined;
|
|
4618
|
+
audience?: string | undefined;
|
|
4619
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
4363
4620
|
revocation_endpoint?: string | undefined;
|
|
4364
4621
|
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
4365
4622
|
} | undefined;
|
|
@@ -4368,6 +4625,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4368
4625
|
title: string;
|
|
4369
4626
|
description: string;
|
|
4370
4627
|
}> | undefined;
|
|
4628
|
+
proxy?: string | undefined;
|
|
4371
4629
|
}>]>>>;
|
|
4372
4630
|
mcpSettings: z.ZodOptional<z.ZodObject<{
|
|
4373
4631
|
allowedDomains: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -4488,6 +4746,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4488
4746
|
temporaryChat: z.ZodOptional<z.ZodBoolean>;
|
|
4489
4747
|
temporaryChatRetention: z.ZodOptional<z.ZodNumber>;
|
|
4490
4748
|
autoSubmitFromUrl: z.ZodOptional<z.ZodBoolean>;
|
|
4749
|
+
retentionMode: z.ZodDefault<z.ZodNativeEnum<typeof RetentionMode>>;
|
|
4491
4750
|
runCode: z.ZodOptional<z.ZodBoolean>;
|
|
4492
4751
|
webSearch: z.ZodOptional<z.ZodBoolean>;
|
|
4493
4752
|
peoplePicker: z.ZodOptional<z.ZodObject<{
|
|
@@ -4512,6 +4771,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4512
4771
|
}>>;
|
|
4513
4772
|
fileSearch: z.ZodOptional<z.ZodBoolean>;
|
|
4514
4773
|
fileCitations: z.ZodOptional<z.ZodBoolean>;
|
|
4774
|
+
buildInfo: z.ZodOptional<z.ZodBoolean>;
|
|
4515
4775
|
remoteAgents: z.ZodOptional<z.ZodObject<{
|
|
4516
4776
|
use: z.ZodOptional<z.ZodBoolean>;
|
|
4517
4777
|
create: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4548,6 +4808,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4548
4808
|
defaultActiveOnShare?: boolean | undefined;
|
|
4549
4809
|
}>]>>;
|
|
4550
4810
|
}, "strip", z.ZodTypeAny, {
|
|
4811
|
+
retentionMode: RetentionMode;
|
|
4551
4812
|
skills?: boolean | {
|
|
4552
4813
|
use?: boolean | undefined;
|
|
4553
4814
|
create?: boolean | undefined;
|
|
@@ -4611,6 +4872,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4611
4872
|
} | undefined;
|
|
4612
4873
|
fileSearch?: boolean | undefined;
|
|
4613
4874
|
fileCitations?: boolean | undefined;
|
|
4875
|
+
buildInfo?: boolean | undefined;
|
|
4614
4876
|
remoteAgents?: {
|
|
4615
4877
|
use?: boolean | undefined;
|
|
4616
4878
|
create?: boolean | undefined;
|
|
@@ -4670,6 +4932,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4670
4932
|
temporaryChat?: boolean | undefined;
|
|
4671
4933
|
temporaryChatRetention?: number | undefined;
|
|
4672
4934
|
autoSubmitFromUrl?: boolean | undefined;
|
|
4935
|
+
retentionMode?: RetentionMode | undefined;
|
|
4673
4936
|
runCode?: boolean | undefined;
|
|
4674
4937
|
peoplePicker?: {
|
|
4675
4938
|
users?: boolean | undefined;
|
|
@@ -4681,6 +4944,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4681
4944
|
} | undefined;
|
|
4682
4945
|
fileSearch?: boolean | undefined;
|
|
4683
4946
|
fileCitations?: boolean | undefined;
|
|
4947
|
+
buildInfo?: boolean | undefined;
|
|
4684
4948
|
remoteAgents?: {
|
|
4685
4949
|
use?: boolean | undefined;
|
|
4686
4950
|
create?: boolean | undefined;
|
|
@@ -5594,6 +5858,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5594
5858
|
greeting: z.ZodOptional<z.ZodString>;
|
|
5595
5859
|
endpointType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof EModelEndpoint>>>;
|
|
5596
5860
|
expiredAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5861
|
+
isTemporary: z.ZodOptional<z.ZodBoolean>;
|
|
5597
5862
|
messages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
5598
5863
|
isArchived: z.ZodOptional<z.ZodBoolean>;
|
|
5599
5864
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -5791,6 +6056,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5791
6056
|
iconURL?: string | null | undefined;
|
|
5792
6057
|
greeting?: string | undefined;
|
|
5793
6058
|
endpointType?: EModelEndpoint | null | undefined;
|
|
6059
|
+
isTemporary?: boolean | undefined;
|
|
5794
6060
|
tools?: string[] | {
|
|
5795
6061
|
name: string;
|
|
5796
6062
|
pluginKey: string;
|
|
@@ -5885,6 +6151,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5885
6151
|
iconURL?: string | null | undefined;
|
|
5886
6152
|
greeting?: string | undefined;
|
|
5887
6153
|
endpointType?: EModelEndpoint | null | undefined;
|
|
6154
|
+
isTemporary?: boolean | undefined;
|
|
5888
6155
|
tools?: string[] | {
|
|
5889
6156
|
name: string;
|
|
5890
6157
|
pluginKey: string;
|
|
@@ -5984,6 +6251,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5984
6251
|
showIconInHeader: z.ZodOptional<z.ZodBoolean>;
|
|
5985
6252
|
iconURL: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<typeof EModelEndpoint>]>>;
|
|
5986
6253
|
authType: z.ZodOptional<z.ZodNativeEnum<typeof import("./schemas").AuthType>>;
|
|
6254
|
+
hideBadgeRow: z.ZodOptional<z.ZodBoolean>;
|
|
5987
6255
|
webSearch: z.ZodOptional<z.ZodBoolean>;
|
|
5988
6256
|
fileSearch: z.ZodOptional<z.ZodBoolean>;
|
|
5989
6257
|
executeCode: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5997,6 +6265,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
5997
6265
|
iconURL?: string | null | undefined;
|
|
5998
6266
|
greeting?: string | undefined;
|
|
5999
6267
|
endpointType?: EModelEndpoint | null | undefined;
|
|
6268
|
+
isTemporary?: boolean | undefined;
|
|
6000
6269
|
tools?: string[] | {
|
|
6001
6270
|
name: string;
|
|
6002
6271
|
pluginKey: string;
|
|
@@ -6100,6 +6369,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6100
6369
|
showIconInMenu?: boolean | undefined;
|
|
6101
6370
|
showIconInHeader?: boolean | undefined;
|
|
6102
6371
|
authType?: import("./schemas").AuthType | undefined;
|
|
6372
|
+
hideBadgeRow?: boolean | undefined;
|
|
6103
6373
|
executeCode?: boolean | undefined;
|
|
6104
6374
|
}, {
|
|
6105
6375
|
label: string;
|
|
@@ -6109,6 +6379,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6109
6379
|
iconURL?: string | null | undefined;
|
|
6110
6380
|
greeting?: string | undefined;
|
|
6111
6381
|
endpointType?: EModelEndpoint | null | undefined;
|
|
6382
|
+
isTemporary?: boolean | undefined;
|
|
6112
6383
|
tools?: string[] | {
|
|
6113
6384
|
name: string;
|
|
6114
6385
|
pluginKey: string;
|
|
@@ -6212,6 +6483,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6212
6483
|
showIconInMenu?: boolean | undefined;
|
|
6213
6484
|
showIconInHeader?: boolean | undefined;
|
|
6214
6485
|
authType?: import("./schemas").AuthType | undefined;
|
|
6486
|
+
hideBadgeRow?: boolean | undefined;
|
|
6215
6487
|
executeCode?: boolean | undefined;
|
|
6216
6488
|
}>, "many">>;
|
|
6217
6489
|
addedEndpoints: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<typeof EModelEndpoint>]>, "many">>;
|
|
@@ -6226,6 +6498,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6226
6498
|
iconURL?: string | null | undefined;
|
|
6227
6499
|
greeting?: string | undefined;
|
|
6228
6500
|
endpointType?: EModelEndpoint | null | undefined;
|
|
6501
|
+
isTemporary?: boolean | undefined;
|
|
6229
6502
|
tools?: string[] | {
|
|
6230
6503
|
name: string;
|
|
6231
6504
|
pluginKey: string;
|
|
@@ -6329,6 +6602,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6329
6602
|
showIconInMenu?: boolean | undefined;
|
|
6330
6603
|
showIconInHeader?: boolean | undefined;
|
|
6331
6604
|
authType?: import("./schemas").AuthType | undefined;
|
|
6605
|
+
hideBadgeRow?: boolean | undefined;
|
|
6332
6606
|
executeCode?: boolean | undefined;
|
|
6333
6607
|
}[];
|
|
6334
6608
|
addedEndpoints?: string[] | undefined;
|
|
@@ -6343,6 +6617,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6343
6617
|
iconURL?: string | null | undefined;
|
|
6344
6618
|
greeting?: string | undefined;
|
|
6345
6619
|
endpointType?: EModelEndpoint | null | undefined;
|
|
6620
|
+
isTemporary?: boolean | undefined;
|
|
6346
6621
|
tools?: string[] | {
|
|
6347
6622
|
name: string;
|
|
6348
6623
|
pluginKey: string;
|
|
@@ -6446,6 +6721,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
6446
6721
|
showIconInMenu?: boolean | undefined;
|
|
6447
6722
|
showIconInHeader?: boolean | undefined;
|
|
6448
6723
|
authType?: import("./schemas").AuthType | undefined;
|
|
6724
|
+
hideBadgeRow?: boolean | undefined;
|
|
6449
6725
|
executeCode?: boolean | undefined;
|
|
6450
6726
|
}[] | undefined;
|
|
6451
6727
|
addedEndpoints?: string[] | undefined;
|
|
@@ -7030,26 +7306,26 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7030
7306
|
}, "strip", z.ZodTypeAny, {
|
|
7031
7307
|
enabled: boolean;
|
|
7032
7308
|
scope?: string | undefined;
|
|
7033
|
-
issuer?: string | undefined;
|
|
7034
7309
|
audience?: string | undefined;
|
|
7310
|
+
issuer?: string | undefined;
|
|
7035
7311
|
jwksUri?: string | undefined;
|
|
7036
7312
|
}, {
|
|
7037
7313
|
enabled?: boolean | undefined;
|
|
7038
7314
|
scope?: string | undefined;
|
|
7039
|
-
issuer?: string | undefined;
|
|
7040
7315
|
audience?: string | undefined;
|
|
7316
|
+
issuer?: string | undefined;
|
|
7041
7317
|
jwksUri?: string | undefined;
|
|
7042
7318
|
}>, {
|
|
7043
7319
|
enabled: boolean;
|
|
7044
7320
|
scope?: string | undefined;
|
|
7045
|
-
issuer?: string | undefined;
|
|
7046
7321
|
audience?: string | undefined;
|
|
7322
|
+
issuer?: string | undefined;
|
|
7047
7323
|
jwksUri?: string | undefined;
|
|
7048
7324
|
}, {
|
|
7049
7325
|
enabled?: boolean | undefined;
|
|
7050
7326
|
scope?: string | undefined;
|
|
7051
|
-
issuer?: string | undefined;
|
|
7052
7327
|
audience?: string | undefined;
|
|
7328
|
+
issuer?: string | undefined;
|
|
7053
7329
|
jwksUri?: string | undefined;
|
|
7054
7330
|
}>>;
|
|
7055
7331
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -7059,8 +7335,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7059
7335
|
oidc?: {
|
|
7060
7336
|
enabled: boolean;
|
|
7061
7337
|
scope?: string | undefined;
|
|
7062
|
-
issuer?: string | undefined;
|
|
7063
7338
|
audience?: string | undefined;
|
|
7339
|
+
issuer?: string | undefined;
|
|
7064
7340
|
jwksUri?: string | undefined;
|
|
7065
7341
|
} | undefined;
|
|
7066
7342
|
}, {
|
|
@@ -7070,8 +7346,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7070
7346
|
oidc?: {
|
|
7071
7347
|
enabled?: boolean | undefined;
|
|
7072
7348
|
scope?: string | undefined;
|
|
7073
|
-
issuer?: string | undefined;
|
|
7074
7349
|
audience?: string | undefined;
|
|
7350
|
+
issuer?: string | undefined;
|
|
7075
7351
|
jwksUri?: string | undefined;
|
|
7076
7352
|
} | undefined;
|
|
7077
7353
|
}>>;
|
|
@@ -7083,8 +7359,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7083
7359
|
oidc?: {
|
|
7084
7360
|
enabled: boolean;
|
|
7085
7361
|
scope?: string | undefined;
|
|
7086
|
-
issuer?: string | undefined;
|
|
7087
7362
|
audience?: string | undefined;
|
|
7363
|
+
issuer?: string | undefined;
|
|
7088
7364
|
jwksUri?: string | undefined;
|
|
7089
7365
|
} | undefined;
|
|
7090
7366
|
} | undefined;
|
|
@@ -7096,8 +7372,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7096
7372
|
oidc?: {
|
|
7097
7373
|
enabled?: boolean | undefined;
|
|
7098
7374
|
scope?: string | undefined;
|
|
7099
|
-
issuer?: string | undefined;
|
|
7100
7375
|
audience?: string | undefined;
|
|
7376
|
+
issuer?: string | undefined;
|
|
7101
7377
|
jwksUri?: string | undefined;
|
|
7102
7378
|
} | undefined;
|
|
7103
7379
|
} | undefined;
|
|
@@ -7127,8 +7403,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7127
7403
|
oidc?: {
|
|
7128
7404
|
enabled: boolean;
|
|
7129
7405
|
scope?: string | undefined;
|
|
7130
|
-
issuer?: string | undefined;
|
|
7131
7406
|
audience?: string | undefined;
|
|
7407
|
+
issuer?: string | undefined;
|
|
7132
7408
|
jwksUri?: string | undefined;
|
|
7133
7409
|
} | undefined;
|
|
7134
7410
|
} | undefined;
|
|
@@ -7158,8 +7434,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7158
7434
|
oidc?: {
|
|
7159
7435
|
enabled?: boolean | undefined;
|
|
7160
7436
|
scope?: string | undefined;
|
|
7161
|
-
issuer?: string | undefined;
|
|
7162
7437
|
audience?: string | undefined;
|
|
7438
|
+
issuer?: string | undefined;
|
|
7163
7439
|
jwksUri?: string | undefined;
|
|
7164
7440
|
} | undefined;
|
|
7165
7441
|
} | undefined;
|
|
@@ -7538,6 +7814,22 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7538
7814
|
} & {
|
|
7539
7815
|
availableRegions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
7540
7816
|
models: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
7817
|
+
guardrailConfig: z.ZodOptional<z.ZodObject<{
|
|
7818
|
+
guardrailIdentifier: z.ZodString;
|
|
7819
|
+
guardrailVersion: z.ZodString;
|
|
7820
|
+
trace: z.ZodOptional<z.ZodEnum<["enabled", "disabled", "enabled_full"]>>;
|
|
7821
|
+
streamProcessingMode: z.ZodOptional<z.ZodEnum<["sync", "async"]>>;
|
|
7822
|
+
}, "strip", z.ZodTypeAny, {
|
|
7823
|
+
guardrailIdentifier: string;
|
|
7824
|
+
guardrailVersion: string;
|
|
7825
|
+
trace?: "disabled" | "enabled" | "enabled_full" | undefined;
|
|
7826
|
+
streamProcessingMode?: "async" | "sync" | undefined;
|
|
7827
|
+
}, {
|
|
7828
|
+
guardrailIdentifier: string;
|
|
7829
|
+
guardrailVersion: string;
|
|
7830
|
+
trace?: "disabled" | "enabled" | "enabled_full" | undefined;
|
|
7831
|
+
streamProcessingMode?: "async" | "sync" | undefined;
|
|
7832
|
+
}>>;
|
|
7541
7833
|
inferenceProfiles: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
7542
7834
|
}, "strip", z.ZodTypeAny, {
|
|
7543
7835
|
baseURL?: string | undefined;
|
|
@@ -7551,6 +7843,12 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7551
7843
|
maxToolResultChars?: number | undefined;
|
|
7552
7844
|
models?: string[] | undefined;
|
|
7553
7845
|
availableRegions?: string[] | undefined;
|
|
7846
|
+
guardrailConfig?: {
|
|
7847
|
+
guardrailIdentifier: string;
|
|
7848
|
+
guardrailVersion: string;
|
|
7849
|
+
trace?: "disabled" | "enabled" | "enabled_full" | undefined;
|
|
7850
|
+
streamProcessingMode?: "async" | "sync" | undefined;
|
|
7851
|
+
} | undefined;
|
|
7554
7852
|
inferenceProfiles?: Record<string, string> | undefined;
|
|
7555
7853
|
}, {
|
|
7556
7854
|
baseURL?: string | undefined;
|
|
@@ -7564,6 +7862,12 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7564
7862
|
maxToolResultChars?: number | undefined;
|
|
7565
7863
|
models?: string[] | undefined;
|
|
7566
7864
|
availableRegions?: string[] | undefined;
|
|
7865
|
+
guardrailConfig?: {
|
|
7866
|
+
guardrailIdentifier: string;
|
|
7867
|
+
guardrailVersion: string;
|
|
7868
|
+
trace?: "disabled" | "enabled" | "enabled_full" | undefined;
|
|
7869
|
+
streamProcessingMode?: "async" | "sync" | undefined;
|
|
7870
|
+
} | undefined;
|
|
7567
7871
|
inferenceProfiles?: Record<string, string> | undefined;
|
|
7568
7872
|
}>>;
|
|
7569
7873
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -7726,8 +8030,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7726
8030
|
oidc?: {
|
|
7727
8031
|
enabled: boolean;
|
|
7728
8032
|
scope?: string | undefined;
|
|
7729
|
-
issuer?: string | undefined;
|
|
7730
8033
|
audience?: string | undefined;
|
|
8034
|
+
issuer?: string | undefined;
|
|
7731
8035
|
jwksUri?: string | undefined;
|
|
7732
8036
|
} | undefined;
|
|
7733
8037
|
} | undefined;
|
|
@@ -7810,6 +8114,12 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7810
8114
|
maxToolResultChars?: number | undefined;
|
|
7811
8115
|
models?: string[] | undefined;
|
|
7812
8116
|
availableRegions?: string[] | undefined;
|
|
8117
|
+
guardrailConfig?: {
|
|
8118
|
+
guardrailIdentifier: string;
|
|
8119
|
+
guardrailVersion: string;
|
|
8120
|
+
trace?: "disabled" | "enabled" | "enabled_full" | undefined;
|
|
8121
|
+
streamProcessingMode?: "async" | "sync" | undefined;
|
|
8122
|
+
} | undefined;
|
|
7813
8123
|
inferenceProfiles?: Record<string, string> | undefined;
|
|
7814
8124
|
} | undefined;
|
|
7815
8125
|
all?: {
|
|
@@ -7982,8 +8292,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
7982
8292
|
oidc?: {
|
|
7983
8293
|
enabled?: boolean | undefined;
|
|
7984
8294
|
scope?: string | undefined;
|
|
7985
|
-
issuer?: string | undefined;
|
|
7986
8295
|
audience?: string | undefined;
|
|
8296
|
+
issuer?: string | undefined;
|
|
7987
8297
|
jwksUri?: string | undefined;
|
|
7988
8298
|
} | undefined;
|
|
7989
8299
|
} | undefined;
|
|
@@ -8066,6 +8376,12 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8066
8376
|
maxToolResultChars?: number | undefined;
|
|
8067
8377
|
models?: string[] | undefined;
|
|
8068
8378
|
availableRegions?: string[] | undefined;
|
|
8379
|
+
guardrailConfig?: {
|
|
8380
|
+
guardrailIdentifier: string;
|
|
8381
|
+
guardrailVersion: string;
|
|
8382
|
+
trace?: "disabled" | "enabled" | "enabled_full" | undefined;
|
|
8383
|
+
streamProcessingMode?: "async" | "sync" | undefined;
|
|
8384
|
+
} | undefined;
|
|
8069
8385
|
inferenceProfiles?: Record<string, string> | undefined;
|
|
8070
8386
|
} | undefined;
|
|
8071
8387
|
all?: {
|
|
@@ -8238,8 +8554,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8238
8554
|
oidc?: {
|
|
8239
8555
|
enabled: boolean;
|
|
8240
8556
|
scope?: string | undefined;
|
|
8241
|
-
issuer?: string | undefined;
|
|
8242
8557
|
audience?: string | undefined;
|
|
8558
|
+
issuer?: string | undefined;
|
|
8243
8559
|
jwksUri?: string | undefined;
|
|
8244
8560
|
} | undefined;
|
|
8245
8561
|
} | undefined;
|
|
@@ -8322,6 +8638,12 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8322
8638
|
maxToolResultChars?: number | undefined;
|
|
8323
8639
|
models?: string[] | undefined;
|
|
8324
8640
|
availableRegions?: string[] | undefined;
|
|
8641
|
+
guardrailConfig?: {
|
|
8642
|
+
guardrailIdentifier: string;
|
|
8643
|
+
guardrailVersion: string;
|
|
8644
|
+
trace?: "disabled" | "enabled" | "enabled_full" | undefined;
|
|
8645
|
+
streamProcessingMode?: "async" | "sync" | undefined;
|
|
8646
|
+
} | undefined;
|
|
8325
8647
|
inferenceProfiles?: Record<string, string> | undefined;
|
|
8326
8648
|
} | undefined;
|
|
8327
8649
|
all?: {
|
|
@@ -8494,8 +8816,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8494
8816
|
oidc?: {
|
|
8495
8817
|
enabled?: boolean | undefined;
|
|
8496
8818
|
scope?: string | undefined;
|
|
8497
|
-
issuer?: string | undefined;
|
|
8498
8819
|
audience?: string | undefined;
|
|
8820
|
+
issuer?: string | undefined;
|
|
8499
8821
|
jwksUri?: string | undefined;
|
|
8500
8822
|
} | undefined;
|
|
8501
8823
|
} | undefined;
|
|
@@ -8578,6 +8900,12 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8578
8900
|
maxToolResultChars?: number | undefined;
|
|
8579
8901
|
models?: string[] | undefined;
|
|
8580
8902
|
availableRegions?: string[] | undefined;
|
|
8903
|
+
guardrailConfig?: {
|
|
8904
|
+
guardrailIdentifier: string;
|
|
8905
|
+
guardrailVersion: string;
|
|
8906
|
+
trace?: "disabled" | "enabled" | "enabled_full" | undefined;
|
|
8907
|
+
streamProcessingMode?: "async" | "sync" | undefined;
|
|
8908
|
+
} | undefined;
|
|
8581
8909
|
inferenceProfiles?: Record<string, string> | undefined;
|
|
8582
8910
|
} | undefined;
|
|
8583
8911
|
all?: {
|
|
@@ -8596,6 +8924,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8596
8924
|
cache: boolean;
|
|
8597
8925
|
imageOutputType: EImageOutputType;
|
|
8598
8926
|
interface: {
|
|
8927
|
+
retentionMode: RetentionMode;
|
|
8599
8928
|
skills?: boolean | {
|
|
8600
8929
|
use?: boolean | undefined;
|
|
8601
8930
|
create?: boolean | undefined;
|
|
@@ -8659,6 +8988,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8659
8988
|
} | undefined;
|
|
8660
8989
|
fileSearch?: boolean | undefined;
|
|
8661
8990
|
fileCitations?: boolean | undefined;
|
|
8991
|
+
buildInfo?: boolean | undefined;
|
|
8662
8992
|
remoteAgents?: {
|
|
8663
8993
|
use?: boolean | undefined;
|
|
8664
8994
|
create?: boolean | undefined;
|
|
@@ -8839,6 +9169,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8839
9169
|
response_types_supported?: string[] | undefined;
|
|
8840
9170
|
code_challenge_methods_supported?: string[] | undefined;
|
|
8841
9171
|
skip_code_challenge_check?: boolean | undefined;
|
|
9172
|
+
audience?: string | undefined;
|
|
9173
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
8842
9174
|
revocation_endpoint?: string | undefined;
|
|
8843
9175
|
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
8844
9176
|
} | undefined;
|
|
@@ -8881,6 +9213,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8881
9213
|
response_types_supported?: string[] | undefined;
|
|
8882
9214
|
code_challenge_methods_supported?: string[] | undefined;
|
|
8883
9215
|
skip_code_challenge_check?: boolean | undefined;
|
|
9216
|
+
audience?: string | undefined;
|
|
9217
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
8884
9218
|
revocation_endpoint?: string | undefined;
|
|
8885
9219
|
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
8886
9220
|
} | undefined;
|
|
@@ -8922,6 +9256,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8922
9256
|
response_types_supported?: string[] | undefined;
|
|
8923
9257
|
code_challenge_methods_supported?: string[] | undefined;
|
|
8924
9258
|
skip_code_challenge_check?: boolean | undefined;
|
|
9259
|
+
audience?: string | undefined;
|
|
9260
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
8925
9261
|
revocation_endpoint?: string | undefined;
|
|
8926
9262
|
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
8927
9263
|
} | undefined;
|
|
@@ -8930,6 +9266,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8930
9266
|
title: string;
|
|
8931
9267
|
description: string;
|
|
8932
9268
|
}> | undefined;
|
|
9269
|
+
proxy?: string | undefined;
|
|
8933
9270
|
} | {
|
|
8934
9271
|
type: "streamable-http" | "http";
|
|
8935
9272
|
url: string;
|
|
@@ -8963,6 +9300,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8963
9300
|
response_types_supported?: string[] | undefined;
|
|
8964
9301
|
code_challenge_methods_supported?: string[] | undefined;
|
|
8965
9302
|
skip_code_challenge_check?: boolean | undefined;
|
|
9303
|
+
audience?: string | undefined;
|
|
9304
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
8966
9305
|
revocation_endpoint?: string | undefined;
|
|
8967
9306
|
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
8968
9307
|
} | undefined;
|
|
@@ -8971,6 +9310,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
8971
9310
|
title: string;
|
|
8972
9311
|
description: string;
|
|
8973
9312
|
}> | undefined;
|
|
9313
|
+
proxy?: string | undefined;
|
|
8974
9314
|
}> | undefined;
|
|
8975
9315
|
mcpSettings?: {
|
|
8976
9316
|
allowedDomains?: string[] | undefined;
|
|
@@ -9261,8 +9601,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
9261
9601
|
oidc?: {
|
|
9262
9602
|
enabled: boolean;
|
|
9263
9603
|
scope?: string | undefined;
|
|
9264
|
-
issuer?: string | undefined;
|
|
9265
9604
|
audience?: string | undefined;
|
|
9605
|
+
issuer?: string | undefined;
|
|
9266
9606
|
jwksUri?: string | undefined;
|
|
9267
9607
|
} | undefined;
|
|
9268
9608
|
} | undefined;
|
|
@@ -9345,6 +9685,12 @@ export declare const configSchema: z.ZodObject<{
|
|
|
9345
9685
|
maxToolResultChars?: number | undefined;
|
|
9346
9686
|
models?: string[] | undefined;
|
|
9347
9687
|
availableRegions?: string[] | undefined;
|
|
9688
|
+
guardrailConfig?: {
|
|
9689
|
+
guardrailIdentifier: string;
|
|
9690
|
+
guardrailVersion: string;
|
|
9691
|
+
trace?: "disabled" | "enabled" | "enabled_full" | undefined;
|
|
9692
|
+
streamProcessingMode?: "async" | "sync" | undefined;
|
|
9693
|
+
} | undefined;
|
|
9348
9694
|
inferenceProfiles?: Record<string, string> | undefined;
|
|
9349
9695
|
} | undefined;
|
|
9350
9696
|
all?: {
|
|
@@ -9400,6 +9746,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
9400
9746
|
iconURL?: string | null | undefined;
|
|
9401
9747
|
greeting?: string | undefined;
|
|
9402
9748
|
endpointType?: EModelEndpoint | null | undefined;
|
|
9749
|
+
isTemporary?: boolean | undefined;
|
|
9403
9750
|
tools?: string[] | {
|
|
9404
9751
|
name: string;
|
|
9405
9752
|
pluginKey: string;
|
|
@@ -9503,6 +9850,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
9503
9850
|
showIconInMenu?: boolean | undefined;
|
|
9504
9851
|
showIconInHeader?: boolean | undefined;
|
|
9505
9852
|
authType?: import("./schemas").AuthType | undefined;
|
|
9853
|
+
hideBadgeRow?: boolean | undefined;
|
|
9506
9854
|
executeCode?: boolean | undefined;
|
|
9507
9855
|
}[];
|
|
9508
9856
|
addedEndpoints?: string[] | undefined;
|
|
@@ -9679,6 +10027,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
9679
10027
|
response_types_supported?: string[] | undefined;
|
|
9680
10028
|
code_challenge_methods_supported?: string[] | undefined;
|
|
9681
10029
|
skip_code_challenge_check?: boolean | undefined;
|
|
10030
|
+
audience?: string | undefined;
|
|
10031
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
9682
10032
|
revocation_endpoint?: string | undefined;
|
|
9683
10033
|
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
9684
10034
|
} | undefined;
|
|
@@ -9721,6 +10071,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
9721
10071
|
response_types_supported?: string[] | undefined;
|
|
9722
10072
|
code_challenge_methods_supported?: string[] | undefined;
|
|
9723
10073
|
skip_code_challenge_check?: boolean | undefined;
|
|
10074
|
+
audience?: string | undefined;
|
|
10075
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
9724
10076
|
revocation_endpoint?: string | undefined;
|
|
9725
10077
|
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
9726
10078
|
} | undefined;
|
|
@@ -9762,6 +10114,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
9762
10114
|
response_types_supported?: string[] | undefined;
|
|
9763
10115
|
code_challenge_methods_supported?: string[] | undefined;
|
|
9764
10116
|
skip_code_challenge_check?: boolean | undefined;
|
|
10117
|
+
audience?: string | undefined;
|
|
10118
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
9765
10119
|
revocation_endpoint?: string | undefined;
|
|
9766
10120
|
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
9767
10121
|
} | undefined;
|
|
@@ -9770,6 +10124,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
9770
10124
|
title: string;
|
|
9771
10125
|
description: string;
|
|
9772
10126
|
}> | undefined;
|
|
10127
|
+
proxy?: string | undefined;
|
|
9773
10128
|
} | {
|
|
9774
10129
|
type: "streamable-http" | "http";
|
|
9775
10130
|
url: string;
|
|
@@ -9803,6 +10158,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
9803
10158
|
response_types_supported?: string[] | undefined;
|
|
9804
10159
|
code_challenge_methods_supported?: string[] | undefined;
|
|
9805
10160
|
skip_code_challenge_check?: boolean | undefined;
|
|
10161
|
+
audience?: string | undefined;
|
|
10162
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
9806
10163
|
revocation_endpoint?: string | undefined;
|
|
9807
10164
|
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
9808
10165
|
} | undefined;
|
|
@@ -9811,6 +10168,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
9811
10168
|
title: string;
|
|
9812
10169
|
description: string;
|
|
9813
10170
|
}> | undefined;
|
|
10171
|
+
proxy?: string | undefined;
|
|
9814
10172
|
}> | undefined;
|
|
9815
10173
|
mcpSettings?: {
|
|
9816
10174
|
allowedDomains?: string[] | undefined;
|
|
@@ -9869,6 +10227,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
9869
10227
|
temporaryChat?: boolean | undefined;
|
|
9870
10228
|
temporaryChatRetention?: number | undefined;
|
|
9871
10229
|
autoSubmitFromUrl?: boolean | undefined;
|
|
10230
|
+
retentionMode?: RetentionMode | undefined;
|
|
9872
10231
|
runCode?: boolean | undefined;
|
|
9873
10232
|
peoplePicker?: {
|
|
9874
10233
|
users?: boolean | undefined;
|
|
@@ -9880,6 +10239,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
9880
10239
|
} | undefined;
|
|
9881
10240
|
fileSearch?: boolean | undefined;
|
|
9882
10241
|
fileCitations?: boolean | undefined;
|
|
10242
|
+
buildInfo?: boolean | undefined;
|
|
9883
10243
|
remoteAgents?: {
|
|
9884
10244
|
use?: boolean | undefined;
|
|
9885
10245
|
create?: boolean | undefined;
|
|
@@ -10177,8 +10537,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
10177
10537
|
oidc?: {
|
|
10178
10538
|
enabled?: boolean | undefined;
|
|
10179
10539
|
scope?: string | undefined;
|
|
10180
|
-
issuer?: string | undefined;
|
|
10181
10540
|
audience?: string | undefined;
|
|
10541
|
+
issuer?: string | undefined;
|
|
10182
10542
|
jwksUri?: string | undefined;
|
|
10183
10543
|
} | undefined;
|
|
10184
10544
|
} | undefined;
|
|
@@ -10261,6 +10621,12 @@ export declare const configSchema: z.ZodObject<{
|
|
|
10261
10621
|
maxToolResultChars?: number | undefined;
|
|
10262
10622
|
models?: string[] | undefined;
|
|
10263
10623
|
availableRegions?: string[] | undefined;
|
|
10624
|
+
guardrailConfig?: {
|
|
10625
|
+
guardrailIdentifier: string;
|
|
10626
|
+
guardrailVersion: string;
|
|
10627
|
+
trace?: "disabled" | "enabled" | "enabled_full" | undefined;
|
|
10628
|
+
streamProcessingMode?: "async" | "sync" | undefined;
|
|
10629
|
+
} | undefined;
|
|
10264
10630
|
inferenceProfiles?: Record<string, string> | undefined;
|
|
10265
10631
|
} | undefined;
|
|
10266
10632
|
all?: {
|
|
@@ -10316,6 +10682,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
10316
10682
|
iconURL?: string | null | undefined;
|
|
10317
10683
|
greeting?: string | undefined;
|
|
10318
10684
|
endpointType?: EModelEndpoint | null | undefined;
|
|
10685
|
+
isTemporary?: boolean | undefined;
|
|
10319
10686
|
tools?: string[] | {
|
|
10320
10687
|
name: string;
|
|
10321
10688
|
pluginKey: string;
|
|
@@ -10419,6 +10786,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
10419
10786
|
showIconInMenu?: boolean | undefined;
|
|
10420
10787
|
showIconInHeader?: boolean | undefined;
|
|
10421
10788
|
authType?: import("./schemas").AuthType | undefined;
|
|
10789
|
+
hideBadgeRow?: boolean | undefined;
|
|
10422
10790
|
executeCode?: boolean | undefined;
|
|
10423
10791
|
}[] | undefined;
|
|
10424
10792
|
addedEndpoints?: string[] | undefined;
|
|
@@ -10959,7 +11327,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10959
11327
|
chatMenu: z.ZodOptional<z.ZodBoolean>;
|
|
10960
11328
|
serverInstructions: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
10961
11329
|
requiresOAuth: z.ZodOptional<z.ZodBoolean>;
|
|
10962
|
-
oauth: z.ZodOptional<z.ZodObject<{
|
|
11330
|
+
oauth: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
10963
11331
|
authorization_url: z.ZodOptional<z.ZodString>;
|
|
10964
11332
|
token_url: z.ZodOptional<z.ZodString>;
|
|
10965
11333
|
client_id: z.ZodOptional<z.ZodString>;
|
|
@@ -10972,6 +11340,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10972
11340
|
response_types_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
10973
11341
|
code_challenge_methods_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
10974
11342
|
skip_code_challenge_check: z.ZodOptional<z.ZodBoolean>;
|
|
11343
|
+
audience: z.ZodOptional<z.ZodString>;
|
|
11344
|
+
forward_audience_on_refresh: z.ZodOptional<z.ZodBoolean>;
|
|
10975
11345
|
revocation_endpoint: z.ZodOptional<z.ZodString>;
|
|
10976
11346
|
revocation_endpoint_auth_methods_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
10977
11347
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -10987,6 +11357,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
10987
11357
|
response_types_supported?: string[] | undefined;
|
|
10988
11358
|
code_challenge_methods_supported?: string[] | undefined;
|
|
10989
11359
|
skip_code_challenge_check?: boolean | undefined;
|
|
11360
|
+
audience?: string | undefined;
|
|
11361
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
10990
11362
|
revocation_endpoint?: string | undefined;
|
|
10991
11363
|
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
10992
11364
|
}, {
|
|
@@ -11002,6 +11374,42 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11002
11374
|
response_types_supported?: string[] | undefined;
|
|
11003
11375
|
code_challenge_methods_supported?: string[] | undefined;
|
|
11004
11376
|
skip_code_challenge_check?: boolean | undefined;
|
|
11377
|
+
audience?: string | undefined;
|
|
11378
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
11379
|
+
revocation_endpoint?: string | undefined;
|
|
11380
|
+
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
11381
|
+
}>, {
|
|
11382
|
+
authorization_url?: string | undefined;
|
|
11383
|
+
token_url?: string | undefined;
|
|
11384
|
+
client_id?: string | undefined;
|
|
11385
|
+
client_secret?: string | undefined;
|
|
11386
|
+
scope?: string | undefined;
|
|
11387
|
+
redirect_uri?: string | undefined;
|
|
11388
|
+
token_exchange_method?: import(".").TokenExchangeMethodEnum | undefined;
|
|
11389
|
+
grant_types_supported?: string[] | undefined;
|
|
11390
|
+
token_endpoint_auth_methods_supported?: string[] | undefined;
|
|
11391
|
+
response_types_supported?: string[] | undefined;
|
|
11392
|
+
code_challenge_methods_supported?: string[] | undefined;
|
|
11393
|
+
skip_code_challenge_check?: boolean | undefined;
|
|
11394
|
+
audience?: string | undefined;
|
|
11395
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
11396
|
+
revocation_endpoint?: string | undefined;
|
|
11397
|
+
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
11398
|
+
}, {
|
|
11399
|
+
authorization_url?: string | undefined;
|
|
11400
|
+
token_url?: string | undefined;
|
|
11401
|
+
client_id?: string | undefined;
|
|
11402
|
+
client_secret?: string | undefined;
|
|
11403
|
+
scope?: string | undefined;
|
|
11404
|
+
redirect_uri?: string | undefined;
|
|
11405
|
+
token_exchange_method?: import(".").TokenExchangeMethodEnum | undefined;
|
|
11406
|
+
grant_types_supported?: string[] | undefined;
|
|
11407
|
+
token_endpoint_auth_methods_supported?: string[] | undefined;
|
|
11408
|
+
response_types_supported?: string[] | undefined;
|
|
11409
|
+
code_challenge_methods_supported?: string[] | undefined;
|
|
11410
|
+
skip_code_challenge_check?: boolean | undefined;
|
|
11411
|
+
audience?: string | undefined;
|
|
11412
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
11005
11413
|
revocation_endpoint?: string | undefined;
|
|
11006
11414
|
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
11007
11415
|
}>>;
|
|
@@ -11071,6 +11479,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11071
11479
|
response_types_supported?: string[] | undefined;
|
|
11072
11480
|
code_challenge_methods_supported?: string[] | undefined;
|
|
11073
11481
|
skip_code_challenge_check?: boolean | undefined;
|
|
11482
|
+
audience?: string | undefined;
|
|
11483
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
11074
11484
|
revocation_endpoint?: string | undefined;
|
|
11075
11485
|
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
11076
11486
|
} | undefined;
|
|
@@ -11114,6 +11524,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11114
11524
|
response_types_supported?: string[] | undefined;
|
|
11115
11525
|
code_challenge_methods_supported?: string[] | undefined;
|
|
11116
11526
|
skip_code_challenge_check?: boolean | undefined;
|
|
11527
|
+
audience?: string | undefined;
|
|
11528
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
11117
11529
|
revocation_endpoint?: string | undefined;
|
|
11118
11530
|
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
11119
11531
|
} | undefined;
|
|
@@ -11135,7 +11547,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11135
11547
|
chatMenu: z.ZodOptional<z.ZodBoolean>;
|
|
11136
11548
|
serverInstructions: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
11137
11549
|
requiresOAuth: z.ZodOptional<z.ZodBoolean>;
|
|
11138
|
-
oauth: z.ZodOptional<z.ZodObject<{
|
|
11550
|
+
oauth: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
11139
11551
|
authorization_url: z.ZodOptional<z.ZodString>;
|
|
11140
11552
|
token_url: z.ZodOptional<z.ZodString>;
|
|
11141
11553
|
client_id: z.ZodOptional<z.ZodString>;
|
|
@@ -11148,6 +11560,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11148
11560
|
response_types_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
11149
11561
|
code_challenge_methods_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
11150
11562
|
skip_code_challenge_check: z.ZodOptional<z.ZodBoolean>;
|
|
11563
|
+
audience: z.ZodOptional<z.ZodString>;
|
|
11564
|
+
forward_audience_on_refresh: z.ZodOptional<z.ZodBoolean>;
|
|
11151
11565
|
revocation_endpoint: z.ZodOptional<z.ZodString>;
|
|
11152
11566
|
revocation_endpoint_auth_methods_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
11153
11567
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -11163,6 +11577,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11163
11577
|
response_types_supported?: string[] | undefined;
|
|
11164
11578
|
code_challenge_methods_supported?: string[] | undefined;
|
|
11165
11579
|
skip_code_challenge_check?: boolean | undefined;
|
|
11580
|
+
audience?: string | undefined;
|
|
11581
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
11166
11582
|
revocation_endpoint?: string | undefined;
|
|
11167
11583
|
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
11168
11584
|
}, {
|
|
@@ -11178,6 +11594,42 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11178
11594
|
response_types_supported?: string[] | undefined;
|
|
11179
11595
|
code_challenge_methods_supported?: string[] | undefined;
|
|
11180
11596
|
skip_code_challenge_check?: boolean | undefined;
|
|
11597
|
+
audience?: string | undefined;
|
|
11598
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
11599
|
+
revocation_endpoint?: string | undefined;
|
|
11600
|
+
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
11601
|
+
}>, {
|
|
11602
|
+
authorization_url?: string | undefined;
|
|
11603
|
+
token_url?: string | undefined;
|
|
11604
|
+
client_id?: string | undefined;
|
|
11605
|
+
client_secret?: string | undefined;
|
|
11606
|
+
scope?: string | undefined;
|
|
11607
|
+
redirect_uri?: string | undefined;
|
|
11608
|
+
token_exchange_method?: import(".").TokenExchangeMethodEnum | undefined;
|
|
11609
|
+
grant_types_supported?: string[] | undefined;
|
|
11610
|
+
token_endpoint_auth_methods_supported?: string[] | undefined;
|
|
11611
|
+
response_types_supported?: string[] | undefined;
|
|
11612
|
+
code_challenge_methods_supported?: string[] | undefined;
|
|
11613
|
+
skip_code_challenge_check?: boolean | undefined;
|
|
11614
|
+
audience?: string | undefined;
|
|
11615
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
11616
|
+
revocation_endpoint?: string | undefined;
|
|
11617
|
+
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
11618
|
+
}, {
|
|
11619
|
+
authorization_url?: string | undefined;
|
|
11620
|
+
token_url?: string | undefined;
|
|
11621
|
+
client_id?: string | undefined;
|
|
11622
|
+
client_secret?: string | undefined;
|
|
11623
|
+
scope?: string | undefined;
|
|
11624
|
+
redirect_uri?: string | undefined;
|
|
11625
|
+
token_exchange_method?: import(".").TokenExchangeMethodEnum | undefined;
|
|
11626
|
+
grant_types_supported?: string[] | undefined;
|
|
11627
|
+
token_endpoint_auth_methods_supported?: string[] | undefined;
|
|
11628
|
+
response_types_supported?: string[] | undefined;
|
|
11629
|
+
code_challenge_methods_supported?: string[] | undefined;
|
|
11630
|
+
skip_code_challenge_check?: boolean | undefined;
|
|
11631
|
+
audience?: string | undefined;
|
|
11632
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
11181
11633
|
revocation_endpoint?: string | undefined;
|
|
11182
11634
|
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
11183
11635
|
}>>;
|
|
@@ -11243,6 +11695,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11243
11695
|
response_types_supported?: string[] | undefined;
|
|
11244
11696
|
code_challenge_methods_supported?: string[] | undefined;
|
|
11245
11697
|
skip_code_challenge_check?: boolean | undefined;
|
|
11698
|
+
audience?: string | undefined;
|
|
11699
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
11246
11700
|
revocation_endpoint?: string | undefined;
|
|
11247
11701
|
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
11248
11702
|
} | undefined;
|
|
@@ -11283,6 +11737,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11283
11737
|
response_types_supported?: string[] | undefined;
|
|
11284
11738
|
code_challenge_methods_supported?: string[] | undefined;
|
|
11285
11739
|
skip_code_challenge_check?: boolean | undefined;
|
|
11740
|
+
audience?: string | undefined;
|
|
11741
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
11286
11742
|
revocation_endpoint?: string | undefined;
|
|
11287
11743
|
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
11288
11744
|
} | undefined;
|
|
@@ -11302,7 +11758,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11302
11758
|
chatMenu: z.ZodOptional<z.ZodBoolean>;
|
|
11303
11759
|
serverInstructions: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
11304
11760
|
requiresOAuth: z.ZodOptional<z.ZodBoolean>;
|
|
11305
|
-
oauth: z.ZodOptional<z.ZodObject<{
|
|
11761
|
+
oauth: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
11306
11762
|
authorization_url: z.ZodOptional<z.ZodString>;
|
|
11307
11763
|
token_url: z.ZodOptional<z.ZodString>;
|
|
11308
11764
|
client_id: z.ZodOptional<z.ZodString>;
|
|
@@ -11315,6 +11771,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11315
11771
|
response_types_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
11316
11772
|
code_challenge_methods_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
11317
11773
|
skip_code_challenge_check: z.ZodOptional<z.ZodBoolean>;
|
|
11774
|
+
audience: z.ZodOptional<z.ZodString>;
|
|
11775
|
+
forward_audience_on_refresh: z.ZodOptional<z.ZodBoolean>;
|
|
11318
11776
|
revocation_endpoint: z.ZodOptional<z.ZodString>;
|
|
11319
11777
|
revocation_endpoint_auth_methods_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
11320
11778
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -11330,6 +11788,42 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11330
11788
|
response_types_supported?: string[] | undefined;
|
|
11331
11789
|
code_challenge_methods_supported?: string[] | undefined;
|
|
11332
11790
|
skip_code_challenge_check?: boolean | undefined;
|
|
11791
|
+
audience?: string | undefined;
|
|
11792
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
11793
|
+
revocation_endpoint?: string | undefined;
|
|
11794
|
+
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
11795
|
+
}, {
|
|
11796
|
+
authorization_url?: string | undefined;
|
|
11797
|
+
token_url?: string | undefined;
|
|
11798
|
+
client_id?: string | undefined;
|
|
11799
|
+
client_secret?: string | undefined;
|
|
11800
|
+
scope?: string | undefined;
|
|
11801
|
+
redirect_uri?: string | undefined;
|
|
11802
|
+
token_exchange_method?: import(".").TokenExchangeMethodEnum | undefined;
|
|
11803
|
+
grant_types_supported?: string[] | undefined;
|
|
11804
|
+
token_endpoint_auth_methods_supported?: string[] | undefined;
|
|
11805
|
+
response_types_supported?: string[] | undefined;
|
|
11806
|
+
code_challenge_methods_supported?: string[] | undefined;
|
|
11807
|
+
skip_code_challenge_check?: boolean | undefined;
|
|
11808
|
+
audience?: string | undefined;
|
|
11809
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
11810
|
+
revocation_endpoint?: string | undefined;
|
|
11811
|
+
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
11812
|
+
}>, {
|
|
11813
|
+
authorization_url?: string | undefined;
|
|
11814
|
+
token_url?: string | undefined;
|
|
11815
|
+
client_id?: string | undefined;
|
|
11816
|
+
client_secret?: string | undefined;
|
|
11817
|
+
scope?: string | undefined;
|
|
11818
|
+
redirect_uri?: string | undefined;
|
|
11819
|
+
token_exchange_method?: import(".").TokenExchangeMethodEnum | undefined;
|
|
11820
|
+
grant_types_supported?: string[] | undefined;
|
|
11821
|
+
token_endpoint_auth_methods_supported?: string[] | undefined;
|
|
11822
|
+
response_types_supported?: string[] | undefined;
|
|
11823
|
+
code_challenge_methods_supported?: string[] | undefined;
|
|
11824
|
+
skip_code_challenge_check?: boolean | undefined;
|
|
11825
|
+
audience?: string | undefined;
|
|
11826
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
11333
11827
|
revocation_endpoint?: string | undefined;
|
|
11334
11828
|
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
11335
11829
|
}, {
|
|
@@ -11345,6 +11839,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11345
11839
|
response_types_supported?: string[] | undefined;
|
|
11346
11840
|
code_challenge_methods_supported?: string[] | undefined;
|
|
11347
11841
|
skip_code_challenge_check?: boolean | undefined;
|
|
11842
|
+
audience?: string | undefined;
|
|
11843
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
11348
11844
|
revocation_endpoint?: string | undefined;
|
|
11349
11845
|
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
11350
11846
|
}>>;
|
|
@@ -11378,6 +11874,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11378
11874
|
} & {
|
|
11379
11875
|
type: z.ZodDefault<z.ZodLiteral<"sse">>;
|
|
11380
11876
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
11877
|
+
proxy: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, z.ZodString>, string, string>>;
|
|
11381
11878
|
url: z.ZodEffects<z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, z.ZodString>, string, string>;
|
|
11382
11879
|
}, "strip", z.ZodTypeAny, {
|
|
11383
11880
|
type: "sse";
|
|
@@ -11412,6 +11909,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11412
11909
|
response_types_supported?: string[] | undefined;
|
|
11413
11910
|
code_challenge_methods_supported?: string[] | undefined;
|
|
11414
11911
|
skip_code_challenge_check?: boolean | undefined;
|
|
11912
|
+
audience?: string | undefined;
|
|
11913
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
11415
11914
|
revocation_endpoint?: string | undefined;
|
|
11416
11915
|
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
11417
11916
|
} | undefined;
|
|
@@ -11420,6 +11919,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11420
11919
|
title: string;
|
|
11421
11920
|
description: string;
|
|
11422
11921
|
}> | undefined;
|
|
11922
|
+
proxy?: string | undefined;
|
|
11423
11923
|
}, {
|
|
11424
11924
|
url: string;
|
|
11425
11925
|
title?: string | undefined;
|
|
@@ -11453,6 +11953,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11453
11953
|
response_types_supported?: string[] | undefined;
|
|
11454
11954
|
code_challenge_methods_supported?: string[] | undefined;
|
|
11455
11955
|
skip_code_challenge_check?: boolean | undefined;
|
|
11956
|
+
audience?: string | undefined;
|
|
11957
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
11456
11958
|
revocation_endpoint?: string | undefined;
|
|
11457
11959
|
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
11458
11960
|
} | undefined;
|
|
@@ -11461,6 +11963,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11461
11963
|
title: string;
|
|
11462
11964
|
description: string;
|
|
11463
11965
|
}> | undefined;
|
|
11966
|
+
proxy?: string | undefined;
|
|
11464
11967
|
}>, z.ZodObject<{
|
|
11465
11968
|
title: z.ZodOptional<z.ZodString>;
|
|
11466
11969
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -11472,7 +11975,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11472
11975
|
chatMenu: z.ZodOptional<z.ZodBoolean>;
|
|
11473
11976
|
serverInstructions: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
11474
11977
|
requiresOAuth: z.ZodOptional<z.ZodBoolean>;
|
|
11475
|
-
oauth: z.ZodOptional<z.ZodObject<{
|
|
11978
|
+
oauth: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
11476
11979
|
authorization_url: z.ZodOptional<z.ZodString>;
|
|
11477
11980
|
token_url: z.ZodOptional<z.ZodString>;
|
|
11478
11981
|
client_id: z.ZodOptional<z.ZodString>;
|
|
@@ -11485,6 +11988,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11485
11988
|
response_types_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
11486
11989
|
code_challenge_methods_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
11487
11990
|
skip_code_challenge_check: z.ZodOptional<z.ZodBoolean>;
|
|
11991
|
+
audience: z.ZodOptional<z.ZodString>;
|
|
11992
|
+
forward_audience_on_refresh: z.ZodOptional<z.ZodBoolean>;
|
|
11488
11993
|
revocation_endpoint: z.ZodOptional<z.ZodString>;
|
|
11489
11994
|
revocation_endpoint_auth_methods_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
11490
11995
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -11500,6 +12005,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11500
12005
|
response_types_supported?: string[] | undefined;
|
|
11501
12006
|
code_challenge_methods_supported?: string[] | undefined;
|
|
11502
12007
|
skip_code_challenge_check?: boolean | undefined;
|
|
12008
|
+
audience?: string | undefined;
|
|
12009
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
11503
12010
|
revocation_endpoint?: string | undefined;
|
|
11504
12011
|
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
11505
12012
|
}, {
|
|
@@ -11515,6 +12022,42 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11515
12022
|
response_types_supported?: string[] | undefined;
|
|
11516
12023
|
code_challenge_methods_supported?: string[] | undefined;
|
|
11517
12024
|
skip_code_challenge_check?: boolean | undefined;
|
|
12025
|
+
audience?: string | undefined;
|
|
12026
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
12027
|
+
revocation_endpoint?: string | undefined;
|
|
12028
|
+
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
12029
|
+
}>, {
|
|
12030
|
+
authorization_url?: string | undefined;
|
|
12031
|
+
token_url?: string | undefined;
|
|
12032
|
+
client_id?: string | undefined;
|
|
12033
|
+
client_secret?: string | undefined;
|
|
12034
|
+
scope?: string | undefined;
|
|
12035
|
+
redirect_uri?: string | undefined;
|
|
12036
|
+
token_exchange_method?: import(".").TokenExchangeMethodEnum | undefined;
|
|
12037
|
+
grant_types_supported?: string[] | undefined;
|
|
12038
|
+
token_endpoint_auth_methods_supported?: string[] | undefined;
|
|
12039
|
+
response_types_supported?: string[] | undefined;
|
|
12040
|
+
code_challenge_methods_supported?: string[] | undefined;
|
|
12041
|
+
skip_code_challenge_check?: boolean | undefined;
|
|
12042
|
+
audience?: string | undefined;
|
|
12043
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
12044
|
+
revocation_endpoint?: string | undefined;
|
|
12045
|
+
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
12046
|
+
}, {
|
|
12047
|
+
authorization_url?: string | undefined;
|
|
12048
|
+
token_url?: string | undefined;
|
|
12049
|
+
client_id?: string | undefined;
|
|
12050
|
+
client_secret?: string | undefined;
|
|
12051
|
+
scope?: string | undefined;
|
|
12052
|
+
redirect_uri?: string | undefined;
|
|
12053
|
+
token_exchange_method?: import(".").TokenExchangeMethodEnum | undefined;
|
|
12054
|
+
grant_types_supported?: string[] | undefined;
|
|
12055
|
+
token_endpoint_auth_methods_supported?: string[] | undefined;
|
|
12056
|
+
response_types_supported?: string[] | undefined;
|
|
12057
|
+
code_challenge_methods_supported?: string[] | undefined;
|
|
12058
|
+
skip_code_challenge_check?: boolean | undefined;
|
|
12059
|
+
audience?: string | undefined;
|
|
12060
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
11518
12061
|
revocation_endpoint?: string | undefined;
|
|
11519
12062
|
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
11520
12063
|
}>>;
|
|
@@ -11548,6 +12091,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11548
12091
|
} & {
|
|
11549
12092
|
type: z.ZodUnion<[z.ZodLiteral<"streamable-http">, z.ZodLiteral<"http">]>;
|
|
11550
12093
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
12094
|
+
proxy: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, z.ZodString>, string, string>>;
|
|
11551
12095
|
url: z.ZodEffects<z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, z.ZodString>, string, string>;
|
|
11552
12096
|
}, "strip", z.ZodTypeAny, {
|
|
11553
12097
|
type: "streamable-http" | "http";
|
|
@@ -11582,6 +12126,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11582
12126
|
response_types_supported?: string[] | undefined;
|
|
11583
12127
|
code_challenge_methods_supported?: string[] | undefined;
|
|
11584
12128
|
skip_code_challenge_check?: boolean | undefined;
|
|
12129
|
+
audience?: string | undefined;
|
|
12130
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
11585
12131
|
revocation_endpoint?: string | undefined;
|
|
11586
12132
|
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
11587
12133
|
} | undefined;
|
|
@@ -11590,6 +12136,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11590
12136
|
title: string;
|
|
11591
12137
|
description: string;
|
|
11592
12138
|
}> | undefined;
|
|
12139
|
+
proxy?: string | undefined;
|
|
11593
12140
|
}, {
|
|
11594
12141
|
type: "streamable-http" | "http";
|
|
11595
12142
|
url: string;
|
|
@@ -11623,6 +12170,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11623
12170
|
response_types_supported?: string[] | undefined;
|
|
11624
12171
|
code_challenge_methods_supported?: string[] | undefined;
|
|
11625
12172
|
skip_code_challenge_check?: boolean | undefined;
|
|
12173
|
+
audience?: string | undefined;
|
|
12174
|
+
forward_audience_on_refresh?: boolean | undefined;
|
|
11626
12175
|
revocation_endpoint?: string | undefined;
|
|
11627
12176
|
revocation_endpoint_auth_methods_supported?: string[] | undefined;
|
|
11628
12177
|
} | undefined;
|
|
@@ -11631,6 +12180,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11631
12180
|
title: string;
|
|
11632
12181
|
description: string;
|
|
11633
12182
|
}> | undefined;
|
|
12183
|
+
proxy?: string | undefined;
|
|
11634
12184
|
}>]>>>;
|
|
11635
12185
|
mcpSettings: z.ZodOptional<z.ZodObject<{
|
|
11636
12186
|
allowedDomains: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -11751,6 +12301,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11751
12301
|
temporaryChat: z.ZodOptional<z.ZodBoolean>;
|
|
11752
12302
|
temporaryChatRetention: z.ZodOptional<z.ZodNumber>;
|
|
11753
12303
|
autoSubmitFromUrl: z.ZodOptional<z.ZodBoolean>;
|
|
12304
|
+
retentionMode: z.ZodDefault<z.ZodNativeEnum<typeof RetentionMode>>;
|
|
11754
12305
|
runCode: z.ZodOptional<z.ZodBoolean>;
|
|
11755
12306
|
webSearch: z.ZodOptional<z.ZodBoolean>;
|
|
11756
12307
|
peoplePicker: z.ZodOptional<z.ZodObject<{
|
|
@@ -11775,6 +12326,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11775
12326
|
}>>;
|
|
11776
12327
|
fileSearch: z.ZodOptional<z.ZodBoolean>;
|
|
11777
12328
|
fileCitations: z.ZodOptional<z.ZodBoolean>;
|
|
12329
|
+
buildInfo: z.ZodOptional<z.ZodBoolean>;
|
|
11778
12330
|
remoteAgents: z.ZodOptional<z.ZodObject<{
|
|
11779
12331
|
use: z.ZodOptional<z.ZodBoolean>;
|
|
11780
12332
|
create: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -11811,6 +12363,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11811
12363
|
defaultActiveOnShare?: boolean | undefined;
|
|
11812
12364
|
}>]>>;
|
|
11813
12365
|
}, "strip", z.ZodTypeAny, {
|
|
12366
|
+
retentionMode: RetentionMode;
|
|
11814
12367
|
skills?: boolean | {
|
|
11815
12368
|
use?: boolean | undefined;
|
|
11816
12369
|
create?: boolean | undefined;
|
|
@@ -11874,6 +12427,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11874
12427
|
} | undefined;
|
|
11875
12428
|
fileSearch?: boolean | undefined;
|
|
11876
12429
|
fileCitations?: boolean | undefined;
|
|
12430
|
+
buildInfo?: boolean | undefined;
|
|
11877
12431
|
remoteAgents?: {
|
|
11878
12432
|
use?: boolean | undefined;
|
|
11879
12433
|
create?: boolean | undefined;
|
|
@@ -11933,6 +12487,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11933
12487
|
temporaryChat?: boolean | undefined;
|
|
11934
12488
|
temporaryChatRetention?: number | undefined;
|
|
11935
12489
|
autoSubmitFromUrl?: boolean | undefined;
|
|
12490
|
+
retentionMode?: RetentionMode | undefined;
|
|
11936
12491
|
runCode?: boolean | undefined;
|
|
11937
12492
|
peoplePicker?: {
|
|
11938
12493
|
users?: boolean | undefined;
|
|
@@ -11944,6 +12499,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
11944
12499
|
} | undefined;
|
|
11945
12500
|
fileSearch?: boolean | undefined;
|
|
11946
12501
|
fileCitations?: boolean | undefined;
|
|
12502
|
+
buildInfo?: boolean | undefined;
|
|
11947
12503
|
remoteAgents?: {
|
|
11948
12504
|
use?: boolean | undefined;
|
|
11949
12505
|
create?: boolean | undefined;
|
|
@@ -12857,6 +13413,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
12857
13413
|
greeting: z.ZodOptional<z.ZodString>;
|
|
12858
13414
|
endpointType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof EModelEndpoint>>>;
|
|
12859
13415
|
expiredAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13416
|
+
isTemporary: z.ZodOptional<z.ZodBoolean>;
|
|
12860
13417
|
messages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
12861
13418
|
isArchived: z.ZodOptional<z.ZodBoolean>;
|
|
12862
13419
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -13054,6 +13611,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13054
13611
|
iconURL?: string | null | undefined;
|
|
13055
13612
|
greeting?: string | undefined;
|
|
13056
13613
|
endpointType?: EModelEndpoint | null | undefined;
|
|
13614
|
+
isTemporary?: boolean | undefined;
|
|
13057
13615
|
tools?: string[] | {
|
|
13058
13616
|
name: string;
|
|
13059
13617
|
pluginKey: string;
|
|
@@ -13148,6 +13706,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13148
13706
|
iconURL?: string | null | undefined;
|
|
13149
13707
|
greeting?: string | undefined;
|
|
13150
13708
|
endpointType?: EModelEndpoint | null | undefined;
|
|
13709
|
+
isTemporary?: boolean | undefined;
|
|
13151
13710
|
tools?: string[] | {
|
|
13152
13711
|
name: string;
|
|
13153
13712
|
pluginKey: string;
|
|
@@ -13247,6 +13806,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13247
13806
|
showIconInHeader: z.ZodOptional<z.ZodBoolean>;
|
|
13248
13807
|
iconURL: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<typeof EModelEndpoint>]>>;
|
|
13249
13808
|
authType: z.ZodOptional<z.ZodNativeEnum<typeof import("./schemas").AuthType>>;
|
|
13809
|
+
hideBadgeRow: z.ZodOptional<z.ZodBoolean>;
|
|
13250
13810
|
webSearch: z.ZodOptional<z.ZodBoolean>;
|
|
13251
13811
|
fileSearch: z.ZodOptional<z.ZodBoolean>;
|
|
13252
13812
|
executeCode: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -13260,6 +13820,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13260
13820
|
iconURL?: string | null | undefined;
|
|
13261
13821
|
greeting?: string | undefined;
|
|
13262
13822
|
endpointType?: EModelEndpoint | null | undefined;
|
|
13823
|
+
isTemporary?: boolean | undefined;
|
|
13263
13824
|
tools?: string[] | {
|
|
13264
13825
|
name: string;
|
|
13265
13826
|
pluginKey: string;
|
|
@@ -13363,6 +13924,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13363
13924
|
showIconInMenu?: boolean | undefined;
|
|
13364
13925
|
showIconInHeader?: boolean | undefined;
|
|
13365
13926
|
authType?: import("./schemas").AuthType | undefined;
|
|
13927
|
+
hideBadgeRow?: boolean | undefined;
|
|
13366
13928
|
executeCode?: boolean | undefined;
|
|
13367
13929
|
}, {
|
|
13368
13930
|
label: string;
|
|
@@ -13372,6 +13934,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13372
13934
|
iconURL?: string | null | undefined;
|
|
13373
13935
|
greeting?: string | undefined;
|
|
13374
13936
|
endpointType?: EModelEndpoint | null | undefined;
|
|
13937
|
+
isTemporary?: boolean | undefined;
|
|
13375
13938
|
tools?: string[] | {
|
|
13376
13939
|
name: string;
|
|
13377
13940
|
pluginKey: string;
|
|
@@ -13475,6 +14038,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13475
14038
|
showIconInMenu?: boolean | undefined;
|
|
13476
14039
|
showIconInHeader?: boolean | undefined;
|
|
13477
14040
|
authType?: import("./schemas").AuthType | undefined;
|
|
14041
|
+
hideBadgeRow?: boolean | undefined;
|
|
13478
14042
|
executeCode?: boolean | undefined;
|
|
13479
14043
|
}>, "many">>;
|
|
13480
14044
|
addedEndpoints: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<typeof EModelEndpoint>]>, "many">>;
|
|
@@ -13489,6 +14053,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13489
14053
|
iconURL?: string | null | undefined;
|
|
13490
14054
|
greeting?: string | undefined;
|
|
13491
14055
|
endpointType?: EModelEndpoint | null | undefined;
|
|
14056
|
+
isTemporary?: boolean | undefined;
|
|
13492
14057
|
tools?: string[] | {
|
|
13493
14058
|
name: string;
|
|
13494
14059
|
pluginKey: string;
|
|
@@ -13592,6 +14157,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13592
14157
|
showIconInMenu?: boolean | undefined;
|
|
13593
14158
|
showIconInHeader?: boolean | undefined;
|
|
13594
14159
|
authType?: import("./schemas").AuthType | undefined;
|
|
14160
|
+
hideBadgeRow?: boolean | undefined;
|
|
13595
14161
|
executeCode?: boolean | undefined;
|
|
13596
14162
|
}[];
|
|
13597
14163
|
addedEndpoints?: string[] | undefined;
|
|
@@ -13606,6 +14172,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13606
14172
|
iconURL?: string | null | undefined;
|
|
13607
14173
|
greeting?: string | undefined;
|
|
13608
14174
|
endpointType?: EModelEndpoint | null | undefined;
|
|
14175
|
+
isTemporary?: boolean | undefined;
|
|
13609
14176
|
tools?: string[] | {
|
|
13610
14177
|
name: string;
|
|
13611
14178
|
pluginKey: string;
|
|
@@ -13709,6 +14276,7 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
13709
14276
|
showIconInMenu?: boolean | undefined;
|
|
13710
14277
|
showIconInHeader?: boolean | undefined;
|
|
13711
14278
|
authType?: import("./schemas").AuthType | undefined;
|
|
14279
|
+
hideBadgeRow?: boolean | undefined;
|
|
13712
14280
|
executeCode?: boolean | undefined;
|
|
13713
14281
|
}[] | undefined;
|
|
13714
14282
|
addedEndpoints?: string[] | undefined;
|
|
@@ -14293,26 +14861,26 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
14293
14861
|
}, "strip", z.ZodTypeAny, {
|
|
14294
14862
|
enabled: boolean;
|
|
14295
14863
|
scope?: string | undefined;
|
|
14296
|
-
issuer?: string | undefined;
|
|
14297
14864
|
audience?: string | undefined;
|
|
14865
|
+
issuer?: string | undefined;
|
|
14298
14866
|
jwksUri?: string | undefined;
|
|
14299
14867
|
}, {
|
|
14300
14868
|
enabled?: boolean | undefined;
|
|
14301
14869
|
scope?: string | undefined;
|
|
14302
|
-
issuer?: string | undefined;
|
|
14303
14870
|
audience?: string | undefined;
|
|
14871
|
+
issuer?: string | undefined;
|
|
14304
14872
|
jwksUri?: string | undefined;
|
|
14305
14873
|
}>, {
|
|
14306
14874
|
enabled: boolean;
|
|
14307
14875
|
scope?: string | undefined;
|
|
14308
|
-
issuer?: string | undefined;
|
|
14309
14876
|
audience?: string | undefined;
|
|
14877
|
+
issuer?: string | undefined;
|
|
14310
14878
|
jwksUri?: string | undefined;
|
|
14311
14879
|
}, {
|
|
14312
14880
|
enabled?: boolean | undefined;
|
|
14313
14881
|
scope?: string | undefined;
|
|
14314
|
-
issuer?: string | undefined;
|
|
14315
14882
|
audience?: string | undefined;
|
|
14883
|
+
issuer?: string | undefined;
|
|
14316
14884
|
jwksUri?: string | undefined;
|
|
14317
14885
|
}>>;
|
|
14318
14886
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -14322,8 +14890,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
14322
14890
|
oidc?: {
|
|
14323
14891
|
enabled: boolean;
|
|
14324
14892
|
scope?: string | undefined;
|
|
14325
|
-
issuer?: string | undefined;
|
|
14326
14893
|
audience?: string | undefined;
|
|
14894
|
+
issuer?: string | undefined;
|
|
14327
14895
|
jwksUri?: string | undefined;
|
|
14328
14896
|
} | undefined;
|
|
14329
14897
|
}, {
|
|
@@ -14333,8 +14901,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
14333
14901
|
oidc?: {
|
|
14334
14902
|
enabled?: boolean | undefined;
|
|
14335
14903
|
scope?: string | undefined;
|
|
14336
|
-
issuer?: string | undefined;
|
|
14337
14904
|
audience?: string | undefined;
|
|
14905
|
+
issuer?: string | undefined;
|
|
14338
14906
|
jwksUri?: string | undefined;
|
|
14339
14907
|
} | undefined;
|
|
14340
14908
|
}>>;
|
|
@@ -14346,8 +14914,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
14346
14914
|
oidc?: {
|
|
14347
14915
|
enabled: boolean;
|
|
14348
14916
|
scope?: string | undefined;
|
|
14349
|
-
issuer?: string | undefined;
|
|
14350
14917
|
audience?: string | undefined;
|
|
14918
|
+
issuer?: string | undefined;
|
|
14351
14919
|
jwksUri?: string | undefined;
|
|
14352
14920
|
} | undefined;
|
|
14353
14921
|
} | undefined;
|
|
@@ -14359,8 +14927,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
14359
14927
|
oidc?: {
|
|
14360
14928
|
enabled?: boolean | undefined;
|
|
14361
14929
|
scope?: string | undefined;
|
|
14362
|
-
issuer?: string | undefined;
|
|
14363
14930
|
audience?: string | undefined;
|
|
14931
|
+
issuer?: string | undefined;
|
|
14364
14932
|
jwksUri?: string | undefined;
|
|
14365
14933
|
} | undefined;
|
|
14366
14934
|
} | undefined;
|
|
@@ -14390,8 +14958,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
14390
14958
|
oidc?: {
|
|
14391
14959
|
enabled: boolean;
|
|
14392
14960
|
scope?: string | undefined;
|
|
14393
|
-
issuer?: string | undefined;
|
|
14394
14961
|
audience?: string | undefined;
|
|
14962
|
+
issuer?: string | undefined;
|
|
14395
14963
|
jwksUri?: string | undefined;
|
|
14396
14964
|
} | undefined;
|
|
14397
14965
|
} | undefined;
|
|
@@ -14421,8 +14989,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
14421
14989
|
oidc?: {
|
|
14422
14990
|
enabled?: boolean | undefined;
|
|
14423
14991
|
scope?: string | undefined;
|
|
14424
|
-
issuer?: string | undefined;
|
|
14425
14992
|
audience?: string | undefined;
|
|
14993
|
+
issuer?: string | undefined;
|
|
14426
14994
|
jwksUri?: string | undefined;
|
|
14427
14995
|
} | undefined;
|
|
14428
14996
|
} | undefined;
|
|
@@ -14801,6 +15369,22 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
14801
15369
|
} & {
|
|
14802
15370
|
availableRegions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
14803
15371
|
models: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
15372
|
+
guardrailConfig: z.ZodOptional<z.ZodObject<{
|
|
15373
|
+
guardrailIdentifier: z.ZodString;
|
|
15374
|
+
guardrailVersion: z.ZodString;
|
|
15375
|
+
trace: z.ZodOptional<z.ZodEnum<["enabled", "disabled", "enabled_full"]>>;
|
|
15376
|
+
streamProcessingMode: z.ZodOptional<z.ZodEnum<["sync", "async"]>>;
|
|
15377
|
+
}, "strip", z.ZodTypeAny, {
|
|
15378
|
+
guardrailIdentifier: string;
|
|
15379
|
+
guardrailVersion: string;
|
|
15380
|
+
trace?: "disabled" | "enabled" | "enabled_full" | undefined;
|
|
15381
|
+
streamProcessingMode?: "async" | "sync" | undefined;
|
|
15382
|
+
}, {
|
|
15383
|
+
guardrailIdentifier: string;
|
|
15384
|
+
guardrailVersion: string;
|
|
15385
|
+
trace?: "disabled" | "enabled" | "enabled_full" | undefined;
|
|
15386
|
+
streamProcessingMode?: "async" | "sync" | undefined;
|
|
15387
|
+
}>>;
|
|
14804
15388
|
inferenceProfiles: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
14805
15389
|
}, "strip", z.ZodTypeAny, {
|
|
14806
15390
|
baseURL?: string | undefined;
|
|
@@ -14814,6 +15398,12 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
14814
15398
|
maxToolResultChars?: number | undefined;
|
|
14815
15399
|
models?: string[] | undefined;
|
|
14816
15400
|
availableRegions?: string[] | undefined;
|
|
15401
|
+
guardrailConfig?: {
|
|
15402
|
+
guardrailIdentifier: string;
|
|
15403
|
+
guardrailVersion: string;
|
|
15404
|
+
trace?: "disabled" | "enabled" | "enabled_full" | undefined;
|
|
15405
|
+
streamProcessingMode?: "async" | "sync" | undefined;
|
|
15406
|
+
} | undefined;
|
|
14817
15407
|
inferenceProfiles?: Record<string, string> | undefined;
|
|
14818
15408
|
}, {
|
|
14819
15409
|
baseURL?: string | undefined;
|
|
@@ -14827,6 +15417,12 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
14827
15417
|
maxToolResultChars?: number | undefined;
|
|
14828
15418
|
models?: string[] | undefined;
|
|
14829
15419
|
availableRegions?: string[] | undefined;
|
|
15420
|
+
guardrailConfig?: {
|
|
15421
|
+
guardrailIdentifier: string;
|
|
15422
|
+
guardrailVersion: string;
|
|
15423
|
+
trace?: "disabled" | "enabled" | "enabled_full" | undefined;
|
|
15424
|
+
streamProcessingMode?: "async" | "sync" | undefined;
|
|
15425
|
+
} | undefined;
|
|
14830
15426
|
inferenceProfiles?: Record<string, string> | undefined;
|
|
14831
15427
|
}>>;
|
|
14832
15428
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -14989,8 +15585,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
14989
15585
|
oidc?: {
|
|
14990
15586
|
enabled: boolean;
|
|
14991
15587
|
scope?: string | undefined;
|
|
14992
|
-
issuer?: string | undefined;
|
|
14993
15588
|
audience?: string | undefined;
|
|
15589
|
+
issuer?: string | undefined;
|
|
14994
15590
|
jwksUri?: string | undefined;
|
|
14995
15591
|
} | undefined;
|
|
14996
15592
|
} | undefined;
|
|
@@ -15073,6 +15669,12 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
15073
15669
|
maxToolResultChars?: number | undefined;
|
|
15074
15670
|
models?: string[] | undefined;
|
|
15075
15671
|
availableRegions?: string[] | undefined;
|
|
15672
|
+
guardrailConfig?: {
|
|
15673
|
+
guardrailIdentifier: string;
|
|
15674
|
+
guardrailVersion: string;
|
|
15675
|
+
trace?: "disabled" | "enabled" | "enabled_full" | undefined;
|
|
15676
|
+
streamProcessingMode?: "async" | "sync" | undefined;
|
|
15677
|
+
} | undefined;
|
|
15076
15678
|
inferenceProfiles?: Record<string, string> | undefined;
|
|
15077
15679
|
} | undefined;
|
|
15078
15680
|
all?: {
|
|
@@ -15245,8 +15847,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
15245
15847
|
oidc?: {
|
|
15246
15848
|
enabled?: boolean | undefined;
|
|
15247
15849
|
scope?: string | undefined;
|
|
15248
|
-
issuer?: string | undefined;
|
|
15249
15850
|
audience?: string | undefined;
|
|
15851
|
+
issuer?: string | undefined;
|
|
15250
15852
|
jwksUri?: string | undefined;
|
|
15251
15853
|
} | undefined;
|
|
15252
15854
|
} | undefined;
|
|
@@ -15329,6 +15931,12 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
15329
15931
|
maxToolResultChars?: number | undefined;
|
|
15330
15932
|
models?: string[] | undefined;
|
|
15331
15933
|
availableRegions?: string[] | undefined;
|
|
15934
|
+
guardrailConfig?: {
|
|
15935
|
+
guardrailIdentifier: string;
|
|
15936
|
+
guardrailVersion: string;
|
|
15937
|
+
trace?: "disabled" | "enabled" | "enabled_full" | undefined;
|
|
15938
|
+
streamProcessingMode?: "async" | "sync" | undefined;
|
|
15939
|
+
} | undefined;
|
|
15332
15940
|
inferenceProfiles?: Record<string, string> | undefined;
|
|
15333
15941
|
} | undefined;
|
|
15334
15942
|
all?: {
|
|
@@ -15501,8 +16109,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
15501
16109
|
oidc?: {
|
|
15502
16110
|
enabled: boolean;
|
|
15503
16111
|
scope?: string | undefined;
|
|
15504
|
-
issuer?: string | undefined;
|
|
15505
16112
|
audience?: string | undefined;
|
|
16113
|
+
issuer?: string | undefined;
|
|
15506
16114
|
jwksUri?: string | undefined;
|
|
15507
16115
|
} | undefined;
|
|
15508
16116
|
} | undefined;
|
|
@@ -15585,6 +16193,12 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
15585
16193
|
maxToolResultChars?: number | undefined;
|
|
15586
16194
|
models?: string[] | undefined;
|
|
15587
16195
|
availableRegions?: string[] | undefined;
|
|
16196
|
+
guardrailConfig?: {
|
|
16197
|
+
guardrailIdentifier: string;
|
|
16198
|
+
guardrailVersion: string;
|
|
16199
|
+
trace?: "disabled" | "enabled" | "enabled_full" | undefined;
|
|
16200
|
+
streamProcessingMode?: "async" | "sync" | undefined;
|
|
16201
|
+
} | undefined;
|
|
15588
16202
|
inferenceProfiles?: Record<string, string> | undefined;
|
|
15589
16203
|
} | undefined;
|
|
15590
16204
|
all?: {
|
|
@@ -15757,8 +16371,8 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
15757
16371
|
oidc?: {
|
|
15758
16372
|
enabled?: boolean | undefined;
|
|
15759
16373
|
scope?: string | undefined;
|
|
15760
|
-
issuer?: string | undefined;
|
|
15761
16374
|
audience?: string | undefined;
|
|
16375
|
+
issuer?: string | undefined;
|
|
15762
16376
|
jwksUri?: string | undefined;
|
|
15763
16377
|
} | undefined;
|
|
15764
16378
|
} | undefined;
|
|
@@ -15841,6 +16455,12 @@ export declare const getConfigDefaults: () => ExtractDefaults<{
|
|
|
15841
16455
|
maxToolResultChars?: number | undefined;
|
|
15842
16456
|
models?: string[] | undefined;
|
|
15843
16457
|
availableRegions?: string[] | undefined;
|
|
16458
|
+
guardrailConfig?: {
|
|
16459
|
+
guardrailIdentifier: string;
|
|
16460
|
+
guardrailVersion: string;
|
|
16461
|
+
trace?: "disabled" | "enabled" | "enabled_full" | undefined;
|
|
16462
|
+
streamProcessingMode?: "async" | "sync" | undefined;
|
|
16463
|
+
} | undefined;
|
|
15844
16464
|
inferenceProfiles?: Record<string, string> | undefined;
|
|
15845
16465
|
} | undefined;
|
|
15846
16466
|
all?: {
|
|
@@ -16299,7 +16919,11 @@ export declare enum SettingsTabValues {
|
|
|
16299
16919
|
/**
|
|
16300
16920
|
* Tab for Personalization Settings
|
|
16301
16921
|
*/
|
|
16302
|
-
PERSONALIZATION = "personalization"
|
|
16922
|
+
PERSONALIZATION = "personalization",
|
|
16923
|
+
/**
|
|
16924
|
+
* Tab for About / Build Info
|
|
16925
|
+
*/
|
|
16926
|
+
ABOUT = "about"
|
|
16303
16927
|
}
|
|
16304
16928
|
export declare enum STTProviders {
|
|
16305
16929
|
/**
|
|
@@ -16331,10 +16955,18 @@ export declare enum TTSProviders {
|
|
|
16331
16955
|
}
|
|
16332
16956
|
/** Enum for app-wide constants */
|
|
16333
16957
|
export declare enum Constants {
|
|
16334
|
-
/**
|
|
16335
|
-
|
|
16958
|
+
/**
|
|
16959
|
+
* Key for the app's version. The placeholder `v0.8.6` is
|
|
16960
|
+
* swapped in by `@rollup/plugin-replace` during `npm run build:data-provider`
|
|
16961
|
+
* using the value of the root `package.json`'s `version` field. Consumers
|
|
16962
|
+
* always import this via the built dist bundle (see `main` field in
|
|
16963
|
+
* `packages/data-provider/package.json`), so production and UI code get the
|
|
16964
|
+
* substituted value. Only tests that import the TypeScript source directly
|
|
16965
|
+
* would observe the raw placeholder.
|
|
16966
|
+
*/
|
|
16967
|
+
VERSION = "v0.8.6",
|
|
16336
16968
|
/** Key for the Custom Config's version (librechat.yaml). */
|
|
16337
|
-
CONFIG_VERSION = "1.3.
|
|
16969
|
+
CONFIG_VERSION = "1.3.12",
|
|
16338
16970
|
/** Standard value for the first message's `parentMessageId` value, to indicate no parent exists. */
|
|
16339
16971
|
NO_PARENT = "00000000-0000-0000-0000-000000000000",
|
|
16340
16972
|
/** Standard value to use whatever the submission prelim. `responseMessageId` is */
|