upgrade playwright dependencies, server config and client config types for v10.7 (#30605)

Этот коммит содержится в:
Saturnino Abril
2025-04-03 00:35:06 +08:00
коммит произвёл GitHub
родитель d25326764f
Коммит c3f02b8ebc
6 изменённых файлов: 212 добавлений и 344 удалений

Просмотреть файл

@@ -403,6 +403,8 @@ export type ServiceSettings = {
EnableDesktopLandingPage: boolean;
MaximumURLLength: number;
ScheduledPosts: boolean;
EnableWebHubChannelIteration: boolean;
FrameAncestors: string;
};
export type TeamSettings = {
@@ -771,6 +773,9 @@ export type NativeAppSettings = {
AndroidAppDownloadLink: string;
IosAppDownloadLink: string;
MobileExternalBrowser: boolean;
MobileEnableBiometrics: boolean;
MobilePreventScreenCapture: boolean;
MobileJailbreakProtection: boolean;
};
export type ClusterSettings = {
@@ -793,6 +798,7 @@ export type MetricsSettings = {
ListenAddress: string;
EnableClientMetrics: boolean;
EnableNotificationMetrics: boolean;
ClientSideUserIds: string[];
};
export type ExperimentalSettings = {
@@ -819,6 +825,7 @@ export type CacheSettings = {
RedisAddress: string;
RedisPassword: string;
RedisDB: number;
RedisCachePrefix: string;
DisableClientCache: boolean;
};