@mattermost/types 8.0.0 → 8.1.1
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/apps.d.ts +1 -1
- package/lib/config.d.ts +8 -1
- package/lib/jobs.d.ts +1 -1
- package/package.json +1 -1
package/lib/apps.d.ts
CHANGED
|
@@ -102,7 +102,7 @@ export declare type AppContext = {
|
|
|
102
102
|
export declare type AppContextProps = {
|
|
103
103
|
[name: string]: string;
|
|
104
104
|
};
|
|
105
|
-
export declare type AppExpandLevel = '' | 'none' | 'summary' | '+summary' | 'all' | '+all';
|
|
105
|
+
export declare type AppExpandLevel = '' | 'none' | 'summary' | '+summary' | 'all' | '+all' | 'id';
|
|
106
106
|
export declare type AppExpand = {
|
|
107
107
|
app?: AppExpandLevel;
|
|
108
108
|
acting_user?: AppExpandLevel;
|
package/lib/config.d.ts
CHANGED
|
@@ -116,6 +116,7 @@ export declare type ClientConfig = {
|
|
|
116
116
|
FeatureFlagBoardsProduct: string;
|
|
117
117
|
FeatureFlagCallsEnabled: string;
|
|
118
118
|
FeatureFlagGraphQL: string;
|
|
119
|
+
ForgotPasswordLink: string;
|
|
119
120
|
GfycatAPIKey: string;
|
|
120
121
|
GfycatAPISecret: string;
|
|
121
122
|
GiphySdkKey: string;
|
|
@@ -123,6 +124,7 @@ export declare type ClientConfig = {
|
|
|
123
124
|
GuestAccountsEnforceMultifactorAuthentication: string;
|
|
124
125
|
HasImageProxy: string;
|
|
125
126
|
HelpLink: string;
|
|
127
|
+
HideGuestTags: string;
|
|
126
128
|
IosAppDownloadLink: string;
|
|
127
129
|
IosLatestVersion: string;
|
|
128
130
|
IosMinVersion: string;
|
|
@@ -149,6 +151,7 @@ export declare type ClientConfig = {
|
|
|
149
151
|
GitLabButtonColor: string;
|
|
150
152
|
OpenIdButtonText: string;
|
|
151
153
|
OpenIdButtonColor: string;
|
|
154
|
+
PasswordEnableForgotLink: string;
|
|
152
155
|
PasswordMinimumLength: string;
|
|
153
156
|
PasswordRequireLowercase: string;
|
|
154
157
|
PasswordRequireNumber: string;
|
|
@@ -190,7 +193,6 @@ export declare type ClientConfig = {
|
|
|
190
193
|
DisableAppBar: string;
|
|
191
194
|
EnableComplianceExport: string;
|
|
192
195
|
PostPriority: string;
|
|
193
|
-
ReduceOnBoardingTaskList: string;
|
|
194
196
|
PostAcknowledgements: string;
|
|
195
197
|
AllowPersistentNotifications: string;
|
|
196
198
|
PersistentNotificationMaxRecipients: string;
|
|
@@ -460,6 +462,7 @@ export declare type PasswordSettings = {
|
|
|
460
462
|
Number: boolean;
|
|
461
463
|
Uppercase: boolean;
|
|
462
464
|
Symbol: boolean;
|
|
465
|
+
EnableForgotLink: boolean;
|
|
463
466
|
};
|
|
464
467
|
export declare type FileSettings = {
|
|
465
468
|
EnableFileAttachments: boolean;
|
|
@@ -507,6 +510,8 @@ export declare type EmailSettings = {
|
|
|
507
510
|
ConnectionSecurity: string;
|
|
508
511
|
SendPushNotifications: boolean;
|
|
509
512
|
PushNotificationServer: string;
|
|
513
|
+
PushNotificationServerType: 'off' | 'mhpns' | 'mtpns' | 'custom';
|
|
514
|
+
PushNotificationServerLocation: 'us' | 'de';
|
|
510
515
|
PushNotificationContents: string;
|
|
511
516
|
PushNotificationBuffer: number;
|
|
512
517
|
EnableEmailBatching: boolean;
|
|
@@ -538,6 +543,7 @@ export declare type SupportSettings = {
|
|
|
538
543
|
AboutLink: string;
|
|
539
544
|
HelpLink: string;
|
|
540
545
|
ReportAProblemLink: string;
|
|
546
|
+
ForgotPasswordLink: string;
|
|
541
547
|
SupportEmail: string;
|
|
542
548
|
CustomTermsOfServiceEnabled: boolean;
|
|
543
549
|
CustomTermsOfServiceReAcceptancePeriod: number;
|
|
@@ -802,6 +808,7 @@ export declare type DisplaySettings = {
|
|
|
802
808
|
};
|
|
803
809
|
export declare type GuestAccountsSettings = {
|
|
804
810
|
Enable: boolean;
|
|
811
|
+
HideTags: boolean;
|
|
805
812
|
AllowEmailAccounts: boolean;
|
|
806
813
|
EnforceMultifactorAuthentication: boolean;
|
|
807
814
|
RestrictCreationToDomains: string;
|
package/lib/jobs.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { IDMappedObjects } from './utilities';
|
|
2
|
-
export declare type JobType = 'data_retention' | 'elasticsearch_post_indexing' | 'ldap_sync' | 'message_export';
|
|
2
|
+
export declare type JobType = 'data_retention' | 'elasticsearch_post_indexing' | 'bleve_post_indexing' | 'ldap_sync' | 'message_export';
|
|
3
3
|
export declare type JobStatus = 'pending' | 'in_progress' | 'success' | 'error' | 'cancel_requested' | 'canceled' | 'warning';
|
|
4
4
|
export declare type Job = JobTypeBase & {
|
|
5
5
|
id: string;
|