polfan-server-js-client 0.1.99931 → 0.1.99932

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,7 @@
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="New scheme of Bye event" />
7
+ <list default="true" id="831dae43-0da1-47fd-a5f7-33dd5eec2992" name="Changes" comment="Fix authentication" />
8
8
  <option name="SHOW_DIALOG" value="false" />
9
9
  <option name="HIGHLIGHT_CONFLICTS" value="true" />
10
10
  <option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
@@ -33,22 +33,22 @@
33
33
  <option name="hideEmptyMiddlePackages" value="true" />
34
34
  <option name="showLibraryContents" value="true" />
35
35
  </component>
36
- <component name="PropertiesComponent"><![CDATA[{
37
- "keyToString": {
38
- "RunOnceActivity.ShowReadmeOnStart": "true",
39
- "RunOnceActivity.git.unshallow": "true",
40
- "git-widget-placeholder": "master",
41
- "ignore.virus.scanning.warn.message": "true",
42
- "last_opened_file_path": "//wsl.localhost/Debian/home/jarek/polfan-js-client-library",
43
- "node.js.detected.package.eslint": "true",
44
- "node.js.detected.package.tslint": "true",
45
- "node.js.selected.package.eslint": "(autodetect)",
46
- "node.js.selected.package.tslint": "(autodetect)",
47
- "nodejs_package_manager_path": "npm",
48
- "ts.external.directory.path": "\\\\wsl.localhost\\Debian\\home\\jarek\\polfan-js-client-library\\node_modules\\typescript\\lib",
49
- "vue.rearranger.settings.migration": "true"
36
+ <component name="PropertiesComponent">{
37
+ &quot;keyToString&quot;: {
38
+ &quot;RunOnceActivity.ShowReadmeOnStart&quot;: &quot;true&quot;,
39
+ &quot;RunOnceActivity.git.unshallow&quot;: &quot;true&quot;,
40
+ &quot;git-widget-placeholder&quot;: &quot;master&quot;,
41
+ &quot;ignore.virus.scanning.warn.message&quot;: &quot;true&quot;,
42
+ &quot;last_opened_file_path&quot;: &quot;//wsl.localhost/Debian/home/jarek/polfan-js-client-library&quot;,
43
+ &quot;node.js.detected.package.eslint&quot;: &quot;true&quot;,
44
+ &quot;node.js.detected.package.tslint&quot;: &quot;true&quot;,
45
+ &quot;node.js.selected.package.eslint&quot;: &quot;(autodetect)&quot;,
46
+ &quot;node.js.selected.package.tslint&quot;: &quot;(autodetect)&quot;,
47
+ &quot;nodejs_package_manager_path&quot;: &quot;npm&quot;,
48
+ &quot;ts.external.directory.path&quot;: &quot;\\\\wsl.localhost\\Debian\\home\\jarek\\polfan-js-client-library\\node_modules\\typescript\\lib&quot;,
49
+ &quot;vue.rearranger.settings.migration&quot;: &quot;true&quot;
50
50
  }
51
- }]]></component>
51
+ }</component>
52
52
  <component name="SharedIndexes">
53
53
  <attachedChunks>
54
54
  <set>
@@ -69,7 +69,8 @@
69
69
  <workItem from="1738661852731" duration="2057000" />
70
70
  <workItem from="1738919042657" duration="6387000" />
71
71
  <workItem from="1739804640466" duration="629000" />
72
- <workItem from="1740063527512" duration="12384000" />
72
+ <workItem from="1740063527512" duration="13931000" />
73
+ <workItem from="1740512570698" duration="684000" />
73
74
  </task>
74
75
  <task id="LOCAL-00001" summary="Emoticons objects">
75
76
  <option name="closed" value="true" />
@@ -207,7 +208,15 @@
207
208
  <option name="project" value="LOCAL" />
208
209
  <updated>1740250355576</updated>
209
210
  </task>
210
- <option name="localTasksCounter" value="18" />
211
+ <task id="LOCAL-00018" summary="Fix authentication">
212
+ <option name="closed" value="true" />
213
+ <created>1740253483444</created>
214
+ <option name="number" value="00018" />
215
+ <option name="presentableId" value="LOCAL-00018" />
216
+ <option name="project" value="LOCAL" />
217
+ <updated>1740253483444</updated>
218
+ </task>
219
+ <option name="localTasksCounter" value="19" />
211
220
  <servers />
212
221
  </component>
213
222
  <component name="TypeScriptGeneratedFilesManager">
@@ -233,6 +242,7 @@
233
242
  <MESSAGE value="Restore support for nullable parameter in permission overwrites id function" />
234
243
  <MESSAGE value="Bans support" />
235
244
  <MESSAGE value="New scheme of Bye event" />
236
- <option name="LAST_COMMIT_MESSAGE" value="New scheme of Bye event" />
245
+ <MESSAGE value="Fix authentication" />
246
+ <option name="LAST_COMMIT_MESSAGE" value="Fix authentication" />
237
247
  </component>
238
248
  </project>
@@ -3,4 +3,5 @@ export interface Kick {
3
3
  userId: string;
4
4
  location: ChatLocation;
5
5
  reason: string;
6
+ notify: boolean;
6
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "polfan-server-js-client",
3
- "version": "0.1.99931",
3
+ "version": "0.1.99932",
4
4
  "description": "JavaScript client library for handling communication with Polfan chat server.",
5
5
  "author": "Jarosław Żak",
6
6
  "license": "MIT",
@@ -4,4 +4,5 @@ export interface Kick {
4
4
  userId: string;
5
5
  location: ChatLocation;
6
6
  reason: string;
7
+ notify: boolean;
7
8
  }