@mattermost/types 10.5.0 → 10.6.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/admin.d.ts CHANGED
@@ -76,13 +76,13 @@ export type AnalyticsState = {
76
76
  TOTAL_READ_DB_CONNECTIONS?: number;
77
77
  DAILY_ACTIVE_USERS?: number;
78
78
  MONTHLY_ACTIVE_USERS?: number;
79
- TOTAL_FILE_POSTS?: number;
80
- TOTAL_HASHTAG_POSTS?: number;
81
79
  TOTAL_IHOOKS?: number;
82
80
  TOTAL_OHOOKS?: number;
83
81
  TOTAL_COMMANDS?: number;
84
82
  TOTAL_SESSIONS?: number;
85
83
  REGISTERED_USERS?: number;
84
+ TOTAL_FILE_COUNT?: number;
85
+ TOTAL_FILE_SIZE?: number;
86
86
  };
87
87
  export type ClusterInfo = {
88
88
  id: string;
package/lib/config.d.ts CHANGED
@@ -313,7 +313,6 @@ export type ServiceSettings = {
313
313
  EnableDeveloper: boolean;
314
314
  DeveloperFlags: string;
315
315
  EnableClientPerformanceDebugging: boolean;
316
- EnableOpenTracing: boolean;
317
316
  EnableSecurityFixAlert: boolean;
318
317
  EnableInsecureOutgoingConnections: boolean;
319
318
  AllowedUntrustedInternalConnections: string;
@@ -837,6 +836,8 @@ export type MessageExportSettings = {
837
836
  DailyRunTime: string;
838
837
  ExportFromTimestamp: number;
839
838
  BatchSize: number;
839
+ ChannelBatchSize: number;
840
+ ChannelHistoryBatchSize: number;
840
841
  GlobalRelaySettings: {
841
842
  CustomerType: string;
842
843
  SMTPUsername: string;
package/lib/posts.d.ts CHANGED
@@ -1,4 +1,3 @@
1
- import type { TrackPropertyUser } from 'mattermost-webapp/src/packages/mattermost-redux/src/constants/telemetry';
2
1
  import type { Channel, ChannelType } from './channels';
3
2
  import type { CustomEmoji } from './emojis';
4
3
  import type { FileInfo } from './files';
@@ -153,7 +152,7 @@ export declare type TeamsUsageResponse = {
153
152
  export type PostAnalytics = {
154
153
  channel_id: string;
155
154
  post_id: string;
156
- [TrackPropertyUser]: string;
155
+ user_actual_id: string;
157
156
  root_id: string;
158
157
  priority?: PostPriority | '';
159
158
  requested_ack?: boolean;
package/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "@mattermost/types",
3
- "version": "10.5.0",
3
+ "version": "10.6.0",
4
4
  "description": "Shared type definitions used by the Mattermost web app",
5
5
  "keywords": [
6
6
  "mattermost"
7
7
  ],
8
8
  "homepage": "https://github.com/mattermost/mattermost/tree/master/webapp/platform/types#readme",
9
9
  "license": "MIT",
10
+ "type": "commonjs",
10
11
  "files": [
11
12
  "lib"
12
13
  ],
@@ -16,7 +17,8 @@
16
17
  "typesVersions": {
17
18
  ">=3.1": {
18
19
  "*": [
19
- "./lib/*.d.ts"
20
+ "./lib/*.d.ts",
21
+ "./lib/*/index.d.ts"
20
22
  ]
21
23
  }
22
24
  },