@wireapp/api-client 20.0.4 → 20.2.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,36 @@
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.2.1](https://github.com/wireapp/wire-web-packages/tree/main/packages/api-client/compare/@wireapp/api-client@20.2.0...@wireapp/api-client@20.2.1) (2022-09-08)
7
+
8
+ **Note:** Version bump only for package @wireapp/api-client
9
+
10
+
11
+
12
+
13
+
14
+ # [20.2.0](https://github.com/wireapp/wire-web-packages/tree/main/packages/api-client/compare/@wireapp/api-client@20.1.0...@wireapp/api-client@20.2.0) (2022-09-07)
15
+
16
+
17
+ ### Features
18
+
19
+ * Update getAllParticipantsClients to use better endpoints without a hack ([#4379](https://github.com/wireapp/wire-web-packages/tree/main/packages/api-client/issues/4379)) ([f38258d](https://github.com/wireapp/wire-web-packages/tree/main/packages/api-client/commit/f38258db39e81c4b517126792aa6c605b1ea51c5))
20
+
21
+
22
+
23
+
24
+
25
+ # [20.1.0](https://github.com/wireapp/wire-web-packages/tree/main/packages/api-client/compare/@wireapp/api-client@20.0.4...@wireapp/api-client@20.1.0) (2022-09-07)
26
+
27
+
28
+ ### Features
29
+
30
+ * Add ability to send external proposal (FS-689) ([#4376](https://github.com/wireapp/wire-web-packages/tree/main/packages/api-client/issues/4376)) ([bf8e7dd](https://github.com/wireapp/wire-web-packages/tree/main/packages/api-client/commit/bf8e7ddd7ea4660c8a5b6eea93e27ec14485de6c))
31
+
32
+
33
+
34
+
35
+
6
36
  ## [20.0.4](https://github.com/wireapp/wire-web-packages/tree/main/packages/api-client/compare/@wireapp/api-client@20.0.3...@wireapp/api-client@20.0.4) (2022-09-02)
7
37
 
8
38
  **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.13.7",
32
+ "@wireapp/react-ui-kit": "8.13.8",
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": "20.0.4",
94
- "gitHead": "a6993ee7b942cf5c4fe85dbb8cf742c546765a36"
93
+ "version": "20.2.1",
94
+ "gitHead": "4cc5f40299b0b8fb593f169073c5c6740a2939f1"
95
95
  }
@@ -62,6 +62,7 @@ export interface Conversation {
62
62
  members: ConversationMembers;
63
63
  /** MLS conversations only */
64
64
  group_id?: string;
65
+ epoch?: number;
65
66
  protocol: ConversationProtocol;
66
67
  }
67
68
  export {};
@@ -1,3 +1,4 @@
1
+ import { QualifiedId } from '../user';
1
2
  import type { DefaultConversationRoleName, MutedStatus, ServiceRef } from './';
2
3
  export interface Member {
3
4
  /**
@@ -20,4 +21,5 @@ export interface Member {
20
21
  service: ServiceRef | null;
21
22
  status_ref: string;
22
23
  status_time: string;
24
+ qualified_id?: QualifiedId;
23
25
  }