polfan-server-js-client 0.2.58 → 0.2.59

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.
@@ -5,17 +5,24 @@
5
5
  </component>
6
6
  <component name="ChangeListManager">
7
7
  <list default="true" id="831dae43-0da1-47fd-a5f7-33dd5eec2992" name="Changes" comment="Collection integration with React JS rework">
8
+ <change beforePath="$PROJECT_DIR$/.eslintignore" beforeDir="false" />
9
+ <change beforePath="$PROJECT_DIR$/.eslintrc.json" beforeDir="false" />
8
10
  <change beforePath="$PROJECT_DIR$/babel.config.js" beforeDir="false" afterPath="$PROJECT_DIR$/babel.config.js" afterDir="false" />
9
11
  <change beforePath="$PROJECT_DIR$/build/index.cjs.js" beforeDir="false" afterPath="$PROJECT_DIR$/build/index.cjs.js" afterDir="false" />
10
12
  <change beforePath="$PROJECT_DIR$/build/index.cjs.js.map" beforeDir="false" afterPath="$PROJECT_DIR$/build/index.cjs.js.map" afterDir="false" />
11
13
  <change beforePath="$PROJECT_DIR$/build/index.umd.js" beforeDir="false" afterPath="$PROJECT_DIR$/build/index.umd.js" afterDir="false" />
12
14
  <change beforePath="$PROJECT_DIR$/build/index.umd.js.map" beforeDir="false" afterPath="$PROJECT_DIR$/build/index.umd.js.map" afterDir="false" />
15
+ <change beforePath="$PROJECT_DIR$/build/types/IndexedObjectCollection.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/IndexedObjectCollection.d.ts" afterDir="false" />
13
16
  <change beforePath="$PROJECT_DIR$/build/types/state-tracker/TopicHistoryWindow.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/build/types/state-tracker/TopicHistoryWindow.d.ts" afterDir="false" />
14
17
  <change beforePath="$PROJECT_DIR$/package-lock.json" beforeDir="false" afterPath="$PROJECT_DIR$/package-lock.json" afterDir="false" />
15
18
  <change beforePath="$PROJECT_DIR$/package.json" beforeDir="false" afterPath="$PROJECT_DIR$/package.json" afterDir="false" />
16
19
  <change beforePath="$PROJECT_DIR$/src/IndexedObjectCollection.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/IndexedObjectCollection.ts" afterDir="false" />
20
+ <change beforePath="$PROJECT_DIR$/src/state-tracker/ChatStateTracker.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/state-tracker/ChatStateTracker.ts" afterDir="false" />
21
+ <change beforePath="$PROJECT_DIR$/src/state-tracker/RoomMessagesHistory.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/state-tracker/RoomMessagesHistory.ts" afterDir="false" />
17
22
  <change beforePath="$PROJECT_DIR$/src/state-tracker/TopicHistoryWindow.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/state-tracker/TopicHistoryWindow.ts" afterDir="false" />
18
23
  <change beforePath="$PROJECT_DIR$/tests/history-window.test.ts" beforeDir="false" afterPath="$PROJECT_DIR$/tests/history-window.test.ts" afterDir="false" />
24
+ <change beforePath="$PROJECT_DIR$/webpack.config.browser.js" beforeDir="false" afterPath="$PROJECT_DIR$/webpack.config.browser.js" afterDir="false" />
25
+ <change beforePath="$PROJECT_DIR$/webpack.config.node.js" beforeDir="false" afterPath="$PROJECT_DIR$/webpack.config.node.js" afterDir="false" />
19
26
  </list>
20
27
  <option name="SHOW_DIALOG" value="false" />
21
28
  <option name="HIGHLIGHT_CONFLICTS" value="true" />
@@ -50,6 +57,9 @@
50
57
  }
51
58
  }</component>
52
59
  <component name="PhpWorkspaceProjectConfiguration" interpreter_name="C:\php\php.exe" />
60
+ <component name="ProblemsViewState">
61
+ <option name="selectedTabId" value="DEPENDENCY_CHECKER_PROBLEMS_TAB" />
62
+ </component>
53
63
  <component name="ProjectColorInfo">{
54
64
  &quot;associatedIndex&quot;: 5
55
65
  }</component>
@@ -155,7 +165,7 @@
155
165
  <workItem from="1762800459831" duration="10000" />
156
166
  <workItem from="1763319451927" duration="2136000" />
157
167
  <workItem from="1763410036992" duration="181000" />
158
- <workItem from="1763457144937" duration="7689000" />
168
+ <workItem from="1763457144937" duration="13302000" />
159
169
  </task>
160
170
  <task id="LOCAL-00013" summary="Permission related changes in protocol types">
161
171
  <option name="closed" value="true" />
package/babel.config.js CHANGED
@@ -1,7 +1,6 @@
1
1
  module.exports = {
2
- presets: [["@babel/env"]],
3
- plugins: [
4
- ["@babel/plugin-transform-typescript" , { allowDeclareFields: true }],
5
- ["@babel/plugin-proposal-class-properties"],
2
+ presets: [
3
+ ["@babel/preset-env"],
4
+ ["@babel/preset-typescript", { allowDeclareFields: true }],
6
5
  ],
7
- };
6
+ };