@wireapp/core 28.2.3 → 28.3.2
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
|
+
## [28.3.2](https://github.com/wireapp/wire-web-packages/tree/main/packages/core/compare/@wireapp/core@28.3.1...@wireapp/core@28.3.2) (2022-07-06)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @wireapp/core
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [28.3.1](https://github.com/wireapp/wire-web-packages/tree/main/packages/core/compare/@wireapp/core@28.3.0...@wireapp/core@28.3.1) (2022-07-06)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @wireapp/core
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# [28.3.0](https://github.com/wireapp/wire-web-packages/tree/main/packages/core/compare/@wireapp/core@28.2.3...@wireapp/core@28.3.0) (2022-07-05)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Features
|
|
26
|
+
|
|
27
|
+
* Upgrade conversation member endpoint to v2 ([#4312](https://github.com/wireapp/wire-web-packages/tree/main/packages/core/issues/4312)) ([f68e812](https://github.com/wireapp/wire-web-packages/tree/main/packages/core/commit/f68e812e6c4d7601d4d4c194e4f853a76bff39e5))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
## [28.2.3](https://github.com/wireapp/wire-web-packages/tree/main/packages/core/compare/@wireapp/core@28.2.2...@wireapp/core@28.2.3) (2022-07-05)
|
|
7
34
|
|
|
8
35
|
**Note:** Version bump only for package @wireapp/core
|
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"@otak/core-crypto": "0.3.0-beta-1",
|
|
8
8
|
"@types/long": "4.0.1",
|
|
9
9
|
"@types/node": "~14",
|
|
10
|
-
"@wireapp/api-client": "19.
|
|
10
|
+
"@wireapp/api-client": "19.11.2",
|
|
11
11
|
"@wireapp/cryptobox": "12.8.0",
|
|
12
12
|
"bazinga64": "5.10.0",
|
|
13
13
|
"hash.js": "1.1.7",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"@types/faker": "5.5.7",
|
|
23
23
|
"@types/jasmine": "3.8.2",
|
|
24
24
|
"@types/karma": "6.3.1",
|
|
25
|
-
"@wireapp/commons": "4.
|
|
25
|
+
"@wireapp/commons": "4.3.0",
|
|
26
26
|
"@wireapp/store-engine-dexie": "1.6.10",
|
|
27
27
|
"commander": "8.0.0",
|
|
28
28
|
"cross-env": "7.0.3",
|
|
@@ -73,6 +73,6 @@
|
|
|
73
73
|
"test:project": "yarn dist && yarn test",
|
|
74
74
|
"test:node": "nyc jasmine --config=jasmine.json"
|
|
75
75
|
},
|
|
76
|
-
"version": "28.2
|
|
77
|
-
"gitHead": "
|
|
76
|
+
"version": "28.3.2",
|
|
77
|
+
"gitHead": "4522ec11205b67d8896e0d2dde95a7e4ddea28ce"
|
|
78
78
|
}
|
|
@@ -174,7 +174,7 @@ export declare class ConversationService {
|
|
|
174
174
|
getConversations(conversationIds?: string[]): Promise<Conversation[]>;
|
|
175
175
|
getAsset({ assetId, assetToken, otrKey, sha256 }: RemoteData): Promise<Uint8Array>;
|
|
176
176
|
getUnencryptedAsset(assetId: string, assetToken?: string): Promise<ArrayBuffer>;
|
|
177
|
-
addUser(conversationId:
|
|
177
|
+
addUser(conversationId: QualifiedId, userIds: string | string[] | QualifiedId | QualifiedId[]): Promise<QualifiedId[]>;
|
|
178
178
|
removeUser(conversationId: string, userId: string): Promise<string>;
|
|
179
179
|
/**
|
|
180
180
|
* Sends a message to a conversation
|