polfan-server-js-client 0.2.38 → 0.2.39

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.
@@ -4,7 +4,10 @@
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="Adapt FilesClient to new files API" />
7
+ <list default="true" id="831dae43-0da1-47fd-a5f7-33dd5eec2992" name="Changes" comment="Adapt FilesClient to new files API">
8
+ <change beforePath="$PROJECT_DIR$/package.json" beforeDir="false" afterPath="$PROJECT_DIR$/package.json" afterDir="false" />
9
+ <change beforePath="$PROJECT_DIR$/src/FilesClient.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/FilesClient.ts" afterDir="false" />
10
+ </list>
8
11
  <option name="SHOW_DIALOG" value="false" />
9
12
  <option name="HIGHLIGHT_CONFLICTS" value="true" />
10
13
  <option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
@@ -25,6 +28,18 @@
25
28
  <option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
26
29
  <option name="ROOT_SYNC" value="DONT_SYNC" />
27
30
  </component>
31
+ <component name="GitHubPullRequestSearchHistory">{
32
+ &quot;lastFilter&quot;: {
33
+ &quot;state&quot;: &quot;OPEN&quot;,
34
+ &quot;assignee&quot;: &quot;szado&quot;
35
+ }
36
+ }</component>
37
+ <component name="GithubPullRequestsUISettings">{
38
+ &quot;selectedUrlAndAccountId&quot;: {
39
+ &quot;url&quot;: &quot;https://github.com/szado/pserv-ts-types&quot;,
40
+ &quot;accountId&quot;: &quot;3584fcfe-fe67-4c7c-94f9-c35acfe7b7c6&quot;
41
+ }
42
+ }</component>
28
43
  <component name="PhpWorkspaceProjectConfiguration" interpreter_name="C:\php\php.exe" />
29
44
  <component name="ProjectColorInfo">{
30
45
  &quot;associatedIndex&quot;: 5
@@ -105,6 +120,8 @@
105
120
  <workItem from="1751802125669" duration="1542000" />
106
121
  <workItem from="1751811595978" duration="792000" />
107
122
  <workItem from="1752705788150" duration="3566000" />
123
+ <workItem from="1752756543261" duration="1956000" />
124
+ <workItem from="1752834023436" duration="1731000" />
108
125
  </task>
109
126
  <task id="LOCAL-00001" summary="Emoticons objects">
110
127
  <option name="closed" value="true" />
@@ -426,7 +443,15 @@
426
443
  <option name="project" value="LOCAL" />
427
444
  <updated>1752752404949</updated>
428
445
  </task>
429
- <option name="localTasksCounter" value="41" />
446
+ <task id="LOCAL-00041" summary="Adapt FilesClient to new files API">
447
+ <option name="closed" value="true" />
448
+ <created>1752756683365</created>
449
+ <option name="number" value="00041" />
450
+ <option name="presentableId" value="LOCAL-00041" />
451
+ <option name="project" value="LOCAL" />
452
+ <updated>1752756683365</updated>
453
+ </task>
454
+ <option name="localTasksCounter" value="42" />
430
455
  <servers />
431
456
  </component>
432
457
  <component name="TypeScriptGeneratedFilesManager">
@@ -2238,15 +2238,15 @@ class FilesClient extends AbstractRestClient {
2238
2238
  FilesClient_defineProperty(this, "defaultUrl", 'https://files.devana.pl');
2239
2239
  }
2240
2240
  async uploadFile(file) {
2241
- const formData = new FormData();
2242
- formData.append('file', file);
2243
2241
  let headers = {
2244
2242
  ...this.getAuthHeaders(),
2245
- Accept: 'application/json'
2243
+ Accept: 'application/json',
2244
+ 'Content-Disposition': `attachment; filename="${file.name ?? ''}"`,
2245
+ 'Content-Length': file.size
2246
2246
  };
2247
2247
  const response = await fetch(this.getUrl('files'), {
2248
2248
  method: 'POST',
2249
- body: formData,
2249
+ body: file,
2250
2250
  headers
2251
2251
  });
2252
2252
  return this.convertFetchResponse(response);