@wireapp/api-client 19.16.0 → 19.17.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/CHANGELOG.md CHANGED
@@ -3,6 +3,33 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [19.17.1](https://github.com/wireapp/wire-web-packages/tree/main/packages/api-client/compare/@wireapp/api-client@19.17.0...@wireapp/api-client@19.17.1) (2022-07-25)
7
+
8
+ **Note:** Version bump only for package @wireapp/api-client
9
+
10
+
11
+
12
+
13
+
14
+ # [19.17.0](https://github.com/wireapp/wire-web-packages/tree/main/packages/api-client/compare/@wireapp/api-client@19.16.1...@wireapp/api-client@19.17.0) (2022-07-20)
15
+
16
+
17
+ ### Features
18
+
19
+ * **api-client:** add 'splash_screen' field to TeamData model ([#4338](https://github.com/wireapp/wire-web-packages/tree/main/packages/api-client/issues/4338)) ([83e4f0c](https://github.com/wireapp/wire-web-packages/tree/main/packages/api-client/commit/83e4f0cc5353fe9adcd09fac6860b68d46aaf3a5))
20
+
21
+
22
+
23
+
24
+
25
+ ## [19.16.1](https://github.com/wireapp/wire-web-packages/tree/main/packages/api-client/compare/@wireapp/api-client@19.16.0...@wireapp/api-client@19.16.1) (2022-07-19)
26
+
27
+ **Note:** Version bump only for package @wireapp/api-client
28
+
29
+
30
+
31
+
32
+
6
33
  # [19.16.0](https://github.com/wireapp/wire-web-packages/tree/main/packages/api-client/compare/@wireapp/api-client@19.15.2...@wireapp/api-client@19.16.0) (2022-07-18)
7
34
 
8
35
 
package/package.json CHANGED
@@ -29,7 +29,7 @@
29
29
  "@types/jasmine": "3.8.2",
30
30
  "@types/karma": "6.3.1",
31
31
  "@types/ws": "7.4.7",
32
- "@wireapp/react-ui-kit": "8.8.4",
32
+ "@wireapp/react-ui-kit": "8.10.0",
33
33
  "@wireapp/store-engine": "4.9.9",
34
34
  "@wireapp/store-engine-fs": "2.4.9",
35
35
  "babel-loader": "8.2.2",
@@ -90,6 +90,6 @@
90
90
  "test:types": "tsc --noEmit",
91
91
  "watch": "webpack serve --config webpack.browser.js"
92
92
  },
93
- "version": "19.16.0",
94
- "gitHead": "cf389aee57cd27cb3e84473850b2727e1c2f72d6"
93
+ "version": "19.17.1",
94
+ "gitHead": "bd794e434b48bb978ea2ec071d4a772ca30f0964"
95
95
  }
@@ -9,4 +9,6 @@ export interface NewTeamData {
9
9
  /** Initial team member IDs (between 1 and 127) */
10
10
  members?: MemberData[];
11
11
  name: string;
12
+ /** Team Splash Screen (asset key) */
13
+ splash_screen?: string;
12
14
  }
@@ -11,4 +11,6 @@ export interface TeamData {
11
11
  icon_key?: string;
12
12
  id: string;
13
13
  name: string;
14
+ /** Team Splash Screen (asset key) */
15
+ splash_screen?: string;
14
16
  }
@@ -5,4 +5,6 @@ export interface UpdateTeamData {
5
5
  icon_key?: string;
6
6
  /** New team name */
7
7
  name?: string;
8
+ /** New Splash Screen (asset key) */
9
+ splash_screen?: string;
8
10
  }