@wireapp/api-client 27.20.0 → 27.20.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/lib/cells/CellsAPI.js +1 -1
- package/package.json +3 -3
package/lib/cells/CellsAPI.js
CHANGED
|
@@ -29,7 +29,7 @@ class CellsAPI {
|
|
|
29
29
|
this.client = new cells_sdk_ts_1.NodeServiceApi(undefined, undefined, httpClient.client);
|
|
30
30
|
}
|
|
31
31
|
async uploadFileDraft({ uuid, versionId, filePath, file, autoRename = true, }) {
|
|
32
|
-
let path =
|
|
32
|
+
let path = `${filePath}`.normalize('NFC');
|
|
33
33
|
const result = await this.client.createCheck({
|
|
34
34
|
Inputs: [{ Type: 'LEAF', Locator: { Path: path, Uuid: uuid }, VersionId: versionId }],
|
|
35
35
|
FindAvailablePath: true,
|
package/package.json
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"@aws-sdk/client-s3": "3.750.0",
|
|
17
|
-
"@wireapp/commons": "^5.4.
|
|
17
|
+
"@wireapp/commons": "^5.4.2",
|
|
18
18
|
"@wireapp/priority-queue": "^2.1.11",
|
|
19
19
|
"@wireapp/protocol-messaging": "1.51.0",
|
|
20
20
|
"axios": "1.7.9",
|
|
@@ -69,6 +69,6 @@
|
|
|
69
69
|
"watch": "webpack serve --config webpack.browser.js",
|
|
70
70
|
"prepare": "yarn dist"
|
|
71
71
|
},
|
|
72
|
-
"version": "27.20.
|
|
73
|
-
"gitHead": "
|
|
72
|
+
"version": "27.20.2",
|
|
73
|
+
"gitHead": "f9da8f5d926d53bce963b8a82a82de5c4a2d8948"
|
|
74
74
|
}
|