@wireapp/api-client 20.3.1 → 20.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/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
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
+ # [20.4.0](https://github.com/wireapp/wire-web-packages/tree/main/packages/api-client/compare/@wireapp/api-client@20.3.1...@wireapp/api-client@20.4.0) (2022-09-19)
7
+
8
+
9
+ ### Features
10
+
11
+ * Add cipher_suite to conversation data (FS-881) ([#4400](https://github.com/wireapp/wire-web-packages/tree/main/packages/api-client/issues/4400)) ([d216468](https://github.com/wireapp/wire-web-packages/tree/main/packages/api-client/commit/d2164680ec484d432cdf62da69b5afa86c956067))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [20.3.1](https://github.com/wireapp/wire-web-packages/tree/main/packages/api-client/compare/@wireapp/api-client@20.3.0...@wireapp/api-client@20.3.1) (2022-09-13)
7
18
 
8
19
 
package/package.json CHANGED
@@ -90,6 +90,6 @@
90
90
  "test:types": "tsc --noEmit",
91
91
  "watch": "webpack serve --config webpack.browser.js"
92
92
  },
93
- "version": "20.3.1",
94
- "gitHead": "7f7ff444af87563ce59f0782eae6806a6c43c9d3"
93
+ "version": "20.4.0",
94
+ "gitHead": "42fe05962dfbaaaabc58eedc4213a29200c988e8"
95
95
  }
@@ -63,6 +63,7 @@ export interface Conversation {
63
63
  /** MLS conversations only */
64
64
  group_id?: string;
65
65
  epoch?: number;
66
+ cipher_suite?: number;
66
67
  protocol: ConversationProtocol;
67
68
  }
68
69
  export {};