CLD-5948 Playwright/E2E: Update dependencies, server default config and its types, and remove Boards and mobile view tests (#24583)

* update dependencies

* update dependencies

* remove mobile view

* remove boards

* update default config  and its types

* update snapshots

* fix formatting

* check works and fix styling
Этот коммит содержится в:
Saturnino Abril
2023-09-20 05:28:35 +08:00
коммит произвёл GitHub
родитель 88d043a971
Коммит b7b08dbc0f
63 изменённых файлов: 657 добавлений и 834 удалений

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

@@ -405,6 +405,7 @@ export type TeamSettings = {
ExperimentalPrimaryTeam: string;
ExperimentalDefaultChannels: string[];
EnableLastActiveTime: boolean;
EnableJoinLeaveMessageByDefault: boolean;
};
export type ClientRequirements = {
@@ -429,6 +430,7 @@ export type SqlSettings = {
DisableDatabaseSearch: boolean;
MigrationsStatementTimeoutSeconds: number;
ReplicaLagSettings: ReplicaLagSetting[];
ReplicaMonitorIntervalSeconds: number;
};
export type LogSettings = {
@@ -445,6 +447,7 @@ export type LogSettings = {
VerboseDiagnostics: boolean;
EnableSentry: boolean;
AdvancedLoggingConfig: string;
AdvancedLoggingJSON: Record<string, any>;
};
export type ExperimentalAuditSettings = {
@@ -456,6 +459,7 @@ export type ExperimentalAuditSettings = {
FileCompress: boolean;
FileMaxQueueSize: number;
AdvancedLoggingConfig: string;
AdvancedLoggingJSON: Record<string, any>;
};
export type NotificationLogSettings = {
@@ -468,6 +472,7 @@ export type NotificationLogSettings = {
FileJson: boolean;
FileLocation: string;
AdvancedLoggingConfig: string;
AdvancedLoggingJSON: Record<string, any>;
};
export type PasswordSettings = {
@@ -504,6 +509,21 @@ export type FileSettings = {
AmazonS3SSE: boolean;
AmazonS3Trace: boolean;
AmazonS3RequestTimeoutMilliseconds: number;
DedicatedExportStore: boolean;
ExportDriverName: string;
ExportDirectory: string;
ExportAmazonS3AccessKeyId: string;
ExportAmazonS3SecretAccessKey: string;
ExportAmazonS3Bucket: string;
ExportAmazonS3PathPrefix: string;
ExportAmazonS3Region: string;
ExportAmazonS3Endpoint: string;
ExportAmazonS3SSL: boolean;
ExportAmazonS3SignV2: boolean;
ExportAmazonS3SSE: boolean;
ExportAmazonS3Trace: boolean;
ExportAmazonS3RequestTimeoutMilliseconds: number;
ExportAmazonS3PresignExpiresSeconds: number;
};
export type EmailSettings = {
@@ -793,6 +813,10 @@ export type DataRetentionSettings = {
FileRetentionDays: number;
DeletionJobStartTime: string;
BatchSize: number;
EnableBoardsDeletion: boolean,
BoardsRetentionDays: number;
TimeBetweenBatchesMilliseconds: number;
RetentionIdsBatchSize: number;
};
export type MessageExportSettings = {
@@ -842,6 +866,7 @@ export type PluginSettings = {
export type DisplaySettings = {
CustomURLSchemes: string[];
ExperimentalTimezone: boolean;
MaxMarkdownNodes: number;
};
export type GuestAccountsSettings = {
@@ -862,6 +887,7 @@ export type ImageProxySettings = {
export type CloudSettings = {
CWSURL: string;
CWSAPIURL: string;
CWSMock: boolean;
};
export type FeatureFlags = Record<string, string | boolean>;