@wireapp/api-client 18.5.0 → 18.5.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 +11 -0
- package/package.json +2 -2
- package/src/client/NewClient.d.ts +1 -1
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
|
+
## [18.5.1](https://github.com/wireapp/wire-web-packages/tree/main/packages/api-client/compare/@wireapp/api-client@18.5.0...@wireapp/api-client@18.5.1) (2022-03-21)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **services:** Change verification code data payload according to backend spec ([#4247](https://github.com/wireapp/wire-web-packages/tree/main/packages/api-client/issues/4247)) ([5f5937b](https://github.com/wireapp/wire-web-packages/tree/main/packages/api-client/commit/5f5937b5e35d83c2c3cbfea81e3644fc5b0beeb3))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [18.5.0](https://github.com/wireapp/wire-web-packages/tree/main/packages/api-client/compare/@wireapp/api-client@18.4.0...@wireapp/api-client@18.5.0) (2022-03-18)
|
|
7
18
|
|
|
8
19
|
|
package/package.json
CHANGED
|
@@ -12,7 +12,7 @@ export interface NewClient extends SharedClientModel {
|
|
|
12
12
|
location?: Location;
|
|
13
13
|
model?: string;
|
|
14
14
|
password?: string;
|
|
15
|
-
|
|
15
|
+
verification_code?: string;
|
|
16
16
|
type: ClientType.PERMANENT | ClientType.TEMPORARY;
|
|
17
17
|
}
|
|
18
18
|
export declare type UpdatedClient = Partial<SharedClientModel & ClientCapabilityData>;
|