@wireapp/api-client 19.17.2 → 19.18.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 +27 -0
- package/package.json +3 -3
- package/src/conversation/Conversation.d.ts +2 -1
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.18.0](https://github.com/wireapp/wire-web-packages/tree/main/packages/api-client/compare/@wireapp/api-client@19.17.4...@wireapp/api-client@19.18.0) (2022-07-27)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **api-client:** add protocol to conversation ([#4349](https://github.com/wireapp/wire-web-packages/tree/main/packages/api-client/issues/4349)) ([7332878](https://github.com/wireapp/wire-web-packages/tree/main/packages/api-client/commit/733287816e4509f553f2a865e3aa14db1d5bcede))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [19.17.4](https://github.com/wireapp/wire-web-packages/tree/main/packages/api-client/compare/@wireapp/api-client@19.17.3...@wireapp/api-client@19.17.4) (2022-07-26)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @wireapp/api-client
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
## [19.17.3](https://github.com/wireapp/wire-web-packages/tree/main/packages/api-client/compare/@wireapp/api-client@19.17.2...@wireapp/api-client@19.17.3) (2022-07-26)
|
|
26
|
+
|
|
27
|
+
**Note:** Version bump only for package @wireapp/api-client
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
## [19.17.2](https://github.com/wireapp/wire-web-packages/tree/main/packages/api-client/compare/@wireapp/api-client@19.17.1...@wireapp/api-client@19.17.2) (2022-07-25)
|
|
7
34
|
|
|
8
35
|
**Note:** Version bump only for package @wireapp/api-client
|
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.11.
|
|
32
|
+
"@wireapp/react-ui-kit": "8.11.2",
|
|
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.
|
|
94
|
-
"gitHead": "
|
|
93
|
+
"version": "19.18.0",
|
|
94
|
+
"gitHead": "0aa1ff5a26a6905921f0a46f400b6093190ae579"
|
|
95
95
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { ConversationMembers } from './';
|
|
1
|
+
import type { ConversationMembers, ConversationProtocol } from './';
|
|
2
2
|
import type { QualifiedId } from '../user';
|
|
3
3
|
import type { RECEIPT_MODE } from './data';
|
|
4
4
|
export declare enum CONVERSATION_TYPE {
|
|
@@ -62,5 +62,6 @@ export interface Conversation {
|
|
|
62
62
|
members: ConversationMembers;
|
|
63
63
|
/** MLS conversations only */
|
|
64
64
|
group_id?: string;
|
|
65
|
+
protocol: ConversationProtocol;
|
|
65
66
|
}
|
|
66
67
|
export {};
|