polfan-server-js-client 0.2.36 → 0.2.37
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/.idea/workspace.xml +18 -3
- package/build/index.cjs.js +7 -2
- package/build/index.cjs.js.map +1 -1
- package/build/index.umd.js +1 -1
- package/build/index.umd.js.map +1 -1
- package/build/types/FilesClient.d.ts +6 -5
- package/package.json +1 -1
- package/src/FilesClient.ts +12 -6
package/.idea/workspace.xml
CHANGED
|
@@ -4,7 +4,9 @@
|
|
|
4
4
|
<option name="autoReloadType" value="SELECTIVE" />
|
|
5
5
|
</component>
|
|
6
6
|
<component name="ChangeListManager">
|
|
7
|
-
<list default="true" id="831dae43-0da1-47fd-a5f7-33dd5eec2992" name="Changes" comment="
|
|
7
|
+
<list default="true" id="831dae43-0da1-47fd-a5f7-33dd5eec2992" name="Changes" comment="Fix update the latest message in a room default topic">
|
|
8
|
+
<change beforePath="$PROJECT_DIR$/src/FilesClient.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/FilesClient.ts" afterDir="false" />
|
|
9
|
+
</list>
|
|
8
10
|
<option name="SHOW_DIALOG" value="false" />
|
|
9
11
|
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
|
10
12
|
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
|
@@ -101,6 +103,10 @@
|
|
|
101
103
|
<workItem from="1751159757238" duration="782000" />
|
|
102
104
|
<workItem from="1751539766803" duration="1251000" />
|
|
103
105
|
<workItem from="1751551622570" duration="125000" />
|
|
106
|
+
<workItem from="1751561070286" duration="2044000" />
|
|
107
|
+
<workItem from="1751802125669" duration="1542000" />
|
|
108
|
+
<workItem from="1751811595978" duration="792000" />
|
|
109
|
+
<workItem from="1752705788150" duration="3121000" />
|
|
104
110
|
</task>
|
|
105
111
|
<task id="LOCAL-00001" summary="Emoticons objects">
|
|
106
112
|
<option name="closed" value="true" />
|
|
@@ -406,7 +412,15 @@
|
|
|
406
412
|
<option name="project" value="LOCAL" />
|
|
407
413
|
<updated>1751551734548</updated>
|
|
408
414
|
</task>
|
|
409
|
-
<
|
|
415
|
+
<task id="LOCAL-00039" summary="Fix update the latest message in a room default topic">
|
|
416
|
+
<option name="closed" value="true" />
|
|
417
|
+
<created>1751562062024</created>
|
|
418
|
+
<option name="number" value="00039" />
|
|
419
|
+
<option name="presentableId" value="LOCAL-00039" />
|
|
420
|
+
<option name="project" value="LOCAL" />
|
|
421
|
+
<updated>1751562062024</updated>
|
|
422
|
+
</task>
|
|
423
|
+
<option name="localTasksCounter" value="40" />
|
|
410
424
|
<servers />
|
|
411
425
|
</component>
|
|
412
426
|
<component name="TypeScriptGeneratedFilesManager">
|
|
@@ -446,6 +460,7 @@
|
|
|
446
460
|
<MESSAGE value="Fix package.json type exports" />
|
|
447
461
|
<MESSAGE value="New message type" />
|
|
448
462
|
<MESSAGE value="Dedicated event for user status change" />
|
|
449
|
-
<
|
|
463
|
+
<MESSAGE value="Fix update the latest message in a room default topic" />
|
|
464
|
+
<option name="LAST_COMMIT_MESSAGE" value="Fix update the latest message in a room default topic" />
|
|
450
465
|
</component>
|
|
451
466
|
</project>
|
package/build/index.cjs.js
CHANGED
|
@@ -2235,7 +2235,7 @@ function FilesClient_toPrimitive(input, hint) { if (typeof input !== "object" ||
|
|
|
2235
2235
|
class FilesClient extends AbstractRestClient {
|
|
2236
2236
|
constructor(...args) {
|
|
2237
2237
|
super(...args);
|
|
2238
|
-
FilesClient_defineProperty(this, "defaultUrl", 'https://
|
|
2238
|
+
FilesClient_defineProperty(this, "defaultUrl", 'https://files.devana.pl/files');
|
|
2239
2239
|
}
|
|
2240
2240
|
async uploadFile(file) {
|
|
2241
2241
|
const formData = new FormData();
|
|
@@ -2251,9 +2251,14 @@ class FilesClient extends AbstractRestClient {
|
|
|
2251
2251
|
});
|
|
2252
2252
|
return this.convertFetchResponse(response);
|
|
2253
2253
|
}
|
|
2254
|
-
async
|
|
2254
|
+
async getFileMeta(id) {
|
|
2255
2255
|
return this.send('GET', '/' + id);
|
|
2256
2256
|
}
|
|
2257
|
+
async getFileMetaBulk(ids) {
|
|
2258
|
+
const searchParams = new URLSearchParams();
|
|
2259
|
+
ids.forEach(id => searchParams.append('id[]', id));
|
|
2260
|
+
return this.send('GET', '?' + searchParams);
|
|
2261
|
+
}
|
|
2257
2262
|
}
|
|
2258
2263
|
;// CONCATENATED MODULE: ./src/index.ts
|
|
2259
2264
|
|