appiq-solution 1.0.8 → 1.1.0

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.
Files changed (3117) hide show
  1. package/.bmad-config.json +13 -0
  2. package/.cursor/commands/analyze.md +27 -0
  3. package/.cursor/commands/appiq.md +27 -0
  4. package/.cursor/commands/help.md +27 -0
  5. package/.cursor/commands/story.md +27 -0
  6. package/.github/FUNDING.yaml +15 -0
  7. package/.github/ISSUE_TEMPLATE/bug_report.md +32 -0
  8. package/.github/ISSUE_TEMPLATE/feature_request.md +22 -0
  9. package/.github/workflows/release.yaml +59 -0
  10. package/.releaserc.json +18 -0
  11. package/.vscode/settings.json +44 -0
  12. package/CHANGELOG.md +641 -0
  13. package/CONTRIBUTING.md +209 -0
  14. package/DEVELOPMENT_GUIDE.md +855 -0
  15. package/LICENSE +21 -0
  16. package/NPM-README.md +138 -0
  17. package/README.md +255 -0
  18. package/SMART_WORKFLOW_GUIDE.md +401 -0
  19. package/activate-appiq.js +81 -0
  20. package/appiq-solution/README.md +226 -0
  21. package/bmad-core/agent-teams/team-all.yaml +14 -0
  22. package/bmad-core/agent-teams/team-fullstack.yaml +18 -0
  23. package/bmad-core/agent-teams/team-ide-minimal.yaml +10 -0
  24. package/bmad-core/agent-teams/team-no-ui.yaml +13 -0
  25. package/bmad-core/agents/analyst.md +81 -0
  26. package/bmad-core/agents/architect.md +90 -0
  27. package/bmad-core/agents/bmad-master.md +108 -0
  28. package/bmad-core/agents/bmad-orchestrator.md +150 -0
  29. package/bmad-core/agents/bmad-smart-launcher.md +170 -0
  30. package/bmad-core/agents/dev.md +90 -0
  31. package/bmad-core/agents/pm.md +81 -0
  32. package/bmad-core/agents/po.md +76 -0
  33. package/bmad-core/agents/qa.md +86 -0
  34. package/bmad-core/agents/sm.md +62 -0
  35. package/bmad-core/agents/ux-expert.md +66 -0
  36. package/bmad-core/bmad-core/user-guide.md +0 -0
  37. package/bmad-core/checklists/architect-checklist.md +443 -0
  38. package/bmad-core/checklists/change-checklist.md +182 -0
  39. package/bmad-core/checklists/pm-checklist.md +375 -0
  40. package/bmad-core/checklists/po-master-checklist.md +441 -0
  41. package/bmad-core/checklists/security-validation-checklist.md +332 -0
  42. package/bmad-core/checklists/story-dod-checklist.md +101 -0
  43. package/bmad-core/checklists/story-draft-checklist.md +156 -0
  44. package/bmad-core/core-config.yaml +20 -0
  45. package/bmad-core/core-config.yaml.bak +20 -0
  46. package/bmad-core/data/backend-services-integration.md +686 -0
  47. package/bmad-core/data/bmad-kb.md +803 -0
  48. package/bmad-core/data/brainstorming-techniques.md +36 -0
  49. package/bmad-core/data/elicitation-methods.md +134 -0
  50. package/bmad-core/data/shadcn-ui-integration.md +388 -0
  51. package/bmad-core/data/technical-preferences.md +149 -0
  52. package/bmad-core/enhanced-ide-development-workflow.md +43 -0
  53. package/bmad-core/tasks/advanced-elicitation.md +117 -0
  54. package/bmad-core/tasks/brownfield-create-epic.md +160 -0
  55. package/bmad-core/tasks/brownfield-create-story.md +147 -0
  56. package/bmad-core/tasks/correct-course.md +70 -0
  57. package/bmad-core/tasks/create-brownfield-story.md +304 -0
  58. package/bmad-core/tasks/create-deep-research-prompt.md +289 -0
  59. package/bmad-core/tasks/create-next-story.md +112 -0
  60. package/bmad-core/tasks/document-project.md +341 -0
  61. package/bmad-core/tasks/facilitate-brainstorming-session.md +136 -0
  62. package/bmad-core/tasks/generate-ai-frontend-prompt.md +51 -0
  63. package/bmad-core/tasks/index-docs.md +179 -0
  64. package/bmad-core/tasks/intelligent-epic-creation.md +234 -0
  65. package/bmad-core/tasks/kb-mode-interaction.md +75 -0
  66. package/bmad-core/tasks/review-story.md +145 -0
  67. package/bmad-core/tasks/shard-doc.md +187 -0
  68. package/bmad-core/tasks/smart-project-analysis.md +289 -0
  69. package/bmad-core/tasks/validate-next-story.md +134 -0
  70. package/bmad-core/templates/architecture-tmpl.yaml +650 -0
  71. package/bmad-core/templates/brainstorming-output-tmpl.yaml +156 -0
  72. package/bmad-core/templates/brownfield-architecture-tmpl.yaml +476 -0
  73. package/bmad-core/templates/brownfield-prd-tmpl.yaml +280 -0
  74. package/bmad-core/templates/competitor-analysis-tmpl.yaml +293 -0
  75. package/bmad-core/templates/front-end-architecture-tmpl.yaml +206 -0
  76. package/bmad-core/templates/front-end-spec-tmpl.yaml +349 -0
  77. package/bmad-core/templates/fullstack-architecture-tmpl.yaml +812 -0
  78. package/bmad-core/templates/market-research-tmpl.yaml +252 -0
  79. package/bmad-core/templates/prd-tmpl.yaml +202 -0
  80. package/bmad-core/templates/project-brief-tmpl.yaml +221 -0
  81. package/bmad-core/templates/story-tmpl.yaml +137 -0
  82. package/bmad-core/user-guide.md +251 -0
  83. package/bmad-core/workflows/brownfield-fullstack.yaml +297 -0
  84. package/bmad-core/workflows/brownfield-service.yaml +187 -0
  85. package/bmad-core/workflows/brownfield-ui.yaml +197 -0
  86. package/bmad-core/workflows/greenfield-fullstack.yaml +240 -0
  87. package/bmad-core/workflows/greenfield-service.yaml +206 -0
  88. package/bmad-core/workflows/greenfield-ui.yaml +235 -0
  89. package/bmad-core/working-in-the-brownfield.md +364 -0
  90. package/commands/README.md +28 -0
  91. package/commands/analyze.md +27 -0
  92. package/commands/appiq.md +27 -0
  93. package/commands/help.md +27 -0
  94. package/commands/story.md +27 -0
  95. package/common/tasks/create-doc.md +101 -0
  96. package/common/tasks/execute-checklist.md +93 -0
  97. package/common/utils/bmad-doc-template.md +325 -0
  98. package/common/utils/workflow-management.md +69 -0
  99. package/dist/agents/analyst.txt +2882 -0
  100. package/dist/agents/architect.txt +3543 -0
  101. package/dist/agents/bmad-master.txt +8756 -0
  102. package/dist/agents/bmad-orchestrator.txt +1490 -0
  103. package/dist/agents/dev.txt +428 -0
  104. package/dist/agents/pm.txt +2229 -0
  105. package/dist/agents/po.txt +1364 -0
  106. package/dist/agents/qa.txt +386 -0
  107. package/dist/agents/sm.txt +668 -0
  108. package/dist/agents/ux-expert.txt +701 -0
  109. package/dist/expansion-packs/bmad-2d-phaser-game-dev/agents/game-designer.txt +2408 -0
  110. package/dist/expansion-packs/bmad-2d-phaser-game-dev/agents/game-developer.txt +1631 -0
  111. package/dist/expansion-packs/bmad-2d-phaser-game-dev/agents/game-sm.txt +822 -0
  112. package/dist/expansion-packs/bmad-2d-phaser-game-dev/teams/phaser-2d-nodejs-game-team.txt +10989 -0
  113. package/dist/expansion-packs/bmad-2d-unity-game-dev/agents/game-architect.txt +4047 -0
  114. package/dist/expansion-packs/bmad-2d-unity-game-dev/agents/game-designer.txt +3744 -0
  115. package/dist/expansion-packs/bmad-2d-unity-game-dev/agents/game-developer.txt +465 -0
  116. package/dist/expansion-packs/bmad-2d-unity-game-dev/agents/game-sm.txt +990 -0
  117. package/dist/expansion-packs/bmad-2d-unity-game-dev/teams/unity-2d-game-team.txt +15467 -0
  118. package/dist/expansion-packs/bmad-infrastructure-devops/agents/infra-devops-platform.txt +2077 -0
  119. package/dist/teams/team-all.txt +11062 -0
  120. package/dist/teams/team-fullstack.txt +10392 -0
  121. package/dist/teams/team-ide-minimal.txt +3507 -0
  122. package/dist/teams/team-no-ui.txt +8951 -0
  123. package/docs/GUIDING-PRINCIPLES.md +91 -0
  124. package/docs/core-architecture.md +219 -0
  125. package/docs/expansion-packs.md +280 -0
  126. package/docs/how-to-contribute-with-pull-requests.md +158 -0
  127. package/docs/versioning-and-releases.md +77 -0
  128. package/docs/versions.md +48 -0
  129. package/expansion-packs/README.md +3 -0
  130. package/expansion-packs/bmad-2d-phaser-game-dev/agent-teams/phaser-2d-nodejs-game-team.yaml +13 -0
  131. package/expansion-packs/bmad-2d-phaser-game-dev/agents/game-designer.md +71 -0
  132. package/expansion-packs/bmad-2d-phaser-game-dev/agents/game-developer.md +78 -0
  133. package/expansion-packs/bmad-2d-phaser-game-dev/agents/game-sm.md +64 -0
  134. package/expansion-packs/bmad-2d-phaser-game-dev/checklists/game-design-checklist.md +201 -0
  135. package/expansion-packs/bmad-2d-phaser-game-dev/checklists/game-story-dod-checklist.md +160 -0
  136. package/expansion-packs/bmad-2d-phaser-game-dev/config.yaml +8 -0
  137. package/expansion-packs/bmad-2d-phaser-game-dev/data/bmad-kb.md +254 -0
  138. package/expansion-packs/bmad-2d-phaser-game-dev/data/development-guidelines.md +651 -0
  139. package/expansion-packs/bmad-2d-phaser-game-dev/tasks/advanced-elicitation.md +111 -0
  140. package/expansion-packs/bmad-2d-phaser-game-dev/tasks/create-game-story.md +216 -0
  141. package/expansion-packs/bmad-2d-phaser-game-dev/tasks/game-design-brainstorming.md +308 -0
  142. package/expansion-packs/bmad-2d-phaser-game-dev/templates/game-architecture-tmpl.yaml +613 -0
  143. package/expansion-packs/bmad-2d-phaser-game-dev/templates/game-brief-tmpl.yaml +356 -0
  144. package/expansion-packs/bmad-2d-phaser-game-dev/templates/game-design-doc-tmpl.yaml +343 -0
  145. package/expansion-packs/bmad-2d-phaser-game-dev/templates/game-story-tmpl.yaml +253 -0
  146. package/expansion-packs/bmad-2d-phaser-game-dev/templates/level-design-doc-tmpl.yaml +484 -0
  147. package/expansion-packs/bmad-2d-phaser-game-dev/workflows/game-dev-greenfield.yaml +183 -0
  148. package/expansion-packs/bmad-2d-phaser-game-dev/workflows/game-prototype.yaml +175 -0
  149. package/expansion-packs/bmad-2d-unity-game-dev/agent-teams/unity-2d-game-team.yaml +14 -0
  150. package/expansion-packs/bmad-2d-unity-game-dev/agents/game-architect.md +80 -0
  151. package/expansion-packs/bmad-2d-unity-game-dev/agents/game-designer.md +77 -0
  152. package/expansion-packs/bmad-2d-unity-game-dev/agents/game-developer.md +78 -0
  153. package/expansion-packs/bmad-2d-unity-game-dev/agents/game-sm.md +65 -0
  154. package/expansion-packs/bmad-2d-unity-game-dev/checklists/game-architect-checklist.md +396 -0
  155. package/expansion-packs/bmad-2d-unity-game-dev/checklists/game-change-checklist.md +203 -0
  156. package/expansion-packs/bmad-2d-unity-game-dev/checklists/game-design-checklist.md +201 -0
  157. package/expansion-packs/bmad-2d-unity-game-dev/checklists/game-story-dod-checklist.md +132 -0
  158. package/expansion-packs/bmad-2d-unity-game-dev/config.yaml +6 -0
  159. package/expansion-packs/bmad-2d-unity-game-dev/data/bmad-kb.md +776 -0
  160. package/expansion-packs/bmad-2d-unity-game-dev/data/development-guidelines.md +590 -0
  161. package/expansion-packs/bmad-2d-unity-game-dev/tasks/advanced-elicitation.md +111 -0
  162. package/expansion-packs/bmad-2d-unity-game-dev/tasks/correct-course-game.md +151 -0
  163. package/expansion-packs/bmad-2d-unity-game-dev/tasks/create-game-story.md +184 -0
  164. package/expansion-packs/bmad-2d-unity-game-dev/tasks/game-design-brainstorming.md +308 -0
  165. package/expansion-packs/bmad-2d-unity-game-dev/tasks/validate-game-story.md +200 -0
  166. package/expansion-packs/bmad-2d-unity-game-dev/templates/game-architecture-tmpl.yaml +1030 -0
  167. package/expansion-packs/bmad-2d-unity-game-dev/templates/game-brief-tmpl.yaml +356 -0
  168. package/expansion-packs/bmad-2d-unity-game-dev/templates/game-design-doc-tmpl.yaml +705 -0
  169. package/expansion-packs/bmad-2d-unity-game-dev/templates/game-story-tmpl.yaml +256 -0
  170. package/expansion-packs/bmad-2d-unity-game-dev/templates/level-design-doc-tmpl.yaml +484 -0
  171. package/expansion-packs/bmad-2d-unity-game-dev/workflows/game-dev-greenfield.yaml +183 -0
  172. package/expansion-packs/bmad-2d-unity-game-dev/workflows/game-prototype.yaml +175 -0
  173. package/expansion-packs/bmad-flutter-mobile-dev/agent-teams/flutter-mobile-team.yaml +23 -0
  174. package/expansion-packs/bmad-flutter-mobile-dev/agents/flutter-cubit-agent.md +133 -0
  175. package/expansion-packs/bmad-flutter-mobile-dev/agents/flutter-data-agent.md +160 -0
  176. package/expansion-packs/bmad-flutter-mobile-dev/agents/flutter-domain-agent.md +153 -0
  177. package/expansion-packs/bmad-flutter-mobile-dev/agents/flutter-ui-agent.md +122 -0
  178. package/expansion-packs/bmad-flutter-mobile-dev/agents/shared-components-agent.md +161 -0
  179. package/expansion-packs/bmad-flutter-mobile-dev/checklists/flutter-story-dod-checklist.md +194 -0
  180. package/expansion-packs/bmad-flutter-mobile-dev/config.yaml +41 -0
  181. package/expansion-packs/bmad-flutter-mobile-dev/data/flutter-development-guidelines.md +551 -0
  182. package/expansion-packs/bmad-flutter-mobile-dev/templates/flutter-mobile-architecture-tmpl.yaml +530 -0
  183. package/expansion-packs/bmad-flutter-mobile-dev/workflows/flutter-ui-first-development.yaml +220 -0
  184. package/expansion-packs/bmad-infrastructure-devops/README.md +147 -0
  185. package/expansion-packs/bmad-infrastructure-devops/agents/infra-devops-platform.md +71 -0
  186. package/expansion-packs/bmad-infrastructure-devops/checklists/infrastructure-checklist.md +484 -0
  187. package/expansion-packs/bmad-infrastructure-devops/config.yaml +9 -0
  188. package/expansion-packs/bmad-infrastructure-devops/data/bmad-kb.md +308 -0
  189. package/expansion-packs/bmad-infrastructure-devops/tasks/review-infrastructure.md +160 -0
  190. package/expansion-packs/bmad-infrastructure-devops/tasks/validate-infrastructure.md +154 -0
  191. package/expansion-packs/bmad-infrastructure-devops/templates/infrastructure-architecture-tmpl.yaml +424 -0
  192. package/expansion-packs/bmad-infrastructure-devops/templates/infrastructure-platform-from-arch-tmpl.yaml +629 -0
  193. package/install-appiq.sh +41 -0
  194. package/package.json +1 -1
  195. package/tasks/todo.md +275 -0
  196. package/tools/installer/node_modules/.bin/js-yaml +0 -126
  197. package/tools/installer/node_modules/.package-lock.json +0 -886
  198. package/tools/installer/node_modules/@inquirer/checkbox/LICENSE +0 -22
  199. package/tools/installer/node_modules/@inquirer/checkbox/README.md +0 -182
  200. package/tools/installer/node_modules/@inquirer/checkbox/dist/commonjs/index.d.ts +0 -52
  201. package/tools/installer/node_modules/@inquirer/checkbox/dist/commonjs/index.js +0 -207
  202. package/tools/installer/node_modules/@inquirer/checkbox/dist/commonjs/package.json +0 -3
  203. package/tools/installer/node_modules/@inquirer/checkbox/dist/esm/index.d.ts +0 -52
  204. package/tools/installer/node_modules/@inquirer/checkbox/dist/esm/index.js +0 -200
  205. package/tools/installer/node_modules/@inquirer/checkbox/dist/esm/package.json +0 -3
  206. package/tools/installer/node_modules/@inquirer/checkbox/package.json +0 -112
  207. package/tools/installer/node_modules/@inquirer/confirm/LICENSE +0 -22
  208. package/tools/installer/node_modules/@inquirer/confirm/README.md +0 -102
  209. package/tools/installer/node_modules/@inquirer/confirm/dist/commonjs/index.d.ts +0 -10
  210. package/tools/installer/node_modules/@inquirer/confirm/dist/commonjs/index.js +0 -48
  211. package/tools/installer/node_modules/@inquirer/confirm/dist/commonjs/package.json +0 -3
  212. package/tools/installer/node_modules/@inquirer/confirm/dist/esm/index.d.ts +0 -10
  213. package/tools/installer/node_modules/@inquirer/confirm/dist/esm/index.js +0 -46
  214. package/tools/installer/node_modules/@inquirer/confirm/dist/esm/package.json +0 -3
  215. package/tools/installer/node_modules/@inquirer/confirm/package.json +0 -109
  216. package/tools/installer/node_modules/@inquirer/core/LICENSE +0 -22
  217. package/tools/installer/node_modules/@inquirer/core/README.md +0 -393
  218. package/tools/installer/node_modules/@inquirer/core/dist/commonjs/index.d.ts +0 -13
  219. package/tools/installer/node_modules/@inquirer/core/dist/commonjs/index.js +0 -39
  220. package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/Separator.d.ts +0 -10
  221. package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/Separator.js +0 -28
  222. package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/create-prompt.d.ts +0 -4
  223. package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/create-prompt.js +0 -156
  224. package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/errors.d.ts +0 -20
  225. package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/errors.js +0 -29
  226. package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/hook-engine.d.ts +0 -23
  227. package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/hook-engine.js +0 -118
  228. package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/key.d.ts +0 -10
  229. package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/key.js +0 -27
  230. package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/make-theme.d.ts +0 -3
  231. package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/make-theme.js +0 -33
  232. package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/pagination/use-pagination.d.ts +0 -16
  233. package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/pagination/use-pagination.js +0 -124
  234. package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/promise-polyfill.d.ts +0 -7
  235. package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/promise-polyfill.js +0 -18
  236. package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/screen-manager.d.ts +0 -14
  237. package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/screen-manager.js +0 -90
  238. package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/theme.d.ts +0 -155
  239. package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/theme.js +0 -28
  240. package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/use-effect.d.ts +0 -2
  241. package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/use-effect.js +0 -14
  242. package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/use-keypress.d.ts +0 -3
  243. package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/use-keypress.js +0 -23
  244. package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/use-memo.d.ts +0 -1
  245. package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/use-memo.js +0 -17
  246. package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/use-prefix.d.ts +0 -5
  247. package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/use-prefix.js +0 -38
  248. package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/use-ref.d.ts +0 -6
  249. package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/use-ref.js +0 -7
  250. package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/use-state.d.ts +0 -4
  251. package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/use-state.js +0 -23
  252. package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/utils.d.ts +0 -13
  253. package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/utils.js +0 -32
  254. package/tools/installer/node_modules/@inquirer/core/dist/commonjs/package.json +0 -3
  255. package/tools/installer/node_modules/@inquirer/core/dist/esm/index.d.ts +0 -13
  256. package/tools/installer/node_modules/@inquirer/core/dist/esm/index.js +0 -12
  257. package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/Separator.d.ts +0 -10
  258. package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/Separator.js +0 -21
  259. package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/create-prompt.d.ts +0 -4
  260. package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/create-prompt.js +0 -117
  261. package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/errors.d.ts +0 -20
  262. package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/errors.js +0 -21
  263. package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/hook-engine.d.ts +0 -23
  264. package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/hook-engine.js +0 -110
  265. package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/key.d.ts +0 -10
  266. package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/key.js +0 -18
  267. package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/make-theme.d.ts +0 -3
  268. package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/make-theme.js +0 -30
  269. package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/pagination/use-pagination.d.ts +0 -16
  270. package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/pagination/use-pagination.js +0 -121
  271. package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/promise-polyfill.d.ts +0 -7
  272. package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/promise-polyfill.js +0 -14
  273. package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/screen-manager.d.ts +0 -14
  274. package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/screen-manager.js +0 -84
  275. package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/theme.d.ts +0 -155
  276. package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/theme.js +0 -22
  277. package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/use-effect.d.ts +0 -2
  278. package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/use-effect.js +0 -11
  279. package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/use-keypress.d.ts +0 -3
  280. package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/use-keypress.js +0 -20
  281. package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/use-memo.d.ts +0 -1
  282. package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/use-memo.js +0 -14
  283. package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/use-prefix.d.ts +0 -5
  284. package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/use-prefix.js +0 -35
  285. package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/use-ref.d.ts +0 -6
  286. package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/use-ref.js +0 -4
  287. package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/use-state.d.ts +0 -4
  288. package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/use-state.js +0 -20
  289. package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/utils.d.ts +0 -13
  290. package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/utils.js +0 -25
  291. package/tools/installer/node_modules/@inquirer/core/dist/esm/package.json +0 -3
  292. package/tools/installer/node_modules/@inquirer/core/package.json +0 -118
  293. package/tools/installer/node_modules/@inquirer/editor/LICENSE +0 -22
  294. package/tools/installer/node_modules/@inquirer/editor/README.md +0 -111
  295. package/tools/installer/node_modules/@inquirer/editor/dist/commonjs/index.d.ts +0 -17
  296. package/tools/installer/node_modules/@inquirer/editor/dist/commonjs/index.js +0 -75
  297. package/tools/installer/node_modules/@inquirer/editor/dist/commonjs/package.json +0 -3
  298. package/tools/installer/node_modules/@inquirer/editor/dist/esm/index.d.ts +0 -17
  299. package/tools/installer/node_modules/@inquirer/editor/dist/esm/index.js +0 -73
  300. package/tools/installer/node_modules/@inquirer/editor/dist/esm/package.json +0 -3
  301. package/tools/installer/node_modules/@inquirer/editor/package.json +0 -110
  302. package/tools/installer/node_modules/@inquirer/expand/LICENSE +0 -22
  303. package/tools/installer/node_modules/@inquirer/expand/README.md +0 -151
  304. package/tools/installer/node_modules/@inquirer/expand/dist/commonjs/index.d.ts +0 -25
  305. package/tools/installer/node_modules/@inquirer/expand/dist/commonjs/index.js +0 -115
  306. package/tools/installer/node_modules/@inquirer/expand/dist/commonjs/package.json +0 -3
  307. package/tools/installer/node_modules/@inquirer/expand/dist/esm/index.d.ts +0 -25
  308. package/tools/installer/node_modules/@inquirer/expand/dist/esm/index.js +0 -108
  309. package/tools/installer/node_modules/@inquirer/expand/dist/esm/package.json +0 -3
  310. package/tools/installer/node_modules/@inquirer/expand/package.json +0 -110
  311. package/tools/installer/node_modules/@inquirer/figures/LICENSE +0 -22
  312. package/tools/installer/node_modules/@inquirer/figures/dist/commonjs/index.d.ts +0 -465
  313. package/tools/installer/node_modules/@inquirer/figures/dist/commonjs/index.js +0 -316
  314. package/tools/installer/node_modules/@inquirer/figures/dist/commonjs/package.json +0 -3
  315. package/tools/installer/node_modules/@inquirer/figures/dist/esm/index.d.ts +0 -465
  316. package/tools/installer/node_modules/@inquirer/figures/dist/esm/index.js +0 -309
  317. package/tools/installer/node_modules/@inquirer/figures/dist/esm/package.json +0 -3
  318. package/tools/installer/node_modules/@inquirer/figures/package.json +0 -94
  319. package/tools/installer/node_modules/@inquirer/input/LICENSE +0 -22
  320. package/tools/installer/node_modules/@inquirer/input/README.md +0 -109
  321. package/tools/installer/node_modules/@inquirer/input/dist/commonjs/index.d.ts +0 -18
  322. package/tools/installer/node_modules/@inquirer/input/dist/commonjs/index.js +0 -86
  323. package/tools/installer/node_modules/@inquirer/input/dist/commonjs/package.json +0 -3
  324. package/tools/installer/node_modules/@inquirer/input/dist/esm/index.d.ts +0 -18
  325. package/tools/installer/node_modules/@inquirer/input/dist/esm/index.js +0 -84
  326. package/tools/installer/node_modules/@inquirer/input/dist/esm/package.json +0 -3
  327. package/tools/installer/node_modules/@inquirer/input/package.json +0 -109
  328. package/tools/installer/node_modules/@inquirer/number/LICENSE +0 -22
  329. package/tools/installer/node_modules/@inquirer/number/README.md +0 -105
  330. package/tools/installer/node_modules/@inquirer/number/dist/commonjs/index.d.ts +0 -15
  331. package/tools/installer/node_modules/@inquirer/number/dist/commonjs/index.js +0 -96
  332. package/tools/installer/node_modules/@inquirer/number/dist/commonjs/package.json +0 -3
  333. package/tools/installer/node_modules/@inquirer/number/dist/esm/index.d.ts +0 -15
  334. package/tools/installer/node_modules/@inquirer/number/dist/esm/index.js +0 -94
  335. package/tools/installer/node_modules/@inquirer/number/dist/esm/package.json +0 -3
  336. package/tools/installer/node_modules/@inquirer/number/package.json +0 -109
  337. package/tools/installer/node_modules/@inquirer/password/LICENSE +0 -22
  338. package/tools/installer/node_modules/@inquirer/password/README.md +0 -103
  339. package/tools/installer/node_modules/@inquirer/password/dist/commonjs/index.d.ts +0 -10
  340. package/tools/installer/node_modules/@inquirer/password/dist/commonjs/index.js +0 -60
  341. package/tools/installer/node_modules/@inquirer/password/dist/commonjs/package.json +0 -3
  342. package/tools/installer/node_modules/@inquirer/password/dist/esm/index.d.ts +0 -10
  343. package/tools/installer/node_modules/@inquirer/password/dist/esm/index.js +0 -55
  344. package/tools/installer/node_modules/@inquirer/password/dist/esm/package.json +0 -3
  345. package/tools/installer/node_modules/@inquirer/password/package.json +0 -110
  346. package/tools/installer/node_modules/@inquirer/prompts/LICENSE +0 -22
  347. package/tools/installer/node_modules/@inquirer/prompts/README.md +0 -490
  348. package/tools/installer/node_modules/@inquirer/prompts/dist/commonjs/index.d.ts +0 -10
  349. package/tools/installer/node_modules/@inquirer/prompts/dist/commonjs/index.js +0 -27
  350. package/tools/installer/node_modules/@inquirer/prompts/dist/commonjs/package.json +0 -3
  351. package/tools/installer/node_modules/@inquirer/prompts/dist/esm/index.d.ts +0 -10
  352. package/tools/installer/node_modules/@inquirer/prompts/dist/esm/index.js +0 -10
  353. package/tools/installer/node_modules/@inquirer/prompts/dist/esm/package.json +0 -3
  354. package/tools/installer/node_modules/@inquirer/prompts/package.json +0 -116
  355. package/tools/installer/node_modules/@inquirer/rawlist/LICENSE +0 -22
  356. package/tools/installer/node_modules/@inquirer/rawlist/README.md +0 -134
  357. package/tools/installer/node_modules/@inquirer/rawlist/dist/commonjs/index.d.ts +0 -18
  358. package/tools/installer/node_modules/@inquirer/rawlist/dist/commonjs/index.js +0 -132
  359. package/tools/installer/node_modules/@inquirer/rawlist/dist/commonjs/package.json +0 -3
  360. package/tools/installer/node_modules/@inquirer/rawlist/dist/esm/index.d.ts +0 -18
  361. package/tools/installer/node_modules/@inquirer/rawlist/dist/esm/index.js +0 -125
  362. package/tools/installer/node_modules/@inquirer/rawlist/dist/esm/package.json +0 -3
  363. package/tools/installer/node_modules/@inquirer/rawlist/package.json +0 -110
  364. package/tools/installer/node_modules/@inquirer/search/LICENSE +0 -22
  365. package/tools/installer/node_modules/@inquirer/search/README.md +0 -208
  366. package/tools/installer/node_modules/@inquirer/search/dist/commonjs/index.d.ts +0 -34
  367. package/tools/installer/node_modules/@inquirer/search/dist/commonjs/index.js +0 -193
  368. package/tools/installer/node_modules/@inquirer/search/dist/commonjs/package.json +0 -3
  369. package/tools/installer/node_modules/@inquirer/search/dist/esm/index.d.ts +0 -34
  370. package/tools/installer/node_modules/@inquirer/search/dist/esm/index.js +0 -186
  371. package/tools/installer/node_modules/@inquirer/search/dist/esm/package.json +0 -3
  372. package/tools/installer/node_modules/@inquirer/search/package.json +0 -111
  373. package/tools/installer/node_modules/@inquirer/select/LICENSE +0 -22
  374. package/tools/installer/node_modules/@inquirer/select/README.md +0 -178
  375. package/tools/installer/node_modules/@inquirer/select/dist/commonjs/index.d.ts +0 -37
  376. package/tools/installer/node_modules/@inquirer/select/dist/commonjs/index.js +0 -174
  377. package/tools/installer/node_modules/@inquirer/select/dist/commonjs/package.json +0 -3
  378. package/tools/installer/node_modules/@inquirer/select/dist/esm/index.d.ts +0 -37
  379. package/tools/installer/node_modules/@inquirer/select/dist/esm/index.js +0 -167
  380. package/tools/installer/node_modules/@inquirer/select/dist/esm/package.json +0 -3
  381. package/tools/installer/node_modules/@inquirer/select/package.json +0 -112
  382. package/tools/installer/node_modules/@inquirer/type/LICENSE +0 -22
  383. package/tools/installer/node_modules/@inquirer/type/dist/commonjs/index.d.ts +0 -2
  384. package/tools/installer/node_modules/@inquirer/type/dist/commonjs/index.js +0 -18
  385. package/tools/installer/node_modules/@inquirer/type/dist/commonjs/inquirer.d.ts +0 -38
  386. package/tools/installer/node_modules/@inquirer/type/dist/commonjs/inquirer.js +0 -2
  387. package/tools/installer/node_modules/@inquirer/type/dist/commonjs/package.json +0 -3
  388. package/tools/installer/node_modules/@inquirer/type/dist/commonjs/utils.d.ts +0 -29
  389. package/tools/installer/node_modules/@inquirer/type/dist/commonjs/utils.js +0 -3
  390. package/tools/installer/node_modules/@inquirer/type/dist/esm/index.d.ts +0 -2
  391. package/tools/installer/node_modules/@inquirer/type/dist/esm/index.js +0 -2
  392. package/tools/installer/node_modules/@inquirer/type/dist/esm/inquirer.d.ts +0 -38
  393. package/tools/installer/node_modules/@inquirer/type/dist/esm/inquirer.js +0 -1
  394. package/tools/installer/node_modules/@inquirer/type/dist/esm/package.json +0 -3
  395. package/tools/installer/node_modules/@inquirer/type/dist/esm/utils.d.ts +0 -29
  396. package/tools/installer/node_modules/@inquirer/type/dist/esm/utils.js +0 -2
  397. package/tools/installer/node_modules/@inquirer/type/package.json +0 -102
  398. package/tools/installer/node_modules/ansi-escapes/index.d.ts +0 -248
  399. package/tools/installer/node_modules/ansi-escapes/index.js +0 -157
  400. package/tools/installer/node_modules/ansi-escapes/license +0 -9
  401. package/tools/installer/node_modules/ansi-escapes/package.json +0 -57
  402. package/tools/installer/node_modules/ansi-escapes/readme.md +0 -245
  403. package/tools/installer/node_modules/ansi-regex/index.d.ts +0 -33
  404. package/tools/installer/node_modules/ansi-regex/index.js +0 -10
  405. package/tools/installer/node_modules/ansi-regex/license +0 -9
  406. package/tools/installer/node_modules/ansi-regex/package.json +0 -61
  407. package/tools/installer/node_modules/ansi-regex/readme.md +0 -60
  408. package/tools/installer/node_modules/ansi-styles/index.d.ts +0 -345
  409. package/tools/installer/node_modules/ansi-styles/index.js +0 -163
  410. package/tools/installer/node_modules/ansi-styles/license +0 -9
  411. package/tools/installer/node_modules/ansi-styles/package.json +0 -56
  412. package/tools/installer/node_modules/ansi-styles/readme.md +0 -152
  413. package/tools/installer/node_modules/argparse/CHANGELOG.md +0 -216
  414. package/tools/installer/node_modules/argparse/LICENSE +0 -254
  415. package/tools/installer/node_modules/argparse/README.md +0 -84
  416. package/tools/installer/node_modules/argparse/argparse.js +0 -3707
  417. package/tools/installer/node_modules/argparse/lib/sub.js +0 -67
  418. package/tools/installer/node_modules/argparse/lib/textwrap.js +0 -440
  419. package/tools/installer/node_modules/argparse/package.json +0 -31
  420. package/tools/installer/node_modules/chalk/license +0 -9
  421. package/tools/installer/node_modules/chalk/package.json +0 -83
  422. package/tools/installer/node_modules/chalk/readme.md +0 -297
  423. package/tools/installer/node_modules/chalk/source/index.d.ts +0 -325
  424. package/tools/installer/node_modules/chalk/source/index.js +0 -225
  425. package/tools/installer/node_modules/chalk/source/utilities.js +0 -33
  426. package/tools/installer/node_modules/chalk/source/vendor/ansi-styles/index.d.ts +0 -236
  427. package/tools/installer/node_modules/chalk/source/vendor/ansi-styles/index.js +0 -223
  428. package/tools/installer/node_modules/chalk/source/vendor/supports-color/browser.d.ts +0 -1
  429. package/tools/installer/node_modules/chalk/source/vendor/supports-color/browser.js +0 -34
  430. package/tools/installer/node_modules/chalk/source/vendor/supports-color/index.d.ts +0 -55
  431. package/tools/installer/node_modules/chalk/source/vendor/supports-color/index.js +0 -182
  432. package/tools/installer/node_modules/chardet/.travis.yml +0 -5
  433. package/tools/installer/node_modules/chardet/LICENSE +0 -19
  434. package/tools/installer/node_modules/chardet/README.md +0 -81
  435. package/tools/installer/node_modules/chardet/encoding/iso2022.js +0 -141
  436. package/tools/installer/node_modules/chardet/encoding/mbcs.js +0 -502
  437. package/tools/installer/node_modules/chardet/encoding/sbcs.js +0 -907
  438. package/tools/installer/node_modules/chardet/encoding/unicode.js +0 -112
  439. package/tools/installer/node_modules/chardet/encoding/utf8.js +0 -84
  440. package/tools/installer/node_modules/chardet/index.js +0 -151
  441. package/tools/installer/node_modules/chardet/match.js +0 -6
  442. package/tools/installer/node_modules/chardet/package.json +0 -47
  443. package/tools/installer/node_modules/cli-cursor/index.d.ts +0 -47
  444. package/tools/installer/node_modules/cli-cursor/index.js +0 -39
  445. package/tools/installer/node_modules/cli-cursor/license +0 -9
  446. package/tools/installer/node_modules/cli-cursor/package.json +0 -56
  447. package/tools/installer/node_modules/cli-cursor/readme.md +0 -39
  448. package/tools/installer/node_modules/cli-spinners/index.d.ts +0 -128
  449. package/tools/installer/node_modules/cli-spinners/index.js +0 -15
  450. package/tools/installer/node_modules/cli-spinners/license +0 -9
  451. package/tools/installer/node_modules/cli-spinners/package.json +0 -50
  452. package/tools/installer/node_modules/cli-spinners/readme.md +0 -54
  453. package/tools/installer/node_modules/cli-spinners/spinners.json +0 -1622
  454. package/tools/installer/node_modules/cli-width/LICENSE +0 -13
  455. package/tools/installer/node_modules/cli-width/README.md +0 -71
  456. package/tools/installer/node_modules/cli-width/index.d.ts +0 -13
  457. package/tools/installer/node_modules/cli-width/index.js +0 -49
  458. package/tools/installer/node_modules/cli-width/package.json +0 -40
  459. package/tools/installer/node_modules/color-convert/CHANGELOG.md +0 -54
  460. package/tools/installer/node_modules/color-convert/LICENSE +0 -21
  461. package/tools/installer/node_modules/color-convert/README.md +0 -68
  462. package/tools/installer/node_modules/color-convert/conversions.js +0 -839
  463. package/tools/installer/node_modules/color-convert/index.js +0 -81
  464. package/tools/installer/node_modules/color-convert/package.json +0 -48
  465. package/tools/installer/node_modules/color-convert/route.js +0 -97
  466. package/tools/installer/node_modules/color-name/LICENSE +0 -8
  467. package/tools/installer/node_modules/color-name/README.md +0 -11
  468. package/tools/installer/node_modules/color-name/index.js +0 -152
  469. package/tools/installer/node_modules/color-name/package.json +0 -28
  470. package/tools/installer/node_modules/commander/LICENSE +0 -22
  471. package/tools/installer/node_modules/commander/Readme.md +0 -1159
  472. package/tools/installer/node_modules/commander/esm.mjs +0 -16
  473. package/tools/installer/node_modules/commander/index.js +0 -24
  474. package/tools/installer/node_modules/commander/lib/argument.js +0 -149
  475. package/tools/installer/node_modules/commander/lib/command.js +0 -2778
  476. package/tools/installer/node_modules/commander/lib/error.js +0 -39
  477. package/tools/installer/node_modules/commander/lib/help.js +0 -747
  478. package/tools/installer/node_modules/commander/lib/option.js +0 -379
  479. package/tools/installer/node_modules/commander/lib/suggestSimilar.js +0 -101
  480. package/tools/installer/node_modules/commander/package-support.json +0 -16
  481. package/tools/installer/node_modules/commander/package.json +0 -82
  482. package/tools/installer/node_modules/commander/typings/esm.d.mts +0 -3
  483. package/tools/installer/node_modules/commander/typings/index.d.ts +0 -1113
  484. package/tools/installer/node_modules/emoji-regex/LICENSE-MIT.txt +0 -20
  485. package/tools/installer/node_modules/emoji-regex/README.md +0 -107
  486. package/tools/installer/node_modules/emoji-regex/index.d.ts +0 -3
  487. package/tools/installer/node_modules/emoji-regex/index.js +0 -4
  488. package/tools/installer/node_modules/emoji-regex/index.mjs +0 -4
  489. package/tools/installer/node_modules/emoji-regex/package.json +0 -45
  490. package/tools/installer/node_modules/external-editor/LICENSE +0 -21
  491. package/tools/installer/node_modules/external-editor/README.md +0 -171
  492. package/tools/installer/node_modules/external-editor/example_async.js +0 -40
  493. package/tools/installer/node_modules/external-editor/example_sync.js +0 -38
  494. package/tools/installer/node_modules/external-editor/main/errors/CreateFileError.d.ts +0 -10
  495. package/tools/installer/node_modules/external-editor/main/errors/CreateFileError.js +0 -39
  496. package/tools/installer/node_modules/external-editor/main/errors/LaunchEditorError.d.ts +0 -10
  497. package/tools/installer/node_modules/external-editor/main/errors/LaunchEditorError.js +0 -39
  498. package/tools/installer/node_modules/external-editor/main/errors/ReadFileError.d.ts +0 -10
  499. package/tools/installer/node_modules/external-editor/main/errors/ReadFileError.js +0 -39
  500. package/tools/installer/node_modules/external-editor/main/errors/RemoveFileError.d.ts +0 -10
  501. package/tools/installer/node_modules/external-editor/main/errors/RemoveFileError.js +0 -39
  502. package/tools/installer/node_modules/external-editor/main/index.d.ts +0 -46
  503. package/tools/installer/node_modules/external-editor/main/index.js +0 -193
  504. package/tools/installer/node_modules/external-editor/package.json +0 -61
  505. package/tools/installer/node_modules/fs-extra/LICENSE +0 -15
  506. package/tools/installer/node_modules/fs-extra/README.md +0 -292
  507. package/tools/installer/node_modules/fs-extra/lib/copy/copy-sync.js +0 -171
  508. package/tools/installer/node_modules/fs-extra/lib/copy/copy.js +0 -182
  509. package/tools/installer/node_modules/fs-extra/lib/copy/index.js +0 -7
  510. package/tools/installer/node_modules/fs-extra/lib/empty/index.js +0 -39
  511. package/tools/installer/node_modules/fs-extra/lib/ensure/file.js +0 -66
  512. package/tools/installer/node_modules/fs-extra/lib/ensure/index.js +0 -23
  513. package/tools/installer/node_modules/fs-extra/lib/ensure/link.js +0 -64
  514. package/tools/installer/node_modules/fs-extra/lib/ensure/symlink-paths.js +0 -101
  515. package/tools/installer/node_modules/fs-extra/lib/ensure/symlink-type.js +0 -34
  516. package/tools/installer/node_modules/fs-extra/lib/ensure/symlink.js +0 -67
  517. package/tools/installer/node_modules/fs-extra/lib/esm.mjs +0 -68
  518. package/tools/installer/node_modules/fs-extra/lib/fs/index.js +0 -146
  519. package/tools/installer/node_modules/fs-extra/lib/index.js +0 -16
  520. package/tools/installer/node_modules/fs-extra/lib/json/index.js +0 -16
  521. package/tools/installer/node_modules/fs-extra/lib/json/jsonfile.js +0 -11
  522. package/tools/installer/node_modules/fs-extra/lib/json/output-json-sync.js +0 -12
  523. package/tools/installer/node_modules/fs-extra/lib/json/output-json.js +0 -12
  524. package/tools/installer/node_modules/fs-extra/lib/mkdirs/index.js +0 -14
  525. package/tools/installer/node_modules/fs-extra/lib/mkdirs/make-dir.js +0 -27
  526. package/tools/installer/node_modules/fs-extra/lib/mkdirs/utils.js +0 -21
  527. package/tools/installer/node_modules/fs-extra/lib/move/index.js +0 -7
  528. package/tools/installer/node_modules/fs-extra/lib/move/move-sync.js +0 -55
  529. package/tools/installer/node_modules/fs-extra/lib/move/move.js +0 -59
  530. package/tools/installer/node_modules/fs-extra/lib/output-file/index.js +0 -31
  531. package/tools/installer/node_modules/fs-extra/lib/path-exists/index.js +0 -12
  532. package/tools/installer/node_modules/fs-extra/lib/remove/index.js +0 -17
  533. package/tools/installer/node_modules/fs-extra/lib/util/stat.js +0 -158
  534. package/tools/installer/node_modules/fs-extra/lib/util/utimes.js +0 -36
  535. package/tools/installer/node_modules/fs-extra/package.json +0 -71
  536. package/tools/installer/node_modules/get-east-asian-width/index.d.ts +0 -60
  537. package/tools/installer/node_modules/get-east-asian-width/index.js +0 -31
  538. package/tools/installer/node_modules/get-east-asian-width/license +0 -9
  539. package/tools/installer/node_modules/get-east-asian-width/lookup.js +0 -403
  540. package/tools/installer/node_modules/get-east-asian-width/package.json +0 -70
  541. package/tools/installer/node_modules/get-east-asian-width/readme.md +0 -65
  542. package/tools/installer/node_modules/graceful-fs/LICENSE +0 -15
  543. package/tools/installer/node_modules/graceful-fs/README.md +0 -143
  544. package/tools/installer/node_modules/graceful-fs/clone.js +0 -23
  545. package/tools/installer/node_modules/graceful-fs/graceful-fs.js +0 -448
  546. package/tools/installer/node_modules/graceful-fs/legacy-streams.js +0 -118
  547. package/tools/installer/node_modules/graceful-fs/package.json +0 -53
  548. package/tools/installer/node_modules/graceful-fs/polyfills.js +0 -355
  549. package/tools/installer/node_modules/iconv-lite/Changelog.md +0 -162
  550. package/tools/installer/node_modules/iconv-lite/LICENSE +0 -21
  551. package/tools/installer/node_modules/iconv-lite/README.md +0 -156
  552. package/tools/installer/node_modules/iconv-lite/encodings/dbcs-codec.js +0 -555
  553. package/tools/installer/node_modules/iconv-lite/encodings/dbcs-data.js +0 -176
  554. package/tools/installer/node_modules/iconv-lite/encodings/index.js +0 -22
  555. package/tools/installer/node_modules/iconv-lite/encodings/internal.js +0 -188
  556. package/tools/installer/node_modules/iconv-lite/encodings/sbcs-codec.js +0 -72
  557. package/tools/installer/node_modules/iconv-lite/encodings/sbcs-data-generated.js +0 -451
  558. package/tools/installer/node_modules/iconv-lite/encodings/sbcs-data.js +0 -174
  559. package/tools/installer/node_modules/iconv-lite/encodings/tables/big5-added.json +0 -122
  560. package/tools/installer/node_modules/iconv-lite/encodings/tables/cp936.json +0 -264
  561. package/tools/installer/node_modules/iconv-lite/encodings/tables/cp949.json +0 -273
  562. package/tools/installer/node_modules/iconv-lite/encodings/tables/cp950.json +0 -177
  563. package/tools/installer/node_modules/iconv-lite/encodings/tables/eucjp.json +0 -182
  564. package/tools/installer/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +0 -1
  565. package/tools/installer/node_modules/iconv-lite/encodings/tables/gbk-added.json +0 -55
  566. package/tools/installer/node_modules/iconv-lite/encodings/tables/shiftjis.json +0 -125
  567. package/tools/installer/node_modules/iconv-lite/encodings/utf16.js +0 -177
  568. package/tools/installer/node_modules/iconv-lite/encodings/utf7.js +0 -290
  569. package/tools/installer/node_modules/iconv-lite/lib/bom-handling.js +0 -52
  570. package/tools/installer/node_modules/iconv-lite/lib/extend-node.js +0 -217
  571. package/tools/installer/node_modules/iconv-lite/lib/index.d.ts +0 -24
  572. package/tools/installer/node_modules/iconv-lite/lib/index.js +0 -153
  573. package/tools/installer/node_modules/iconv-lite/lib/streams.js +0 -121
  574. package/tools/installer/node_modules/iconv-lite/package.json +0 -46
  575. package/tools/installer/node_modules/inquirer/LICENSE +0 -22
  576. package/tools/installer/node_modules/inquirer/README.md +0 -565
  577. package/tools/installer/node_modules/inquirer/dist/commonjs/index.d.ts +0 -63
  578. package/tools/installer/node_modules/inquirer/dist/commonjs/index.js +0 -73
  579. package/tools/installer/node_modules/inquirer/dist/commonjs/package.json +0 -3
  580. package/tools/installer/node_modules/inquirer/dist/commonjs/types.d.ts +0 -61
  581. package/tools/installer/node_modules/inquirer/dist/commonjs/types.js +0 -2
  582. package/tools/installer/node_modules/inquirer/dist/commonjs/ui/prompt.d.ts +0 -60
  583. package/tools/installer/node_modules/inquirer/dist/commonjs/ui/prompt.js +0 -270
  584. package/tools/installer/node_modules/inquirer/dist/esm/index.d.ts +0 -63
  585. package/tools/installer/node_modules/inquirer/dist/esm/index.js +0 -67
  586. package/tools/installer/node_modules/inquirer/dist/esm/package.json +0 -3
  587. package/tools/installer/node_modules/inquirer/dist/esm/types.d.ts +0 -61
  588. package/tools/installer/node_modules/inquirer/dist/esm/types.js +0 -1
  589. package/tools/installer/node_modules/inquirer/dist/esm/ui/prompt.d.ts +0 -60
  590. package/tools/installer/node_modules/inquirer/dist/esm/ui/prompt.js +0 -263
  591. package/tools/installer/node_modules/inquirer/package.json +0 -111
  592. package/tools/installer/node_modules/is-fullwidth-code-point/index.d.ts +0 -17
  593. package/tools/installer/node_modules/is-fullwidth-code-point/index.js +0 -50
  594. package/tools/installer/node_modules/is-fullwidth-code-point/license +0 -9
  595. package/tools/installer/node_modules/is-fullwidth-code-point/package.json +0 -42
  596. package/tools/installer/node_modules/is-fullwidth-code-point/readme.md +0 -39
  597. package/tools/installer/node_modules/is-interactive/index.d.ts +0 -25
  598. package/tools/installer/node_modules/is-interactive/index.js +0 -7
  599. package/tools/installer/node_modules/is-interactive/license +0 -9
  600. package/tools/installer/node_modules/is-interactive/package.json +0 -41
  601. package/tools/installer/node_modules/is-interactive/readme.md +0 -52
  602. package/tools/installer/node_modules/is-unicode-supported/index.d.ts +0 -12
  603. package/tools/installer/node_modules/is-unicode-supported/index.js +0 -21
  604. package/tools/installer/node_modules/is-unicode-supported/license +0 -9
  605. package/tools/installer/node_modules/is-unicode-supported/package.json +0 -47
  606. package/tools/installer/node_modules/is-unicode-supported/readme.md +0 -35
  607. package/tools/installer/node_modules/js-yaml/CHANGELOG.md +0 -616
  608. package/tools/installer/node_modules/js-yaml/LICENSE +0 -21
  609. package/tools/installer/node_modules/js-yaml/README.md +0 -246
  610. package/tools/installer/node_modules/js-yaml/bin/js-yaml.js +0 -126
  611. package/tools/installer/node_modules/js-yaml/dist/js-yaml.js +0 -3874
  612. package/tools/installer/node_modules/js-yaml/dist/js-yaml.min.js +0 -2
  613. package/tools/installer/node_modules/js-yaml/dist/js-yaml.mjs +0 -3851
  614. package/tools/installer/node_modules/js-yaml/index.js +0 -47
  615. package/tools/installer/node_modules/js-yaml/lib/common.js +0 -59
  616. package/tools/installer/node_modules/js-yaml/lib/dumper.js +0 -965
  617. package/tools/installer/node_modules/js-yaml/lib/exception.js +0 -55
  618. package/tools/installer/node_modules/js-yaml/lib/loader.js +0 -1727
  619. package/tools/installer/node_modules/js-yaml/lib/schema/core.js +0 -11
  620. package/tools/installer/node_modules/js-yaml/lib/schema/default.js +0 -22
  621. package/tools/installer/node_modules/js-yaml/lib/schema/failsafe.js +0 -17
  622. package/tools/installer/node_modules/js-yaml/lib/schema/json.js +0 -19
  623. package/tools/installer/node_modules/js-yaml/lib/schema.js +0 -121
  624. package/tools/installer/node_modules/js-yaml/lib/snippet.js +0 -101
  625. package/tools/installer/node_modules/js-yaml/lib/type/binary.js +0 -125
  626. package/tools/installer/node_modules/js-yaml/lib/type/bool.js +0 -35
  627. package/tools/installer/node_modules/js-yaml/lib/type/float.js +0 -97
  628. package/tools/installer/node_modules/js-yaml/lib/type/int.js +0 -156
  629. package/tools/installer/node_modules/js-yaml/lib/type/map.js +0 -8
  630. package/tools/installer/node_modules/js-yaml/lib/type/merge.js +0 -12
  631. package/tools/installer/node_modules/js-yaml/lib/type/null.js +0 -35
  632. package/tools/installer/node_modules/js-yaml/lib/type/omap.js +0 -44
  633. package/tools/installer/node_modules/js-yaml/lib/type/pairs.js +0 -53
  634. package/tools/installer/node_modules/js-yaml/lib/type/seq.js +0 -8
  635. package/tools/installer/node_modules/js-yaml/lib/type/set.js +0 -29
  636. package/tools/installer/node_modules/js-yaml/lib/type/str.js +0 -8
  637. package/tools/installer/node_modules/js-yaml/lib/type/timestamp.js +0 -88
  638. package/tools/installer/node_modules/js-yaml/lib/type.js +0 -66
  639. package/tools/installer/node_modules/js-yaml/package.json +0 -66
  640. package/tools/installer/node_modules/jsonfile/CHANGELOG.md +0 -171
  641. package/tools/installer/node_modules/jsonfile/LICENSE +0 -15
  642. package/tools/installer/node_modules/jsonfile/README.md +0 -230
  643. package/tools/installer/node_modules/jsonfile/index.js +0 -88
  644. package/tools/installer/node_modules/jsonfile/package.json +0 -40
  645. package/tools/installer/node_modules/jsonfile/utils.js +0 -14
  646. package/tools/installer/node_modules/log-symbols/browser.js +0 -8
  647. package/tools/installer/node_modules/log-symbols/index.d.ts +0 -22
  648. package/tools/installer/node_modules/log-symbols/index.js +0 -20
  649. package/tools/installer/node_modules/log-symbols/license +0 -9
  650. package/tools/installer/node_modules/log-symbols/node_modules/is-unicode-supported/index.d.ts +0 -12
  651. package/tools/installer/node_modules/log-symbols/node_modules/is-unicode-supported/index.js +0 -17
  652. package/tools/installer/node_modules/log-symbols/node_modules/is-unicode-supported/license +0 -9
  653. package/tools/installer/node_modules/log-symbols/node_modules/is-unicode-supported/package.json +0 -43
  654. package/tools/installer/node_modules/log-symbols/node_modules/is-unicode-supported/readme.md +0 -35
  655. package/tools/installer/node_modules/log-symbols/package.json +0 -57
  656. package/tools/installer/node_modules/log-symbols/readme.md +0 -39
  657. package/tools/installer/node_modules/mimic-function/index.d.ts +0 -52
  658. package/tools/installer/node_modules/mimic-function/index.js +0 -72
  659. package/tools/installer/node_modules/mimic-function/license +0 -9
  660. package/tools/installer/node_modules/mimic-function/package.json +0 -49
  661. package/tools/installer/node_modules/mimic-function/readme.md +0 -80
  662. package/tools/installer/node_modules/mute-stream/LICENSE +0 -15
  663. package/tools/installer/node_modules/mute-stream/README.md +0 -68
  664. package/tools/installer/node_modules/mute-stream/lib/index.js +0 -142
  665. package/tools/installer/node_modules/mute-stream/package.json +0 -54
  666. package/tools/installer/node_modules/onetime/index.d.ts +0 -59
  667. package/tools/installer/node_modules/onetime/index.js +0 -41
  668. package/tools/installer/node_modules/onetime/license +0 -9
  669. package/tools/installer/node_modules/onetime/package.json +0 -49
  670. package/tools/installer/node_modules/onetime/readme.md +0 -88
  671. package/tools/installer/node_modules/ora/index.d.ts +0 -332
  672. package/tools/installer/node_modules/ora/index.js +0 -424
  673. package/tools/installer/node_modules/ora/license +0 -9
  674. package/tools/installer/node_modules/ora/package.json +0 -64
  675. package/tools/installer/node_modules/ora/readme.md +0 -329
  676. package/tools/installer/node_modules/os-tmpdir/index.js +0 -25
  677. package/tools/installer/node_modules/os-tmpdir/license +0 -21
  678. package/tools/installer/node_modules/os-tmpdir/package.json +0 -41
  679. package/tools/installer/node_modules/os-tmpdir/readme.md +0 -32
  680. package/tools/installer/node_modules/restore-cursor/index.d.ts +0 -15
  681. package/tools/installer/node_modules/restore-cursor/index.js +0 -15
  682. package/tools/installer/node_modules/restore-cursor/license +0 -9
  683. package/tools/installer/node_modules/restore-cursor/package.json +0 -57
  684. package/tools/installer/node_modules/restore-cursor/readme.md +0 -21
  685. package/tools/installer/node_modules/run-async/LICENSE +0 -21
  686. package/tools/installer/node_modules/run-async/README.md +0 -104
  687. package/tools/installer/node_modules/run-async/index.d.ts +0 -5
  688. package/tools/installer/node_modules/run-async/index.js +0 -131
  689. package/tools/installer/node_modules/run-async/package.json +0 -33
  690. package/tools/installer/node_modules/rxjs/CHANGELOG.md +0 -2750
  691. package/tools/installer/node_modules/rxjs/CODE_OF_CONDUCT.md +0 -73
  692. package/tools/installer/node_modules/rxjs/LICENSE.txt +0 -202
  693. package/tools/installer/node_modules/rxjs/README.md +0 -107
  694. package/tools/installer/node_modules/rxjs/ajax/package.json +0 -8
  695. package/tools/installer/node_modules/rxjs/dist/bundles/rxjs.umd.js +0 -6849
  696. package/tools/installer/node_modules/rxjs/dist/bundles/rxjs.umd.js.map +0 -1
  697. package/tools/installer/node_modules/rxjs/dist/bundles/rxjs.umd.min.js +0 -195
  698. package/tools/installer/node_modules/rxjs/dist/bundles/rxjs.umd.min.js.map +0 -1
  699. package/tools/installer/node_modules/rxjs/dist/cjs/ajax/index.js +0 -11
  700. package/tools/installer/node_modules/rxjs/dist/cjs/ajax/index.js.map +0 -1
  701. package/tools/installer/node_modules/rxjs/dist/cjs/fetch/index.js +0 -6
  702. package/tools/installer/node_modules/rxjs/dist/cjs/fetch/index.js.map +0 -1
  703. package/tools/installer/node_modules/rxjs/dist/cjs/index.js +0 -358
  704. package/tools/installer/node_modules/rxjs/dist/cjs/index.js.map +0 -1
  705. package/tools/installer/node_modules/rxjs/dist/cjs/internal/AnyCatcher.js +0 -3
  706. package/tools/installer/node_modules/rxjs/dist/cjs/internal/AnyCatcher.js.map +0 -1
  707. package/tools/installer/node_modules/rxjs/dist/cjs/internal/AsyncSubject.js +0 -56
  708. package/tools/installer/node_modules/rxjs/dist/cjs/internal/AsyncSubject.js.map +0 -1
  709. package/tools/installer/node_modules/rxjs/dist/cjs/internal/BehaviorSubject.js +0 -53
  710. package/tools/installer/node_modules/rxjs/dist/cjs/internal/BehaviorSubject.js.map +0 -1
  711. package/tools/installer/node_modules/rxjs/dist/cjs/internal/Notification.js +0 -76
  712. package/tools/installer/node_modules/rxjs/dist/cjs/internal/Notification.js.map +0 -1
  713. package/tools/installer/node_modules/rxjs/dist/cjs/internal/NotificationFactories.js +0 -21
  714. package/tools/installer/node_modules/rxjs/dist/cjs/internal/NotificationFactories.js.map +0 -1
  715. package/tools/installer/node_modules/rxjs/dist/cjs/internal/Observable.js +0 -105
  716. package/tools/installer/node_modules/rxjs/dist/cjs/internal/Observable.js.map +0 -1
  717. package/tools/installer/node_modules/rxjs/dist/cjs/internal/Operator.js +0 -3
  718. package/tools/installer/node_modules/rxjs/dist/cjs/internal/Operator.js.map +0 -1
  719. package/tools/installer/node_modules/rxjs/dist/cjs/internal/ReplaySubject.js +0 -75
  720. package/tools/installer/node_modules/rxjs/dist/cjs/internal/ReplaySubject.js.map +0 -1
  721. package/tools/installer/node_modules/rxjs/dist/cjs/internal/Scheduler.js +0 -19
  722. package/tools/installer/node_modules/rxjs/dist/cjs/internal/Scheduler.js.map +0 -1
  723. package/tools/installer/node_modules/rxjs/dist/cjs/internal/Subject.js +0 -190
  724. package/tools/installer/node_modules/rxjs/dist/cjs/internal/Subject.js.map +0 -1
  725. package/tools/installer/node_modules/rxjs/dist/cjs/internal/Subscriber.js +0 -201
  726. package/tools/installer/node_modules/rxjs/dist/cjs/internal/Subscriber.js.map +0 -1
  727. package/tools/installer/node_modules/rxjs/dist/cjs/internal/Subscription.js +0 -178
  728. package/tools/installer/node_modules/rxjs/dist/cjs/internal/Subscription.js.map +0 -1
  729. package/tools/installer/node_modules/rxjs/dist/cjs/internal/ajax/AjaxResponse.js +0 -32
  730. package/tools/installer/node_modules/rxjs/dist/cjs/internal/ajax/AjaxResponse.js.map +0 -1
  731. package/tools/installer/node_modules/rxjs/dist/cjs/internal/ajax/ajax.js +0 -253
  732. package/tools/installer/node_modules/rxjs/dist/cjs/internal/ajax/ajax.js.map +0 -1
  733. package/tools/installer/node_modules/rxjs/dist/cjs/internal/ajax/errors.js +0 -33
  734. package/tools/installer/node_modules/rxjs/dist/cjs/internal/ajax/errors.js.map +0 -1
  735. package/tools/installer/node_modules/rxjs/dist/cjs/internal/ajax/getXHRResponse.js +0 -30
  736. package/tools/installer/node_modules/rxjs/dist/cjs/internal/ajax/getXHRResponse.js.map +0 -1
  737. package/tools/installer/node_modules/rxjs/dist/cjs/internal/ajax/types.js +0 -3
  738. package/tools/installer/node_modules/rxjs/dist/cjs/internal/ajax/types.js.map +0 -1
  739. package/tools/installer/node_modules/rxjs/dist/cjs/internal/config.js +0 -11
  740. package/tools/installer/node_modules/rxjs/dist/cjs/internal/config.js.map +0 -1
  741. package/tools/installer/node_modules/rxjs/dist/cjs/internal/firstValueFrom.js +0 -28
  742. package/tools/installer/node_modules/rxjs/dist/cjs/internal/firstValueFrom.js.map +0 -1
  743. package/tools/installer/node_modules/rxjs/dist/cjs/internal/lastValueFrom.js +0 -31
  744. package/tools/installer/node_modules/rxjs/dist/cjs/internal/lastValueFrom.js.map +0 -1
  745. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/ConnectableObservable.js +0 -80
  746. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/ConnectableObservable.js.map +0 -1
  747. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/bindCallback.js +0 -9
  748. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/bindCallback.js.map +0 -1
  749. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/bindCallbackInternals.js +0 -103
  750. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/bindCallbackInternals.js.map +0 -1
  751. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/bindNodeCallback.js +0 -9
  752. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/bindNodeCallback.js.map +0 -1
  753. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/combineLatest.js +0 -75
  754. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/combineLatest.js.map +0 -1
  755. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/concat.js +0 -15
  756. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/concat.js.map +0 -1
  757. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/connectable.js +0 -31
  758. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/connectable.js.map +0 -1
  759. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/defer.js +0 -12
  760. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/defer.js.map +0 -1
  761. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/dom/WebSocketSubject.js +0 -249
  762. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/dom/WebSocketSubject.js.map +0 -1
  763. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/dom/animationFrames.js +0 -38
  764. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/dom/animationFrames.js.map +0 -1
  765. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/dom/fetch.js +0 -79
  766. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/dom/fetch.js.map +0 -1
  767. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/dom/webSocket.js +0 -9
  768. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/dom/webSocket.js.map +0 -1
  769. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/empty.js +0 -13
  770. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/empty.js.map +0 -1
  771. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/forkJoin.js +0 -51
  772. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/forkJoin.js.map +0 -1
  773. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/from.js +0 -10
  774. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/from.js.map +0 -1
  775. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/fromEvent.js +0 -78
  776. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/fromEvent.js.map +0 -1
  777. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/fromEventPattern.js +0 -24
  778. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/fromEventPattern.js.map +0 -1
  779. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/fromSubscribable.js +0 -9
  780. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/fromSubscribable.js.map +0 -1
  781. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/generate.js +0 -79
  782. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/generate.js.map +0 -1
  783. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/iif.js +0 -9
  784. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/iif.js.map +0 -1
  785. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/innerFrom.js +0 -206
  786. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/innerFrom.js.map +0 -1
  787. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/interval.js +0 -15
  788. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/interval.js.map +0 -1
  789. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/merge.js +0 -27
  790. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/merge.js.map +0 -1
  791. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/never.js +0 -11
  792. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/never.js.map +0 -1
  793. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/of.js +0 -15
  794. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/of.js.map +0 -1
  795. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/onErrorResumeNext.js +0 -39
  796. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/onErrorResumeNext.js.map +0 -1
  797. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/pairs.js +0 -9
  798. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/pairs.js.map +0 -1
  799. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/partition.js +0 -11
  800. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/partition.js.map +0 -1
  801. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/race.js +0 -37
  802. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/race.js.map +0 -1
  803. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/range.js +0 -39
  804. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/range.js.map +0 -1
  805. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/throwError.js +0 -12
  806. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/throwError.js.map +0 -1
  807. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/timer.js +0 -40
  808. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/timer.js.map +0 -1
  809. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/using.js +0 -21
  810. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/using.js.map +0 -1
  811. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/zip.js +0 -70
  812. package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/zip.js.map +0 -1
  813. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/OperatorSubscriber.js +0 -79
  814. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/OperatorSubscriber.js.map +0 -1
  815. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/audit.js +0 -41
  816. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/audit.js.map +0 -1
  817. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/auditTime.js +0 -12
  818. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/auditTime.js.map +0 -1
  819. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/buffer.js +0 -26
  820. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/buffer.js.map +0 -1
  821. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/bufferCount.js +0 -85
  822. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/bufferCount.js.map +0 -1
  823. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/bufferTime.js +0 -91
  824. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/bufferTime.js.map +0 -1
  825. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/bufferToggle.js +0 -59
  826. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/bufferToggle.js.map +0 -1
  827. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/bufferWhen.js +0 -27
  828. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/bufferWhen.js.map +0 -1
  829. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/catchError.js +0 -31
  830. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/catchError.js.map +0 -1
  831. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/combineAll.js +0 -6
  832. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/combineAll.js.map +0 -1
  833. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/combineLatest.js +0 -44
  834. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/combineLatest.js.map +0 -1
  835. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/combineLatestAll.js +0 -10
  836. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/combineLatestAll.js.map +0 -1
  837. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/combineLatestWith.js +0 -34
  838. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/combineLatestWith.js.map +0 -1
  839. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/concat.js +0 -40
  840. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/concat.js.map +0 -1
  841. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/concatAll.js +0 -9
  842. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/concatAll.js.map +0 -1
  843. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/concatMap.js +0 -10
  844. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/concatMap.js.map +0 -1
  845. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/concatMapTo.js +0 -10
  846. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/concatMapTo.js.map +0 -1
  847. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/concatWith.js +0 -34
  848. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/concatWith.js.map +0 -1
  849. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/connect.js +0 -21
  850. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/connect.js.map +0 -1
  851. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/count.js +0 -9
  852. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/count.js.map +0 -1
  853. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/debounce.js +0 -38
  854. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/debounce.js.map +0 -1
  855. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/debounceTime.js +0 -48
  856. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/debounceTime.js.map +0 -1
  857. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/defaultIfEmpty.js +0 -21
  858. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/defaultIfEmpty.js.map +0 -1
  859. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/delay.js +0 -13
  860. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/delay.js.map +0 -1
  861. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/delayWhen.js +0 -19
  862. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/delayWhen.js.map +0 -1
  863. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/dematerialize.js +0 -13
  864. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/dematerialize.js.map +0 -1
  865. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/distinct.js +0 -22
  866. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/distinct.js.map +0 -1
  867. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/distinctUntilChanged.js +0 -27
  868. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/distinctUntilChanged.js.map +0 -1
  869. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/distinctUntilKeyChanged.js +0 -9
  870. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/distinctUntilKeyChanged.js.map +0 -1
  871. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/elementAt.js +0 -19
  872. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/elementAt.js.map +0 -1
  873. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/endWith.js +0 -35
  874. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/endWith.js.map +0 -1
  875. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/every.js +0 -21
  876. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/every.js.map +0 -1
  877. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/exhaust.js +0 -6
  878. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/exhaust.js.map +0 -1
  879. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/exhaustAll.js +0 -10
  880. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/exhaustAll.js.map +0 -1
  881. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/exhaustMap.js +0 -33
  882. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/exhaustMap.js.map +0 -1
  883. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/expand.js +0 -14
  884. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/expand.js.map +0 -1
  885. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/filter.js +0 -13
  886. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/filter.js.map +0 -1
  887. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/finalize.js +0 -16
  888. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/finalize.js.map +0 -1
  889. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/find.js +0 -27
  890. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/find.js.map +0 -1
  891. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/findIndex.js +0 -10
  892. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/findIndex.js.map +0 -1
  893. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/first.js +0 -17
  894. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/first.js.map +0 -1
  895. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/flatMap.js +0 -6
  896. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/flatMap.js.map +0 -1
  897. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/groupBy.js +0 -67
  898. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/groupBy.js.map +0 -1
  899. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/ignoreElements.js +0 -13
  900. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/ignoreElements.js.map +0 -1
  901. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/isEmpty.js +0 -18
  902. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/isEmpty.js.map +0 -1
  903. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/joinAllInternals.js +0 -13
  904. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/joinAllInternals.js.map +0 -1
  905. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/last.js +0 -17
  906. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/last.js.map +0 -1
  907. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/map.js +0 -15
  908. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/map.js.map +0 -1
  909. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/mapTo.js +0 -9
  910. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/mapTo.js.map +0 -1
  911. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/materialize.js +0 -21
  912. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/materialize.js.map +0 -1
  913. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/max.js +0 -10
  914. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/max.js.map +0 -1
  915. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/merge.js +0 -41
  916. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/merge.js.map +0 -1
  917. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/mergeAll.js +0 -11
  918. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/mergeAll.js.map +0 -1
  919. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/mergeInternals.js +0 -65
  920. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/mergeInternals.js.map +0 -1
  921. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/mergeMap.js +0 -20
  922. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/mergeMap.js.map +0 -1
  923. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/mergeMapTo.js +0 -17
  924. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/mergeMapTo.js.map +0 -1
  925. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/mergeScan.js +0 -16
  926. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/mergeScan.js.map +0 -1
  927. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/mergeWith.js +0 -34
  928. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/mergeWith.js.map +0 -1
  929. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/min.js +0 -10
  930. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/min.js.map +0 -1
  931. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/multicast.js +0 -17
  932. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/multicast.js.map +0 -1
  933. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/observeOn.js +0 -14
  934. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/observeOn.js.map +0 -1
  935. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/onErrorResumeNextWith.js +0 -37
  936. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/onErrorResumeNextWith.js.map +0 -1
  937. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/pairwise.js +0 -19
  938. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/pairwise.js.map +0 -1
  939. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/partition.js +0 -12
  940. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/partition.js.map +0 -1
  941. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/pluck.js +0 -29
  942. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/pluck.js.map +0 -1
  943. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/publish.js +0 -11
  944. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/publish.js.map +0 -1
  945. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/publishBehavior.js +0 -13
  946. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/publishBehavior.js.map +0 -1
  947. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/publishLast.js +0 -13
  948. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/publishLast.js.map +0 -1
  949. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/publishReplay.js +0 -15
  950. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/publishReplay.js.map +0 -1
  951. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/race.js +0 -35
  952. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/race.js.map +0 -1
  953. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/raceWith.js +0 -40
  954. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/raceWith.js.map +0 -1
  955. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/reduce.js +0 -10
  956. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/reduce.js.map +0 -1
  957. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/refCount.js +0 -30
  958. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/refCount.js.map +0 -1
  959. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/repeat.js +0 -64
  960. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/repeat.js.map +0 -1
  961. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/repeatWhen.js +0 -50
  962. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/repeatWhen.js.map +0 -1
  963. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/retry.js +0 -73
  964. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/retry.js.map +0 -1
  965. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/retryWhen.js +0 -36
  966. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/retryWhen.js.map +0 -1
  967. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/sample.js +0 -27
  968. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/sample.js.map +0 -1
  969. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/sampleTime.js +0 -12
  970. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/sampleTime.js.map +0 -1
  971. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/scan.js +0 -10
  972. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/scan.js.map +0 -1
  973. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/scanInternals.js +0 -26
  974. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/scanInternals.js.map +0 -1
  975. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/sequenceEqual.js +0 -44
  976. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/sequenceEqual.js.map +0 -1
  977. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/share.js +0 -109
  978. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/share.js.map +0 -1
  979. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/shareReplay.js +0 -24
  980. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/shareReplay.js.map +0 -1
  981. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/single.js +0 -34
  982. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/single.js.map +0 -1
  983. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/skip.js +0 -9
  984. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/skip.js.map +0 -1
  985. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/skipLast.js +0 -32
  986. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/skipLast.js.map +0 -1
  987. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/skipUntil.js +0 -20
  988. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/skipUntil.js.map +0 -1
  989. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/skipWhile.js +0 -14
  990. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/skipWhile.js.map +0 -1
  991. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/startWith.js +0 -18
  992. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/startWith.js.map +0 -1
  993. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/subscribeOn.js +0 -12
  994. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/subscribeOn.js.map +0 -1
  995. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/switchAll.js +0 -10
  996. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/switchAll.js.map +0 -1
  997. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/switchMap.js +0 -28
  998. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/switchMap.js.map +0 -1
  999. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/switchMapTo.js +0 -10
  1000. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/switchMapTo.js.map +0 -1
  1001. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/switchScan.js +0 -16
  1002. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/switchScan.js.map +0 -1
  1003. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/take.js +0 -24
  1004. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/take.js.map +0 -1
  1005. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/takeLast.js +0 -48
  1006. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/takeLast.js.map +0 -1
  1007. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/takeUntil.js +0 -15
  1008. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/takeUntil.js.map +0 -1
  1009. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/takeWhile.js +0 -18
  1010. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/takeWhile.js.map +0 -1
  1011. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/tap.js +0 -44
  1012. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/tap.js.map +0 -1
  1013. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/throttle.js +0 -49
  1014. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/throttle.js.map +0 -1
  1015. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/throttleTime.js +0 -13
  1016. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/throttleTime.js.map +0 -1
  1017. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/throwIfEmpty.js +0 -21
  1018. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/throwIfEmpty.js.map +0 -1
  1019. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/timeInterval.js +0 -28
  1020. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/timeInterval.js.map +0 -1
  1021. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/timeout.js +0 -63
  1022. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/timeout.js.map +0 -1
  1023. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/timeoutWith.js +0 -35
  1024. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/timeoutWith.js.map +0 -1
  1025. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/timestamp.js +0 -11
  1026. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/timestamp.js.map +0 -1
  1027. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/toArray.js +0 -13
  1028. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/toArray.js.map +0 -1
  1029. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/window.js +0 -32
  1030. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/window.js.map +0 -1
  1031. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/windowCount.js +0 -67
  1032. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/windowCount.js.map +0 -1
  1033. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/windowTime.js +0 -74
  1034. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/windowTime.js.map +0 -1
  1035. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/windowToggle.js +0 -80
  1036. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/windowToggle.js.map +0 -1
  1037. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/windowWhen.js +0 -42
  1038. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/windowWhen.js.map +0 -1
  1039. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/withLatestFrom.js +0 -63
  1040. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/withLatestFrom.js.map +0 -1
  1041. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/zip.js +0 -37
  1042. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/zip.js.map +0 -1
  1043. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/zipAll.js +0 -10
  1044. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/zipAll.js.map +0 -1
  1045. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/zipWith.js +0 -34
  1046. package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/zipWith.js.map +0 -1
  1047. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduled/scheduleArray.js +0 -22
  1048. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduled/scheduleArray.js.map +0 -1
  1049. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduled/scheduleAsyncIterable.js +0 -27
  1050. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduled/scheduleAsyncIterable.js.map +0 -1
  1051. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduled/scheduleIterable.js +0 -36
  1052. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduled/scheduleIterable.js.map +0 -1
  1053. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduled/scheduleObservable.js +0 -11
  1054. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduled/scheduleObservable.js.map +0 -1
  1055. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduled/schedulePromise.js +0 -11
  1056. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduled/schedulePromise.js.map +0 -1
  1057. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduled/scheduleReadableStreamLike.js +0 -10
  1058. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduled/scheduleReadableStreamLike.js.map +0 -1
  1059. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduled/scheduled.js +0 -41
  1060. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduled/scheduled.js.map +0 -1
  1061. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/Action.js +0 -32
  1062. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/Action.js.map +0 -1
  1063. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/AnimationFrameAction.js +0 -53
  1064. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/AnimationFrameAction.js.map +0 -1
  1065. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/AnimationFrameScheduler.js +0 -54
  1066. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/AnimationFrameScheduler.js.map +0 -1
  1067. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/AsapAction.js +0 -55
  1068. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/AsapAction.js.map +0 -1
  1069. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/AsapScheduler.js +0 -48
  1070. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/AsapScheduler.js.map +0 -1
  1071. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/AsyncAction.js +0 -107
  1072. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/AsyncAction.js.map +0 -1
  1073. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/AsyncScheduler.js +0 -53
  1074. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/AsyncScheduler.js.map +0 -1
  1075. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/QueueAction.js +0 -52
  1076. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/QueueAction.js.map +0 -1
  1077. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/QueueScheduler.js +0 -28
  1078. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/QueueScheduler.js.map +0 -1
  1079. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/VirtualTimeScheduler.js +0 -121
  1080. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/VirtualTimeScheduler.js.map +0 -1
  1081. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/animationFrame.js +0 -8
  1082. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/animationFrame.js.map +0 -1
  1083. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/animationFrameProvider.js +0 -59
  1084. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/animationFrameProvider.js.map +0 -1
  1085. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/asap.js +0 -8
  1086. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/asap.js.map +0 -1
  1087. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/async.js +0 -8
  1088. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/async.js.map +0 -1
  1089. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/dateTimestampProvider.js +0 -10
  1090. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/dateTimestampProvider.js.map +0 -1
  1091. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/immediateProvider.js +0 -42
  1092. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/immediateProvider.js.map +0 -1
  1093. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/intervalProvider.js +0 -43
  1094. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/intervalProvider.js.map +0 -1
  1095. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/performanceTimestampProvider.js +0 -10
  1096. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/performanceTimestampProvider.js.map +0 -1
  1097. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/queue.js +0 -8
  1098. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/queue.js.map +0 -1
  1099. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/timeoutProvider.js +0 -43
  1100. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/timeoutProvider.js.map +0 -1
  1101. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/timerHandle.js +0 -3
  1102. package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/timerHandle.js.map +0 -1
  1103. package/tools/installer/node_modules/rxjs/dist/cjs/internal/symbol/iterator.js +0 -12
  1104. package/tools/installer/node_modules/rxjs/dist/cjs/internal/symbol/iterator.js.map +0 -1
  1105. package/tools/installer/node_modules/rxjs/dist/cjs/internal/symbol/observable.js +0 -5
  1106. package/tools/installer/node_modules/rxjs/dist/cjs/internal/symbol/observable.js.map +0 -1
  1107. package/tools/installer/node_modules/rxjs/dist/cjs/internal/testing/ColdObservable.js +0 -56
  1108. package/tools/installer/node_modules/rxjs/dist/cjs/internal/testing/ColdObservable.js.map +0 -1
  1109. package/tools/installer/node_modules/rxjs/dist/cjs/internal/testing/HotObservable.js +0 -62
  1110. package/tools/installer/node_modules/rxjs/dist/cjs/internal/testing/HotObservable.js.map +0 -1
  1111. package/tools/installer/node_modules/rxjs/dist/cjs/internal/testing/SubscriptionLog.js +0 -13
  1112. package/tools/installer/node_modules/rxjs/dist/cjs/internal/testing/SubscriptionLog.js.map +0 -1
  1113. package/tools/installer/node_modules/rxjs/dist/cjs/internal/testing/SubscriptionLoggable.js +0 -21
  1114. package/tools/installer/node_modules/rxjs/dist/cjs/internal/testing/SubscriptionLoggable.js.map +0 -1
  1115. package/tools/installer/node_modules/rxjs/dist/cjs/internal/testing/TestMessage.js +0 -3
  1116. package/tools/installer/node_modules/rxjs/dist/cjs/internal/testing/TestMessage.js.map +0 -1
  1117. package/tools/installer/node_modules/rxjs/dist/cjs/internal/testing/TestScheduler.js +0 -618
  1118. package/tools/installer/node_modules/rxjs/dist/cjs/internal/testing/TestScheduler.js.map +0 -1
  1119. package/tools/installer/node_modules/rxjs/dist/cjs/internal/types.js +0 -3
  1120. package/tools/installer/node_modules/rxjs/dist/cjs/internal/types.js.map +0 -1
  1121. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/ArgumentOutOfRangeError.js +0 -12
  1122. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/ArgumentOutOfRangeError.js.map +0 -1
  1123. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/EmptyError.js +0 -12
  1124. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/EmptyError.js.map +0 -1
  1125. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/Immediate.js +0 -33
  1126. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/Immediate.js.map +0 -1
  1127. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/NotFoundError.js +0 -12
  1128. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/NotFoundError.js.map +0 -1
  1129. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/ObjectUnsubscribedError.js +0 -12
  1130. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/ObjectUnsubscribedError.js.map +0 -1
  1131. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/SequenceError.js +0 -12
  1132. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/SequenceError.js.map +0 -1
  1133. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/UnsubscriptionError.js +0 -15
  1134. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/UnsubscriptionError.js.map +0 -1
  1135. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/applyMixins.js +0 -15
  1136. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/applyMixins.js.map +0 -1
  1137. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/args.js +0 -21
  1138. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/args.js.map +0 -1
  1139. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/argsArgArrayOrObject.js +0 -26
  1140. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/argsArgArrayOrObject.js.map +0 -1
  1141. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/argsOrArgArray.js +0 -9
  1142. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/argsOrArgArray.js.map +0 -1
  1143. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/arrRemove.js +0 -11
  1144. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/arrRemove.js.map +0 -1
  1145. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/createErrorClass.js +0 -15
  1146. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/createErrorClass.js.map +0 -1
  1147. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/createObject.js +0 -8
  1148. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/createObject.js.map +0 -1
  1149. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/errorContext.js +0 -33
  1150. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/errorContext.js.map +0 -1
  1151. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/executeSchedule.js +0 -22
  1152. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/executeSchedule.js.map +0 -1
  1153. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/identity.js +0 -8
  1154. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/identity.js.map +0 -1
  1155. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/isArrayLike.js +0 -5
  1156. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/isArrayLike.js.map +0 -1
  1157. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/isAsyncIterable.js +0 -9
  1158. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/isAsyncIterable.js.map +0 -1
  1159. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/isDate.js +0 -8
  1160. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/isDate.js.map +0 -1
  1161. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/isFunction.js +0 -8
  1162. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/isFunction.js.map +0 -1
  1163. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/isInteropObservable.js +0 -10
  1164. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/isInteropObservable.js.map +0 -1
  1165. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/isIterable.js +0 -10
  1166. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/isIterable.js.map +0 -1
  1167. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/isObservable.js +0 -10
  1168. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/isObservable.js.map +0 -1
  1169. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/isPromise.js +0 -9
  1170. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/isPromise.js.map +0 -1
  1171. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/isReadableStreamLike.js +0 -82
  1172. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/isReadableStreamLike.js.map +0 -1
  1173. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/isScheduler.js +0 -9
  1174. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/isScheduler.js.map +0 -1
  1175. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/lift.js +0 -25
  1176. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/lift.js.map +0 -1
  1177. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/mapOneOrManyArgs.js +0 -34
  1178. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/mapOneOrManyArgs.js.map +0 -1
  1179. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/noop.js +0 -6
  1180. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/noop.js.map +0 -1
  1181. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/not.js +0 -8
  1182. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/not.js.map +0 -1
  1183. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/pipe.js +0 -25
  1184. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/pipe.js.map +0 -1
  1185. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/reportUnhandledError.js +0 -18
  1186. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/reportUnhandledError.js.map +0 -1
  1187. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/subscribeToArray.js +0 -11
  1188. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/subscribeToArray.js.map +0 -1
  1189. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/throwUnobservableError.js +0 -8
  1190. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/throwUnobservableError.js.map +0 -1
  1191. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/workarounds.js +0 -3
  1192. package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/workarounds.js.map +0 -1
  1193. package/tools/installer/node_modules/rxjs/dist/cjs/operators/index.js +0 -232
  1194. package/tools/installer/node_modules/rxjs/dist/cjs/operators/index.js.map +0 -1
  1195. package/tools/installer/node_modules/rxjs/dist/cjs/testing/index.js +0 -6
  1196. package/tools/installer/node_modules/rxjs/dist/cjs/testing/index.js.map +0 -1
  1197. package/tools/installer/node_modules/rxjs/dist/cjs/webSocket/index.js +0 -8
  1198. package/tools/installer/node_modules/rxjs/dist/cjs/webSocket/index.js.map +0 -1
  1199. package/tools/installer/node_modules/rxjs/dist/esm/ajax/index.js +0 -4
  1200. package/tools/installer/node_modules/rxjs/dist/esm/ajax/index.js.map +0 -1
  1201. package/tools/installer/node_modules/rxjs/dist/esm/fetch/index.js +0 -2
  1202. package/tools/installer/node_modules/rxjs/dist/esm/fetch/index.js.map +0 -1
  1203. package/tools/installer/node_modules/rxjs/dist/esm/index.js +0 -169
  1204. package/tools/installer/node_modules/rxjs/dist/esm/index.js.map +0 -1
  1205. package/tools/installer/node_modules/rxjs/dist/esm/internal/AnyCatcher.js +0 -2
  1206. package/tools/installer/node_modules/rxjs/dist/esm/internal/AnyCatcher.js.map +0 -1
  1207. package/tools/installer/node_modules/rxjs/dist/esm/internal/AsyncSubject.js +0 -34
  1208. package/tools/installer/node_modules/rxjs/dist/esm/internal/AsyncSubject.js.map +0 -1
  1209. package/tools/installer/node_modules/rxjs/dist/esm/internal/BehaviorSubject.js +0 -27
  1210. package/tools/installer/node_modules/rxjs/dist/esm/internal/BehaviorSubject.js.map +0 -1
  1211. package/tools/installer/node_modules/rxjs/dist/esm/internal/Notification.js +0 -70
  1212. package/tools/installer/node_modules/rxjs/dist/esm/internal/Notification.js.map +0 -1
  1213. package/tools/installer/node_modules/rxjs/dist/esm/internal/NotificationFactories.js +0 -15
  1214. package/tools/installer/node_modules/rxjs/dist/esm/internal/NotificationFactories.js.map +0 -1
  1215. package/tools/installer/node_modules/rxjs/dist/esm/internal/Observable.js +0 -93
  1216. package/tools/installer/node_modules/rxjs/dist/esm/internal/Observable.js.map +0 -1
  1217. package/tools/installer/node_modules/rxjs/dist/esm/internal/Operator.js +0 -2
  1218. package/tools/installer/node_modules/rxjs/dist/esm/internal/Operator.js.map +0 -1
  1219. package/tools/installer/node_modules/rxjs/dist/esm/internal/ReplaySubject.js +0 -50
  1220. package/tools/installer/node_modules/rxjs/dist/esm/internal/ReplaySubject.js.map +0 -1
  1221. package/tools/installer/node_modules/rxjs/dist/esm/internal/Scheduler.js +0 -12
  1222. package/tools/installer/node_modules/rxjs/dist/esm/internal/Scheduler.js.map +0 -1
  1223. package/tools/installer/node_modules/rxjs/dist/esm/internal/Subject.js +0 -134
  1224. package/tools/installer/node_modules/rxjs/dist/esm/internal/Subject.js.map +0 -1
  1225. package/tools/installer/node_modules/rxjs/dist/esm/internal/Subscriber.js +0 -174
  1226. package/tools/installer/node_modules/rxjs/dist/esm/internal/Subscriber.js.map +0 -1
  1227. package/tools/installer/node_modules/rxjs/dist/esm/internal/Subscription.js +0 -119
  1228. package/tools/installer/node_modules/rxjs/dist/esm/internal/Subscription.js.map +0 -1
  1229. package/tools/installer/node_modules/rxjs/dist/esm/internal/ajax/AjaxResponse.js +0 -26
  1230. package/tools/installer/node_modules/rxjs/dist/esm/internal/ajax/AjaxResponse.js.map +0 -1
  1231. package/tools/installer/node_modules/rxjs/dist/esm/internal/ajax/ajax.js +0 -236
  1232. package/tools/installer/node_modules/rxjs/dist/esm/internal/ajax/ajax.js.map +0 -1
  1233. package/tools/installer/node_modules/rxjs/dist/esm/internal/ajax/errors.js +0 -28
  1234. package/tools/installer/node_modules/rxjs/dist/esm/internal/ajax/errors.js.map +0 -1
  1235. package/tools/installer/node_modules/rxjs/dist/esm/internal/ajax/getXHRResponse.js +0 -26
  1236. package/tools/installer/node_modules/rxjs/dist/esm/internal/ajax/getXHRResponse.js.map +0 -1
  1237. package/tools/installer/node_modules/rxjs/dist/esm/internal/ajax/types.js +0 -2
  1238. package/tools/installer/node_modules/rxjs/dist/esm/internal/ajax/types.js.map +0 -1
  1239. package/tools/installer/node_modules/rxjs/dist/esm/internal/config.js +0 -8
  1240. package/tools/installer/node_modules/rxjs/dist/esm/internal/config.js.map +0 -1
  1241. package/tools/installer/node_modules/rxjs/dist/esm/internal/firstValueFrom.js +0 -24
  1242. package/tools/installer/node_modules/rxjs/dist/esm/internal/firstValueFrom.js.map +0 -1
  1243. package/tools/installer/node_modules/rxjs/dist/esm/internal/lastValueFrom.js +0 -27
  1244. package/tools/installer/node_modules/rxjs/dist/esm/internal/lastValueFrom.js.map +0 -1
  1245. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/ConnectableObservable.js +0 -57
  1246. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/ConnectableObservable.js.map +0 -1
  1247. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/bindCallback.js +0 -5
  1248. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/bindCallback.js.map +0 -1
  1249. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/bindCallbackInternals.js +0 -62
  1250. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/bindCallbackInternals.js.map +0 -1
  1251. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/bindNodeCallback.js +0 -5
  1252. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/bindNodeCallback.js.map +0 -1
  1253. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/combineLatest.js +0 -62
  1254. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/combineLatest.js.map +0 -1
  1255. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/concat.js +0 -7
  1256. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/concat.js.map +0 -1
  1257. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/connectable.js +0 -26
  1258. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/connectable.js.map +0 -1
  1259. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/defer.js +0 -8
  1260. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/defer.js.map +0 -1
  1261. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/dom/WebSocketSubject.js +0 -214
  1262. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/dom/WebSocketSubject.js.map +0 -1
  1263. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/dom/animationFrames.js +0 -34
  1264. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/dom/animationFrames.js.map +0 -1
  1265. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/dom/fetch.js +0 -53
  1266. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/dom/fetch.js.map +0 -1
  1267. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/dom/webSocket.js +0 -5
  1268. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/dom/webSocket.js.map +0 -1
  1269. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/empty.js +0 -9
  1270. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/empty.js.map +0 -1
  1271. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/forkJoin.js +0 -40
  1272. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/forkJoin.js.map +0 -1
  1273. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/from.js +0 -6
  1274. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/from.js.map +0 -1
  1275. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/fromEvent.js +0 -52
  1276. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/fromEvent.js.map +0 -1
  1277. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/fromEventPattern.js +0 -14
  1278. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/fromEventPattern.js.map +0 -1
  1279. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/fromSubscribable.js +0 -5
  1280. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/fromSubscribable.js.map +0 -1
  1281. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/generate.js +0 -38
  1282. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/generate.js.map +0 -1
  1283. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/iif.js +0 -5
  1284. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/iif.js.map +0 -1
  1285. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/innerFrom.js +0 -110
  1286. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/innerFrom.js.map +0 -1
  1287. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/interval.js +0 -9
  1288. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/interval.js.map +0 -1
  1289. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/merge.js +0 -19
  1290. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/merge.js.map +0 -1
  1291. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/never.js +0 -7
  1292. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/never.js.map +0 -1
  1293. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/of.js +0 -7
  1294. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/of.js.map +0 -1
  1295. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/onErrorResumeNext.js +0 -31
  1296. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/onErrorResumeNext.js.map +0 -1
  1297. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/pairs.js +0 -5
  1298. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/pairs.js.map +0 -1
  1299. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/partition.js +0 -7
  1300. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/partition.js.map +0 -1
  1301. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/race.js +0 -25
  1302. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/race.js.map +0 -1
  1303. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/range.js +0 -35
  1304. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/range.js.map +0 -1
  1305. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/throwError.js +0 -8
  1306. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/throwError.js.map +0 -1
  1307. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/timer.js +0 -34
  1308. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/timer.js.map +0 -1
  1309. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/using.js +0 -17
  1310. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/using.js.map +0 -1
  1311. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/zip.js +0 -38
  1312. package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/zip.js.map +0 -1
  1313. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/OperatorSubscriber.js +0 -56
  1314. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/OperatorSubscriber.js.map +0 -1
  1315. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/audit.js +0 -37
  1316. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/audit.js.map +0 -1
  1317. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/auditTime.js +0 -7
  1318. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/auditTime.js.map +0 -1
  1319. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/buffer.js +0 -22
  1320. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/buffer.js.map +0 -1
  1321. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/bufferCount.js +0 -37
  1322. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/bufferCount.js.map +0 -1
  1323. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/bufferTime.js +0 -61
  1324. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/bufferTime.js.map +0 -1
  1325. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/bufferToggle.js +0 -33
  1326. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/bufferToggle.js.map +0 -1
  1327. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/bufferWhen.js +0 -23
  1328. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/bufferWhen.js.map +0 -1
  1329. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/catchError.js +0 -27
  1330. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/catchError.js.map +0 -1
  1331. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/combineAll.js +0 -3
  1332. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/combineAll.js.map +0 -1
  1333. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/combineLatest.js +0 -15
  1334. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/combineLatest.js.map +0 -1
  1335. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/combineLatestAll.js +0 -6
  1336. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/combineLatestAll.js.map +0 -1
  1337. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/combineLatestWith.js +0 -5
  1338. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/combineLatestWith.js.map +0 -1
  1339. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/concat.js +0 -11
  1340. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/concat.js.map +0 -1
  1341. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/concatAll.js +0 -5
  1342. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/concatAll.js.map +0 -1
  1343. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/concatMap.js +0 -6
  1344. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/concatMap.js.map +0 -1
  1345. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/concatMapTo.js +0 -6
  1346. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/concatMapTo.js.map +0 -1
  1347. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/concatWith.js +0 -5
  1348. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/concatWith.js.map +0 -1
  1349. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/connect.js +0 -16
  1350. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/connect.js.map +0 -1
  1351. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/count.js +0 -5
  1352. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/count.js.map +0 -1
  1353. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/debounce.js +0 -34
  1354. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/debounce.js.map +0 -1
  1355. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/debounceTime.js +0 -43
  1356. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/debounceTime.js.map +0 -1
  1357. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/defaultIfEmpty.js +0 -17
  1358. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/defaultIfEmpty.js.map +0 -1
  1359. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/delay.js +0 -8
  1360. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/delay.js.map +0 -1
  1361. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/delayWhen.js +0 -13
  1362. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/delayWhen.js.map +0 -1
  1363. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/dematerialize.js +0 -9
  1364. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/dematerialize.js.map +0 -1
  1365. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/distinct.js +0 -18
  1366. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/distinct.js.map +0 -1
  1367. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/distinctUntilChanged.js +0 -22
  1368. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/distinctUntilChanged.js.map +0 -1
  1369. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/distinctUntilKeyChanged.js +0 -5
  1370. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/distinctUntilKeyChanged.js.map +0 -1
  1371. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/elementAt.js +0 -13
  1372. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/elementAt.js.map +0 -1
  1373. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/endWith.js +0 -6
  1374. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/endWith.js.map +0 -1
  1375. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/every.js +0 -17
  1376. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/every.js.map +0 -1
  1377. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/exhaust.js +0 -3
  1378. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/exhaust.js.map +0 -1
  1379. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/exhaustAll.js +0 -6
  1380. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/exhaustAll.js.map +0 -1
  1381. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/exhaustMap.js +0 -27
  1382. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/exhaustMap.js.map +0 -1
  1383. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/expand.js +0 -7
  1384. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/expand.js.map +0 -1
  1385. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/filter.js +0 -9
  1386. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/filter.js.map +0 -1
  1387. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/finalize.js +0 -12
  1388. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/finalize.js.map +0 -1
  1389. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/find.js +0 -22
  1390. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/find.js.map +0 -1
  1391. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/findIndex.js +0 -6
  1392. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/findIndex.js.map +0 -1
  1393. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/first.js +0 -11
  1394. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/first.js.map +0 -1
  1395. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/flatMap.js +0 -3
  1396. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/flatMap.js.map +0 -1
  1397. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/groupBy.js +0 -63
  1398. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/groupBy.js.map +0 -1
  1399. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/ignoreElements.js +0 -9
  1400. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/ignoreElements.js.map +0 -1
  1401. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/isEmpty.js +0 -14
  1402. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/isEmpty.js.map +0 -1
  1403. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/joinAllInternals.js +0 -9
  1404. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/joinAllInternals.js.map +0 -1
  1405. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/last.js +0 -11
  1406. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/last.js.map +0 -1
  1407. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/map.js +0 -11
  1408. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/map.js.map +0 -1
  1409. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/mapTo.js +0 -5
  1410. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/mapTo.js.map +0 -1
  1411. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/materialize.js +0 -17
  1412. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/materialize.js.map +0 -1
  1413. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/max.js +0 -6
  1414. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/max.js.map +0 -1
  1415. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/merge.js +0 -12
  1416. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/merge.js.map +0 -1
  1417. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/mergeAll.js +0 -6
  1418. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/mergeAll.js.map +0 -1
  1419. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/mergeInternals.js +0 -58
  1420. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/mergeInternals.js.map +0 -1
  1421. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/mergeMap.js +0 -15
  1422. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/mergeMap.js.map +0 -1
  1423. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/mergeMapTo.js +0 -12
  1424. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/mergeMapTo.js.map +0 -1
  1425. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/mergeScan.js +0 -11
  1426. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/mergeScan.js.map +0 -1
  1427. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/mergeWith.js +0 -5
  1428. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/mergeWith.js.map +0 -1
  1429. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/min.js +0 -6
  1430. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/min.js.map +0 -1
  1431. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/multicast.js +0 -13
  1432. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/multicast.js.map +0 -1
  1433. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/observeOn.js +0 -9
  1434. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/observeOn.js.map +0 -1
  1435. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/onErrorResumeNextWith.js +0 -8
  1436. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/onErrorResumeNextWith.js.map +0 -1
  1437. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/pairwise.js +0 -15
  1438. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/pairwise.js.map +0 -1
  1439. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/partition.js +0 -6
  1440. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/partition.js.map +0 -1
  1441. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/pluck.js +0 -21
  1442. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/pluck.js.map +0 -1
  1443. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/publish.js +0 -7
  1444. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/publish.js.map +0 -1
  1445. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/publishBehavior.js +0 -9
  1446. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/publishBehavior.js.map +0 -1
  1447. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/publishLast.js +0 -9
  1448. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/publishLast.js.map +0 -1
  1449. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/publishReplay.js +0 -11
  1450. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/publishReplay.js.map +0 -1
  1451. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/race.js +0 -6
  1452. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/race.js.map +0 -1
  1453. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/raceWith.js +0 -11
  1454. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/raceWith.js.map +0 -1
  1455. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/reduce.js +0 -6
  1456. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/reduce.js.map +0 -1
  1457. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/refCount.js +0 -26
  1458. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/refCount.js.map +0 -1
  1459. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/repeat.js +0 -59
  1460. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/repeat.js.map +0 -1
  1461. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/repeatWhen.js +0 -46
  1462. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/repeatWhen.js.map +0 -1
  1463. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/retry.js +0 -68
  1464. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/retry.js.map +0 -1
  1465. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/retryWhen.js +0 -30
  1466. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/retryWhen.js.map +0 -1
  1467. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/sample.js +0 -23
  1468. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/sample.js.map +0 -1
  1469. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/sampleTime.js +0 -7
  1470. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/sampleTime.js.map +0 -1
  1471. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/scan.js +0 -6
  1472. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/scan.js.map +0 -1
  1473. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/scanInternals.js +0 -22
  1474. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/scanInternals.js.map +0 -1
  1475. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/sequenceEqual.js +0 -39
  1476. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/sequenceEqual.js.map +0 -1
  1477. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/share.js +0 -79
  1478. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/share.js.map +0 -1
  1479. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/shareReplay.js +0 -19
  1480. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/shareReplay.js.map +0 -1
  1481. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/single.js +0 -30
  1482. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/single.js.map +0 -1
  1483. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/skip.js +0 -5
  1484. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/skip.js.map +0 -1
  1485. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/skipLast.js +0 -28
  1486. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/skipLast.js.map +0 -1
  1487. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/skipUntil.js +0 -16
  1488. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/skipUntil.js.map +0 -1
  1489. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/skipWhile.js +0 -10
  1490. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/skipWhile.js.map +0 -1
  1491. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/startWith.js +0 -10
  1492. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/startWith.js.map +0 -1
  1493. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/subscribeOn.js +0 -7
  1494. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/subscribeOn.js.map +0 -1
  1495. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/switchAll.js +0 -6
  1496. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/switchAll.js.map +0 -1
  1497. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/switchMap.js +0 -24
  1498. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/switchMap.js.map +0 -1
  1499. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/switchMapTo.js +0 -6
  1500. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/switchMapTo.js.map +0 -1
  1501. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/switchScan.js +0 -12
  1502. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/switchScan.js.map +0 -1
  1503. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/take.js +0 -20
  1504. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/take.js.map +0 -1
  1505. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/takeLast.js +0 -22
  1506. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/takeLast.js.map +0 -1
  1507. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/takeUntil.js +0 -11
  1508. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/takeUntil.js.map +0 -1
  1509. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/takeWhile.js +0 -13
  1510. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/takeWhile.js.map +0 -1
  1511. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/tap.js +0 -40
  1512. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/tap.js.map +0 -1
  1513. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/throttle.js +0 -43
  1514. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/throttle.js.map +0 -1
  1515. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/throttleTime.js +0 -8
  1516. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/throttleTime.js.map +0 -1
  1517. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/throwIfEmpty.js +0 -16
  1518. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/throwIfEmpty.js.map +0 -1
  1519. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/timeInterval.js +0 -21
  1520. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/timeInterval.js.map +0 -1
  1521. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/timeout.js +0 -56
  1522. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/timeout.js.map +0 -1
  1523. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/timeoutWith.js +0 -31
  1524. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/timeoutWith.js.map +0 -1
  1525. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/timestamp.js +0 -6
  1526. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/timestamp.js.map +0 -1
  1527. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/toArray.js +0 -9
  1528. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/toArray.js.map +0 -1
  1529. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/window.js +0 -28
  1530. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/window.js.map +0 -1
  1531. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/windowCount.js +0 -40
  1532. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/windowCount.js.map +0 -1
  1533. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/windowTime.js +0 -63
  1534. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/windowTime.js.map +0 -1
  1535. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/windowToggle.js +0 -54
  1536. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/windowToggle.js.map +0 -1
  1537. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/windowWhen.js +0 -38
  1538. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/windowWhen.js.map +0 -1
  1539. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/withLatestFrom.js +0 -31
  1540. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/withLatestFrom.js.map +0 -1
  1541. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/zip.js +0 -8
  1542. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/zip.js.map +0 -1
  1543. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/zipAll.js +0 -6
  1544. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/zipAll.js.map +0 -1
  1545. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/zipWith.js +0 -5
  1546. package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/zipWith.js.map +0 -1
  1547. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduled/scheduleArray.js +0 -18
  1548. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduled/scheduleArray.js.map +0 -1
  1549. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduled/scheduleAsyncIterable.js +0 -23
  1550. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduled/scheduleAsyncIterable.js.map +0 -1
  1551. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduled/scheduleIterable.js +0 -31
  1552. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduled/scheduleIterable.js.map +0 -1
  1553. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduled/scheduleObservable.js +0 -7
  1554. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduled/scheduleObservable.js.map +0 -1
  1555. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduled/schedulePromise.js +0 -7
  1556. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduled/schedulePromise.js.map +0 -1
  1557. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduled/scheduleReadableStreamLike.js +0 -6
  1558. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduled/scheduleReadableStreamLike.js.map +0 -1
  1559. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduled/scheduled.js +0 -37
  1560. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduled/scheduled.js.map +0 -1
  1561. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/Action.js +0 -10
  1562. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/Action.js.map +0 -1
  1563. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/AnimationFrameAction.js +0 -29
  1564. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/AnimationFrameAction.js.map +0 -1
  1565. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/AnimationFrameScheduler.js +0 -30
  1566. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/AnimationFrameScheduler.js.map +0 -1
  1567. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/AsapAction.js +0 -31
  1568. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/AsapAction.js.map +0 -1
  1569. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/AsapScheduler.js +0 -24
  1570. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/AsapScheduler.js.map +0 -1
  1571. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/AsyncAction.js +0 -82
  1572. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/AsyncAction.js.map +0 -1
  1573. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/AsyncScheduler.js +0 -30
  1574. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/AsyncScheduler.js.map +0 -1
  1575. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/QueueAction.js +0 -28
  1576. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/QueueAction.js.map +0 -1
  1577. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/QueueScheduler.js +0 -4
  1578. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/QueueScheduler.js.map +0 -1
  1579. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/VirtualTimeScheduler.js +0 -89
  1580. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/VirtualTimeScheduler.js.map +0 -1
  1581. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/animationFrame.js +0 -5
  1582. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/animationFrame.js.map +0 -1
  1583. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/animationFrameProvider.js +0 -27
  1584. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/animationFrameProvider.js.map +0 -1
  1585. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/asap.js +0 -5
  1586. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/asap.js.map +0 -1
  1587. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/async.js +0 -5
  1588. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/async.js.map +0 -1
  1589. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/dateTimestampProvider.js +0 -7
  1590. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/dateTimestampProvider.js.map +0 -1
  1591. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/immediateProvider.js +0 -14
  1592. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/immediateProvider.js.map +0 -1
  1593. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/intervalProvider.js +0 -15
  1594. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/intervalProvider.js.map +0 -1
  1595. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/performanceTimestampProvider.js +0 -7
  1596. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/performanceTimestampProvider.js.map +0 -1
  1597. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/queue.js +0 -5
  1598. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/queue.js.map +0 -1
  1599. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/timeoutProvider.js +0 -15
  1600. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/timeoutProvider.js.map +0 -1
  1601. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/timerHandle.js +0 -2
  1602. package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/timerHandle.js.map +0 -1
  1603. package/tools/installer/node_modules/rxjs/dist/esm/internal/symbol/iterator.js +0 -8
  1604. package/tools/installer/node_modules/rxjs/dist/esm/internal/symbol/iterator.js.map +0 -1
  1605. package/tools/installer/node_modules/rxjs/dist/esm/internal/symbol/observable.js +0 -2
  1606. package/tools/installer/node_modules/rxjs/dist/esm/internal/symbol/observable.js.map +0 -1
  1607. package/tools/installer/node_modules/rxjs/dist/esm/internal/testing/ColdObservable.js +0 -34
  1608. package/tools/installer/node_modules/rxjs/dist/esm/internal/testing/ColdObservable.js.map +0 -1
  1609. package/tools/installer/node_modules/rxjs/dist/esm/internal/testing/HotObservable.js +0 -37
  1610. package/tools/installer/node_modules/rxjs/dist/esm/internal/testing/HotObservable.js.map +0 -1
  1611. package/tools/installer/node_modules/rxjs/dist/esm/internal/testing/SubscriptionLog.js +0 -7
  1612. package/tools/installer/node_modules/rxjs/dist/esm/internal/testing/SubscriptionLog.js.map +0 -1
  1613. package/tools/installer/node_modules/rxjs/dist/esm/internal/testing/SubscriptionLoggable.js +0 -16
  1614. package/tools/installer/node_modules/rxjs/dist/esm/internal/testing/SubscriptionLoggable.js.map +0 -1
  1615. package/tools/installer/node_modules/rxjs/dist/esm/internal/testing/TestMessage.js +0 -2
  1616. package/tools/installer/node_modules/rxjs/dist/esm/internal/testing/TestMessage.js.map +0 -1
  1617. package/tools/installer/node_modules/rxjs/dist/esm/internal/testing/TestScheduler.js +0 -505
  1618. package/tools/installer/node_modules/rxjs/dist/esm/internal/testing/TestScheduler.js.map +0 -1
  1619. package/tools/installer/node_modules/rxjs/dist/esm/internal/types.js +0 -2
  1620. package/tools/installer/node_modules/rxjs/dist/esm/internal/types.js.map +0 -1
  1621. package/tools/installer/node_modules/rxjs/dist/esm/internal/umd.js +0 -12
  1622. package/tools/installer/node_modules/rxjs/dist/esm/internal/umd.js.map +0 -1
  1623. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/ArgumentOutOfRangeError.js +0 -7
  1624. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/ArgumentOutOfRangeError.js.map +0 -1
  1625. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/EmptyError.js +0 -7
  1626. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/EmptyError.js.map +0 -1
  1627. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/Immediate.js +0 -30
  1628. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/Immediate.js.map +0 -1
  1629. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/NotFoundError.js +0 -7
  1630. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/NotFoundError.js.map +0 -1
  1631. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/ObjectUnsubscribedError.js +0 -7
  1632. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/ObjectUnsubscribedError.js.map +0 -1
  1633. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/SequenceError.js +0 -7
  1634. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/SequenceError.js.map +0 -1
  1635. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/UnsubscriptionError.js +0 -11
  1636. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/UnsubscriptionError.js.map +0 -1
  1637. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/applyMixins.js +0 -11
  1638. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/applyMixins.js.map +0 -1
  1639. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/args.js +0 -15
  1640. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/args.js.map +0 -1
  1641. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/argsArgArrayOrObject.js +0 -22
  1642. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/argsArgArrayOrObject.js.map +0 -1
  1643. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/argsOrArgArray.js +0 -5
  1644. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/argsOrArgArray.js.map +0 -1
  1645. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/arrRemove.js +0 -7
  1646. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/arrRemove.js.map +0 -1
  1647. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/createErrorClass.js +0 -11
  1648. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/createErrorClass.js.map +0 -1
  1649. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/createObject.js +0 -4
  1650. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/createObject.js.map +0 -1
  1651. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/errorContext.js +0 -28
  1652. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/errorContext.js.map +0 -1
  1653. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/executeSchedule.js +0 -16
  1654. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/executeSchedule.js.map +0 -1
  1655. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/identity.js +0 -4
  1656. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/identity.js.map +0 -1
  1657. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/isArrayLike.js +0 -2
  1658. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/isArrayLike.js.map +0 -1
  1659. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/isAsyncIterable.js +0 -5
  1660. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/isAsyncIterable.js.map +0 -1
  1661. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/isDate.js +0 -4
  1662. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/isDate.js.map +0 -1
  1663. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/isFunction.js +0 -4
  1664. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/isFunction.js.map +0 -1
  1665. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/isInteropObservable.js +0 -6
  1666. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/isInteropObservable.js.map +0 -1
  1667. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/isIterable.js +0 -6
  1668. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/isIterable.js.map +0 -1
  1669. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/isObservable.js +0 -6
  1670. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/isObservable.js.map +0 -1
  1671. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/isPromise.js +0 -5
  1672. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/isPromise.js.map +0 -1
  1673. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/isReadableStreamLike.js +0 -23
  1674. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/isReadableStreamLike.js.map +0 -1
  1675. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/isScheduler.js +0 -5
  1676. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/isScheduler.js.map +0 -1
  1677. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/lift.js +0 -20
  1678. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/lift.js.map +0 -1
  1679. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/mapOneOrManyArgs.js +0 -9
  1680. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/mapOneOrManyArgs.js.map +0 -1
  1681. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/noop.js +0 -2
  1682. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/noop.js.map +0 -1
  1683. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/not.js +0 -4
  1684. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/not.js.map +0 -1
  1685. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/pipe.js +0 -16
  1686. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/pipe.js.map +0 -1
  1687. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/reportUnhandledError.js +0 -14
  1688. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/reportUnhandledError.js.map +0 -1
  1689. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/subscribeToArray.js +0 -7
  1690. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/subscribeToArray.js.map +0 -1
  1691. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/throwUnobservableError.js +0 -4
  1692. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/throwUnobservableError.js.map +0 -1
  1693. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/workarounds.js +0 -2
  1694. package/tools/installer/node_modules/rxjs/dist/esm/internal/util/workarounds.js.map +0 -1
  1695. package/tools/installer/node_modules/rxjs/dist/esm/operators/index.js +0 -114
  1696. package/tools/installer/node_modules/rxjs/dist/esm/operators/index.js.map +0 -1
  1697. package/tools/installer/node_modules/rxjs/dist/esm/testing/index.js +0 -2
  1698. package/tools/installer/node_modules/rxjs/dist/esm/testing/index.js.map +0 -1
  1699. package/tools/installer/node_modules/rxjs/dist/esm/webSocket/index.js +0 -3
  1700. package/tools/installer/node_modules/rxjs/dist/esm/webSocket/index.js.map +0 -1
  1701. package/tools/installer/node_modules/rxjs/dist/esm5/ajax/index.js +0 -4
  1702. package/tools/installer/node_modules/rxjs/dist/esm5/ajax/index.js.map +0 -1
  1703. package/tools/installer/node_modules/rxjs/dist/esm5/fetch/index.js +0 -2
  1704. package/tools/installer/node_modules/rxjs/dist/esm5/fetch/index.js.map +0 -1
  1705. package/tools/installer/node_modules/rxjs/dist/esm5/index.js +0 -169
  1706. package/tools/installer/node_modules/rxjs/dist/esm5/index.js.map +0 -1
  1707. package/tools/installer/node_modules/rxjs/dist/esm5/internal/AnyCatcher.js +0 -2
  1708. package/tools/installer/node_modules/rxjs/dist/esm5/internal/AnyCatcher.js.map +0 -1
  1709. package/tools/installer/node_modules/rxjs/dist/esm5/internal/AsyncSubject.js +0 -39
  1710. package/tools/installer/node_modules/rxjs/dist/esm5/internal/AsyncSubject.js.map +0 -1
  1711. package/tools/installer/node_modules/rxjs/dist/esm5/internal/BehaviorSubject.js +0 -36
  1712. package/tools/installer/node_modules/rxjs/dist/esm5/internal/BehaviorSubject.js.map +0 -1
  1713. package/tools/installer/node_modules/rxjs/dist/esm5/internal/Notification.js +0 -72
  1714. package/tools/installer/node_modules/rxjs/dist/esm5/internal/Notification.js.map +0 -1
  1715. package/tools/installer/node_modules/rxjs/dist/esm5/internal/NotificationFactories.js +0 -15
  1716. package/tools/installer/node_modules/rxjs/dist/esm5/internal/NotificationFactories.js.map +0 -1
  1717. package/tools/installer/node_modules/rxjs/dist/esm5/internal/Observable.js +0 -102
  1718. package/tools/installer/node_modules/rxjs/dist/esm5/internal/Observable.js.map +0 -1
  1719. package/tools/installer/node_modules/rxjs/dist/esm5/internal/Operator.js +0 -2
  1720. package/tools/installer/node_modules/rxjs/dist/esm5/internal/Operator.js.map +0 -1
  1721. package/tools/installer/node_modules/rxjs/dist/esm5/internal/ReplaySubject.js +0 -58
  1722. package/tools/installer/node_modules/rxjs/dist/esm5/internal/ReplaySubject.js.map +0 -1
  1723. package/tools/installer/node_modules/rxjs/dist/esm5/internal/Scheduler.js +0 -16
  1724. package/tools/installer/node_modules/rxjs/dist/esm5/internal/Scheduler.js.map +0 -1
  1725. package/tools/installer/node_modules/rxjs/dist/esm5/internal/Subject.js +0 -162
  1726. package/tools/installer/node_modules/rxjs/dist/esm5/internal/Subject.js.map +0 -1
  1727. package/tools/installer/node_modules/rxjs/dist/esm5/internal/Subscriber.js +0 -184
  1728. package/tools/installer/node_modules/rxjs/dist/esm5/internal/Subscriber.js.map +0 -1
  1729. package/tools/installer/node_modules/rxjs/dist/esm5/internal/Subscription.js +0 -143
  1730. package/tools/installer/node_modules/rxjs/dist/esm5/internal/Subscription.js.map +0 -1
  1731. package/tools/installer/node_modules/rxjs/dist/esm5/internal/ajax/AjaxResponse.js +0 -29
  1732. package/tools/installer/node_modules/rxjs/dist/esm5/internal/ajax/AjaxResponse.js.map +0 -1
  1733. package/tools/installer/node_modules/rxjs/dist/esm5/internal/ajax/ajax.js +0 -239
  1734. package/tools/installer/node_modules/rxjs/dist/esm5/internal/ajax/ajax.js.map +0 -1
  1735. package/tools/installer/node_modules/rxjs/dist/esm5/internal/ajax/errors.js +0 -30
  1736. package/tools/installer/node_modules/rxjs/dist/esm5/internal/ajax/errors.js.map +0 -1
  1737. package/tools/installer/node_modules/rxjs/dist/esm5/internal/ajax/getXHRResponse.js +0 -26
  1738. package/tools/installer/node_modules/rxjs/dist/esm5/internal/ajax/getXHRResponse.js.map +0 -1
  1739. package/tools/installer/node_modules/rxjs/dist/esm5/internal/ajax/types.js +0 -2
  1740. package/tools/installer/node_modules/rxjs/dist/esm5/internal/ajax/types.js.map +0 -1
  1741. package/tools/installer/node_modules/rxjs/dist/esm5/internal/config.js +0 -8
  1742. package/tools/installer/node_modules/rxjs/dist/esm5/internal/config.js.map +0 -1
  1743. package/tools/installer/node_modules/rxjs/dist/esm5/internal/firstValueFrom.js +0 -24
  1744. package/tools/installer/node_modules/rxjs/dist/esm5/internal/firstValueFrom.js.map +0 -1
  1745. package/tools/installer/node_modules/rxjs/dist/esm5/internal/lastValueFrom.js +0 -27
  1746. package/tools/installer/node_modules/rxjs/dist/esm5/internal/lastValueFrom.js.map +0 -1
  1747. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/ConnectableObservable.js +0 -63
  1748. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/ConnectableObservable.js.map +0 -1
  1749. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/bindCallback.js +0 -5
  1750. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/bindCallback.js.map +0 -1
  1751. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/bindCallbackInternals.js +0 -79
  1752. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/bindCallbackInternals.js.map +0 -1
  1753. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/bindNodeCallback.js +0 -5
  1754. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/bindNodeCallback.js.map +0 -1
  1755. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/combineLatest.js +0 -70
  1756. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/combineLatest.js.map +0 -1
  1757. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/concat.js +0 -11
  1758. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/concat.js.map +0 -1
  1759. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/connectable.js +0 -27
  1760. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/connectable.js.map +0 -1
  1761. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/defer.js +0 -8
  1762. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/defer.js.map +0 -1
  1763. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/dom/WebSocketSubject.js +0 -221
  1764. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/dom/WebSocketSubject.js.map +0 -1
  1765. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/dom/animationFrames.js +0 -34
  1766. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/dom/animationFrames.js.map +0 -1
  1767. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/dom/fetch.js +0 -54
  1768. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/dom/fetch.js.map +0 -1
  1769. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/dom/webSocket.js +0 -5
  1770. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/dom/webSocket.js.map +0 -1
  1771. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/empty.js +0 -9
  1772. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/empty.js.map +0 -1
  1773. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/forkJoin.js +0 -47
  1774. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/forkJoin.js.map +0 -1
  1775. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/from.js +0 -6
  1776. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/from.js.map +0 -1
  1777. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/fromEvent.js +0 -59
  1778. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/fromEvent.js.map +0 -1
  1779. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/fromEventPattern.js +0 -20
  1780. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/fromEventPattern.js.map +0 -1
  1781. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/fromSubscribable.js +0 -5
  1782. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/fromSubscribable.js.map +0 -1
  1783. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/generate.js +0 -49
  1784. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/generate.js.map +0 -1
  1785. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/iif.js +0 -5
  1786. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/iif.js.map +0 -1
  1787. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/innerFrom.js +0 -143
  1788. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/innerFrom.js.map +0 -1
  1789. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/interval.js +0 -11
  1790. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/interval.js.map +0 -1
  1791. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/merge.js +0 -23
  1792. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/merge.js.map +0 -1
  1793. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/never.js +0 -7
  1794. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/never.js.map +0 -1
  1795. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/of.js +0 -11
  1796. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/of.js.map +0 -1
  1797. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/onErrorResumeNext.js +0 -35
  1798. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/onErrorResumeNext.js.map +0 -1
  1799. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/pairs.js +0 -5
  1800. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/pairs.js.map +0 -1
  1801. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/partition.js +0 -7
  1802. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/partition.js.map +0 -1
  1803. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/race.js +0 -32
  1804. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/race.js.map +0 -1
  1805. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/range.js +0 -35
  1806. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/range.js.map +0 -1
  1807. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/throwError.js +0 -8
  1808. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/throwError.js.map +0 -1
  1809. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/timer.js +0 -36
  1810. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/timer.js.map +0 -1
  1811. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/using.js +0 -17
  1812. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/using.js.map +0 -1
  1813. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/zip.js +0 -46
  1814. package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/zip.js.map +0 -1
  1815. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/OperatorSubscriber.js +0 -61
  1816. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/OperatorSubscriber.js.map +0 -1
  1817. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/audit.js +0 -37
  1818. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/audit.js.map +0 -1
  1819. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/auditTime.js +0 -8
  1820. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/auditTime.js.map +0 -1
  1821. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/buffer.js +0 -22
  1822. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/buffer.js.map +0 -1
  1823. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/bufferCount.js +0 -71
  1824. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/bufferCount.js.map +0 -1
  1825. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/bufferTime.js +0 -77
  1826. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/bufferTime.js.map +0 -1
  1827. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/bufferToggle.js +0 -45
  1828. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/bufferToggle.js.map +0 -1
  1829. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/bufferWhen.js +0 -23
  1830. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/bufferWhen.js.map +0 -1
  1831. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/catchError.js +0 -27
  1832. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/catchError.js.map +0 -1
  1833. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/combineAll.js +0 -3
  1834. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/combineAll.js.map +0 -1
  1835. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/combineLatest.js +0 -20
  1836. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/combineLatest.js.map +0 -1
  1837. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/combineLatestAll.js +0 -6
  1838. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/combineLatestAll.js.map +0 -1
  1839. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/combineLatestWith.js +0 -10
  1840. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/combineLatestWith.js.map +0 -1
  1841. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/concat.js +0 -16
  1842. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/concat.js.map +0 -1
  1843. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/concatAll.js +0 -5
  1844. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/concatAll.js.map +0 -1
  1845. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/concatMap.js +0 -6
  1846. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/concatMap.js.map +0 -1
  1847. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/concatMapTo.js +0 -6
  1848. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/concatMapTo.js.map +0 -1
  1849. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/concatWith.js +0 -10
  1850. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/concatWith.js.map +0 -1
  1851. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/connect.js +0 -17
  1852. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/connect.js.map +0 -1
  1853. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/count.js +0 -5
  1854. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/count.js.map +0 -1
  1855. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/debounce.js +0 -34
  1856. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/debounce.js.map +0 -1
  1857. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/debounceTime.js +0 -44
  1858. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/debounceTime.js.map +0 -1
  1859. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/defaultIfEmpty.js +0 -17
  1860. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/defaultIfEmpty.js.map +0 -1
  1861. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/delay.js +0 -9
  1862. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/delay.js.map +0 -1
  1863. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/delayWhen.js +0 -15
  1864. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/delayWhen.js.map +0 -1
  1865. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/dematerialize.js +0 -9
  1866. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/dematerialize.js.map +0 -1
  1867. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/distinct.js +0 -18
  1868. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/distinct.js.map +0 -1
  1869. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/distinctUntilChanged.js +0 -23
  1870. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/distinctUntilChanged.js.map +0 -1
  1871. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/distinctUntilKeyChanged.js +0 -5
  1872. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/distinctUntilKeyChanged.js.map +0 -1
  1873. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/elementAt.js +0 -15
  1874. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/elementAt.js.map +0 -1
  1875. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/endWith.js +0 -11
  1876. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/endWith.js.map +0 -1
  1877. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/every.js +0 -17
  1878. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/every.js.map +0 -1
  1879. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/exhaust.js +0 -3
  1880. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/exhaust.js.map +0 -1
  1881. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/exhaustAll.js +0 -6
  1882. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/exhaustAll.js.map +0 -1
  1883. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/exhaustMap.js +0 -29
  1884. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/exhaustMap.js.map +0 -1
  1885. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/expand.js +0 -10
  1886. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/expand.js.map +0 -1
  1887. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/filter.js +0 -9
  1888. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/filter.js.map +0 -1
  1889. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/finalize.js +0 -12
  1890. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/finalize.js.map +0 -1
  1891. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/find.js +0 -22
  1892. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/find.js.map +0 -1
  1893. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/findIndex.js +0 -6
  1894. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/findIndex.js.map +0 -1
  1895. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/first.js +0 -13
  1896. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/first.js.map +0 -1
  1897. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/flatMap.js +0 -3
  1898. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/flatMap.js.map +0 -1
  1899. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/groupBy.js +0 -63
  1900. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/groupBy.js.map +0 -1
  1901. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/ignoreElements.js +0 -9
  1902. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/ignoreElements.js.map +0 -1
  1903. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/isEmpty.js +0 -14
  1904. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/isEmpty.js.map +0 -1
  1905. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/joinAllInternals.js +0 -9
  1906. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/joinAllInternals.js.map +0 -1
  1907. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/last.js +0 -13
  1908. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/last.js.map +0 -1
  1909. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/map.js +0 -11
  1910. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/map.js.map +0 -1
  1911. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/mapTo.js +0 -5
  1912. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/mapTo.js.map +0 -1
  1913. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/materialize.js +0 -17
  1914. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/materialize.js.map +0 -1
  1915. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/max.js +0 -6
  1916. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/max.js.map +0 -1
  1917. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/merge.js +0 -17
  1918. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/merge.js.map +0 -1
  1919. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/mergeAll.js +0 -7
  1920. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/mergeAll.js.map +0 -1
  1921. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/mergeInternals.js +0 -61
  1922. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/mergeInternals.js.map +0 -1
  1923. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/mergeMap.js +0 -16
  1924. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/mergeMap.js.map +0 -1
  1925. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/mergeMapTo.js +0 -13
  1926. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/mergeMapTo.js.map +0 -1
  1927. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/mergeScan.js +0 -12
  1928. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/mergeScan.js.map +0 -1
  1929. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/mergeWith.js +0 -10
  1930. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/mergeWith.js.map +0 -1
  1931. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/min.js +0 -6
  1932. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/min.js.map +0 -1
  1933. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/multicast.js +0 -13
  1934. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/multicast.js.map +0 -1
  1935. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/observeOn.js +0 -10
  1936. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/observeOn.js.map +0 -1
  1937. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/onErrorResumeNextWith.js +0 -13
  1938. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/onErrorResumeNextWith.js.map +0 -1
  1939. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/pairwise.js +0 -15
  1940. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/pairwise.js.map +0 -1
  1941. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/partition.js +0 -8
  1942. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/partition.js.map +0 -1
  1943. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/pluck.js +0 -25
  1944. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/pluck.js.map +0 -1
  1945. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/publish.js +0 -7
  1946. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/publish.js.map +0 -1
  1947. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/publishBehavior.js +0 -9
  1948. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/publishBehavior.js.map +0 -1
  1949. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/publishLast.js +0 -9
  1950. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/publishLast.js.map +0 -1
  1951. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/publishReplay.js +0 -11
  1952. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/publishReplay.js.map +0 -1
  1953. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/race.js +0 -11
  1954. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/race.js.map +0 -1
  1955. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/raceWith.js +0 -16
  1956. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/raceWith.js.map +0 -1
  1957. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/reduce.js +0 -6
  1958. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/reduce.js.map +0 -1
  1959. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/refCount.js +0 -26
  1960. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/refCount.js.map +0 -1
  1961. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/repeat.js +0 -60
  1962. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/repeat.js.map +0 -1
  1963. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/repeatWhen.js +0 -46
  1964. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/repeatWhen.js.map +0 -1
  1965. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/retry.js +0 -69
  1966. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/retry.js.map +0 -1
  1967. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/retryWhen.js +0 -32
  1968. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/retryWhen.js.map +0 -1
  1969. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/sample.js +0 -23
  1970. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/sample.js.map +0 -1
  1971. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/sampleTime.js +0 -8
  1972. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/sampleTime.js.map +0 -1
  1973. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/scan.js +0 -6
  1974. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/scan.js.map +0 -1
  1975. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/scanInternals.js +0 -22
  1976. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/scanInternals.js.map +0 -1
  1977. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/sequenceEqual.js +0 -40
  1978. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/sequenceEqual.js.map +0 -1
  1979. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/share.js +0 -85
  1980. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/share.js.map +0 -1
  1981. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/shareReplay.js +0 -20
  1982. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/shareReplay.js.map +0 -1
  1983. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/single.js +0 -30
  1984. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/single.js.map +0 -1
  1985. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/skip.js +0 -5
  1986. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/skip.js.map +0 -1
  1987. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/skipLast.js +0 -28
  1988. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/skipLast.js.map +0 -1
  1989. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/skipUntil.js +0 -16
  1990. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/skipUntil.js.map +0 -1
  1991. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/skipWhile.js +0 -10
  1992. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/skipWhile.js.map +0 -1
  1993. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/startWith.js +0 -14
  1994. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/startWith.js.map +0 -1
  1995. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/subscribeOn.js +0 -8
  1996. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/subscribeOn.js.map +0 -1
  1997. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/switchAll.js +0 -6
  1998. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/switchAll.js.map +0 -1
  1999. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/switchMap.js +0 -24
  2000. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/switchMap.js.map +0 -1
  2001. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/switchMapTo.js +0 -6
  2002. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/switchMapTo.js.map +0 -1
  2003. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/switchScan.js +0 -12
  2004. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/switchScan.js.map +0 -1
  2005. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/take.js +0 -20
  2006. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/take.js.map +0 -1
  2007. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/takeLast.js +0 -34
  2008. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/takeLast.js.map +0 -1
  2009. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/takeUntil.js +0 -11
  2010. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/takeUntil.js.map +0 -1
  2011. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/takeWhile.js +0 -14
  2012. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/takeWhile.js.map +0 -1
  2013. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/tap.js +0 -40
  2014. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/tap.js.map +0 -1
  2015. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/throttle.js +0 -45
  2016. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/throttle.js.map +0 -1
  2017. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/throttleTime.js +0 -9
  2018. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/throttleTime.js.map +0 -1
  2019. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/throwIfEmpty.js +0 -17
  2020. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/throwIfEmpty.js.map +0 -1
  2021. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/timeInterval.js +0 -24
  2022. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/timeInterval.js.map +0 -1
  2023. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/timeout.js +0 -59
  2024. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/timeout.js.map +0 -1
  2025. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/timeoutWith.js +0 -31
  2026. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/timeoutWith.js.map +0 -1
  2027. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/timestamp.js +0 -7
  2028. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/timestamp.js.map +0 -1
  2029. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/toArray.js +0 -9
  2030. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/toArray.js.map +0 -1
  2031. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/window.js +0 -28
  2032. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/window.js.map +0 -1
  2033. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/windowCount.js +0 -53
  2034. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/windowCount.js.map +0 -1
  2035. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/windowTime.js +0 -70
  2036. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/windowTime.js.map +0 -1
  2037. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/windowToggle.js +0 -66
  2038. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/windowToggle.js.map +0 -1
  2039. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/windowWhen.js +0 -38
  2040. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/windowWhen.js.map +0 -1
  2041. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/withLatestFrom.js +0 -39
  2042. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/withLatestFrom.js.map +0 -1
  2043. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/zip.js +0 -13
  2044. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/zip.js.map +0 -1
  2045. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/zipAll.js +0 -6
  2046. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/zipAll.js.map +0 -1
  2047. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/zipWith.js +0 -10
  2048. package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/zipWith.js.map +0 -1
  2049. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduled/scheduleArray.js +0 -18
  2050. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduled/scheduleArray.js.map +0 -1
  2051. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduled/scheduleAsyncIterable.js +0 -23
  2052. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduled/scheduleAsyncIterable.js.map +0 -1
  2053. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduled/scheduleIterable.js +0 -32
  2054. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduled/scheduleIterable.js.map +0 -1
  2055. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduled/scheduleObservable.js +0 -7
  2056. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduled/scheduleObservable.js.map +0 -1
  2057. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduled/schedulePromise.js +0 -7
  2058. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduled/schedulePromise.js.map +0 -1
  2059. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduled/scheduleReadableStreamLike.js +0 -6
  2060. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduled/scheduleReadableStreamLike.js.map +0 -1
  2061. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduled/scheduled.js +0 -37
  2062. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduled/scheduled.js.map +0 -1
  2063. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/Action.js +0 -15
  2064. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/Action.js.map +0 -1
  2065. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/AnimationFrameAction.js +0 -36
  2066. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/AnimationFrameAction.js.map +0 -1
  2067. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/AnimationFrameScheduler.js +0 -37
  2068. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/AnimationFrameScheduler.js.map +0 -1
  2069. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/AsapAction.js +0 -38
  2070. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/AsapAction.js.map +0 -1
  2071. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/AsapScheduler.js +0 -31
  2072. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/AsapScheduler.js.map +0 -1
  2073. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/AsyncAction.js +0 -90
  2074. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/AsyncAction.js.map +0 -1
  2075. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/AsyncScheduler.js +0 -36
  2076. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/AsyncScheduler.js.map +0 -1
  2077. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/QueueAction.js +0 -35
  2078. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/QueueAction.js.map +0 -1
  2079. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/QueueScheduler.js +0 -11
  2080. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/QueueScheduler.js.map +0 -1
  2081. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/VirtualTimeScheduler.js +0 -104
  2082. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/VirtualTimeScheduler.js.map +0 -1
  2083. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/animationFrame.js +0 -5
  2084. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/animationFrame.js.map +0 -1
  2085. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/animationFrameProvider.js +0 -36
  2086. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/animationFrameProvider.js.map +0 -1
  2087. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/asap.js +0 -5
  2088. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/asap.js.map +0 -1
  2089. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/async.js +0 -5
  2090. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/async.js.map +0 -1
  2091. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/dateTimestampProvider.js +0 -7
  2092. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/dateTimestampProvider.js.map +0 -1
  2093. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/immediateProvider.js +0 -19
  2094. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/immediateProvider.js.map +0 -1
  2095. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/intervalProvider.js +0 -20
  2096. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/intervalProvider.js.map +0 -1
  2097. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/performanceTimestampProvider.js +0 -7
  2098. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/performanceTimestampProvider.js.map +0 -1
  2099. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/queue.js +0 -5
  2100. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/queue.js.map +0 -1
  2101. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/timeoutProvider.js +0 -20
  2102. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/timeoutProvider.js.map +0 -1
  2103. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/timerHandle.js +0 -2
  2104. package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/timerHandle.js.map +0 -1
  2105. package/tools/installer/node_modules/rxjs/dist/esm5/internal/symbol/iterator.js +0 -8
  2106. package/tools/installer/node_modules/rxjs/dist/esm5/internal/symbol/iterator.js.map +0 -1
  2107. package/tools/installer/node_modules/rxjs/dist/esm5/internal/symbol/observable.js +0 -2
  2108. package/tools/installer/node_modules/rxjs/dist/esm5/internal/symbol/observable.js.map +0 -1
  2109. package/tools/installer/node_modules/rxjs/dist/esm5/internal/testing/ColdObservable.js +0 -39
  2110. package/tools/installer/node_modules/rxjs/dist/esm5/internal/testing/ColdObservable.js.map +0 -1
  2111. package/tools/installer/node_modules/rxjs/dist/esm5/internal/testing/HotObservable.js +0 -45
  2112. package/tools/installer/node_modules/rxjs/dist/esm5/internal/testing/HotObservable.js.map +0 -1
  2113. package/tools/installer/node_modules/rxjs/dist/esm5/internal/testing/SubscriptionLog.js +0 -10
  2114. package/tools/installer/node_modules/rxjs/dist/esm5/internal/testing/SubscriptionLog.js.map +0 -1
  2115. package/tools/installer/node_modules/rxjs/dist/esm5/internal/testing/SubscriptionLoggable.js +0 -18
  2116. package/tools/installer/node_modules/rxjs/dist/esm5/internal/testing/SubscriptionLoggable.js.map +0 -1
  2117. package/tools/installer/node_modules/rxjs/dist/esm5/internal/testing/TestMessage.js +0 -2
  2118. package/tools/installer/node_modules/rxjs/dist/esm5/internal/testing/TestMessage.js.map +0 -1
  2119. package/tools/installer/node_modules/rxjs/dist/esm5/internal/testing/TestScheduler.js +0 -569
  2120. package/tools/installer/node_modules/rxjs/dist/esm5/internal/testing/TestScheduler.js.map +0 -1
  2121. package/tools/installer/node_modules/rxjs/dist/esm5/internal/types.js +0 -2
  2122. package/tools/installer/node_modules/rxjs/dist/esm5/internal/types.js.map +0 -1
  2123. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/ArgumentOutOfRangeError.js +0 -9
  2124. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/ArgumentOutOfRangeError.js.map +0 -1
  2125. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/EmptyError.js +0 -9
  2126. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/EmptyError.js.map +0 -1
  2127. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/Immediate.js +0 -30
  2128. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/Immediate.js.map +0 -1
  2129. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/NotFoundError.js +0 -9
  2130. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/NotFoundError.js.map +0 -1
  2131. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/ObjectUnsubscribedError.js +0 -9
  2132. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/ObjectUnsubscribedError.js.map +0 -1
  2133. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/SequenceError.js +0 -9
  2134. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/SequenceError.js.map +0 -1
  2135. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/UnsubscriptionError.js +0 -12
  2136. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/UnsubscriptionError.js.map +0 -1
  2137. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/applyMixins.js +0 -11
  2138. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/applyMixins.js.map +0 -1
  2139. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/args.js +0 -15
  2140. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/args.js.map +0 -1
  2141. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/argsArgArrayOrObject.js +0 -22
  2142. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/argsArgArrayOrObject.js.map +0 -1
  2143. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/argsOrArgArray.js +0 -5
  2144. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/argsOrArgArray.js.map +0 -1
  2145. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/arrRemove.js +0 -7
  2146. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/arrRemove.js.map +0 -1
  2147. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/createErrorClass.js +0 -11
  2148. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/createErrorClass.js.map +0 -1
  2149. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/createObject.js +0 -4
  2150. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/createObject.js.map +0 -1
  2151. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/errorContext.js +0 -28
  2152. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/errorContext.js.map +0 -1
  2153. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/executeSchedule.js +0 -18
  2154. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/executeSchedule.js.map +0 -1
  2155. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/identity.js +0 -4
  2156. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/identity.js.map +0 -1
  2157. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/isArrayLike.js +0 -2
  2158. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/isArrayLike.js.map +0 -1
  2159. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/isAsyncIterable.js +0 -5
  2160. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/isAsyncIterable.js.map +0 -1
  2161. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/isDate.js +0 -4
  2162. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/isDate.js.map +0 -1
  2163. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/isFunction.js +0 -4
  2164. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/isFunction.js.map +0 -1
  2165. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/isInteropObservable.js +0 -6
  2166. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/isInteropObservable.js.map +0 -1
  2167. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/isIterable.js +0 -6
  2168. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/isIterable.js.map +0 -1
  2169. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/isObservable.js +0 -6
  2170. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/isObservable.js.map +0 -1
  2171. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/isPromise.js +0 -5
  2172. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/isPromise.js.map +0 -1
  2173. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/isReadableStreamLike.js +0 -39
  2174. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/isReadableStreamLike.js.map +0 -1
  2175. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/isScheduler.js +0 -5
  2176. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/isScheduler.js.map +0 -1
  2177. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/lift.js +0 -20
  2178. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/lift.js.map +0 -1
  2179. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/mapOneOrManyArgs.js +0 -10
  2180. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/mapOneOrManyArgs.js.map +0 -1
  2181. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/noop.js +0 -2
  2182. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/noop.js.map +0 -1
  2183. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/not.js +0 -4
  2184. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/not.js.map +0 -1
  2185. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/pipe.js +0 -20
  2186. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/pipe.js.map +0 -1
  2187. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/reportUnhandledError.js +0 -14
  2188. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/reportUnhandledError.js.map +0 -1
  2189. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/subscribeToArray.js +0 -7
  2190. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/subscribeToArray.js.map +0 -1
  2191. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/throwUnobservableError.js +0 -4
  2192. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/throwUnobservableError.js.map +0 -1
  2193. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/workarounds.js +0 -2
  2194. package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/workarounds.js.map +0 -1
  2195. package/tools/installer/node_modules/rxjs/dist/esm5/operators/index.js +0 -114
  2196. package/tools/installer/node_modules/rxjs/dist/esm5/operators/index.js.map +0 -1
  2197. package/tools/installer/node_modules/rxjs/dist/esm5/testing/index.js +0 -2
  2198. package/tools/installer/node_modules/rxjs/dist/esm5/testing/index.js.map +0 -1
  2199. package/tools/installer/node_modules/rxjs/dist/esm5/webSocket/index.js +0 -3
  2200. package/tools/installer/node_modules/rxjs/dist/esm5/webSocket/index.js.map +0 -1
  2201. package/tools/installer/node_modules/rxjs/dist/types/ajax/index.d.ts +0 -5
  2202. package/tools/installer/node_modules/rxjs/dist/types/ajax/index.d.ts.map +0 -1
  2203. package/tools/installer/node_modules/rxjs/dist/types/fetch/index.d.ts +0 -2
  2204. package/tools/installer/node_modules/rxjs/dist/types/fetch/index.d.ts.map +0 -1
  2205. package/tools/installer/node_modules/rxjs/dist/types/index.d.ts +0 -173
  2206. package/tools/installer/node_modules/rxjs/dist/types/index.d.ts.map +0 -1
  2207. package/tools/installer/node_modules/rxjs/dist/types/internal/AnyCatcher.d.ts +0 -10
  2208. package/tools/installer/node_modules/rxjs/dist/types/internal/AnyCatcher.d.ts.map +0 -1
  2209. package/tools/installer/node_modules/rxjs/dist/types/internal/AsyncSubject.d.ts +0 -13
  2210. package/tools/installer/node_modules/rxjs/dist/types/internal/AsyncSubject.d.ts.map +0 -1
  2211. package/tools/installer/node_modules/rxjs/dist/types/internal/BehaviorSubject.d.ts +0 -13
  2212. package/tools/installer/node_modules/rxjs/dist/types/internal/BehaviorSubject.d.ts.map +0 -1
  2213. package/tools/installer/node_modules/rxjs/dist/types/internal/Notification.d.ts +0 -175
  2214. package/tools/installer/node_modules/rxjs/dist/types/internal/Notification.d.ts.map +0 -1
  2215. package/tools/installer/node_modules/rxjs/dist/types/internal/NotificationFactories.d.ts +0 -2
  2216. package/tools/installer/node_modules/rxjs/dist/types/internal/NotificationFactories.d.ts.map +0 -1
  2217. package/tools/installer/node_modules/rxjs/dist/types/internal/Observable.d.ts +0 -121
  2218. package/tools/installer/node_modules/rxjs/dist/types/internal/Observable.d.ts.map +0 -1
  2219. package/tools/installer/node_modules/rxjs/dist/types/internal/Operator.d.ts +0 -9
  2220. package/tools/installer/node_modules/rxjs/dist/types/internal/Operator.d.ts.map +0 -1
  2221. package/tools/installer/node_modules/rxjs/dist/types/internal/ReplaySubject.d.ts +0 -49
  2222. package/tools/installer/node_modules/rxjs/dist/types/internal/ReplaySubject.d.ts.map +0 -1
  2223. package/tools/installer/node_modules/rxjs/dist/types/internal/Scheduler.d.ts +0 -53
  2224. package/tools/installer/node_modules/rxjs/dist/types/internal/Scheduler.d.ts.map +0 -1
  2225. package/tools/installer/node_modules/rxjs/dist/types/internal/Subject.d.ts +0 -54
  2226. package/tools/installer/node_modules/rxjs/dist/types/internal/Subject.d.ts.map +0 -1
  2227. package/tools/installer/node_modules/rxjs/dist/types/internal/Subscriber.d.ts +0 -72
  2228. package/tools/installer/node_modules/rxjs/dist/types/internal/Subscriber.d.ts.map +0 -1
  2229. package/tools/installer/node_modules/rxjs/dist/types/internal/Subscription.d.ts +0 -92
  2230. package/tools/installer/node_modules/rxjs/dist/types/internal/Subscription.d.ts.map +0 -1
  2231. package/tools/installer/node_modules/rxjs/dist/types/internal/ajax/AjaxResponse.d.ts +0 -115
  2232. package/tools/installer/node_modules/rxjs/dist/types/internal/ajax/AjaxResponse.d.ts.map +0 -1
  2233. package/tools/installer/node_modules/rxjs/dist/types/internal/ajax/ajax.d.ts +0 -227
  2234. package/tools/installer/node_modules/rxjs/dist/types/internal/ajax/ajax.d.ts.map +0 -1
  2235. package/tools/installer/node_modules/rxjs/dist/types/internal/ajax/errors.d.ts +0 -65
  2236. package/tools/installer/node_modules/rxjs/dist/types/internal/ajax/errors.d.ts.map +0 -1
  2237. package/tools/installer/node_modules/rxjs/dist/types/internal/ajax/getXHRResponse.d.ts +0 -14
  2238. package/tools/installer/node_modules/rxjs/dist/types/internal/ajax/getXHRResponse.d.ts.map +0 -1
  2239. package/tools/installer/node_modules/rxjs/dist/types/internal/ajax/types.d.ts +0 -200
  2240. package/tools/installer/node_modules/rxjs/dist/types/internal/ajax/types.d.ts.map +0 -1
  2241. package/tools/installer/node_modules/rxjs/dist/types/internal/config.d.ts +0 -73
  2242. package/tools/installer/node_modules/rxjs/dist/types/internal/config.d.ts.map +0 -1
  2243. package/tools/installer/node_modules/rxjs/dist/types/internal/firstValueFrom.d.ts +0 -7
  2244. package/tools/installer/node_modules/rxjs/dist/types/internal/firstValueFrom.d.ts.map +0 -1
  2245. package/tools/installer/node_modules/rxjs/dist/types/internal/lastValueFrom.d.ts +0 -7
  2246. package/tools/installer/node_modules/rxjs/dist/types/internal/lastValueFrom.d.ts.map +0 -1
  2247. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/ConnectableObservable.d.ts +0 -42
  2248. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/ConnectableObservable.d.ts.map +0 -1
  2249. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/bindCallback.d.ts +0 -5
  2250. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/bindCallback.d.ts.map +0 -1
  2251. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/bindCallbackInternals.d.ts +0 -4
  2252. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/bindCallbackInternals.d.ts.map +0 -1
  2253. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/bindNodeCallback.d.ts +0 -5
  2254. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/bindNodeCallback.d.ts.map +0 -1
  2255. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/combineLatest.d.ts +0 -33
  2256. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/combineLatest.d.ts.map +0 -1
  2257. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/concat.d.ts +0 -5
  2258. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/concat.d.ts.map +0 -1
  2259. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/connectable.d.ts +0 -27
  2260. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/connectable.d.ts.map +0 -1
  2261. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/defer.d.ts +0 -51
  2262. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/defer.d.ts.map +0 -1
  2263. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/dom/WebSocketSubject.d.ts +0 -173
  2264. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/dom/WebSocketSubject.d.ts.map +0 -1
  2265. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/dom/animationFrames.d.ts +0 -76
  2266. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/dom/animationFrames.d.ts.map +0 -1
  2267. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/dom/fetch.d.ts +0 -7
  2268. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/dom/fetch.d.ts.map +0 -1
  2269. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/dom/webSocket.d.ts +0 -159
  2270. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/dom/webSocket.d.ts.map +0 -1
  2271. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/empty.d.ts +0 -72
  2272. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/empty.d.ts.map +0 -1
  2273. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/forkJoin.d.ts +0 -24
  2274. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/forkJoin.d.ts.map +0 -1
  2275. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/from.d.ts +0 -6
  2276. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/from.d.ts.map +0 -1
  2277. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/fromEvent.d.ts +0 -45
  2278. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/fromEvent.d.ts.map +0 -1
  2279. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/fromEventPattern.d.ts +0 -5
  2280. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/fromEventPattern.d.ts.map +0 -1
  2281. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/fromSubscribable.d.ts +0 -14
  2282. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/fromSubscribable.d.ts.map +0 -1
  2283. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/generate.d.ts +0 -314
  2284. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/generate.d.ts.map +0 -1
  2285. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/iif.d.ts +0 -82
  2286. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/iif.d.ts.map +0 -1
  2287. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/innerFrom.d.ts +0 -21
  2288. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/innerFrom.d.ts.map +0 -1
  2289. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/interval.d.ts +0 -48
  2290. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/interval.d.ts.map +0 -1
  2291. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/merge.d.ts +0 -9
  2292. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/merge.d.ts.map +0 -1
  2293. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/never.d.ts +0 -40
  2294. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/never.d.ts.map +0 -1
  2295. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/of.d.ts +0 -14
  2296. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/of.d.ts.map +0 -1
  2297. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/onErrorResumeNext.d.ts +0 -5
  2298. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/onErrorResumeNext.d.ts.map +0 -1
  2299. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/pairs.d.ts +0 -19
  2300. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/pairs.d.ts.map +0 -1
  2301. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/partition.d.ts +0 -9
  2302. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/partition.d.ts.map +0 -1
  2303. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/race.d.ts +0 -12
  2304. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/race.d.ts.map +0 -1
  2305. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/range.d.ts +0 -8
  2306. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/range.d.ts.map +0 -1
  2307. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/throwError.d.ts +0 -115
  2308. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/throwError.d.ts.map +0 -1
  2309. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/timer.d.ts +0 -126
  2310. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/timer.d.ts.map +0 -1
  2311. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/using.d.ts +0 -30
  2312. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/using.d.ts.map +0 -1
  2313. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/zip.d.ts +0 -7
  2314. package/tools/installer/node_modules/rxjs/dist/types/internal/observable/zip.d.ts.map +0 -1
  2315. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/OperatorSubscriber.d.ts +0 -41
  2316. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/OperatorSubscriber.d.ts.map +0 -1
  2317. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/audit.d.ts +0 -48
  2318. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/audit.d.ts.map +0 -1
  2319. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/auditTime.d.ts +0 -50
  2320. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/auditTime.d.ts.map +0 -1
  2321. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/buffer.d.ts +0 -41
  2322. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/buffer.d.ts.map +0 -1
  2323. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/bufferCount.d.ts +0 -54
  2324. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/bufferCount.d.ts.map +0 -1
  2325. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/bufferTime.d.ts +0 -5
  2326. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/bufferTime.d.ts.map +0 -1
  2327. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/bufferToggle.d.ts +0 -46
  2328. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/bufferToggle.d.ts.map +0 -1
  2329. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/bufferWhen.d.ts +0 -41
  2330. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/bufferWhen.d.ts.map +0 -1
  2331. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/catchError.d.ts +0 -4
  2332. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/catchError.d.ts.map +0 -1
  2333. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/combineAll.d.ts +0 -6
  2334. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/combineAll.d.ts.map +0 -1
  2335. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/combineLatest.d.ts +0 -10
  2336. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/combineLatest.d.ts.map +0 -1
  2337. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/combineLatestAll.d.ts +0 -6
  2338. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/combineLatestAll.d.ts.map +0 -1
  2339. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/combineLatestWith.d.ts +0 -43
  2340. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/combineLatestWith.d.ts.map +0 -1
  2341. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/concat.d.ts +0 -6
  2342. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/concat.d.ts.map +0 -1
  2343. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/concatAll.d.ts +0 -59
  2344. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/concatAll.d.ts.map +0 -1
  2345. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/concatMap.d.ts +0 -7
  2346. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/concatMap.d.ts.map +0 -1
  2347. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/concatMapTo.d.ts +0 -8
  2348. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/concatMapTo.d.ts.map +0 -1
  2349. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/concatWith.d.ts +0 -43
  2350. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/concatWith.d.ts.map +0 -1
  2351. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/connect.d.ts +0 -87
  2352. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/connect.d.ts.map +0 -1
  2353. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/count.d.ts +0 -58
  2354. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/count.d.ts.map +0 -1
  2355. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/debounce.d.ts +0 -61
  2356. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/debounce.d.ts.map +0 -1
  2357. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/debounceTime.d.ts +0 -59
  2358. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/debounceTime.d.ts.map +0 -1
  2359. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/defaultIfEmpty.d.ts +0 -38
  2360. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/defaultIfEmpty.d.ts.map +0 -1
  2361. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/delay.d.ts +0 -59
  2362. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/delay.d.ts.map +0 -1
  2363. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/delayWhen.d.ts +0 -6
  2364. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/delayWhen.d.ts.map +0 -1
  2365. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/dematerialize.d.ts +0 -51
  2366. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/dematerialize.d.ts.map +0 -1
  2367. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/distinct.d.ts +0 -60
  2368. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/distinct.d.ts.map +0 -1
  2369. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/distinctUntilChanged.d.ts +0 -4
  2370. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/distinctUntilChanged.d.ts.map +0 -1
  2371. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/distinctUntilKeyChanged.d.ts +0 -4
  2372. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/distinctUntilKeyChanged.d.ts.map +0 -1
  2373. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/elementAt.d.ts +0 -51
  2374. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/elementAt.d.ts.map +0 -1
  2375. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/endWith.d.ts +0 -7
  2376. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/endWith.d.ts.map +0 -1
  2377. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/every.d.ts +0 -9
  2378. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/every.d.ts.map +0 -1
  2379. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/exhaust.d.ts +0 -6
  2380. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/exhaust.d.ts.map +0 -1
  2381. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/exhaustAll.d.ts +0 -47
  2382. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/exhaustAll.d.ts.map +0 -1
  2383. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/exhaustMap.d.ts +0 -7
  2384. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/exhaustMap.d.ts.map +0 -1
  2385. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/expand.d.ts +0 -9
  2386. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/expand.d.ts.map +0 -1
  2387. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/filter.d.ts +0 -9
  2388. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/filter.d.ts.map +0 -1
  2389. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/finalize.d.ts +0 -64
  2390. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/finalize.d.ts.map +0 -1
  2391. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/find.d.ts +0 -12
  2392. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/find.d.ts.map +0 -1
  2393. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/findIndex.d.ts +0 -9
  2394. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/findIndex.d.ts.map +0 -1
  2395. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/first.d.ts +0 -9
  2396. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/first.d.ts.map +0 -1
  2397. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/flatMap.d.ts +0 -6
  2398. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/flatMap.d.ts.map +0 -1
  2399. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/groupBy.d.ts +0 -119
  2400. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/groupBy.d.ts.map +0 -1
  2401. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/ignoreElements.d.ts +0 -38
  2402. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/ignoreElements.d.ts.map +0 -1
  2403. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/isEmpty.d.ts +0 -64
  2404. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/isEmpty.d.ts.map +0 -1
  2405. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/joinAllInternals.d.ts +0 -14
  2406. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/joinAllInternals.d.ts.map +0 -1
  2407. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/last.d.ts +0 -8
  2408. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/last.d.ts.map +0 -1
  2409. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/map.d.ts +0 -5
  2410. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/map.d.ts.map +0 -1
  2411. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/mapTo.d.ts +0 -10
  2412. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/mapTo.d.ts.map +0 -1
  2413. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/materialize.d.ts +0 -52
  2414. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/materialize.d.ts.map +0 -1
  2415. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/max.d.ts +0 -50
  2416. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/max.d.ts.map +0 -1
  2417. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/merge.d.ts +0 -10
  2418. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/merge.d.ts.map +0 -1
  2419. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/mergeAll.d.ts +0 -62
  2420. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/mergeAll.d.ts.map +0 -1
  2421. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/mergeInternals.d.ts +0 -18
  2422. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/mergeInternals.d.ts.map +0 -1
  2423. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/mergeMap.d.ts +0 -7
  2424. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/mergeMap.d.ts.map +0 -1
  2425. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/mergeMapTo.d.ts +0 -9
  2426. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/mergeMapTo.d.ts.map +0 -1
  2427. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/mergeScan.d.ts +0 -68
  2428. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/mergeScan.d.ts.map +0 -1
  2429. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/mergeWith.d.ts +0 -44
  2430. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/mergeWith.d.ts.map +0 -1
  2431. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/min.d.ts +0 -50
  2432. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/min.d.ts.map +0 -1
  2433. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/multicast.d.ts +0 -63
  2434. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/multicast.d.ts.map +0 -1
  2435. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/observeOn.d.ts +0 -56
  2436. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/observeOn.d.ts.map +0 -1
  2437. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/onErrorResumeNextWith.d.ts +0 -8
  2438. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/onErrorResumeNextWith.d.ts.map +0 -1
  2439. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/pairwise.d.ts +0 -46
  2440. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/pairwise.d.ts.map +0 -1
  2441. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/partition.d.ts +0 -54
  2442. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/partition.d.ts.map +0 -1
  2443. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/pluck.d.ts +0 -18
  2444. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/pluck.d.ts.map +0 -1
  2445. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/publish.d.ts +0 -30
  2446. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/publish.d.ts.map +0 -1
  2447. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/publishBehavior.d.ts +0 -19
  2448. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/publishBehavior.d.ts.map +0 -1
  2449. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/publishLast.d.ts +0 -69
  2450. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/publishLast.d.ts.map +0 -1
  2451. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/publishReplay.d.ts +0 -56
  2452. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/publishReplay.d.ts.map +0 -1
  2453. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/race.d.ts +0 -6
  2454. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/race.d.ts.map +0 -1
  2455. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/raceWith.d.ts +0 -29
  2456. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/raceWith.d.ts.map +0 -1
  2457. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/reduce.d.ts +0 -5
  2458. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/reduce.d.ts.map +0 -1
  2459. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/refCount.d.ts +0 -61
  2460. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/refCount.d.ts.map +0 -1
  2461. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/repeat.d.ts +0 -108
  2462. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/repeat.d.ts.map +0 -1
  2463. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/repeatWhen.d.ts +0 -38
  2464. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/repeatWhen.d.ts.map +0 -1
  2465. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/retry.d.ts +0 -28
  2466. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/retry.d.ts.map +0 -1
  2467. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/retryWhen.d.ts +0 -61
  2468. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/retryWhen.d.ts.map +0 -1
  2469. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/sample.d.ts +0 -43
  2470. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/sample.d.ts.map +0 -1
  2471. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/sampleTime.d.ts +0 -46
  2472. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/sampleTime.d.ts.map +0 -1
  2473. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/scan.d.ts +0 -5
  2474. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/scan.d.ts.map +0 -1
  2475. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/scanInternals.d.ts +0 -12
  2476. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/scanInternals.d.ts.map +0 -1
  2477. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/sequenceEqual.d.ts +0 -60
  2478. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/sequenceEqual.d.ts.map +0 -1
  2479. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/share.d.ts +0 -43
  2480. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/share.d.ts.map +0 -1
  2481. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/shareReplay.d.ts +0 -10
  2482. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/shareReplay.d.ts.map +0 -1
  2483. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/single.d.ts +0 -5
  2484. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/single.d.ts.map +0 -1
  2485. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/skip.d.ts +0 -36
  2486. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/skip.d.ts.map +0 -1
  2487. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/skipLast.d.ts +0 -45
  2488. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/skipLast.d.ts.map +0 -1
  2489. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/skipUntil.d.ts +0 -48
  2490. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/skipUntil.d.ts.map +0 -1
  2491. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/skipWhile.d.ts +0 -5
  2492. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/skipWhile.d.ts.map +0 -1
  2493. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/startWith.d.ts +0 -7
  2494. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/startWith.d.ts.map +0 -1
  2495. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/subscribeOn.d.ts +0 -62
  2496. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/subscribeOn.d.ts.map +0 -1
  2497. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/switchAll.d.ts +0 -61
  2498. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/switchAll.d.ts.map +0 -1
  2499. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/switchMap.d.ts +0 -7
  2500. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/switchMap.d.ts.map +0 -1
  2501. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/switchMapTo.d.ts +0 -8
  2502. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/switchMapTo.d.ts.map +0 -1
  2503. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/switchScan.d.ts +0 -20
  2504. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/switchScan.d.ts.map +0 -1
  2505. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/take.d.ts +0 -45
  2506. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/take.d.ts.map +0 -1
  2507. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/takeLast.d.ts +0 -42
  2508. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/takeLast.d.ts.map +0 -1
  2509. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/takeUntil.d.ts +0 -41
  2510. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/takeUntil.d.ts.map +0 -1
  2511. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/takeWhile.d.ts +0 -8
  2512. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/takeWhile.d.ts.map +0 -1
  2513. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/tap.d.ts +0 -72
  2514. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/tap.d.ts.map +0 -1
  2515. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/throttle.d.ts +0 -78
  2516. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/throttle.d.ts.map +0 -1
  2517. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/throttleTime.d.ts +0 -53
  2518. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/throttleTime.d.ts.map +0 -1
  2519. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/throwIfEmpty.d.ts +0 -39
  2520. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/throwIfEmpty.d.ts.map +0 -1
  2521. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/timeInterval.d.ts +0 -50
  2522. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/timeInterval.d.ts.map +0 -1
  2523. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/timeout.d.ts +0 -255
  2524. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/timeout.d.ts.map +0 -1
  2525. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/timeoutWith.d.ts +0 -8
  2526. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/timeoutWith.d.ts.map +0 -1
  2527. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/timestamp.d.ts +0 -35
  2528. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/timestamp.d.ts.map +0 -1
  2529. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/toArray.d.ts +0 -33
  2530. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/toArray.d.ts.map +0 -1
  2531. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/window.d.ts +0 -48
  2532. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/window.d.ts.map +0 -1
  2533. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/windowCount.d.ts +0 -65
  2534. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/windowCount.d.ts.map +0 -1
  2535. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/windowTime.d.ts +0 -6
  2536. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/windowTime.d.ts.map +0 -1
  2537. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/windowToggle.d.ts +0 -49
  2538. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/windowToggle.d.ts.map +0 -1
  2539. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/windowWhen.d.ts +0 -49
  2540. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/windowWhen.d.ts.map +0 -1
  2541. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/withLatestFrom.d.ts +0 -4
  2542. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/withLatestFrom.d.ts.map +0 -1
  2543. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/zip.d.ts +0 -10
  2544. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/zip.d.ts.map +0 -1
  2545. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/zipAll.d.ts +0 -14
  2546. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/zipAll.d.ts.map +0 -1
  2547. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/zipWith.d.ts +0 -26
  2548. package/tools/installer/node_modules/rxjs/dist/types/internal/operators/zipWith.d.ts.map +0 -1
  2549. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduled/scheduleArray.d.ts +0 -4
  2550. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduled/scheduleArray.d.ts.map +0 -1
  2551. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduled/scheduleAsyncIterable.d.ts +0 -4
  2552. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduled/scheduleAsyncIterable.d.ts.map +0 -1
  2553. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduled/scheduleIterable.d.ts +0 -9
  2554. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduled/scheduleIterable.d.ts.map +0 -1
  2555. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduled/scheduleObservable.d.ts +0 -3
  2556. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduled/scheduleObservable.d.ts.map +0 -1
  2557. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduled/schedulePromise.d.ts +0 -3
  2558. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduled/schedulePromise.d.ts.map +0 -1
  2559. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduled/scheduleReadableStreamLike.d.ts +0 -4
  2560. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduled/scheduleReadableStreamLike.d.ts.map +0 -1
  2561. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduled/scheduled.d.ts +0 -15
  2562. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduled/scheduled.d.ts.map +0 -1
  2563. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/Action.d.ts +0 -30
  2564. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/Action.d.ts.map +0 -1
  2565. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/AnimationFrameAction.d.ts +0 -12
  2566. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/AnimationFrameAction.d.ts.map +0 -1
  2567. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/AnimationFrameScheduler.d.ts +0 -6
  2568. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/AnimationFrameScheduler.d.ts.map +0 -1
  2569. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/AsapAction.d.ts +0 -12
  2570. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/AsapAction.d.ts.map +0 -1
  2571. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/AsapScheduler.d.ts +0 -6
  2572. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/AsapScheduler.d.ts.map +0 -1
  2573. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/AsyncAction.d.ts +0 -24
  2574. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/AsyncAction.d.ts.map +0 -1
  2575. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/AsyncScheduler.d.ts +0 -9
  2576. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/AsyncScheduler.d.ts.map +0 -1
  2577. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/QueueAction.d.ts +0 -14
  2578. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/QueueAction.d.ts.map +0 -1
  2579. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/QueueScheduler.d.ts +0 -4
  2580. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/QueueScheduler.d.ts.map +0 -1
  2581. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/VirtualTimeScheduler.d.ts +0 -48
  2582. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/VirtualTimeScheduler.d.ts.map +0 -1
  2583. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/animationFrame.d.ts +0 -38
  2584. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/animationFrame.d.ts.map +0 -1
  2585. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/animationFrameProvider.d.ts +0 -13
  2586. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/animationFrameProvider.d.ts.map +0 -1
  2587. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/asap.d.ts +0 -41
  2588. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/asap.d.ts.map +0 -1
  2589. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/async.d.ts +0 -53
  2590. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/async.d.ts.map +0 -1
  2591. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/dateTimestampProvider.d.ts +0 -7
  2592. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/dateTimestampProvider.d.ts.map +0 -1
  2593. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/immediateProvider.d.ts +0 -14
  2594. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/immediateProvider.d.ts.map +0 -1
  2595. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/intervalProvider.d.ts +0 -14
  2596. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/intervalProvider.d.ts.map +0 -1
  2597. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/performanceTimestampProvider.d.ts +0 -7
  2598. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/performanceTimestampProvider.d.ts.map +0 -1
  2599. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/queue.d.ts +0 -69
  2600. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/queue.d.ts.map +0 -1
  2601. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/timeoutProvider.d.ts +0 -14
  2602. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/timeoutProvider.d.ts.map +0 -1
  2603. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/timerHandle.d.ts +0 -2
  2604. package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/timerHandle.d.ts.map +0 -1
  2605. package/tools/installer/node_modules/rxjs/dist/types/internal/symbol/iterator.d.ts +0 -3
  2606. package/tools/installer/node_modules/rxjs/dist/types/internal/symbol/iterator.d.ts.map +0 -1
  2607. package/tools/installer/node_modules/rxjs/dist/types/internal/symbol/observable.d.ts +0 -8
  2608. package/tools/installer/node_modules/rxjs/dist/types/internal/symbol/observable.d.ts.map +0 -1
  2609. package/tools/installer/node_modules/rxjs/dist/types/internal/testing/ColdObservable.d.ts +0 -16
  2610. package/tools/installer/node_modules/rxjs/dist/types/internal/testing/ColdObservable.d.ts.map +0 -1
  2611. package/tools/installer/node_modules/rxjs/dist/types/internal/testing/HotObservable.d.ts +0 -15
  2612. package/tools/installer/node_modules/rxjs/dist/types/internal/testing/HotObservable.d.ts.map +0 -1
  2613. package/tools/installer/node_modules/rxjs/dist/types/internal/testing/SubscriptionLog.d.ts +0 -6
  2614. package/tools/installer/node_modules/rxjs/dist/types/internal/testing/SubscriptionLog.d.ts.map +0 -1
  2615. package/tools/installer/node_modules/rxjs/dist/types/internal/testing/SubscriptionLoggable.d.ts +0 -9
  2616. package/tools/installer/node_modules/rxjs/dist/types/internal/testing/SubscriptionLoggable.d.ts.map +0 -1
  2617. package/tools/installer/node_modules/rxjs/dist/types/internal/testing/TestMessage.d.ts +0 -7
  2618. package/tools/installer/node_modules/rxjs/dist/types/internal/testing/TestMessage.d.ts.map +0 -1
  2619. package/tools/installer/node_modules/rxjs/dist/types/internal/testing/TestScheduler.d.ts +0 -88
  2620. package/tools/installer/node_modules/rxjs/dist/types/internal/testing/TestScheduler.d.ts.map +0 -1
  2621. package/tools/installer/node_modules/rxjs/dist/types/internal/types.d.ts +0 -307
  2622. package/tools/installer/node_modules/rxjs/dist/types/internal/types.d.ts.map +0 -1
  2623. package/tools/installer/node_modules/rxjs/dist/types/internal/util/ArgumentOutOfRangeError.d.ts +0 -19
  2624. package/tools/installer/node_modules/rxjs/dist/types/internal/util/ArgumentOutOfRangeError.d.ts.map +0 -1
  2625. package/tools/installer/node_modules/rxjs/dist/types/internal/util/EmptyError.d.ts +0 -21
  2626. package/tools/installer/node_modules/rxjs/dist/types/internal/util/EmptyError.d.ts.map +0 -1
  2627. package/tools/installer/node_modules/rxjs/dist/types/internal/util/Immediate.d.ts +0 -14
  2628. package/tools/installer/node_modules/rxjs/dist/types/internal/util/Immediate.d.ts.map +0 -1
  2629. package/tools/installer/node_modules/rxjs/dist/types/internal/util/NotFoundError.d.ts +0 -17
  2630. package/tools/installer/node_modules/rxjs/dist/types/internal/util/NotFoundError.d.ts.map +0 -1
  2631. package/tools/installer/node_modules/rxjs/dist/types/internal/util/ObjectUnsubscribedError.d.ts +0 -20
  2632. package/tools/installer/node_modules/rxjs/dist/types/internal/util/ObjectUnsubscribedError.d.ts.map +0 -1
  2633. package/tools/installer/node_modules/rxjs/dist/types/internal/util/SequenceError.d.ts +0 -17
  2634. package/tools/installer/node_modules/rxjs/dist/types/internal/util/SequenceError.d.ts.map +0 -1
  2635. package/tools/installer/node_modules/rxjs/dist/types/internal/util/UnsubscriptionError.d.ts +0 -16
  2636. package/tools/installer/node_modules/rxjs/dist/types/internal/util/UnsubscriptionError.d.ts.map +0 -1
  2637. package/tools/installer/node_modules/rxjs/dist/types/internal/util/applyMixins.d.ts +0 -2
  2638. package/tools/installer/node_modules/rxjs/dist/types/internal/util/applyMixins.d.ts.map +0 -1
  2639. package/tools/installer/node_modules/rxjs/dist/types/internal/util/args.d.ts +0 -5
  2640. package/tools/installer/node_modules/rxjs/dist/types/internal/util/args.d.ts.map +0 -1
  2641. package/tools/installer/node_modules/rxjs/dist/types/internal/util/argsArgArrayOrObject.d.ts +0 -11
  2642. package/tools/installer/node_modules/rxjs/dist/types/internal/util/argsArgArrayOrObject.d.ts.map +0 -1
  2643. package/tools/installer/node_modules/rxjs/dist/types/internal/util/argsOrArgArray.d.ts +0 -6
  2644. package/tools/installer/node_modules/rxjs/dist/types/internal/util/argsOrArgArray.d.ts.map +0 -1
  2645. package/tools/installer/node_modules/rxjs/dist/types/internal/util/arrRemove.d.ts +0 -7
  2646. package/tools/installer/node_modules/rxjs/dist/types/internal/util/arrRemove.d.ts.map +0 -1
  2647. package/tools/installer/node_modules/rxjs/dist/types/internal/util/createErrorClass.d.ts +0 -11
  2648. package/tools/installer/node_modules/rxjs/dist/types/internal/util/createErrorClass.d.ts.map +0 -1
  2649. package/tools/installer/node_modules/rxjs/dist/types/internal/util/createObject.d.ts +0 -2
  2650. package/tools/installer/node_modules/rxjs/dist/types/internal/util/createObject.d.ts.map +0 -1
  2651. package/tools/installer/node_modules/rxjs/dist/types/internal/util/errorContext.d.ts +0 -14
  2652. package/tools/installer/node_modules/rxjs/dist/types/internal/util/errorContext.d.ts.map +0 -1
  2653. package/tools/installer/node_modules/rxjs/dist/types/internal/util/executeSchedule.d.ts +0 -5
  2654. package/tools/installer/node_modules/rxjs/dist/types/internal/util/executeSchedule.d.ts.map +0 -1
  2655. package/tools/installer/node_modules/rxjs/dist/types/internal/util/identity.d.ts +0 -44
  2656. package/tools/installer/node_modules/rxjs/dist/types/internal/util/identity.d.ts.map +0 -1
  2657. package/tools/installer/node_modules/rxjs/dist/types/internal/util/isArrayLike.d.ts +0 -2
  2658. package/tools/installer/node_modules/rxjs/dist/types/internal/util/isArrayLike.d.ts.map +0 -1
  2659. package/tools/installer/node_modules/rxjs/dist/types/internal/util/isAsyncIterable.d.ts +0 -2
  2660. package/tools/installer/node_modules/rxjs/dist/types/internal/util/isAsyncIterable.d.ts.map +0 -1
  2661. package/tools/installer/node_modules/rxjs/dist/types/internal/util/isDate.d.ts +0 -9
  2662. package/tools/installer/node_modules/rxjs/dist/types/internal/util/isDate.d.ts.map +0 -1
  2663. package/tools/installer/node_modules/rxjs/dist/types/internal/util/isFunction.d.ts +0 -6
  2664. package/tools/installer/node_modules/rxjs/dist/types/internal/util/isFunction.d.ts.map +0 -1
  2665. package/tools/installer/node_modules/rxjs/dist/types/internal/util/isInteropObservable.d.ts +0 -4
  2666. package/tools/installer/node_modules/rxjs/dist/types/internal/util/isInteropObservable.d.ts.map +0 -1
  2667. package/tools/installer/node_modules/rxjs/dist/types/internal/util/isIterable.d.ts +0 -3
  2668. package/tools/installer/node_modules/rxjs/dist/types/internal/util/isIterable.d.ts.map +0 -1
  2669. package/tools/installer/node_modules/rxjs/dist/types/internal/util/isObservable.d.ts +0 -8
  2670. package/tools/installer/node_modules/rxjs/dist/types/internal/util/isObservable.d.ts.map +0 -1
  2671. package/tools/installer/node_modules/rxjs/dist/types/internal/util/isPromise.d.ts +0 -6
  2672. package/tools/installer/node_modules/rxjs/dist/types/internal/util/isPromise.d.ts.map +0 -1
  2673. package/tools/installer/node_modules/rxjs/dist/types/internal/util/isReadableStreamLike.d.ts +0 -4
  2674. package/tools/installer/node_modules/rxjs/dist/types/internal/util/isReadableStreamLike.d.ts.map +0 -1
  2675. package/tools/installer/node_modules/rxjs/dist/types/internal/util/isScheduler.d.ts +0 -3
  2676. package/tools/installer/node_modules/rxjs/dist/types/internal/util/isScheduler.d.ts.map +0 -1
  2677. package/tools/installer/node_modules/rxjs/dist/types/internal/util/lift.d.ts +0 -15
  2678. package/tools/installer/node_modules/rxjs/dist/types/internal/util/lift.d.ts.map +0 -1
  2679. package/tools/installer/node_modules/rxjs/dist/types/internal/util/mapOneOrManyArgs.d.ts +0 -7
  2680. package/tools/installer/node_modules/rxjs/dist/types/internal/util/mapOneOrManyArgs.d.ts.map +0 -1
  2681. package/tools/installer/node_modules/rxjs/dist/types/internal/util/noop.d.ts +0 -2
  2682. package/tools/installer/node_modules/rxjs/dist/types/internal/util/noop.d.ts.map +0 -1
  2683. package/tools/installer/node_modules/rxjs/dist/types/internal/util/not.d.ts +0 -2
  2684. package/tools/installer/node_modules/rxjs/dist/types/internal/util/not.d.ts.map +0 -1
  2685. package/tools/installer/node_modules/rxjs/dist/types/internal/util/pipe.d.ts +0 -14
  2686. package/tools/installer/node_modules/rxjs/dist/types/internal/util/pipe.d.ts.map +0 -1
  2687. package/tools/installer/node_modules/rxjs/dist/types/internal/util/reportUnhandledError.d.ts +0 -11
  2688. package/tools/installer/node_modules/rxjs/dist/types/internal/util/reportUnhandledError.d.ts.map +0 -1
  2689. package/tools/installer/node_modules/rxjs/dist/types/internal/util/subscribeToArray.d.ts +0 -7
  2690. package/tools/installer/node_modules/rxjs/dist/types/internal/util/subscribeToArray.d.ts.map +0 -1
  2691. package/tools/installer/node_modules/rxjs/dist/types/internal/util/throwUnobservableError.d.ts +0 -6
  2692. package/tools/installer/node_modules/rxjs/dist/types/internal/util/throwUnobservableError.d.ts.map +0 -1
  2693. package/tools/installer/node_modules/rxjs/dist/types/internal/util/workarounds.d.ts +0 -2
  2694. package/tools/installer/node_modules/rxjs/dist/types/internal/util/workarounds.d.ts.map +0 -1
  2695. package/tools/installer/node_modules/rxjs/dist/types/operators/index.d.ts +0 -114
  2696. package/tools/installer/node_modules/rxjs/dist/types/operators/index.d.ts.map +0 -1
  2697. package/tools/installer/node_modules/rxjs/dist/types/testing/index.d.ts +0 -2
  2698. package/tools/installer/node_modules/rxjs/dist/types/testing/index.d.ts.map +0 -1
  2699. package/tools/installer/node_modules/rxjs/dist/types/webSocket/index.d.ts +0 -3
  2700. package/tools/installer/node_modules/rxjs/dist/types/webSocket/index.d.ts.map +0 -1
  2701. package/tools/installer/node_modules/rxjs/fetch/package.json +0 -8
  2702. package/tools/installer/node_modules/rxjs/operators/package.json +0 -8
  2703. package/tools/installer/node_modules/rxjs/package.json +0 -245
  2704. package/tools/installer/node_modules/rxjs/src/Rx.global.js +0 -5
  2705. package/tools/installer/node_modules/rxjs/src/ajax/index.ts +0 -4
  2706. package/tools/installer/node_modules/rxjs/src/fetch/index.ts +0 -1
  2707. package/tools/installer/node_modules/rxjs/src/index.ts +0 -209
  2708. package/tools/installer/node_modules/rxjs/src/internal/AnyCatcher.ts +0 -14
  2709. package/tools/installer/node_modules/rxjs/src/internal/AsyncSubject.ts +0 -39
  2710. package/tools/installer/node_modules/rxjs/src/internal/BehaviorSubject.ts +0 -37
  2711. package/tools/installer/node_modules/rxjs/src/internal/Notification.ts +0 -238
  2712. package/tools/installer/node_modules/rxjs/src/internal/NotificationFactories.ts +0 -40
  2713. package/tools/installer/node_modules/rxjs/src/internal/Observable.ts +0 -487
  2714. package/tools/installer/node_modules/rxjs/src/internal/Operator.ts +0 -9
  2715. package/tools/installer/node_modules/rxjs/src/internal/ReplaySubject.ts +0 -110
  2716. package/tools/installer/node_modules/rxjs/src/internal/Scheduler.ts +0 -60
  2717. package/tools/installer/node_modules/rxjs/src/internal/Subject.ts +0 -185
  2718. package/tools/installer/node_modules/rxjs/src/internal/Subscriber.ts +0 -270
  2719. package/tools/installer/node_modules/rxjs/src/internal/Subscription.ts +0 -212
  2720. package/tools/installer/node_modules/rxjs/src/internal/ajax/AjaxResponse.ts +0 -124
  2721. package/tools/installer/node_modules/rxjs/src/internal/ajax/ajax.ts +0 -622
  2722. package/tools/installer/node_modules/rxjs/src/internal/ajax/errors.ts +0 -102
  2723. package/tools/installer/node_modules/rxjs/src/internal/ajax/getXHRResponse.ts +0 -37
  2724. package/tools/installer/node_modules/rxjs/src/internal/ajax/types.ts +0 -235
  2725. package/tools/installer/node_modules/rxjs/src/internal/config.ts +0 -84
  2726. package/tools/installer/node_modules/rxjs/src/internal/firstValueFrom.ts +0 -75
  2727. package/tools/installer/node_modules/rxjs/src/internal/lastValueFrom.ts +0 -76
  2728. package/tools/installer/node_modules/rxjs/src/internal/observable/ConnectableObservable.ts +0 -104
  2729. package/tools/installer/node_modules/rxjs/src/internal/observable/bindCallback.ts +0 -149
  2730. package/tools/installer/node_modules/rxjs/src/internal/observable/bindCallbackInternals.ts +0 -119
  2731. package/tools/installer/node_modules/rxjs/src/internal/observable/bindNodeCallback.ts +0 -131
  2732. package/tools/installer/node_modules/rxjs/src/internal/observable/combineLatest.ts +0 -300
  2733. package/tools/installer/node_modules/rxjs/src/internal/observable/concat.ts +0 -115
  2734. package/tools/installer/node_modules/rxjs/src/internal/observable/connectable.ts +0 -64
  2735. package/tools/installer/node_modules/rxjs/src/internal/observable/defer.ts +0 -56
  2736. package/tools/installer/node_modules/rxjs/src/internal/observable/dom/WebSocketSubject.ts +0 -397
  2737. package/tools/installer/node_modules/rxjs/src/internal/observable/dom/animationFrames.ts +0 -132
  2738. package/tools/installer/node_modules/rxjs/src/internal/observable/dom/fetch.ts +0 -180
  2739. package/tools/installer/node_modules/rxjs/src/internal/observable/dom/webSocket.ts +0 -161
  2740. package/tools/installer/node_modules/rxjs/src/internal/observable/empty.ts +0 -79
  2741. package/tools/installer/node_modules/rxjs/src/internal/observable/forkJoin.ts +0 -184
  2742. package/tools/installer/node_modules/rxjs/src/internal/observable/from.ts +0 -104
  2743. package/tools/installer/node_modules/rxjs/src/internal/observable/fromEvent.ts +0 -339
  2744. package/tools/installer/node_modules/rxjs/src/internal/observable/fromEventPattern.ts +0 -152
  2745. package/tools/installer/node_modules/rxjs/src/internal/observable/fromSubscribable.ts +0 -17
  2746. package/tools/installer/node_modules/rxjs/src/internal/observable/generate.ts +0 -387
  2747. package/tools/installer/node_modules/rxjs/src/internal/observable/iif.ts +0 -85
  2748. package/tools/installer/node_modules/rxjs/src/internal/observable/innerFrom.ts +0 -132
  2749. package/tools/installer/node_modules/rxjs/src/internal/observable/interval.ts +0 -57
  2750. package/tools/installer/node_modules/rxjs/src/internal/observable/merge.ts +0 -100
  2751. package/tools/installer/node_modules/rxjs/src/internal/observable/never.ts +0 -44
  2752. package/tools/installer/node_modules/rxjs/src/internal/observable/of.ts +0 -83
  2753. package/tools/installer/node_modules/rxjs/src/internal/observable/onErrorResumeNext.ts +0 -98
  2754. package/tools/installer/node_modules/rxjs/src/internal/observable/pairs.ts +0 -80
  2755. package/tools/installer/node_modules/rxjs/src/internal/observable/partition.ts +0 -88
  2756. package/tools/installer/node_modules/rxjs/src/internal/observable/race.ts +0 -88
  2757. package/tools/installer/node_modules/rxjs/src/internal/observable/range.ts +0 -93
  2758. package/tools/installer/node_modules/rxjs/src/internal/observable/throwError.ts +0 -125
  2759. package/tools/installer/node_modules/rxjs/src/internal/observable/timer.ts +0 -186
  2760. package/tools/installer/node_modules/rxjs/src/internal/observable/using.ts +0 -49
  2761. package/tools/installer/node_modules/rxjs/src/internal/observable/zip.ts +0 -117
  2762. package/tools/installer/node_modules/rxjs/src/internal/operators/OperatorSubscriber.ts +0 -112
  2763. package/tools/installer/node_modules/rxjs/src/internal/operators/audit.ts +0 -96
  2764. package/tools/installer/node_modules/rxjs/src/internal/operators/auditTime.ts +0 -55
  2765. package/tools/installer/node_modules/rxjs/src/internal/operators/buffer.ts +0 -81
  2766. package/tools/installer/node_modules/rxjs/src/internal/operators/bufferCount.ts +0 -120
  2767. package/tools/installer/node_modules/rxjs/src/internal/operators/bufferTime.ts +0 -165
  2768. package/tools/installer/node_modules/rxjs/src/internal/operators/bufferToggle.ts +0 -102
  2769. package/tools/installer/node_modules/rxjs/src/internal/operators/bufferWhen.ts +0 -94
  2770. package/tools/installer/node_modules/rxjs/src/internal/operators/catchError.ts +0 -139
  2771. package/tools/installer/node_modules/rxjs/src/internal/operators/combineAll.ts +0 -6
  2772. package/tools/installer/node_modules/rxjs/src/internal/operators/combineLatest.ts +0 -34
  2773. package/tools/installer/node_modules/rxjs/src/internal/operators/combineLatestAll.ts +0 -50
  2774. package/tools/installer/node_modules/rxjs/src/internal/operators/combineLatestWith.ts +0 -48
  2775. package/tools/installer/node_modules/rxjs/src/internal/operators/concat.ts +0 -22
  2776. package/tools/installer/node_modules/rxjs/src/internal/operators/concatAll.ts +0 -62
  2777. package/tools/installer/node_modules/rxjs/src/internal/operators/concatMap.ts +0 -83
  2778. package/tools/installer/node_modules/rxjs/src/internal/operators/concatMapTo.ts +0 -79
  2779. package/tools/installer/node_modules/rxjs/src/internal/operators/concatWith.ts +0 -48
  2780. package/tools/installer/node_modules/rxjs/src/internal/operators/connect.ts +0 -109
  2781. package/tools/installer/node_modules/rxjs/src/internal/operators/count.ts +0 -61
  2782. package/tools/installer/node_modules/rxjs/src/internal/operators/debounce.ts +0 -119
  2783. package/tools/installer/node_modules/rxjs/src/internal/operators/debounceTime.ts +0 -123
  2784. package/tools/installer/node_modules/rxjs/src/internal/operators/defaultIfEmpty.ts +0 -59
  2785. package/tools/installer/node_modules/rxjs/src/internal/operators/delay.ts +0 -65
  2786. package/tools/installer/node_modules/rxjs/src/internal/operators/delayWhen.ts +0 -103
  2787. package/tools/installer/node_modules/rxjs/src/internal/operators/dematerialize.ts +0 -58
  2788. package/tools/installer/node_modules/rxjs/src/internal/operators/distinct.ts +0 -79
  2789. package/tools/installer/node_modules/rxjs/src/internal/operators/distinctUntilChanged.ts +0 -182
  2790. package/tools/installer/node_modules/rxjs/src/internal/operators/distinctUntilKeyChanged.ts +0 -75
  2791. package/tools/installer/node_modules/rxjs/src/internal/operators/elementAt.ts +0 -68
  2792. package/tools/installer/node_modules/rxjs/src/internal/operators/endWith.ts +0 -68
  2793. package/tools/installer/node_modules/rxjs/src/internal/operators/every.ts +0 -66
  2794. package/tools/installer/node_modules/rxjs/src/internal/operators/exhaust.ts +0 -6
  2795. package/tools/installer/node_modules/rxjs/src/internal/operators/exhaustAll.ts +0 -51
  2796. package/tools/installer/node_modules/rxjs/src/internal/operators/exhaustMap.ts +0 -100
  2797. package/tools/installer/node_modules/rxjs/src/internal/operators/expand.ts +0 -95
  2798. package/tools/installer/node_modules/rxjs/src/internal/operators/filter.ts +0 -75
  2799. package/tools/installer/node_modules/rxjs/src/internal/operators/finalize.ts +0 -75
  2800. package/tools/installer/node_modules/rxjs/src/internal/operators/find.ts +0 -96
  2801. package/tools/installer/node_modules/rxjs/src/internal/operators/findIndex.ts +0 -63
  2802. package/tools/installer/node_modules/rxjs/src/internal/operators/first.ts +0 -93
  2803. package/tools/installer/node_modules/rxjs/src/internal/operators/flatMap.ts +0 -6
  2804. package/tools/installer/node_modules/rxjs/src/internal/operators/groupBy.ts +0 -288
  2805. package/tools/installer/node_modules/rxjs/src/internal/operators/ignoreElements.ts +0 -45
  2806. package/tools/installer/node_modules/rxjs/src/internal/operators/isEmpty.ts +0 -82
  2807. package/tools/installer/node_modules/rxjs/src/internal/operators/joinAllInternals.ts +0 -29
  2808. package/tools/installer/node_modules/rxjs/src/internal/operators/last.ts +0 -91
  2809. package/tools/installer/node_modules/rxjs/src/internal/operators/map.ts +0 -61
  2810. package/tools/installer/node_modules/rxjs/src/internal/operators/mapTo.ts +0 -48
  2811. package/tools/installer/node_modules/rxjs/src/internal/operators/materialize.ts +0 -73
  2812. package/tools/installer/node_modules/rxjs/src/internal/operators/max.ts +0 -54
  2813. package/tools/installer/node_modules/rxjs/src/internal/operators/merge.ts +0 -29
  2814. package/tools/installer/node_modules/rxjs/src/internal/operators/mergeAll.ts +0 -66
  2815. package/tools/installer/node_modules/rxjs/src/internal/operators/mergeInternals.ts +0 -149
  2816. package/tools/installer/node_modules/rxjs/src/internal/operators/mergeMap.ts +0 -94
  2817. package/tools/installer/node_modules/rxjs/src/internal/operators/mergeMapTo.ts +0 -74
  2818. package/tools/installer/node_modules/rxjs/src/internal/operators/mergeScan.ts +0 -92
  2819. package/tools/installer/node_modules/rxjs/src/internal/operators/mergeWith.ts +0 -49
  2820. package/tools/installer/node_modules/rxjs/src/internal/operators/min.ts +0 -54
  2821. package/tools/installer/node_modules/rxjs/src/internal/operators/multicast.ts +0 -98
  2822. package/tools/installer/node_modules/rxjs/src/internal/operators/observeOn.ts +0 -70
  2823. package/tools/installer/node_modules/rxjs/src/internal/operators/onErrorResumeNextWith.ts +0 -99
  2824. package/tools/installer/node_modules/rxjs/src/internal/operators/pairwise.ts +0 -61
  2825. package/tools/installer/node_modules/rxjs/src/internal/operators/partition.ts +0 -62
  2826. package/tools/installer/node_modules/rxjs/src/internal/operators/pluck.ts +0 -106
  2827. package/tools/installer/node_modules/rxjs/src/internal/operators/publish.ts +0 -93
  2828. package/tools/installer/node_modules/rxjs/src/internal/operators/publishBehavior.ts +0 -26
  2829. package/tools/installer/node_modules/rxjs/src/internal/operators/publishLast.ts +0 -76
  2830. package/tools/installer/node_modules/rxjs/src/internal/operators/publishReplay.ts +0 -96
  2831. package/tools/installer/node_modules/rxjs/src/internal/operators/race.ts +0 -20
  2832. package/tools/installer/node_modules/rxjs/src/internal/operators/raceWith.ts +0 -40
  2833. package/tools/installer/node_modules/rxjs/src/internal/operators/reduce.ts +0 -61
  2834. package/tools/installer/node_modules/rxjs/src/internal/operators/refCount.ts +0 -119
  2835. package/tools/installer/node_modules/rxjs/src/internal/operators/repeat.ts +0 -172
  2836. package/tools/installer/node_modules/rxjs/src/internal/operators/repeatWhen.ts +0 -125
  2837. package/tools/installer/node_modules/rxjs/src/internal/operators/retry.ts +0 -168
  2838. package/tools/installer/node_modules/rxjs/src/internal/operators/retryWhen.ts +0 -113
  2839. package/tools/installer/node_modules/rxjs/src/internal/operators/sample.ts +0 -72
  2840. package/tools/installer/node_modules/rxjs/src/internal/operators/sampleTime.ts +0 -51
  2841. package/tools/installer/node_modules/rxjs/src/internal/operators/scan.ts +0 -95
  2842. package/tools/installer/node_modules/rxjs/src/internal/operators/scanInternals.ts +0 -62
  2843. package/tools/installer/node_modules/rxjs/src/internal/operators/sequenceEqual.ts +0 -146
  2844. package/tools/installer/node_modules/rxjs/src/internal/operators/share.ts +0 -267
  2845. package/tools/installer/node_modules/rxjs/src/internal/operators/shareReplay.ts +0 -173
  2846. package/tools/installer/node_modules/rxjs/src/internal/operators/single.ts +0 -121
  2847. package/tools/installer/node_modules/rxjs/src/internal/operators/skip.ts +0 -39
  2848. package/tools/installer/node_modules/rxjs/src/internal/operators/skipLast.ts +0 -95
  2849. package/tools/installer/node_modules/rxjs/src/internal/operators/skipUntil.ts +0 -69
  2850. package/tools/installer/node_modules/rxjs/src/internal/operators/skipWhile.ts +0 -60
  2851. package/tools/installer/node_modules/rxjs/src/internal/operators/startWith.ts +0 -67
  2852. package/tools/installer/node_modules/rxjs/src/internal/operators/subscribeOn.ts +0 -67
  2853. package/tools/installer/node_modules/rxjs/src/internal/operators/switchAll.ts +0 -65
  2854. package/tools/installer/node_modules/rxjs/src/internal/operators/switchMap.ts +0 -132
  2855. package/tools/installer/node_modules/rxjs/src/internal/operators/switchMapTo.ts +0 -64
  2856. package/tools/installer/node_modules/rxjs/src/internal/operators/switchScan.ts +0 -50
  2857. package/tools/installer/node_modules/rxjs/src/internal/operators/take.ts +0 -71
  2858. package/tools/installer/node_modules/rxjs/src/internal/operators/takeLast.ts +0 -81
  2859. package/tools/installer/node_modules/rxjs/src/internal/operators/takeUntil.ts +0 -50
  2860. package/tools/installer/node_modules/rxjs/src/internal/operators/takeWhile.ts +0 -66
  2861. package/tools/installer/node_modules/rxjs/src/internal/operators/tap.ts +0 -215
  2862. package/tools/installer/node_modules/rxjs/src/internal/operators/throttle.ts +0 -143
  2863. package/tools/installer/node_modules/rxjs/src/internal/operators/throttleTime.ts +0 -62
  2864. package/tools/installer/node_modules/rxjs/src/internal/operators/throwIfEmpty.ts +0 -60
  2865. package/tools/installer/node_modules/rxjs/src/internal/operators/timeInterval.ts +0 -67
  2866. package/tools/installer/node_modules/rxjs/src/internal/operators/timeout.ts +0 -403
  2867. package/tools/installer/node_modules/rxjs/src/internal/operators/timeoutWith.ts +0 -116
  2868. package/tools/installer/node_modules/rxjs/src/internal/operators/timestamp.ts +0 -39
  2869. package/tools/installer/node_modules/rxjs/src/internal/operators/toArray.ts +0 -44
  2870. package/tools/installer/node_modules/rxjs/src/internal/operators/window.ts +0 -98
  2871. package/tools/installer/node_modules/rxjs/src/internal/operators/windowCount.ts +0 -129
  2872. package/tools/installer/node_modules/rxjs/src/internal/operators/windowTime.ts +0 -207
  2873. package/tools/installer/node_modules/rxjs/src/internal/operators/windowToggle.ts +0 -132
  2874. package/tools/installer/node_modules/rxjs/src/internal/operators/windowWhen.ts +0 -125
  2875. package/tools/installer/node_modules/rxjs/src/internal/operators/withLatestFrom.ts +0 -111
  2876. package/tools/installer/node_modules/rxjs/src/internal/operators/zip.ts +0 -26
  2877. package/tools/installer/node_modules/rxjs/src/internal/operators/zipAll.ts +0 -20
  2878. package/tools/installer/node_modules/rxjs/src/internal/operators/zipWith.ts +0 -29
  2879. package/tools/installer/node_modules/rxjs/src/internal/scheduled/scheduleArray.ts +0 -27
  2880. package/tools/installer/node_modules/rxjs/src/internal/scheduled/scheduleAsyncIterable.ts +0 -31
  2881. package/tools/installer/node_modules/rxjs/src/internal/scheduled/scheduleIterable.ts +0 -60
  2882. package/tools/installer/node_modules/rxjs/src/internal/scheduled/scheduleObservable.ts +0 -8
  2883. package/tools/installer/node_modules/rxjs/src/internal/scheduled/schedulePromise.ts +0 -8
  2884. package/tools/installer/node_modules/rxjs/src/internal/scheduled/scheduleReadableStreamLike.ts +0 -8
  2885. package/tools/installer/node_modules/rxjs/src/internal/scheduled/scheduled.ts +0 -50
  2886. package/tools/installer/node_modules/rxjs/src/internal/scheduler/Action.ts +0 -34
  2887. package/tools/installer/node_modules/rxjs/src/internal/scheduler/AnimationFrameAction.ts +0 -43
  2888. package/tools/installer/node_modules/rxjs/src/internal/scheduler/AnimationFrameScheduler.ts +0 -43
  2889. package/tools/installer/node_modules/rxjs/src/internal/scheduler/AsapAction.ts +0 -45
  2890. package/tools/installer/node_modules/rxjs/src/internal/scheduler/AsapScheduler.ts +0 -38
  2891. package/tools/installer/node_modules/rxjs/src/internal/scheduler/AsyncAction.ts +0 -150
  2892. package/tools/installer/node_modules/rxjs/src/internal/scheduler/AsyncScheduler.ts +0 -52
  2893. package/tools/installer/node_modules/rxjs/src/internal/scheduler/QueueAction.ts +0 -44
  2894. package/tools/installer/node_modules/rxjs/src/internal/scheduler/QueueScheduler.ts +0 -4
  2895. package/tools/installer/node_modules/rxjs/src/internal/scheduler/VirtualTimeScheduler.ts +0 -128
  2896. package/tools/installer/node_modules/rxjs/src/internal/scheduler/animationFrame.ts +0 -41
  2897. package/tools/installer/node_modules/rxjs/src/internal/scheduler/animationFrameProvider.ts +0 -44
  2898. package/tools/installer/node_modules/rxjs/src/internal/scheduler/asap.ts +0 -44
  2899. package/tools/installer/node_modules/rxjs/src/internal/scheduler/async.ts +0 -56
  2900. package/tools/installer/node_modules/rxjs/src/internal/scheduler/dateTimestampProvider.ts +0 -14
  2901. package/tools/installer/node_modules/rxjs/src/internal/scheduler/immediateProvider.ts +0 -31
  2902. package/tools/installer/node_modules/rxjs/src/internal/scheduler/intervalProvider.ts +0 -31
  2903. package/tools/installer/node_modules/rxjs/src/internal/scheduler/performanceTimestampProvider.ts +0 -14
  2904. package/tools/installer/node_modules/rxjs/src/internal/scheduler/queue.ts +0 -72
  2905. package/tools/installer/node_modules/rxjs/src/internal/scheduler/timeoutProvider.ts +0 -31
  2906. package/tools/installer/node_modules/rxjs/src/internal/scheduler/timerHandle.ts +0 -1
  2907. package/tools/installer/node_modules/rxjs/src/internal/symbol/iterator.ts +0 -9
  2908. package/tools/installer/node_modules/rxjs/src/internal/symbol/observable.ts +0 -7
  2909. package/tools/installer/node_modules/rxjs/src/internal/testing/ColdObservable.ts +0 -52
  2910. package/tools/installer/node_modules/rxjs/src/internal/testing/HotObservable.ts +0 -53
  2911. package/tools/installer/node_modules/rxjs/src/internal/testing/SubscriptionLog.ts +0 -5
  2912. package/tools/installer/node_modules/rxjs/src/internal/testing/SubscriptionLoggable.ts +0 -22
  2913. package/tools/installer/node_modules/rxjs/src/internal/testing/TestMessage.ts +0 -7
  2914. package/tools/installer/node_modules/rxjs/src/internal/testing/TestScheduler.ts +0 -690
  2915. package/tools/installer/node_modules/rxjs/src/internal/types.ts +0 -371
  2916. package/tools/installer/node_modules/rxjs/src/internal/umd.ts +0 -26
  2917. package/tools/installer/node_modules/rxjs/src/internal/util/ArgumentOutOfRangeError.ts +0 -28
  2918. package/tools/installer/node_modules/rxjs/src/internal/util/EmptyError.ts +0 -30
  2919. package/tools/installer/node_modules/rxjs/src/internal/util/Immediate.ts +0 -45
  2920. package/tools/installer/node_modules/rxjs/src/internal/util/NotFoundError.ts +0 -26
  2921. package/tools/installer/node_modules/rxjs/src/internal/util/ObjectUnsubscribedError.ts +0 -29
  2922. package/tools/installer/node_modules/rxjs/src/internal/util/SequenceError.ts +0 -26
  2923. package/tools/installer/node_modules/rxjs/src/internal/util/UnsubscriptionError.ts +0 -30
  2924. package/tools/installer/node_modules/rxjs/src/internal/util/applyMixins.ts +0 -10
  2925. package/tools/installer/node_modules/rxjs/src/internal/util/args.ts +0 -19
  2926. package/tools/installer/node_modules/rxjs/src/internal/util/argsArgArrayOrObject.ts +0 -30
  2927. package/tools/installer/node_modules/rxjs/src/internal/util/argsOrArgArray.ts +0 -9
  2928. package/tools/installer/node_modules/rxjs/src/internal/util/arrRemove.ts +0 -11
  2929. package/tools/installer/node_modules/rxjs/src/internal/util/createErrorClass.ts +0 -20
  2930. package/tools/installer/node_modules/rxjs/src/internal/util/createObject.ts +0 -3
  2931. package/tools/installer/node_modules/rxjs/src/internal/util/errorContext.ts +0 -42
  2932. package/tools/installer/node_modules/rxjs/src/internal/util/executeSchedule.ts +0 -44
  2933. package/tools/installer/node_modules/rxjs/src/internal/util/identity.ts +0 -45
  2934. package/tools/installer/node_modules/rxjs/src/internal/util/isArrayLike.ts +0 -1
  2935. package/tools/installer/node_modules/rxjs/src/internal/util/isAsyncIterable.ts +0 -5
  2936. package/tools/installer/node_modules/rxjs/src/internal/util/isDate.ts +0 -10
  2937. package/tools/installer/node_modules/rxjs/src/internal/util/isFunction.ts +0 -7
  2938. package/tools/installer/node_modules/rxjs/src/internal/util/isInteropObservable.ts +0 -8
  2939. package/tools/installer/node_modules/rxjs/src/internal/util/isIterable.ts +0 -7
  2940. package/tools/installer/node_modules/rxjs/src/internal/util/isObservable.ts +0 -13
  2941. package/tools/installer/node_modules/rxjs/src/internal/util/isPromise.ts +0 -9
  2942. package/tools/installer/node_modules/rxjs/src/internal/util/isReadableStreamLike.ts +0 -23
  2943. package/tools/installer/node_modules/rxjs/src/internal/util/isScheduler.ts +0 -6
  2944. package/tools/installer/node_modules/rxjs/src/internal/util/lift.ts +0 -32
  2945. package/tools/installer/node_modules/rxjs/src/internal/util/mapOneOrManyArgs.ts +0 -16
  2946. package/tools/installer/node_modules/rxjs/src/internal/util/noop.ts +0 -2
  2947. package/tools/installer/node_modules/rxjs/src/internal/util/not.ts +0 -3
  2948. package/tools/installer/node_modules/rxjs/src/internal/util/pipe.ts +0 -95
  2949. package/tools/installer/node_modules/rxjs/src/internal/util/reportUnhandledError.ts +0 -24
  2950. package/tools/installer/node_modules/rxjs/src/internal/util/subscribeToArray.ts +0 -12
  2951. package/tools/installer/node_modules/rxjs/src/internal/util/throwUnobservableError.ts +0 -12
  2952. package/tools/installer/node_modules/rxjs/src/internal/util/workarounds.ts +0 -7
  2953. package/tools/installer/node_modules/rxjs/src/operators/index.ts +0 -114
  2954. package/tools/installer/node_modules/rxjs/src/testing/index.ts +0 -1
  2955. package/tools/installer/node_modules/rxjs/src/tsconfig.base.json +0 -12
  2956. package/tools/installer/node_modules/rxjs/src/tsconfig.cjs.json +0 -10
  2957. package/tools/installer/node_modules/rxjs/src/tsconfig.cjs.spec.json +0 -10
  2958. package/tools/installer/node_modules/rxjs/src/tsconfig.esm.json +0 -9
  2959. package/tools/installer/node_modules/rxjs/src/tsconfig.esm5.json +0 -11
  2960. package/tools/installer/node_modules/rxjs/src/tsconfig.esm5.rollup.json +0 -8
  2961. package/tools/installer/node_modules/rxjs/src/tsconfig.types.json +0 -14
  2962. package/tools/installer/node_modules/rxjs/src/tsconfig.types.spec.json +0 -7
  2963. package/tools/installer/node_modules/rxjs/src/webSocket/index.ts +0 -2
  2964. package/tools/installer/node_modules/rxjs/testing/package.json +0 -8
  2965. package/tools/installer/node_modules/rxjs/tsconfig.json +0 -28
  2966. package/tools/installer/node_modules/rxjs/webSocket/package.json +0 -8
  2967. package/tools/installer/node_modules/safer-buffer/LICENSE +0 -21
  2968. package/tools/installer/node_modules/safer-buffer/Porting-Buffer.md +0 -268
  2969. package/tools/installer/node_modules/safer-buffer/Readme.md +0 -156
  2970. package/tools/installer/node_modules/safer-buffer/dangerous.js +0 -58
  2971. package/tools/installer/node_modules/safer-buffer/package.json +0 -34
  2972. package/tools/installer/node_modules/safer-buffer/safer.js +0 -77
  2973. package/tools/installer/node_modules/safer-buffer/tests.js +0 -406
  2974. package/tools/installer/node_modules/signal-exit/LICENSE.txt +0 -16
  2975. package/tools/installer/node_modules/signal-exit/README.md +0 -74
  2976. package/tools/installer/node_modules/signal-exit/dist/cjs/browser.d.ts +0 -12
  2977. package/tools/installer/node_modules/signal-exit/dist/cjs/browser.d.ts.map +0 -1
  2978. package/tools/installer/node_modules/signal-exit/dist/cjs/browser.js +0 -10
  2979. package/tools/installer/node_modules/signal-exit/dist/cjs/browser.js.map +0 -1
  2980. package/tools/installer/node_modules/signal-exit/dist/cjs/index.d.ts +0 -48
  2981. package/tools/installer/node_modules/signal-exit/dist/cjs/index.d.ts.map +0 -1
  2982. package/tools/installer/node_modules/signal-exit/dist/cjs/index.js +0 -279
  2983. package/tools/installer/node_modules/signal-exit/dist/cjs/index.js.map +0 -1
  2984. package/tools/installer/node_modules/signal-exit/dist/cjs/package.json +0 -3
  2985. package/tools/installer/node_modules/signal-exit/dist/cjs/signals.d.ts +0 -29
  2986. package/tools/installer/node_modules/signal-exit/dist/cjs/signals.d.ts.map +0 -1
  2987. package/tools/installer/node_modules/signal-exit/dist/cjs/signals.js +0 -42
  2988. package/tools/installer/node_modules/signal-exit/dist/cjs/signals.js.map +0 -1
  2989. package/tools/installer/node_modules/signal-exit/dist/mjs/browser.d.ts +0 -12
  2990. package/tools/installer/node_modules/signal-exit/dist/mjs/browser.d.ts.map +0 -1
  2991. package/tools/installer/node_modules/signal-exit/dist/mjs/browser.js +0 -4
  2992. package/tools/installer/node_modules/signal-exit/dist/mjs/browser.js.map +0 -1
  2993. package/tools/installer/node_modules/signal-exit/dist/mjs/index.d.ts +0 -48
  2994. package/tools/installer/node_modules/signal-exit/dist/mjs/index.d.ts.map +0 -1
  2995. package/tools/installer/node_modules/signal-exit/dist/mjs/index.js +0 -275
  2996. package/tools/installer/node_modules/signal-exit/dist/mjs/index.js.map +0 -1
  2997. package/tools/installer/node_modules/signal-exit/dist/mjs/package.json +0 -3
  2998. package/tools/installer/node_modules/signal-exit/dist/mjs/signals.d.ts +0 -29
  2999. package/tools/installer/node_modules/signal-exit/dist/mjs/signals.d.ts.map +0 -1
  3000. package/tools/installer/node_modules/signal-exit/dist/mjs/signals.js +0 -39
  3001. package/tools/installer/node_modules/signal-exit/dist/mjs/signals.js.map +0 -1
  3002. package/tools/installer/node_modules/signal-exit/package.json +0 -106
  3003. package/tools/installer/node_modules/stdin-discarder/index.d.ts +0 -13
  3004. package/tools/installer/node_modules/stdin-discarder/index.js +0 -59
  3005. package/tools/installer/node_modules/stdin-discarder/license +0 -9
  3006. package/tools/installer/node_modules/stdin-discarder/package.json +0 -42
  3007. package/tools/installer/node_modules/stdin-discarder/readme.md +0 -37
  3008. package/tools/installer/node_modules/string-width/index.d.ts +0 -39
  3009. package/tools/installer/node_modules/string-width/index.js +0 -82
  3010. package/tools/installer/node_modules/string-width/license +0 -9
  3011. package/tools/installer/node_modules/string-width/package.json +0 -64
  3012. package/tools/installer/node_modules/string-width/readme.md +0 -66
  3013. package/tools/installer/node_modules/strip-ansi/index.d.ts +0 -15
  3014. package/tools/installer/node_modules/strip-ansi/index.js +0 -14
  3015. package/tools/installer/node_modules/strip-ansi/license +0 -9
  3016. package/tools/installer/node_modules/strip-ansi/package.json +0 -57
  3017. package/tools/installer/node_modules/strip-ansi/readme.md +0 -41
  3018. package/tools/installer/node_modules/tmp/LICENSE +0 -21
  3019. package/tools/installer/node_modules/tmp/README.md +0 -314
  3020. package/tools/installer/node_modules/tmp/lib/tmp.js +0 -611
  3021. package/tools/installer/node_modules/tmp/package.json +0 -38
  3022. package/tools/installer/node_modules/tslib/CopyrightNotice.txt +0 -15
  3023. package/tools/installer/node_modules/tslib/LICENSE.txt +0 -12
  3024. package/tools/installer/node_modules/tslib/README.md +0 -164
  3025. package/tools/installer/node_modules/tslib/SECURITY.md +0 -41
  3026. package/tools/installer/node_modules/tslib/modules/index.d.ts +0 -38
  3027. package/tools/installer/node_modules/tslib/modules/index.js +0 -70
  3028. package/tools/installer/node_modules/tslib/modules/package.json +0 -3
  3029. package/tools/installer/node_modules/tslib/package.json +0 -47
  3030. package/tools/installer/node_modules/tslib/tslib.d.ts +0 -460
  3031. package/tools/installer/node_modules/tslib/tslib.es6.html +0 -1
  3032. package/tools/installer/node_modules/tslib/tslib.es6.js +0 -402
  3033. package/tools/installer/node_modules/tslib/tslib.es6.mjs +0 -401
  3034. package/tools/installer/node_modules/tslib/tslib.html +0 -1
  3035. package/tools/installer/node_modules/tslib/tslib.js +0 -484
  3036. package/tools/installer/node_modules/type-fest/base.d.ts +0 -39
  3037. package/tools/installer/node_modules/type-fest/index.d.ts +0 -2
  3038. package/tools/installer/node_modules/type-fest/license +0 -9
  3039. package/tools/installer/node_modules/type-fest/package.json +0 -58
  3040. package/tools/installer/node_modules/type-fest/readme.md +0 -760
  3041. package/tools/installer/node_modules/type-fest/source/async-return-type.d.ts +0 -23
  3042. package/tools/installer/node_modules/type-fest/source/asyncify.d.ts +0 -31
  3043. package/tools/installer/node_modules/type-fest/source/basic.d.ts +0 -51
  3044. package/tools/installer/node_modules/type-fest/source/conditional-except.d.ts +0 -43
  3045. package/tools/installer/node_modules/type-fest/source/conditional-keys.d.ts +0 -43
  3046. package/tools/installer/node_modules/type-fest/source/conditional-pick.d.ts +0 -42
  3047. package/tools/installer/node_modules/type-fest/source/entries.d.ts +0 -57
  3048. package/tools/installer/node_modules/type-fest/source/entry.d.ts +0 -60
  3049. package/tools/installer/node_modules/type-fest/source/except.d.ts +0 -22
  3050. package/tools/installer/node_modules/type-fest/source/fixed-length-array.d.ts +0 -38
  3051. package/tools/installer/node_modules/type-fest/source/iterable-element.d.ts +0 -46
  3052. package/tools/installer/node_modules/type-fest/source/literal-union.d.ts +0 -33
  3053. package/tools/installer/node_modules/type-fest/source/merge-exclusive.d.ts +0 -39
  3054. package/tools/installer/node_modules/type-fest/source/merge.d.ts +0 -25
  3055. package/tools/installer/node_modules/type-fest/source/mutable.d.ts +0 -38
  3056. package/tools/installer/node_modules/type-fest/source/opaque.d.ts +0 -65
  3057. package/tools/installer/node_modules/type-fest/source/package-json.d.ts +0 -611
  3058. package/tools/installer/node_modules/type-fest/source/partial-deep.d.ts +0 -72
  3059. package/tools/installer/node_modules/type-fest/source/promisable.d.ts +0 -23
  3060. package/tools/installer/node_modules/type-fest/source/promise-value.d.ts +0 -27
  3061. package/tools/installer/node_modules/type-fest/source/readonly-deep.d.ts +0 -59
  3062. package/tools/installer/node_modules/type-fest/source/require-at-least-one.d.ts +0 -33
  3063. package/tools/installer/node_modules/type-fest/source/require-exactly-one.d.ts +0 -35
  3064. package/tools/installer/node_modules/type-fest/source/set-optional.d.ts +0 -33
  3065. package/tools/installer/node_modules/type-fest/source/set-required.d.ts +0 -33
  3066. package/tools/installer/node_modules/type-fest/source/set-return-type.d.ts +0 -29
  3067. package/tools/installer/node_modules/type-fest/source/simplify.d.ts +0 -4
  3068. package/tools/installer/node_modules/type-fest/source/stringified.d.ts +0 -21
  3069. package/tools/installer/node_modules/type-fest/source/tsconfig-json.d.ts +0 -870
  3070. package/tools/installer/node_modules/type-fest/source/typed-array.d.ts +0 -15
  3071. package/tools/installer/node_modules/type-fest/source/union-to-intersection.d.ts +0 -58
  3072. package/tools/installer/node_modules/type-fest/source/utilities.d.ts +0 -5
  3073. package/tools/installer/node_modules/type-fest/source/value-of.d.ts +0 -40
  3074. package/tools/installer/node_modules/type-fest/ts41/camel-case.d.ts +0 -64
  3075. package/tools/installer/node_modules/type-fest/ts41/delimiter-case.d.ts +0 -85
  3076. package/tools/installer/node_modules/type-fest/ts41/get.d.ts +0 -131
  3077. package/tools/installer/node_modules/type-fest/ts41/index.d.ts +0 -10
  3078. package/tools/installer/node_modules/type-fest/ts41/kebab-case.d.ts +0 -36
  3079. package/tools/installer/node_modules/type-fest/ts41/pascal-case.d.ts +0 -36
  3080. package/tools/installer/node_modules/type-fest/ts41/snake-case.d.ts +0 -35
  3081. package/tools/installer/node_modules/type-fest/ts41/utilities.d.ts +0 -8
  3082. package/tools/installer/node_modules/universalify/LICENSE +0 -20
  3083. package/tools/installer/node_modules/universalify/README.md +0 -76
  3084. package/tools/installer/node_modules/universalify/index.js +0 -24
  3085. package/tools/installer/node_modules/universalify/package.json +0 -34
  3086. package/tools/installer/node_modules/wrap-ansi/index.js +0 -186
  3087. package/tools/installer/node_modules/wrap-ansi/license +0 -9
  3088. package/tools/installer/node_modules/wrap-ansi/node_modules/ansi-regex/index.d.ts +0 -37
  3089. package/tools/installer/node_modules/wrap-ansi/node_modules/ansi-regex/index.js +0 -10
  3090. package/tools/installer/node_modules/wrap-ansi/node_modules/ansi-regex/license +0 -9
  3091. package/tools/installer/node_modules/wrap-ansi/node_modules/ansi-regex/package.json +0 -55
  3092. package/tools/installer/node_modules/wrap-ansi/node_modules/ansi-regex/readme.md +0 -78
  3093. package/tools/installer/node_modules/wrap-ansi/node_modules/emoji-regex/LICENSE-MIT.txt +0 -20
  3094. package/tools/installer/node_modules/wrap-ansi/node_modules/emoji-regex/README.md +0 -73
  3095. package/tools/installer/node_modules/wrap-ansi/node_modules/emoji-regex/es2015/index.js +0 -6
  3096. package/tools/installer/node_modules/wrap-ansi/node_modules/emoji-regex/es2015/text.js +0 -6
  3097. package/tools/installer/node_modules/wrap-ansi/node_modules/emoji-regex/index.d.ts +0 -23
  3098. package/tools/installer/node_modules/wrap-ansi/node_modules/emoji-regex/index.js +0 -6
  3099. package/tools/installer/node_modules/wrap-ansi/node_modules/emoji-regex/package.json +0 -50
  3100. package/tools/installer/node_modules/wrap-ansi/node_modules/emoji-regex/text.js +0 -6
  3101. package/tools/installer/node_modules/wrap-ansi/node_modules/string-width/index.d.ts +0 -29
  3102. package/tools/installer/node_modules/wrap-ansi/node_modules/string-width/index.js +0 -47
  3103. package/tools/installer/node_modules/wrap-ansi/node_modules/string-width/license +0 -9
  3104. package/tools/installer/node_modules/wrap-ansi/node_modules/string-width/package.json +0 -56
  3105. package/tools/installer/node_modules/wrap-ansi/node_modules/string-width/readme.md +0 -50
  3106. package/tools/installer/node_modules/wrap-ansi/node_modules/strip-ansi/index.d.ts +0 -17
  3107. package/tools/installer/node_modules/wrap-ansi/node_modules/strip-ansi/index.js +0 -4
  3108. package/tools/installer/node_modules/wrap-ansi/node_modules/strip-ansi/license +0 -9
  3109. package/tools/installer/node_modules/wrap-ansi/node_modules/strip-ansi/package.json +0 -54
  3110. package/tools/installer/node_modules/wrap-ansi/node_modules/strip-ansi/readme.md +0 -46
  3111. package/tools/installer/node_modules/wrap-ansi/package.json +0 -61
  3112. package/tools/installer/node_modules/wrap-ansi/readme.md +0 -97
  3113. package/tools/installer/node_modules/yoctocolors-cjs/index.d.ts +0 -94
  3114. package/tools/installer/node_modules/yoctocolors-cjs/index.js +0 -93
  3115. package/tools/installer/node_modules/yoctocolors-cjs/license +0 -9
  3116. package/tools/installer/node_modules/yoctocolors-cjs/package.json +0 -67
  3117. package/tools/installer/node_modules/yoctocolors-cjs/readme.md +0 -130
@@ -1,2750 +0,0 @@
1
- ## [7.8.2](https://github.com/reactivex/rxjs/compare/7.8.1...7.8.2) (2025-02-22)
2
-
3
- ### Bug Fixes
4
-
5
- - **animationFrameScheduler:** some tasks are never flushed and sometimes it breaks completely ([#7444](https://github.com/reactivex/rxjs/issues/7444)) ([8bbfa4e](https://github.com/reactivex/rxjs/commit/8bbfa4efd15f6572316d5b2b05b2f49ded69a3ca))
6
- - **mergeWith:** works correctly with an Array ([#7281](https://github.com/reactivex/rxjs/issues/7281)) ([27855c6](https://github.com/reactivex/rxjs/commit/27855c635ca74107352ae3336944433a328c0b41))
7
- - **subscriber:** strict type signature for next method ([#7172](https://github.com/reactivex/rxjs/issues/7172)) ([0e2ef5e](https://github.com/reactivex/rxjs/commit/0e2ef5e1142699b028bc3624aae9b24c3e3aaccf))
8
-
9
- ## [7.8.1](https://github.com/reactivex/rxjs/compare/7.8.0...7.8.1) (2023-04-26)
10
-
11
- ### Bug Fixes
12
-
13
- - **asapScheduler:** No longer stops after scheduling twice during flush ([#7198](https://github.com/reactivex/rxjs/issues/7198)) ([1b52405](https://github.com/reactivex/rxjs/commit/1b524057b4db157814bfd04ad7d10c999afdccfa)), closes [ReactiveX#7196](https://github.com/ReactiveX/issues/7196)
14
- - **throttle:** properly handle default ThrottleConfig values ([#7176](https://github.com/reactivex/rxjs/issues/7176)) ([ceb821c](https://github.com/reactivex/rxjs/commit/ceb821cfd81ca29b0d764b86a03f1e9f1eaa0999))
15
-
16
- # [7.8.0](https://github.com/reactivex/rxjs/compare/7.7.0...7.8.0) (2022-12-15)
17
-
18
- ### Features
19
-
20
- - **buffer:** `closingNotifier` now supports any `ObservableInput` ([#7073](https://github.com/reactivex/rxjs/issues/7073)) ([61b877a](https://github.com/reactivex/rxjs/commit/61b877a50c2557196a45e12622305c5a84fc3f0a))
21
- - **delayWhen:** `delayWhen`'s `delayDurationSelector` now supports any `ObservableInput` ([#7049](https://github.com/reactivex/rxjs/issues/7049)) ([dfd95db](https://github.com/reactivex/rxjs/commit/dfd95db952a6772d35d11bdd1974f2c4b4d68b25))
22
- - **sequenceEqual:** `compareTo` now supports any `ObservableInput` ([#7102](https://github.com/reactivex/rxjs/issues/7102)) ([d501961](https://github.com/reactivex/rxjs/commit/d50196187710c7a0cad50703b2071fc3f2cabd3c))
23
- - **share:** `ShareConfig` factory properties now supports any `ObservableInput` ([#7093](https://github.com/reactivex/rxjs/issues/7093)) ([cc3995a](https://github.com/reactivex/rxjs/commit/cc3995a6f6baf9456ec11f749fe89bf61b9e2d62))
24
- - **skipUntil:** `notifier` now supports any `ObservableInput` ([#7091](https://github.com/reactivex/rxjs/issues/7091)) ([60d6c40](https://github.com/reactivex/rxjs/commit/60d6c40fb484903286feca2bbfa9fcb2cde720e2))
25
- - **window:** `windowBoundaries` now supports any `ObservableInput` ([#7088](https://github.com/reactivex/rxjs/issues/7088)) ([8c4347c](https://github.com/reactivex/rxjs/commit/8c4347c48f2432d7399c911d329fa74e0d6c6e8d))
26
-
27
- # [7.7.0](https://github.com/reactivex/rxjs/compare/7.6.0...7.7.0) (2022-12-15)
28
-
29
- ### Features
30
-
31
- - **distinct:** `flush` argument now supports any `ObservableInput` ([#7081](https://github.com/reactivex/rxjs/issues/7081)) ([74c9ebd](https://github.com/reactivex/rxjs/commit/74c9ebd818113f9f25f1fb2b9fee4a0eac121ae0))
32
- - **repeatWhen:** `notifier` supports `ObservableInput` ([#7103](https://github.com/reactivex/rxjs/issues/7103)) ([8f1b976](https://github.com/reactivex/rxjs/commit/8f1b976125c55a5e884317c2b463fd019662e6af))
33
- - **retryWhen:** `notifier` now supports any `ObservableInput` ([#7105](https://github.com/reactivex/rxjs/issues/7105)) ([794f806](https://github.com/reactivex/rxjs/commit/794f8064cf8fe754e9dfebeee0ffef0ac1562252))
34
- - **sample:** `notifier` now supports any `ObservableInput` ([#7104](https://github.com/reactivex/rxjs/issues/7104)) ([b18c2eb](https://github.com/reactivex/rxjs/commit/b18c2eb2bc8dc1a717c927f998028316eec83937))
35
-
36
- # [7.6.0](https://github.com/reactivex/rxjs/compare/7.5.7...7.6.0) (2022-12-03)
37
-
38
- ### Bug Fixes
39
-
40
- - **schedulers:** no longer cause TypeScript build failures when Node types aren't included ([c1a07b7](https://github.com/reactivex/rxjs/commit/c1a07b71ac050ab36b371ff7f18dc9a924fffc9f))
41
- - **types:** Improved subscribe and tap type overloads ([#6718](https://github.com/reactivex/rxjs/issues/6718)) ([af1a9f4](https://github.com/reactivex/rxjs/commit/af1a9f446a860883abaa36ace21345dc923e7e53)), closes [#6717](https://github.com/reactivex/rxjs/issues/6717)
42
-
43
- ### Features
44
-
45
- - **onErrorResumeNextWith:** renamed `onErrorResumeNext` and exported from the top level. (`onErrorResumeNext` operator is stil available, but deprecated) ([#6755](https://github.com/reactivex/rxjs/issues/6755)) ([51e3b2c](https://github.com/reactivex/rxjs/commit/51e3b2c8ec28b5d30bca4c63ad69ce6942c2cdcc))
46
-
47
- ## [7.5.7](https://github.com/reactivex/rxjs/compare/7.5.6...7.5.7) (2022-09-25)
48
-
49
- ### Bug Fixes
50
-
51
- - **schedulers:** improve performance of animationFrameScheduler and asapScheduler ([#7059](https://github.com/reactivex/rxjs/issues/7059)) ([c93aa60](https://github.com/reactivex/rxjs/commit/c93aa60e9f073297d959fa1fff9323e48872d47e)), closes [#7017](https://github.com/reactivex/rxjs/issues/7017), related to [#7018](https://github.com/reactivex/rxjs/issues/7018) and [#6674](https://github.com/reactivex/rxjs/issues/6674)
52
-
53
- ### Performance Improvements
54
-
55
- - **animationFrames:** uses fewer Subscription instances ([#7060](https://github.com/reactivex/rxjs/issues/7060)) ([2d57b38](https://github.com/reactivex/rxjs/commit/2d57b38ec9f7ada838ee130ab75cd795b156c182)), closes [#7018](https://github.com/reactivex/rxjs/issues/7018)
56
-
57
- ## [7.5.6](https://github.com/reactivex/rxjs/compare/7.5.5...7.5.6) (2022-07-11)
58
-
59
- ### Bug Fixes
60
-
61
- - **share:** No longer results in a bad-state observable in an edge case where a synchronous source was shared and refCounted, and the result is subscribed to twice in a row synchronously. ([#7005](https://github.com/reactivex/rxjs/issues/7005)) ([5d4c1d9](https://github.com/reactivex/rxjs/commit/5d4c1d9a37b1347217223adb0d9e166fd85f67a9))
62
- - **share & connect:** `share` and `connect` no longer bundle scheduling code by default ([#6873](https://github.com/reactivex/rxjs/issues/6873)) ([9948dc2](https://github.com/reactivex/rxjs/commit/9948dc2f5577eaa4013de234f3552508918518c7)), closes [#6872](https://github.com/reactivex/rxjs/issues/6872)
63
- - **exhaustAll:** Result will now complete properly when flattening all synchronous observables. ([#6911](https://github.com/reactivex/rxjs/issues/6911)) ([3c1c6b8](https://github.com/reactivex/rxjs/commit/3c1c6b8303028eebc7af31cfc5e5bad42a5b2da4)), closes [#6910](https://github.com/reactivex/rxjs/issues/6910)
64
- - **TypeScript:** Now compatible with TypeScript 4.6 type checks ([#6895](https://github.com/reactivex/rxjs/issues/6895)) ([fce9aa1](https://github.com/reactivex/rxjs/commit/fce9aa12931796892673581761bba1f7ceafabff))
65
-
66
- ## [7.5.5](https://github.com/reactivex/rxjs/compare/7.5.4...7.5.5) (2022-03-08)
67
-
68
- ### Bug Fixes
69
-
70
- - **package:** add types to exports ([#6802](https://github.com/reactivex/rxjs/issues/6802)) ([3750f75](https://github.com/reactivex/rxjs/commit/3750f75104bb82d870c53c0605c942e41245d79c))
71
- - **package:** add `require` export condition ([#6821](https://github.com/reactivex/rxjs/issues/6821)) ([c8955e4](https://github.com/reactivex/rxjs/commit/c8955e4c6a972135030fdfddc18a7a48337ae9c7))
72
- - **timeout:** no longer will timeout when receiving the first value synchronously ([#6865](https://github.com/reactivex/rxjs/issues/6865)) ([2330c96](https://github.com/reactivex/rxjs/commit/2330c9660b20f2e0cda0c4eeb36bb582b4a85186)), closes [#6862](https://github.com/reactivex/rxjs/issues/6862)
73
-
74
- ### Performance Improvements
75
-
76
- - Don't clone observers unless you have to ([#6842](https://github.com/reactivex/rxjs/issues/6842)) ([3289d20](https://github.com/reactivex/rxjs/commit/3289d20ddc3a84d2aede8e3ab9962a8ef5d43c83))
77
-
78
- ## [7.5.4](https://github.com/reactivex/rxjs/compare/7.5.3...7.5.4) (2022-02-09)
79
-
80
- ### Performance Improvements
81
-
82
- - removed code that would `bind` functions passed with observers to `subscribe`. ([#6815](https://github.com/reactivex/rxjs/issues/6815)) ([fb375a0](https://github.com/reactivex/rxjs/commit/fb375a0c5befd6852cd63d3c310448e42fa9580e)), closes [#6783](https://github.com/reactivex/rxjs/issues/6783)
83
-
84
- ## [7.5.3](https://github.com/reactivex/rxjs/compare/7.5.2...7.5.3) (2022-02-08)
85
-
86
- ### Bug Fixes
87
-
88
- - **subscribe:** allow interop with Monio and other libraries that patch function bind ([0ab91eb](https://github.com/reactivex/rxjs/commit/0ab91eb4c1da914efbf03a2732629914cd3398dc)), closes [#6783](https://github.com/reactivex/rxjs/issues/6783)
89
-
90
- ## [7.5.2](https://github.com/reactivex/rxjs/compare/7.5.1...7.5.2) (2022-01-11)
91
-
92
- ### Bug Fixes
93
-
94
- - operators that ignore input values now use `unknown` rather than `any`, which should resolve issues with eslint no-unsafe-argument ([#6738](https://github.com/reactivex/rxjs/issues/6738)) ([67cb317](https://github.com/reactivex/rxjs/commit/67cb317a7a6b9fdbd3d2e8fdbc2ac9ac7e57179c)), closes [#6536](https://github.com/reactivex/rxjs/issues/6536)
95
- - **ajax:** crossDomain flag deprecated and properly reported to consumers ([#6710](https://github.com/reactivex/rxjs/issues/6710)) ([7fd0575](https://github.com/reactivex/rxjs/commit/7fd05756c595dddb288b732b00a90fcfb2a9080a)), closes [#6663](https://github.com/reactivex/rxjs/issues/6663)
96
-
97
- ## [7.5.1](https://github.com/reactivex/rxjs/compare/7.5.0...7.5.1) (2021-12-28)
98
-
99
- ### Bug Fixes
100
-
101
- - export supporting interfaces from top-level `rxjs` site. ([#6733](https://github.com/reactivex/rxjs/issues/6733)) ([299a1e1](https://github.com/reactivex/rxjs/commit/299a1e16f725edfc2e333c430e3a7dfc75dd94e7))
102
-
103
- # [7.5.0](https://github.com/reactivex/rxjs/compare/7.4.0...7.5.0) (2021-12-27)
104
-
105
- ### Bug Fixes
106
-
107
- - **takeWhile:** Now returns proper types when passed a `Boolean` constructor. ([#6633](https://github.com/reactivex/rxjs/issues/6633)) ([081ca2b](https://github.com/reactivex/rxjs/commit/081ca2ba7290aa3084c1477a6d4bcc573bf478f6))
108
- - **forEach:** properly unsubs after error in next handler ([#6677](https://github.com/reactivex/rxjs/issues/6677)) ([b9ab67d](https://github.com/reactivex/rxjs/commit/b9ab67d21ca9d227fcd1123bf80ab87ca9296af9)), closes [#6676](https://github.com/reactivex/rxjs/issues/6676)
109
- - **WebSocketSubject:** handle slow WebSocket close ([#6708](https://github.com/reactivex/rxjs/issues/6708)) ([8cb201c](https://github.com/reactivex/rxjs/commit/8cb201cd42dd751b4185b94fe2d36c6bfda02fe2)), closes [#4650](https://github.com/reactivex/rxjs/issues/4650) [#3935](https://github.com/reactivex/rxjs/issues/3935)
110
- - RxJS now supports tslib 2.x, rather than just 2.1.x ([#6692](https://github.com/reactivex/rxjs/issues/6692)) ([0b2495f](https://github.com/reactivex/rxjs/commit/0b2495f72e76627fdd19dd7a670dd74847d6449c)), closes [#6689](https://github.com/reactivex/rxjs/issues/6689)
111
- - schedulers will no longer error while rescheduling and unsubscribing during flushes ([e35f589](https://github.com/reactivex/rxjs/commit/e35f589e2ca10ab2d2d69f7e9fe60727edc4c53d)), closes [#6672](https://github.com/reactivex/rxjs/issues/6672)
112
-
113
- ### Features
114
-
115
- - **repeat:** now has configurable delay ([#6640](https://github.com/reactivex/rxjs/issues/6640)) ([6b7a534](https://github.com/reactivex/rxjs/commit/6b7a534f579f95f97f47eff74bdea9991ee85712))
116
-
117
- # [7.4.0](https://github.com/reactivex/rxjs/compare/7.3.1...7.4.0) (2021-10-06)
118
-
119
- ### Features
120
-
121
- - Add es2015 entries to the exports declaration to support Angular ([#6614](https://github.com/reactivex/rxjs/issues/6614)) ([268777b](https://github.com/reactivex/rxjs/commit/268777bc3a4fd0cf76882683b51809771741ddc3)), closes [/github.com/ReactiveX/rxjs/pull/6613#discussion_r716958551](https://github.com//github.com/ReactiveX/rxjs/pull/6613/issues/discussion_r716958551)
122
-
123
- ## [7.3.1](https://github.com/reactivex/rxjs/compare/7.3.0...7.3.1) (2021-10-01)
124
-
125
- ### Bug Fixes
126
-
127
- - **Schedulers:** Throwing a falsy error in a scheduled function no longer results in strange error objects. ([#6594](https://github.com/reactivex/rxjs/issues/6594)) ([c70fcc0](https://github.com/reactivex/rxjs/commit/c70fcc02b4b737709aba559bf36b030a47902ee4))
128
- - scheduling with Rx-provided schedulers will no longer leak action references ([#6562](https://github.com/reactivex/rxjs/issues/6562)) ([ff5a748](https://github.com/reactivex/rxjs/commit/ff5a748b31ee73a6517e2f4220c920c73fbdd1fc)), closes [#6561](https://github.com/reactivex/rxjs/issues/6561)
129
- - **forkJoin:** now finalizes sources before emitting ([#6546](https://github.com/reactivex/rxjs/issues/6546)) ([c52ff2e](https://github.com/reactivex/rxjs/commit/c52ff2e3aae19cd0877adb63182c03b79427de96)), closes [#4914](https://github.com/reactivex/rxjs/issues/4914)
130
- - **observeOn:** release action references on teardown ([321d205](https://github.com/reactivex/rxjs/commit/321d2052696a7c366786c1ef3be7ad2a98a55f62))
131
- - **types:** update schedule signature overload ([c61e57c](https://github.com/reactivex/rxjs/commit/c61e57c9c64a1525d034aea641f1b846737e1eee))
132
-
133
- # [7.3.0](https://github.com/reactivex/rxjs/compare/7.2.0...7.3.0) (2021-07-28)
134
-
135
- ### Bug Fixes
136
-
137
- - Expose `Connectable`, the return type of `connectable` ([#6531](https://github.com/reactivex/rxjs/issues/6531)) ([69f5bfa](https://github.com/reactivex/rxjs/commit/69f5bfae0eb2880a3d5cfb34db3a182182b325de)), closes [#6529](https://github.com/reactivex/rxjs/issues/6529)
138
- - **AsyncSubject:** properly emits values during reentrant subscriptions ([#6522](https://github.com/reactivex/rxjs/issues/6522)) ([dd8bdf3](https://github.com/reactivex/rxjs/commit/dd8bdf3b18b596155b66029ef16ebabf989360c5)), closes [#6520](https://github.com/reactivex/rxjs/issues/6520)
139
-
140
- ### Features
141
-
142
- - **retry:** Now supports configurable delay as a named argument ([#6421](https://github.com/reactivex/rxjs/issues/6421)) ([5f69795](https://github.com/reactivex/rxjs/commit/5f69795f4be035499cf223bf9a3d7352c4975291))
143
- - **tap:** Now supports subscribe, unsubscribe, and finalize handlers ([#6527](https://github.com/reactivex/rxjs/issues/6527)) ([eb26cbc](https://github.com/reactivex/rxjs/commit/eb26cbc4488c9953cdde565b598b1dbdeeeee9ea))
144
-
145
- # [7.2.0](https://github.com/reactivex/rxjs/compare/7.1.0...7.2.0) (2021-07-05)
146
-
147
- ### Bug Fixes
148
-
149
- - **debounceTime:** unschedule dangling task on unsubscribe before complete ([#6464](https://github.com/reactivex/rxjs/issues/6464)) ([7ab0a4c](https://github.com/reactivex/rxjs/commit/7ab0a4c649b1b54e763a726c4ffdc183b0b45b23))
150
- - **fromEvent:** Types now properly infer when resultSelector is provided ([#6447](https://github.com/reactivex/rxjs/issues/6447)) ([39b9d81](https://github.com/reactivex/rxjs/commit/39b9d818ef6ea033dc8e53800e3a220d56c76b4a))
151
-
152
- ### Features
153
-
154
- - Operators are all exported at the top level, from "rxjs". From here on out, we encourage top-level imports with RxJS. Importing from `rxjs/operators` will be deprecated soon. ([#6488](https://github.com/reactivex/rxjs/issues/6488)) ([512adc2](https://github.com/reactivex/rxjs/commit/512adc25f350660113275d8277d16b7f3eec1d49)), closes [#6242](https://github.com/reactivex/rxjs/issues/6242)
155
-
156
- # [7.1.0](https://github.com/reactivex/rxjs/compare/7.0.1...7.1.0) (2021-05-21)
157
-
158
- ### Bug Fixes
159
-
160
- - returned operator functions from multicast operators `share`, `publish`, `publishReplay` are now referentially transparent. Meaning if you take the result of calling `publishReplay(3)` and pass it to more than one observable's `pipe` method, it will behave the same in each case, rather than having a cumulative effect, which was a regression introduced sometime in version 6. If you required this broken behavior, there is a workaround posted [here](https://github.com/ReactiveX/rxjs/pull/6410#issuecomment-846087374) ([#6410](https://github.com/reactivex/rxjs/issues/6410)) ([e2f2e51](https://github.com/reactivex/rxjs/commit/e2f2e516514bdeb76229e69c639f10f21bccafad)), closes [/github.com/ReactiveX/rxjs/pull/6410#issuecomment-846087374](https://github.com//github.com/ReactiveX/rxjs/pull/6410/issues/issuecomment-846087374) [#5411](https://github.com/reactivex/rxjs/issues/5411)
161
-
162
- ### Features
163
-
164
- - All subjects now have an `observed` property. This will allow users to check whether a subject has current subscribers without us allowing access to the `observers` array, which is going to be made private in future versions. ([#6405](https://github.com/reactivex/rxjs/issues/6405)) ([f47425d](https://github.com/reactivex/rxjs/commit/f47425d349475231c0f3542bb6ecef16a63e933a))
165
- - **groupBy:** Support named arguments, support ObservableInputs for duration selector ([#5679](https://github.com/reactivex/rxjs/issues/5679)) ([7a99397](https://github.com/reactivex/rxjs/commit/7a9939773802c4f7948c6d868a8f75facdea9f37))
166
- - **share:** use another observable to control resets ([#6169](https://github.com/reactivex/rxjs/issues/6169)) ([12c3716](https://github.com/reactivex/rxjs/commit/12c3716cecbf01f353c980488bf18845177b37b6))
167
-
168
- ## [7.0.1](https://github.com/reactivex/rxjs/compare/7.0.0...7.0.1) (2021-05-12)
169
-
170
- ### Bug Fixes
171
-
172
- - **bindCallback:** resulting function now recreated underlying Subject and is reusable once again. ([#6369](https://github.com/reactivex/rxjs/issues/6369)) ([abf2bc1](https://github.com/reactivex/rxjs/commit/abf2bc13e38406717127159c8c373b910223b562))
173
- - **retry:** properly handles retry counts smaller than `1`. ([#6359](https://github.com/reactivex/rxjs/issues/6359)) ([e797bd7](https://github.com/reactivex/rxjs/commit/e797bd70b1368e189df00d697504304a3a5ef1a8))
174
- - **share:** properly closes synchronous "firehose" sources. ([#6370](https://github.com/reactivex/rxjs/issues/6370)) ([2271a91](https://github.com/reactivex/rxjs/commit/2271a9180131a0becdbf789c1429ef741ace4b2f))
175
- - Observable teardowns now properly called if `useDeprecatedSynchronousErrorHandling` is `true`. ([#6365](https://github.com/reactivex/rxjs/issues/6365)) ([e19e104](https://github.com/reactivex/rxjs/commit/e19e104d011233d83bc10c37f1ee0b3ac6e15612)), closes [#6364](https://github.com/reactivex/rxjs/issues/6364)
176
- - **Subscription:** properly release parent subscriptions when unsubscribed. ([#6352](https://github.com/reactivex/rxjs/issues/6352)) ([88331d2](https://github.com/reactivex/rxjs/commit/88331d2ecdcf0f81a0712b315ed810d4da7d4b97)), closes [#6351](https://github.com/reactivex/rxjs/issues/6351) [#6351](https://github.com/reactivex/rxjs/issues/6351)
177
- - **node**: do not reference DOM-related imports to assist in node usage. ([#6305](https://github.com/reactivex/rxjs/issues/6305)) ([b24818e](https://github.com/reactivex/rxjs/commit/b24818e96775045c7485932bf33349471e8f1363)), closes [#6297](https://github.com/reactivex/rxjs/issues/6297)
178
-
179
- # [7.0.0](https://github.com/reactivex/rxjs/compare/7.0.0-rc.3...7.0.0) (2021-04-29)
180
-
181
- ### Bug Fixes
182
-
183
- - VS code will now properly auto-import operators, et al ([#6276](https://github.com/reactivex/rxjs/issues/6276)) ([f43c728](https://github.com/reactivex/rxjs/commit/f43c72815f9ebe5ee3a8ed11513be0f541c9517d)), closes [#6067](https://github.com/reactivex/rxjs/issues/6067)
184
- - **AjaxResponse:** add stricter `type` (`AjaxResponseType`) ([#6279](https://github.com/reactivex/rxjs/issues/6279)) ([839e192](https://github.com/reactivex/rxjs/commit/839e192b7d826d833d7ce941be97c3735bd19c0a))
185
-
186
- # [7.0.0-rc.3](https://github.com/reactivex/rxjs/compare/7.0.0-rc.2...7.0.0-rc.3) (2021-04-28)
187
-
188
- ### Bug Fixes
189
-
190
- - finalize behaves well with useDeprecatedSynchronousErrorHandling ([#6251](https://github.com/reactivex/rxjs/issues/6251)) ([e4bed2a](https://github.com/reactivex/rxjs/commit/e4bed2a2bad994f05a39246707d4f203412cebbd)), closes [#6250](https://github.com/reactivex/rxjs/issues/6250)
191
- - resolve run-time errors when using deprecated sync error handling ([#6272](https://github.com/reactivex/rxjs/issues/6272)) ([35daaf7](https://github.com/reactivex/rxjs/commit/35daaf77d3a9a909a7ec22c362c97ac42a597f79)), closes [#6271](https://github.com/reactivex/rxjs/issues/6271)
192
- - resolve issue that made users unable to assert `instanceof AjaxError`. ([#6275](https://github.com/reactivex/rxjs/issues/6275)) ([a7c2d29](https://github.com/reactivex/rxjs/commit/a7c2d297ad6b2f405ac312b38f6360e9a645d890))
193
-
194
- ### Features
195
-
196
- - add config object to connectable ([#6267](https://github.com/reactivex/rxjs/issues/6267)) ([4d98b40](https://github.com/reactivex/rxjs/commit/4d98b40f969d5f55381f9a178ef3c18e6850cf47))
197
-
198
- ### BREAKING CHANGES
199
-
200
- - Our very new creation function, `connectable`, now takes a configuration object instead of just the `Subject` instance. This was necessary to make sure it covered all use cases for what we were trying to replace in the deprecated multicasting operators. Apologies for the late-in-the-game change, but we know it's not widely used yet (it's new in v7), and we want to get it right.
201
-
202
- # [7.0.0-rc.2](https://github.com/reactivex/rxjs/compare/7.0.0-rc.1...7.0.0-rc.2) (2021-04-20)
203
-
204
- ### Bug Fixes
205
-
206
- - **webSocket:** return the correct type for `WebSocketSubject` `multiplex` method([#6232](https://github.com/reactivex/rxjs/issues/6232)) ([33383b8](https://github.com/reactivex/rxjs/commit/33383b884d895fa77866362b8b00fd2e2c3597e6))
207
-
208
- ### Reverts
209
-
210
- - Revert "chore: Add typesVersions to package.json (#6229)" (#6241) ([304f3a7](https://github.com/reactivex/rxjs/commit/304f3a73e67871f9b37f39675e503174d3dcc23a)), closes [#6229](https://github.com/reactivex/rxjs/issues/6229) [#6241](https://github.com/reactivex/rxjs/issues/6241)
211
-
212
- # [7.0.0-rc.1](https://github.com/reactivex/rxjs/compare/7.0.0-rc.0...7.0.0-rc.1) (2021-04-19)
213
-
214
- ### Bug Fixes
215
-
216
- - **TypeScript:** Add typesVersions definition to package.json in order to help VS Code find automatic imports. ([#6067](https://github.com/reactivex/rxjs/issues/6067)) ([659a623](https://github.com/reactivex/rxjs/commit/659a623c94bd6b210e9beb6bb6061be540b05538))
217
-
218
- # [7.0.0-rc.0](https://github.com/reactivex/rxjs/compare/7.0.0-beta.15...7.0.0-rc.0) (2021-04-19)
219
-
220
- ### Bug Fixes
221
-
222
- - **symbol:** revert unique symbol in [#5874](https://github.com/reactivex/rxjs/issues/5874) ([#6224](https://github.com/reactivex/rxjs/issues/6224)) ([3c49429](https://github.com/reactivex/rxjs/commit/3c49429fadc31ebaddd143d4412907edc50e32be)), closes [#5919](https://github.com/reactivex/rxjs/issues/5919) [#6178](https://github.com/reactivex/rxjs/issues/6178) [#6175](https://github.com/reactivex/rxjs/issues/6175)
223
- - forkJoin/combineLatest return Observable<unknown> if passed any ([#6227](https://github.com/reactivex/rxjs/issues/6227)) ([ce0a2fa](https://github.com/reactivex/rxjs/commit/ce0a2fa975e7c08de2bbf893010f2c25c090b1ca)), closes [#6226](https://github.com/reactivex/rxjs/issues/6226)
224
- - **fromEvent:** match targets properly; fix result selector type ([#6208](https://github.com/reactivex/rxjs/issues/6208)) ([8412c73](https://github.com/reactivex/rxjs/commit/8412c739bb47cc45ec3f38327115301b4fcc0118))
225
- - **merge:** single array is not an array of sources ([#6211](https://github.com/reactivex/rxjs/issues/6211)) ([4e900dc](https://github.com/reactivex/rxjs/commit/4e900dc745b5fbd7659b104c49fb0fce4ae84707))
226
- - **pipe:** Ensure that `unknown` is inferred for 9+ arguments. ([#6212](https://github.com/reactivex/rxjs/issues/6212)) ([6fa819b](https://github.com/reactivex/rxjs/commit/6fa819beb91ba99dadd6262d6c13f7ddfd9470c5))
227
-
228
- ### Features
229
-
230
- - add (optional) defaultValue configuration to firstValueFrom and lastValueFrom ([#6204](https://github.com/reactivex/rxjs/issues/6204)) ([df51b04](https://github.com/reactivex/rxjs/commit/df51b04d7ec68a72b3a4b0d69c3bb29264c72611))
231
-
232
- # [7.0.0-beta.15](https://github.com/reactivex/rxjs/compare/7.0.0-beta.14...7.0.0-beta.15) (2021-03-31)
233
-
234
- ### Bug Fixes
235
-
236
- - **esm:** duplicate directory in export path ([#6194](https://github.com/reactivex/rxjs/issues/6194)) ([aa41462](https://github.com/reactivex/rxjs/commit/aa4146288ec6542754f41ffd260fa4d6936a4d22))
237
-
238
- # [7.0.0-beta.14](https://github.com/reactivex/rxjs/compare/7.0.0-beta.13...7.0.0-beta.14) (2021-03-30)
239
-
240
- ### Bug Fixes
241
-
242
- - **share:** No longer throws errors for reentrant observables ([#6151](https://github.com/reactivex/rxjs/issues/6151)) ([fc728cd](https://github.com/reactivex/rxjs/commit/fc728cdf2f395620cca347602e66f3d173c057b5)), closes [#6144](https://github.com/reactivex/rxjs/issues/6144)
243
-
244
- ### Features
245
-
246
- - **ajax:** Now allows configuration of query string parameters, via a `params` option in the request configuration ([#6174](https://github.com/reactivex/rxjs/issues/6174)) ([980f4d4](https://github.com/reactivex/rxjs/commit/980f4d4bb6a3bc1513a4335ed124f4d11b93d251))
247
- - **esm:** Added exports within package.json to enable scoped package loading. ([#6192](https://github.com/reactivex/rxjs/issues/6192)) ([33a9f06](https://github.com/reactivex/rxjs/commit/33a9f06f2c59c8aef3bb583bdb7d61d08ab597a0)), closes [sveltejs/kit#612](https://github.com/sveltejs/kit/issues/612) [nodejs/node#27408](https://github.com/nodejs/node/issues/27408)
248
- - **ReadableStreams:** RxJS now supports conversions for ReadableStreams e.g. `from(readableStream)`. ([#6163](https://github.com/reactivex/rxjs/issues/6163)) ([19d6502](https://github.com/reactivex/rxjs/commit/19d650223cf0e1964e893baca19f264154422a7d))
249
-
250
- # [7.0.0-beta.13](https://github.com/reactivex/rxjs/compare/7.0.0-beta.12...7.0.0-beta.13) (2021-03-15)
251
-
252
- ### Bug Fixes
253
-
254
- - **fromEvent:** throw if passed invalid target ([#6136](https://github.com/reactivex/rxjs/issues/6136)) ([317ba0c](https://github.com/reactivex/rxjs/commit/317ba0c9254e447385414e2c57e1d81760f88aa6)), closes [#5823](https://github.com/reactivex/rxjs/issues/5823)
255
- - remove misused type parameter from static pipe ([#6119](https://github.com/reactivex/rxjs/issues/6119)) ([8dc7d17](https://github.com/reactivex/rxjs/commit/8dc7d1793b4067d9eedc42b28d49ace8296672f5)), closes [#5557](https://github.com/reactivex/rxjs/issues/5557)
256
- - **Subscriber:** don't leak destination ([#6116](https://github.com/reactivex/rxjs/issues/6116)) ([5bba36c](https://github.com/reactivex/rxjs/commit/5bba36c6dde5b1b4b7e434104e716b233e5f402c))
257
- - **combineLatest:** POJO signature should match only ObservableInput values ([#6103](https://github.com/reactivex/rxjs/issues/6103)) ([d633494](https://github.com/reactivex/rxjs/commit/d633494dcdcabecda2c64ee84b8b6ceeaa2cb3d8))
258
- - **forkJoin:** POJO signature should match only ObservableInput values ([#6095](https://github.com/reactivex/rxjs/issues/6095)) ([566427e](https://github.com/reactivex/rxjs/commit/566427e88e597589f21b8cfb057dd13d5c61e0f2))
259
- - predicates that return `any` will now behave property with findIndex ([#6097](https://github.com/reactivex/rxjs/issues/6097)) ([c6f73d6](https://github.com/reactivex/rxjs/commit/c6f73d687e6b2142da4cab2a66047cc6dd123bf9))
260
- - remove misused type parameter from isObservable ([#6083](https://github.com/reactivex/rxjs/issues/6083)) ([f16b634](https://github.com/reactivex/rxjs/commit/f16b6341eef85009fc16de13623dc860d8d87778))
261
- - unhandled errors in observers correctly scheduled ([#6118](https://github.com/reactivex/rxjs/issues/6118)) ([c02ceb7](https://github.com/reactivex/rxjs/commit/c02ceb75e3de12fedbe270d5d323f508171f9cfd))
262
- - **defaultIfEmpty:** Allow `undefined` as an argument, require an argument ([4983760](https://github.com/reactivex/rxjs/commit/4983760b9179da27ddfcbf419ac5975cff9447c9)), closes [#6064](https://github.com/reactivex/rxjs/issues/6064)
263
- - **elementAt:** Allow `defaultValue` of `undefined`. ([5bc1b3e](https://github.com/reactivex/rxjs/commit/5bc1b3e22deceb5ea5f1882c0f92f061c1c4792d))
264
- - **first:** Allow `defaultValue` of `undefined`. ([62a6bbe](https://github.com/reactivex/rxjs/commit/62a6bbe1c3c51468c57e4e8f754c1c09da2db51b))
265
- - **last:** Allow `defaultValue` of `undefined`. ([ef3e721](https://github.com/reactivex/rxjs/commit/ef3e721f440132cf199f662b6a987349a0a70418))
266
-
267
- ### Features
268
-
269
- - rename and alias `combineLatest` as `combineLatestAll` for consistency ([#6079](https://github.com/reactivex/rxjs/issues/6079)) ([42cee80](https://github.com/reactivex/rxjs/commit/42cee8045594779e8802b370c7244e6bbeeccaa3)), closes [#4590](https://github.com/reactivex/rxjs/issues/4590)
270
-
271
- ### BREAKING CHANGES
272
-
273
- - **defaultIfEmpty:** `defaultIfEmpty` requires a value be passed. Will no longer convert `undefined` to `null` for no good reason.
274
-
275
- # [7.0.0-beta.12](https://github.com/reactivex/rxjs/compare/7.0.0-beta.11...7.0.0-beta.12) (2021-02-27)
276
-
277
- 5bc8e3361 Fix/6052 ajax responseType should default to "json" (#6056)
278
-
279
- ### Bug Fixes
280
-
281
- - **ajax**: `responseType` is now properly defaulted to `"json"` again. ([#6056](https://github.com/reactivex/rxjs/issues/6056)) ([5bc8e3361](https://github.com/reactivex/rxjs/commit/5bc8e3361))
282
- - Corner case resolved where an error thrown in a completion handler might delay teardown if it happened to be after a completing operator like `take`. ([#6062](https://github.com/reactivex/rxjs/issues/6062)) ([a2b9563](https://github.com/reactivex/rxjs/commit/a2b95631be882d2cf0fd87f43804d1ed699591d7))
283
- - **AsyncGenerator support**: consumed async generators are now properly finalized. ([#6062](https://github.com/reactivex/rxjs/issues/6062)) ([a2b9563](https://github.com/reactivex/rxjs/commit/a2b95631be882d2cf0fd87f43804d1ed699591d7)), closes [#5998](https://github.com/reactivex/rxjs/issues/5998)
284
- - **throttle:** no longer emits more than necessary in sync/sync trailing case ([#6059](https://github.com/reactivex/rxjs/issues/6059)) ([9da638a](https://github.com/reactivex/rxjs/commit/9da638a70d5abb862439ab4ee6a55368228811b0)), closes [#6058](https://github.com/reactivex/rxjs/issues/6058)
285
-
286
- # [7.0.0-beta.11](https://github.com/reactivex/rxjs/compare/7.0.0-beta.10...7.0.0-beta.11) (2021-02-24)
287
-
288
- ### Bug Fixes
289
-
290
- - **ajax:** now errors on forced abort ([#6041](https://github.com/reactivex/rxjs/issues/6041)) ([d950921](https://github.com/reactivex/rxjs/commit/d95092143c1860eef054d27f2a1e50cb98b0ef58)), closes [#4251](https://github.com/reactivex/rxjs/issues/4251)
291
- - **buffer:** closingNotifier completion does not complete resulting observable ([358ae84](https://github.com/reactivex/rxjs/commit/358ae84cb9d59170216e7e0845c192eb3e1dcb51))
292
- - **buffer:** Remaining buffer will correctly be emitted on source close. ([0c667d5](https://github.com/reactivex/rxjs/commit/0c667d596d4a14002ffe9d4db319ed7cd7442ada)), closes [#3990](https://github.com/reactivex/rxjs/issues/3990) [#6035](https://github.com/reactivex/rxjs/issues/6035)
293
- - **debounceTime:** improves performance on quick succession of emits ([#6049](https://github.com/reactivex/rxjs/issues/6049)) ([9b70861](https://github.com/reactivex/rxjs/commit/9b708613cb7687647dc43c5e15b821e17ccc23ef))
294
- - **distinctUntilChanged:** Ensure reentrant code is compared properly ([#6014](https://github.com/reactivex/rxjs/issues/6014)) ([0ebcf17](https://github.com/reactivex/rxjs/commit/0ebcf1751a5359072b137ff197789570be4d7ead))
295
- - **share:** Ensure proper memory clean up ([1aa400a](https://github.com/reactivex/rxjs/commit/1aa400a5214325bc843a74602022a7912da20166))
296
- - **window:** final window stays open until source complete ([e8b05ef](https://github.com/reactivex/rxjs/commit/e8b05ef090d33af5b883e8020b8b7a3c4c8fa30e))
297
- - **concat/merge:** operators will finalize inners before moving to the next ([#6010](https://github.com/reactivex/rxjs/issues/6010)) ([5249a23](https://github.com/reactivex/rxjs/commit/5249a23b38bdda4639e9d669afd62a624172f89c)), closes [#3338](https://github.com/reactivex/rxjs/issues/3338)
298
- - predicates that return `any` will now behave property in TS ([#5987](https://github.com/reactivex/rxjs/issues/5987)) ([f5ae97d](https://github.com/reactivex/rxjs/commit/f5ae97d49a35b9f99ac59f79dd244a6d8d6c8a7b)), closes [#5986](https://github.com/reactivex/rxjs/issues/5986)
299
- - `publish` variants returning `ConnectableObservable` not properly utilizing lift ([#6003](https://github.com/reactivex/rxjs/issues/6003)) ([9acb950](https://github.com/reactivex/rxjs/commit/9acb950aec9efda95eb7492bfc47a33b71ef2e55))
300
- - Resolve issues with deprecated synchronous error handling and chained operators ([#5980](https://github.com/reactivex/rxjs/issues/5980)) ([0ad2802](https://github.com/reactivex/rxjs/commit/0ad2802a5aa9cd19875dc05c1cfb33f0b2f2c153)), closes [#5979](https://github.com/reactivex/rxjs/issues/5979)
301
- - `useDeprecatedSynchronousErrorThrowing` honored for flattened sync sources ([#5984](https://github.com/reactivex/rxjs/issues/5984)) ([abd95ce](https://github.com/reactivex/rxjs/commit/abd95ce1aa81a64de81c074a72570a8f0949cd0d)), closes [#5983](https://github.com/reactivex/rxjs/issues/5983)
302
-
303
- ### Features
304
-
305
- - **ajax:** Add option for streaming progress ([#6001](https://github.com/reactivex/rxjs/issues/6001)) ([873e52d](https://github.com/reactivex/rxjs/commit/873e52d0d67b0f8470e6290c6fbc35c571464aaf))
306
- - **exhaustAll:** renamed `exhaust` to `exhaustAll` ([#5639](https://github.com/reactivex/rxjs/issues/5639)) ([701c7d4](https://github.com/reactivex/rxjs/commit/701c7d48cf1c3e60941692010254d6a27fc70980))
307
-
308
- ### BREAKING CHANGES
309
-
310
- - **window:** The `windowBoundaries` observable no longer completes the result. It was only ever meant to notify of the window boundary. To get the same behavior as the old behavior, you would need to add an `endWith` and a `skipLast(1)` like so: `source$.pipe(window(notifier$.pipe(endWith(true))), skipLast(1))`.
311
- - **buffer:** Final buffered values will now always be emitted. To get the same behavior as the previous release, you can use `endWith` and `skipLast(1)`, like so: `source$.pipe(buffer(notifier$.pipe(endWith(true))), skipLast(1))`
312
- - **buffer:** `closingNotifier` completion no longer completes the result of `buffer`. If that is truly a desired behavior, then you should use `takeUntil`. Something like: `source$.pipe(buffer(notifier$), takeUntil(notifier$.pipe(ignoreElements(), endWith(true))))`, where `notifier$` is multicast, although there are many ways to compose this behavior.
313
-
314
- # [7.0.0-beta.10](https://github.com/reactivex/rxjs/compare/7.0.0-beta.9...7.0.0-beta.10) (2021-01-18)
315
-
316
- ### Bug Fixes
317
-
318
- - **combineLatest:** Ensure `EMPTY` is returned if no observables are passed. ([#5963](https://github.com/reactivex/rxjs/issues/5963)) ([157c7e8](https://github.com/reactivex/rxjs/commit/157c7e8068befdfb26a9ba6ca770d38a66966ab5)), closes [#5962](https://github.com/reactivex/rxjs/issues/5962)
319
- - **fromEvent:** fixed HasEventTargetAddRemove to support EventTarget types ([#5945](https://github.com/reactivex/rxjs/issues/5945)) ([5f022d7](https://github.com/reactivex/rxjs/commit/5f022d784570684632e6fd5ae247fc259ee34c4b))
320
-
321
- ### Features
322
-
323
- - **connect:** Adds new `connect` operator. ([9d53af0](https://github.com/reactivex/rxjs/commit/9d53af04103dbbb3bae40a4c511e2eebf117be09))
324
- - **connectable:** Adds `connectable` creation method ([f968a79](https://github.com/reactivex/rxjs/commit/f968a791c1b48f3100e925d700e8a0ecd69cc7e5))
325
- - **share:** Make `share` completely configurable. Also adds `SubjectLike`. ([2d600c7](https://github.com/reactivex/rxjs/commit/2d600c75c1065d862a2089dc1cd26007996b1c9d))
326
- - **TestScheduler:** add `expectObservable(a$).toEqual(b$)`. ([3372c72](https://github.com/reactivex/rxjs/commit/3372c72ed77a96e29a613a620e85f93bcf447920))
327
-
328
- ### Performance Improvements
329
-
330
- - ensure same hidden class for OperatorSubscriber ([#5878](https://github.com/reactivex/rxjs/issues/5878)) ([246b449](https://github.com/reactivex/rxjs/commit/246b44902acde3a80e659f362969e6e2f8b19ef2))
331
-
332
- ### BREAKING CHANGES
333
-
334
- - **share:** The TypeScript type `Subscribable` now only supports what is a valid return for `[Symbol.observable]()`.
335
- - **share:** The TypeScript type `Observer` no longer incorrectly has an optional `closed` property.
336
-
337
- # [7.0.0-beta.9](https://github.com/reactivex/rxjs/compare/7.0.0-beta.8...7.0.0-beta.9) (2020-12-07)
338
-
339
- ### Bug Fixes
340
-
341
- - **audit:** don't signal on complete ([54cb428](https://github.com/reactivex/rxjs/commit/54cb42823ceec4db469f6155de67993b67ec85be))
342
- - **bufferToggle:** don't signal on complete ([65686ff](https://github.com/reactivex/rxjs/commit/65686ffd23f2d5a5145f2b7c33ea739e9bb808cd))
343
- - **bufferWhen:** don't signal on complete ([a2ba364](https://github.com/reactivex/rxjs/commit/a2ba364ede3c69c7703795a744f57122b49eac40))
344
- - **debounce:** don't signal on complete ([c919c68](https://github.com/reactivex/rxjs/commit/c919c684ad63724f0b55ccc4561f847773d945c8))
345
- - **delayWhen:** no longer emits if duration selector is empty ([#5769](https://github.com/reactivex/rxjs/issues/5769)) ([0872341](https://github.com/reactivex/rxjs/commit/087234146760ab2c67a04f9f0b5494a93affadb7)), closes [#3665](https://github.com/reactivex/rxjs/issues/3665)
346
- - **forkJoin:** ensure readonly array argument `forkJoin([a$, b$, c$] as const)` result is correct ([6baec53](https://github.com/reactivex/rxjs/commit/6baec536015253ac96827f2136ede17a324c634e))
347
- - **iif:** No longer allow accidental undefined arguments ([#5829](https://github.com/reactivex/rxjs/issues/5829)) ([23b98b4](https://github.com/reactivex/rxjs/commit/23b98b4e61c3284c81c07a8d810e8c3ec99ddfec))
348
- - **sample:** don't signal on complete ([95e0b70](https://github.com/reactivex/rxjs/commit/95e0b703caaf288657c7d722b9823458280be88b))
349
- - **Symbol.observable:** properly defined as a `unique symbol`. ([#5874](https://github.com/reactivex/rxjs/issues/5874)) ([374138e](https://github.com/reactivex/rxjs/commit/374138e09eb7ceb6f8da556c6c11dea1ba8cdbee)), closes [#5861](https://github.com/reactivex/rxjs/issues/5861) [#4415](https://github.com/reactivex/rxjs/issues/4415)
350
- - **throttle:** don't signal on complete ([4af0227](https://github.com/reactivex/rxjs/commit/4af022753d6dd4e94bcfcf0cc6082bb2312a3f02))
351
- - **windowToggle:** don't signal on complete ([9cb56c4](https://github.com/reactivex/rxjs/commit/9cb56c45de289ef5b062f33971996bdb8414cf99)), closes [#5838](https://github.com/reactivex/rxjs/issues/5838)
352
- - use empty object type in combineLatest/forkJoin sigs ([#5832](https://github.com/reactivex/rxjs/issues/5832)) ([22aaaa2](https://github.com/reactivex/rxjs/commit/22aaaa2f03dc721f850d9836243773c5310e85e8))
353
- - **withLatestFrom:** allow synchronous source ([#5828](https://github.com/reactivex/rxjs/issues/5828)) ([adbe65e](https://github.com/reactivex/rxjs/commit/adbe65e659bbf17f6ab20a9b30fcca0e4d76af9a))
354
-
355
- ### Features
356
-
357
- - stopped notification handler ([#5750](https://github.com/reactivex/rxjs/issues/5750)) ([cfa267b](https://github.com/reactivex/rxjs/commit/cfa267bc0916ede09c8b14aedcdb69a791055fb6))
358
- - support emoji in marble diagrams ([#5907](https://github.com/reactivex/rxjs/issues/5907)) ([1b4608c](https://github.com/reactivex/rxjs/commit/1b4608cea3a9db96d7a629ad5de0e100145c180e))
359
- - **filter:** improve type inference for filter(Boolean) ([#5831](https://github.com/reactivex/rxjs/issues/5831)) ([d2658fa](https://github.com/reactivex/rxjs/commit/d2658fa32d7a86ac1e0796c452df258fc5470f67))
360
-
361
- ### BREAKING CHANGES
362
-
363
- - **windowToggle:** the observable returned by the windowToggle operator's
364
- closing selector must emit a next notification to close the window.
365
- Complete notifications no longer close the window.
366
- - **bufferToggle:** the observable returned by the bufferToggle operator's
367
- closing selector must emit a next notification to close the buffer.
368
- Complete notifications no longer close the buffer.
369
- - **bufferWhen:** the observable returned by the bufferWhen operator's
370
- closing selector must emit a next notification to close the buffer.
371
- Complete notifications no longer close the buffer.
372
- - **debounce:** the observable returned by the debounce operator's
373
- duration selector must emit a next notification to end the duration.
374
- Complete notifications no longer end the duration.
375
- - **throttle:** the observable returned by the throttle operator's
376
- duration selector must emit a next notification to end the duration.
377
- Complete notifications no longer end the duration.
378
- - **sample:** the sample operator's notifier observable must emit a next notification to effect a sample. Complete notifications no longer effect a sample.
379
- - **audit:** the observable returned by the audit operator's duration selector must emit a next notification to end the duration. Complete notifications no longer end the duration.
380
- - **Symbol.observable:** `rxjs@7` is only compatible with `@types/node@14.14.3` or higher and `symbol-observable@3.0.0` and higher. Older versions of `@types/node` incorrectly defined `Symbol.observable` and will be in conflict with `rxjs` and `symbol-observable@3.0.0`.
381
- - **delayWhen:** `delayWhen` will no longer emit if the duration selector simply completes without a value. Notifiers must notify with a value, not a completion.
382
- - **iif:** `iif` will no longer allow result arguments that are `undefined`. This was a bad call pattern that was likely an error in most cases. If for some reason you are relying on this behavior, simply substitute `EMPTY` in place of the `undefined` argument. This ensures that the behavior was intentional and desired, rather than the result of an accidental `undefined` argument.
383
-
384
- # [7.0.0-beta.8](https://github.com/reactivex/rxjs/compare/7.0.0-beta.7...7.0.0-beta.8) (2020-10-15)
385
-
386
- ### Bug Fixes
387
-
388
- - **audit, auditTime:** audit and auditTime emit last value after source completes ([#5799](https://github.com/reactivex/rxjs/issues/5799)) ([643bc85](https://github.com/reactivex/rxjs/commit/643bc85ab17a15a5d96f8bef8f08c3987d16eb40)), closes [#5730](https://github.com/reactivex/rxjs/issues/5730)
389
- - No longer allow invalid "Subscribable" type as valid observable source in `from` and others. ([258dddd](https://github.com/reactivex/rxjs/commit/258dddd8a392456e7d0b5ed9a7e294044f7c2518)), closes [#4532](https://github.com/reactivex/rxjs/issues/4532)
390
- - **bindNodeCallback:** ensure underlying function is not called twice during subscription ([#5780](https://github.com/reactivex/rxjs/issues/5780)) ([74aa4b2](https://github.com/reactivex/rxjs/commit/74aa4b2ea6685f475329a8b8ecbcebed9adae547))
391
- - **delay:** Now properly handles Date and negative numbers ([#5719](https://github.com/reactivex/rxjs/issues/5719)) ([868c02b](https://github.com/reactivex/rxjs/commit/868c02b47bb6f4ec4cd1d68b5b474731c470f27e)), closes [#5232](https://github.com/reactivex/rxjs/issues/5232)
392
- - **delayWhen:** only deprecates when subscriptionDelay presents ([#5797](https://github.com/reactivex/rxjs/issues/5797)) ([43d1731](https://github.com/reactivex/rxjs/commit/43d17311a521234375146029aa5c4709cb221344))
393
- - **every:** index properly increments in predicate ([5686f83](https://github.com/reactivex/rxjs/commit/5686f838fdc3da710d3f1eed1a6381791e3cc644))
394
- - **firstValueFrom:** now unsubscribes from source after first value is received ([#5813](https://github.com/reactivex/rxjs/issues/5813)) ([a321516](https://github.com/reactivex/rxjs/commit/a321516908aa036fb658395a372668a986af2504)), closes [#5811](https://github.com/reactivex/rxjs/issues/5811)
395
- - **from:** objects that are thennable that happen to have a subscribe method will no longer error. ([789d6e3](https://github.com/reactivex/rxjs/commit/789d6e3d851d57ab3b4488381f702120fd079737))
396
- - **fromEvent:** now properly types JQuery event targets ([b5aa15a](https://github.com/reactivex/rxjs/commit/b5aa15a7f58377310438aa5957e1516749d36219))
397
- - **mergeScan:** no longer emits state again upon completion. ([#5805](https://github.com/reactivex/rxjs/issues/5805)) ([68c2894](https://github.com/reactivex/rxjs/commit/68c28943b4d2c51068fecbc359a68ca6982307bf)), closes [#5372](https://github.com/reactivex/rxjs/issues/5372)
398
- - **throttle:** now supports synchronous duration selectors ([55e953e](https://github.com/reactivex/rxjs/commit/55e953e1f7b915e6c9072bf14a2febd5b8431393)), closes [#5658](https://github.com/reactivex/rxjs/issues/5658)
399
- - **throttle:** trailing values will now emit after source completes ([d5fd69c](https://github.com/reactivex/rxjs/commit/d5fd69c123d2232335563eea95c69c07576d079d))
400
- - **timeout:** allows synchronous observable as a source ([84c5c0b](https://github.com/reactivex/rxjs/commit/84c5c0b9d9e0d1791ac2f066c26e462e822d73e1)), closes [#5746](https://github.com/reactivex/rxjs/issues/5746)
401
- - **zip:** zip now accepts an array of arguments like its counterparts ([3123b67](https://github.com/reactivex/rxjs/commit/3123b670cca9b77919845333952ef70275ed6e90))
402
-
403
- ### Code Refactoring
404
-
405
- - **count:** Base off of `reduce`. ([98a6d09](https://github.com/reactivex/rxjs/commit/98a6d0991df2a28366ab8f34098109a67257c235))
406
- - **pairs:** Based off of `from` and `Object.entries` ([#5775](https://github.com/reactivex/rxjs/issues/5775)) ([d39f830](https://github.com/reactivex/rxjs/commit/d39f8309c33917cb7070c7432fcd382395e4211e))
407
-
408
- ### Features
409
-
410
- - **ajax:** now supports passing custom XSRF cookies in a custom header ([#5702](https://github.com/reactivex/rxjs/issues/5702)) ([1a2c2e4](https://github.com/reactivex/rxjs/commit/1a2c2e49482a460778ea92c7f6a92e58cc3e87bb)), closes [#4003](https://github.com/reactivex/rxjs/issues/4003)
411
- - **switchScan:** add switchScan() operator ([#4442](https://github.com/reactivex/rxjs/issues/4442)) ([73fa910](https://github.com/reactivex/rxjs/commit/73fa910cb62eccbccc4b4249f9b2606095704328)), closes [#2931](https://github.com/reactivex/rxjs/issues/2931)
412
-
413
- ### BREAKING CHANGES
414
-
415
- - **mergeScan:** `mergeScan` will no longer emit its inner state again upon completion.
416
- - **pairs:** `pairs` will no longer function in IE without a polyfill for `Object.entries`. `pairs` itself is also deprecated in favor of users just using `from(Object.entries(obj))`.
417
- - **zip:** Zipping a single array will now have a different result. This is an extreme corner-case, because it is very unlikely that anyone would want to zip an array with nothing at all. The workaround would be to wrap the array in another array `zip([[1,2,3]])`. But again, that's pretty weird.
418
- - **count:** No longer passes `source` observable as a third argument to the predicate. That feature was rarely used, and of limited value. The workaround is to simply close over the source inside of the function if you need to access it in there.
419
-
420
- # [7.0.0-beta.7](https://github.com/reactivex/rxjs/compare/7.0.0-beta.5...7.0.0-beta.7) (2020-09-23)
421
-
422
- ### Bug Fixes
423
-
424
- - **multicast:** and other publish variants will handle errors thrown in a selector appropriately ([bde8eda](https://github.com/reactivex/rxjs/commit/bde8eda09310463b05c5ec7d8a1dd1bafe9dba6f))
425
-
426
- ### Code Refactoring
427
-
428
- - **tap:** reduce the size of the implementation ([1222d5a](https://github.com/reactivex/rxjs/commit/1222d5a68faa9d3f3c9ad8f8d5db1440971502bd))
429
- - **Subscriber:** Massively untangle Subscriber and SafeSubscriber ([07902ca](https://github.com/reactivex/rxjs/commit/07902ca99ee828521ce238826f10b55e25fbf554))
430
-
431
- ### BREAKING CHANGES
432
-
433
- - **Subscriber:** `new Subscriber` no longer takes 0-3 arguments. To create a `Subscriber` with 0-3 arguments, use `Subscriber.create`. However, please note that there is little to no reason that you should be creating `Subscriber` references directly, and `Subscriber.create` and `new Subscriber` are both deprecated.
434
-
435
- # [7.0.0-beta.6](https://github.com/reactivex/rxjs/compare/7.0.0-beta.5...7.0.0-beta.6) (2020-09-23)
436
-
437
- ### Bug Fixes
438
-
439
- - **AsyncSubject:** fixed reentrancy issue in complete ([9e00f11](https://github.com/reactivex/rxjs/commit/9e00f11e992d223edf1013d0a44c7cad41b72470)), closes [/github.com/ReactiveX/rxjs/pull/5729/files/30d429cf1b791db15c04a61f6a683e189b53fb3e#r492314703](https://github.com//github.com/ReactiveX/rxjs/pull/5729/files/30d429cf1b791db15c04a61f6a683e189b53fb3e/issues/r492314703)
440
- - **delay:** proper handling of absolute time (`Date`) passed as an argument ([8ae89b1](https://github.com/reactivex/rxjs/commit/8ae89b19a095541eb3dfe6e6d9f26367486c435e))
441
- - **fromEvent:** properly teardown for ArrayLike targets ([066de74](https://github.com/reactivex/rxjs/commit/066de7408810864891b9fd16e05c6c8b4ca88087))
442
- - **ReplaySubject:** no longer buffers additional values after it's already stopped ([#5696](https://github.com/reactivex/rxjs/issues/5696)) ([a08232b](https://github.com/reactivex/rxjs/commit/a08232be6dcab74e94cfbb17cc5138050bcd6ddb))
443
- - **scan:** proper indexes when seed is not supplied ([f93fb9c](https://github.com/reactivex/rxjs/commit/f93fb9c1fb7434c97e1d156370756159c5f2b077)), closes [#4348](https://github.com/reactivex/rxjs/issues/4348) [#3879](https://github.com/reactivex/rxjs/issues/3879)
444
- - **windowTime:** Passing no creation interval will now properly open new window when old one closes ([cbd0ac0](https://github.com/reactivex/rxjs/commit/cbd0ac0478730ec10172b57210e7d269d1ce62a2))
445
-
446
- ### Code Refactoring
447
-
448
- - **Massive Size Reduction:** reduced the size of all operator implementations as well as other utilities and types ([#5729](https://github.com/reactivex/rxjs/issues/5729)) ([4d3fc23](https://github.com/reactivex/rxjs/commit/fc41e13a1b9a05fc242c1369b4f597c931bd28b5))
449
-
450
- ### Features
451
-
452
- - **onUnhandledError:** configuration point added for unhandled errors ([#5681](https://github.com/reactivex/rxjs/issues/5681)) ([3485dd5](https://github.com/reactivex/rxjs/commit/3485dd5149b731e1103d2d070e3892735cbacef1))
453
- - **skipLast:** counts zero or less will mirror the source ([02e113b](https://github.com/reactivex/rxjs/commit/02e113b3345a9efe8f7c29f8b9c1c0d088aaf726))
454
-
455
- ### BREAKING CHANGES
456
-
457
- - **skipLast:** `skipLast` will no longer error when passed a negative number, rather it will simply return the source, as though `0` was passed.
458
- - **map:** `thisArg` will now default to `undefined`. The previous default of `MapSubscriber` never made any sense. This will only affect code that calls map with a `function` and references `this` like so: `source.pipe(map(function () { console.log(this); }))`. There wasn't anything useful about doing this, so the breakage is expected to be very minimal. If anything we're no longer leaking an implementation detail.
459
- - **onUnhandledError:** Errors that occur during setup of an observable subscription after the subscription has emitted an error or completed will now throw in their own call stack. Before it would call `console.warn`. This is potentially breaking in edge cases for node applications, which may be configured to terminate for unhandled exceptions. In the unlikely event this affects you, you can configure the behavior to `console.warn` in the new configuration setting like so: `import { config } from 'rxjs'; config.onUnhandledError = (err) => console.warn(err);`
460
-
461
- # [7.0.0-beta.5](https://github.com/reactivex/rxjs/compare/7.0.0-beta.4...7.0.0-beta.5) (2020-09-03)
462
-
463
- ### Bug Fixes
464
-
465
- - **ajax:** Allow XHR to perform body serialization and set content-type where possible ([d8657ed](https://github.com/reactivex/rxjs/commit/d8657ede8d9620ac2a7d61557e1f1d0e89b0b52a)), closes [#2837](https://github.com/reactivex/rxjs/issues/2837)
466
- - **ajax:** Do not mutate headers passed as arguments ([0d66ba4](https://github.com/reactivex/rxjs/commit/0d66ba458f07fba51cfc73440d01ef453c24cda7)), closes [#2801](https://github.com/reactivex/rxjs/issues/2801)
467
- - **bindCallback:** now emits errors that happen after callback ([2bddd31](https://github.com/reactivex/rxjs/commit/2bddd317fad962ad375de4a04dd528b02479ec5b))
468
- - **bindNodeCallback:** now emits errors that happen after callback ([edc28cf](https://github.com/reactivex/rxjs/commit/edc28cfd13ba3d7fadc24ea3c20ec8ca5a19064d))
469
- - **buffer:** Ensure notifier is subscribed after source ([#5654](https://github.com/reactivex/rxjs/issues/5654)) ([c088b0e](https://github.com/reactivex/rxjs/commit/c088b0eca904ab835b23df629d472003d6a82561)), closes [#2195](https://github.com/reactivex/rxjs/issues/2195) [#1754](https://github.com/reactivex/rxjs/issues/1754)
470
- - **catchError:** ensure proper handling of async return for synchronous source error handling ([#5627](https://github.com/reactivex/rxjs/issues/5627)) ([1b29d4b](https://github.com/reactivex/rxjs/commit/1b29d4b6d42e3d6b649f9f2c4bb718f343233d83)), closes [#5115](https://github.com/reactivex/rxjs/issues/5115)
471
- - **catchError:** inner synchronous observables will properly terminate ([#5655](https://github.com/reactivex/rxjs/issues/5655)) ([d3fd2fb](https://github.com/reactivex/rxjs/commit/d3fd2fb2bd619b79d0c4afebc3c10299afbca262))
472
- - **errors:** Custom RxJS errors now all have a call stack ([#5686](https://github.com/reactivex/rxjs/issues/5686)) ([9bb046c](https://github.com/reactivex/rxjs/commit/9bb046c744cc1f9438a805849b655946e5793936)), closes [#4250](https://github.com/reactivex/rxjs/issues/4250)
473
- - **onErrorResumeNext:** observables always finalized before moving to next source ([#5650](https://github.com/reactivex/rxjs/issues/5650)) ([ff68ad2](https://github.com/reactivex/rxjs/commit/ff68ad2caa3d275a23416984fab5570d3fed9458))
474
- - **package.json:** change homepage setting to official docs site. ([#5669](https://github.com/reactivex/rxjs/issues/5669)) ([e57c402](https://github.com/reactivex/rxjs/commit/e57c402b29288f61fe886b00e51817730bcb320b))
475
- - **repeat:** Ensure teardown happens between repeated synchronous obs… ([#5620](https://github.com/reactivex/rxjs/issues/5620)) ([0ca8a65](https://github.com/reactivex/rxjs/commit/0ca8a65b73aea93172366ca67207b53e3e3e77a8))
476
- - **repeatWhen:** Ensure teardown happens between repeat subscriptions ([#5625](https://github.com/reactivex/rxjs/issues/5625)) ([98356f4](https://github.com/reactivex/rxjs/commit/98356f4ebefdba1f5a14edbd96de1592694a01a8))
477
- - **retry:** Ensure teardown happens before resubscription with synchronous observables ([6f90597](https://github.com/reactivex/rxjs/commit/6f90597e51e038dabd8397b9f066ab4e3d344a5b)), closes [#5620](https://github.com/reactivex/rxjs/issues/5620)
478
- - **retryWhen:** Ensure subscription tears down between retries ([#5623](https://github.com/reactivex/rxjs/issues/5623)) ([6752af7](https://github.com/reactivex/rxjs/commit/6752af7c1839baf3cd7ed9d024499de61a2477e9))
479
- - **throttleTime:** ensure the spacing between throttles is always at least the throttled amount ([#5687](https://github.com/reactivex/rxjs/issues/5687)) ([ea84fc4](https://github.com/reactivex/rxjs/commit/ea84fc4dce84e32598701f79d9449be00a05352c)), closes [#3712](https://github.com/reactivex/rxjs/issues/3712) [#4864](https://github.com/reactivex/rxjs/issues/4864) [#2727](https://github.com/reactivex/rxjs/issues/2727) [#4727](https://github.com/reactivex/rxjs/issues/4727) [#4429](https://github.com/reactivex/rxjs/issues/4429)
480
- - **zip:** zip operators and functions are now able to zip all iterable sources ([#5688](https://github.com/reactivex/rxjs/issues/5688)) ([02c3a1b](https://github.com/reactivex/rxjs/commit/02c3a1b70c0e96b784a3c5c214c0f89c5ebdd696)), closes [#4304](https://github.com/reactivex/rxjs/issues/4304)
481
- - `switchMap` and `exhaustMap` behave correctly with re-entrant code. ([c289688](https://github.com/reactivex/rxjs/commit/c289688f5e1f33ec21306b4d2f5539dd19f963f2))
482
- - **webSocket:** close websocket connection attempt on unsubscribe ([e1a671c](https://github.com/reactivex/rxjs/commit/e1a671cbd7f5a6ce547ed9ee6ce98c22264500f4)), closes [#4446](https://github.com/reactivex/rxjs/issues/4446)
483
-
484
- ### Code Refactoring
485
-
486
- - **ajax:** Use simple Observable ([17b9add](https://github.com/reactivex/rxjs/commit/17b9add03a90aec6e708a87c0fc387745f0b9df6))
487
- - **Subscriber:** remove \_unsubscribeAndRecycle ([d879c3f](https://github.com/reactivex/rxjs/commit/d879c3f3ae4b1de5660d1613bb8b300e7194d581))
488
- - **VirtualTimeScheduler:** remove sortActions from public API ([#5657](https://github.com/reactivex/rxjs/issues/5657)) ([a468f88](https://github.com/reactivex/rxjs/commit/a468f881c8c02195b089889486d1a94fab2771e0))
489
-
490
- ### Features
491
-
492
- - **combineLatest:** add N-args signature for observable inputs ([#5488](https://github.com/reactivex/rxjs/issues/5488)) ([fcc47e7](https://github.com/reactivex/rxjs/commit/fcc47e75a4c811199c5071144172f4d06ffc7c70))
493
- - **Subscription:** `add` no longer returns unnecessary Subscription reference ([#5656](https://github.com/reactivex/rxjs/issues/5656)) ([4de604e](https://github.com/reactivex/rxjs/commit/4de604ea66261f597af11918aec53cd94590b30f))
494
- - **Subscription:** `remove` will now remove any teardown by reference ([#5659](https://github.com/reactivex/rxjs/issues/5659)) ([1531152](https://github.com/reactivex/rxjs/commit/15311529fa1b880ed469b6c253cd0be7ff2f98a1))
495
- - **throwError:** now accepts a factory to create the error ([#5647](https://github.com/reactivex/rxjs/issues/5647)) ([dad270a](https://github.com/reactivex/rxjs/commit/dad270afcf496de74b4392024191715d7dbef4f5)), closes [#5617](https://github.com/reactivex/rxjs/issues/5617)
496
- - **useDeprecatedNextContext:** Puts deprecated next context behavior behind a flag ([dfdef5d](https://github.com/reactivex/rxjs/commit/dfdef5dcaf52363be59359786aef8bc733197b43))
497
- - support schedulers within run ([#5619](https://github.com/reactivex/rxjs/issues/5619)) ([c63de0d](https://github.com/reactivex/rxjs/commit/c63de0d380a923987aab587720473fad1d205d71))
498
-
499
- ### Performance Improvements
500
-
501
- - **SafeSubscriber:** avoid using `Object.create` ([40a9e77](https://github.com/reactivex/rxjs/commit/40a9e77fe3d75df9161ad0093f54750b70f57245))
502
-
503
- ### BREAKING CHANGES
504
-
505
- - **ajax:**
506
- - `ajax` body serialization will now use default XHR behavior in all cases. If the body is a `Blob`, `ArrayBuffer`, any array buffer view (like a byte sequence, e.g. `Uint8Array`, etc), `FormData`, `URLSearchParams`, `string`, or `ReadableStream`, default handling is use. If the `body` is otherwise `typeof` `"object"`, then it will be converted to JSON via `JSON.stringify`, and the `Content-Type` header will be set to `application/json;charset=utf-8`. All other types will emit an error.
507
- - The `Content-Type` header passed to `ajax` configuration no longer has any effect on the serialization behavior of the AJAX request.
508
- - For TypeScript users, `AjaxRequest` is no longer the type that should be explicitly used to create an `ajax`. It is now `AjaxConfig`, although the two types are compatible, only `AjaxConfig` has `progressSubscriber` and `createXHR`.
509
-
510
- * **zip:** `zip` operators will no longer iterate provided iterables "as needed", instead the iterables will be treated as push-streams just like they would be everywhere else in RxJS. This means that passing an endless iterable will result in the thread locking up, as it will endlessly try to read from that iterable. This puts us in-line with all other Rx implementations. To work around this, it is probably best to use `map` or some combination of `map` and `zip`. For example, `zip(source$, iterator)` could be `source$.pipe(map(value => [value, iterator.next().value]))`.
511
-
512
- * **Subscription:** `add` no longer returns an unnecessary Subscription reference. This was done to prevent confusion caused by a legacy behavior. You can now add and remove functions and Subscriptions as teardowns to and from a `Subscription` using `add` and `remove` directly. Before this, `remove` only accepted subscriptions.
513
-
514
- * **RxJS Error types** Tests that are written with naive expectations against errors may fail now that errors have a proper `stack` property. In some testing frameworks, a deep equality check on two error instances will check the values in `stack`, which could be different.
515
-
516
- * **Undocumented Behaviors/APIs Removed**:
517
-
518
- - `unsubscribe` no longer available via the `this` context of observer functions. To reenable, set `config.useDeprecatedNextContext = true` on the rxjs `config` found at `import { config } from 'rxjs';`. Note that enabling this will result in a performance penalty for all consumer subscriptions.
519
- - Leaked implementation detail `_unsubscribeAndRecycle` of `Subscriber` has been removed. Just use new `Subscription` objects
520
- - Removed an undocumented behavior where passing a negative count argument to `retry` would result in an observable that repeats forever.
521
- - An undocumented behavior where passing a negative count argument to `repeat` would result in an observable that repeats forever.
522
- - The static `sortActions` method on `VirtualTimeScheduler` is no longer publicly exposed by our TS types.
523
-
524
- * **throwError:** In an extreme corner case for usage, `throwError` is no longer able to emit a function as an error directly. If you need to push a function as an error, you will have to use the factory function to return the function like so: `throwError(() => functionToEmit)`, in other words `throwError(() => () => console.log('called later'))`.
525
-
526
- # [7.0.0-beta.4](https://github.com/reactivex/rxjs/compare/7.0.0-beta.1...7.0.0-beta.4) (2020-08-02)
527
-
528
- ### Bug Fixes
529
-
530
- - **ajax:** Partial observers passed to `progressSubscriber` will no longer error ([25d279f](https://github.com/reactivex/rxjs/commit/25d279f0b45d07f39bfb87b19bc7e2279df8b542))
531
- - **ajax:** Unparsable responses will no longer prevent full AjaxError from being thrown ([605ee55](https://github.com/reactivex/rxjs/commit/605ee550e5efc266b5dc5d3a9756c7c3b3968a61))
532
- - **animationFrames:** emit the timestamp from the rAF's callback ([#5438](https://github.com/reactivex/rxjs/issues/5438)) ([c980ae6](https://github.com/reactivex/rxjs/commit/c980ae65ee1b585e8ed66a366eb534ac3e50c205))
533
- - Ensure unsubscriptions/teardowns on internal subscribers are idempotent ([#5465](https://github.com/reactivex/rxjs/issues/5465)) ([3e39749](https://github.com/reactivex/rxjs/commit/3e39749a58ca663c17f5f0354b0f27532fb6d319)), closes [#5464](https://github.com/reactivex/rxjs/issues/5464)
534
- - **timeout:** defer error creation until timeout occurs ([#5497](https://github.com/reactivex/rxjs/issues/5497)) ([3be9840](https://github.com/reactivex/rxjs/commit/3be98404fafd5a8de758deb4e0d103a7b60aa31e)), closes [#5491](https://github.com/reactivex/rxjs/issues/5491)
535
-
536
- ### Code Refactoring
537
-
538
- - **ajax:** Drop support for IE10 and lower ([0eaadd6](https://github.com/reactivex/rxjs/commit/0eaadd60c716050f5e3701d513a028a9cd49085a))
539
- - **Observable:** Update property and method types ([#5572](https://github.com/reactivex/rxjs/issues/5572)) ([144b626](https://github.com/reactivex/rxjs/commit/144b626c3905640b4adeb2b97e722912eff1b264))
540
-
541
- ### Features
542
-
543
- - **combineLatest:** support for observable dictionaries ([#5022](https://github.com/reactivex/rxjs/issues/5022)) ([#5363](https://github.com/reactivex/rxjs/issues/5363)) ([f5278aa](https://github.com/reactivex/rxjs/commit/f5278aa89ea164caf5cf10e77d7bd00eff26fc0f))
544
- - **TestScheduler:** add an animate "run mode" helper ([#5607](https://github.com/reactivex/rxjs/issues/5607)) ([edd6731](https://github.com/reactivex/rxjs/commit/edd67313814bfc32e8a5129d8049e4d4678cd35d))
545
- - **timeout:** One timeout to rule them all ([def1d34](https://github.com/reactivex/rxjs/commit/def1d346b43008bc413a3ac985e1611bbbf62003))
546
-
547
- ### BREAKING CHANGES
548
-
549
- - **ajax:** In an extreme corner-case... If an error occurs, the responseType is `"json"`, we're in IE, and the `responseType` is not valid JSON, the `ajax` observable will no longer emit a syntax error, rather it will emit a full `AjaxError` with more details.
550
- - **ajax:** Ajax implementation drops support for IE10 and lower. This puts us in-line with other implementations and helps clean up code in this area
551
- - **Observable:** `lift` no longer exposed. It was _NEVER_ documented that end users of the library should be creating operators using `lift`. Lift has a [variety of issues](https://github.com/ReactiveX/rxjs/issues/5431) and was always an internal implementation detail of rxjs that might have been used by a few power users in the early days when it had the most value. The value of `lift`, originally, was that subclassed `Observable`s would compose through all operators that implemented lift. The reality is that feature is not widely known, used, or supported, and it was never documented as it was very experimental when it was first added. Until the end of v7, `lift` will remain on Observable. Standard JavaScript users will notice no difference. However, TypeScript users might see complaints about `lift` not being a member of observable. To workaround this issue there are two things you can do: 1. Rewrite your operators as [outlined in the documentation](https://rxjs.dev/guide/operators), such that they return `new Observable`. or 2. cast your observable as `any` and access `lift` that way. Method 1 is recommended if you do not want things to break when we move to version 8.
552
-
553
- # [7.0.0-beta.3](https://github.com/reactivex/rxjs/compare/7.0.0-beta.1...7.0.0-beta.3) (2020-07-30)
554
-
555
- ### Bug Fixes
556
-
557
- - **perf:** Ensure unsubscriptions/teardowns on internal subscribers are idempotent ([#5465](https://github.com/reactivex/rxjs/issues/5465)) ([3e39749](https://github.com/reactivex/rxjs/commit/3e39749a58ca663c17f5f0354b0f27532fb6d319)), closes [#5464](https://github.com/reactivex/rxjs/issues/5464)
558
- - **timeout:** defer error creation until timeout occurs ([#5497](https://github.com/reactivex/rxjs/issues/5497)) ([3be9840](https://github.com/reactivex/rxjs/commit/3be98404fafd5a8de758deb4e0d103a7b60aa31e)), closes [#5491](https://github.com/reactivex/rxjs/issues/5491)
559
-
560
- ### Code Refactoring
561
-
562
- - **perf:** Reduce memory pressure by no longer retaining outer values across the majority of operators. ([#5610](https://github.com/reactivex/rxjs/pull/5610)) ([bff1827](https://github.com/ReactiveX/rxjs/commit/bff18272dca23938a5f5b57cec6eb8d8be5bfddf))
563
- - **Observable:** Update property and method types ([#5572](https://github.com/reactivex/rxjs/issues/5572)) ([144b626](https://github.com/reactivex/rxjs/commit/144b626c3905640b4adeb2b97e722912eff1b264))
564
-
565
- ### Features
566
-
567
- - **combineLatest:** support for observable dictionaries ([#5022](https://github.com/reactivex/rxjs/issues/5022)) ([#5363](https://github.com/reactivex/rxjs/issues/5363)) ([f5278aa](https://github.com/reactivex/rxjs/commit/f5278aa89ea164caf5cf10e77d7bd00eff26fc0f))
568
-
569
- ### BREAKING CHANGES
570
-
571
- - **Observable:** `lift` no longer exposed. It was _never_ documented that end users of the library should be creating operators using `lift`. Lift has a [variety of issues](https://github.com/ReactiveX/rxjs/issues/5431) and was always an internal implementation detail of rxjs that might have been used by a few power users in the early days when it had the most value. The value of `lift`, originally, was that subclassed `Observable`s would compose through all operators that implemented lift. The reality is that feature is not widely known, used, or supported, and it was never documented as it was very experimental when it was first added. Until the end of v7, `lift` will remain on Observable. Standard JavaScript users will notice no difference. However, TypeScript users might see complaints about `lift` not being a member of observable. To workaround this issue there are two things you can do: 1. Rewrite your operators as [outlined in the documentation](https://rxjs.dev/guide/operators), such that they return `new Observable`. or 2. cast your observable as `any` and access `lift` that way. It is recommended that operators be implemented in terms of functions that return `(source: Observable<T>) => new Observable<R>(...)`, per the documentation/guide.
572
-
573
- # [7.0.0-beta.2](https://github.com/reactivex/rxjs/compare/7.0.0-beta.1...7.0.0-beta.2) (2020-07-03)
574
-
575
- ### Bug Fixes
576
-
577
- - **dependencies:** Move accidental dependency on `typedoc` to dev-dependencies. ([#5566](https://github.com/reactivex/rxjs/issues/5566)) ([45702bf](https://github.com/ReactiveX/rxjs/commit/45702bf6cd1b4a150f47b2a1d273f1ee31ca2482))
578
-
579
- # [7.0.0-beta.1](https://github.com/reactivex/rxjs/compare/7.0.0-beta.0...7.0.0-beta.1) (2020-07-02)
580
-
581
- ### Bug Fixes
582
-
583
- - **pluck:** operator breaks with null/undefined inputs. ([#5524](https://github.com/reactivex/rxjs/issues/5524)) ([c5f6550](https://github.com/reactivex/rxjs/commit/c5f65508505cf1f90560e6be76425e09c455bec3))
584
- - **shareReplay:** no longer misses synchronous values from source ([92452cc](https://github.com/reactivex/rxjs/commit/92452cc20021141aa0f047c7e5af569a413143e5))
585
- - **interop:** chain interop/safe subscriber unsubscriptions correctly ([#5472](https://github.com/reactivex/rxjs/issues/5472)) ([98ad0eb](https://github.com/reactivex/rxjs/commit/98ad0eba6bc079851b44951f3963e8aae0abf861)), closes [#5469](https://github.com/reactivex/rxjs/issues/5469) [#5311](https://github.com/reactivex/rxjs/issues/5311) [#2675](https://github.com/reactivex/rxjs/issues/2675)
586
- - **finalize:** chain subscriptions for interop with finalize ([#5239](https://github.com/reactivex/rxjs/issues/5239)) ([04ba662](https://github.com/reactivex/rxjs/commit/04ba6621fe9e09238e1796217d04107e52dd36d5)), closes [#5237](https://github.com/reactivex/rxjs/issues/5237) [#5237](https://github.com/reactivex/rxjs/issues/5237)
587
- - **animationFrameScheduler:** don't execute rescheduled animation frame and asap actions in flush ([#5399](https://github.com/reactivex/rxjs/issues/5399)) ([33c9c8c](https://github.com/reactivex/rxjs/commit/33c9c8cf7e247d4ad4d7318bfd02e8e5bedb0f40)), closes [#4972](https://github.com/reactivex/rxjs/issues/4972) [#5397](https://github.com/reactivex/rxjs/issues/5397)
588
- - **iterables:** errors thrown from iterables now properly propagated ([#5444](https://github.com/reactivex/rxjs/issues/5444)) ([75d4c2f](https://github.com/reactivex/rxjs/commit/75d4c2f33d2e2121b2a316849044ad17ab28dbaf))
589
- - **finalize:** callback will be called after the source observable is torn down. ([0d7b7c1](https://github.com/reactivex/rxjs/commit/0d7b7c14e34eed43fb2ad1386281800fa3ae8aec)), closes [#5357](https://github.com/reactivex/rxjs/issues/5357)
590
- - **Notification:** typing improvements ([#5478](https://github.com/reactivex/rxjs/issues/5478)) ([96868ac](https://github.com/reactivex/rxjs/commit/96868ac754c0147a9aa61182185f27224eb7f11a))
591
- - **TestScheduler:** support empty subscription marbles ([#5502](https://github.com/reactivex/rxjs/issues/5502)) ([e65696e](https://github.com/reactivex/rxjs/commit/e65696e2f7f7338659a873f6653026b33b9011a9)), closes [#5499](https://github.com/reactivex/rxjs/issues/5499)
592
- - **expand:** now works properly with asynchronous schedulers ([294b27e](https://github.com/reactivex/rxjs/commit/294b27eb6a96e8edee3af35e6aaaef50628376e4))
593
- - **subscribeOn:** allow Infinity as valid delay ([#5500](https://github.com/reactivex/rxjs/issues/5500)) ([cd7d649](https://github.com/reactivex/rxjs/commit/cd7d64901e82fd7fb5e8407f1f30828906fac420))
594
- - **Subject:** resolve issue where Subject constructor errantly allowed an argument ([#5476](https://github.com/reactivex/rxjs/issues/5476)) ([e1d35dc](https://github.com/reactivex/rxjs/commit/e1d35dc258edea0237ef49a31f7b34c058755969))
595
- - **Subject:** no default generic ([e678e81](https://github.com/reactivex/rxjs/commit/e678e81ba80f5bcc27b0e956295ce2fc8dfe4576))
596
- - **defer:** No longer allows `() => undefined` to observableFactory (#5449) ([1ae937a](https://github.com/reactivex/rxjs/commit/1ae937a8e594aef96b93313bb3c68ea910e6f528)), closes [#5449](https://github.com/reactivex/rxjs/issues/5449)
597
- - **single:** Corrected behavior for `single(() => false)` on empty observables. (#5325) ([27931bc](https://github.com/reactivex/rxjs/commit/27931bcfd2aa864e277d3e72128c57e807b28bb0)), closes [#5325](https://github.com/reactivex/rxjs/issues/5325)
598
- - **take/takeLast**: Properly assert number types at runtime (#5326) ([5efc474](https://github.com/reactivex/rxjs/commit/5efc474161c9196dbdf4803a9cc444a547067549)), closes [#5326](https://github.com/reactivex/rxjs/issues/5326)
599
-
600
- ### Features
601
-
602
- - **Observable:** Remove async iteration ([#5492](https://github.com/reactivex/rxjs/issues/5492)) ([8f43e71](https://github.com/reactivex/rxjs/commit/8f43e71f5692119e57a7acc5817c146d0b288e8c))
603
- - **groupBy:** Add typeguards support for groupBy ([#5441](https://github.com/reactivex/rxjs/issues/5441)) ([da382da](https://github.com/reactivex/rxjs/commit/da382da4cdcc6e7ab1ffc6a499f4f7f5ea7de130))
604
- - **raceWith:** add raceWith, the renamed `race` operator ([#5303](https://github.com/reactivex/rxjs/issues/5303)) ([ca7f370](https://github.com/reactivex/rxjs/commit/ca7f370d8379f22526cfb17d40deff53e1358742))
605
- - **fetch:** add selector ([#5306](https://github.com/reactivex/rxjs/issues/5306)) ([99b5af1](https://github.com/reactivex/rxjs/commit/99b5af1af5d169d55d454ff8e27d88105cee4b6f)), closes [#4744](https://github.com/reactivex/rxjs/issues/4744)
606
- - **TimestampProvider:** Reduced scheduler footprint for default usage of shareReplay, timeInterval, and timestamp ([#4973](https://github.com/reactivex/rxjs/issues/4973)) ([b2e67e3](https://github.com/reactivex/rxjs/commit/b2e67e3139f0be1fb000ba42bb42c5ba60cc803a))
607
-
608
- ### BREAKING CHANGES
609
-
610
- - `Notification.createNext(undefined)` will no longer return the exact same reference every time.
611
- - Type signatures tightened up around `Notification` and `dematerialize`, may uncover issues with invalid types passed to those operators.
612
- - Experimental support for `for await` as been removed. Use https://github.com/benlesh/rxjs-for-await instead.
613
- - `defer` no longer allows factories to return `void` or `undefined`. All factories passed to defer must return a proper `ObservableInput`, such as `Observable`, `Promise`, et al. To get the same behavior as you may have relied on previously, `return EMPTY` or `return of()` from the factory.
614
- - `single` operator will now throw for scenarios where values coming in are either not present, or do not match the provided predicate. Error types have thrown have also been updated, please check documentation for changes.
615
- - `take` and will now throw runtime error for arguments that are negative or NaN, this includes non-TS calls like `take()`.
616
-
617
- - `takeLast` now has runtime assertions that throw `TypeError`s for invalid arguments. Calling takeLast without arguments or with an argument that is `NaN` will throw a `TypeError`
618
- - `ReplaySubject` no longer schedules emissions when a scheduler is provided. If you need that behavior,
619
- please compose in `observeOn` using `pipe`, for example: `new ReplaySubject(2, 3000).pipe(observeOn(asap))`
620
-
621
- - `timestamp` operator accepts a `TimestampProvider`, which is any object with a `now` method
622
- that returns a number. This means pulling in less code for the use of the `timestamp` operator. This may cause
623
- issues with `TestScheduler` run mode. (Issue here: https://github.com/ReactiveX/rxjs/issues/5553)
624
-
625
- # [7.0.0-beta.0](https://github.com/reactivex/rxjs/compare/7.0.0-alpha.1...7.0.0-beta.0) (2020-04-03)
626
-
627
- ### Bug Fixes
628
-
629
- - **mergeMapTo:** remove redundant/unused generic ([#5299](https://github.com/reactivex/rxjs/issues/5299)) ([d67b7da](https://github.com/reactivex/rxjs/commit/d67b7dafbacb3aac8f4dd7f215fe2d2c602f0d36))
630
- - **ajax:** AjaxTimeoutErrorImpl extends AjaxError ([#5226](https://github.com/reactivex/rxjs/issues/5226)) ([a8da8dc](https://github.com/reactivex/rxjs/commit/a8da8dcc899342d3bb6d2d913247d9e734095287))
631
- - **delay:** emit complete notification as soon as possible ([63b8797](https://github.com/reactivex/rxjs/commit/63b8797fbeed09eb675ea64b0b83607cef1367a9)), closes [#4249](https://github.com/reactivex/rxjs/issues/4249)
632
- - **endWith:** will properly type N arguments ([#5246](https://github.com/reactivex/rxjs/issues/5246)) ([81ee1f7](https://github.com/reactivex/rxjs/commit/81ee1f72408854f4017615fe7949edf5dd50533b))
633
- - **fetch:** don't leak event listeners added to passed-in signals ([#5305](https://github.com/reactivex/rxjs/issues/5305)) ([d4d6c47](https://github.com/reactivex/rxjs/commit/d4d6c47d8abccc8cbe17e46192fc1eaa42d2d023))
634
- - **TestScheduler:** Subclassing TestScheduler needs RunHelpers ([#5138](https://github.com/reactivex/rxjs/issues/5138)) ([927d5d9](https://github.com/reactivex/rxjs/commit/927d5d90ab5f12a79cd50f7290b4f8df1e83ecfc))
635
- - **pipe:** Special handling for 0-arg case. ([#4936](https://github.com/reactivex/rxjs/issues/4936)) ([290fa51](https://github.com/reactivex/rxjs/commit/290fa51c44881f25f2fe4cf9885028396c7fd74c))
636
- - **pluck:** fix pluck's catch-all signature for better type safety ([#5192](https://github.com/reactivex/rxjs/issues/5192)) ([e0c5b7c](https://github.com/reactivex/rxjs/commit/e0c5b7c790bb9d99fa8bee26c805b5e70c1e456b))
637
- - **pluck:** param type now accepts number and symbol ([9697b69](https://github.com/reactivex/rxjs/commit/9697b695c23c3dcb614e6a70be63a94ffcd86ed9))
638
- - **startWith:** accepts N arguments and returns correct type ([#5247](https://github.com/reactivex/rxjs/issues/5247)) ([150ed8b](https://github.com/reactivex/rxjs/commit/150ed8b75909b0e0bb9dc8928287ebdc47e19c51))
639
- - **combineLatestWith:** and zipWith infer types from n-arguments ([#5257](https://github.com/reactivex/rxjs/issues/5257)) ([3e282a5](https://github.com/reactivex/rxjs/commit/3e282a58b1baf7aa03b17142f858bca09a542adf))
640
- - **race:** support N args in static race and ensure observable returned ([#5286](https://github.com/reactivex/rxjs/issues/5286)) ([6d901cb](https://github.com/reactivex/rxjs/commit/6d901cbb0c0f2aa3fc5a02ef895cc9e9a7a09243))
641
- - **toPromise:** correct toPromise return type ([#5072](https://github.com/reactivex/rxjs/issues/5072)) ([b1c3573](https://github.com/reactivex/rxjs/commit/b1c35738204b5b1a5d325a16e70cdbf25b523976))
642
- - **fromFetch:** don't reassign closed-over parameter in fromFetch ([#5234](https://github.com/reactivex/rxjs/issues/5234)) ([37d2d99](https://github.com/reactivex/rxjs/commit/37d2d99762264ef5faabc0ce4f56d7aab51806dc)), closes [#5233](https://github.com/reactivex/rxjs/issues/5233) [#5233](https://github.com/reactivex/rxjs/issues/5233)
643
-
644
- ### Features
645
-
646
- - add `lastValueFrom` and `firstValueFrom` methods ([#5295](https://github.com/reactivex/rxjs/issues/5295)) ([e69b765](https://github.com/reactivex/rxjs/commit/e69b76584d6872b3c55aa1bdf39c8984e9d9b00e))
647
- - RxJS now supports first-class interop with AsyncIterables ([4fa9d01](https://github.com/reactivex/rxjs/commit/4fa9d016a83049d014d77b89c56301e42db16b4d))
648
- - **combineLatestWith:** adds `combineLatestWith` - renamed legacy `combineLatest` operator ([#5251](https://github.com/reactivex/rxjs/issues/5251)) ([6d7b146](https://github.com/reactivex/rxjs/commit/6d7b1469110b405405549c9b6c311d2621738353))
649
- - **retry:** add config to reset error count on successful emission ([#5280](https://github.com/reactivex/rxjs/issues/5280)) ([ab6e9fc](https://github.com/reactivex/rxjs/commit/ab6e9fc32c19c1f14f8f59459db75312e75b9351))
650
- - **zipWith:** add `zipWith` which is just a rename of legacy `zip` operator ([#5249](https://github.com/reactivex/rxjs/issues/5249)) ([86b6a27](https://github.com/reactivex/rxjs/commit/86b6a272fd48c4712adba78963e05bb759ecf4f9))
651
-
652
- ### BREAKING CHANGES
653
-
654
- - **startWith:** `startWith` will return incorrect types when called with more than 7 arguments and a scheduler. Passing scheduler to startWith is deprecated
655
- - **toPromise:** toPromise return type now returns `T | undefined` in TypeScript, which is correct, but may break builds.
656
-
657
- # [7.0.0-alpha.1](https://github.com/reactivex/rxjs/compare/7.0.0-alpha.0...7.0.0-alpha.1) (2019-12-27)
658
-
659
- ### Bug Fixes
660
-
661
- - chain subscriptions from observables that belong to other instances of RxJS (e.g. in node_modules) ([#5059](https://github.com/reactivex/rxjs/issues/5059)) ([d7f7078](https://github.com/reactivex/rxjs/commit/d7f7078))
662
- - clear subscription on `shareReplay` completion ([#5044](https://github.com/reactivex/rxjs/issues/5044)) ([35e600f](https://github.com/reactivex/rxjs/commit/35e600f)), closes [#5034](https://github.com/reactivex/rxjs/issues/5034)
663
- - **closure:** Annotate next() for ReplaySubject ([#5088](https://github.com/reactivex/rxjs/issues/5088)) ([8687fbd](https://github.com/reactivex/rxjs/commit/8687fbd))
664
- - **closure:** static prop frameTimeFactor being collapsed when compiled with closure. ([39872c9](https://github.com/reactivex/rxjs/commit/39872c9))
665
- - **docs:** remove repetitive op3() in example ([#5043](https://github.com/reactivex/rxjs/issues/5043)) ([e17df33](https://github.com/reactivex/rxjs/commit/e17df33))
666
- - **filter:** Fix overload order for filter to support inferring the generic type ([#5024](https://github.com/reactivex/rxjs/issues/5024)) ([8255365](https://github.com/reactivex/rxjs/commit/8255365))
667
- - **fromFetch:** passing already aborted signal to init aborts fetch ([0e4849a](https://github.com/reactivex/rxjs/commit/0e4849a))
668
-
669
- ### Features
670
-
671
- - **concatWith:** adds concatWith ([#4988](https://github.com/reactivex/rxjs/issues/4988)) ([dc89736](https://github.com/reactivex/rxjs/commit/dc89736))
672
-
673
- # [7.0.0-alpha.0](https://github.com/reactivex/rxjs/compare/6.5.2...7.0.0-alpha.0) (2019-09-18)
674
-
675
- ### Bug Fixes
676
-
677
- - missing package.json in rxjs/fetch ([#5001](https://github.com/reactivex/rxjs/issues/5001)) ([f4bee07](https://github.com/reactivex/rxjs/commit/f4bee07))
678
- - **filter:** Resolve TS build failures for certain situations where Boolean is the predicate ([77c7dfd](https://github.com/reactivex/rxjs/commit/77c7dfd))
679
- - **pluck:** key union type strictness ([#4585](https://github.com/reactivex/rxjs/issues/4585)) ([bd5ec2d](https://github.com/reactivex/rxjs/commit/bd5ec2d))
680
- - **race:** ignore latter sources after first complete or error ([#4809](https://github.com/reactivex/rxjs/issues/4809)) ([f31c3df](https://github.com/reactivex/rxjs/commit/f31c3df)), closes [#4808](https://github.com/reactivex/rxjs/issues/4808)
681
- - **scan/reduce:** Typings correct for mixed seed/value types ([#4858](https://github.com/reactivex/rxjs/issues/4858)) ([b89ebe5](https://github.com/reactivex/rxjs/commit/b89ebe5))
682
- - **scheduled:** import from relative paths ([#4832](https://github.com/reactivex/rxjs/issues/4832)) ([1d37a87](https://github.com/reactivex/rxjs/commit/1d37a87))
683
- - **TS:** Error impls now properly type `this` ([#4978](https://github.com/reactivex/rxjs/issues/4978)) ([7606dc7](https://github.com/reactivex/rxjs/commit/7606dc7))
684
- - **TS:** fix type inference for defaultIfEmpty. ([#4833](https://github.com/reactivex/rxjs/issues/4833)) ([9b5ce2f](https://github.com/reactivex/rxjs/commit/9b5ce2f))
685
- - **types:** add Boolean signature to filter ([#4961](https://github.com/reactivex/rxjs/issues/4961)) ([259853e](https://github.com/reactivex/rxjs/commit/259853e)), closes [#4959](https://github.com/reactivex/rxjs/issues/4959) [/github.com/ReactiveX/rxjs/issues/4959#issuecomment-520629091](https://github.com//github.com/ReactiveX/rxjs/issues/4959/issues/issuecomment-520629091)
686
-
687
- ### Features
688
-
689
- - **animationFrames:** Adds an observable of animationFrames ([#5021](https://github.com/reactivex/rxjs/issues/5021)) ([6a4cd68](https://github.com/reactivex/rxjs/commit/6a4cd68))
690
- - **concat:** can infer N types ([6c0cbc4](https://github.com/reactivex/rxjs/commit/6c0cbc4))
691
- - **of:** Update of typings ([e8adbb5](https://github.com/reactivex/rxjs/commit/e8adbb5))
692
- - **rxjs-compat:** removed for v7 ([#4839](https://github.com/reactivex/rxjs/issues/4839)) ([79b1b95](https://github.com/reactivex/rxjs/commit/79b1b95))
693
- - **TestScheduler:** expose `frameTimeFactor` property ([#4977](https://github.com/reactivex/rxjs/issues/4977)) ([8c32ed0](https://github.com/reactivex/rxjs/commit/8c32ed0))
694
- - **TS:** Update to TypeScript 3.5.3 ([741a136](https://github.com/reactivex/rxjs/commit/741a136))
695
-
696
- ### BREAKING CHANGES
697
-
698
- - **concat:** Generic signature changed. Recommend not explicitly passing generics, just let inference do its job. If you must, cast with `as`.
699
- - **of:** Generic signature changed, do not specify generics, allow them to be inferred or use `as`
700
- - **of:** Use with more than 9 arguments, where the last argument is a `SchedulerLike` may result in the wrong type which includes the `SchedulerLike`, even though the run time implementation does not support that. Developers should be using `scheduled` instead
701
- - **TS:** RxJS requires TS 3.5
702
- - **rxjs-compat:** `rxjs/Rx` is no longer a valid import site.
703
- - **rxjs-compat:** `rxjs-compat` is not published for v7 (yet)
704
- - **race:** `race()` will no longer subscribe to subsequent observables if a provided source synchronously errors or completes. This means side effects that might have occurred during subscription in those rare cases will no longer occur.
705
-
706
- ## [6.5.3](https://github.com/reactivex/rxjs/compare/6.5.2...6.5.3) (2019-09-03)
707
-
708
- ### Bug Fixes
709
-
710
- - **general:** Refactor modules so they don't show side effects in some tools ([#4769](https://github.com/reactivex/rxjs/issues/4769)) ([9829c5e0](https://github.com/reactivex/rxjs/commit/9829c5e0))
711
- - **defer:** restrict allowed factory types ([#4835](https://github.com/reactivex/rxjs/issues/4835)) ([40a22096](https://github.com/reactivex/rxjs/commit/40a22096))
712
-
713
- ## [6.5.2](https://github.com/reactivex/rxjs/compare/6.5.0...6.5.2) (2019-05-10)
714
-
715
- ### Bug Fixes
716
-
717
- - **endWith:** wrap args - they are not observables - in of before concatenating ([#4735](https://github.com/reactivex/rxjs/issues/4735)) ([986be2f](https://github.com/reactivex/rxjs/commit/986be2f))
718
- - **forkJoin:** test for object literal ([#4741](https://github.com/reactivex/rxjs/issues/4741)) ([c11e1b3](https://github.com/reactivex/rxjs/commit/c11e1b3)), closes [#4737](https://github.com/reactivex/rxjs/issues/4737) [#4737](https://github.com/reactivex/rxjs/issues/4737)
719
- - **Notification:** replace const enum ([#4556](https://github.com/reactivex/rxjs/issues/4556)) ([e460eec](https://github.com/reactivex/rxjs/commit/e460eec)), closes [#4538](https://github.com/reactivex/rxjs/issues/4538)
720
- - **of:** remove deprecation comment to prevent false positive warning ([#4724](https://github.com/reactivex/rxjs/issues/4724)) ([da69c16](https://github.com/reactivex/rxjs/commit/da69c16))
721
- - **pairwise:** make it recursion-proof ([#4743](https://github.com/reactivex/rxjs/issues/4743)) ([21ab261](https://github.com/reactivex/rxjs/commit/21ab261))
722
- - **scan:** fixed declarations to properly support different return types ([#4598](https://github.com/reactivex/rxjs/issues/4598)) ([126d2b6](https://github.com/reactivex/rxjs/commit/126d2b6))
723
- - **Subscription:** Return Empty when teardown === null ([#4575](https://github.com/reactivex/rxjs/issues/4575)) ([ffc4e68](https://github.com/reactivex/rxjs/commit/ffc4e68))
724
- - **throttleTime:** emit single value with trailing enabled ([#4564](https://github.com/reactivex/rxjs/issues/4564)) ([fd690a6](https://github.com/reactivex/rxjs/commit/fd690a6)), closes [#2859](https://github.com/reactivex/rxjs/issues/2859) [#4491](https://github.com/reactivex/rxjs/issues/4491)
725
- - **umd:** export fetch namespace ([#4738](https://github.com/reactivex/rxjs/issues/4738)) ([7926122](https://github.com/reactivex/rxjs/commit/7926122))
726
- - **fromFetch:** don't abort if fetch resolves ([#4742](https://github.com/reactivex/rxjs/issues/4742) ([ed8d771](https://github.com/reactivex/rxjs/commit/ed8d771))
727
-
728
- ## [6.5.1](https://github.com/reactivex/rxjs/compare/6.5.0...6.5.1) (2019-04-23)
729
-
730
- ### Bug Fixes
731
-
732
- - **Notification:** replace const enum ([#4556](https://github.com/reactivex/rxjs/issues/4556)) ([e460eec](https://github.com/reactivex/rxjs/commit/e460eec)), closes [#4538](https://github.com/reactivex/rxjs/issues/4538)
733
- - **throttleTime:** emit single value with trailing enabled ([#4564](https://github.com/reactivex/rxjs/issues/4564)) ([fd690a6](https://github.com/reactivex/rxjs/commit/fd690a6)), closes [#2859](https://github.com/reactivex/rxjs/issues/2859) [#4491](https://github.com/reactivex/rxjs/issues/4491)
734
-
735
- # [6.5.0](https://github.com/reactivex/rxjs/compare/6.4.0...6.5.0) (2019-04-23)
736
-
737
- ### Bug Fixes
738
-
739
- - **docs-app:** remove stopWordFilter from lunr pipeline ([#4536](https://github.com/reactivex/rxjs/issues/4536)) ([9eaebd4](https://github.com/reactivex/rxjs/commit/9eaebd4))
740
- - **dtslint:** disable tests that break in TS@next ([#4705](https://github.com/reactivex/rxjs/issues/4705)) ([ecc73d2](https://github.com/reactivex/rxjs/commit/ecc73d2))
741
- - **index:** export NotificationKind ([#4514](https://github.com/reactivex/rxjs/issues/4514)) ([7125355](https://github.com/reactivex/rxjs/commit/7125355)), closes [#4513](https://github.com/reactivex/rxjs/issues/4513)
742
- - **race:** better typings ([#4643](https://github.com/reactivex/rxjs/issues/4643)) ([fb9bc48](https://github.com/reactivex/rxjs/commit/fb9bc48)), closes [#4390](https://github.com/reactivex/rxjs/issues/4390) [#4642](https://github.com/reactivex/rxjs/issues/4642)
743
- - **throwIfEmpty:** ensure result is retry-able ([c4f44b9](https://github.com/reactivex/rxjs/commit/c4f44b9))
744
- - **types:** Fixed signature for onErrorResumeNext ([#4603](https://github.com/reactivex/rxjs/issues/4603)) ([4dd0be0](https://github.com/reactivex/rxjs/commit/4dd0be0))
745
-
746
- ### Features
747
-
748
- - **combineLatest:** deprecated rest argument and scheduler signatures ([#4641](https://github.com/reactivex/rxjs/issues/4641)) ([6661c79](https://github.com/reactivex/rxjs/commit/6661c79)), closes [#4640](https://github.com/reactivex/rxjs/issues/4640)
749
- - **fromFetch:** We now export a `fromFetch` static observable creation method from `rxjs/fetch`. Mirrors native `fetch` only it's lazy and cancellable via `Observable` interface. ([#4702](https://github.com/reactivex/rxjs/issues/4702)) ([5a1ef86](https://github.com/reactivex/rxjs/commit/5a1ef86))
750
- - **forkJoin:** accepts a dictionary of sources ([#4640](https://github.com/reactivex/rxjs/issues/4640)) ([b5a2ac9](https://github.com/reactivex/rxjs/commit/b5a2ac9))
751
- - **partition:** new `partition` observable creation function. Old `partition` operator is deprecated ([#4419](https://github.com/reactivex/rxjs/issues/4419)) ([#4685](https://github.com/reactivex/rxjs/issues/4685)) ([d5d6980](https://github.com/reactivex/rxjs/commit/d5d6980))
752
- - **scheduled:** Add `scheduled` creation function to use to create scheduled observable of values. Deprecate scheduled versions of `from`, `range`, et al. ([#4595](https://github.com/reactivex/rxjs/issues/4595)) ([f57e1fc](https://github.com/reactivex/rxjs/commit/f57e1fc))
753
-
754
- ### Performance Improvements
755
-
756
- - **Subscription:** improve parent management ([#4526](https://github.com/reactivex/rxjs/issues/4526)) ([06f1a25](https://github.com/reactivex/rxjs/commit/06f1a25))
757
-
758
- # [6.4.0](https://github.com/reactivex/rxjs/compare/6.3.3...6.4.0) (2019-01-30)
759
-
760
- ### Bug Fixes
761
-
762
- - **ajax:** Fix case-insensitive headers in HTTP request ([#4453](https://github.com/reactivex/rxjs/issues/4453)) ([673bf47](https://github.com/reactivex/rxjs/commit/673bf47))
763
- - **bundle:** closure to not rewrite polyfills for minification ([#4487](https://github.com/reactivex/rxjs/issues/4487)) ([a1fedb9](https://github.com/reactivex/rxjs/commit/a1fedb9))
764
- - **bundle:** don't export `operators` twice ([#4310](https://github.com/reactivex/rxjs/issues/4310)) ([2399f6e](https://github.com/reactivex/rxjs/commit/2399f6e))
765
- - **combineLatest:** improve typings for combineLatest ([#4470](https://github.com/reactivex/rxjs/issues/4470)) ([40c3d9f](https://github.com/reactivex/rxjs/commit/40c3d9f))
766
- - **compat:** remove internal from import locations ([#4498](https://github.com/reactivex/rxjs/issues/4498)) ([a6c0017](https://github.com/reactivex/rxjs/commit/a6c0017)), closes [#4070](https://github.com/reactivex/rxjs/issues/4070)
767
- - **endWith:** ability to endWith different types ([#4183](https://github.com/reactivex/rxjs/issues/4183)) ([#4185](https://github.com/reactivex/rxjs/issues/4185)) ([83533d1](https://github.com/reactivex/rxjs/commit/83533d1))
768
- - **fromEventPattern:** improve typings for fromEventPattern ([#4496](https://github.com/reactivex/rxjs/issues/4496)) ([037f53d](https://github.com/reactivex/rxjs/commit/037f53d))
769
- - **Observable:** Fix Observable.subscribe to add operator TeardownLogic to returned Subscription. ([#4434](https://github.com/reactivex/rxjs/issues/4434)) ([f28955f](https://github.com/reactivex/rxjs/commit/f28955f))
770
- - **subscribe:** Deprecate null starting parameter signatures for subscribe ([#4202](https://github.com/reactivex/rxjs/issues/4202)) ([c85ddf6](https://github.com/reactivex/rxjs/commit/c85ddf6))
771
- - **combineLatest:** support passing union types ([ffda319](https://github.com/reactivex/rxjs/commit/ffda319))
772
- - **from:** support passing union types ([eb1d596](https://github.com/reactivex/rxjs/commit/eb1d596))
773
- - **withLatestFrom:** support passing union types ([1e19a24](https://github.com/reactivex/rxjs/commit/1e19a24))
774
- - **zip:** support passing union types ([0d87f52](https://github.com/reactivex/rxjs/commit/0d87f52))
775
- - **multicast:** support returning union types from projection ([e9e9041](https://github.com/reactivex/rxjs/commit/e9e9041))
776
- - **exhaustMap:** support returning union types from projection ([ff1f5dc](https://github.com/reactivex/rxjs/commit/ff1f5dc))
777
- - **merge:** support union type inference for merge operators ([c2ac39c](https://github.com/reactivex/rxjs/commit/c2ac39c))
778
- - **catchError:** support union type returns ([8350622](https://github.com/reactivex/rxjs/commit/8350622))
779
- - **switchMap:** support union type returns ([32d35fd](https://github.com/reactivex/rxjs/commit/32d35fd))
780
- - **defer:** support union types passed ([5aea50e](https://github.com/reactivex/rxjs/commit/5aea50e))
781
- - **race:** Update typings to support proper return types ([#4465](https://github.com/reactivex/rxjs/issues/4465)) ([0042846](https://github.com/reactivex/rxjs/commit/0042846))
782
- - **VirtualTimeScheduler:** rework flush so it won't lose actions ([#4433](https://github.com/reactivex/rxjs/issues/4433)) ([d068bc9](https://github.com/reactivex/rxjs/commit/d068bc9))
783
- - **WebSocketSubject:** fix subject failing to close socket ([#4446](https://github.com/reactivex/rxjs/issues/4446)) ([dcfa52b](https://github.com/reactivex/rxjs/commit/dcfa52b))
784
-
785
- ### Features
786
-
787
- - **shareReplay:** Add configuration object for named arguments, and add argument to support unsubscribing from source observable by `refCount` when all resulting subscriptions have unsubscribed. The default behavior is to leave the source subscription running.
788
- - **mergeScan:** Add index to the accumulator function ([#4458](https://github.com/reactivex/rxjs/issues/4458)) ([f5e143d](https://github.com/reactivex/rxjs/commit/f5e143d)), closes [#4441](https://github.com/reactivex/rxjs/issues/4441)
789
- - **range:** accept one argument ([#4360](https://github.com/reactivex/rxjs/issues/4360)) ([a388578](https://github.com/reactivex/rxjs/commit/a388578))
790
- - **takeWhile:** add an `inclusive` option to the operator which causes to emit final value ([#4115](https://github.com/reactivex/rxjs/issues/4115)) ([6e7f407](https://github.com/reactivex/rxjs/commit/6e7f407))
791
-
792
- ### Performance Improvements
793
-
794
- - **internal:** optimize Subscription#add() for the common case ([#4489](https://github.com/reactivex/rxjs/issues/4489)) ([bdd201c](https://github.com/reactivex/rxjs/commit/bdd201c))
795
- - **internal:** use strict equality for isObject() ([#4493](https://github.com/reactivex/rxjs/issues/4493)) ([fc84a00](https://github.com/reactivex/rxjs/commit/fc84a00))
796
- - **Subscription:** use `instanceof` to avoid megamorphic LoadIC ([#4499](https://github.com/reactivex/rxjs/issues/4499)) ([065b4e3](https://github.com/reactivex/rxjs/commit/065b4e3))
797
-
798
- <a name="6.3.3"></a>
799
-
800
- ## [6.3.3](https://github.com/reactivex/rxjs/compare/6.3.2...6.3.3) (2018-09-25)
801
-
802
- ### Bug Fixes
803
-
804
- - **pipe:** align static pipe to Observable pipe rest parameters overl… ([#4112](https://github.com/reactivex/rxjs/issues/4112)) ([8c607e9](https://github.com/reactivex/rxjs/commit/8c607e9)), closes [#4109](https://github.com/reactivex/rxjs/issues/4109) [#4109](https://github.com/reactivex/rxjs/issues/4109)
805
- - **RxJS:** each instance of RxJS now has a unique Subscriber symbol ([0972c56](https://github.com/reactivex/rxjs/commit/0972c56))
806
- - **subscribe:** report errors that occur in subscribe after the initial error ([#4089](https://github.com/reactivex/rxjs/issues/4089)) ([9b4b2bc](https://github.com/reactivex/rxjs/commit/9b4b2bc)), closes [#3803](https://github.com/reactivex/rxjs/issues/3803)
807
- - **Subscriber:** Can no longer subscribe to itself in a circular manner ([#4106](https://github.com/reactivex/rxjs/issues/4106)) ([e623ec6](https://github.com/reactivex/rxjs/commit/e623ec6)), closes [#4095](https://github.com/reactivex/rxjs/issues/4095)
808
- - **Subscriber:** use only local Subscriber instances ([50ee0a7](https://github.com/reactivex/rxjs/commit/50ee0a7))
809
- - **TypeScript:** ensure RxJS builds with TS@next as well ([f03e790](https://github.com/reactivex/rxjs/commit/f03e790))
810
-
811
- <a name="6.3.2"></a>
812
-
813
- ## [6.3.2](https://github.com/reactivex/rxjs/compare/6.3.1...6.3.2) (2018-09-04)
814
-
815
- ### Bug Fixes
816
-
817
- - **node:** will no longer error mixing RxJS 6.3 and 6.2 ([#4078](https://github.com/reactivex/rxjs/issues/4078)) ([69d9ccf](https://github.com/reactivex/rxjs/commit/69d9ccf)), closes [#4077](https://github.com/reactivex/rxjs/issues/4077)
818
-
819
- <a name="6.3.1"></a>
820
-
821
- ## [6.3.1](https://github.com/reactivex/rxjs/compare/6.3.0...6.3.1) (2018-08-31)
822
-
823
- ### Bug Fixes
824
-
825
- - **mergeMap:** fix nested mergeMaps ([#4072](https://github.com/reactivex/rxjs/issues/4072)) ([0ab701b](https://github.com/reactivex/rxjs/commit/0ab701b)), closes [#4071](https://github.com/reactivex/rxjs/issues/4071)
826
-
827
- <a name="6.3.0"></a>
828
-
829
- # [6.3.0](https://github.com/reactivex/rxjs/compare/6.2.2...6.3.0) (2018-08-30)
830
-
831
- ### Bug Fixes
832
-
833
- - **find:** unsubscribe from source when found ([#3968](https://github.com/reactivex/rxjs/issues/3968)) ([fd01f7b](https://github.com/reactivex/rxjs/commit/fd01f7b))
834
- - convert [@internal](https://github.com/internal) comment to JSDoc ([#3932](https://github.com/reactivex/rxjs/issues/3932)) ([f8a9d6e](https://github.com/reactivex/rxjs/commit/f8a9d6e))
835
- - **AjaxObservable:** notify with error if fails to parse json response ([#3139](https://github.com/reactivex/rxjs/issues/3139)) ([d8231e2](https://github.com/reactivex/rxjs/commit/d8231e2)), closes [#3138](https://github.com/reactivex/rxjs/issues/3138)
836
- - **catchError:** stop listening to a synchronous inner-observable when unsubscribed ([456ef33](https://github.com/reactivex/rxjs/commit/456ef33))
837
- - **distinctUntilKeyChanged:** improved key typing with keyof T ([#3988](https://github.com/reactivex/rxjs/issues/3988)) ([4ec4ff1](https://github.com/reactivex/rxjs/commit/4ec4ff1))
838
- - **exhaustMap:** stop listening to a synchronous inner-observable when unsubscribed ([ee1a339](https://github.com/reactivex/rxjs/commit/ee1a339))
839
- - **find:** add undefined to return type ([#3970](https://github.com/reactivex/rxjs/issues/3970)) ([5a6c90f](https://github.com/reactivex/rxjs/commit/5a6c90f)), closes [#3969](https://github.com/reactivex/rxjs/issues/3969)
840
- - **IE10:** Remove dependency on Object.setPrototypeOf ([#3967](https://github.com/reactivex/rxjs/issues/3967)) ([5c52a73](https://github.com/reactivex/rxjs/commit/5c52a73)), closes [#3966](https://github.com/reactivex/rxjs/issues/3966)
841
- - **mergeAll:** add source subscription to composite before actually subscribing ([#2479](https://github.com/reactivex/rxjs/issues/2479)) ([40852ff](https://github.com/reactivex/rxjs/commit/40852ff)), closes [#2476](https://github.com/reactivex/rxjs/issues/2476)
842
- - **mergeScan:** stop listening to a synchronous inner-observable when unsubscribed ([c4002f3](https://github.com/reactivex/rxjs/commit/c4002f3))
843
- - **Observable:** forEach will no longer next values after an error ([b4bad1f](https://github.com/reactivex/rxjs/commit/b4bad1f))
844
- - **Observable:** use more granular Observable exports in compat mode ([#3974](https://github.com/reactivex/rxjs/issues/3974)) ([3f75564](https://github.com/reactivex/rxjs/commit/3f75564))
845
- - **onErrorResumeNext:** stop listening to a synchronous inner-observable when unsubscribed ([1d14277](https://github.com/reactivex/rxjs/commit/1d14277))
846
- - **pipe:** replace rest parameters overload ([#3945](https://github.com/reactivex/rxjs/issues/3945)) ([872b0ec](https://github.com/reactivex/rxjs/commit/872b0ec)), closes [#3841](https://github.com/reactivex/rxjs/issues/3841)
847
- - **skipUntil:** stop listening to a synchronous notifier after its first nexted value ([1c257db](https://github.com/reactivex/rxjs/commit/1c257db))
848
- - **startWith:** allow empty type signature and passing a different type ([b7866a0](https://github.com/reactivex/rxjs/commit/b7866a0))
849
- - **subscribable:** make subscribe() signature match Observable ([#4050](https://github.com/reactivex/rxjs/issues/4050)) ([865d8d7](https://github.com/reactivex/rxjs/commit/865d8d7)), closes [#3891](https://github.com/reactivex/rxjs/issues/3891)
850
- - **subscriber:** unsubscribe parents on error/complete ([ad8131b](https://github.com/reactivex/rxjs/commit/ad8131b))
851
- - **switchMap:** stop listening to a synchronous inner-observable when unsubscribed ([260d52a](https://github.com/reactivex/rxjs/commit/260d52a))
852
- - **takeUntil:** takeUntil should subscribe to the source if notifier sync completes without emitting ([#4039](https://github.com/reactivex/rxjs/issues/4039)) ([21fd0b4](https://github.com/reactivex/rxjs/commit/21fd0b4)), closes [#3504](https://github.com/reactivex/rxjs/issues/3504)
853
- - **testscheduler:** type arguments to Observable creation functions ([#3928](https://github.com/reactivex/rxjs/issues/3928)) ([0e30ef1](https://github.com/reactivex/rxjs/commit/0e30ef1))
854
-
855
- ### Features
856
-
857
- - **delayWhen:** add index to the selector function ([#2473](https://github.com/reactivex/rxjs/issues/2473)) ([0979d31](https://github.com/reactivex/rxjs/commit/0979d31))
858
- - **forEach:** deprecating passing promise constructor ([5178ab9](https://github.com/reactivex/rxjs/commit/5178ab9))
859
- - **TestScheduler:** Add subscription schedule to expectObservable ([#3997](https://github.com/reactivex/rxjs/issues/3997)) ([0d20255](https://github.com/reactivex/rxjs/commit/0d20255))
860
-
861
- <a name="6.2.2"></a>
862
-
863
- ## [6.2.2](https://github.com/reactivex/rxjs/compare/6.2.1...6.2.2) (2018-07-13)
864
-
865
- ### Bug Fixes
866
-
867
- - **first:** improved type guards for TypeScript ([3e12f7a](https://github.com/reactivex/rxjs/commit/3e12f7a))
868
- - **last:** improved type guards for TypeScript ([3e12f7a](https://github.com/reactivex/rxjs/commit/3e12f7a))
869
-
870
- <a name="6.2.1"></a>
871
-
872
- ## [6.2.1](https://github.com/reactivex/rxjs/compare/6.2.0...6.2.1) (2018-06-12)
873
-
874
- ### Bug Fixes
875
-
876
- - **ci:** do not trigger postbuild script on PR ([f82c085](https://github.com/reactivex/rxjs/commit/f82c085))
877
- - **delayWhen:** Emit source value if duration selector completes synchronously ([#3664](https://github.com/reactivex/rxjs/issues/3664)) ([2c43af7](https://github.com/reactivex/rxjs/commit/2c43af7)), closes [#3663](https://github.com/reactivex/rxjs/issues/3663)
878
- - **docs:** fix broken github links ([#3802](https://github.com/reactivex/rxjs/issues/3802)) ([9f9bf9b](https://github.com/reactivex/rxjs/commit/9f9bf9b))
879
- - **docs:** fix code examples ([#3784](https://github.com/reactivex/rxjs/issues/3784)) ([a95441b](https://github.com/reactivex/rxjs/commit/a95441b))
880
- - **from:** Objects implementing Symbol.observable take precedence over other types ([80ceea0](https://github.com/reactivex/rxjs/commit/80ceea0))
881
- - **fromEvent:** Support React Native and node-compatible event sources. ([#3821](https://github.com/reactivex/rxjs/issues/3821)) ([1969f18](https://github.com/reactivex/rxjs/commit/1969f18))
882
- - **Observable.prototype.pipe:** TS typings now more correct for >8 parameters ([#3789](https://github.com/reactivex/rxjs/issues/3789)) ([ad010ea](https://github.com/reactivex/rxjs/commit/ad010ea))
883
- - **subscribe:** ignore syncError when deprecated ([#3749](https://github.com/reactivex/rxjs/issues/3749)) ([f94560c](https://github.com/reactivex/rxjs/commit/f94560c))
884
- - **Symbol.observable:** make observable declaration readonly ([#3697](https://github.com/reactivex/rxjs/issues/3697)) ([#3773](https://github.com/reactivex/rxjs/issues/3773)) ([e1c203f](https://github.com/reactivex/rxjs/commit/e1c203f))
885
- - **TypeScript:** resolved typings issue for TS 3.0 ([bf2cdeb](https://github.com/reactivex/rxjs/commit/bf2cdeb))
886
- - **typings:** allow bufferCreationInterval null for bufferTime ([#3734](https://github.com/reactivex/rxjs/issues/3734)) ([0bda9cd](https://github.com/reactivex/rxjs/commit/0bda9cd)), closes [#3728](https://github.com/reactivex/rxjs/issues/3728)
887
-
888
- ### Performance Improvements
889
-
890
- - remove comments from js-files ([#3760](https://github.com/reactivex/rxjs/issues/3760)) ([bb2c334](https://github.com/reactivex/rxjs/commit/bb2c334))
891
-
892
- <a name="6.2.0"></a>
893
-
894
- # [6.2.0](https://github.com/ReactiveX/RxJS/compare/6.1.0...6.2.0) (2018-05-22)
895
-
896
- ### Bug Fixes
897
-
898
- - **ajax:** Handle timeouts as errors ([#3653](https://github.com/ReactiveX/RxJS/issues/3653)) ([e4128ea](https://github.com/ReactiveX/RxJS/commit/e4128ea))
899
- - **ajax:** RxJS v6 TimeoutError is missing name property ([576d943](https://github.com/ReactiveX/RxJS/commit/576d943))
900
- - **isObservable:** Fix throwing error when testing isObservable(null) ([#3688](https://github.com/ReactiveX/RxJS/issues/3688)) ([c9acc61](https://github.com/ReactiveX/RxJS/commit/c9acc61))
901
- - **range:** Range should be same for every subscriber ([#3707](https://github.com/ReactiveX/RxJS/issues/3707)) ([9642133](https://github.com/ReactiveX/RxJS/commit/9642133))
902
- - **skipUntil:** fix skipUntil when innerSubscription is null ([#3686](https://github.com/ReactiveX/RxJS/issues/3686)) ([4226432](https://github.com/ReactiveX/RxJS/commit/4226432))
903
- - **TestScheduler:** restore run changes upon error ([27cb9b6](https://github.com/ReactiveX/RxJS/commit/27cb9b6))
904
- - **TimeoutError:** Add name to TimeoutError ([44042d0](https://github.com/ReactiveX/RxJS/commit/44042d0))
905
- - **WebSocketSubject:** Check to see if WebSocket exists in global scope ([#3694](https://github.com/ReactiveX/RxJS/issues/3694)) ([2db0788](https://github.com/ReactiveX/RxJS/commit/2db0788))
906
-
907
- ### Features
908
-
909
- - **endWith:** add new operator endWith ([#3679](https://github.com/ReactiveX/RxJS/issues/3679)) ([537fe7d](https://github.com/ReactiveX/RxJS/commit/537fe7d))
910
-
911
- <a name="6.1.0"></a>
912
-
913
- # [6.1.0](https://github.com/ReactiveX/RxJS/compare/6.0.0...6.1.0) (2018-05-03)
914
-
915
- ### Bug Fixes
916
-
917
- - **audit:** will not crash if duration is synchronous ([#3608](https://github.com/ReactiveX/RxJS/issues/3608)) ([76b7e27](https://github.com/ReactiveX/RxJS/commit/76b7e27)), closes [#2743](https://github.com/ReactiveX/RxJS/issues/2743)
918
- - **delay:** fix memory leak ([#3605](https://github.com/ReactiveX/RxJS/issues/3605)) ([96f05b0](https://github.com/ReactiveX/RxJS/commit/96f05b0))
919
-
920
- ### Features
921
-
922
- - **isObservable:** a new method for checking to see if an object is an RxJS Observable ([edb33e5](https://github.com/ReactiveX/RxJS/commit/edb33e5))
923
-
924
- <a name="6.0.0"></a>
925
-
926
- # [6.0.0](https://github.com/ReactiveX/RxJS/compare/6.0.0-uncanny-rc.7...v6.0.0) (2018-04-24)
927
-
928
- ### Bug Fixes
929
-
930
- - **websocket:** no longer throws errors in operators applied to it ([#3577](https://github.com/ReactiveX/RxJS/issues/3577)) ([cb38ddf](https://github.com/ReactiveX/RxJS/commit/cb38ddf))
931
-
932
- ### Code Refactoring
933
-
934
- - **webSocket:** rename back to webSocket ala 5.0 ([#3590](https://github.com/ReactiveX/RxJS/issues/3590)) ([d5658fe](https://github.com/ReactiveX/RxJS/commit/d5658fe))
935
-
936
- ### Features
937
-
938
- - **testing:** Add testScheduler.run() helper ([2d5b3b2](https://github.com/ReactiveX/RxJS/commit/2d5b3b2))
939
- - **testing:** testScheduler.run() supports time progression syntax ([9322b7d](https://github.com/ReactiveX/RxJS/commit/9322b7d))
940
-
941
- ### BREAKING CHANGES
942
-
943
- - **webSocket:** UNBREAKING websocket to be named `webSocket` again, just like it was in 5.0. Now you should import from `rxjs/webSocket`
944
-
945
- <a name="6.0.0-uncanny-rc.7"></a>
946
-
947
- # [6.0.0-uncanny-rc.7](https://github.com/ReactiveX/RxJS/compare/6.0.0-ucandoit-rc.6...v6.0.0-uncanny-rc.7) (2018-04-13)
948
-
949
- ### Bug Fixes
950
-
951
- - **interop:** functions with `[Symbol.observable]` on them will now be accepted in operators like `mergeMap`, `from`, etc ([#3562](https://github.com/ReactiveX/RxJS/issues/3562)) ([c9570df](https://github.com/ReactiveX/RxJS/commit/c9570df))
952
- - **migrations:** change the version the migration applies to ([#3564](https://github.com/ReactiveX/RxJS/issues/3564)) ([9217a03](https://github.com/ReactiveX/RxJS/commit/9217a03))
953
- - **rxjs:** no longer requires `dom` lib ([#3566](https://github.com/ReactiveX/RxJS/issues/3566)) ([8b33ee2](https://github.com/ReactiveX/RxJS/commit/8b33ee2))
954
- - **throttleTime:** emit throttled values when complete if trailing=true ([#3559](https://github.com/ReactiveX/RxJS/issues/3559)) ([3e846f2](https://github.com/ReactiveX/RxJS/commit/3e846f2)), closes [#3351](https://github.com/ReactiveX/RxJS/issues/3351)
955
- - **websocket:** export WebSocketSubject, WebSocketSubjectConfig from rxjs/websocket ([#3557](https://github.com/ReactiveX/RxJS/issues/3557)) ([c365405](https://github.com/ReactiveX/RxJS/commit/c365405))
956
-
957
- <a name="6.0.0-ucandoit-rc.6"></a>
958
-
959
- # [6.0.0-ucandoit-rc.6](https://github.com/ReactiveX/RxJS/compare/6.0.0-uber-rc.5...v6.0.0-ucandoit-rc.6) (2018-04-13)
960
-
961
- ### Bug Fixes
962
-
963
- - **migrations:** make sure collection.json is present ([63e10a8](https://github.com/ReactiveX/RxJS/commit/63e10a8))
964
-
965
- <a name="6.0.0-uber-rc.5"></a>
966
-
967
- # [6.0.0-uber-rc.5](https://github.com/ReactiveX/RxJS/compare/6.0.0-turbo-rc.4...6.0.0-uber-rc.5) (2018-04-13)
968
-
969
- ### Bug Fixes
970
-
971
- - **migrations:** deploy compiled JS rather than just the TS files. ([9aed72f](https://github.com/ReactiveX/RxJS/commit/9aed72f))
972
-
973
- <a name="6.0.0-turbo-rc.4"></a>
974
-
975
- # [6.0.0-turbo-rc.4](https://github.com/ReactiveX/RxJS/compare/6.0.0-terrific-rc.3...6.0.0-turbo-rc.4) (2018-04-12)
976
-
977
- ### Bug Fixes
978
-
979
- - **groupBy:** reexporting the GroupedObservable type ([#3556](https://github.com/ReactiveX/RxJS/issues/3556)) ([12d4933](https://github.com/ReactiveX/RxJS/commit/12d4933)), closes [#3551](https://github.com/ReactiveX/RxJS/issues/3551)
980
- - **migrations:** build now properly copies migration into package ([#3555](https://github.com/ReactiveX/RxJS/issues/3555)) ([329a145](https://github.com/ReactiveX/RxJS/commit/329a145))
981
-
982
- <a name="6.0.0-terrific-rc.3"></a>
983
-
984
- # [6.0.0-terrific-rc.3](https://github.com/ReactiveX/RxJS/compare/6.0.0-tenacious-rc.2...v6.0.0-terrific-rc.3) (2018-04-11)
985
-
986
- ### Features
987
-
988
- - **schematics:** add migration schematics for schematics users ([20a2f07](https://github.com/ReactiveX/RxJS/commit/20a2f07))
989
-
990
- <a name="6.0.0-tenacious-rc.2"></a>
991
-
992
- # [6.0.0-tenacious-rc.2](https://github.com/ReactiveX/RxJS/compare/6.0.0-tactical-rc.1...v6.0.0-tenacious-rc.2) (2018-04-11)
993
-
994
- ### Bug Fixes
995
-
996
- - **compat:** fix first & last operators so undefined arguments won't create empty values ([#3542](https://github.com/ReactiveX/RxJS/issues/3542)) ([a327db2](https://github.com/ReactiveX/RxJS/commit/a327db2))
997
- - **node/TS:** eliminate incompatible types to protected properties ([#3544](https://github.com/ReactiveX/RxJS/issues/3544)) ([21dd3bd](https://github.com/ReactiveX/RxJS/commit/21dd3bd))
998
-
999
- ### BREAKING CHANGES
1000
-
1001
- - **NodeJS** Dropping support for non-LTS versions of Node.
1002
-
1003
- <a name="6.0.0-tactical-rc.1"></a>
1004
-
1005
- # [6.0.0-tactical-rc.1](https://github.com/ReactiveX/RxJS/compare/6.0.0-rc.0...6.0.0-tactical-rc.1) (2018-04-07)
1006
-
1007
- Why "tactical"? Because I _TOTALLY MEANT_ to ruin the release names by publishing an amazingly funny April Fool's joke about smooshMap. So this was "tactical". Super tactical. So very tactical.
1008
-
1009
- ### Bug Fixes
1010
-
1011
- - **closure-compiler:** adds nocollapse to static members ([#3519](https://github.com/ReactiveX/RxJS/issues/3519)) ([8758a5d](https://github.com/ReactiveX/RxJS/commit/8758a5d))
1012
- - **closure-compiler:** remove internal flag from \_isScalar ([#3520](https://github.com/ReactiveX/RxJS/issues/3520)) ([b3a657d](https://github.com/ReactiveX/RxJS/commit/b3a657d))
1013
- - **closure-compiler:** remove top level throws ([#3518](https://github.com/ReactiveX/RxJS/issues/3518)) ([b069473](https://github.com/ReactiveX/RxJS/commit/b069473))
1014
- - **closure-compiler:** removes bad \[@params](https://github.com/params) comments that caused issues ([#3521](https://github.com/ReactiveX/RxJS/issues/3521)) ([09c874c](https://github.com/ReactiveX/RxJS/commit/09c874c))
1015
- - **compat:** deprecate Observable.if/throw ([#3527](https://github.com/ReactiveX/RxJS/issues/3527)) ([3116275](https://github.com/ReactiveX/RxJS/commit/3116275))
1016
- - **compat:** export TeardownLogic ([#3532](https://github.com/ReactiveX/RxJS/issues/3532)) ([0c76e64](https://github.com/ReactiveX/RxJS/commit/0c76e64)), closes [#3531](https://github.com/ReactiveX/RxJS/issues/3531)
1017
- - **compat:** remove observable/scalar deep import as it wasn't previously available ([4566001](https://github.com/ReactiveX/RxJS/commit/4566001))
1018
- - **Scheduler:** export but deprecate ([#3522](https://github.com/ReactiveX/RxJS/issues/3522)) ([a3e1fb8](https://github.com/ReactiveX/RxJS/commit/a3e1fb8))
1019
- - **skipUntil:** properly manages notifier subscription ([889f84a](https://github.com/ReactiveX/RxJS/commit/889f84a)), closes [#1886](https://github.com/ReactiveX/RxJS/issues/1886)
1020
- - fix type mismatch in NodeStyleEventEmitter ([#3530](https://github.com/ReactiveX/RxJS/issues/3530)) ([3f51ddd](https://github.com/ReactiveX/RxJS/commit/3f51ddd))
1021
- - **sourcemaps:** fix mappings for source maps so they will work ([#3523](https://github.com/ReactiveX/RxJS/issues/3523)) ([32e7f75](https://github.com/ReactiveX/RxJS/commit/32e7f75)), closes [#3479](https://github.com/ReactiveX/RxJS/issues/3479)
1022
-
1023
- ### Features
1024
-
1025
- - **compat:** add Observable extension classes with static create() ([ecd7f68](https://github.com/ReactiveX/RxJS/commit/ecd7f68))
1026
- - **compat:** add rxjs/interfaces exports ([ba5c266](https://github.com/ReactiveX/RxJS/commit/ba5c266))
1027
-
1028
- <a name="6.0.0-rc.0"></a>
1029
-
1030
- # [6.0.0-rc.0](https://github.com/ReactiveX/RxJS/compare/6.0.0-beta.4...6.0.0-rc.0) (2018-03-31)
1031
-
1032
- ### Bug Fixes
1033
-
1034
- - **ajax:** properly encode body with form data that includes URLs ([#3502](https://github.com/ReactiveX/RxJS/issues/3502)) ([4455d21](https://github.com/ReactiveX/RxJS/commit/4455d21)), closes [#2399](https://github.com/ReactiveX/RxJS/issues/2399)
1035
- - **bindNodeCallback:** better type inference ([932bb7a](https://github.com/ReactiveX/RxJS/commit/932bb7a))
1036
- - **elementAt:** now allows falsy defaultValues ([13706e7](https://github.com/ReactiveX/RxJS/commit/13706e7))
1037
- - **lint_perf:** fix lint issues with newer perf tests ([1013754](https://github.com/ReactiveX/RxJS/commit/1013754))
1038
- - **throttle:** now properly trailing throttles for individual values ([#3505](https://github.com/ReactiveX/RxJS/issues/3505)) ([3db18d1](https://github.com/ReactiveX/RxJS/commit/3db18d1)), closes [#2864](https://github.com/ReactiveX/RxJS/issues/2864)
1039
-
1040
- ### Features
1041
-
1042
- - **takeUntil:** no longer subscribes to source if notifier synchronously emits ([#3504](https://github.com/ReactiveX/RxJS/issues/3504)) ([7b8a3e3](https://github.com/ReactiveX/RxJS/commit/7b8a3e3)), closes [#2189](https://github.com/ReactiveX/RxJS/issues/2189)
1043
-
1044
- ### Performance Improvements
1045
-
1046
- - **pluck,bufferTime,asObservable:** add performance tests for pluck(), bufferTime() and asObservable() operators ([#2491](https://github.com/ReactiveX/RxJS/issues/2491)) ([24506b3](https://github.com/ReactiveX/RxJS/commit/24506b3))
1047
- - **ReplaySubject:** slightly improved performance ([#2677](https://github.com/ReactiveX/RxJS/issues/2677)) ([9fea36d](https://github.com/ReactiveX/RxJS/commit/9fea36d))
1048
-
1049
- ### BREAKING CHANGES
1050
-
1051
- - **throttle:** This changes the behavior of throttle, in particular
1052
- throttling with both leading and trailing behaviors set to true, to more
1053
- closely match the throttling behavior of lodash and other libraries.
1054
- Throttling now starts immediately after any emission from the
1055
- observable, and values will not be double emitted for both leading and
1056
- trailing values
1057
-
1058
- <a name="6.0.0-beta.4"></a>
1059
-
1060
- # [6.0.0-beta.4](https://github.com/ReactiveX/RxJS/compare/6.0.0-beta.3...v6.0.0-beta.4) (2018-03-29)
1061
-
1062
- ### Bug Fixes
1063
-
1064
- - **bindCallback:** add better type overloads ([#3480](https://github.com/ReactiveX/RxJS/issues/3480)) ([037cf34](https://github.com/ReactiveX/RxJS/commit/037cf34))
1065
- - **compat:** add IScheduler to compat/Scheduler ([0a67df6](https://github.com/ReactiveX/RxJS/commit/0a67df6))
1066
-
1067
- ### Features
1068
-
1069
- - **compat:** add all utilities to internal-compatibility ([a9ecfe7](https://github.com/ReactiveX/RxJS/commit/a9ecfe7))
1070
- - **websocket:** Add serializer/deserializer config settings ([#3489](https://github.com/ReactiveX/RxJS/issues/3489)) ([8d44124](https://github.com/ReactiveX/RxJS/commit/8d44124))
1071
-
1072
- ### BREAKING CHANGES
1073
-
1074
- - **websocket:** WebSocketSubject will now JSON serialize all messages sent over it by default, to return to the old behavior, pass a config setting of `serializer: x => x` like so: `websocket({ url, serializer: x => x })`
1075
-
1076
- <a name="6.0.0-beta.3"></a>
1077
-
1078
- # [6.0.0-beta.3](https://github.com/ReactiveX/RxJS/compare/6.0.0-beta.1...6.0.0-beta.3) (2018-03-27)
1079
-
1080
- ### Bug Fixes
1081
-
1082
- - **build:** update build-optimizer and point to correct sources ([6717a01](https://github.com/ReactiveX/RxJS/commit/6717a01))
1083
- - **node:** Subscriber no longer trampled if from another copy of rxjs ([371b658](https://github.com/ReactiveX/RxJS/commit/371b658))
1084
- - **Observable:** empty ctor returns valid Observable ([#3464](https://github.com/ReactiveX/RxJS/issues/3464)) ([58b8ebc](https://github.com/ReactiveX/RxJS/commit/58b8ebc))
1085
- - **subscribeOn:** add subscribeOn back to the distribution ([d6556f2](https://github.com/ReactiveX/RxJS/commit/d6556f2))
1086
-
1087
- <a name="6.0.0-beta.2"></a>
1088
-
1089
- # [6.0.0-beta.2](https://github.com/ReactiveX/RxJS/compare/6.0.0-beta.1...6.0.0-beta.2) (2018-03-24)
1090
-
1091
- ### Bug Fixes
1092
-
1093
- - **build:** update build-optimizer and point to correct sources ([6717a01](https://github.com/ReactiveX/RxJS/commit/6717a01))
1094
- - **Observable:** empty ctor returns valid Observable ([#3464](https://github.com/ReactiveX/RxJS/issues/3464)) ([58b8ebc](https://github.com/ReactiveX/RxJS/commit/58b8ebc))
1095
- - **subscribeOn:** add subscribeOn back to the distribution ([d6556f2](https://github.com/ReactiveX/RxJS/commit/d6556f2))
1096
-
1097
- <a name="6.0.0-beta.1"></a>
1098
-
1099
- # [6.0.0-beta.1](https://github.com/ReactiveX/RxJS/compare/6.0.0-beta.0...v6.0.0-beta.1) (2018-03-21)
1100
-
1101
- ### Bug Fixes
1102
-
1103
- - remove duplicate Subscribable<T> interface declaration ([#3450](https://github.com/ReactiveX/RxJS/issues/3450)) ([ac78d89](https://github.com/ReactiveX/RxJS/commit/ac78d89))
1104
- - **compat:** add package.json for internal-compatibility package ([#3455](https://github.com/ReactiveX/RxJS/issues/3455)) ([3b306ed](https://github.com/ReactiveX/RxJS/commit/3b306ed))
1105
- - **config.useDeprecatedSynchronousErrorThrowing:** reentrant error throwing no longer trapped ([#3449](https://github.com/ReactiveX/RxJS/issues/3449)) ([0892a2d](https://github.com/ReactiveX/RxJS/commit/0892a2d)), closes [#3161](https://github.com/ReactiveX/RxJS/issues/3161)
1106
-
1107
- ### Features
1108
-
1109
- - **compat:** add interfaces export ([d8f8122](https://github.com/ReactiveX/RxJS/commit/d8f8122))
1110
- - **compat:** add rxjs/observable/dom/\* APIs to compatibility package ([d9a618f](https://github.com/ReactiveX/RxJS/commit/d9a618f))
1111
-
1112
- <a name="6.0.0-beta.0"></a>
1113
-
1114
- # [6.0.0-beta.0](https://github.com/ReactiveX/RxJS/compare/6.0.0-alpha.3...6.0.0-beta.0) (2018-03-16)
1115
-
1116
- ### Bug Fixes
1117
-
1118
- - **AjaxObservable:** 1xx,2xx,3xx requests shouldn't error, only 4xx,5xx ([#3438](https://github.com/ReactiveX/RxJS/issues/3438)) ([2128932](https://github.com/ReactiveX/RxJS/commit/2128932))
1119
- - **compat:** adjustments to get rxjs-compat to build correctly ([dea6964](https://github.com/ReactiveX/RxJS/commit/dea6964))
1120
- - **config:** expose configuration via rxjs exports ([#3441](https://github.com/ReactiveX/RxJS/issues/3441)) ([4287424](https://github.com/ReactiveX/RxJS/commit/4287424))
1121
- - **config:** make sure that Promise config is undefined initially ([#3440](https://github.com/ReactiveX/RxJS/issues/3440)) ([469afe8](https://github.com/ReactiveX/RxJS/commit/469afe8))
1122
- - **ESM:** Add [operators|ajax|websocket|testing]/package.json for ESM support, fixes [#3227](https://github.com/ReactiveX/RxJS/issues/3227) ([#3356](https://github.com/ReactiveX/RxJS/issues/3356)) ([725dcb4](https://github.com/ReactiveX/RxJS/commit/725dcb4))
1123
- - **forkJoin:** fix forkJoin typings for forkJoin(Observable<any>[]) ([#3436](https://github.com/ReactiveX/RxJS/issues/3436)) ([17c7f8f](https://github.com/ReactiveX/RxJS/commit/17c7f8f))
1124
- - **fromEvent:** Defines toString to fix Closure compilations ([#3417](https://github.com/ReactiveX/RxJS/issues/3417)) ([1558b43](https://github.com/ReactiveX/RxJS/commit/1558b43))
1125
- - **fromEvent:** pass options in unsubscribe ([f1872b0](https://github.com/ReactiveX/RxJS/commit/f1872b0)), closes [#3349](https://github.com/ReactiveX/RxJS/issues/3349)
1126
- - **publishReplay:** type inference improved ([#3437](https://github.com/ReactiveX/RxJS/issues/3437)) ([dd7c9f1](https://github.com/ReactiveX/RxJS/commit/dd7c9f1)), closes [#3260](https://github.com/ReactiveX/RxJS/issues/3260)
1127
- - **rxjs:** add exports for symbols/interfaces that were missing ([#3380](https://github.com/ReactiveX/RxJS/issues/3380)) ([1622ee0](https://github.com/ReactiveX/RxJS/commit/1622ee0))
1128
- - **rxjs:** make sure esm imports from index.js by default, not Rx.js ([#3316](https://github.com/ReactiveX/RxJS/issues/3316)) ([c2b00f4](https://github.com/ReactiveX/RxJS/commit/c2b00f4)), closes [#3315](https://github.com/ReactiveX/RxJS/issues/3315)
1129
- - **rxjs:** once again exports custom error types ([#3371](https://github.com/ReactiveX/RxJS/issues/3371)) ([4465a9f](https://github.com/ReactiveX/RxJS/commit/4465a9f))
1130
- - **rxjs:** remove types.ts importing from itself. ([#3383](https://github.com/ReactiveX/RxJS/issues/3383)) ([8fd50ad](https://github.com/ReactiveX/RxJS/commit/8fd50ad))
1131
- - **spec:** get tests running using compatibility package ([916e968](https://github.com/ReactiveX/RxJS/commit/916e968))
1132
- - correct internal module paths to be systemjs compatible ([#3412](https://github.com/ReactiveX/RxJS/issues/3412)) ([35abc9d](https://github.com/ReactiveX/RxJS/commit/35abc9d))
1133
- - **Symbol.iterator:** correctly handle case where Symbol constructor itself is not defined ([#3394](https://github.com/ReactiveX/RxJS/issues/3394)) ([6725be1](https://github.com/ReactiveX/RxJS/commit/6725be1))
1134
- - **typings:** fixed some cases where multicast and publish would not return a ConnectableObservable ([#3320](https://github.com/ReactiveX/RxJS/issues/3320)) ([ddffecc](https://github.com/ReactiveX/RxJS/commit/ddffecc))
1135
- - reexport Symbol.observable typings patch ([4c4d7b0](https://github.com/ReactiveX/RxJS/commit/4c4d7b0))
1136
- - remove the root operators.ts because it overshadows operators/package.json ([184b6d4](https://github.com/ReactiveX/RxJS/commit/184b6d4))
1137
-
1138
- ### Code Refactoring
1139
-
1140
- - **Observable.if:** remove ts hacks from Observable ([f46f261](https://github.com/ReactiveX/RxJS/commit/f46f261))
1141
- - **Rx.ts:** move Rx.ts to internal ([#3400](https://github.com/ReactiveX/RxJS/issues/3400)) ([7ad2119](https://github.com/ReactiveX/RxJS/commit/7ad2119))
1142
-
1143
- ### Features
1144
-
1145
- - **ajax:** default to opting into CORS ([#3442](https://github.com/ReactiveX/RxJS/issues/3442)) ([aa3bf57](https://github.com/ReactiveX/RxJS/commit/aa3bf57)), closes [#3273](https://github.com/ReactiveX/RxJS/issues/3273)
1146
- - **bindCallback:** remove result selector ([2535641](https://github.com/ReactiveX/RxJS/commit/2535641))
1147
- - **bindNodeCallback:** remove resultSelector ([26e6e5c](https://github.com/ReactiveX/RxJS/commit/26e6e5c))
1148
- - **compat:** add compatability package definition ([40aca82](https://github.com/ReactiveX/RxJS/commit/40aca82))
1149
- - **compat:** add concat operator to compatibility layer ([6e84e78](https://github.com/ReactiveX/RxJS/commit/6e84e78))
1150
- - **compat:** add legacy reexport compat layer for 'rxjs/Observable' and other top-level symbols ([70e562b](https://github.com/ReactiveX/RxJS/commit/70e562b))
1151
- - **compat:** add Rx.ts to rxjs-compat ([df25de1](https://github.com/ReactiveX/RxJS/commit/df25de1))
1152
- - **compat:** compatibility mode for combineLatest ([fd86df5](https://github.com/ReactiveX/RxJS/commit/fd86df5))
1153
- - **compat:** compatibility mode for merge operator ([ffce980](https://github.com/ReactiveX/RxJS/commit/ffce980))
1154
- - **compat:** compatibility mode for zip operator ([9f131d0](https://github.com/ReactiveX/RxJS/commit/9f131d0))
1155
- - **compat:** make Rx.ts for compatability layer work as the default for rxjs-compat ([d43a4c2](https://github.com/ReactiveX/RxJS/commit/d43a4c2))
1156
- - **compat:** set up correct imports & get build working for rxjs-comapt ([1a0dc97](https://github.com/ReactiveX/RxJS/commit/1a0dc97))
1157
- - **deprecated-error-handling-warning:** add console warning when code sets the flag to bad mode ([49be56a](https://github.com/ReactiveX/RxJS/commit/49be56a))
1158
- - **error-handling:** add deprecated sync error handling behind a flag ([583cd1d](https://github.com/ReactiveX/RxJS/commit/583cd1d))
1159
- - **exhaustMap:** simplify interface ([42589d0](https://github.com/ReactiveX/RxJS/commit/42589d0))
1160
- - **first:** simplify interface ([a011338](https://github.com/ReactiveX/RxJS/commit/a011338))
1161
- - **forkJoin:** simplify interface ([4d2338b](https://github.com/ReactiveX/RxJS/commit/4d2338b))
1162
- - **fromEvent:** remove resultSelector ([197f449](https://github.com/ReactiveX/RxJS/commit/197f449))
1163
- - **fromEvent:** will now emit an array when event emits multiple arguments ([51b37fd](https://github.com/ReactiveX/RxJS/commit/51b37fd))
1164
- - **fromEventPattern:** removed resultSelector ([6b34f9f](https://github.com/ReactiveX/RxJS/commit/6b34f9f))
1165
- - **last:** simplify interface ([3240419](https://github.com/ReactiveX/RxJS/commit/3240419))
1166
- - **mergeMap|concatMap|concatMapTo:** simplified the signatures ([d293245](https://github.com/ReactiveX/RxJS/commit/d293245))
1167
- - **mergeMapTo:** simplify interface ([582c7be](https://github.com/ReactiveX/RxJS/commit/582c7be))
1168
- - **never:** no longer export `never` function ([#3386](https://github.com/ReactiveX/RxJS/issues/3386)) ([53debc8](https://github.com/ReactiveX/RxJS/commit/53debc8))
1169
- - **switchMap|switchMapTo:** simplify interface ([959fb6a](https://github.com/ReactiveX/RxJS/commit/959fb6a))
1170
- - **Symbol.iterator:** no longer polyfilled ([#3389](https://github.com/ReactiveX/RxJS/issues/3389)) ([6319f3c](https://github.com/ReactiveX/RxJS/commit/6319f3c))
1171
- - **Symbol.observable:** is no longer polyfilled ([#3387](https://github.com/ReactiveX/RxJS/issues/3387)) ([4a5aaaf](https://github.com/ReactiveX/RxJS/commit/4a5aaaf))
1172
- - **throwIfEmpty:** adds throwIfEmpty operator ([#3368](https://github.com/ReactiveX/RxJS/issues/3368)) ([9b21458](https://github.com/ReactiveX/RxJS/commit/9b21458))
1173
- - **typings:** updated typings for combineAll, mergeAll, concatAll, switch, exhaust, zipAll ([#3321](https://github.com/ReactiveX/RxJS/issues/3321)) ([f7e4c02](https://github.com/ReactiveX/RxJS/commit/f7e4c02))
1174
- - **umd:** UMD now mirrors export schema for ESM and CJS ([#3426](https://github.com/ReactiveX/RxJS/issues/3426)) ([556c904](https://github.com/ReactiveX/RxJS/commit/556c904))
1175
-
1176
- ### BREAKING CHANGES
1177
-
1178
- - **ajax:** will no longer execute a CORS request by default, you must opt-in with the `crossDomain` flag in the config.
1179
- - **mergeMap|concatMap|concatMapTo:** mergeMap, concatMap and concatMapTo no longer support a result selector, if you need to use a result selector, use the following pattern: `source.mergeMap(x => of(x + x).pipe(map(y => y + x))` (the pattern would be the same for `concatMap`).
1180
- - **never:** no longer exported. Use the `NEVER` constant instead.
1181
- - **bindCallback:** removes result selector, use `map` instead: `bindCallback(fn1, fn2)()` becomes `bindCallback(fn1)().pipe(map(fn2))`
1182
- - **Rx.ts:** importing from `rxjs/Rx` is no longer available. Upcoming backwards compat solution will allow that
1183
- - **Symbol.iterator:** We are no longer polyfilling `Symbol.iterator`. That would be done by a proper polyfilling library
1184
- - **Observable.if:** TypeScript users using `Observable.if` will have to cast `Observable` as any to get to `if`. It is a better idea to just use `iif` directly via `import { iif } from 'rxjs';`
1185
- - **bindNodeCallback:** resultSelector removed, use `map` instead: `bindNodeCallback(fn1, fn2)()` becomes `bindNodeCallback(fn1)().pipe(map(fn2))`
1186
- - **Symbol.observable:** RxJS will no longer be polyfilling Symbol.observable. That should be done by an actual polyfill library. This is to prevent duplication of code, and also to prevent having modules with side-effects in rxjs.
1187
- - **fromEvent:** result selector removed, use `map` instead: `fromEvent(target, 'click', fn)` becomes `fromEvent(target, 'click').pipe(map(fn))`
1188
- - **last:** no longer accepts `resultSelector` argument. To get this same functionality, use `map`.
1189
- - **first:** no longer supports `resultSelector` argument. The same functionality can be achieved by simply mapping either before or after `first` depending on your use case.
1190
- - **exhaustMap:** `resultSelector` no longer supported, to get this functionality use: `source.pipe(exhaustMap(x => of(x + x).pipe(map(y => x + y))))`
1191
- - **switchMap|switchMapTo:** `switchMap` and `switchMapTo` no longer take `resultSelector` arguments, to get the same functionality use `switchMap` and `map` in combination: `source.pipe(switchMap(x => of(x + x).pipe(y => x + y)))`.
1192
- - **mergeMapTo:** `mergeMapTo` no longer accepts a resultSelector, to get this functionality, you'll want to use `mergeMap` and `map` together: `source.pipe(mergeMap(() => inner).pipe(map(y => x + y)))`
1193
- - **fromEventPattern:** no longer supports a result selector, use `map` instead: `fromEventPattern(fn1, fn2, fn3)` becomes `fromEventPattern(fn1, fn2).pipe(map(fn3))`
1194
-
1195
- <a name="6.0.0-alpha.4"></a>
1196
-
1197
- # [6.0.0-alpha.4](https://github.com/ReactiveX/RxJS/compare/6.0.0-alpha.3...v6.0.0-alpha.4) (2018-03-13)
1198
-
1199
- ### Bug Fixes
1200
-
1201
- - **ESM:** Add [operators|ajax|websocket|testing]/package.json for ESM support, fixes [#3227](https://github.com/ReactiveX/RxJS/issues/3227) ([#3356](https://github.com/ReactiveX/RxJS/issues/3356)) ([725dcb4](https://github.com/ReactiveX/RxJS/commit/725dcb4))
1202
- - **fromEvent:** Defines toString to fix Closure compilations ([#3417](https://github.com/ReactiveX/RxJS/issues/3417)) ([1558b43](https://github.com/ReactiveX/RxJS/commit/1558b43))
1203
- - **fromEvent:** pass options in unsubscribe ([f1872b0](https://github.com/ReactiveX/RxJS/commit/f1872b0)), closes [#3349](https://github.com/ReactiveX/RxJS/issues/3349)
1204
- - **rxjs:** add exports for symbols/interfaces that were missing ([#3380](https://github.com/ReactiveX/RxJS/issues/3380)) ([1622ee0](https://github.com/ReactiveX/RxJS/commit/1622ee0))
1205
- - **rxjs:** make sure esm imports from index.js by default, not Rx.js ([#3316](https://github.com/ReactiveX/RxJS/issues/3316)) ([c2b00f4](https://github.com/ReactiveX/RxJS/commit/c2b00f4)), closes [#3315](https://github.com/ReactiveX/RxJS/issues/3315)
1206
- - **rxjs:** once again exports custom error types ([#3371](https://github.com/ReactiveX/RxJS/issues/3371)) ([4465a9f](https://github.com/ReactiveX/RxJS/commit/4465a9f))
1207
- - **rxjs:** remove types.ts importing from itself. ([#3383](https://github.com/ReactiveX/RxJS/issues/3383)) ([8fd50ad](https://github.com/ReactiveX/RxJS/commit/8fd50ad))
1208
- - correct internal module paths to be systemjs compatible ([#3412](https://github.com/ReactiveX/RxJS/issues/3412)) ([35abc9d](https://github.com/ReactiveX/RxJS/commit/35abc9d))
1209
- - **Symbol.iterator:** correctly handle case where Symbol constructor itself is not defined ([#3394](https://github.com/ReactiveX/RxJS/issues/3394)) ([6725be1](https://github.com/ReactiveX/RxJS/commit/6725be1))
1210
- - **typings:** fixed some cases where multicast and publish would not return a ConnectableObservable ([#3320](https://github.com/ReactiveX/RxJS/issues/3320)) ([ddffecc](https://github.com/ReactiveX/RxJS/commit/ddffecc))
1211
- - reexport Symbol.observable typings patch ([4c4d7b0](https://github.com/ReactiveX/RxJS/commit/4c4d7b0))
1212
- - remove the root operators.ts because it overshadows operators/package.json ([184b6d4](https://github.com/ReactiveX/RxJS/commit/184b6d4))
1213
-
1214
- ### Code Refactoring
1215
-
1216
- - **Observable.if:** remove ts hacks from Observable ([f46f261](https://github.com/ReactiveX/RxJS/commit/f46f261))
1217
- - **Rx.ts:** move Rx.ts to internal ([#3400](https://github.com/ReactiveX/RxJS/issues/3400)) ([7ad2119](https://github.com/ReactiveX/RxJS/commit/7ad2119))
1218
-
1219
- ### Features
1220
-
1221
- - **bindCallback:** remove result selector ([2535641](https://github.com/ReactiveX/RxJS/commit/2535641))
1222
- - **bindNodeCallback:** remove resultSelector ([26e6e5c](https://github.com/ReactiveX/RxJS/commit/26e6e5c))
1223
- - **exhaustMap:** simplify interface ([42589d0](https://github.com/ReactiveX/RxJS/commit/42589d0))
1224
- - **first:** simplify interface ([a011338](https://github.com/ReactiveX/RxJS/commit/a011338))
1225
- - **forkJoin:** simplify interface ([4d2338b](https://github.com/ReactiveX/RxJS/commit/4d2338b))
1226
- - **fromEvent:** remove resultSelector ([197f449](https://github.com/ReactiveX/RxJS/commit/197f449))
1227
- - **fromEvent:** will now emit an array when event emits multiple arguments ([51b37fd](https://github.com/ReactiveX/RxJS/commit/51b37fd))
1228
- - **fromEventPattern:** removed resultSelector ([6b34f9f](https://github.com/ReactiveX/RxJS/commit/6b34f9f))
1229
- - **last:** simplify interface ([3240419](https://github.com/ReactiveX/RxJS/commit/3240419))
1230
- - **mergeMap|concatMap|concatMapTo:** simplified the signatures ([d293245](https://github.com/ReactiveX/RxJS/commit/d293245))
1231
- - **mergeMapTo:** simplify interface ([582c7be](https://github.com/ReactiveX/RxJS/commit/582c7be))
1232
- - **never:** no longer export `never` function ([#3386](https://github.com/ReactiveX/RxJS/issues/3386)) ([53debc8](https://github.com/ReactiveX/RxJS/commit/53debc8))
1233
- - **switchMap|switchMapTo:** simplify interface ([959fb6a](https://github.com/ReactiveX/RxJS/commit/959fb6a))
1234
- - **Symbol.iterator:** no longer polyfilled ([#3389](https://github.com/ReactiveX/RxJS/issues/3389)) ([6319f3c](https://github.com/ReactiveX/RxJS/commit/6319f3c))
1235
- - **Symbol.observable:** is no longer polyfilled ([#3387](https://github.com/ReactiveX/RxJS/issues/3387)) ([4a5aaaf](https://github.com/ReactiveX/RxJS/commit/4a5aaaf))
1236
- - **throwIfEmpty:** adds throwIfEmpty operator ([#3368](https://github.com/ReactiveX/RxJS/issues/3368)) ([9b21458](https://github.com/ReactiveX/RxJS/commit/9b21458))
1237
- - **typings:** updated typings for combineAll, mergeAll, concatAll, switch, exhaust, zipAll ([#3321](https://github.com/ReactiveX/RxJS/issues/3321)) ([f7e4c02](https://github.com/ReactiveX/RxJS/commit/f7e4c02))
1238
- - **umd:** UMD now mirrors export schema for ESM and CJS ([#3426](https://github.com/ReactiveX/RxJS/issues/3426)) ([556c904](https://github.com/ReactiveX/RxJS/commit/556c904))
1239
-
1240
- ### BREAKING CHANGES
1241
-
1242
- - **Symbol.observable:** RxJS will no longer be polyfilling Symbol.observable. That should be done by an actual polyfill library. This is to prevent duplication of code, and also to prevent having modules with side-effects in rxjs.
1243
- - **mergeMap|concatMap|concatMapTo:** mergeMap, concatMap and concatMapTo no longer support a result selector, if you need to use a result selector, use the following pattern: `source.mergeMap(x => of(x + x).pipe(map(y => y + x))` (the pattern would be the same for `concatMap`).
1244
- - **bindCallback:** removes result selector, use `map` instead: `bindCallback(fn1, fn2)()` becomes `bindCallback(fn1)().pipe(map(fn2))`
1245
- - **Rx.ts:** importing from `rxjs/Rx` is no longer available. Upcoming backwards compat solution will allow that
1246
- - **Symbol.iterator:** We are no longer polyfilling `Symbol.iterator`. That would be done by a proper polyfilling library
1247
- - **Observable.if:** TypeScript users using `Observable.if` will have to cast `Observable` as any to get to `if`. It is a better idea to just use `iif` directly via `import { iif } from 'rxjs';`
1248
- - **bindNodeCallback:** resultSelector removed, use `map` instead: `bindNodeCallback(fn1, fn2)()` becomes `bindNodeCallback(fn1)().pipe(map(fn2))`
1249
- - **never:** no longer exported. Use the `NEVER` constant instead.
1250
- - **fromEvent:** result selector removed, use `map` instead: `fromEvent(target, 'click', fn)` becomes `fromEvent(target, 'click').pipe(map(fn))`
1251
- - **last:** no longer accepts `resultSelector` argument. To get this same functionality, use `map`.
1252
- - **first:** no longer supports `resultSelector` argument. The same functionality can be achieved by simply mapping either before or after `first` depending on your use case.
1253
- - **exhaustMap:** `resultSelector` no longer supported, to get this functionality use: `source.pipe(exhaustMap(x => of(x + x).pipe(map(y => x + y))))`
1254
- - **switchMap|switchMapTo:** `switchMap` and `switchMapTo` no longer take `resultSelector` arguments, to get the same functionality use `switchMap` and `map` in combination: `source.pipe(switchMap(x => of(x + x).pipe(y => x + y)))`.
1255
- - **mergeMapTo:** `mergeMapTo` no longer accepts a resultSelector, to get this functionality, you'll want to use `mergeMap` and `map` together: `source.pipe(mergeMap(() => inner).pipe(map(y => x + y)))`
1256
- - **fromEventPattern:** no longer supports a result selector, use `map` instead: `fromEventPattern(fn1, fn2, fn3)` becomes `fromEventPattern(fn1, fn2).pipe(map(fn3))`
1257
-
1258
- <a name="6.0.0-alpha.3"></a>
1259
-
1260
- # [6.0.0-alpha.3](https://github.com/ReactiveX/RxJS/compare/6.0.0-alpha.2...v6.0.0-alpha.3) (2018-02-06)
1261
-
1262
- ### Bug Fixes
1263
-
1264
- - **animationFrame.spec:** spec description fix ([#3140](https://github.com/ReactiveX/RxJS/issues/3140)) ([ab6c325](https://github.com/ReactiveX/RxJS/commit/ab6c325))
1265
- - **debounce:** support scalar selectors ([#3236](https://github.com/ReactiveX/RxJS/issues/3236)) ([1548393](https://github.com/ReactiveX/RxJS/commit/1548393)), closes [#3232](https://github.com/ReactiveX/RxJS/issues/3232)
1266
- - **forkJoin:** catch and forward selector errors ([#3261](https://github.com/ReactiveX/RxJS/issues/3261)) ([e57bbb7](https://github.com/ReactiveX/RxJS/commit/e57bbb7)), closes [#3216](https://github.com/ReactiveX/RxJS/issues/3216)
1267
- - **Observable:** expose pipe rest parameter overload ([#3292](https://github.com/ReactiveX/RxJS/issues/3292)) ([7ff5bc3](https://github.com/ReactiveX/RxJS/commit/7ff5bc3))
1268
- - **onErrorResumeNext:** no longer holds onto subscriptions too long ([abbbdad](https://github.com/ReactiveX/RxJS/commit/abbbdad)), closes [#3178](https://github.com/ReactiveX/RxJS/issues/3178)
1269
- - **scheduler:** prevent unwanted clearInterval ([#3226](https://github.com/ReactiveX/RxJS/issues/3226)) ([d7cfb42](https://github.com/ReactiveX/RxJS/commit/d7cfb42)), closes [#3042](https://github.com/ReactiveX/RxJS/issues/3042)
1270
- - **timer:** multiple subscriptions to timer(Date) behaves correctly ([aafa7ff](https://github.com/ReactiveX/RxJS/commit/aafa7ff)), closes [#3252](https://github.com/ReactiveX/RxJS/issues/3252)
1271
- - **typings:** correct compilation warnings from missing types in tests ([3aad6bc](https://github.com/ReactiveX/RxJS/commit/3aad6bc))
1272
- - **typings:** relax debounce selector type ([c419ab4](https://github.com/ReactiveX/RxJS/commit/c419ab4)), closes [#3164](https://github.com/ReactiveX/RxJS/issues/3164)
1273
- - **typings:** relax throttle selector type ([#3205](https://github.com/ReactiveX/RxJS/issues/3205)) ([e83fda7](https://github.com/ReactiveX/RxJS/commit/e83fda7)), closes [#3204](https://github.com/ReactiveX/RxJS/issues/3204)
1274
- - **typings:** the return type of factory of defer should be ObservableInput<T> ([#3211](https://github.com/ReactiveX/RxJS/issues/3211)) ([dc41a5e](https://github.com/ReactiveX/RxJS/commit/dc41a5e))
1275
-
1276
- ### Features
1277
-
1278
- - **empty:** empty() returns the same instance ([5c7c749](https://github.com/ReactiveX/RxJS/commit/5c7c749))
1279
- - **EMPTY:** observable constant EMPTY now exported ([08fb074](https://github.com/ReactiveX/RxJS/commit/08fb074))
1280
- - **never:** always return the same instance ([#3249](https://github.com/ReactiveX/RxJS/issues/3249)) ([d57fa52](https://github.com/ReactiveX/RxJS/commit/d57fa52))
1281
- - **rxjs:** move rxjs/create into rxjs ([#3299](https://github.com/ReactiveX/RxJS/issues/3299)) ([6711fe2](https://github.com/ReactiveX/RxJS/commit/6711fe2))
1282
- - **throwError:** functional version of throwError ([639236e](https://github.com/ReactiveX/RxJS/commit/639236e))
1283
-
1284
- ### BREAKING CHANGES
1285
-
1286
- - **rxjs:** `rxjs/create` items are now exported from `rxjs`
1287
- - **throwError:** Observable.throw no longer available in TypeScript without a cast
1288
- - **empty:** `empty()` without a scheduler will return the same
1289
- instance every time.
1290
- - **empty:** In TypeScript, `empty()` no longer accepts a generic
1291
- argument, as it returns `Observable<never>`
1292
- - **never:** `never()` always returns the same instance
1293
- - **never:** TypeScript typing for `never()` is now `Observable<never>` and the function no longer requires a generic type.
1294
-
1295
- <a name="6.0.0-alpha.2"></a>
1296
-
1297
- # [6.0.0-alpha.2](https://github.com/ReactiveX/RxJS/compare/6.0.0-alpha.1...6.0.0-alpha.2) (2018-01-14)
1298
-
1299
- ### Bug Fixes
1300
-
1301
- - **build:** properly outputs subdirectories like `rxjs/operators` ([34fe560](https://github.com/ReactiveX/RxJS/commit/34fe560))
1302
-
1303
- <a name="6.0.0-alpha.1"></a>
1304
-
1305
- # [6.0.0-alpha.1](https://github.com/ReactiveX/RxJS/compare/5.5.3...v6.0.0-alpha.1) (2018-01-12)
1306
-
1307
- ### Bug Fixes
1308
-
1309
- - Revert "fix(scheduler): prevent unwanted clearInterval ([#3044](https://github.com/ReactiveX/RxJS/issues/3044))" ([ad5c7c6](https://github.com/ReactiveX/RxJS/commit/ad5c7c6))
1310
- - Revert "fix(scheduler): prevent unwanted clearInterval ([#3044](https://github.com/ReactiveX/RxJS/issues/3044))" ([64f9285](https://github.com/ReactiveX/RxJS/commit/64f9285))
1311
- - **debounceTime:** synchronous reentrancy of debounceTime no longer swallows the second value ([#3218](https://github.com/ReactiveX/RxJS/issues/3218)) ([598e9ce](https://github.com/ReactiveX/RxJS/commit/598e9ce)), closes [#2748](https://github.com/ReactiveX/RxJS/issues/2748)
1312
- - **dependency:** move symbol-observable into devdependency ([4400628](https://github.com/ReactiveX/RxJS/commit/4400628))
1313
- - **IteratorObservable:** get new iterator for each subscription ([#2497](https://github.com/ReactiveX/RxJS/issues/2497)) ([1bd0a58](https://github.com/ReactiveX/RxJS/commit/1bd0a58)), closes [#2496](https://github.com/ReactiveX/RxJS/issues/2496)
1314
- - **Observable.toArray:** Fix toArray with multiple subscriptions. ([#3134](https://github.com/ReactiveX/RxJS/issues/3134)) ([3390926](https://github.com/ReactiveX/RxJS/commit/3390926))
1315
- - **SystemJS:** avoid node module resolution of pipeable operators ([#3025](https://github.com/ReactiveX/RxJS/issues/3025)) ([0f3cf71](https://github.com/ReactiveX/RxJS/commit/0f3cf71)), closes [#2971](https://github.com/ReactiveX/RxJS/issues/2971) [#2996](https://github.com/ReactiveX/RxJS/issues/2996) [#3011](https://github.com/ReactiveX/RxJS/issues/3011)
1316
- - **tap:** make next optional ([#3073](https://github.com/ReactiveX/RxJS/issues/3073)) ([e659f0c](https://github.com/ReactiveX/RxJS/commit/e659f0c)), closes [#2534](https://github.com/ReactiveX/RxJS/issues/2534)
1317
- - **TSC:** Fixing TSC errors. Fixes [#3020](https://github.com/ReactiveX/RxJS/issues/3020) ([01d1575](https://github.com/ReactiveX/RxJS/commit/01d1575))
1318
- - **typings:** the return type of project of mergeScan should be ObservableInput<R> ([23fe17d](https://github.com/ReactiveX/RxJS/commit/23fe17d))
1319
-
1320
- ### Chores
1321
-
1322
- - **TypeScript:** Bump up typescript to latest ([#3009](https://github.com/ReactiveX/RxJS/issues/3009)) ([2f395da](https://github.com/ReactiveX/RxJS/commit/2f395da))
1323
-
1324
- ### Code Refactoring
1325
-
1326
- - **asap:** Remove setImmediate polyfill ([5eb6af7](https://github.com/ReactiveX/RxJS/commit/5eb6af7))
1327
- - **distinct:** Remove Set polyfill ([68ee499](https://github.com/ReactiveX/RxJS/commit/68ee499))
1328
- - **groupBy:** Remove Map polyfill ([74b5b1a](https://github.com/ReactiveX/RxJS/commit/74b5b1a))
1329
-
1330
- ### Features
1331
-
1332
- - **Observable:** unhandled errors are now reported to HostReportErrors ([#3062](https://github.com/ReactiveX/RxJS/issues/3062)) ([cd9626a](https://github.com/ReactiveX/RxJS/commit/cd9626a))
1333
- - **reorganize:** move ./interfaces.ts to internal/types.ts ([cfbfaac](https://github.com/ReactiveX/RxJS/commit/cfbfaac))
1334
- - **reorganize:** internal utils hidden ([70058cd](https://github.com/ReactiveX/RxJS/commit/70058cd))
1335
- - **reorganize:** add `rxjs/create` exports ([c9963bd](https://github.com/ReactiveX/RxJS/commit/c9963bd))
1336
- - **reorganize:** ajax observable creator now exported from `rxjs/ajax` ([e971c93](https://github.com/ReactiveX/RxJS/commit/e971c93))
1337
- - **reorganize:** all patch operators moved to `internal` directory ([7342401](https://github.com/ReactiveX/RxJS/commit/7342401))
1338
- - **reorganize:** export `noop` and `identity` from `rxjs` ([810c4d0](https://github.com/ReactiveX/RxJS/commit/810c4d0))
1339
- - **reorganize:** export `Notification` from `rxjs` ([8809b48](https://github.com/ReactiveX/RxJS/commit/8809b48))
1340
- - **reorganize:** export schedulers from `rxjs` ([abd3b61](https://github.com/ReactiveX/RxJS/commit/abd3b61))
1341
- - **reorganize:** export Subject, ReplaySubject, BehaviorSubject from rxjs ([bd683ca](https://github.com/ReactiveX/RxJS/commit/bd683ca))
1342
- - **reorganize:** export the `pipe` utility function from `rxjs` ([4574310](https://github.com/ReactiveX/RxJS/commit/4574310))
1343
- - **reorganize:** hid testing implementation details ([b981666](https://github.com/ReactiveX/RxJS/commit/b981666))
1344
- - **reorganize:** move observable implementations under internal directory ([2d5c3f8](https://github.com/ReactiveX/RxJS/commit/2d5c3f8))
1345
- - **reorganize:** move operator impls under internal directory ([207976f](https://github.com/ReactiveX/RxJS/commit/207976f))
1346
- - **reorganize:** move top-level impls under internal directory ([c3bb705](https://github.com/ReactiveX/RxJS/commit/c3bb705))
1347
- - **reorganize:** moved symbols to be internal ([80783ab](https://github.com/ReactiveX/RxJS/commit/80783ab))
1348
- - **reorganize:** operators all exported from `rxjs/operators` ([b1f8bfe](https://github.com/ReactiveX/RxJS/commit/b1f8bfe))
1349
- - **reorganize:** websocket subject creator now exported from `rxjs/websocket` ([5ac62c0](https://github.com/ReactiveX/RxJS/commit/5ac62c0))
1350
-
1351
- ### BREAKING CHANGES
1352
-
1353
- - **webSocket:** `webSocket` creator function now exported from `rxjs/websocket` as `websocket`.
1354
- - **IteratorObservable:** IteratorObservable no longer share iterator between
1355
- subscription
1356
- - **utils:** Many internal use utilities like `isArray` are now hidden under `rxjs/internal`, they are implementation details and should not be used.
1357
- - **testing observables:** `HotObservable` and `ColdObservable`, and other testing support types are no longer exported directly.
1358
- - **creation functions:** All create functions such as `of`, `from`, `combineLatest` and `fromEvent` should now be imported from `rxjs/create`.
1359
- - **types and interfaces:** Can no longer explicitly import types from `rxjs/interfaces`, import them from `rxjs` instead
1360
- - **symbols:** Symbols are no longer exported directly from modules such as `rxjs/symbol/observable` please use `Symbol.observable` and `Symbol.iterator` (polyfills may be required)
1361
- - **deep imports:** Can no longer deep import top-level types such as `rxjs/Observable`, `rxjs/Subject`, `rxjs/ReplaySubject`, et al. All imports should be done directly from `rxjs`, for example: `import \{ Observable, Subject \} from 'rxjs';`
1362
- - **schedulers:** Scheduler instances have changed names to be suffixed with `Scheduler`, (e.g. `asap` -> `asapScheduler`)
1363
- - **operators:** Pipeable operators must now be imported from `rxjs`
1364
- like so: `import { map, filter, switchMap } from 'rxjs/operators';`. No deep imports.
1365
- - **ajax:** Ajax observable should be imported from `rxjs/ajax`.
1366
- - **Observable:** You should no longer deep import custom Observable
1367
- implementations such as `ArrayObservable` or `ForkJoinObservable`.
1368
- - **\_throw:** `_throw` is now exported as `throwError`
1369
- - **if:** `if` is now exported as `iif`
1370
- - **operators:** Deep imports to `rxjs/operator/*` will no longer work. Again, pipe operators are still where they were.
1371
- - **error handling:** Unhandled errors are no longer caught and rethrown, rather they are caught and scheduled to be thrown, which causes them to be reported to window.onerror or process.on('error'), depending on the environment. Consequently, teardown after a synchronous, unhandled, error will no longer occur, as the teardown would not exist, and producer interference cannot occur
1372
- - **distinct:** Using `distinct` requires a `Set` implementation and must be polyfilled in older runtimes
1373
- - **asap:** Old runtimes must polyfill Promise in order to use ASAP scheduling.
1374
- - **groupBy:** Older runtimes will require Map to be polyfilled to use
1375
- `groupBy`
1376
- - **TypeScript:** IE10 and lower will need to polyfill `Object.setPrototypeOf`
1377
- - **operators removed:** Operator versions of static observable creators such as
1378
- `merge`, `concat`, `zip`, `onErrorResumeNext`, and `race` have been
1379
- removed. Please use the static versions of those operations. e.g.
1380
- `a.pipe(concat(b, c))` becomes `concat(a, b, c)`.
1381
-
1382
- <a name="5.5.6"></a>
1383
-
1384
- ## [5.5.6](https://github.com/ReactiveX/RxJS/compare/5.5.5...v5.5.6) (2017-12-21)
1385
-
1386
- ### Bug Fixes
1387
-
1388
- - **Observable:** rethrow errors when syncErrorThrowable and inherit it from destination. Fixes [#2813](https://github.com/ReactiveX/RxJS/issues/2813) ([541b49d](https://github.com/ReactiveX/RxJS/commit/541b49d))
1389
-
1390
- <a name="5.5.5"></a>
1391
-
1392
- ## [5.5.5](https://github.com/ReactiveX/RxJS/compare/5.5.4...v5.5.5) (2017-12-06)
1393
-
1394
- ### Support Added
1395
-
1396
- - **Bazel:** Add files to support users that want Bazel builds with RxJS ([12dac3b](https://github.com/ReactiveX/rxjs/commit/12dac3b))
1397
-
1398
- <a name="5.5.4"></a>
1399
-
1400
- ## [5.5.4](https://github.com/ReactiveX/RxJS/compare/5.5.3...v5.5.4) (2017-12-05)
1401
-
1402
- ### Bug Fixes
1403
-
1404
- - **scheduler:** resolve regression on angular router with zones ([#3158](https://github.com/ReactiveX/RxJS/issues/3158)) ([520b06a](https://github.com/ReactiveX/RxJS/commit/520b06a))
1405
- - **publish:** re-publish after having built with proper version of TypeScript. ([f0ff5bc](https://github.com/ReactiveX/RxJS/commit/f0ff5bc), closes[#3155](https://github.com/ReactiveX/rxjs/issues/3155))
1406
-
1407
- <a name="5.5.3"></a>
1408
-
1409
- ## [5.5.3](https://github.com/ReactiveX/RxJS/compare/5.5.2...v5.5.3) (2017-12-01)
1410
-
1411
- ### Bug Fixes
1412
-
1413
- - **concatStatic:** missing exports for mergeStatic and concatStatic ([#2999](https://github.com/ReactiveX/RxJS/issues/2999)) ([cae5f9b](https://github.com/ReactiveX/RxJS/commit/cae5f9b))
1414
- - **scheduler:** prevent unwanted clearInterval ([#3044](https://github.com/ReactiveX/RxJS/issues/3044)) ([7d722d4](https://github.com/ReactiveX/RxJS/commit/7d722d4)), closes [#3042](https://github.com/ReactiveX/RxJS/issues/3042)
1415
- - **SystemJS:** avoid node module resolution of pipeable operators ([#3025](https://github.com/ReactiveX/RxJS/issues/3025)) ([d77e3d7](https://github.com/ReactiveX/RxJS/commit/d77e3d7)), closes [#2971](https://github.com/ReactiveX/RxJS/issues/2971) [#2996](https://github.com/ReactiveX/RxJS/issues/2996) [#3011](https://github.com/ReactiveX/RxJS/issues/3011)
1416
- - **typings:** fix subscribe overloads ([#3053](https://github.com/ReactiveX/RxJS/issues/3053)) ([1a9fd42](https://github.com/ReactiveX/RxJS/commit/1a9fd42)), closes [#3052](https://github.com/ReactiveX/RxJS/issues/3052)
1417
-
1418
- <a name="5.5.2"></a>
1419
-
1420
- ## [5.5.2](https://github.com/ReactiveX/RxJS/compare/5.5.1...v5.5.2) (2017-10-25)
1421
-
1422
- ### Bug Fixes
1423
-
1424
- - **package:** fixed import failures in Webpack ([#2987](https://github.com/ReactiveX/RxJS/issues/2987)) ([e16202d](https://github.com/ReactiveX/RxJS/commit/e16202d))
1425
- - **typings:** improved type inference for arguments to publishReplay ([#2992](https://github.com/ReactiveX/RxJS/issues/2992)) ([0753ff7](https://github.com/ReactiveX/RxJS/commit/0753ff7)), closes [#2991](https://github.com/ReactiveX/RxJS/issues/2991)
1426
- - **typings:** ensure TS types for `zip` and `combineLatest` are properly inferred. ([b8e6cf8](https://github.com/ReactiveX/RxJS/commit/b8e6cf8))
1427
- - **typings:** publish variants will properly return ConnectableObservable([#2983](https://github.com/ReactiveX/RxJS/issues/2983)) ([d563bfa](https://github.com/ReactiveX/RxJS/commit/d563bfa))
1428
-
1429
- <a name="5.5.1"></a>
1430
-
1431
- ## [5.5.1](https://github.com/ReactiveX/RxJS/compare/5.5.0...v5.5.1) (2017-10-24)
1432
-
1433
- ### Bug Fixes
1434
-
1435
- - **build:** Remove `module` and `es2015` keys to avoid resolution conflicts ([5073139](https:/github.com/ReactiveX/RxJS/commit/5073139))
1436
- - **ajaxobservable:** fix operator import path ([d9b62ed](https://github.com/ReactiveX/RxJS/commit/d9b62ed))
1437
-
1438
- <a name="5.5.0"></a>
1439
-
1440
- # [5.5.0](https://github.com/ReactiveX/RxJS/compare/5.5.0-beta.7...v5.5.0) (2017-10-18)
1441
-
1442
- ### Bug Fixes
1443
-
1444
- - **build:** CJS sourceMaps now inlined into sourcesContent ([39b4af5](https://github.com/ReactiveX/RxJS/commit/39b4af5)), closes [#2934](https://github.com/ReactiveX/RxJS/issues/2934)
1445
-
1446
- ### Features
1447
-
1448
- - **publishReplay:** add selector function to publishReplay ([#2885](https://github.com/ReactiveX/RxJS/issues/2885)) ([e0efd13](https://github.com/ReactiveX/RxJS/commit/e0efd13))
1449
-
1450
- <a name="5.5.0-beta.7"></a>
1451
-
1452
- # [5.5.0-beta.7](https://github.com/ReactiveX/RxJS/compare/5.5.0-beta.5...5.5.0-beta.7) (2017-10-13)
1453
-
1454
- (Due to a publish snafu, there is no 5.5.0-beta.6) (womp womp 👎)
1455
-
1456
- ### Bug Fixes
1457
-
1458
- - **build:** sourceMaps updated to support CJS properly again ([75f7f11](https://github.com/ReactiveX/RxJS/commit/75f7f11)), closes [#2934](https://github.com/ReactiveX/RxJS/issues/2934)
1459
- - **flatMap:** reexport flatMap as alias of mergeMap ([#2920](https://github.com/ReactiveX/RxJS/issues/2920)) ([9922c02](https://github.com/ReactiveX/RxJS/commit/9922c02))
1460
- - **publish:** correct the name and republish to sync packages ([464b115](https://github.com/ReactiveX/RxJS/commit/464b115))
1461
- - **shareReplay:** no longer exporting function unnecessarily ([#2928](https://github.com/ReactiveX/RxJS/issues/2928)) ([e159578](https://github.com/ReactiveX/RxJS/commit/e159578))
1462
- - **shareReplay:** properly uses `lift` ([#2924](https://github.com/ReactiveX/RxJS/issues/2924)) ([3d9cf87](https://github.com/ReactiveX/RxJS/commit/3d9cf87)), closes [#2921](https://github.com/ReactiveX/RxJS/issues/2921)
1463
- - **toPromise:** include toPromise in build output ([#2923](https://github.com/ReactiveX/RxJS/issues/2923)) ([f55bfa5](https://github.com/ReactiveX/RxJS/commit/f55bfa5)), closes [#2922](https://github.com/ReactiveX/RxJS/issues/2922)
1464
-
1465
- <a name="5.5.0-beta.5"></a>
1466
-
1467
- # [5.5.0-beta.5](https://github.com/ReactiveX/RxJS/compare/5.5.0-beta.4...v5.5.0-beta.5) (2017-10-06)
1468
-
1469
- ### Bug Fixes
1470
-
1471
- - **toPromise:** remove lettable version of toPromise ([031edca](https://github.com/ReactiveX/RxJS/commit/031edca)), closes [#2868](https://github.com/ReactiveX/RxJS/issues/2868)
1472
-
1473
- ### Features
1474
-
1475
- - **toPromise:** now exists as a permanent method on Observable ([2e49a5c](https://github.com/ReactiveX/RxJS/commit/2e49a5c))
1476
-
1477
- <a name="5.5.0-beta.4"></a>
1478
-
1479
- # [5.5.0-beta.4](https://github.com/ReactiveX/RxJS/compare/5.5.0-beta.3...v5.5.0-beta.4) (2017-10-06)
1480
-
1481
- ### Bug Fixes
1482
-
1483
- - **publish:** fix selector typings ([#2891](https://github.com/ReactiveX/RxJS/issues/2891)) ([9ee234d](https://github.com/ReactiveX/RxJS/commit/9ee234d)), closes [#2889](https://github.com/ReactiveX/RxJS/issues/2889)
1484
- - **shareReplay:** properly retains history on subscribe ([#2910](https://github.com/ReactiveX/RxJS/issues/2910)) ([accbcd0](https://github.com/ReactiveX/RxJS/commit/accbcd0)), closes [#2908](https://github.com/ReactiveX/RxJS/issues/2908)
1485
- - **subscribeOn:** remove subscribeOn from reexport to support treesha… ([#2899](https://github.com/ReactiveX/RxJS/issues/2899)) ([fb51a02](https://github.com/ReactiveX/RxJS/commit/fb51a02))
1486
-
1487
- <a name="5.5.0-beta.3"></a>
1488
-
1489
- # [5.5.0-beta.3](https://github.com/ReactiveX/RxJS/compare/5.5.0-beta.2...v5.5.0-beta.3) (2017-10-03)
1490
-
1491
- ### Bug Fixes
1492
-
1493
- - **build:** revert to 5.4.x build output for CJS & add configurable support for ESM ([#2878](https://github.com/ReactiveX/RxJS/issues/2878)) ([167456a](https://github.com/ReactiveX/RxJS/commit/167456a))
1494
- - **concatAll:** use higher-order lettable version of concatAll ([60c96ab](https://github.com/ReactiveX/RxJS/commit/60c96ab))
1495
- - **mergeAll:** use higher-order lettable version of mergeAll ([f0b703b](https://github.com/ReactiveX/RxJS/commit/f0b703b))
1496
-
1497
- <a name="5.5.0-beta.2"></a>
1498
-
1499
- # [5.5.0-beta.2](https://github.com/ReactiveX/RxJS/compare/5.5.0-beta.1...v5.5.0-beta.2) (2017-09-27)
1500
-
1501
- ### Bug Fixes
1502
-
1503
- - **build:** make CJS references to import X from '../operators' work correctly with SystemJS ([#2874](https://github.com/ReactiveX/RxJS/issues/2874)) ([3dd4cc4](https://github.com/ReactiveX/RxJS/commit/3dd4cc4))
1504
-
1505
- <a name="5.5.0-beta.1"></a>
1506
-
1507
- # [5.5.0-beta.1](https://github.com/ReactiveX/RxJS/compare/5.5.0-beta.0...v5.5.0-beta.1) (2017-09-27)
1508
-
1509
- ### Bug Fixes
1510
-
1511
- - **package:** published from a Linux machine to prevent a strange issue where
1512
- the Observable directory was not showing up when installed on some Linux
1513
- environments.
1514
- - **build:** fix source maps by adding back sources and fixing path ([#2872](https://github.com/ReactiveX/RxJS/issues/2872)) ([daaf424](https://github.com/ReactiveX/RxJS/commit/daaf424))
1515
- - **package:** remove src directory and fix typings location ([#2866](https://github.com/ReactiveX/RxJS/issues/2866)) ([c57eea7](https://github.com/ReactiveX/RxJS/commit/c57eea7))
1516
-
1517
- ### Features
1518
-
1519
- - **global:** export lettables as Rx.operators ([#2862](https://github.com/ReactiveX/RxJS/issues/2862)) ([ba2f586](https://github.com/ReactiveX/RxJS/commit/ba2f586)), closes [#2861](https://github.com/ReactiveX/RxJS/issues/2861)
1520
-
1521
- <a name="5.5.0-beta.0"></a>
1522
-
1523
- # [5.5.0-beta.0](https://github.com/ReactiveX/RxJS/compare/5.4.3...5.5.0-beta.0) (2017-09-22)
1524
-
1525
- **Important! Checkout the explanation of the new [lettable operators features here](doc/lettable-operators.md)**
1526
-
1527
- ### Bug Fixes
1528
-
1529
- - **package:** correct errors generated during rollup for UMD generation ([#2839](https://github.com/ReactiveX/RxJS/issues/2839)) ([124cc93](https://github.com/ReactiveX/RxJS/commit/124cc93))
1530
- - **partition:** update TypeScript signature to match docs and filter operator ([#2819](https://github.com/ReactiveX/RxJS/issues/2819)) ([755df9b](https://github.com/ReactiveX/RxJS/commit/755df9b))
1531
- - **subscribeToResult:** throw error in subscriber with inner observable ([d7bffa9](https://github.com/ReactiveX/RxJS/commit/d7bffa9)), closes [#2618](https://github.com/ReactiveX/RxJS/issues/2618)
1532
-
1533
- ### Features
1534
-
1535
- - **ajax:** Include the response on instances of AjaxError ([3f6553c](https://github.com/ReactiveX/RxJS/commit/3f6553c))
1536
- - **audit:** add higher-order lettable version of audit ([e2daefe](https://github.com/ReactiveX/RxJS/commit/e2daefe))
1537
- - **auditTime:** add higher-order lettable version of auditTime ([9e963aa](https://github.com/ReactiveX/RxJS/commit/9e963aa))
1538
- - **buffer:** add higher-order lettable version of buffer ([d8ca9de](https://github.com/ReactiveX/RxJS/commit/d8ca9de))
1539
- - **bufferCount:** add higher-order lettable version of bufferCount ([0ae2ed5](https://github.com/ReactiveX/RxJS/commit/0ae2ed5))
1540
- - **bufferTime:** add higher-order lettable version of bufferTime operator ([0377ca6](https://github.com/ReactiveX/RxJS/commit/0377ca6))
1541
- - **bufferToggle:** add higher-order lettable version of bufferToggle ([ea1c3ee](https://github.com/ReactiveX/RxJS/commit/ea1c3ee))
1542
- - **bufferWhen:** add higher-order lettable version of bufferWhen ([ec3eceb](https://github.com/ReactiveX/RxJS/commit/ec3eceb))
1543
- - **catchError:** add higher-order lettable version of `catch` ([408a2af](https://github.com/ReactiveX/RxJS/commit/408a2af))
1544
- - **combineAll:** add higher-order lettable version of combineAll ([97704b3](https://github.com/ReactiveX/RxJS/commit/97704b3))
1545
- - **combineLatest:** add higher-order lettable version of combineLatest ([b7154f2](https://github.com/ReactiveX/RxJS/commit/b7154f2))
1546
- - **concatMap:** add higher-order lettable version of concatMap ([c4125ff](https://github.com/ReactiveX/RxJS/commit/c4125ff))
1547
- - **concatMapTo:** add higher-order lettable version of concatMapTo ([0a6672e](https://github.com/ReactiveX/RxJS/commit/0a6672e))
1548
- - **count:** add higher-order lettable version of count ([caf713e](https://github.com/ReactiveX/RxJS/commit/caf713e))
1549
- - **debounce:** add higher-order lettable version of debounce ([cb8ce46](https://github.com/ReactiveX/RxJS/commit/cb8ce46))
1550
- - **debounceTime:** add higher-order lettable version of debounceTime ([df0d439](https://github.com/ReactiveX/RxJS/commit/df0d439))
1551
- - **delay:** add higher-order lettable version of delay ([7efb803](https://github.com/ReactiveX/RxJS/commit/7efb803))
1552
- - **delayWhen:** add higher-order lettable version of delayWhen ([cb91c3f](https://github.com/ReactiveX/RxJS/commit/cb91c3f))
1553
- - **dematerialize:** add higher-order lettable version of dematerialize ([b5948f9](https://github.com/ReactiveX/RxJS/commit/b5948f9))
1554
- - **distinct:** add higher-order lettable version of distinct ([0429a69](https://github.com/ReactiveX/RxJS/commit/0429a69))
1555
- - **distinctUntilChanged:** add higher-order lettable version of distinctUntilChanged ([b2725e7](https://github.com/ReactiveX/RxJS/commit/b2725e7))
1556
- - **distinctUntilKeyChanged:** add higher-order lettable version of distinctUntilKeyChanged ([9db141c](https://github.com/ReactiveX/RxJS/commit/9db141c))
1557
- - **elementAt:** add higher-order lettable version of elementAt ([b8e956b](https://github.com/ReactiveX/RxJS/commit/b8e956b))
1558
- - **every:** add higher-order lettable version of every ([13f3503](https://github.com/ReactiveX/RxJS/commit/13f3503))
1559
- - **exhaust:** add higher-order lettable version of exhaust ([b145dca](https://github.com/ReactiveX/RxJS/commit/b145dca))
1560
- - **exhaustMap:** add higher-order lettable exhaustMap ([b134e0c](https://github.com/ReactiveX/RxJS/commit/b134e0c))
1561
- - **expand:** add higher-order lettable expand ([6ec8a19](https://github.com/ReactiveX/RxJS/commit/6ec8a19))
1562
- - **filter:** add higher-order lettable version of filter ([2848556](https://github.com/ReactiveX/RxJS/commit/2848556))
1563
- - **finalize:** add higher-order lettable version of finally, called finalize ([cfeae9f](https://github.com/ReactiveX/RxJS/commit/cfeae9f))
1564
- - **find:** add higher-order lettable version of find ([ff6d5af](https://github.com/ReactiveX/RxJS/commit/ff6d5af))
1565
- - **findIndex:** add higher-order lettable findIndex ([40e680e](https://github.com/ReactiveX/RxJS/commit/40e680e))
1566
- - **first:** add higher-order lettable first ([33eac1e](https://github.com/ReactiveX/RxJS/commit/33eac1e))
1567
- - **groupBy:** add higher-order lettable groupBy ([5281229](https://github.com/ReactiveX/RxJS/commit/5281229))
1568
- - **ignoreElements:** add higher-order lettable version of ignoreElements ([68286d4](https://github.com/ReactiveX/RxJS/commit/68286d4))
1569
- - **isEmpty:** add higher-order lettable version of isEmpty ([aad1833](https://github.com/ReactiveX/RxJS/commit/aad1833))
1570
- - **last:** add higher-order lettable version of last ([bf33b97](https://github.com/ReactiveX/RxJS/commit/bf33b97))
1571
- - **lettables:** add higher-order lettable versions of concat, concatAll, mergeAll ([d7e8be7](https://github.com/ReactiveX/RxJS/commit/d7e8be7))
1572
- - **map:** add higher-order lettable map operator ([ce40b2d](https://github.com/ReactiveX/RxJS/commit/ce40b2d))
1573
- - **mapTo:** add higher-order lettable version of mapTo ([e97530f](https://github.com/ReactiveX/RxJS/commit/e97530f))
1574
- - **materialize:** add higher-order lettable materialize operator ([ce42477](https://github.com/ReactiveX/RxJS/commit/ce42477))
1575
- - **merge:** add higher-order lettable version of merge ([#2809](https://github.com/ReactiveX/RxJS/issues/2809)) ([3136403](https://github.com/ReactiveX/RxJS/commit/3136403))
1576
- - **mergeMap:** add higher-order lettable version of mergeMap ([417efde](https://github.com/ReactiveX/RxJS/commit/417efde))
1577
- - **mergeMapTo:** add higher-order lettable version of mergeMapTo ([653b47a](https://github.com/ReactiveX/RxJS/commit/653b47a))
1578
- - **mergeScan:** add higher-order lettable version of mergeScan ([fde7205](https://github.com/ReactiveX/RxJS/commit/fde7205))
1579
- - **multicast:** add higher-order lettable variant of multicast ([fb6014d](https://github.com/ReactiveX/RxJS/commit/fb6014d))
1580
- - **observeOn:** add higher-order lettable version of observeOn ([feb0f5a](https://github.com/ReactiveX/RxJS/commit/feb0f5a))
1581
- - **onErrorResumeNext:** add higher-order lettable version of onErrorResumeNext ([badec6a](https://github.com/ReactiveX/RxJS/commit/badec6a))
1582
- - **operators:** higher-order lettables of reduce, min, max and defaultIfEmpty added ([9974fc2](https://github.com/ReactiveX/RxJS/commit/9974fc2))
1583
- - **package:** rxjs distribution now supports main, module and es2015 keys in package.json ([988e1af](https://github.com/ReactiveX/RxJS/commit/988e1af))
1584
- - **pairwise:** add higher-order lettable version of pairwise ([bb21a44](https://github.com/ReactiveX/RxJS/commit/bb21a44))
1585
- - **partition:** add higher-order lettable version of partition ([595e588](https://github.com/ReactiveX/RxJS/commit/595e588))
1586
- - **pipe:** add pipe method ot Observable ([9f6312d](https://github.com/ReactiveX/RxJS/commit/9f6312d))
1587
- - **pipe:** add pipe utility function([42f9daf](https://github.com/ReactiveX/RxJS/commit/42f9daf))
1588
- - **pluck:** add higher-order lettable version of pluck ([8ab0914](https://github.com/ReactiveX/RxJS/commit/8ab0914))
1589
- - **publish:** add higher-order lettable variant of publish ([4ccf794](https://github.com/ReactiveX/RxJS/commit/4ccf794))
1590
- - **publishBehavior:** add higher-order lettable version of publishBehavior ([e911aef](https://github.com/ReactiveX/RxJS/commit/e911aef))
1591
- - **publishLast:** add higher-order lettable version of publishLast ([684728c](https://github.com/ReactiveX/RxJS/commit/684728c))
1592
- - **publishReplay:** add higher-order lettable version of publishReplay ([2958917](https://github.com/ReactiveX/RxJS/commit/2958917))
1593
- - **race:** add higher-order lettable version of race ([e646851](https://github.com/ReactiveX/RxJS/commit/e646851))
1594
- - **refCount:** add higher-order lettable version of refCount ([21fba63](https://github.com/ReactiveX/RxJS/commit/21fba63))
1595
- - **repeat:** add higher-order lettable version of repeat ([8473fe5](https://github.com/ReactiveX/RxJS/commit/8473fe5))
1596
- - **repeatWhen:** add higher-order lettable version of repeatWhen ([1d1cecd](https://github.com/ReactiveX/RxJS/commit/1d1cecd))
1597
- - **retry:** add higher-order lettable version of retry ([28e9b13](https://github.com/ReactiveX/RxJS/commit/28e9b13))
1598
- - **retryWhen:** add higher-order lettable version of retryWhen ([1290e3c](https://github.com/ReactiveX/RxJS/commit/1290e3c))
1599
- - **sample:** add higher-order lettable version of sample ([8c73e6e](https://github.com/ReactiveX/RxJS/commit/8c73e6e))
1600
- - **sampleTime:** add higher-order lettable version of sampleTime ([ba6a9ce](https://github.com/ReactiveX/RxJS/commit/ba6a9ce))
1601
- - **scan:** add higher-order lettable version of scan ([2cc5d75](https://github.com/ReactiveX/RxJS/commit/2cc5d75))
1602
- - **sequenceEqual:** add higher-order lettable version of sequenceEqual ([7cd3165](https://github.com/ReactiveX/RxJS/commit/7cd3165))
1603
- - **share:** add higher-order lettable version of share ([f10c42e](https://github.com/ReactiveX/RxJS/commit/f10c42e))
1604
- - **shareReplay:** add higher-order lettable version of shareReplay ([e8be197](https://github.com/ReactiveX/RxJS/commit/e8be197))
1605
- - **single:** add higher-order lettable version of single ([3bc050a](https://github.com/ReactiveX/RxJS/commit/3bc050a))
1606
- - **skip:** add higher-order lettable version of skip ([baed383](https://github.com/ReactiveX/RxJS/commit/baed383))
1607
- - **skipLast:** add higher-order lettable version of skipLast ([6e1ff3c](https://github.com/ReactiveX/RxJS/commit/6e1ff3c))
1608
- - **skipUntil:** add higher-order lettable version of skipUntil ([6cc2cd6](https://github.com/ReactiveX/RxJS/commit/6cc2cd6))
1609
- - **skipWhile:** add higher-order lettable version of skipWhile ([76d8ffa](https://github.com/ReactiveX/RxJS/commit/76d8ffa))
1610
- - **subscribeOn:** add higher-order lettable version of subscribeOn ([866af37](https://github.com/ReactiveX/RxJS/commit/866af37))
1611
- - **switchAll:** add higher-order lettable version of switch ([2f12572](https://github.com/ReactiveX/RxJS/commit/2f12572))
1612
- - **switchMap:** add higher-order lettable version of switchMap ([b6e5b56](https://github.com/ReactiveX/RxJS/commit/b6e5b56))
1613
- - **switchMapTo:** add higher-order lettable version of switchMapTo ([2640184](https://github.com/ReactiveX/RxJS/commit/2640184))
1614
- - **take:** add higher-order lettable version of take ([089a5a6](https://github.com/ReactiveX/RxJS/commit/089a5a6))
1615
- - **takeLast:** add higher-order lettable version of takeLast ([cd7e7dd](https://github.com/ReactiveX/RxJS/commit/cd7e7dd))
1616
- - **takeUntil:** add higher-order lettable version of takeUntil ([bb2ddaa](https://github.com/ReactiveX/RxJS/commit/bb2ddaa))
1617
- - **takeWhile:** add higher-order lettable version of takeWhile ([f86c862](https://github.com/ReactiveX/RxJS/commit/f86c862))
1618
- - **tap:** add higher-order lettable version of do ([f85c60e](https://github.com/ReactiveX/RxJS/commit/f85c60e))
1619
- - **throttle:** add higher-order lettable version of throttle ([e4dd1fd](https://github.com/ReactiveX/RxJS/commit/e4dd1fd))
1620
- - **throttleTime:** add higher-order lettable version of throttleTime ([34a592d](https://github.com/ReactiveX/RxJS/commit/34a592d))
1621
- - **timeInterval:** add higher-order lettable version of timeInterval ([fcad034](https://github.com/ReactiveX/RxJS/commit/fcad034))
1622
- - **timeout:** add higher-order lettable version of timeout ([2546750](https://github.com/ReactiveX/RxJS/commit/2546750))
1623
- - **timeoutWith:** add higher-order lettable version of timeoutWith ([bd7f5ed](https://github.com/ReactiveX/RxJS/commit/bd7f5ed))
1624
- - **timestamp:** add higher-order lettable version of timestamp ([a780bf2](https://github.com/ReactiveX/RxJS/commit/a780bf2))
1625
- - **toArray:** add higher-order lettable version of toArray ([82480cf](https://github.com/ReactiveX/RxJS/commit/82480cf))
1626
- - **toArray:** add higher-order lettable version of toArray ([a03a50c](https://github.com/ReactiveX/RxJS/commit/a03a50c))
1627
- - **toPromise:** add higher-order lettable version of toPromise ([1627da2](https://github.com/ReactiveX/RxJS/commit/1627da2))
1628
- - **window:** add higher-order lettable version of window ([9f6373e](https://github.com/ReactiveX/RxJS/commit/9f6373e))
1629
- - **windowCount:** add higher-order lettable version of windowCount ([2a9e54c](https://github.com/ReactiveX/RxJS/commit/2a9e54c))
1630
- - **windowTime:** add higher-order lettable version of windowTime ([29ffa1b](https://github.com/ReactiveX/RxJS/commit/29ffa1b))
1631
- - **windowToggle:** add higher-order lettable version of windowToggle ([81ec389](https://github.com/ReactiveX/RxJS/commit/81ec389))
1632
- - **windowWhen:** add higher-order lettable version of windowWhen ([0b73208](https://github.com/ReactiveX/RxJS/commit/0b73208))
1633
- - **withLatestFrom:** add higher-order lettable version of withLatestFrom ([509c97c](https://github.com/ReactiveX/RxJS/commit/509c97c))
1634
- - **zip:** add higher-order lettable version of zip ([8a9b9b2](https://github.com/ReactiveX/RxJS/commit/8a9b9b2))
1635
- - **zipAll:** add higher-order lettable version of zipAll ([f6bd51f](https://github.com/ReactiveX/RxJS/commit/f6bd51f))
1636
-
1637
- <a name="5.4.3"></a>
1638
-
1639
- ## [5.4.3](https://github.com/ReactiveX/RxJS/compare/5.4.2...v5.4.3) (2017-08-10)
1640
-
1641
- ### Bug Fixes
1642
-
1643
- - **compilation:** compiles under typescript 2.4.2 ([#2780](https://github.com/ReactiveX/RxJS/issues/2780)) ([d2a32f9](https://github.com/ReactiveX/RxJS/commit/d2a32f9))
1644
- - **exports:** add exports for missing static operators: generate, ([08c4196](https://github.com/ReactiveX/RxJS/commit/08c4196))
1645
-
1646
- <a name="5.4.2"></a>
1647
-
1648
- ## [5.4.2](https://github.com/ReactiveX/RxJS/compare/5.4.1...v5.4.2) (2017-07-05)
1649
-
1650
- ### Bug Fixes
1651
-
1652
- - **Notification:** Don't reference `this` from static methods. ([9f8e375](https://github.com/ReactiveX/RxJS/commit/9f8e375))
1653
- - **Subject:** lift signature is now appropriate for stricter TypeScript 2.4 checks ([#2722](https://github.com/ReactiveX/RxJS/issues/2722)) ([9804de7](https://github.com/ReactiveX/RxJS/commit/9804de7))
1654
-
1655
- <a name="5.4.1"></a>
1656
-
1657
- ## [5.4.1](https://github.com/ReactiveX/RxJS/compare/5.4.0...v5.4.1) (2017-06-14)
1658
-
1659
- ### Bug Fixes
1660
-
1661
- - **ajax:** Only set timeout & responseType if request is asynchronous ([#2486](https://github.com/ReactiveX/RxJS/issues/2486)) ([380fbcf](https://github.com/ReactiveX/RxJS/commit/380fbcf))
1662
- - **audit:** will now properly mirror source if durations are Observable.empty() ([#2595](https://github.com/ReactiveX/RxJS/issues/2595)) ([6ded82e](https://github.com/ReactiveX/RxJS/commit/6ded82e))
1663
- - **elementAt:** will now properly unsubscribe when it completes or errors ([#2501](https://github.com/ReactiveX/RxJS/issues/2501)) ([a400cab](https://github.com/ReactiveX/RxJS/commit/a400cab))
1664
- - **ErrorObservable:** will now propagate errors properly when used in a `catch` after `fromPromise`. ([#2552](https://github.com/ReactiveX/RxJS/issues/2552)) ([cf88a20](https://github.com/ReactiveX/RxJS/commit/cf88a20))
1665
- - **groupBy:** group duration notifiers will now properly unsubscribe and clean up ([#2662](https://github.com/ReactiveX/RxJS/issues/2662)) ([ab92083](https://github.com/ReactiveX/RxJS/commit/ab92083)), closes [#2660](https://github.com/ReactiveX/RxJS/issues/2660) [#2661](https://github.com/ReactiveX/RxJS/issues/2661)
1666
- - **Observable:** errors thrown in observer/handlers without an operator applied will no longer be swallowed ([#2626](https://github.com/ReactiveX/RxJS/issues/2626)) ([c250afc](https://github.com/ReactiveX/RxJS/commit/c250afc)), closes [#2565](https://github.com/ReactiveX/RxJS/issues/2565)
1667
- - **reduce:** type definitions overloads for TypeScript are now in proper order ([#2523](https://github.com/ReactiveX/RxJS/issues/2523)) ([ccc0647](https://github.com/ReactiveX/RxJS/commit/ccc0647))
1668
- - **Schedulers:** Fix issue where canceling an asap or animationFrame action early could throw ([#2638](https://github.com/ReactiveX/RxJS/issues/2638)) ([fc39043](https://github.com/ReactiveX/RxJS/commit/fc39043))
1669
-
1670
- <a name="5.4.0"></a>
1671
-
1672
- # [5.4.0](https://github.com/ReactiveX/RxJS/) (2017-05-09)
1673
-
1674
- ### Features
1675
-
1676
- - **shareReplay:** adds `shareReplay` variant of `publishReplay` ([#2443](https://github.com/ReactiveX/RxJS/issues/2443)) ([5a2266a](https://github.com/ReactiveX/RxJS/commit/5a2266a))
1677
- - **skipLast:** add skipLast operator ([#2316](https://github.com/ReactiveX/RxJS/issues/2316)) ([4ffbbe5](https://github.com/ReactiveX/RxJS/commit/4ffbbe5)), closes [#1404](https://github.com/ReactiveX/RxJS/issues/1404)
1678
- - **TypeScript:** fromPromise accepts PromiseLike object ([#2505](https://github.com/ReactiveX/RxJS/issues/2505)) ([ade1fd5](https://github.com/ReactiveX/RxJS/commit/ade1fd5))
1679
-
1680
- <a name="5.3.3"></a>
1681
-
1682
- ## [5.3.3](https://github.com/ReactiveX/RxJS/compare/5.3.1...5.3.3) (2017-05-09)
1683
-
1684
- ### Bug Fixes
1685
-
1686
- - **delayWhen:** correctly handle synchronous duration observable ([#2589](https://github.com/ReactiveX/RxJS/issues/2589)) ([695f280](https://github.com/ReactiveX/RxJS/commit/695f280)), closes [#2587](https://github.com/ReactiveX/RxJS/issues/2587)
1687
- - **race:** allow TypeScript support for array of observables other than rest param ([#2548](https://github.com/ReactiveX/RxJS/issues/2548)) ([ace553c](https://github.com/ReactiveX/RxJS/commit/ace553c))
1688
- - **Subscriber:** do not call complete with undefined value param ([#2559](https://github.com/ReactiveX/RxJS/issues/2559)) ([3d63de2](https://github.com/ReactiveX/RxJS/commit/3d63de2))
1689
-
1690
- **(NOTE: 5.3.2 was a broken release and was removed)**
1691
-
1692
- <a name="5.3.1"></a>
1693
-
1694
- ## [5.3.1](https://github.com/ReactiveX/RxJS/compare/5.3.0...v5.3.1) (2017-05-02)
1695
-
1696
- ### Bug Fixes
1697
-
1698
- - **AsyncAction:** rescheduling an action with the same delay before it has executed will now schedule appropriately. ([#2580](https://github.com/ReactiveX/RxJS/issues/2580)) ([281760e](https://github.com/ReactiveX/RxJS/commit/281760e))
1699
- - **closure:** make root.ts work with closure ([#2546](https://github.com/ReactiveX/RxJS/issues/2546)) ([0ecf55d](https://github.com/ReactiveX/RxJS/commit/0ecf55d))
1700
- - **tests:** add missing babel-polyfill to package.json ([b277ce9](https://github.com/ReactiveX/RxJS/commit/b277ce9)), closes [#2261](https://github.com/ReactiveX/RxJS/issues/2261)
1701
- - **withLatestFrom:** change from hot to cold observable in marble test ([0c65446](https://github.com/ReactiveX/RxJS/commit/0c65446)), closes [#2526](https://github.com/ReactiveX/RxJS/issues/2526)
1702
-
1703
- <a name="5.3.0"></a>
1704
-
1705
- # [5.3.0](https://github.com/ReactiveX/RxJS/compare/5.2.0...v5.3.0) (2017-04-03)
1706
-
1707
- ### Bug Fixes
1708
-
1709
- - **catch:** return type is now the union of input types ([#2478](https://github.com/ReactiveX/RxJS/issues/2478)) ([840def0](https://github.com/ReactiveX/RxJS/commit/840def0))
1710
- - **forEach:** fix a temporal dead zone issue in forEach. ([#2474](https://github.com/ReactiveX/RxJS/issues/2474)) ([e9e9801](https://github.com/ReactiveX/RxJS/commit/e9e9801))
1711
- - **multicast:** Ensure ConnectableObservables returned by multicast are state-isolated. ([aaa9e6b](https://github.com/ReactiveX/RxJS/commit/aaa9e6b))
1712
- - **reduce:** proper TypeScript signature overload ordering ([#2382](https://github.com/ReactiveX/RxJS/issues/2382)) ([f6a4951](https://github.com/ReactiveX/RxJS/commit/f6a4951)), closes [#2338](https://github.com/ReactiveX/RxJS/issues/2338)
1713
- - **SafeSubscriber:** SafeSubscriber shouldn't mutate incoming Observers. ([a1778e0](https://github.com/ReactiveX/RxJS/commit/a1778e0))
1714
- - **timeout:** Cancels scheduled timeout, if no longer needed ([3e9d529](https://github.com/ReactiveX/RxJS/commit/3e9d529)), closes [#2134](https://github.com/ReactiveX/RxJS/issues/2134) [#2244](https://github.com/ReactiveX/RxJS/issues/2244) [#2355](https://github.com/ReactiveX/RxJS/issues/2355) [#2347](https://github.com/ReactiveX/RxJS/issues/2347) [#2353](https://github.com/ReactiveX/RxJS/issues/2353) [#2254](https://github.com/ReactiveX/RxJS/issues/2254) [#2372](https://github.com/ReactiveX/RxJS/issues/2372) [#1301](https://github.com/ReactiveX/RxJS/issues/1301)
1715
- - **zipAll:** complete when the source is empty ([712fece](https://github.com/ReactiveX/RxJS/commit/712fece))
1716
-
1717
- ### Features
1718
-
1719
- - **delayWhen:** add index to the selector function ([5d6291e](https://github.com/ReactiveX/RxJS/commit/5d6291e))
1720
- - **symbol exports:** symbols now also exported without `$$` prefix to work with Babel UMD exporting ([#2435](https://github.com/ReactiveX/RxJS/issues/2435)) ([747bef6](https://github.com/ReactiveX/RxJS/commit/747bef6)), closes [#2415](https://github.com/ReactiveX/RxJS/issues/2415)
1721
-
1722
- ### Performance Improvements
1723
-
1724
- - **bufferCount:** optimize bufferCount operator ([#2359](https://github.com/ReactiveX/RxJS/issues/2359)) ([28d0883](https://github.com/ReactiveX/RxJS/commit/28d0883))
1725
-
1726
- ### April Fools
1727
-
1728
- - **smooth:** `smooth()` was never really a thing. Sorry, folks. :D
1729
-
1730
- <a name="5.2.0"></a>
1731
-
1732
- # [5.2.0](https://github.com/ReactiveX/RxJS/compare/5.1.1...v5.2.0) (2017-02-21)
1733
-
1734
- ### Bug Fixes
1735
-
1736
- - **ajax:** will set `withCredentials` after `open` on XHR for IE10 ([#2332](https://github.com/ReactiveX/RxJS/issues/2332)) ([0ab1d3b](https://github.com/ReactiveX/RxJS/commit/0ab1d3b))
1737
- - **bindCallback:** emit undefined when callback is without arguments ([915a2a8](https://github.com/ReactiveX/RxJS/commit/915a2a8))
1738
- - **bindNodeCallback:** emit undefined when callback has no success arguments ([8b81fc6](https://github.com/ReactiveX/RxJS/commit/8b81fc6)), closes [#2254](https://github.com/ReactiveX/RxJS/issues/2254)
1739
- - **bindNodeCallback:** errors thrown in callback will be scheduled if a scheduler is provided ([#2344](https://github.com/ReactiveX/RxJS/issues/2344)) ([82ec4f1](https://github.com/ReactiveX/RxJS/commit/82ec4f1))
1740
- - **concat:** will now return Observable when given a single object implementing Symbol.observable ([#2387](https://github.com/ReactiveX/RxJS/issues/2387)) ([f5d035a](https://github.com/ReactiveX/RxJS/commit/f5d035a))
1741
- - **ErrorObservable:** remove type constraint to error value ([2f951cd](https://github.com/ReactiveX/RxJS/commit/2f951cd)), closes [#2395](https://github.com/ReactiveX/RxJS/issues/2395)
1742
- - **forkJoin:** add type signature for single observable with selector ([7983b91](https://github.com/ReactiveX/RxJS/commit/7983b91)), closes [#2347](https://github.com/ReactiveX/RxJS/issues/2347)
1743
- - **merge:** return Observable when called with single lowerCaseO ([85752eb](https://github.com/ReactiveX/RxJS/commit/85752eb))
1744
- - **mergeAll:** introduce variant support <T, R> for mergeMap ([656f2b3](https://github.com/ReactiveX/RxJS/commit/656f2b3)), closes [#2372](https://github.com/ReactiveX/RxJS/issues/2372)
1745
- - **single:** predicate function receives indices starting at 0 ([#2396](https://github.com/ReactiveX/RxJS/issues/2396)) ([c81882f](https://github.com/ReactiveX/RxJS/commit/c81882f))
1746
- - **subscribeToResult:** accept array-like as result ([14685ba](https://github.com/ReactiveX/RxJS/commit/14685ba))
1747
-
1748
- ### Features
1749
-
1750
- - **webSocket:** Add binaryType to config object ([86acbd1](https://github.com/ReactiveX/RxJS/commit/86acbd1)), closes [#2353](https://github.com/ReactiveX/RxJS/issues/2353)
1751
- - **windowTime:** maxWindowSize parameter in windowTime operator ([381be3f](https://github.com/ReactiveX/RxJS/commit/381be3f)), closes [#1301](https://github.com/ReactiveX/RxJS/issues/1301)
1752
-
1753
- <a name="5.1.1"></a>
1754
-
1755
- ## [5.1.1](https://github.com/ReactiveX/RxJS/compare/5.1.0...v5.1.1) (2017-02-13)
1756
-
1757
- ### Bug Fixes
1758
-
1759
- - **bindCallback:** input function context can now be properly set via output function ([#2319](https://github.com/ReactiveX/RxJS/issues/2319)) ([cb91c76](https://github.com/ReactiveX/RxJS/commit/cb91c76))
1760
- - **bindNodeCallback:** input function context can now be properly set via output function ([#2320](https://github.com/ReactiveX/RxJS/issues/2320)) ([3ec315d](https://github.com/ReactiveX/RxJS/commit/3ec315d))
1761
- - **Subscription:** fold ChildSubscription logic into Subscriber to prevent operators from leaking ChildSubscriptions. ([#2360](https://github.com/ReactiveX/RxJS/issues/2360)) ([22e4c17](https://github.com/ReactiveX/RxJS/commit/22e4c17)), closes [#2244](https://github.com/ReactiveX/RxJS/issues/2244) [#2355](https://github.com/ReactiveX/RxJS/issues/2355)
1762
-
1763
- <a name="5.1.0"></a>
1764
-
1765
- # [5.1.0](https://github.com/ReactiveX/RxJS/compare/5.0.3...v5.1.0) (2017-02-01)
1766
-
1767
- ### Bug Fixes
1768
-
1769
- - **catch:** update the catch operator to dispose inner subscriptions if the catch subscription is di ([#2271](https://github.com/ReactiveX/RxJS/issues/2271)) ([8a1e089](https://github.com/ReactiveX/RxJS/commit/8a1e089))
1770
- - **combineLatest:** Don't mutate array of observables passed to ([#2276](https://github.com/ReactiveX/RxJS/issues/2276)) ([9b73c46](https://github.com/ReactiveX/RxJS/commit/9b73c46))
1771
- - **ISubscription:** update type definition of ISubscription::closed ([#2249](https://github.com/ReactiveX/RxJS/issues/2249)) ([0c304a2](https://github.com/ReactiveX/RxJS/commit/0c304a2))
1772
- - **Observable:** Ensure the generic type of the Observer passed to Observable's initializer function is the same. ([51a0bc1](https://github.com/ReactiveX/RxJS/commit/51a0bc1)), closes [#2166](https://github.com/ReactiveX/RxJS/issues/2166)
1773
- - **Observable:** errors thrown during subscription are now properly sent down error channel ([#2313](https://github.com/ReactiveX/RxJS/issues/2313)) ([d4a9aac](https://github.com/ReactiveX/RxJS/commit/d4a9aac)), closes [#1833](https://github.com/ReactiveX/RxJS/issues/1833)
1774
- - **reduce:** index will properly start at 1 if no seed is provided, to match native Array reduce behavior ([30a4ca4](https://github.com/ReactiveX/RxJS/commit/30a4ca4)), closes [#2290](https://github.com/ReactiveX/RxJS/issues/2290)
1775
- - **repeatWhen:** resulting observable will wait for the source to complete, even if a hot notifier completes first. ([#2209](https://github.com/ReactiveX/RxJS/issues/2209)) ([c65a098](https://github.com/ReactiveX/RxJS/commit/c65a098)), closes [#2054](https://github.com/ReactiveX/RxJS/issues/2054)
1776
- - **Subject:** ensure subject properly throws ObjectUnsubscribedError when unsubscribed then resubscribed to ([#2318](https://github.com/ReactiveX/RxJS/issues/2318)) ([41489eb](https://github.com/ReactiveX/RxJS/commit/41489eb))
1777
- - **TestScheduler:** helper methods return proper types, `HotObservable` and `ColdObservable` instead of Observable ([#2305](https://github.com/ReactiveX/RxJS/issues/2305)) ([758aae9](https://github.com/ReactiveX/RxJS/commit/758aae9))
1778
- - **windowTime:** ensure windows created when only a timespan is passed are closed and cleaned up properly. ([#2278](https://github.com/ReactiveX/RxJS/issues/2278)) ([d4533c4](https://github.com/ReactiveX/RxJS/commit/d4533c4))
1779
-
1780
- ### Features
1781
-
1782
- - **fromEventPattern:** support optional removeHandler ([86960c2](https://github.com/ReactiveX/RxJS/commit/86960c2))
1783
- - **fromEventPattern:** support pass signal from addHandler to removeHandler ([01d0622](https://github.com/ReactiveX/RxJS/commit/01d0622))
1784
-
1785
- <a name="5.0.3"></a>
1786
-
1787
- ## [5.0.3](https://github.com/ReactiveX/RxJS/compare/5.0.2...v5.0.3) (2017-01-05)
1788
-
1789
- ### Bug Fixes
1790
-
1791
- - **observeOn:** seal memory leak involving old notifications ([9664a38](https://github.com/ReactiveX/RxJS/commit/9664a38)), closes [#2244](https://github.com/ReactiveX/RxJS/issues/2244)
1792
- - **Subscription:** `add` will return Subscription that `remove`s itself when unsubscribed ([375d4a5](https://github.com/ReactiveX/RxJS/commit/375d4a5))
1793
- - **TypeScript:** interfaces that accepted `Scheduler` now accept `IScheduler` interface ([a0d28a8](https://github.com/ReactiveX/RxJS/commit/a0d28a8))
1794
-
1795
- <a name="5.0.2"></a>
1796
-
1797
- ## [5.0.2](https://github.com/ReactiveX/RxJS/compare/5.0.1...v5.0.2) (2016-12-23)
1798
-
1799
- ### Bug Fixes
1800
-
1801
- - **ajax:** upload progress is now set correctly ([#2200](https://github.com/ReactiveX/RxJS/issues/2200)) ([1a83041](https://github.com/ReactiveX/RxJS/commit/1a83041))
1802
- - **groupBy:** Fix groupBy to dispose of outer subscription. ([#2201](https://github.com/ReactiveX/RxJS/issues/2201)) ([2269618](https://github.com/ReactiveX/RxJS/commit/2269618))
1803
-
1804
- <a name="5.0.1"></a>
1805
-
1806
- ## [5.0.1](https://github.com/ReactiveX/RxJS/compare/5.0.0...v5.0.1) (2016-12-13)
1807
-
1808
- ### Bug Fixes
1809
-
1810
- - **TypeScript:** pin to TypeScript 2.0.x, fix errors with Error subclassing ([300504c](https://github.com/ReactiveX/RxJS/commit/300504c))
1811
-
1812
- <a name="5.0.0"></a>
1813
-
1814
- # [5.0.0](https://github.com/ReactiveX/RxJS/compare/5.0.0-rc.5...v5.0.0) (2016-12-13)
1815
-
1816
- ### Bug Fixes
1817
-
1818
- - **race:** unsubscribe raced observables with immediate scheduler ([#2158](https://github.com/ReactiveX/RxJS/issues/2158)) ([7dd533b](https://github.com/ReactiveX/RxJS/commit/7dd533b))
1819
- - **SubscribeOnObservable:** Add the source subscription to the action disposable so the source will ([64e3815](https://github.com/ReactiveX/RxJS/commit/64e3815))
1820
-
1821
- <a name="5.0.0-rc.5"></a>
1822
-
1823
- # [5.0.0-rc.5](https://github.com/ReactiveX/RxJS/compare/5.0.0-rc.4...v5.0.0-rc.5) (2016-12-07)
1824
-
1825
- ### Bug Fixes
1826
-
1827
- - **AjaxObservable:** catch XHR send failures to observer ([#2159](https://github.com/ReactiveX/RxJS/issues/2159)) ([128fb9c](https://github.com/ReactiveX/RxJS/commit/128fb9c))
1828
- - **distinctKey:** Removed accidental leftover reference of `distinctKey` ([9fd8096](https://github.com/ReactiveX/RxJS/commit/9fd8096)), closes [#2161](https://github.com/ReactiveX/RxJS/issues/2161)
1829
- - **errors:** Better error message when you return non-observable things, ([#2152](https://github.com/ReactiveX/RxJS/issues/2152)) ([86a909c](https://github.com/ReactiveX/RxJS/commit/86a909c)), closes [#215](https://github.com/ReactiveX/RxJS/issues/215)
1830
- - **event:** uses `Object.prototype.toString.call` on objects ([#2143](https://github.com/ReactiveX/RxJS/issues/2143)) ([e036e79](https://github.com/ReactiveX/RxJS/commit/e036e79))
1831
- - **typings:** type guard support for `last`, `first`, `find` and `filter`. ([5f2e849](https://github.com/ReactiveX/RxJS/commit/5f2e849))
1832
-
1833
- ### Features
1834
-
1835
- - **timeout:** remove `errorToSend` argument, always throw TimeoutError ([#2172](https://github.com/ReactiveX/RxJS/issues/2172)) ([98ea3d2](https://github.com/ReactiveX/RxJS/commit/98ea3d2))
1836
-
1837
- ### BREAKING CHANGES
1838
-
1839
- - timeout: `timeout` no longer accepts the `errorToSend` argument
1840
-
1841
- related #2141
1842
-
1843
- <a name="5.0.0-rc.4"></a>
1844
-
1845
- # [5.0.0-rc.4](https://github.com/ReactiveX/RxJS/compare/5.0.0-rc.3...v5.0.0-rc.4) (2016-11-19)
1846
-
1847
- ### Bug Fixes
1848
-
1849
- - **partition:** handles `thisArg` as expected ([#2138](https://github.com/ReactiveX/RxJS/issues/2138)) ([6cf7296](https://github.com/ReactiveX/RxJS/commit/6cf7296))
1850
- - **timeout:** throw traceable TimeoutError ([#2132](https://github.com/ReactiveX/RxJS/issues/2132)) ([9ebc46b](https://github.com/ReactiveX/RxJS/commit/9ebc46b))
1851
-
1852
- <a name="5.0.0-rc.3"></a>
1853
-
1854
- # [5.0.0-rc.3](https://github.com/ReactiveX/RxJS/compare/5.0.0-rc.2...v5.0.0-rc.3) (2016-11-15)
1855
-
1856
- ### Bug Fixes
1857
-
1858
- - **typings:** You no longer have to install the type definition for chai ([#2112](https://github.com/ReactiveX/rxjs/issues/2112))
1859
-
1860
- ### Features
1861
-
1862
- - **filter:** support type guards without casting ([68b7922](https://github.com/ReactiveX/RxJS/commit/68b7922))
1863
- - **find:** support type guards without casting ([9058bf6](https://github.com/ReactiveX/RxJS/commit/9058bf6))
1864
- - **first:** support type guards without casting ([3aa1988](https://github.com/ReactiveX/RxJS/commit/3aa1988))
1865
- - **last:** support type guards without casting ([07ecd5e](https://github.com/ReactiveX/RxJS/commit/07ecd5e))
1866
-
1867
- <a name="5.0.0-rc.2"></a>
1868
-
1869
- # [5.0.0-rc.2](https://github.com/ReactiveX/RxJS/compare/5.0.0-rc.1...v5.0.0-rc.2) (2016-11-05)
1870
-
1871
- ### Bug Fixes
1872
-
1873
- - **AjaxObservable:** remove needless type param R from AjaxObservable.getJSON() ([#2069](https://github.com/ReactiveX/RxJS/issues/2069)) ([0c3d4a4](https://github.com/ReactiveX/RxJS/commit/0c3d4a4))
1874
- - **bufferCount:** will behave as expected when `startBufferEvery` is less than `bufferSize` ([#2076](https://github.com/ReactiveX/RxJS/issues/2076)) ([d13dbb4](https://github.com/ReactiveX/RxJS/commit/d13dbb4)), closes [#2062](https://github.com/ReactiveX/RxJS/issues/2062)
1875
- - **build_docs:** fix doc building ([#1974](https://github.com/ReactiveX/RxJS/issues/1974)) ([1bbbe8b](https://github.com/ReactiveX/RxJS/commit/1bbbe8b))
1876
- - **ErrorObservable:** Add generic error type for ErrorObservable. ([#2071](https://github.com/ReactiveX/RxJS/issues/2071)) ([9df86ba](https://github.com/ReactiveX/RxJS/commit/9df86ba))
1877
- - **first:** will now only emit one value in recursive cases ([#2100](https://github.com/ReactiveX/RxJS/issues/2100)) ([a047e7a](https://github.com/ReactiveX/RxJS/commit/a047e7a)), closes [#2098](https://github.com/ReactiveX/RxJS/issues/2098)
1878
- - **fromEvent:** Throw if event target is invalid ([#2107](https://github.com/ReactiveX/RxJS/issues/2107)) ([147ce3e](https://github.com/ReactiveX/RxJS/commit/147ce3e))
1879
- - **IteratorObservable:** clarify the return type of IteratorObservable.create() ([#2070](https://github.com/ReactiveX/RxJS/issues/2070)) ([4f0f865](https://github.com/ReactiveX/RxJS/commit/4f0f865))
1880
- - **IteratorObservable:** Observables `from` generators will now finalize when subscription ends ([22d286a](https://github.com/ReactiveX/RxJS/commit/22d286a)), closes [#1938](https://github.com/ReactiveX/RxJS/issues/1938)
1881
- - **multicast:** fix a bug that caused multicast to omit messages after termination ([#2021](https://github.com/ReactiveX/RxJS/issues/2021)) ([44fbc14](https://github.com/ReactiveX/RxJS/commit/44fbc14))
1882
- - **Notification:** `materialize` output will now match Rx4 ([#2106](https://github.com/ReactiveX/RxJS/issues/2106)) ([c83bab9](https://github.com/ReactiveX/RxJS/commit/c83bab9)), closes [#2105](https://github.com/ReactiveX/RxJS/issues/2105)
1883
- - **Object.assign:** stop polyfilling Object assign ([#2080](https://github.com/ReactiveX/RxJS/issues/2080)) ([b5f8ab3](https://github.com/ReactiveX/RxJS/commit/b5f8ab3))
1884
- - **Observable/Ajax:** mount properties to origin readystatechange fn ([#2025](https://github.com/ReactiveX/RxJS/issues/2025)) ([76a9abb](https://github.com/ReactiveX/RxJS/commit/76a9abb))
1885
- - **operator/do:** fix typings ([9a40297](https://github.com/ReactiveX/RxJS/commit/9a40297))
1886
- - **reduce/scan:** both scan/reduce operators now accepts `undefined` itself as a valid seed ([#2050](https://github.com/ReactiveX/RxJS/issues/2050)) ([fee7585](https://github.com/ReactiveX/RxJS/commit/fee7585)), closes [#2047](https://github.com/ReactiveX/RxJS/issues/2047)
1887
- - **ReplaySubject:** observer now subscribed prior to running subscription function ([#2046](https://github.com/ReactiveX/RxJS/issues/2046)) ([fea08e9](https://github.com/ReactiveX/RxJS/commit/fea08e9)), closes [#2044](https://github.com/ReactiveX/RxJS/issues/2044)
1888
- - **sample:** source is now subscribed to before the notifier ([ffe99e8](https://github.com/ReactiveX/RxJS/commit/ffe99e8)), closes [#2075](https://github.com/ReactiveX/RxJS/issues/2075)
1889
- - **Symbol.iterator:** will not polyfill Symbol iterator unless Symbol exists ([#2082](https://github.com/ReactiveX/RxJS/issues/2082)) ([1138c99](https://github.com/ReactiveX/RxJS/commit/1138c99))
1890
- - **typings:** fixed Subject<T>.lift to have the same shape as Observable<T>.lift ([b07f597](https://github.com/ReactiveX/RxJS/commit/b07f597))
1891
- - **WebSocketSubject.prototype.multiplex:** no longer nulls out socket after first unsubscribe ([#2039](https://github.com/ReactiveX/RxJS/issues/2039)) ([a5e9cfe](https://github.com/ReactiveX/RxJS/commit/a5e9cfe)), closes [#2037](https://github.com/ReactiveX/RxJS/issues/2037)
1892
-
1893
- ### Features
1894
-
1895
- - **distinct:** remove `distinctKey`, `distinct` signature change and perf improvements ([#2049](https://github.com/ReactiveX/RxJS/issues/2049)) ([89612b2](https://github.com/ReactiveX/RxJS/commit/89612b2)), closes [#2009](https://github.com/ReactiveX/RxJS/issues/2009)
1896
- - **groupBy:** Adds subjectSelector argument to groupBy ([#2023](https://github.com/ReactiveX/RxJS/issues/2023)) ([f94ceb9](https://github.com/ReactiveX/RxJS/commit/f94ceb9))
1897
- - **typescript:** remove dependency to 3rd party es2015 definition ([#2027](https://github.com/ReactiveX/RxJS/issues/2027)) ([4c31974](https://github.com/ReactiveX/RxJS/commit/4c31974)), closes [#2016](https://github.com/ReactiveX/RxJS/issues/2016)
1898
-
1899
- ### BREAKING CHANGES
1900
-
1901
- - Notification: `Notification.prototype.exception` is now `Notification.prototype.error` to match Rx4 semantics
1902
- - Symbol.iterator: RxJS will no longer polyfill `Symbol.iterator` if `Symbol` does not exist. This may break code that inadvertently relies on this behavior
1903
- - Object.assign: RxJS will no longer polyfill `Object.assign`. It does
1904
- not require `Object.assign` to function, however, your code may be
1905
- inadvertently relying on this polyfill.
1906
- - AjaxObservable: Observable.ajax.getJSON() now only supports a single type parameter,
1907
- `getJSON<T>(url: string, headers?: Object): Observable<T>`.
1908
- The extra type parameter it accepted previously was superfluous.
1909
- - distinct: `distinctKey` has been removed. Use `distinct`
1910
- - distinct: `distinct` operator has changed, first argument is an
1911
- optional `keySelector`. The custom `compare` function is no longer
1912
- supported.
1913
-
1914
- <a name="5.0.0-rc.1"></a>
1915
-
1916
- # [5.0.0-rc.1](https://github.com/ReactiveX/RxJS/compare/5.0.0-beta.12...v5.0.0-rc.1) (2016-10-11)
1917
-
1918
- ### Bug Fixes
1919
-
1920
- - **AjaxObservable:** Fix for [#1921](https://github.com/ReactiveX/RxJS/issues/1921) exposed AjaxObservable unsubscription error calling xhr.abort(). ([4d23f87](https://github.com/ReactiveX/RxJS/commit/4d23f87))
1921
- - **AnonymousSubject:** is now exposed on Rx namespace ([0a6f049](https://github.com/ReactiveX/RxJS/commit/0a6f049)), closes [#2002](https://github.com/ReactiveX/RxJS/issues/2002)
1922
- - **bufferTime:** no errors with take after bufferTime with maxBufferSize ([ecec640](https://github.com/ReactiveX/RxJS/commit/ecec640)), closes [#1944](https://github.com/ReactiveX/RxJS/issues/1944)
1923
- - **docs:** Fix esdoc for Observable.merge spread argument ([b794e9b](https://github.com/ReactiveX/RxJS/commit/b794e9b))
1924
- - **Observer:** fix Observable#subscribe() signature to suggest correct usable ([459d2a2](https://github.com/ReactiveX/RxJS/commit/459d2a2))
1925
- - **operator:** Fix take to complete when the source is re-entrant. ([86615cb](https://github.com/ReactiveX/RxJS/commit/86615cb))
1926
- - **root:** find global context (window/self/global) in a more safe way ([a098132](https://github.com/ReactiveX/RxJS/commit/a098132)), closes [#1930](https://github.com/ReactiveX/RxJS/issues/1930)
1927
- - **schedulers:** Queue, Asap, and AnimationFrame Schedulers should be Async if delay > 0 ([d5c682c](https://github.com/ReactiveX/RxJS/commit/d5c682c))
1928
- - **util/toSubscriber:** Supplies the Subscriber constructor with emptyObserver as destination if no ([8e7e4e3](https://github.com/ReactiveX/RxJS/commit/8e7e4e3))
1929
- - **WebSocketSubject:** ensure all internal state properly reset when socket is nulled out ([62d242e](https://github.com/ReactiveX/RxJS/commit/62d242e)), closes [#1863](https://github.com/ReactiveX/RxJS/issues/1863)
1930
-
1931
- ### Features
1932
-
1933
- - **cache:** remove `cache` operator ([1b23ace](https://github.com/ReactiveX/RxJS/commit/1b23ace))
1934
- - **ES2015:** stop publishing `rxjs-es`, ES2015 output no longer included in `@reactivex/rxjs` package under `/dist/es6` ([6be9968](https://github.com/ReactiveX/RxJS/commit/6be9968)), closes [#1671](https://github.com/ReactiveX/RxJS/issues/1671)
1935
- - **filter:** Observable<T>.filter() can take type guard as the predicate function ([d62fbf0](https://github.com/ReactiveX/RxJS/commit/d62fbf0))
1936
- - **find:** Observable<T>.find() can take type guard as the predicate function ([b952718](https://github.com/ReactiveX/RxJS/commit/b952718))
1937
- - **first:** Observable<T>.first() can take type guard as the predicate function ([f99ca49](https://github.com/ReactiveX/RxJS/commit/f99ca49))
1938
- - **last:** Observable<T>.last() can take type guard as the predicate function ([76a8a57](https://github.com/ReactiveX/RxJS/commit/76a8a57))
1939
- - **operators:** Use lift in the operators that don't currently use lift. ([68af9ef](https://github.com/ReactiveX/RxJS/commit/68af9ef))
1940
- - **TypeScript:** update TypeScript to v2.0 ([3478b0b](https://github.com/ReactiveX/RxJS/commit/3478b0b))
1941
-
1942
- ### BREAKING CHANGES
1943
-
1944
- - **cache:** The .cache() operator has been removed, pending further discussion ([1b23ace](https://github.com/ReactiveX/RxJS/commit/1b23ace))
1945
- - ES2015: `rxjs-es` is no longer being published
1946
- - ES2015: `@reactivex/rxjs` no longer has `/dist/es6` output
1947
-
1948
- related #2016
1949
- related #1992
1950
-
1951
- - package.json: TypeScript definitions are now for TS 2.0 and higher
1952
-
1953
- Even if we use getter for class, they are marked with `readonly` properties
1954
- in d.ts.
1955
-
1956
- - operators: Removes MulticastObservable subclass in favor of a MulticastOperator.
1957
-
1958
- <a name="5.0.0-beta.12"></a>
1959
-
1960
- # [5.0.0-beta.12](https://github.com/ReactiveX/RxJS/compare/5.0.0-beta.11...v5.0.0-beta.12) (2016-09-09)
1961
-
1962
- ### Bug Fixes
1963
-
1964
- - **ajaxObservable:** remove implicit dependency to map operator patch ([1744ae9](https://github.com/ReactiveX/RxJS/commit/1744ae9)), closes [#1874](https://github.com/ReactiveX/RxJS/issues/1874)
1965
- - **AjaxObservable:** return null value from JSON.Parse (#1904) ([6ba374e](https://github.com/ReactiveX/RxJS/commit/6ba374e))
1966
- - **catch:** removed unneeded overload for catch ([dd0e586](https://github.com/ReactiveX/RxJS/commit/dd0e586))
1967
- - **max:** do not return comparer values ([f454e93](https://github.com/ReactiveX/RxJS/commit/f454e93)), closes [#1892](https://github.com/ReactiveX/RxJS/issues/1892)
1968
- - **min:** do not return comparer values ([222fd17](https://github.com/ReactiveX/RxJS/commit/222fd17)), closes [#1892](https://github.com/ReactiveX/RxJS/issues/1892)
1969
- - **operators:** export reserved name operators on prototype ([34c39dd](https://github.com/ReactiveX/RxJS/commit/34c39dd)), closes [#1924](https://github.com/ReactiveX/RxJS/issues/1924)
1970
- - **VirtualTimeScheduler:** remove default maxFrame limit ([1de86f1](https://github.com/ReactiveX/RxJS/commit/1de86f1)), closes [#1889](https://github.com/ReactiveX/RxJS/issues/1889)
1971
- - **WebSocketSubject:** pass constructor errors onto observable ([49c7d67](https://github.com/ReactiveX/RxJS/commit/49c7d67))
1972
-
1973
- ### Features
1974
-
1975
- - **operator:** Add repeatWhen operator ([c288d88](https://github.com/ReactiveX/RxJS/commit/c288d88))
1976
- - **sequenceEqual:** adds sequenceEqual operator ([3c30293](https://github.com/ReactiveX/RxJS/commit/3c30293)), closes [#1882](https://github.com/ReactiveX/RxJS/issues/1882)
1977
-
1978
- <a name="5.0.0-beta.11"></a>
1979
-
1980
- # [5.0.0-beta.11](https://github.com/ReactiveX/RxJS/compare/5.0.0-beta.10...v5.0.0-beta.11) (2016-08-09)
1981
-
1982
- ### Bug Fixes
1983
-
1984
- - **ajaxObservable:** only set default Content-Type header when no body is sent (#1830) ([5a895e8](https://github.com/ReactiveX/RxJS/commit/5a895e8))
1985
- - **AjaxObservable:** drop resultSelector support in ajax method ([7a77437](https://github.com/ReactiveX/RxJS/commit/7a77437)), closes [#1783](https://github.com/ReactiveX/RxJS/issues/1783)
1986
- - **AsyncSubject:** do not allow change value after complete ([801f282](https://github.com/ReactiveX/RxJS/commit/801f282)), closes [#1800](https://github.com/ReactiveX/RxJS/issues/1800)
1987
- - **BoundNodeCallbackObservable:** cast to `any` to access to private field in `source` ([54f342f](https://github.com/ReactiveX/RxJS/commit/54f342f))
1988
- - **catch:** accept selector returns ObservableInput ([e55c62d](https://github.com/ReactiveX/RxJS/commit/e55c62d)), closes [#1857](https://github.com/ReactiveX/RxJS/issues/1857)
1989
- - **combineLatest:** emit unique array instances with the default projection ([2e30fd1](https://github.com/ReactiveX/RxJS/commit/2e30fd1))
1990
- - **Observable.from:** standardise arguments (remove map/context) ([aa30af2](https://github.com/ReactiveX/RxJS/commit/aa30af2))
1991
- - **schedulers:** fix asap and animationFrame schedulers to execute across async boundaries. (#182 ([548ec2a](https://github.com/ReactiveX/RxJS/commit/548ec2a)), closes [(#1820](https://github.com/(/issues/1820) [#1814](https://github.com/ReactiveX/RxJS/issues/1814)
1992
- - **subscribeToResult:** update subscription to iterables ([5d6339a](https://github.com/ReactiveX/RxJS/commit/5d6339a))
1993
- - **WebSocketSubject:** prevent early close (#1831) ([848a527](https://github.com/ReactiveX/RxJS/commit/848a527)), closes [(#1831](https://github.com/(/issues/1831)
1994
-
1995
- ### Features
1996
-
1997
- - **fromEvent:** Pass through event listener options (#1845) ([8f0dc01](https://github.com/ReactiveX/RxJS/commit/8f0dc01))
1998
- - **PairsObservable:** add PairsObservable creation method ([26bafff](https://github.com/ReactiveX/RxJS/commit/26bafff)), closes [#1804](https://github.com/ReactiveX/RxJS/issues/1804)
1999
-
2000
- ### BREAKING CHANGES
2001
-
2002
- - Observable.from: - Observable.from no longer supports the optional map function and associated context argument.
2003
- This change has been reflected in the related constructors and their properties have been standardised.
2004
- - AjaxObservable: ajax.\*() method no longer support resultSelector, encourage to use `map` instead
2005
-
2006
- <a name="5.0.0-beta.10"></a>
2007
-
2008
- # [5.0.0-beta.10](https://github.com/ReactiveX/RxJS/compare/5.0.0-beta.9...v5.0.0-beta.10) (2016-07-06)
2009
-
2010
- ### Bug Fixes
2011
-
2012
- - **AjaxObservable:** ignore content-type for formdata (#1746) ([43d05e7](https://github.com/ReactiveX/RxJS/commit/43d05e7))
2013
- - **AjaxObservable:** support withCredentials for CORS request ([8084572](https://github.com/ReactiveX/RxJS/commit/8084572)), closes [#1732](https://github.com/ReactiveX/RxJS/issues/1732) [#1711](https://github.com/ReactiveX/RxJS/issues/1711)
2014
- - **babel:** fix an issue where babel could not compile `Scheduler.async` (#1807) ([12c5c74](https://github.com/ReactiveX/RxJS/commit/12c5c74)), closes [(#1807](https://github.com/(/issues/1807) [#1806](https://github.com/ReactiveX/RxJS/issues/1806)
2015
- - **bufferTime:** handle closing context when synchronously unsubscribed ([4ce4433](https://github.com/ReactiveX/RxJS/commit/4ce4433)), closes [#1763](https://github.com/ReactiveX/RxJS/issues/1763)
2016
- - **multicast:** Fixes multicast with selector to create a new source connection per subscriber. ([c3ac852](https://github.com/ReactiveX/RxJS/commit/c3ac852)), closes [(#1774](https://github.com/(/issues/1774)
2017
- - **Subject:** allow optional next value in type definition ([3e0c6d9](https://github.com/ReactiveX/RxJS/commit/3e0c6d9)), closes [#1728](https://github.com/ReactiveX/RxJS/issues/1728)
2018
- - **WebSocketSubject:** respect WebSocketCtor, support source/destination arguments in constructor. (#179 ([cd8cdd0](https://github.com/ReactiveX/RxJS/commit/cd8cdd0)), closes [#1745](https://github.com/ReactiveX/RxJS/issues/1745) [#1784](https://github.com/ReactiveX/RxJS/issues/1784)
2019
-
2020
- <a name="5.0.0-beta.9"></a>
2021
-
2022
- # [5.0.0-beta.9](https://github.com/ReactiveX/RxJS/compare/5.0.0-beta.8...v5.0.0-beta.9) (2016-06-14)
2023
-
2024
- ### Bug Fixes
2025
-
2026
- - **cache:** get correct caching behavior (#1765) ([cb0b806](https://github.com/ReactiveX/RxJS/commit/cb0b806)), closes [#1628](https://github.com/ReactiveX/RxJS/issues/1628)
2027
- - **ConnectableObservable:** fix ConnectableObservable connection handling issue ([41ce80c](https://github.com/ReactiveX/RxJS/commit/41ce80c))
2028
- - **typings:** make HotObservable.\_subscribe protected ([1c3d6ea](https://github.com/ReactiveX/RxJS/commit/1c3d6ea))
2029
- - **WebSocketSubject:** WebSocketSubject will now chain operators properly (#1752) ([bf54db4](https://github.com/ReactiveX/RxJS/commit/bf54db4)), closes [#1745](https://github.com/ReactiveX/RxJS/issues/1745)
2030
- - **window:** don't track internal window subjects as subscriptions. ([f3357b9](https://github.com/ReactiveX/RxJS/commit/f3357b9))
2031
-
2032
- ### Performance Improvements
2033
-
2034
- - **fromEventPattern:** ~3x improvement in speed ([3dc1c00](https://github.com/ReactiveX/RxJS/commit/3dc1c00))
2035
-
2036
- <a name="5.0.0-beta.8"></a>
2037
-
2038
- # [5.0.0-beta.8](https://github.com/ReactiveX/RxJS/compare/5.0.0-beta.7...v5.0.0-beta.8) (2016-05-22)
2039
-
2040
- ### Bug Fixes
2041
-
2042
- - **AnonymousSubject:** allow anonymous observers as destination ([0e2c28b](https://github.com/ReactiveX/RxJS/commit/0e2c28b))
2043
- - **combineLatest:** rxjs/observable/combineLatest is now properly exported ([21fab73](https://github.com/ReactiveX/RxJS/commit/21fab73)), closes [#1722](https://github.com/ReactiveX/RxJS/issues/1722)
2044
- - **ConnectableObservable:** fix race conditions in ConnectableObservable and refCount. ([d1412bc](https://github.com/ReactiveX/RxJS/commit/d1412bc))
2045
- - **Rx:** remove kitchenSink and DOM, let Rx export all ([f5090b4](https://github.com/ReactiveX/RxJS/commit/f5090b4)), closes [#1650](https://github.com/ReactiveX/RxJS/issues/1650)
2046
- - **ScalarObservable:** set \_isScalar to false when initialized with a scheduler ([5037b3a](https://github.com/ReactiveX/RxJS/commit/5037b3a))
2047
- - **Subject:** correct Subject behaviors to be more like Rx4 ([ba9ef2b](https://github.com/ReactiveX/RxJS/commit/ba9ef2b))
2048
- - **subscriptions:** fixes bug that tracked subscriber subscriptions twice. ([29ff794](https://github.com/ReactiveX/RxJS/commit/29ff794))
2049
-
2050
- ### Features
2051
-
2052
- - **bufferTime:** add `maxBufferSize` optional argument ([cf45540](https://github.com/ReactiveX/RxJS/commit/cf45540)), closes [#1295](https://github.com/ReactiveX/RxJS/issues/1295)
2053
- - **multicast:** subjectfactory allows selectors ([32fa3a4](https://github.com/ReactiveX/RxJS/commit/32fa3a4))
2054
- - **onErrorResumeNext:** add onErrorResumeNext operator ([51e022b](https://github.com/ReactiveX/RxJS/commit/51e022b)), closes [#1665](https://github.com/ReactiveX/RxJS/issues/1665)
2055
- - **publish:** support optional selectors ([0e5991d](https://github.com/ReactiveX/RxJS/commit/0e5991d)), closes [#1629](https://github.com/ReactiveX/RxJS/issues/1629)
2056
-
2057
- ### Performance Improvements
2058
-
2059
- - **combineLatest:** avoid splice and indexOf ([33599cd](https://github.com/ReactiveX/RxJS/commit/33599cd))
2060
-
2061
- ### BREAKING CHANGES
2062
-
2063
- - Subject: Subjects no longer duck-type as Subscriptions
2064
- - Subject: Subjects will no longer throw when re-subscribed to if they are not unsubscribed
2065
- - Subject: Subjects no longer automatically unsubscribe when completed or errored
2066
- BREAKING CHANGE: Minor scheduling changes to groupBy to ensure proper emission ordering
2067
- - Rx: `Rx.kitchenSink` and `Rx.DOM` are removed, `Rx`
2068
- export everything.
2069
-
2070
- <a name="5.0.0-beta.7"></a>
2071
-
2072
- # [5.0.0-beta.7](https://github.com/ReactiveX/RxJS/compare/5.0.0-beta.6...v5.0.0-beta.7) (2016-04-27)
2073
-
2074
- ### Bug Fixes
2075
-
2076
- - **race:** handle observables completes immediately ([abac3d1](https://github.com/ReactiveX/RxJS/commit/abac3d1)), closes [#1615](https://github.com/ReactiveX/RxJS/issues/1615)
2077
- - **scan:** accumulator passes current index ([a3ec896](https://github.com/ReactiveX/RxJS/commit/a3ec896)), closes [#1614](https://github.com/ReactiveX/RxJS/issues/1614)
2078
-
2079
- ### Features
2080
-
2081
- - **Observable.generate:** add generate static creation method ([c03434c](https://github.com/ReactiveX/RxJS/commit/c03434c))
2082
-
2083
- <a name="5.0.0-beta.6"></a>
2084
-
2085
- # [5.0.0-beta.6](https://github.com/ReactiveX/RxJS/compare/5.0.0-beta.5...v5.0.0-beta.6) (2016-04-12)
2086
-
2087
- ### Bug Fixes
2088
-
2089
- - **AjaxObservable:** support json responseType on IE ([bba13d8](https://github.com/ReactiveX/RxJS/commit/bba13d8)), closes [#1381](https://github.com/ReactiveX/RxJS/issues/1381)
2090
- - **bufferToggle:** accepts closing selector returns promise ([b1c575c](https://github.com/ReactiveX/RxJS/commit/b1c575c))
2091
- - **bufferToggle:** accepts promise as openings ([3d22c7a](https://github.com/ReactiveX/RxJS/commit/3d22c7a))
2092
- - **bufferToggle:** handle closingSelector completes immediately ([02239fb](https://github.com/ReactiveX/RxJS/commit/02239fb))
2093
- - **typings:** explicitly export typings for arguments to functions that destructure configuration objects ([ef305af](https://github.com/ReactiveX/RxJS/commit/ef305af))
2094
-
2095
- ### Features
2096
-
2097
- - **UnsubscriptionError:** add messages from inner errors to output message ([dd01279](https://github.com/ReactiveX/RxJS/commit/dd01279)), closes [#1590](https://github.com/ReactiveX/RxJS/issues/1590)
2098
-
2099
- ### Performance Improvements
2100
-
2101
- - **DeferSubscriber:** split up 'tryDefer()' into a method to call a factory function. ([566f46b](https://github.com/ReactiveX/RxJS/commit/566f46b))
2102
-
2103
- <a name="5.0.0-beta.5"></a>
2104
-
2105
- # [5.0.0-beta.5](https://github.com/ReactiveX/RxJS/compare/5.0.0-beta.4...v5.0.0-beta.5) (2016-04-05)
2106
-
2107
- ### Bug Fixes
2108
-
2109
- - **take:** make 'take' unsubscribe when it reaches the total ([9858aa3](https://github.com/ReactiveX/RxJS/commit/9858aa3))
2110
-
2111
- ### BREAKING CHANGES
2112
-
2113
- - Operator: `Operator.prototype.call` has been refactored to include both the destination Subscriber, and the source Observable
2114
- the Operator is now responsible for describing it's own subscription process. ([26423f4](https://github.com/ReactiveX/rxjs/pull/1570/commits/26423f4))
2115
-
2116
- <a name="5.0.0-beta.4"></a>
2117
-
2118
- # [5.0.0-beta.4](https://github.com/ReactiveX/RxJS/compare/5.0.0-beta.3...v5.0.0-beta.4) (2016-03-29)
2119
-
2120
- ### Bug Fixes
2121
-
2122
- - **AjaxObservable:** enhance compatibility ([0ac7e1e](https://github.com/ReactiveX/RxJS/commit/0ac7e1e))
2123
- - **Observable.if:** accept promise as source ([147166e](https://github.com/ReactiveX/RxJS/commit/147166e))
2124
- - **mergeMap:** allow concurrent to be set as the second argument for mergeMap and mergeMapTo ([c003468](https://github.com/ReactiveX/RxJS/commit/c003468))
2125
- - **observable:** ensure the subscriber chain is complete before calling this.\_subscribe ([1631224](https://github.com/ReactiveX/RxJS/commit/1631224))
2126
- - **Symbol:** fixed issue where \$\$observable is not defined ([e66b2d8](https://github.com/ReactiveX/RxJS/commit/e66b2d8))
2127
- - **Observable.using:** accepts factory returns promise ([f8d7d1b](https://github.com/ReactiveX/RxJS/commit/f8d7d1b))
2128
- - **windowToggle:** handle closingSelector completes immediately ([c755587](https://github.com/ReactiveX/RxJS/commit/c755587)), closes [#1487](https://github.com/ReactiveX/RxJS/issues/1487)
2129
-
2130
- ### Features
2131
-
2132
- - **ajax:** add FormData support in AjaxObservable and add percent encoding for parameters ([1f6119c](https://github.com/ReactiveX/RxJS/commit/1f6119c))
2133
- - **Subscription:** `add()` now returns a Subscription reference ([a3f4552](https://github.com/ReactiveX/RxJS/commit/a3f4552))
2134
- - **timestamp:** add timestamp operator ([80b1646](https://github.com/ReactiveX/RxJS/commit/80b1646)), closes [#1515](https://github.com/ReactiveX/RxJS/issues/1515)
2135
-
2136
- ### Performance Improvements
2137
-
2138
- - **forkJoin:** improve forkJoin perf slightly by removing unnecessary context tracking ([280b985](https://github.com/ReactiveX/RxJS/commit/280b985))
2139
-
2140
- ### BREAKING CHANGES
2141
-
2142
- - Observable: `Observable.fromArray` was removed since it's deprecated on RxJS 4. You should use `Observable.from` instead.
2143
-
2144
- <a name="5.0.0-beta.3"></a>
2145
-
2146
- # [5.0.0-beta.3](https://github.com/ReactiveX/RxJS/compare/5.0.0-beta.2...v5.0.0-beta.3) (2016-03-21)
2147
-
2148
- ### Bug Fixes
2149
-
2150
- - **AjaxObservable:** update type definition for AjaxObservable ([3f5c269](https://github.com/ReactiveX/RxJS/commit/3f5c269)), closes [#1382](https://github.com/ReactiveX/RxJS/issues/1382)
2151
- - **deferObservable:** accepts factory returns promise ([0cb44e1](https://github.com/ReactiveX/RxJS/commit/0cb44e1))
2152
- - **do:** fix do operator to invoke observer message handlers in the right context. ([67a2f25](https://github.com/ReactiveX/RxJS/commit/67a2f25))
2153
- - **exhaustMap:** remove innersubscription when it completes ([7ca0859](https://github.com/ReactiveX/RxJS/commit/7ca0859))
2154
- - **forEach:** ensure that teardown logic is called when nextHandler throws ([c50f528](https://github.com/ReactiveX/RxJS/commit/c50f528)), closes [#1411](https://github.com/ReactiveX/RxJS/issues/1411)
2155
- - **forkJoin:** accepts observables emitting null or undefined ([6279d6b](https://github.com/ReactiveX/RxJS/commit/6279d6b)), closes [#1362](https://github.com/ReactiveX/RxJS/issues/1362)
2156
- - **forkJoin:** dispose the inner subscriptions when the outer subscription is disposed ([c7bf30c](https://github.com/ReactiveX/RxJS/commit/c7bf30c))
2157
- - **FutureAction:** add support for periodic scheduling with setInterval instead of setTimeout ([c4f5408](https://github.com/ReactiveX/RxJS/commit/c4f5408))
2158
- - **Observable:** introduce Subscribable interface that will be used instead of Observable in input ([2256e7b](https://github.com/ReactiveX/RxJS/commit/2256e7b))
2159
- - **Observable.prototype.forEach:** removed thisArg to match es-observable spec ([d5f1bcd](https://github.com/ReactiveX/RxJS/commit/d5f1bcd))
2160
- - **package.json:** install typings only after packages are installed ([a48d796](https://github.com/ReactiveX/RxJS/commit/a48d796))
2161
- - **Schedulers:** ensure schedulers can be reused after error in execution ([202b79a](https://github.com/ReactiveX/RxJS/commit/202b79a))
2162
- - **takeLast:** fix takeLast behavior to emit correct order ([73eb658](https://github.com/ReactiveX/RxJS/commit/73eb658)), closes [#1407](https://github.com/ReactiveX/RxJS/issues/1407)
2163
- - **typings:** set map function parameter for Observable.from as optional ([efa4dc3](https://github.com/ReactiveX/RxJS/commit/efa4dc3))
2164
-
2165
- ### Features
2166
-
2167
- - **AsyncScheduler:** add AsyncScheduler implementation ([4486c1f](https://github.com/ReactiveX/RxJS/commit/4486c1f))
2168
- - **if:** add static Observable.if creation operator. ([f7ff7ec](https://github.com/ReactiveX/RxJS/commit/f7ff7ec))
2169
- - **let:** adds the let operator to Rx.KitchenSink ([dca6504](https://github.com/ReactiveX/RxJS/commit/dca6504))
2170
- - **using:** add static Observable.using creation operator. ([6c76593](https://github.com/ReactiveX/RxJS/commit/6c76593))
2171
-
2172
- ### BREAKING CHANGES
2173
-
2174
- - Observable.prototype.forEach: thisArg removed to match es-observable spec
2175
-
2176
- <a name="5.0.0-beta.2"></a>
2177
-
2178
- # [5.0.0-beta.2](https://github.com/ReactiveX/RxJS/compare/5.0.0-beta.1...v5.0.0-beta.2) (2016-02-10)
2179
-
2180
- ### Bug Fixes
2181
-
2182
- - **ajax:** fixes error in Chrome accessing responseText when responseType isn't text. ([f3e2f73](https://github.com/ReactiveX/RxJS/commit/f3e2f73))
2183
- - **benchpress:** fix issues with benchmarks ([16894bb](https://github.com/ReactiveX/RxJS/commit/16894bb))
2184
- - **every:** remove eager predicate calls ([74c2c44](https://github.com/ReactiveX/RxJS/commit/74c2c44))
2185
- - **forkJoin:** fix forkJoin to complete if sources Array is empty. ([412b13b](https://github.com/ReactiveX/RxJS/commit/412b13b))
2186
- - **groupBy:** does not emit on unsubscribed group ([6d08705](https://github.com/ReactiveX/RxJS/commit/6d08705))
2187
- - **groupBy:** fix groupBy to use lift(), supports composability ([815cfae](https://github.com/ReactiveX/RxJS/commit/815cfae)), closes [#1085](https://github.com/ReactiveX/RxJS/issues/1085)
2188
- - **merge/concat:** passed scalar observables will now complete properly ([c01b92f](https://github.com/ReactiveX/RxJS/commit/c01b92f)), closes [#1150](https://github.com/ReactiveX/RxJS/issues/1150)
2189
- - **MergeMapSubscriber:** clarify type definitions for MergeMapSubscriber's members ([4ee5f02](https://github.com/ReactiveX/RxJS/commit/4ee5f02))
2190
- - **Observable.forEach:** errors thrown in nextHandler reject returned promise ([c5ead88](https://github.com/ReactiveX/RxJS/commit/c5ead88)), closes [#1184](https://github.com/ReactiveX/RxJS/issues/1184)
2191
- - **Observer:** fix typing to allow observation via partial observables with PartialObservable<T ([7b6da90](https://github.com/ReactiveX/RxJS/commit/7b6da90))
2192
- - **Subject:** align parameter order to match with RxJS4 ([44dfa07](https://github.com/ReactiveX/RxJS/commit/44dfa07)), closes [#1285](https://github.com/ReactiveX/RxJS/issues/1285)
2193
- - **Subject:** throw ObjectUnsubscribedError when unsubscribed ([29b630b](https://github.com/ReactiveX/RxJS/commit/29b630b)), closes [#859](https://github.com/ReactiveX/RxJS/issues/859)
2194
- - **Subscriber:** adds unsubscription when errors are thrown from user-land handlers. ([dc67d21](https://github.com/ReactiveX/RxJS/commit/dc67d21))
2195
- - **Subscription:** fix leaks caused by unsubscribe functions that throw ([9e88c2e](https://github.com/ReactiveX/RxJS/commit/9e88c2e))
2196
- - **subscriptions:** unsubscribe correctly when a Subscriber throws during synchronous dispatch. ([b1698fe](https://github.com/ReactiveX/RxJS/commit/b1698fe))
2197
- - **typings:** don't expose PromiseConstructor dependency ([f59225b](https://github.com/ReactiveX/RxJS/commit/f59225b)), closes [#1270](https://github.com/ReactiveX/RxJS/issues/1270)
2198
- - **typings:** remove R from Operator.call, update operators accordingly ([f27902d](https://github.com/ReactiveX/RxJS/commit/f27902d))
2199
- - **typings:** remove redundant generics from call<T, R> and lift<T, R> ([603c9eb](https://github.com/ReactiveX/RxJS/commit/603c9eb))
2200
- - **windowTime:** does not emit on unsubscribed window ([595f4ef](https://github.com/ReactiveX/RxJS/commit/595f4ef))
2201
-
2202
- ### Features
2203
-
2204
- - **cache:** add cache operator ([4308a04](https://github.com/ReactiveX/RxJS/commit/4308a04))
2205
- - **delayWhen:** add delayWhen operator ([17122f9](https://github.com/ReactiveX/RxJS/commit/17122f9))
2206
- - **distinct:** add distinct operator ([94a034d](https://github.com/ReactiveX/RxJS/commit/94a034d))
2207
- - **distinctKey:** add distinctKey operator ([fe4d57f](https://github.com/ReactiveX/RxJS/commit/fe4d57f))
2208
- - **from:** allow Observable.from to handle array-like objects ([7245005](https://github.com/ReactiveX/RxJS/commit/7245005))
2209
- - **MapPolyfill:** implement clear interface ([e3fbd05](https://github.com/ReactiveX/RxJS/commit/e3fbd05))
2210
- - **operator:** adds inspect and inspectTime operators ([54f957b](https://github.com/ReactiveX/RxJS/commit/54f957b))
2211
- - **OuterSubscriber:** notifyNext passes innersubscriber when next emits ([1df8928](https://github.com/ReactiveX/RxJS/commit/1df8928)), closes [#1250](https://github.com/ReactiveX/RxJS/issues/1250)
2212
- - **Subject:** implement asObservable ([aca3dd0](https://github.com/ReactiveX/RxJS/commit/aca3dd0)), closes [#1108](https://github.com/ReactiveX/RxJS/issues/1108)
2213
- - **takeLast:** adds takeLast operator. ([3583cd3](https://github.com/ReactiveX/RxJS/commit/3583cd3))
2214
-
2215
- ### Performance Improvements
2216
-
2217
- - **catch:** remove tryCatch/errorObject for custom tryCatching, 1.3M -> 1.5M ops/sec ([35caf74](https://github.com/ReactiveX/RxJS/commit/35caf74))
2218
- - **combineLatest:** remove tryCatch/errorObject, 156k -> 221k ops/sec ([1c7d639](https://github.com/ReactiveX/RxJS/commit/1c7d639))
2219
- - **count:** remove tryCatch/errorObject for custom tryCatching, 1.84M -> 1.97M ops/sec ([869718d](https://github.com/ReactiveX/RxJS/commit/869718d))
2220
- - **debounce:** remove tryCatch/errorObject for custom tryCatching ([90bf3f1](https://github.com/ReactiveX/RxJS/commit/90bf3f1))
2221
- - **distinct:** increase perf from 60% of Rx4 to 1000% Rx4 ([d026c41](https://github.com/ReactiveX/RxJS/commit/d026c41))
2222
- - **do:** remove tryCatch/errorObject use, 104k -> 263k ops/sec improvement ([ccba39d](https://github.com/ReactiveX/RxJS/commit/ccba39d))
2223
- - **every:** remove tryCatch/errorObject (~1.8x improvement) ([14afeb6](https://github.com/ReactiveX/RxJS/commit/14afeb6))
2224
- - **exhaustMap:** remove tryCatch/errorObject (~10% improvement) ([a55f459](https://github.com/ReactiveX/RxJS/commit/a55f459))
2225
- - **filter:** remove tryCatch/errorObject for 2x perf improvement ([086c4bf](https://github.com/ReactiveX/RxJS/commit/086c4bf))
2226
- - **find:** remove tryCatch/errorObject (~2x improvement) ([aa35b2a](https://github.com/ReactiveX/RxJS/commit/aa35b2a))
2227
- - **first:** remove tryCatch/errorObject for custom tryCatching, 970k ops -> 1.27M ops/sec ([d8c835a](https://github.com/ReactiveX/RxJS/commit/d8c835a))
2228
- - **groupBy:** remove tryCatch/errorObject for custom tryCatching, 38% faster. ([40c43f7](https://github.com/ReactiveX/RxJS/commit/40c43f7))
2229
- - **last:** remove tryCatch/errorObject for custom tryCatching, 960k -> 1.38M ops/sec ([243ace3](https://github.com/ReactiveX/RxJS/commit/243ace3))
2230
- - **map:** 2x increase from removing tryCatch/errorObject ([231f729](https://github.com/ReactiveX/RxJS/commit/231f729))
2231
- - **mergeMap:** extra 1x factor gains from custom tryCatch member function ([c4ce2fb](https://github.com/ReactiveX/RxJS/commit/c4ce2fb))
2232
- - **mergeMapTo:** remove tryCatch/errorObject (~2x improvement) ([42bcced](https://github.com/ReactiveX/RxJS/commit/42bcced))
2233
- - **reduce:** remove tryCatch/errorObject, optimize calls, 2-3x perf improvement ([6186d46](https://github.com/ReactiveX/RxJS/commit/6186d46))
2234
- - **scan:** remove tryCatch/errorObject for custom tryCatcher 1.75x improvement ([338135d](https://github.com/ReactiveX/RxJS/commit/338135d))
2235
- - **single:** remove tryCatch/errorObject (~2.5x improvement) ([2515cfb](https://github.com/ReactiveX/RxJS/commit/2515cfb))
2236
- - **skipWhile:** remove tryCatch/errorObject (~1.6x improvement) ([cf002db](https://github.com/ReactiveX/RxJS/commit/cf002db))
2237
- - **Subscriber:** double performance adding tryOrUnsub to Subscriber ([4e75466](https://github.com/ReactiveX/RxJS/commit/4e75466))
2238
- - **switchMap:** remove tryCatch/errorObject ~20% improvement ([ec0199f](https://github.com/ReactiveX/RxJS/commit/ec0199f))
2239
- - **switchMapTo:** remove tryCatch/errorObject (~2x improvement) ([c8cf72a](https://github.com/ReactiveX/RxJS/commit/c8cf72a))
2240
- - **takeWhile:** remove tryCatch/errorObject (~6x improvement) ([ef6c3c3](https://github.com/ReactiveX/RxJS/commit/ef6c3c3))
2241
- - **withLatestFrom:** remove tryCatch/errorObject, 92k -> 107k (16% improvement) ([e4ccb44](https://github.com/ReactiveX/RxJS/commit/e4ccb44))
2242
- - **zip:** extra 1x-2x factor gains from custom tryCatch member function ([a1b0e52](https://github.com/ReactiveX/RxJS/commit/a1b0e52))
2243
-
2244
- ### BREAKING CHANGES
2245
-
2246
- - Subject: Subject.create arguments have been swapped to match Rx 4 signature. `Subject.create(observable, observer)` is now `Subject.create(observer, observable)`
2247
- - Observable patching: Patch files for static observable methods such as `of` and `from` can now be found in `rxjs/add/observable/of`, `rxjs/add/observable/from`, etc.
2248
- - Observable modules: Observable modules for subclassed Observables like `PromiseObservable`, `ArrayObservable` are now in appropriately named files like `rxjs/observable/PromiseObservable` and `rxjs/observable/ArrayObservable`
2249
- as opposed to `rxjs/observable/fromPromise` and `rxjs/observable/fromArray`, since they're not patching, they simply house the Observable implementations.
2250
-
2251
- <a name="5.0.0-beta.1"></a>
2252
-
2253
- # [5.0.0-beta.1](https://github.com/ReactiveX/RxJS/compare/5.0.0-beta.0...v5.0.0-beta.1) (2016-01-13)
2254
-
2255
- ### Bug Fixes
2256
-
2257
- - **ajax:** ensure post sending values ([7aae0a3](https://github.com/ReactiveX/RxJS/commit/7aae0a3))
2258
- - **ajax:** ensure that headers are set properly ([1100bdd](https://github.com/ReactiveX/RxJS/commit/1100bdd))
2259
- - **ajax:** ensure XHR props are set after open ([4a6a579](https://github.com/ReactiveX/RxJS/commit/4a6a579))
2260
- - **ajax:** ensure XHR send is being called ([c569e3e](https://github.com/ReactiveX/RxJS/commit/c569e3e))
2261
- - **ajax:** remove unnecessary onAbort handling ([ed8240e](https://github.com/ReactiveX/RxJS/commit/ed8240e))
2262
- - **ajax:** response properly based off responseType ([b2a27a2](https://github.com/ReactiveX/RxJS/commit/b2a27a2))
2263
- - **ajax:** should no longer succeed on 300 status ([4d4fa32](https://github.com/ReactiveX/RxJS/commit/4d4fa32))
2264
- - **animationFrame:** req/cancel animationFrame has to be called within the context of root. ([30a11ee](https://github.com/ReactiveX/RxJS/commit/30a11ee))
2265
- - **debounceTime:** align value emit behavior as same as RxJS4 ([5ee11e0](https://github.com/ReactiveX/RxJS/commit/5ee11e0)), closes [#1081](https://github.com/ReactiveX/RxJS/issues/1081)
2266
- - **distinctUntilChanged:** implement optional keySelector ([f6a897c](https://github.com/ReactiveX/RxJS/commit/f6a897c))
2267
- - **fromEvent:** added spread operator for emitters that pass multiple arguments ([3f8eabb](https://github.com/ReactiveX/RxJS/commit/3f8eabb))
2268
- - **fromObservable:** expand compatibility for iterating string source ([8f7924f](https://github.com/ReactiveX/RxJS/commit/8f7924f)), closes [#1147](https://github.com/ReactiveX/RxJS/issues/1147)
2269
- - **Immediate:** update setImmediate compatibility on IE ([39e6c0e](https://github.com/ReactiveX/RxJS/commit/39e6c0e)), closes [#1163](https://github.com/ReactiveX/RxJS/issues/1163)
2270
- - **inspect:** remove inspect and inspectTime operators ([17341a4](https://github.com/ReactiveX/RxJS/commit/17341a4))
2271
- - **Readme:** update link to bundle on npmcdn ([44a8ca7](https://github.com/ReactiveX/RxJS/commit/44a8ca7))
2272
- - **ReplaySubject:** Fix case-sensitive import. ([de31f32](https://github.com/ReactiveX/RxJS/commit/de31f32))
2273
- - **ScalarObservable:** fix issue where scalar map fired twice ([c18c42e](https://github.com/ReactiveX/RxJS/commit/c18c42e)), closes [#1142](https://github.com/ReactiveX/RxJS/issues/1142) [#1140](https://github.com/ReactiveX/RxJS/issues/1140)
2274
- - **scheduling:** Fixes bugs in scheduled actions. ([e050f01](https://github.com/ReactiveX/RxJS/commit/e050f01))
2275
- - **Subscriber:** errors in nextHandler no longer propagate to errorHandler ([f42eed2](https://github.com/ReactiveX/RxJS/commit/f42eed2)), closes [#1135](https://github.com/ReactiveX/RxJS/issues/1135)
2276
- - **WebSocketSubject:** ensure error codes passed to WebSocket close method ([3b1655e](https://github.com/ReactiveX/RxJS/commit/3b1655e))
2277
- - **WebSocketSubject:** ensure WebSocketSubject can be resubscribed ([861a0c1](https://github.com/ReactiveX/RxJS/commit/861a0c1))
2278
- - **WebSocketSubject:** resultSelector and protocols specifications work properly ([580f69a](https://github.com/ReactiveX/RxJS/commit/580f69a))
2279
-
2280
- ### Features
2281
-
2282
- - **ajax:** add resultSelector and improve perf ([6df755f](https://github.com/ReactiveX/RxJS/commit/6df755f))
2283
- - **ajax:** adds ajax methods from rx-dom. ([2ca4236](https://github.com/ReactiveX/RxJS/commit/2ca4236))
2284
- - **bindNodeCallback:** add Observable.bindNodeCallback ([497bb0d](https://github.com/ReactiveX/RxJS/commit/497bb0d)), closes [#736](https://github.com/ReactiveX/RxJS/issues/736)
2285
- - **Observable:** add let to allow fluent style query building ([5a2014c](https://github.com/ReactiveX/RxJS/commit/5a2014c))
2286
- - **Observable:** add pairwise operator ([1432e59](https://github.com/ReactiveX/RxJS/commit/1432e59))
2287
- - **Operator:** Expose the Operator interface to library consumers ([29aa3af](https://github.com/ReactiveX/RxJS/commit/29aa3af))
2288
- - **pluck:** add pluck operator ([8026906](https://github.com/ReactiveX/RxJS/commit/8026906)), closes [#1134](https://github.com/ReactiveX/RxJS/issues/1134)
2289
- - **race:** add race operator ([ee3b593](https://github.com/ReactiveX/RxJS/commit/ee3b593))
2290
- - **scheduler:** adds animationFrame scheduler. ([e637b78](https://github.com/ReactiveX/RxJS/commit/e637b78))
2291
- - **WebSocketSubject:** add basic WebSocketSubject implementation ([58cd806](https://github.com/ReactiveX/RxJS/commit/58cd806))
2292
- - **WebSocketSubject.multiplex:** add multiplex operator to WebSocketSubject ([904d617](https://github.com/ReactiveX/RxJS/commit/904d617))
2293
-
2294
- ### BREAKING CHANGES
2295
-
2296
- - inspect: `inspect` and `inspectTime` were removed. Use `withLatestFrom` instead.
2297
- - Subscriber/Observable: errors thrown in nextHandlers by consumer code will no longer propagate to the errorHandler.
2298
-
2299
- <a name="5.0.0-beta.0"></a>
2300
-
2301
- # [5.0.0-beta.0](https://github.com/ReactiveX/RxJS/compare/5.0.0-alpha.14...v5.0.0-beta.0) (2015-12-15)
2302
-
2303
- ### Bug Fixes
2304
-
2305
- - **micro-perf:** rename immediate to queue scheduler ([fe56b28](https://github.com/ReactiveX/RxJS/commit/fe56b28)), closes [#1040](https://github.com/ReactiveX/RxJS/issues/1040)
2306
- - **micro-perf:** use the current scheduler on current-thread tests ([3dff5eb](https://github.com/ReactiveX/RxJS/commit/3dff5eb))
2307
- - **operators:** emit declarations for patch modules ([676f82d](https://github.com/ReactiveX/RxJS/commit/676f82d))
2308
- - **test:** make explicit unsubscription for observable ([7f67b09](https://github.com/ReactiveX/RxJS/commit/7f67b09))
2309
- - **test:** make explicit unsubscription for observable ([65e65e2](https://github.com/ReactiveX/RxJS/commit/65e65e2))
2310
- - **window:** fix window() to dispose window Subjects ([5168f73](https://github.com/ReactiveX/RxJS/commit/5168f73))
2311
- - **windowCount:** fix windowCount to dispose window Subjects ([f29ee29](https://github.com/ReactiveX/RxJS/commit/f29ee29))
2312
- - **windowTime:** fix windowTime to dispose window Subjects ([b73e260](https://github.com/ReactiveX/RxJS/commit/b73e260))
2313
- - **windowToggle:** fix windowToggle to dispose window Subjects ([15ff3f7](https://github.com/ReactiveX/RxJS/commit/15ff3f7))
2314
- - **windowWhen:** fix windowWhen to dispose window Subjects ([91c1941](https://github.com/ReactiveX/RxJS/commit/91c1941))
2315
-
2316
- ### Features
2317
-
2318
- - **inspect:** added inspect operator ([f9944ae](https://github.com/ReactiveX/RxJS/commit/f9944ae))
2319
- - **inspectTime:** add inspectTime operator ([6835dcd](https://github.com/ReactiveX/RxJS/commit/6835dcd))
2320
- - **sample:** readd `sample` operator ([e93bffc](https://github.com/ReactiveX/RxJS/commit/e93bffc))
2321
- - **sampleTime:** reimplement `sampleTime` with RxJS 4 behavior ([6b77e69](https://github.com/ReactiveX/RxJS/commit/6b77e69))
2322
- - **TestScheduler:** add createTime() parser to return number ([cb8cf6b](https://github.com/ReactiveX/RxJS/commit/cb8cf6b))
2323
-
2324
- ### BREAKING CHANGES
2325
-
2326
- - sampleTime: `sampleTime` now has the same behavior `sample(number, scheduler)` did in RxJS 4
2327
- - sample: `sample` behavior returned to RxJS 4 behavior
2328
- - inspectTime: `sampleTime` is now `inspectTime`
2329
- - inspect: RxJS 5 `sample` behavior is now `inspect`
2330
- - extended operators: All extended operators are now under the same operator directory as all others. This means that
2331
- `import "rxjs/add/operator/extended/min"` is now `import "rxjs/add/operator/min"`
2332
-
2333
- <a name="5.0.0-alpha.14"></a>
2334
-
2335
- # [5.0.0-alpha.14](https://github.com/ReactiveX/RxJS/compare/5.0.0-alpha.13...v5.0.0-alpha.14) (2015-12-09)
2336
-
2337
- ### Bug Fixes
2338
-
2339
- - **every:** handle thisArg for scalar and array observables ([eae4b00](https://github.com/ReactiveX/RxJS/commit/eae4b00))
2340
- - **SymbolShim:** ensure for function even if Symbol already exists ([e942776](https://github.com/ReactiveX/RxJS/commit/e942776)), closes [#999](https://github.com/ReactiveX/RxJS/issues/999)
2341
- - **SymbolShim:** Symbol polyfill is a function ([1f57157](https://github.com/ReactiveX/RxJS/commit/1f57157)), closes [#988](https://github.com/ReactiveX/RxJS/issues/988)
2342
- - **timeoutWith:** fix to avoid unnecessary inner subscription ([6e63752](https://github.com/ReactiveX/RxJS/commit/6e63752))
2343
-
2344
- ### Features
2345
-
2346
- - **count:** remove thisArg ([878a1fd](https://github.com/ReactiveX/RxJS/commit/878a1fd))
2347
- - **distinctUntilChanged:** remove thisArg ([bfc52d6](https://github.com/ReactiveX/RxJS/commit/bfc52d6))
2348
- - **exhaust:** rename switchFirst operators to exhaust ([9b565c9](https://github.com/ReactiveX/RxJS/commit/9b565c9)), closes [#915](https://github.com/ReactiveX/RxJS/issues/915)
2349
- - **finally:** remove thisArg ([d4b02fc](https://github.com/ReactiveX/RxJS/commit/d4b02fc))
2350
- - **forEach:** add thisArg ([14ffce6](https://github.com/ReactiveX/RxJS/commit/14ffce6)), closes [#878](https://github.com/ReactiveX/RxJS/issues/878)
2351
- - **single:** remove thisArg ([43af805](https://github.com/ReactiveX/RxJS/commit/43af805))
2352
-
2353
- ### BREAKING CHANGES
2354
-
2355
- - exhaust: switchFirst is now exhaust
2356
- - exhaust: switchFirstMap is now exhaustMap
2357
- - forEach: Observable.prototype.forEach argument order changed to accommodate thisArg. Optional PromiseCtor argument moved to third arg from second
2358
-
2359
- <a name="5.0.0-alpha.13"></a>
2360
-
2361
- # [5.0.0-alpha.13](https://github.com/ReactiveX/RxJS/compare/5.0.0-alpha.12...v5.0.0-alpha.13) (2015-12-08)
2362
-
2363
- ### Bug Fixes
2364
-
2365
- - **Observable:** fix circular dependency issue. ([b7672f4](https://github.com/ReactiveX/RxJS/commit/b7672f4))
2366
- - **bufferToggle:** fix unsubscriptions of closing Observable ([439b641](https://github.com/ReactiveX/RxJS/commit/439b641))
2367
- - **expand:** accept scheduler parameter ([79e9084](https://github.com/ReactiveX/RxJS/commit/79e9084)), closes [#841](https://github.com/ReactiveX/RxJS/issues/841)
2368
- - **publish:** make script generate correct package names ([10563d3](https://github.com/ReactiveX/RxJS/commit/10563d3))
2369
- - **repeat:** preserve Subscriber chain in repeat() ([d9a7328](https://github.com/ReactiveX/RxJS/commit/d9a7328))
2370
- - **retry:** preserve Subscriber chain in retry() ([b429dac](https://github.com/ReactiveX/RxJS/commit/b429dac))
2371
- - **retryWhen:** preserve Subscriber chain in retryWhen() ([c9cb958](https://github.com/ReactiveX/RxJS/commit/c9cb958))
2372
-
2373
- ### Features
2374
-
2375
- - **AsapScheduler:** rename NextTickScheduler to AsapScheduler ([3255fb3](https://github.com/ReactiveX/RxJS/commit/3255fb3)), closes [#838](https://github.com/ReactiveX/RxJS/issues/838)
2376
- - **BehaviorSubject:** add getValue method to access value ([33b387b](https://github.com/ReactiveX/RxJS/commit/33b387b)), closes [#758](https://github.com/ReactiveX/RxJS/issues/758)
2377
- - **BehaviorSubject:** now throws when getValue is called after unsubscription ([1ddf116](https://github.com/ReactiveX/RxJS/commit/1ddf116))
2378
- - **ObjectUnsubscribedError:** add ObjectUnsubscribed error class ([39836af](https://github.com/ReactiveX/RxJS/commit/39836af))
2379
- - **Observable:** subscribe accepts objects with rxSubscriber symbol ([b7672f4](https://github.com/ReactiveX/RxJS/commit/b7672f4))
2380
- - **QueueScheduler:** rename ImmediateScheduler to QueueScheduler ([66eb537](https://github.com/ReactiveX/RxJS/commit/66eb537))
2381
- - **Rx.Symbol.rxSubscriber:** add rxSubscriber symbol ([d4f1670](https://github.com/ReactiveX/RxJS/commit/d4f1670))
2382
- - **Subject:** add rxSubscriber symbol ([d2e4257](https://github.com/ReactiveX/RxJS/commit/d2e4257))
2383
- - **Subscriber:** add rxSubscriber symbol ([7bda360](https://github.com/ReactiveX/RxJS/commit/7bda360))
2384
- - **switchFirstMap:** rename switchMapFirst to switchFirstMap ([eddd4dc](https://github.com/ReactiveX/RxJS/commit/eddd4dc))
2385
-
2386
- ### BREAKING CHANGES
2387
-
2388
- - AsapScheduler: `Rx.Scheduler.nextTick` (Rx 4's "default" scheduler) is now `Rx.Scheduler.asap`
2389
- - QueueScheduler: `Rx.Scheduler.immediate` (Rx 4's "currentThread" scheduler) is now `Rx.Scheduler.queue`
2390
- related #838
2391
- - switchFirstMap: `switchMapFirst` is now `switchFirstMap`
2392
-
2393
- <a name="5.0.0-alpha.12"></a>
2394
-
2395
- # [5.0.0-alpha.12](https://github.com/ReactiveX/RxJS/compare/5.0.0-alpha.10...v5.0.0-alpha.12) (2015-12-04)
2396
-
2397
- ### Bug Fixes
2398
-
2399
- - **AsyncSubject:** emit value when it's subscribed after complete ([ed0eaf6](https://github.com/ReactiveX/RxJS/commit/ed0eaf6))
2400
- - **bindCallback:** only call function once even while scheduled ([8637d47](https://github.com/ReactiveX/RxJS/commit/8637d47)), closes [#881](https://github.com/ReactiveX/RxJS/issues/881)
2401
- - **bufferToggle:** fix disposal of subscriptions when errors occur ([a20325c](https://github.com/ReactiveX/RxJS/commit/a20325c))
2402
- - **catch:** fix catch to dispose old subscriptions ([280f7ed](https://github.com/ReactiveX/RxJS/commit/280f7ed)), closes [#763](https://github.com/ReactiveX/RxJS/issues/763)
2403
- - **catch:** fix catch() to preserve Subscriber chain ([e1447ac](https://github.com/ReactiveX/RxJS/commit/e1447ac))
2404
- - **concat:** accept scheduler parameter ([8859702](https://github.com/ReactiveX/RxJS/commit/8859702))
2405
- - **ConnectableObservable:** fix ConnectableObservable connectability and refCounting ([aef9578](https://github.com/ReactiveX/RxJS/commit/aef9578)), closes [#678](https://github.com/ReactiveX/RxJS/issues/678)
2406
- - **debounce:** Fix debounce to unsubscribe duration Observables ([dea7847](https://github.com/ReactiveX/RxJS/commit/dea7847))
2407
- - **expand:** fix expand's concurrency behavior ([01f86e5](https://github.com/ReactiveX/RxJS/commit/01f86e5))
2408
- - **expand:** terminate recursive call when destination completes ([3b8cf94](https://github.com/ReactiveX/RxJS/commit/3b8cf94))
2409
- - **Observable:** Subjects no longer wrapped in Subscriber ([5cb0f2b](https://github.com/ReactiveX/RxJS/commit/5cb0f2b)), closes [#825](https://github.com/ReactiveX/RxJS/issues/825) [#748](https://github.com/ReactiveX/RxJS/issues/748)
2410
- - **Observer:** anonymous observers now allow missing handlers ([a11c763](https://github.com/ReactiveX/RxJS/commit/a11c763)), closes [#723](https://github.com/ReactiveX/RxJS/issues/723)
2411
- - **operators:** Remove shareReplay and shareBehavior ([536a6a6](https://github.com/ReactiveX/RxJS/commit/536a6a6)), closes [#710](https://github.com/ReactiveX/RxJS/issues/710)
2412
- - **publish:** copy readme and license, remove scripts ([439a2f3](https://github.com/ReactiveX/RxJS/commit/439a2f3)), closes [#845](https://github.com/ReactiveX/RxJS/issues/845)
2413
- - **throttleTime:** fix and rename throttleTime operator ([3b0c1f3](https://github.com/ReactiveX/RxJS/commit/3b0c1f3))
2414
- - **TimerObservable:** accepts absolute date for dueTime ([e284fb8](https://github.com/ReactiveX/RxJS/commit/e284fb8)), closes [#648](https://github.com/ReactiveX/RxJS/issues/648)
2415
-
2416
- ### Features
2417
-
2418
- - **AsyncSubject:** add AsyncSubject ([34c05fe](https://github.com/ReactiveX/RxJS/commit/34c05fe))
2419
- - **bindCallback:** remove thisArg ([feea9a1](https://github.com/ReactiveX/RxJS/commit/feea9a1))
2420
- - **bindCallback:** rename fromCallback to bindCallback ([305d66d](https://github.com/ReactiveX/RxJS/commit/305d66d)), closes [#876](https://github.com/ReactiveX/RxJS/issues/876)
2421
- - **callback:** Add Observable.fromCallback ([9f751e7](https://github.com/ReactiveX/RxJS/commit/9f751e7))
2422
- - **combineLatest:** accept array of observable as parameter ([2edd92c](https://github.com/ReactiveX/RxJS/commit/2edd92c)), closes [#594](https://github.com/ReactiveX/RxJS/issues/594)
2423
- - **forkJoin:** accept array of observable as parameter ([d45f672](https://github.com/ReactiveX/RxJS/commit/d45f672))
2424
- - **mergeScan:** support concurrency parameter for mergeScan ([fe0eb37](https://github.com/ReactiveX/RxJS/commit/fe0eb37)), closes [#868](https://github.com/ReactiveX/RxJS/issues/868)
2425
- - **usage:** add auto-patching operators ([1ab3508](https://github.com/ReactiveX/RxJS/commit/1ab3508)), closes [#860](https://github.com/ReactiveX/RxJS/issues/860)
2426
- - **skipWhile:** add skipWhile operator ([a2244e0](https://github.com/ReactiveX/RxJS/commit/a2244e0))
2427
- - **switchFirst:** add switchFirst and switchMapFirst ([71e3dd1](https://github.com/ReactiveX/RxJS/commit/71e3dd1))
2428
- - **publishLast:** add publishLast operator ([9bef228](https://github.com/ReactiveX/RxJS/commit/9bef228)), closes [#883](https://github.com/ReactiveX/RxJS/issues/883)
2429
- - **takeWhile:** add takeWhile operator ([48e53ea](https://github.com/ReactiveX/RxJS/commit/48e53ea)), closes [#695](https://github.com/ReactiveX/RxJS/issues/695)
2430
- - **takeWhile:** remove thisArg ([b5219a4](https://github.com/ReactiveX/RxJS/commit/b5219a4))
2431
- - **throttle:** add throttle operator with durationSelector ([c3bf3e7](https://github.com/ReactiveX/RxJS/commit/c3bf3e7)), closes [#496](https://github.com/ReactiveX/RxJS/issues/496)
2432
-
2433
- ### Performance Improvements
2434
-
2435
- - **ReplaySubject:** fix memory leak of growing buffer ([0a73b4d](https://github.com/ReactiveX/RxJS/commit/0a73b4d)), closes [#578](https://github.com/ReactiveX/RxJS/issues/578)
2436
-
2437
- <a name="5.0.0-alpha.11"></a>
2438
-
2439
- # [5.0.0-alpha.11](https://github.com/ReactiveX/RxJS/compare/5.0.0-alpha.10...v5.0.0-alpha.11) (2015-12-01)
2440
-
2441
- ### Bug Fixes
2442
-
2443
- - **catch:** fix catch to dispose old subscriptions ([280f7ed](https://github.com/ReactiveX/RxJS/commit/280f7ed)), closes [#763](https://github.com/ReactiveX/RxJS/issues/763)
2444
- - **concat:** accept scheduler parameter ([8859702](https://github.com/ReactiveX/RxJS/commit/8859702))
2445
- - **ConnectableObservable:** fix ConnectableObservable connectability and refCounting ([aef9578](https://github.com/ReactiveX/RxJS/commit/aef9578)), closes [#678](https://github.com/ReactiveX/RxJS/issues/678)
2446
- - **debounce:** Fix debounce to unsubscribe duration Observables ([dea7847](https://github.com/ReactiveX/RxJS/commit/dea7847))
2447
- - **expand:** fix expand's concurrency behavior ([01f86e5](https://github.com/ReactiveX/RxJS/commit/01f86e5))
2448
- - **expand:** terminate recursive call when destination completes ([3b8cf94](https://github.com/ReactiveX/RxJS/commit/3b8cf94))
2449
- - **Observer:** anonymous observers now allow missing handlers ([a11c763](https://github.com/ReactiveX/RxJS/commit/a11c763)), closes [#723](https://github.com/ReactiveX/RxJS/issues/723)
2450
- - **operators:** Remove shareReplay and shareBehavior ([536a6a6](https://github.com/ReactiveX/RxJS/commit/536a6a6)), closes [#710](https://github.com/ReactiveX/RxJS/issues/710)
2451
- - **test:** make explicit unsubscription for observable ([505f5b7](https://github.com/ReactiveX/RxJS/commit/505f5b7))
2452
- - **throttleTime:** fix and rename throttleTime operator ([3b0c1f3](https://github.com/ReactiveX/RxJS/commit/3b0c1f3))
2453
- - **TimerObservable:** accepts absolute date for dueTime ([e284fb8](https://github.com/ReactiveX/RxJS/commit/e284fb8)), closes [#648](https://github.com/ReactiveX/RxJS/issues/648)
2454
-
2455
- ### Features
2456
-
2457
- - **callback:** Add Observable.fromCallback ([9f751e7](https://github.com/ReactiveX/RxJS/commit/9f751e7))
2458
- - **combineLatest:** accept array of observable as parameter ([2edd92c](https://github.com/ReactiveX/RxJS/commit/2edd92c)), closes [#594](https://github.com/ReactiveX/RxJS/issues/594)
2459
- - **forkJoin:** accept array of observable as parameter ([d45f672](https://github.com/ReactiveX/RxJS/commit/d45f672))
2460
- - **operator:** add skipWhile operator ([a2244e0](https://github.com/ReactiveX/RxJS/commit/a2244e0))
2461
- - **operator:** add switchFirst and switchMapFirst ([71e3dd1](https://github.com/ReactiveX/RxJS/commit/71e3dd1))
2462
- - **takeWhile:** add takeWhile operator ([48e53ea](https://github.com/ReactiveX/RxJS/commit/48e53ea)), closes [#695](https://github.com/ReactiveX/RxJS/issues/695)
2463
- - **throttle:** add throttle operator with durationSelector ([c3bf3e7](https://github.com/ReactiveX/RxJS/commit/c3bf3e7)), closes [#496](https://github.com/ReactiveX/RxJS/issues/496)
2464
-
2465
- ### Performance Improvements
2466
-
2467
- - **ReplaySubject:** fix memory leak of growing buffer ([0a73b4d](https://github.com/ReactiveX/RxJS/commit/0a73b4d)), closes [#578](https://github.com/ReactiveX/RxJS/issues/578)
2468
-
2469
- <a name="5.0.0-alpha.10"></a>
2470
-
2471
- # [5.0.0-alpha.10](https://github.com/ReactiveX/RxJS/compare/5.0.0-alpha.9...v5.0.0-alpha.10) (2015-11-10)
2472
-
2473
- ### Bug Fixes
2474
-
2475
- - **Immediate:** set immediate should no longer throw in Chrome ([a3de7d9](https://github.com/ReactiveX/RxJS/commit/a3de7d9)), closes [#690](https://github.com/ReactiveX/RxJS/issues/690)
2476
-
2477
- <a name="5.0.0-alpha.9"></a>
2478
-
2479
- # [5.0.0-alpha.9](https://github.com/ReactiveX/RxJS/compare/5.0.0-alpha.8...v5.0.0-alpha.9) (2015-11-10)
2480
-
2481
- ### Bug Fixes
2482
-
2483
- - **util:** incorrect Symbol.iterator for es6-shim ([15bf32c](https://github.com/ReactiveX/RxJS/commit/15bf32c))
2484
-
2485
- ### Features
2486
-
2487
- - **forkJoin:** accept promise, resultselector as parameter of forkJoin ([190f349](https://github.com/ReactiveX/RxJS/commit/190f349)), closes [#507](https://github.com/ReactiveX/RxJS/issues/507)
2488
-
2489
- <a name="5.0.0-alpha.8"></a>
2490
-
2491
- # [5.0.0-alpha.8](https://github.com/ReactiveX/RxJS/compare/5.0.0-alpha.7...v5.0.0-alpha.8) (2015-11-06)
2492
-
2493
- ### Bug Fixes
2494
-
2495
- - **concat:** handle a given scheduler correctly ([8745216](https://github.com/ReactiveX/RxJS/commit/8745216))
2496
- - **package.json:** loosen the engines/npm semver range to prevent false warnings ([df791c6](https://github.com/ReactiveX/RxJS/commit/df791c6))
2497
- - **skipUntil:** unsubscribe source when it completes ([8a4162b](https://github.com/ReactiveX/RxJS/commit/8a4162b)), closes [#577](https://github.com/ReactiveX/RxJS/issues/577)
2498
- - **take:** deal with total <= 0 and add tests ([c5cc06f](https://github.com/ReactiveX/RxJS/commit/c5cc06f))
2499
- - **windowWhen:** fix windowWhen with regard to unsubscriptions ([8174947](https://github.com/ReactiveX/RxJS/commit/8174947))
2500
-
2501
- ### Features
2502
-
2503
- - **mergeScan:** add new mergeScan operator. ([0ebb5bd](https://github.com/ReactiveX/RxJS/commit/0ebb5bd))
2504
- - **multicast:** support both Subject and subjectFactory arguments ([f779027](https://github.com/ReactiveX/RxJS/commit/f779027))
2505
-
2506
- ### BREAKING CHANGES
2507
-
2508
- - **publish:** reverted to RxJS 4 behavior
2509
- - **publishBehavior:** reverted to RxJS 4 behavior
2510
- - **publishReplay:** reverted to RxJS 4 behavior
2511
- - **shareBehavior:** removed
2512
- - **shareReplay:** removed
2513
-
2514
- <a name="5.0.0-alpha.7"></a>
2515
-
2516
- # [5.0.0-alpha.7](https://github.com/ReactiveX/RxJS/compare/5.0.0-alpha.6...v5.0.0-alpha.7) (2015-10-27)
2517
-
2518
- ### Bug Fixes
2519
-
2520
- - **NextTickAction:** fix unsubscription behavior ([3d8264c](https://github.com/ReactiveX/RxJS/commit/3d8264c)), closes [#582](https://github.com/ReactiveX/RxJS/issues/582)
2521
- - **buffer:** cleanup notifier subscription when unsubscribed ([1b30aa9](https://github.com/ReactiveX/RxJS/commit/1b30aa9))
2522
- - **delay:** accepts absolute time delay ([b109100](https://github.com/ReactiveX/RxJS/commit/b109100))
2523
- - **mergeMapTo:** mergeMapTo result should complete ([6f9859e](https://github.com/ReactiveX/RxJS/commit/6f9859e))
2524
- - **operator:** update type definitions for union types ([9d90c75](https://github.com/ReactiveX/RxJS/commit/9d90c75)), closes [#581](https://github.com/ReactiveX/RxJS/issues/581)
2525
- - **repeat:** fix inner subscription semantics for repeat ([f67a596](https://github.com/ReactiveX/RxJS/commit/f67a596)), closes [#554](https://github.com/ReactiveX/RxJS/issues/554)
2526
- - **switchMapTo:** reimplement switchMapTo to pass tests ([d4789cd](https://github.com/ReactiveX/RxJS/commit/d4789cd))
2527
- - **takeUntil:** unsubscribe notifier when it completes ([9415196](https://github.com/ReactiveX/RxJS/commit/9415196))
2528
-
2529
- ### Features
2530
-
2531
- - **operator:** add max operator ([7fda036](https://github.com/ReactiveX/RxJS/commit/7fda036))
2532
- - **operator:** add min operator ([79cb6cf](https://github.com/ReactiveX/RxJS/commit/79cb6cf))
2533
- - **shareBehavior:** add shareBehavior and its tests ([97ff1ec](https://github.com/ReactiveX/RxJS/commit/97ff1ec))
2534
-
2535
- <a name="5.0.0-alpha.6"></a>
2536
-
2537
- # [5.0.0-alpha.6](https://github.com/ReactiveX/RxJS/compare/5.0.0-alpha.5...v5.0.0-alpha.6) (2015-10-17)
2538
-
2539
- ### Bug Fixes
2540
-
2541
- - **retryWhen:** fix internal unsubscriptions ([5aff5e8](https://github.com/ReactiveX/RxJS/commit/5aff5e8))
2542
- - **scan:** scan now behaves like RxJS 4 scan ([27f9c09](https://github.com/ReactiveX/RxJS/commit/27f9c09))
2543
-
2544
- <a name="5.0.0-alpha.5"></a>
2545
-
2546
- # [5.0.0-alpha.5](https://github.com/ReactiveX/RxJS/compare/5.0.0-alpha.4...v5.0.0-alpha.5) (2015-10-16)
2547
-
2548
- ### Bug Fixes
2549
-
2550
- - **bufferToggle:** fix bugs in order to pass tests ([949fa31](https://github.com/ReactiveX/RxJS/commit/949fa31))
2551
- - **mergeAll:** fix mergeAll micro performance tests to use mapTo instead of map. ([616e86e](https://github.com/ReactiveX/RxJS/commit/616e86e))
2552
- - **package:** correct typings path ([a501b06](https://github.com/ReactiveX/RxJS/commit/a501b06))
2553
- - **repeat:** add additional resubscription behavior ([4f9f33b](https://github.com/ReactiveX/RxJS/commit/4f9f33b)), closes [#516](https://github.com/ReactiveX/RxJS/issues/516)
2554
- - **retry:** fix internal unsubscriptions for retry ([cc92f45](https://github.com/ReactiveX/RxJS/commit/cc92f45)), closes [#546](https://github.com/ReactiveX/RxJS/issues/546)
2555
- - **windowToggle:** fix window closing and unsubscription semantics ([0cb21e6](https://github.com/ReactiveX/RxJS/commit/0cb21e6))
2556
-
2557
- <a name="5.0.0-alpha.4"></a>
2558
-
2559
- # [5.0.0-alpha.4](https://github.com/ReactiveX/RxJS/compare/5.0.0-alpha.3...5.0.0-alpha.4) (2015-10-15)
2560
-
2561
- ### Bug Fixes
2562
-
2563
- - **Subject:** fix missing unsubscribe call ([9dd27d6](https://github.com/ReactiveX/RxJS/commit/9dd27d6))
2564
- - **Subscriber:** avoid implicit any ([08faaa9](https://github.com/ReactiveX/RxJS/commit/08faaa9))
2565
- - **bufferWhen:** onComplete of closings determine buffers ([5d28a38](https://github.com/ReactiveX/RxJS/commit/5d28a38))
2566
- - **fromEvent:** make selector argument optional in fromEvent static method ([71d90b4](https://github.com/ReactiveX/RxJS/commit/71d90b4))
2567
- - **skipUntil:** update skipUntil behavior with error, completion ([6f0d98f](https://github.com/ReactiveX/RxJS/commit/6f0d98f)), closes [#518](https://github.com/ReactiveX/RxJS/issues/518)
2568
- - **windowCount:** fix windowCount window opening times ([908ae56](https://github.com/ReactiveX/RxJS/commit/908ae56)), closes [#273](https://github.com/ReactiveX/RxJS/issues/273)
2569
-
2570
- ### Features
2571
-
2572
- - **operator:** add debounce operator ([a1e652f](https://github.com/ReactiveX/RxJS/commit/a1e652f)), closes [#493](https://github.com/ReactiveX/RxJS/issues/493)
2573
- - **operator:** add debounceTime operator ([dd2ba40](https://github.com/ReactiveX/RxJS/commit/dd2ba40))
2574
-
2575
- ### Performance Improvements
2576
-
2577
- - **ScalarObservable:** add fast-path for mapping scalar observables ([7b0d3dc](https://github.com/ReactiveX/RxJS/commit/7b0d3dc))
2578
- - **count:** fast-path for counting over scalars ([c35a120](https://github.com/ReactiveX/RxJS/commit/c35a120))
2579
- - **filter:** add fast-path for filtering scalar observables ([e2e8954](https://github.com/ReactiveX/RxJS/commit/e2e8954))
2580
- - **reduce:** add fast-path for reducing over scalar observables ([4c65136](https://github.com/ReactiveX/RxJS/commit/4c65136))
2581
- - **scan:** fast-path for scanning scalars ([0201b92](https://github.com/ReactiveX/RxJS/commit/0201b92))
2582
- - **skip:** fast-path for skip over scalar observable ([9b49936](https://github.com/ReactiveX/RxJS/commit/9b49936))
2583
- - **take:** add fast-path for take over scalars ([33053b1](https://github.com/ReactiveX/RxJS/commit/33053b1))
2584
-
2585
- <a name="5.0.0-alpha.3"></a>
2586
-
2587
- # [5.0.0-alpha.3](https://github.com/ReactiveX/RxJS/compare/5.0.0-alpha.2...5.0.0-alpha.3) (2015-10-13)
2588
-
2589
- ### Bug Fixes
2590
-
2591
- - **Observable:** fix type signature of some static operators ([e5364de](https://github.com/ReactiveX/RxJS/commit/e5364de))
2592
- - **Subject.create:** ensure operator property not required for Observable subscription ([2259de2](https://github.com/ReactiveX/RxJS/commit/2259de2)), closes [#483](https://github.com/ReactiveX/RxJS/issues/483)
2593
- - **TestScheduler:** stop sorting actual results ([51db0b8](https://github.com/ReactiveX/RxJS/commit/51db0b8)), closes [#422](https://github.com/ReactiveX/RxJS/issues/422)
2594
- - **benchpress:** update benchpress dependencies and config ([8513eaa](https://github.com/ReactiveX/RxJS/commit/8513eaa)), closes [#348](https://github.com/ReactiveX/RxJS/issues/348)
2595
- - **buffer:** change behavior of buffer to more closely match RxJS 4 ([b66592d](https://github.com/ReactiveX/RxJS/commit/b66592d))
2596
- - **combineLatest:** fix type signature ([a3e6deb](https://github.com/ReactiveX/RxJS/commit/a3e6deb))
2597
- - **defer:** fix type signature ([11327b9](https://github.com/ReactiveX/RxJS/commit/11327b9))
2598
- - **empty:** fix type signature ([893cb7e](https://github.com/ReactiveX/RxJS/commit/893cb7e))
2599
- - **fromPromise:** fix type signature ([17415fa](https://github.com/ReactiveX/RxJS/commit/17415fa))
2600
- - **groupBy:** durationSelector cannot keep source alive ([57e4207](https://github.com/ReactiveX/RxJS/commit/57e4207))
2601
- - **groupBy:** fix bugs related to group resets ([23a7574](https://github.com/ReactiveX/RxJS/commit/23a7574))
2602
- - **groupBy:** fix bugs with groupBy ([86992c6](https://github.com/ReactiveX/RxJS/commit/86992c6))
2603
- - **interval:** fix signature type ([9c238c0](https://github.com/ReactiveX/RxJS/commit/9c238c0))
2604
- - **operator:** startWith operator accepts scheduler, multiple values ([d1d339a](https://github.com/ReactiveX/RxJS/commit/d1d339a))
2605
- - **operators:** reorder signature of resultSelectors ([fc1724d](https://github.com/ReactiveX/RxJS/commit/fc1724d))
2606
- - **range:** fix type signature ([9237d0b](https://github.com/ReactiveX/RxJS/commit/9237d0b))
2607
- - **timeout:** fix absolute timeout behavior ([8ec06cf](https://github.com/ReactiveX/RxJS/commit/8ec06cf))
2608
- - **timeout:** update behavior of timeout, timeoutWith ([16bd691](https://github.com/ReactiveX/RxJS/commit/16bd691))
2609
- - **timer:** fix type signature ([fffb96c](https://github.com/ReactiveX/RxJS/commit/fffb96c))
2610
- - **window:** handle closingNotifier errors/completes ([42beff1](https://github.com/ReactiveX/RxJS/commit/42beff1))
2611
-
2612
- ### Features
2613
-
2614
- - **TestScheduler:** support unsubscription marbles ([ffb0bb9](https://github.com/ReactiveX/RxJS/commit/ffb0bb9))
2615
- - **count:** add predicate support in count() ([42d1add](https://github.com/ReactiveX/RxJS/commit/42d1add)), closes [#425](https://github.com/ReactiveX/RxJS/issues/425)
2616
- - **dematerialize:** add dematerialize operator ([0a8b074](https://github.com/ReactiveX/RxJS/commit/0a8b074)), closes [#475](https://github.com/ReactiveX/RxJS/issues/475)
2617
- - **do:** do will now handle an observer as an argument ([c1a4994](https://github.com/ReactiveX/RxJS/commit/c1a4994)), closes [#476](https://github.com/ReactiveX/RxJS/issues/476)
2618
- - **first:** add resultSelector ([3c20fcc](https://github.com/ReactiveX/RxJS/commit/3c20fcc)), closes [#417](https://github.com/ReactiveX/RxJS/issues/417)
2619
- - **last:** add resultSelector argument ([5a4896c](https://github.com/ReactiveX/RxJS/commit/5a4896c)), closes [#418](https://github.com/ReactiveX/RxJS/issues/418)
2620
- - **operator:** add every operator ([d11f32e](https://github.com/ReactiveX/RxJS/commit/d11f32e))
2621
- - **operator:** add timeInterval operator ([6cc0615](https://github.com/ReactiveX/RxJS/commit/6cc0615))
2622
- - **share:** add the share operator ([c36f2be](https://github.com/ReactiveX/RxJS/commit/c36f2be)), closes [#439](https://github.com/ReactiveX/RxJS/issues/439)
2623
- - **shareReplay:** add the shareReplay() operator ([65c84ea](https://github.com/ReactiveX/RxJS/commit/65c84ea))
2624
-
2625
- ### Performance Improvements
2626
-
2627
- - **ReplaySubject:** remove unnecessary computation ([488ac2e](https://github.com/ReactiveX/RxJS/commit/488ac2e))
2628
-
2629
- ### BREAKING CHANGES
2630
-
2631
- - **operators with resultSelectors** (mergeMap, concatMap, switchMap, etc):
2632
- The function signature of resultSelectors used to be (innerValue,
2633
- outerValue, innerIndex, outerIndex) but this commits changes it to
2634
- be (outerValue, innerValue, outerIndex, innerIndex), to match
2635
- signatures in RxJS 4.
2636
-
2637
- <a name="5.0.0-alpha.2"></a>
2638
-
2639
- # [5.0.0-alpha.2](https://github.com/ReactiveX/RxJS/compare/5.0.0-alpha.1...5.0.0-alpha.2) (2015-09-30)
2640
-
2641
- ### Bug Fixes
2642
-
2643
- - **concat:** let observable concat instead of merge ([c17e832](https://github.com/ReactiveX/RxJS/commit/c17e832))
2644
-
2645
- ### Features
2646
-
2647
- - **operator:** add find, findIndex operator ([7c6cc9d](https://github.com/ReactiveX/RxJS/commit/7c6cc9d))
2648
- - **operator:** add first operator ([274c233](https://github.com/ReactiveX/RxJS/commit/274c233))
2649
- - **operator:** add ignoreElements operator ([fe1a952](https://github.com/ReactiveX/RxJS/commit/fe1a952))
2650
- - **zip:** zip now supports never-ending iterables ([a5684ba](https://github.com/ReactiveX/RxJS/commit/a5684ba)), closes [#397](https://github.com/ReactiveX/RxJS/issues/397)
2651
-
2652
- <a name="5.0.0-alpha.1"></a>
2653
-
2654
- # [5.0.0-alpha.1](https://github.com/ReactiveX/RxJS/compare/0.0.0-prealpha.3...5.0.0-alpha.1) (2015-09-23)
2655
-
2656
- ### Bug Fixes
2657
-
2658
- - **Promises:** escape promise error trap ([c69088a](https://github.com/ReactiveX/RxJS/commit/c69088a))
2659
- - **TestScheduler:** ensure TestScheduler subscribes to expectations before hot subjects ([b9b2ba5](https://github.com/ReactiveX/RxJS/commit/b9b2ba5))
2660
- - **TestScheduler:** properly schedule actions added dynamically ([069ede4](https://github.com/ReactiveX/RxJS/commit/069ede4))
2661
- - **buffer:** do not emit empty buffer when completes ([252fccb](https://github.com/ReactiveX/RxJS/commit/252fccb))
2662
- - **bufferTime:** inner intervals will now clean up properly ([4ef41b0](https://github.com/ReactiveX/RxJS/commit/4ef41b0))
2663
- - **expand:** Fix expand to stay open until the source Observable completes. ([20ef785](https://github.com/ReactiveX/RxJS/commit/20ef785))
2664
- - **expand:** fix expand operator to match Rx3 ([67f9623](https://github.com/ReactiveX/RxJS/commit/67f9623))
2665
- - **last:** emit value matches with predicate instead of result of predicate ([0f635ee](https://github.com/ReactiveX/RxJS/commit/0f635ee))
2666
- - **merge:** fix issues with async in merge ([7a15304](https://github.com/ReactiveX/RxJS/commit/7a15304))
2667
- - **mergeAll:** merge all will properly handle async observables ([43b63cc](https://github.com/ReactiveX/RxJS/commit/43b63cc))
2668
- - **package:** specify supported npm version ([f72e622](https://github.com/ReactiveX/RxJS/commit/f72e622))
2669
- - **switchAll:** switch all will properly handle async observables ([c2e2d29](https://github.com/ReactiveX/RxJS/commit/c2e2d29))
2670
- - **switchAll/switchLatest:** inner subscriptions should now properly unsub ([38a45f8](https://github.com/ReactiveX/RxJS/commit/38a45f8)), closes [#302](https://github.com/ReactiveX/RxJS/issues/302)
2671
-
2672
- ### Features
2673
-
2674
- - **combineLatest:** supports promises, iterables, lowercase-o observables and Observables ([ce76e4e](https://github.com/ReactiveX/RxJS/commit/ce76e4e))
2675
- - **config:** add global configuration of Promise capability ([e7eb5d7](https://github.com/ReactiveX/RxJS/commit/e7eb5d7)), closes [#115](https://github.com/ReactiveX/RxJS/issues/115)
2676
- - **expand:** now handles promises, iterables and lowercase-o observables ([c5239e9](https://github.com/ReactiveX/RxJS/commit/c5239e9))
2677
- - **mergeAll:** now supports promises, iterables and lowercase-o observables ([4c16aa6](https://github.com/ReactiveX/RxJS/commit/4c16aa6))
2678
- - **operator:** add elementAt operator ([cd562c4](https://github.com/ReactiveX/RxJS/commit/cd562c4))
2679
- - **operator:** add isEmpty operator ([80f72c5](https://github.com/ReactiveX/RxJS/commit/80f72c5))
2680
- - **operator:** add last operator ([d841b11](https://github.com/ReactiveX/RxJS/commit/d841b11)), closes [#304](https://github.com/ReactiveX/RxJS/issues/304) [#306](https://github.com/ReactiveX/RxJS/issues/306)
2681
- - **operator:** add single operator ([49484a2](https://github.com/ReactiveX/RxJS/commit/49484a2))
2682
- - **switch:** add promise, iterable and array support ([24fdd34](https://github.com/ReactiveX/RxJS/commit/24fdd34))
2683
- - **withLatestFrom:** default array output, handle other types ([cb393dc](https://github.com/ReactiveX/RxJS/commit/cb393dc))
2684
- - **zip:** supports promises, iterables and lowercase-o observables ([d332a0e](https://github.com/ReactiveX/RxJS/commit/d332a0e))
2685
-
2686
- <a name="0.0.0-prealpha.3"></a>
2687
-
2688
- # [0.0.0-prealpha.3](https://github.com/ReactiveX/RxJS/compare/0.0.0-prealpha.2...0.0.0-prealpha.3) (2015-09-11)
2689
-
2690
- ### Bug Fixes
2691
-
2692
- - **root:** use self as the root object when available ([0428a85](https://github.com/ReactiveX/RxJS/commit/0428a85))
2693
-
2694
- <a name="0.0.0-prealpha.2"></a>
2695
-
2696
- # [0.0.0-prealpha.2](https://github.com/ReactiveX/RxJS/compare/0.0.0-prealpha.1...0.0.0-prealpha.2) (2015-09-11)
2697
-
2698
- ### Bug Fixes
2699
-
2700
- - **bufferCount:** set default value for skip argument, do not emit empty buffer at the end ([2c1a9dc](https://github.com/ReactiveX/RxJS/commit/2c1a9dc))
2701
- - **windowCount:** set default value for skip argument, do not emit empty buffer at the end ([a513dbb](https://github.com/ReactiveX/RxJS/commit/a513dbb))
2702
-
2703
- ### Features
2704
-
2705
- - **Observable:** add static create method ([e0d27ba](https://github.com/ReactiveX/RxJS/commit/e0d27ba)), closes [#255](https://github.com/ReactiveX/RxJS/issues/255)
2706
- - **TestScheduler:** add TestScheduler ([b23daf1](https://github.com/ReactiveX/RxJS/commit/b23daf1)), closes [#270](https://github.com/ReactiveX/RxJS/issues/270)
2707
- - **VirtualTimeScheduler:** add VirtualTimeScheduler ([96f9386](https://github.com/ReactiveX/RxJS/commit/96f9386)), closes [#269](https://github.com/ReactiveX/RxJS/issues/269)
2708
- - **operator:** add sample and sampleTime ([9e62789](https://github.com/ReactiveX/RxJS/commit/9e62789)), closes [#178](https://github.com/ReactiveX/RxJS/issues/178)
2709
-
2710
- <a name="0.0.0-prealpha.1"></a>
2711
-
2712
- # [0.0.0-prealpha.1](https://github.com/ReactiveX/RxJS/compare/0441dea...0.0.0-prealpha.1) (2015-09-02)
2713
-
2714
- ### Bug Fixes
2715
-
2716
- - **combineLatest:** check for limits higher than total observable count ([81e5dfb](https://github.com/ReactiveX/RxJS/commit/81e5dfb))
2717
- - **rx:** add hack to export global until better global build exists ([1a543b0](https://github.com/ReactiveX/RxJS/commit/1a543b0))
2718
- - **subscription-ref:** add setter for isDisposed ([6fe5427](https://github.com/ReactiveX/RxJS/commit/6fe5427))
2719
- - **take:** complete on limit reached ([801a711](https://github.com/ReactiveX/RxJS/commit/801a711))
2720
-
2721
- ### Features
2722
-
2723
- - **benchpress:** add benchpress config and flatmap spec ([0441dea](https://github.com/ReactiveX/RxJS/commit/0441dea))
2724
- - **catch:** add catch operator, related to #141, closes #130 ([94b4c01](https://github.com/ReactiveX/RxJS/commit/94b4c01)), closes [#130](https://github.com/ReactiveX/RxJS/issues/130)
2725
- - **from:** let from handle any "observablesque" ([526d4c3](https://github.com/ReactiveX/RxJS/commit/526d4c3)), closes [#156](https://github.com/ReactiveX/RxJS/issues/156) [#236](https://github.com/ReactiveX/RxJS/issues/236)
2726
- - **index:** add index module which requires commonjs build ([379d2d1](https://github.com/ReactiveX/RxJS/commit/379d2d1)), closes [#117](https://github.com/ReactiveX/RxJS/issues/117)
2727
- - **observable:** add Observable.all (forkJoin) ([44a4ee1](https://github.com/ReactiveX/RxJS/commit/44a4ee1))
2728
- - **operator:** Add count operator. ([30dd894](https://github.com/ReactiveX/RxJS/commit/30dd894))
2729
- - **operator:** Add distinctUntilChanged and distinctUntilKeyChanged ([f9ba4da](https://github.com/ReactiveX/RxJS/commit/f9ba4da))
2730
- - **operator:** Add do operator. ([7d9b52b](https://github.com/ReactiveX/RxJS/commit/7d9b52b))
2731
- - **operator:** Add expand operator. ([47b178b](https://github.com/ReactiveX/RxJS/commit/47b178b))
2732
- - **operator:** Add minimal delay operator. ([7851885](https://github.com/ReactiveX/RxJS/commit/7851885))
2733
- - **operator:** add buffer operators: buffer, bufferWhen, bufferTime, bufferCount, and bufferTog ([9f8347f](https://github.com/ReactiveX/RxJS/commit/9f8347f)), closes [#207](https://github.com/ReactiveX/RxJS/issues/207)
2734
- - **operator:** add debounce ([f03adaf](https://github.com/ReactiveX/RxJS/commit/f03adaf)), closes [#193](https://github.com/ReactiveX/RxJS/issues/193)
2735
- - **operator:** add defaultIfEmpty ([c80688b](https://github.com/ReactiveX/RxJS/commit/c80688b))
2736
- - **operator:** add finally ([526e4c9](https://github.com/ReactiveX/RxJS/commit/526e4c9))
2737
- - **operator:** add fromEventPattern creator function ([1095d4c](https://github.com/ReactiveX/RxJS/commit/1095d4c))
2738
- - **operator:** add groupBy ([1e13aea](https://github.com/ReactiveX/RxJS/commit/1e13aea)), closes [#165](https://github.com/ReactiveX/RxJS/issues/165)
2739
- - **operator:** add materialize. closes #132 ([6d9f6ae](https://github.com/ReactiveX/RxJS/commit/6d9f6ae)), closes [#132](https://github.com/ReactiveX/RxJS/issues/132)
2740
- - **operator:** add publishBehavior operator and spec ([249ab8d](https://github.com/ReactiveX/RxJS/commit/249ab8d))
2741
- - **operator:** add publishReplay operator and spec ([a0c47d6](https://github.com/ReactiveX/RxJS/commit/a0c47d6))
2742
- - **operator:** add retry ([4451db5](https://github.com/ReactiveX/RxJS/commit/4451db5))
2743
- - **operator:** add retryWhen operator. closes #129 ([65eb50e](https://github.com/ReactiveX/RxJS/commit/65eb50e)), closes [#129](https://github.com/ReactiveX/RxJS/issues/129)
2744
- - **operator:** add skipUntil ([ef2620e](https://github.com/ReactiveX/RxJS/commit/ef2620e)), closes [#180](https://github.com/ReactiveX/RxJS/issues/180)
2745
- - **operator:** add throttle ([1d735b9](https://github.com/ReactiveX/RxJS/commit/1d735b9)), closes [#191](https://github.com/ReactiveX/RxJS/issues/191)
2746
- - **operator:** add timeout and timeoutWith ([bb440ad](https://github.com/ReactiveX/RxJS/commit/bb440ad)), closes [#244](https://github.com/ReactiveX/RxJS/issues/244)
2747
- - **operator:** add toPromise operator. closes #159 ([361a53b](https://github.com/ReactiveX/RxJS/commit/361a53b)), closes [#159](https://github.com/ReactiveX/RxJS/issues/159)
2748
- - **operator:** add window operators: window, windowWhen, windowTime, windowCount, windowToggle ([9f5d510](https://github.com/ReactiveX/RxJS/commit/9f5d510)), closes [#195](https://github.com/ReactiveX/RxJS/issues/195)
2749
- - **operator:** add withLatestFrom ([322218a](https://github.com/ReactiveX/RxJS/commit/322218a)), closes [#209](https://github.com/ReactiveX/RxJS/issues/209)
2750
- - **operator:** implement startWith(). ([1f36d99](https://github.com/ReactiveX/RxJS/commit/1f36d99))