@mattermost/types 10.3.0 → 10.4.0
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/lib/config.d.ts +5 -0
- package/lib/store.d.ts +1 -0
- package/package.json +1 -1
package/lib/config.d.ts
CHANGED
|
@@ -55,6 +55,7 @@ export type ClientConfig = {
|
|
|
55
55
|
EnableCustomEmoji: string;
|
|
56
56
|
EnableCustomGroups: string;
|
|
57
57
|
EnableCustomUserStatuses: string;
|
|
58
|
+
EnableExperimentalLocales: string;
|
|
58
59
|
EnableUserStatuses: string;
|
|
59
60
|
EnableLastActiveTime: string;
|
|
60
61
|
EnableTimedDND: string;
|
|
@@ -389,6 +390,7 @@ export type ServiceSettings = {
|
|
|
389
390
|
EnableAPIPostDeletion: boolean;
|
|
390
391
|
EnableDesktopLandingPage: boolean;
|
|
391
392
|
MaximumURLLength: number;
|
|
393
|
+
ScheduledPosts: boolean;
|
|
392
394
|
};
|
|
393
395
|
export type TeamSettings = {
|
|
394
396
|
SiteName: string;
|
|
@@ -524,6 +526,7 @@ export type FileSettings = {
|
|
|
524
526
|
AmazonS3Trace: boolean;
|
|
525
527
|
AmazonS3RequestTimeoutMilliseconds: number;
|
|
526
528
|
AmazonS3UploadPartSizeBytes: number;
|
|
529
|
+
AmazonS3StorageClass: string;
|
|
527
530
|
DedicatedExportStore: boolean;
|
|
528
531
|
ExportDriverName: string;
|
|
529
532
|
ExportDirectory: string;
|
|
@@ -540,6 +543,7 @@ export type FileSettings = {
|
|
|
540
543
|
ExportAmazonS3RequestTimeoutMilliseconds: number;
|
|
541
544
|
ExportAmazonS3PresignExpiresSeconds: number;
|
|
542
545
|
ExportAmazonS3UploadPartSizeBytes: number;
|
|
546
|
+
ExportAmazonS3StorageClass: string;
|
|
543
547
|
};
|
|
544
548
|
export type EmailSettings = {
|
|
545
549
|
EnableSignUpWithEmail: boolean;
|
|
@@ -687,6 +691,7 @@ export type LocalizationSettings = {
|
|
|
687
691
|
DefaultServerLocale: string;
|
|
688
692
|
DefaultClientLocale: string;
|
|
689
693
|
AvailableLocales: string;
|
|
694
|
+
EnableExperimentalLocales: boolean;
|
|
690
695
|
};
|
|
691
696
|
export type SamlSettings = {
|
|
692
697
|
Enable: boolean;
|
package/lib/store.d.ts
CHANGED