appiq-solution 1.0.9 → 1.2.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.
- package/.bmad-config.json +13 -0
- package/.cursor/commands/analyze.md +27 -0
- package/.cursor/commands/appiq.md +27 -0
- package/.cursor/commands/help.md +27 -0
- package/.cursor/commands/story.md +27 -0
- package/.github/FUNDING.yaml +15 -0
- package/.github/ISSUE_TEMPLATE/bug_report.md +32 -0
- package/.github/ISSUE_TEMPLATE/feature_request.md +22 -0
- package/.github/workflows/release.yaml +59 -0
- package/.releaserc.json +18 -0
- package/.vscode/settings.json +44 -0
- package/CHANGELOG.md +641 -0
- package/CONTRIBUTING.md +209 -0
- package/DEVELOPMENT_GUIDE.md +855 -0
- package/LICENSE +21 -0
- package/NPM-README.md +138 -0
- package/README.md +69 -102
- package/SMART_WORKFLOW_GUIDE.md +401 -0
- package/activate-appiq.js +81 -0
- package/appiq-solution/README.md +226 -0
- package/bmad-core/agent-teams/team-all.yaml +14 -0
- package/bmad-core/agent-teams/team-fullstack.yaml +18 -0
- package/bmad-core/agent-teams/team-ide-minimal.yaml +10 -0
- package/bmad-core/agent-teams/team-no-ui.yaml +13 -0
- package/bmad-core/agents/analyst.md +81 -0
- package/bmad-core/agents/architect.md +90 -0
- package/bmad-core/agents/bmad-master.md +108 -0
- package/bmad-core/agents/bmad-orchestrator.md +150 -0
- package/bmad-core/agents/bmad-smart-launcher.md +170 -0
- package/bmad-core/agents/dev.md +90 -0
- package/bmad-core/agents/pm.md +81 -0
- package/bmad-core/agents/po.md +76 -0
- package/bmad-core/agents/qa.md +86 -0
- package/bmad-core/agents/sm.md +62 -0
- package/bmad-core/agents/ux-expert.md +66 -0
- package/bmad-core/bmad-core/user-guide.md +0 -0
- package/bmad-core/checklists/architect-checklist.md +443 -0
- package/bmad-core/checklists/change-checklist.md +182 -0
- package/bmad-core/checklists/pm-checklist.md +375 -0
- package/bmad-core/checklists/po-master-checklist.md +441 -0
- package/bmad-core/checklists/security-validation-checklist.md +332 -0
- package/bmad-core/checklists/story-dod-checklist.md +101 -0
- package/bmad-core/checklists/story-draft-checklist.md +156 -0
- package/bmad-core/core-config.yaml +20 -0
- package/bmad-core/core-config.yaml.bak +20 -0
- package/bmad-core/data/backend-services-integration.md +686 -0
- package/bmad-core/data/bmad-kb.md +803 -0
- package/bmad-core/data/brainstorming-techniques.md +36 -0
- package/bmad-core/data/elicitation-methods.md +134 -0
- package/bmad-core/data/shadcn-ui-integration.md +388 -0
- package/bmad-core/data/technical-preferences.md +149 -0
- package/bmad-core/enhanced-ide-development-workflow.md +43 -0
- package/bmad-core/tasks/advanced-elicitation.md +117 -0
- package/bmad-core/tasks/brownfield-create-epic.md +160 -0
- package/bmad-core/tasks/brownfield-create-story.md +147 -0
- package/bmad-core/tasks/correct-course.md +70 -0
- package/bmad-core/tasks/create-brownfield-story.md +304 -0
- package/bmad-core/tasks/create-deep-research-prompt.md +289 -0
- package/bmad-core/tasks/create-next-story.md +112 -0
- package/bmad-core/tasks/document-project.md +341 -0
- package/bmad-core/tasks/facilitate-brainstorming-session.md +136 -0
- package/bmad-core/tasks/generate-ai-frontend-prompt.md +51 -0
- package/bmad-core/tasks/index-docs.md +179 -0
- package/bmad-core/tasks/intelligent-epic-creation.md +234 -0
- package/bmad-core/tasks/kb-mode-interaction.md +75 -0
- package/bmad-core/tasks/review-story.md +145 -0
- package/bmad-core/tasks/shard-doc.md +187 -0
- package/bmad-core/tasks/smart-project-analysis.md +289 -0
- package/bmad-core/tasks/validate-next-story.md +134 -0
- package/bmad-core/templates/architecture-tmpl.yaml +650 -0
- package/bmad-core/templates/brainstorming-output-tmpl.yaml +156 -0
- package/bmad-core/templates/brownfield-architecture-tmpl.yaml +476 -0
- package/bmad-core/templates/brownfield-prd-tmpl.yaml +280 -0
- package/bmad-core/templates/competitor-analysis-tmpl.yaml +293 -0
- package/bmad-core/templates/front-end-architecture-tmpl.yaml +206 -0
- package/bmad-core/templates/front-end-spec-tmpl.yaml +349 -0
- package/bmad-core/templates/fullstack-architecture-tmpl.yaml +812 -0
- package/bmad-core/templates/market-research-tmpl.yaml +252 -0
- package/bmad-core/templates/prd-tmpl.yaml +202 -0
- package/bmad-core/templates/project-brief-tmpl.yaml +221 -0
- package/bmad-core/templates/story-tmpl.yaml +137 -0
- package/bmad-core/user-guide.md +251 -0
- package/bmad-core/workflows/brownfield-fullstack.yaml +297 -0
- package/bmad-core/workflows/brownfield-service.yaml +187 -0
- package/bmad-core/workflows/brownfield-ui.yaml +197 -0
- package/bmad-core/workflows/greenfield-fullstack.yaml +240 -0
- package/bmad-core/workflows/greenfield-service.yaml +206 -0
- package/bmad-core/workflows/greenfield-ui.yaml +235 -0
- package/bmad-core/working-in-the-brownfield.md +364 -0
- package/commands/README.md +28 -0
- package/commands/analyze.md +27 -0
- package/commands/appiq.md +27 -0
- package/commands/help.md +27 -0
- package/commands/story.md +27 -0
- package/common/tasks/create-doc.md +101 -0
- package/common/tasks/execute-checklist.md +93 -0
- package/common/utils/bmad-doc-template.md +325 -0
- package/common/utils/workflow-management.md +69 -0
- package/dist/agents/analyst.txt +2882 -0
- package/dist/agents/architect.txt +3543 -0
- package/dist/agents/bmad-master.txt +8756 -0
- package/dist/agents/bmad-orchestrator.txt +1490 -0
- package/dist/agents/dev.txt +428 -0
- package/dist/agents/pm.txt +2229 -0
- package/dist/agents/po.txt +1364 -0
- package/dist/agents/qa.txt +386 -0
- package/dist/agents/sm.txt +668 -0
- package/dist/agents/ux-expert.txt +701 -0
- package/dist/expansion-packs/bmad-2d-phaser-game-dev/agents/game-designer.txt +2408 -0
- package/dist/expansion-packs/bmad-2d-phaser-game-dev/agents/game-developer.txt +1631 -0
- package/dist/expansion-packs/bmad-2d-phaser-game-dev/agents/game-sm.txt +822 -0
- package/dist/expansion-packs/bmad-2d-phaser-game-dev/teams/phaser-2d-nodejs-game-team.txt +10989 -0
- package/dist/expansion-packs/bmad-2d-unity-game-dev/agents/game-architect.txt +4047 -0
- package/dist/expansion-packs/bmad-2d-unity-game-dev/agents/game-designer.txt +3744 -0
- package/dist/expansion-packs/bmad-2d-unity-game-dev/agents/game-developer.txt +465 -0
- package/dist/expansion-packs/bmad-2d-unity-game-dev/agents/game-sm.txt +990 -0
- package/dist/expansion-packs/bmad-2d-unity-game-dev/teams/unity-2d-game-team.txt +15467 -0
- package/dist/expansion-packs/bmad-infrastructure-devops/agents/infra-devops-platform.txt +2077 -0
- package/dist/teams/team-all.txt +11062 -0
- package/dist/teams/team-fullstack.txt +10392 -0
- package/dist/teams/team-ide-minimal.txt +3507 -0
- package/dist/teams/team-no-ui.txt +8951 -0
- package/docs/GUIDING-PRINCIPLES.md +91 -0
- package/docs/core-architecture.md +219 -0
- package/docs/expansion-packs.md +280 -0
- package/docs/how-to-contribute-with-pull-requests.md +158 -0
- package/docs/versioning-and-releases.md +77 -0
- package/docs/versions.md +48 -0
- package/expansion-packs/README.md +3 -0
- package/expansion-packs/bmad-2d-phaser-game-dev/agent-teams/phaser-2d-nodejs-game-team.yaml +13 -0
- package/expansion-packs/bmad-2d-phaser-game-dev/agents/game-designer.md +71 -0
- package/expansion-packs/bmad-2d-phaser-game-dev/agents/game-developer.md +78 -0
- package/expansion-packs/bmad-2d-phaser-game-dev/agents/game-sm.md +64 -0
- package/expansion-packs/bmad-2d-phaser-game-dev/checklists/game-design-checklist.md +201 -0
- package/expansion-packs/bmad-2d-phaser-game-dev/checklists/game-story-dod-checklist.md +160 -0
- package/expansion-packs/bmad-2d-phaser-game-dev/config.yaml +8 -0
- package/expansion-packs/bmad-2d-phaser-game-dev/data/bmad-kb.md +254 -0
- package/expansion-packs/bmad-2d-phaser-game-dev/data/development-guidelines.md +651 -0
- package/expansion-packs/bmad-2d-phaser-game-dev/tasks/advanced-elicitation.md +111 -0
- package/expansion-packs/bmad-2d-phaser-game-dev/tasks/create-game-story.md +216 -0
- package/expansion-packs/bmad-2d-phaser-game-dev/tasks/game-design-brainstorming.md +308 -0
- package/expansion-packs/bmad-2d-phaser-game-dev/templates/game-architecture-tmpl.yaml +613 -0
- package/expansion-packs/bmad-2d-phaser-game-dev/templates/game-brief-tmpl.yaml +356 -0
- package/expansion-packs/bmad-2d-phaser-game-dev/templates/game-design-doc-tmpl.yaml +343 -0
- package/expansion-packs/bmad-2d-phaser-game-dev/templates/game-story-tmpl.yaml +253 -0
- package/expansion-packs/bmad-2d-phaser-game-dev/templates/level-design-doc-tmpl.yaml +484 -0
- package/expansion-packs/bmad-2d-phaser-game-dev/workflows/game-dev-greenfield.yaml +183 -0
- package/expansion-packs/bmad-2d-phaser-game-dev/workflows/game-prototype.yaml +175 -0
- package/expansion-packs/bmad-2d-unity-game-dev/agent-teams/unity-2d-game-team.yaml +14 -0
- package/expansion-packs/bmad-2d-unity-game-dev/agents/game-architect.md +80 -0
- package/expansion-packs/bmad-2d-unity-game-dev/agents/game-designer.md +77 -0
- package/expansion-packs/bmad-2d-unity-game-dev/agents/game-developer.md +78 -0
- package/expansion-packs/bmad-2d-unity-game-dev/agents/game-sm.md +65 -0
- package/expansion-packs/bmad-2d-unity-game-dev/checklists/game-architect-checklist.md +396 -0
- package/expansion-packs/bmad-2d-unity-game-dev/checklists/game-change-checklist.md +203 -0
- package/expansion-packs/bmad-2d-unity-game-dev/checklists/game-design-checklist.md +201 -0
- package/expansion-packs/bmad-2d-unity-game-dev/checklists/game-story-dod-checklist.md +132 -0
- package/expansion-packs/bmad-2d-unity-game-dev/config.yaml +6 -0
- package/expansion-packs/bmad-2d-unity-game-dev/data/bmad-kb.md +776 -0
- package/expansion-packs/bmad-2d-unity-game-dev/data/development-guidelines.md +590 -0
- package/expansion-packs/bmad-2d-unity-game-dev/tasks/advanced-elicitation.md +111 -0
- package/expansion-packs/bmad-2d-unity-game-dev/tasks/correct-course-game.md +151 -0
- package/expansion-packs/bmad-2d-unity-game-dev/tasks/create-game-story.md +184 -0
- package/expansion-packs/bmad-2d-unity-game-dev/tasks/game-design-brainstorming.md +308 -0
- package/expansion-packs/bmad-2d-unity-game-dev/tasks/validate-game-story.md +200 -0
- package/expansion-packs/bmad-2d-unity-game-dev/templates/game-architecture-tmpl.yaml +1030 -0
- package/expansion-packs/bmad-2d-unity-game-dev/templates/game-brief-tmpl.yaml +356 -0
- package/expansion-packs/bmad-2d-unity-game-dev/templates/game-design-doc-tmpl.yaml +705 -0
- package/expansion-packs/bmad-2d-unity-game-dev/templates/game-story-tmpl.yaml +256 -0
- package/expansion-packs/bmad-2d-unity-game-dev/templates/level-design-doc-tmpl.yaml +484 -0
- package/expansion-packs/bmad-2d-unity-game-dev/workflows/game-dev-greenfield.yaml +183 -0
- package/expansion-packs/bmad-2d-unity-game-dev/workflows/game-prototype.yaml +175 -0
- package/expansion-packs/bmad-flutter-mobile-dev/agent-teams/flutter-mobile-team.yaml +23 -0
- package/expansion-packs/bmad-flutter-mobile-dev/agents/flutter-cubit-agent.md +133 -0
- package/expansion-packs/bmad-flutter-mobile-dev/agents/flutter-data-agent.md +160 -0
- package/expansion-packs/bmad-flutter-mobile-dev/agents/flutter-domain-agent.md +153 -0
- package/expansion-packs/bmad-flutter-mobile-dev/agents/flutter-ui-agent.md +122 -0
- package/expansion-packs/bmad-flutter-mobile-dev/agents/shared-components-agent.md +161 -0
- package/expansion-packs/bmad-flutter-mobile-dev/checklists/flutter-story-dod-checklist.md +194 -0
- package/expansion-packs/bmad-flutter-mobile-dev/config.yaml +41 -0
- package/expansion-packs/bmad-flutter-mobile-dev/data/flutter-development-guidelines.md +551 -0
- package/expansion-packs/bmad-flutter-mobile-dev/templates/flutter-mobile-architecture-tmpl.yaml +530 -0
- package/expansion-packs/bmad-flutter-mobile-dev/workflows/flutter-ui-first-development.yaml +220 -0
- package/expansion-packs/bmad-infrastructure-devops/README.md +147 -0
- package/expansion-packs/bmad-infrastructure-devops/agents/infra-devops-platform.md +71 -0
- package/expansion-packs/bmad-infrastructure-devops/checklists/infrastructure-checklist.md +484 -0
- package/expansion-packs/bmad-infrastructure-devops/config.yaml +9 -0
- package/expansion-packs/bmad-infrastructure-devops/data/bmad-kb.md +308 -0
- package/expansion-packs/bmad-infrastructure-devops/tasks/review-infrastructure.md +160 -0
- package/expansion-packs/bmad-infrastructure-devops/tasks/validate-infrastructure.md +154 -0
- package/expansion-packs/bmad-infrastructure-devops/templates/infrastructure-architecture-tmpl.yaml +424 -0
- package/expansion-packs/bmad-infrastructure-devops/templates/infrastructure-platform-from-arch-tmpl.yaml +629 -0
- package/install-appiq.sh +41 -0
- package/package.json +1 -1
- package/tasks/todo.md +275 -0
- package/tools/installer/node_modules/.bin/js-yaml +0 -126
- package/tools/installer/node_modules/.package-lock.json +0 -886
- package/tools/installer/node_modules/@inquirer/checkbox/LICENSE +0 -22
- package/tools/installer/node_modules/@inquirer/checkbox/README.md +0 -182
- package/tools/installer/node_modules/@inquirer/checkbox/dist/commonjs/index.d.ts +0 -52
- package/tools/installer/node_modules/@inquirer/checkbox/dist/commonjs/index.js +0 -207
- package/tools/installer/node_modules/@inquirer/checkbox/dist/commonjs/package.json +0 -3
- package/tools/installer/node_modules/@inquirer/checkbox/dist/esm/index.d.ts +0 -52
- package/tools/installer/node_modules/@inquirer/checkbox/dist/esm/index.js +0 -200
- package/tools/installer/node_modules/@inquirer/checkbox/dist/esm/package.json +0 -3
- package/tools/installer/node_modules/@inquirer/checkbox/package.json +0 -112
- package/tools/installer/node_modules/@inquirer/confirm/LICENSE +0 -22
- package/tools/installer/node_modules/@inquirer/confirm/README.md +0 -102
- package/tools/installer/node_modules/@inquirer/confirm/dist/commonjs/index.d.ts +0 -10
- package/tools/installer/node_modules/@inquirer/confirm/dist/commonjs/index.js +0 -48
- package/tools/installer/node_modules/@inquirer/confirm/dist/commonjs/package.json +0 -3
- package/tools/installer/node_modules/@inquirer/confirm/dist/esm/index.d.ts +0 -10
- package/tools/installer/node_modules/@inquirer/confirm/dist/esm/index.js +0 -46
- package/tools/installer/node_modules/@inquirer/confirm/dist/esm/package.json +0 -3
- package/tools/installer/node_modules/@inquirer/confirm/package.json +0 -109
- package/tools/installer/node_modules/@inquirer/core/LICENSE +0 -22
- package/tools/installer/node_modules/@inquirer/core/README.md +0 -393
- package/tools/installer/node_modules/@inquirer/core/dist/commonjs/index.d.ts +0 -13
- package/tools/installer/node_modules/@inquirer/core/dist/commonjs/index.js +0 -39
- package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/Separator.d.ts +0 -10
- package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/Separator.js +0 -28
- package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/create-prompt.d.ts +0 -4
- package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/create-prompt.js +0 -156
- package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/errors.d.ts +0 -20
- package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/errors.js +0 -29
- package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/hook-engine.d.ts +0 -23
- package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/hook-engine.js +0 -118
- package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/key.d.ts +0 -10
- package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/key.js +0 -27
- package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/make-theme.d.ts +0 -3
- package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/make-theme.js +0 -33
- package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/pagination/use-pagination.d.ts +0 -16
- package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/pagination/use-pagination.js +0 -124
- package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/promise-polyfill.d.ts +0 -7
- package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/promise-polyfill.js +0 -18
- package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/screen-manager.d.ts +0 -14
- package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/screen-manager.js +0 -90
- package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/theme.d.ts +0 -155
- package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/theme.js +0 -28
- package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/use-effect.d.ts +0 -2
- package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/use-effect.js +0 -14
- package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/use-keypress.d.ts +0 -3
- package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/use-keypress.js +0 -23
- package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/use-memo.d.ts +0 -1
- package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/use-memo.js +0 -17
- package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/use-prefix.d.ts +0 -5
- package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/use-prefix.js +0 -38
- package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/use-ref.d.ts +0 -6
- package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/use-ref.js +0 -7
- package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/use-state.d.ts +0 -4
- package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/use-state.js +0 -23
- package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/utils.d.ts +0 -13
- package/tools/installer/node_modules/@inquirer/core/dist/commonjs/lib/utils.js +0 -32
- package/tools/installer/node_modules/@inquirer/core/dist/commonjs/package.json +0 -3
- package/tools/installer/node_modules/@inquirer/core/dist/esm/index.d.ts +0 -13
- package/tools/installer/node_modules/@inquirer/core/dist/esm/index.js +0 -12
- package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/Separator.d.ts +0 -10
- package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/Separator.js +0 -21
- package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/create-prompt.d.ts +0 -4
- package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/create-prompt.js +0 -117
- package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/errors.d.ts +0 -20
- package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/errors.js +0 -21
- package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/hook-engine.d.ts +0 -23
- package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/hook-engine.js +0 -110
- package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/key.d.ts +0 -10
- package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/key.js +0 -18
- package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/make-theme.d.ts +0 -3
- package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/make-theme.js +0 -30
- package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/pagination/use-pagination.d.ts +0 -16
- package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/pagination/use-pagination.js +0 -121
- package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/promise-polyfill.d.ts +0 -7
- package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/promise-polyfill.js +0 -14
- package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/screen-manager.d.ts +0 -14
- package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/screen-manager.js +0 -84
- package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/theme.d.ts +0 -155
- package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/theme.js +0 -22
- package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/use-effect.d.ts +0 -2
- package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/use-effect.js +0 -11
- package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/use-keypress.d.ts +0 -3
- package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/use-keypress.js +0 -20
- package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/use-memo.d.ts +0 -1
- package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/use-memo.js +0 -14
- package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/use-prefix.d.ts +0 -5
- package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/use-prefix.js +0 -35
- package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/use-ref.d.ts +0 -6
- package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/use-ref.js +0 -4
- package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/use-state.d.ts +0 -4
- package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/use-state.js +0 -20
- package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/utils.d.ts +0 -13
- package/tools/installer/node_modules/@inquirer/core/dist/esm/lib/utils.js +0 -25
- package/tools/installer/node_modules/@inquirer/core/dist/esm/package.json +0 -3
- package/tools/installer/node_modules/@inquirer/core/package.json +0 -118
- package/tools/installer/node_modules/@inquirer/editor/LICENSE +0 -22
- package/tools/installer/node_modules/@inquirer/editor/README.md +0 -111
- package/tools/installer/node_modules/@inquirer/editor/dist/commonjs/index.d.ts +0 -17
- package/tools/installer/node_modules/@inquirer/editor/dist/commonjs/index.js +0 -75
- package/tools/installer/node_modules/@inquirer/editor/dist/commonjs/package.json +0 -3
- package/tools/installer/node_modules/@inquirer/editor/dist/esm/index.d.ts +0 -17
- package/tools/installer/node_modules/@inquirer/editor/dist/esm/index.js +0 -73
- package/tools/installer/node_modules/@inquirer/editor/dist/esm/package.json +0 -3
- package/tools/installer/node_modules/@inquirer/editor/package.json +0 -110
- package/tools/installer/node_modules/@inquirer/expand/LICENSE +0 -22
- package/tools/installer/node_modules/@inquirer/expand/README.md +0 -151
- package/tools/installer/node_modules/@inquirer/expand/dist/commonjs/index.d.ts +0 -25
- package/tools/installer/node_modules/@inquirer/expand/dist/commonjs/index.js +0 -115
- package/tools/installer/node_modules/@inquirer/expand/dist/commonjs/package.json +0 -3
- package/tools/installer/node_modules/@inquirer/expand/dist/esm/index.d.ts +0 -25
- package/tools/installer/node_modules/@inquirer/expand/dist/esm/index.js +0 -108
- package/tools/installer/node_modules/@inquirer/expand/dist/esm/package.json +0 -3
- package/tools/installer/node_modules/@inquirer/expand/package.json +0 -110
- package/tools/installer/node_modules/@inquirer/figures/LICENSE +0 -22
- package/tools/installer/node_modules/@inquirer/figures/dist/commonjs/index.d.ts +0 -465
- package/tools/installer/node_modules/@inquirer/figures/dist/commonjs/index.js +0 -316
- package/tools/installer/node_modules/@inquirer/figures/dist/commonjs/package.json +0 -3
- package/tools/installer/node_modules/@inquirer/figures/dist/esm/index.d.ts +0 -465
- package/tools/installer/node_modules/@inquirer/figures/dist/esm/index.js +0 -309
- package/tools/installer/node_modules/@inquirer/figures/dist/esm/package.json +0 -3
- package/tools/installer/node_modules/@inquirer/figures/package.json +0 -94
- package/tools/installer/node_modules/@inquirer/input/LICENSE +0 -22
- package/tools/installer/node_modules/@inquirer/input/README.md +0 -109
- package/tools/installer/node_modules/@inquirer/input/dist/commonjs/index.d.ts +0 -18
- package/tools/installer/node_modules/@inquirer/input/dist/commonjs/index.js +0 -86
- package/tools/installer/node_modules/@inquirer/input/dist/commonjs/package.json +0 -3
- package/tools/installer/node_modules/@inquirer/input/dist/esm/index.d.ts +0 -18
- package/tools/installer/node_modules/@inquirer/input/dist/esm/index.js +0 -84
- package/tools/installer/node_modules/@inquirer/input/dist/esm/package.json +0 -3
- package/tools/installer/node_modules/@inquirer/input/package.json +0 -109
- package/tools/installer/node_modules/@inquirer/number/LICENSE +0 -22
- package/tools/installer/node_modules/@inquirer/number/README.md +0 -105
- package/tools/installer/node_modules/@inquirer/number/dist/commonjs/index.d.ts +0 -15
- package/tools/installer/node_modules/@inquirer/number/dist/commonjs/index.js +0 -96
- package/tools/installer/node_modules/@inquirer/number/dist/commonjs/package.json +0 -3
- package/tools/installer/node_modules/@inquirer/number/dist/esm/index.d.ts +0 -15
- package/tools/installer/node_modules/@inquirer/number/dist/esm/index.js +0 -94
- package/tools/installer/node_modules/@inquirer/number/dist/esm/package.json +0 -3
- package/tools/installer/node_modules/@inquirer/number/package.json +0 -109
- package/tools/installer/node_modules/@inquirer/password/LICENSE +0 -22
- package/tools/installer/node_modules/@inquirer/password/README.md +0 -103
- package/tools/installer/node_modules/@inquirer/password/dist/commonjs/index.d.ts +0 -10
- package/tools/installer/node_modules/@inquirer/password/dist/commonjs/index.js +0 -60
- package/tools/installer/node_modules/@inquirer/password/dist/commonjs/package.json +0 -3
- package/tools/installer/node_modules/@inquirer/password/dist/esm/index.d.ts +0 -10
- package/tools/installer/node_modules/@inquirer/password/dist/esm/index.js +0 -55
- package/tools/installer/node_modules/@inquirer/password/dist/esm/package.json +0 -3
- package/tools/installer/node_modules/@inquirer/password/package.json +0 -110
- package/tools/installer/node_modules/@inquirer/prompts/LICENSE +0 -22
- package/tools/installer/node_modules/@inquirer/prompts/README.md +0 -490
- package/tools/installer/node_modules/@inquirer/prompts/dist/commonjs/index.d.ts +0 -10
- package/tools/installer/node_modules/@inquirer/prompts/dist/commonjs/index.js +0 -27
- package/tools/installer/node_modules/@inquirer/prompts/dist/commonjs/package.json +0 -3
- package/tools/installer/node_modules/@inquirer/prompts/dist/esm/index.d.ts +0 -10
- package/tools/installer/node_modules/@inquirer/prompts/dist/esm/index.js +0 -10
- package/tools/installer/node_modules/@inquirer/prompts/dist/esm/package.json +0 -3
- package/tools/installer/node_modules/@inquirer/prompts/package.json +0 -116
- package/tools/installer/node_modules/@inquirer/rawlist/LICENSE +0 -22
- package/tools/installer/node_modules/@inquirer/rawlist/README.md +0 -134
- package/tools/installer/node_modules/@inquirer/rawlist/dist/commonjs/index.d.ts +0 -18
- package/tools/installer/node_modules/@inquirer/rawlist/dist/commonjs/index.js +0 -132
- package/tools/installer/node_modules/@inquirer/rawlist/dist/commonjs/package.json +0 -3
- package/tools/installer/node_modules/@inquirer/rawlist/dist/esm/index.d.ts +0 -18
- package/tools/installer/node_modules/@inquirer/rawlist/dist/esm/index.js +0 -125
- package/tools/installer/node_modules/@inquirer/rawlist/dist/esm/package.json +0 -3
- package/tools/installer/node_modules/@inquirer/rawlist/package.json +0 -110
- package/tools/installer/node_modules/@inquirer/search/LICENSE +0 -22
- package/tools/installer/node_modules/@inquirer/search/README.md +0 -208
- package/tools/installer/node_modules/@inquirer/search/dist/commonjs/index.d.ts +0 -34
- package/tools/installer/node_modules/@inquirer/search/dist/commonjs/index.js +0 -193
- package/tools/installer/node_modules/@inquirer/search/dist/commonjs/package.json +0 -3
- package/tools/installer/node_modules/@inquirer/search/dist/esm/index.d.ts +0 -34
- package/tools/installer/node_modules/@inquirer/search/dist/esm/index.js +0 -186
- package/tools/installer/node_modules/@inquirer/search/dist/esm/package.json +0 -3
- package/tools/installer/node_modules/@inquirer/search/package.json +0 -111
- package/tools/installer/node_modules/@inquirer/select/LICENSE +0 -22
- package/tools/installer/node_modules/@inquirer/select/README.md +0 -178
- package/tools/installer/node_modules/@inquirer/select/dist/commonjs/index.d.ts +0 -37
- package/tools/installer/node_modules/@inquirer/select/dist/commonjs/index.js +0 -174
- package/tools/installer/node_modules/@inquirer/select/dist/commonjs/package.json +0 -3
- package/tools/installer/node_modules/@inquirer/select/dist/esm/index.d.ts +0 -37
- package/tools/installer/node_modules/@inquirer/select/dist/esm/index.js +0 -167
- package/tools/installer/node_modules/@inquirer/select/dist/esm/package.json +0 -3
- package/tools/installer/node_modules/@inquirer/select/package.json +0 -112
- package/tools/installer/node_modules/@inquirer/type/LICENSE +0 -22
- package/tools/installer/node_modules/@inquirer/type/dist/commonjs/index.d.ts +0 -2
- package/tools/installer/node_modules/@inquirer/type/dist/commonjs/index.js +0 -18
- package/tools/installer/node_modules/@inquirer/type/dist/commonjs/inquirer.d.ts +0 -38
- package/tools/installer/node_modules/@inquirer/type/dist/commonjs/inquirer.js +0 -2
- package/tools/installer/node_modules/@inquirer/type/dist/commonjs/package.json +0 -3
- package/tools/installer/node_modules/@inquirer/type/dist/commonjs/utils.d.ts +0 -29
- package/tools/installer/node_modules/@inquirer/type/dist/commonjs/utils.js +0 -3
- package/tools/installer/node_modules/@inquirer/type/dist/esm/index.d.ts +0 -2
- package/tools/installer/node_modules/@inquirer/type/dist/esm/index.js +0 -2
- package/tools/installer/node_modules/@inquirer/type/dist/esm/inquirer.d.ts +0 -38
- package/tools/installer/node_modules/@inquirer/type/dist/esm/inquirer.js +0 -1
- package/tools/installer/node_modules/@inquirer/type/dist/esm/package.json +0 -3
- package/tools/installer/node_modules/@inquirer/type/dist/esm/utils.d.ts +0 -29
- package/tools/installer/node_modules/@inquirer/type/dist/esm/utils.js +0 -2
- package/tools/installer/node_modules/@inquirer/type/package.json +0 -102
- package/tools/installer/node_modules/ansi-escapes/index.d.ts +0 -248
- package/tools/installer/node_modules/ansi-escapes/index.js +0 -157
- package/tools/installer/node_modules/ansi-escapes/license +0 -9
- package/tools/installer/node_modules/ansi-escapes/package.json +0 -57
- package/tools/installer/node_modules/ansi-escapes/readme.md +0 -245
- package/tools/installer/node_modules/ansi-regex/index.d.ts +0 -33
- package/tools/installer/node_modules/ansi-regex/index.js +0 -10
- package/tools/installer/node_modules/ansi-regex/license +0 -9
- package/tools/installer/node_modules/ansi-regex/package.json +0 -61
- package/tools/installer/node_modules/ansi-regex/readme.md +0 -60
- package/tools/installer/node_modules/ansi-styles/index.d.ts +0 -345
- package/tools/installer/node_modules/ansi-styles/index.js +0 -163
- package/tools/installer/node_modules/ansi-styles/license +0 -9
- package/tools/installer/node_modules/ansi-styles/package.json +0 -56
- package/tools/installer/node_modules/ansi-styles/readme.md +0 -152
- package/tools/installer/node_modules/argparse/CHANGELOG.md +0 -216
- package/tools/installer/node_modules/argparse/LICENSE +0 -254
- package/tools/installer/node_modules/argparse/README.md +0 -84
- package/tools/installer/node_modules/argparse/argparse.js +0 -3707
- package/tools/installer/node_modules/argparse/lib/sub.js +0 -67
- package/tools/installer/node_modules/argparse/lib/textwrap.js +0 -440
- package/tools/installer/node_modules/argparse/package.json +0 -31
- package/tools/installer/node_modules/chalk/license +0 -9
- package/tools/installer/node_modules/chalk/package.json +0 -83
- package/tools/installer/node_modules/chalk/readme.md +0 -297
- package/tools/installer/node_modules/chalk/source/index.d.ts +0 -325
- package/tools/installer/node_modules/chalk/source/index.js +0 -225
- package/tools/installer/node_modules/chalk/source/utilities.js +0 -33
- package/tools/installer/node_modules/chalk/source/vendor/ansi-styles/index.d.ts +0 -236
- package/tools/installer/node_modules/chalk/source/vendor/ansi-styles/index.js +0 -223
- package/tools/installer/node_modules/chalk/source/vendor/supports-color/browser.d.ts +0 -1
- package/tools/installer/node_modules/chalk/source/vendor/supports-color/browser.js +0 -34
- package/tools/installer/node_modules/chalk/source/vendor/supports-color/index.d.ts +0 -55
- package/tools/installer/node_modules/chalk/source/vendor/supports-color/index.js +0 -182
- package/tools/installer/node_modules/chardet/.travis.yml +0 -5
- package/tools/installer/node_modules/chardet/LICENSE +0 -19
- package/tools/installer/node_modules/chardet/README.md +0 -81
- package/tools/installer/node_modules/chardet/encoding/iso2022.js +0 -141
- package/tools/installer/node_modules/chardet/encoding/mbcs.js +0 -502
- package/tools/installer/node_modules/chardet/encoding/sbcs.js +0 -907
- package/tools/installer/node_modules/chardet/encoding/unicode.js +0 -112
- package/tools/installer/node_modules/chardet/encoding/utf8.js +0 -84
- package/tools/installer/node_modules/chardet/index.js +0 -151
- package/tools/installer/node_modules/chardet/match.js +0 -6
- package/tools/installer/node_modules/chardet/package.json +0 -47
- package/tools/installer/node_modules/cli-cursor/index.d.ts +0 -47
- package/tools/installer/node_modules/cli-cursor/index.js +0 -39
- package/tools/installer/node_modules/cli-cursor/license +0 -9
- package/tools/installer/node_modules/cli-cursor/package.json +0 -56
- package/tools/installer/node_modules/cli-cursor/readme.md +0 -39
- package/tools/installer/node_modules/cli-spinners/index.d.ts +0 -128
- package/tools/installer/node_modules/cli-spinners/index.js +0 -15
- package/tools/installer/node_modules/cli-spinners/license +0 -9
- package/tools/installer/node_modules/cli-spinners/package.json +0 -50
- package/tools/installer/node_modules/cli-spinners/readme.md +0 -54
- package/tools/installer/node_modules/cli-spinners/spinners.json +0 -1622
- package/tools/installer/node_modules/cli-width/LICENSE +0 -13
- package/tools/installer/node_modules/cli-width/README.md +0 -71
- package/tools/installer/node_modules/cli-width/index.d.ts +0 -13
- package/tools/installer/node_modules/cli-width/index.js +0 -49
- package/tools/installer/node_modules/cli-width/package.json +0 -40
- package/tools/installer/node_modules/color-convert/CHANGELOG.md +0 -54
- package/tools/installer/node_modules/color-convert/LICENSE +0 -21
- package/tools/installer/node_modules/color-convert/README.md +0 -68
- package/tools/installer/node_modules/color-convert/conversions.js +0 -839
- package/tools/installer/node_modules/color-convert/index.js +0 -81
- package/tools/installer/node_modules/color-convert/package.json +0 -48
- package/tools/installer/node_modules/color-convert/route.js +0 -97
- package/tools/installer/node_modules/color-name/LICENSE +0 -8
- package/tools/installer/node_modules/color-name/README.md +0 -11
- package/tools/installer/node_modules/color-name/index.js +0 -152
- package/tools/installer/node_modules/color-name/package.json +0 -28
- package/tools/installer/node_modules/commander/LICENSE +0 -22
- package/tools/installer/node_modules/commander/Readme.md +0 -1159
- package/tools/installer/node_modules/commander/esm.mjs +0 -16
- package/tools/installer/node_modules/commander/index.js +0 -24
- package/tools/installer/node_modules/commander/lib/argument.js +0 -149
- package/tools/installer/node_modules/commander/lib/command.js +0 -2778
- package/tools/installer/node_modules/commander/lib/error.js +0 -39
- package/tools/installer/node_modules/commander/lib/help.js +0 -747
- package/tools/installer/node_modules/commander/lib/option.js +0 -379
- package/tools/installer/node_modules/commander/lib/suggestSimilar.js +0 -101
- package/tools/installer/node_modules/commander/package-support.json +0 -16
- package/tools/installer/node_modules/commander/package.json +0 -82
- package/tools/installer/node_modules/commander/typings/esm.d.mts +0 -3
- package/tools/installer/node_modules/commander/typings/index.d.ts +0 -1113
- package/tools/installer/node_modules/emoji-regex/LICENSE-MIT.txt +0 -20
- package/tools/installer/node_modules/emoji-regex/README.md +0 -107
- package/tools/installer/node_modules/emoji-regex/index.d.ts +0 -3
- package/tools/installer/node_modules/emoji-regex/index.js +0 -4
- package/tools/installer/node_modules/emoji-regex/index.mjs +0 -4
- package/tools/installer/node_modules/emoji-regex/package.json +0 -45
- package/tools/installer/node_modules/external-editor/LICENSE +0 -21
- package/tools/installer/node_modules/external-editor/README.md +0 -171
- package/tools/installer/node_modules/external-editor/example_async.js +0 -40
- package/tools/installer/node_modules/external-editor/example_sync.js +0 -38
- package/tools/installer/node_modules/external-editor/main/errors/CreateFileError.d.ts +0 -10
- package/tools/installer/node_modules/external-editor/main/errors/CreateFileError.js +0 -39
- package/tools/installer/node_modules/external-editor/main/errors/LaunchEditorError.d.ts +0 -10
- package/tools/installer/node_modules/external-editor/main/errors/LaunchEditorError.js +0 -39
- package/tools/installer/node_modules/external-editor/main/errors/ReadFileError.d.ts +0 -10
- package/tools/installer/node_modules/external-editor/main/errors/ReadFileError.js +0 -39
- package/tools/installer/node_modules/external-editor/main/errors/RemoveFileError.d.ts +0 -10
- package/tools/installer/node_modules/external-editor/main/errors/RemoveFileError.js +0 -39
- package/tools/installer/node_modules/external-editor/main/index.d.ts +0 -46
- package/tools/installer/node_modules/external-editor/main/index.js +0 -193
- package/tools/installer/node_modules/external-editor/package.json +0 -61
- package/tools/installer/node_modules/fs-extra/LICENSE +0 -15
- package/tools/installer/node_modules/fs-extra/README.md +0 -292
- package/tools/installer/node_modules/fs-extra/lib/copy/copy-sync.js +0 -171
- package/tools/installer/node_modules/fs-extra/lib/copy/copy.js +0 -182
- package/tools/installer/node_modules/fs-extra/lib/copy/index.js +0 -7
- package/tools/installer/node_modules/fs-extra/lib/empty/index.js +0 -39
- package/tools/installer/node_modules/fs-extra/lib/ensure/file.js +0 -66
- package/tools/installer/node_modules/fs-extra/lib/ensure/index.js +0 -23
- package/tools/installer/node_modules/fs-extra/lib/ensure/link.js +0 -64
- package/tools/installer/node_modules/fs-extra/lib/ensure/symlink-paths.js +0 -101
- package/tools/installer/node_modules/fs-extra/lib/ensure/symlink-type.js +0 -34
- package/tools/installer/node_modules/fs-extra/lib/ensure/symlink.js +0 -67
- package/tools/installer/node_modules/fs-extra/lib/esm.mjs +0 -68
- package/tools/installer/node_modules/fs-extra/lib/fs/index.js +0 -146
- package/tools/installer/node_modules/fs-extra/lib/index.js +0 -16
- package/tools/installer/node_modules/fs-extra/lib/json/index.js +0 -16
- package/tools/installer/node_modules/fs-extra/lib/json/jsonfile.js +0 -11
- package/tools/installer/node_modules/fs-extra/lib/json/output-json-sync.js +0 -12
- package/tools/installer/node_modules/fs-extra/lib/json/output-json.js +0 -12
- package/tools/installer/node_modules/fs-extra/lib/mkdirs/index.js +0 -14
- package/tools/installer/node_modules/fs-extra/lib/mkdirs/make-dir.js +0 -27
- package/tools/installer/node_modules/fs-extra/lib/mkdirs/utils.js +0 -21
- package/tools/installer/node_modules/fs-extra/lib/move/index.js +0 -7
- package/tools/installer/node_modules/fs-extra/lib/move/move-sync.js +0 -55
- package/tools/installer/node_modules/fs-extra/lib/move/move.js +0 -59
- package/tools/installer/node_modules/fs-extra/lib/output-file/index.js +0 -31
- package/tools/installer/node_modules/fs-extra/lib/path-exists/index.js +0 -12
- package/tools/installer/node_modules/fs-extra/lib/remove/index.js +0 -17
- package/tools/installer/node_modules/fs-extra/lib/util/stat.js +0 -158
- package/tools/installer/node_modules/fs-extra/lib/util/utimes.js +0 -36
- package/tools/installer/node_modules/fs-extra/package.json +0 -71
- package/tools/installer/node_modules/get-east-asian-width/index.d.ts +0 -60
- package/tools/installer/node_modules/get-east-asian-width/index.js +0 -31
- package/tools/installer/node_modules/get-east-asian-width/license +0 -9
- package/tools/installer/node_modules/get-east-asian-width/lookup.js +0 -403
- package/tools/installer/node_modules/get-east-asian-width/package.json +0 -70
- package/tools/installer/node_modules/get-east-asian-width/readme.md +0 -65
- package/tools/installer/node_modules/graceful-fs/LICENSE +0 -15
- package/tools/installer/node_modules/graceful-fs/README.md +0 -143
- package/tools/installer/node_modules/graceful-fs/clone.js +0 -23
- package/tools/installer/node_modules/graceful-fs/graceful-fs.js +0 -448
- package/tools/installer/node_modules/graceful-fs/legacy-streams.js +0 -118
- package/tools/installer/node_modules/graceful-fs/package.json +0 -53
- package/tools/installer/node_modules/graceful-fs/polyfills.js +0 -355
- package/tools/installer/node_modules/iconv-lite/Changelog.md +0 -162
- package/tools/installer/node_modules/iconv-lite/LICENSE +0 -21
- package/tools/installer/node_modules/iconv-lite/README.md +0 -156
- package/tools/installer/node_modules/iconv-lite/encodings/dbcs-codec.js +0 -555
- package/tools/installer/node_modules/iconv-lite/encodings/dbcs-data.js +0 -176
- package/tools/installer/node_modules/iconv-lite/encodings/index.js +0 -22
- package/tools/installer/node_modules/iconv-lite/encodings/internal.js +0 -188
- package/tools/installer/node_modules/iconv-lite/encodings/sbcs-codec.js +0 -72
- package/tools/installer/node_modules/iconv-lite/encodings/sbcs-data-generated.js +0 -451
- package/tools/installer/node_modules/iconv-lite/encodings/sbcs-data.js +0 -174
- package/tools/installer/node_modules/iconv-lite/encodings/tables/big5-added.json +0 -122
- package/tools/installer/node_modules/iconv-lite/encodings/tables/cp936.json +0 -264
- package/tools/installer/node_modules/iconv-lite/encodings/tables/cp949.json +0 -273
- package/tools/installer/node_modules/iconv-lite/encodings/tables/cp950.json +0 -177
- package/tools/installer/node_modules/iconv-lite/encodings/tables/eucjp.json +0 -182
- package/tools/installer/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +0 -1
- package/tools/installer/node_modules/iconv-lite/encodings/tables/gbk-added.json +0 -55
- package/tools/installer/node_modules/iconv-lite/encodings/tables/shiftjis.json +0 -125
- package/tools/installer/node_modules/iconv-lite/encodings/utf16.js +0 -177
- package/tools/installer/node_modules/iconv-lite/encodings/utf7.js +0 -290
- package/tools/installer/node_modules/iconv-lite/lib/bom-handling.js +0 -52
- package/tools/installer/node_modules/iconv-lite/lib/extend-node.js +0 -217
- package/tools/installer/node_modules/iconv-lite/lib/index.d.ts +0 -24
- package/tools/installer/node_modules/iconv-lite/lib/index.js +0 -153
- package/tools/installer/node_modules/iconv-lite/lib/streams.js +0 -121
- package/tools/installer/node_modules/iconv-lite/package.json +0 -46
- package/tools/installer/node_modules/inquirer/LICENSE +0 -22
- package/tools/installer/node_modules/inquirer/README.md +0 -565
- package/tools/installer/node_modules/inquirer/dist/commonjs/index.d.ts +0 -63
- package/tools/installer/node_modules/inquirer/dist/commonjs/index.js +0 -73
- package/tools/installer/node_modules/inquirer/dist/commonjs/package.json +0 -3
- package/tools/installer/node_modules/inquirer/dist/commonjs/types.d.ts +0 -61
- package/tools/installer/node_modules/inquirer/dist/commonjs/types.js +0 -2
- package/tools/installer/node_modules/inquirer/dist/commonjs/ui/prompt.d.ts +0 -60
- package/tools/installer/node_modules/inquirer/dist/commonjs/ui/prompt.js +0 -270
- package/tools/installer/node_modules/inquirer/dist/esm/index.d.ts +0 -63
- package/tools/installer/node_modules/inquirer/dist/esm/index.js +0 -67
- package/tools/installer/node_modules/inquirer/dist/esm/package.json +0 -3
- package/tools/installer/node_modules/inquirer/dist/esm/types.d.ts +0 -61
- package/tools/installer/node_modules/inquirer/dist/esm/types.js +0 -1
- package/tools/installer/node_modules/inquirer/dist/esm/ui/prompt.d.ts +0 -60
- package/tools/installer/node_modules/inquirer/dist/esm/ui/prompt.js +0 -263
- package/tools/installer/node_modules/inquirer/package.json +0 -111
- package/tools/installer/node_modules/is-fullwidth-code-point/index.d.ts +0 -17
- package/tools/installer/node_modules/is-fullwidth-code-point/index.js +0 -50
- package/tools/installer/node_modules/is-fullwidth-code-point/license +0 -9
- package/tools/installer/node_modules/is-fullwidth-code-point/package.json +0 -42
- package/tools/installer/node_modules/is-fullwidth-code-point/readme.md +0 -39
- package/tools/installer/node_modules/is-interactive/index.d.ts +0 -25
- package/tools/installer/node_modules/is-interactive/index.js +0 -7
- package/tools/installer/node_modules/is-interactive/license +0 -9
- package/tools/installer/node_modules/is-interactive/package.json +0 -41
- package/tools/installer/node_modules/is-interactive/readme.md +0 -52
- package/tools/installer/node_modules/is-unicode-supported/index.d.ts +0 -12
- package/tools/installer/node_modules/is-unicode-supported/index.js +0 -21
- package/tools/installer/node_modules/is-unicode-supported/license +0 -9
- package/tools/installer/node_modules/is-unicode-supported/package.json +0 -47
- package/tools/installer/node_modules/is-unicode-supported/readme.md +0 -35
- package/tools/installer/node_modules/js-yaml/CHANGELOG.md +0 -616
- package/tools/installer/node_modules/js-yaml/LICENSE +0 -21
- package/tools/installer/node_modules/js-yaml/README.md +0 -246
- package/tools/installer/node_modules/js-yaml/bin/js-yaml.js +0 -126
- package/tools/installer/node_modules/js-yaml/dist/js-yaml.js +0 -3874
- package/tools/installer/node_modules/js-yaml/dist/js-yaml.min.js +0 -2
- package/tools/installer/node_modules/js-yaml/dist/js-yaml.mjs +0 -3851
- package/tools/installer/node_modules/js-yaml/index.js +0 -47
- package/tools/installer/node_modules/js-yaml/lib/common.js +0 -59
- package/tools/installer/node_modules/js-yaml/lib/dumper.js +0 -965
- package/tools/installer/node_modules/js-yaml/lib/exception.js +0 -55
- package/tools/installer/node_modules/js-yaml/lib/loader.js +0 -1727
- package/tools/installer/node_modules/js-yaml/lib/schema/core.js +0 -11
- package/tools/installer/node_modules/js-yaml/lib/schema/default.js +0 -22
- package/tools/installer/node_modules/js-yaml/lib/schema/failsafe.js +0 -17
- package/tools/installer/node_modules/js-yaml/lib/schema/json.js +0 -19
- package/tools/installer/node_modules/js-yaml/lib/schema.js +0 -121
- package/tools/installer/node_modules/js-yaml/lib/snippet.js +0 -101
- package/tools/installer/node_modules/js-yaml/lib/type/binary.js +0 -125
- package/tools/installer/node_modules/js-yaml/lib/type/bool.js +0 -35
- package/tools/installer/node_modules/js-yaml/lib/type/float.js +0 -97
- package/tools/installer/node_modules/js-yaml/lib/type/int.js +0 -156
- package/tools/installer/node_modules/js-yaml/lib/type/map.js +0 -8
- package/tools/installer/node_modules/js-yaml/lib/type/merge.js +0 -12
- package/tools/installer/node_modules/js-yaml/lib/type/null.js +0 -35
- package/tools/installer/node_modules/js-yaml/lib/type/omap.js +0 -44
- package/tools/installer/node_modules/js-yaml/lib/type/pairs.js +0 -53
- package/tools/installer/node_modules/js-yaml/lib/type/seq.js +0 -8
- package/tools/installer/node_modules/js-yaml/lib/type/set.js +0 -29
- package/tools/installer/node_modules/js-yaml/lib/type/str.js +0 -8
- package/tools/installer/node_modules/js-yaml/lib/type/timestamp.js +0 -88
- package/tools/installer/node_modules/js-yaml/lib/type.js +0 -66
- package/tools/installer/node_modules/js-yaml/package.json +0 -66
- package/tools/installer/node_modules/jsonfile/CHANGELOG.md +0 -171
- package/tools/installer/node_modules/jsonfile/LICENSE +0 -15
- package/tools/installer/node_modules/jsonfile/README.md +0 -230
- package/tools/installer/node_modules/jsonfile/index.js +0 -88
- package/tools/installer/node_modules/jsonfile/package.json +0 -40
- package/tools/installer/node_modules/jsonfile/utils.js +0 -14
- package/tools/installer/node_modules/log-symbols/browser.js +0 -8
- package/tools/installer/node_modules/log-symbols/index.d.ts +0 -22
- package/tools/installer/node_modules/log-symbols/index.js +0 -20
- package/tools/installer/node_modules/log-symbols/license +0 -9
- package/tools/installer/node_modules/log-symbols/node_modules/is-unicode-supported/index.d.ts +0 -12
- package/tools/installer/node_modules/log-symbols/node_modules/is-unicode-supported/index.js +0 -17
- package/tools/installer/node_modules/log-symbols/node_modules/is-unicode-supported/license +0 -9
- package/tools/installer/node_modules/log-symbols/node_modules/is-unicode-supported/package.json +0 -43
- package/tools/installer/node_modules/log-symbols/node_modules/is-unicode-supported/readme.md +0 -35
- package/tools/installer/node_modules/log-symbols/package.json +0 -57
- package/tools/installer/node_modules/log-symbols/readme.md +0 -39
- package/tools/installer/node_modules/mimic-function/index.d.ts +0 -52
- package/tools/installer/node_modules/mimic-function/index.js +0 -72
- package/tools/installer/node_modules/mimic-function/license +0 -9
- package/tools/installer/node_modules/mimic-function/package.json +0 -49
- package/tools/installer/node_modules/mimic-function/readme.md +0 -80
- package/tools/installer/node_modules/mute-stream/LICENSE +0 -15
- package/tools/installer/node_modules/mute-stream/README.md +0 -68
- package/tools/installer/node_modules/mute-stream/lib/index.js +0 -142
- package/tools/installer/node_modules/mute-stream/package.json +0 -54
- package/tools/installer/node_modules/onetime/index.d.ts +0 -59
- package/tools/installer/node_modules/onetime/index.js +0 -41
- package/tools/installer/node_modules/onetime/license +0 -9
- package/tools/installer/node_modules/onetime/package.json +0 -49
- package/tools/installer/node_modules/onetime/readme.md +0 -88
- package/tools/installer/node_modules/ora/index.d.ts +0 -332
- package/tools/installer/node_modules/ora/index.js +0 -424
- package/tools/installer/node_modules/ora/license +0 -9
- package/tools/installer/node_modules/ora/package.json +0 -64
- package/tools/installer/node_modules/ora/readme.md +0 -329
- package/tools/installer/node_modules/os-tmpdir/index.js +0 -25
- package/tools/installer/node_modules/os-tmpdir/license +0 -21
- package/tools/installer/node_modules/os-tmpdir/package.json +0 -41
- package/tools/installer/node_modules/os-tmpdir/readme.md +0 -32
- package/tools/installer/node_modules/restore-cursor/index.d.ts +0 -15
- package/tools/installer/node_modules/restore-cursor/index.js +0 -15
- package/tools/installer/node_modules/restore-cursor/license +0 -9
- package/tools/installer/node_modules/restore-cursor/package.json +0 -57
- package/tools/installer/node_modules/restore-cursor/readme.md +0 -21
- package/tools/installer/node_modules/run-async/LICENSE +0 -21
- package/tools/installer/node_modules/run-async/README.md +0 -104
- package/tools/installer/node_modules/run-async/index.d.ts +0 -5
- package/tools/installer/node_modules/run-async/index.js +0 -131
- package/tools/installer/node_modules/run-async/package.json +0 -33
- package/tools/installer/node_modules/rxjs/CHANGELOG.md +0 -2750
- package/tools/installer/node_modules/rxjs/CODE_OF_CONDUCT.md +0 -73
- package/tools/installer/node_modules/rxjs/LICENSE.txt +0 -202
- package/tools/installer/node_modules/rxjs/README.md +0 -107
- package/tools/installer/node_modules/rxjs/ajax/package.json +0 -8
- package/tools/installer/node_modules/rxjs/dist/bundles/rxjs.umd.js +0 -6849
- package/tools/installer/node_modules/rxjs/dist/bundles/rxjs.umd.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/bundles/rxjs.umd.min.js +0 -195
- package/tools/installer/node_modules/rxjs/dist/bundles/rxjs.umd.min.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/ajax/index.js +0 -11
- package/tools/installer/node_modules/rxjs/dist/cjs/ajax/index.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/fetch/index.js +0 -6
- package/tools/installer/node_modules/rxjs/dist/cjs/fetch/index.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/index.js +0 -358
- package/tools/installer/node_modules/rxjs/dist/cjs/index.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/AnyCatcher.js +0 -3
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/AnyCatcher.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/AsyncSubject.js +0 -56
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/AsyncSubject.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/BehaviorSubject.js +0 -53
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/BehaviorSubject.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/Notification.js +0 -76
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/Notification.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/NotificationFactories.js +0 -21
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/NotificationFactories.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/Observable.js +0 -105
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/Observable.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/Operator.js +0 -3
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/Operator.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/ReplaySubject.js +0 -75
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/ReplaySubject.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/Scheduler.js +0 -19
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/Scheduler.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/Subject.js +0 -190
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/Subject.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/Subscriber.js +0 -201
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/Subscriber.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/Subscription.js +0 -178
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/Subscription.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/ajax/AjaxResponse.js +0 -32
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/ajax/AjaxResponse.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/ajax/ajax.js +0 -253
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/ajax/ajax.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/ajax/errors.js +0 -33
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/ajax/errors.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/ajax/getXHRResponse.js +0 -30
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/ajax/getXHRResponse.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/ajax/types.js +0 -3
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/ajax/types.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/config.js +0 -11
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/config.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/firstValueFrom.js +0 -28
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/firstValueFrom.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/lastValueFrom.js +0 -31
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/lastValueFrom.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/ConnectableObservable.js +0 -80
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/ConnectableObservable.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/bindCallback.js +0 -9
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/bindCallback.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/bindCallbackInternals.js +0 -103
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/bindCallbackInternals.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/bindNodeCallback.js +0 -9
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/bindNodeCallback.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/combineLatest.js +0 -75
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/combineLatest.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/concat.js +0 -15
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/concat.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/connectable.js +0 -31
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/connectable.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/defer.js +0 -12
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/defer.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/dom/WebSocketSubject.js +0 -249
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/dom/WebSocketSubject.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/dom/animationFrames.js +0 -38
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/dom/animationFrames.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/dom/fetch.js +0 -79
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/dom/fetch.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/dom/webSocket.js +0 -9
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/dom/webSocket.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/empty.js +0 -13
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/empty.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/forkJoin.js +0 -51
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/forkJoin.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/from.js +0 -10
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/from.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/fromEvent.js +0 -78
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/fromEvent.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/fromEventPattern.js +0 -24
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/fromEventPattern.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/fromSubscribable.js +0 -9
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/fromSubscribable.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/generate.js +0 -79
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/generate.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/iif.js +0 -9
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/iif.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/innerFrom.js +0 -206
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/innerFrom.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/interval.js +0 -15
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/interval.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/merge.js +0 -27
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/merge.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/never.js +0 -11
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/never.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/of.js +0 -15
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/of.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/onErrorResumeNext.js +0 -39
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/onErrorResumeNext.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/pairs.js +0 -9
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/pairs.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/partition.js +0 -11
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/partition.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/race.js +0 -37
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/race.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/range.js +0 -39
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/range.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/throwError.js +0 -12
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/throwError.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/timer.js +0 -40
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/timer.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/using.js +0 -21
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/using.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/zip.js +0 -70
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/observable/zip.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/OperatorSubscriber.js +0 -79
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/OperatorSubscriber.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/audit.js +0 -41
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/audit.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/auditTime.js +0 -12
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/auditTime.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/buffer.js +0 -26
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/buffer.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/bufferCount.js +0 -85
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/bufferCount.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/bufferTime.js +0 -91
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/bufferTime.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/bufferToggle.js +0 -59
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/bufferToggle.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/bufferWhen.js +0 -27
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/bufferWhen.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/catchError.js +0 -31
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/catchError.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/combineAll.js +0 -6
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/combineAll.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/combineLatest.js +0 -44
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/combineLatest.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/combineLatestAll.js +0 -10
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/combineLatestAll.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/combineLatestWith.js +0 -34
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/combineLatestWith.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/concat.js +0 -40
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/concat.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/concatAll.js +0 -9
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/concatAll.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/concatMap.js +0 -10
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/concatMap.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/concatMapTo.js +0 -10
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/concatMapTo.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/concatWith.js +0 -34
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/concatWith.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/connect.js +0 -21
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/connect.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/count.js +0 -9
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/count.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/debounce.js +0 -38
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/debounce.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/debounceTime.js +0 -48
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/debounceTime.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/defaultIfEmpty.js +0 -21
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/defaultIfEmpty.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/delay.js +0 -13
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/delay.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/delayWhen.js +0 -19
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/delayWhen.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/dematerialize.js +0 -13
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/dematerialize.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/distinct.js +0 -22
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/distinct.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/distinctUntilChanged.js +0 -27
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/distinctUntilChanged.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/distinctUntilKeyChanged.js +0 -9
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/distinctUntilKeyChanged.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/elementAt.js +0 -19
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/elementAt.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/endWith.js +0 -35
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/endWith.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/every.js +0 -21
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/every.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/exhaust.js +0 -6
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/exhaust.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/exhaustAll.js +0 -10
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/exhaustAll.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/exhaustMap.js +0 -33
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/exhaustMap.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/expand.js +0 -14
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/expand.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/filter.js +0 -13
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/filter.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/finalize.js +0 -16
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/finalize.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/find.js +0 -27
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/find.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/findIndex.js +0 -10
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/findIndex.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/first.js +0 -17
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/first.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/flatMap.js +0 -6
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/flatMap.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/groupBy.js +0 -67
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/groupBy.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/ignoreElements.js +0 -13
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/ignoreElements.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/isEmpty.js +0 -18
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/isEmpty.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/joinAllInternals.js +0 -13
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/joinAllInternals.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/last.js +0 -17
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/last.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/map.js +0 -15
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/map.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/mapTo.js +0 -9
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/mapTo.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/materialize.js +0 -21
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/materialize.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/max.js +0 -10
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/max.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/merge.js +0 -41
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/merge.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/mergeAll.js +0 -11
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/mergeAll.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/mergeInternals.js +0 -65
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/mergeInternals.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/mergeMap.js +0 -20
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/mergeMap.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/mergeMapTo.js +0 -17
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/mergeMapTo.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/mergeScan.js +0 -16
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/mergeScan.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/mergeWith.js +0 -34
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/mergeWith.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/min.js +0 -10
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/min.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/multicast.js +0 -17
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/multicast.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/observeOn.js +0 -14
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/observeOn.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/onErrorResumeNextWith.js +0 -37
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/onErrorResumeNextWith.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/pairwise.js +0 -19
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/pairwise.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/partition.js +0 -12
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/partition.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/pluck.js +0 -29
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/pluck.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/publish.js +0 -11
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/publish.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/publishBehavior.js +0 -13
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/publishBehavior.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/publishLast.js +0 -13
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/publishLast.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/publishReplay.js +0 -15
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/publishReplay.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/race.js +0 -35
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/race.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/raceWith.js +0 -40
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/raceWith.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/reduce.js +0 -10
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/reduce.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/refCount.js +0 -30
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/refCount.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/repeat.js +0 -64
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/repeat.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/repeatWhen.js +0 -50
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/repeatWhen.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/retry.js +0 -73
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/retry.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/retryWhen.js +0 -36
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/retryWhen.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/sample.js +0 -27
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/sample.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/sampleTime.js +0 -12
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/sampleTime.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/scan.js +0 -10
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/scan.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/scanInternals.js +0 -26
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/scanInternals.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/sequenceEqual.js +0 -44
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/sequenceEqual.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/share.js +0 -109
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/share.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/shareReplay.js +0 -24
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/shareReplay.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/single.js +0 -34
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/single.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/skip.js +0 -9
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/skip.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/skipLast.js +0 -32
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/skipLast.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/skipUntil.js +0 -20
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/skipUntil.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/skipWhile.js +0 -14
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/skipWhile.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/startWith.js +0 -18
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/startWith.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/subscribeOn.js +0 -12
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/subscribeOn.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/switchAll.js +0 -10
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/switchAll.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/switchMap.js +0 -28
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/switchMap.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/switchMapTo.js +0 -10
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/switchMapTo.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/switchScan.js +0 -16
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/switchScan.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/take.js +0 -24
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/take.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/takeLast.js +0 -48
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/takeLast.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/takeUntil.js +0 -15
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/takeUntil.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/takeWhile.js +0 -18
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/takeWhile.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/tap.js +0 -44
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/tap.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/throttle.js +0 -49
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/throttle.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/throttleTime.js +0 -13
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/throttleTime.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/throwIfEmpty.js +0 -21
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/throwIfEmpty.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/timeInterval.js +0 -28
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/timeInterval.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/timeout.js +0 -63
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/timeout.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/timeoutWith.js +0 -35
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/timeoutWith.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/timestamp.js +0 -11
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/timestamp.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/toArray.js +0 -13
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/toArray.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/window.js +0 -32
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/window.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/windowCount.js +0 -67
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/windowCount.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/windowTime.js +0 -74
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/windowTime.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/windowToggle.js +0 -80
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/windowToggle.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/windowWhen.js +0 -42
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/windowWhen.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/withLatestFrom.js +0 -63
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/withLatestFrom.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/zip.js +0 -37
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/zip.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/zipAll.js +0 -10
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/zipAll.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/zipWith.js +0 -34
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/operators/zipWith.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduled/scheduleArray.js +0 -22
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduled/scheduleArray.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduled/scheduleAsyncIterable.js +0 -27
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduled/scheduleAsyncIterable.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduled/scheduleIterable.js +0 -36
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduled/scheduleIterable.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduled/scheduleObservable.js +0 -11
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduled/scheduleObservable.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduled/schedulePromise.js +0 -11
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduled/schedulePromise.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduled/scheduleReadableStreamLike.js +0 -10
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduled/scheduleReadableStreamLike.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduled/scheduled.js +0 -41
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduled/scheduled.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/Action.js +0 -32
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/Action.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/AnimationFrameAction.js +0 -53
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/AnimationFrameAction.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/AnimationFrameScheduler.js +0 -54
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/AnimationFrameScheduler.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/AsapAction.js +0 -55
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/AsapAction.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/AsapScheduler.js +0 -48
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/AsapScheduler.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/AsyncAction.js +0 -107
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/AsyncAction.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/AsyncScheduler.js +0 -53
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/AsyncScheduler.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/QueueAction.js +0 -52
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/QueueAction.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/QueueScheduler.js +0 -28
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/QueueScheduler.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/VirtualTimeScheduler.js +0 -121
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/VirtualTimeScheduler.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/animationFrame.js +0 -8
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/animationFrame.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/animationFrameProvider.js +0 -59
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/animationFrameProvider.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/asap.js +0 -8
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/asap.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/async.js +0 -8
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/async.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/dateTimestampProvider.js +0 -10
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/dateTimestampProvider.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/immediateProvider.js +0 -42
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/immediateProvider.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/intervalProvider.js +0 -43
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/intervalProvider.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/performanceTimestampProvider.js +0 -10
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/performanceTimestampProvider.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/queue.js +0 -8
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/queue.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/timeoutProvider.js +0 -43
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/timeoutProvider.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/timerHandle.js +0 -3
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/scheduler/timerHandle.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/symbol/iterator.js +0 -12
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/symbol/iterator.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/symbol/observable.js +0 -5
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/symbol/observable.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/testing/ColdObservable.js +0 -56
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/testing/ColdObservable.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/testing/HotObservable.js +0 -62
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/testing/HotObservable.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/testing/SubscriptionLog.js +0 -13
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/testing/SubscriptionLog.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/testing/SubscriptionLoggable.js +0 -21
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/testing/SubscriptionLoggable.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/testing/TestMessage.js +0 -3
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/testing/TestMessage.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/testing/TestScheduler.js +0 -618
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/testing/TestScheduler.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/types.js +0 -3
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/types.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/ArgumentOutOfRangeError.js +0 -12
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/ArgumentOutOfRangeError.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/EmptyError.js +0 -12
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/EmptyError.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/Immediate.js +0 -33
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/Immediate.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/NotFoundError.js +0 -12
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/NotFoundError.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/ObjectUnsubscribedError.js +0 -12
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/ObjectUnsubscribedError.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/SequenceError.js +0 -12
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/SequenceError.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/UnsubscriptionError.js +0 -15
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/UnsubscriptionError.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/applyMixins.js +0 -15
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/applyMixins.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/args.js +0 -21
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/args.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/argsArgArrayOrObject.js +0 -26
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/argsArgArrayOrObject.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/argsOrArgArray.js +0 -9
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/argsOrArgArray.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/arrRemove.js +0 -11
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/arrRemove.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/createErrorClass.js +0 -15
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/createErrorClass.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/createObject.js +0 -8
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/createObject.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/errorContext.js +0 -33
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/errorContext.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/executeSchedule.js +0 -22
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/executeSchedule.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/identity.js +0 -8
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/identity.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/isArrayLike.js +0 -5
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/isArrayLike.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/isAsyncIterable.js +0 -9
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/isAsyncIterable.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/isDate.js +0 -8
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/isDate.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/isFunction.js +0 -8
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/isFunction.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/isInteropObservable.js +0 -10
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/isInteropObservable.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/isIterable.js +0 -10
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/isIterable.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/isObservable.js +0 -10
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/isObservable.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/isPromise.js +0 -9
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/isPromise.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/isReadableStreamLike.js +0 -82
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/isReadableStreamLike.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/isScheduler.js +0 -9
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/isScheduler.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/lift.js +0 -25
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/lift.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/mapOneOrManyArgs.js +0 -34
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/mapOneOrManyArgs.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/noop.js +0 -6
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/noop.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/not.js +0 -8
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/not.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/pipe.js +0 -25
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/pipe.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/reportUnhandledError.js +0 -18
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/reportUnhandledError.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/subscribeToArray.js +0 -11
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/subscribeToArray.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/throwUnobservableError.js +0 -8
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/throwUnobservableError.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/workarounds.js +0 -3
- package/tools/installer/node_modules/rxjs/dist/cjs/internal/util/workarounds.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/operators/index.js +0 -232
- package/tools/installer/node_modules/rxjs/dist/cjs/operators/index.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/testing/index.js +0 -6
- package/tools/installer/node_modules/rxjs/dist/cjs/testing/index.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/cjs/webSocket/index.js +0 -8
- package/tools/installer/node_modules/rxjs/dist/cjs/webSocket/index.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/ajax/index.js +0 -4
- package/tools/installer/node_modules/rxjs/dist/esm/ajax/index.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/fetch/index.js +0 -2
- package/tools/installer/node_modules/rxjs/dist/esm/fetch/index.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/index.js +0 -169
- package/tools/installer/node_modules/rxjs/dist/esm/index.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/AnyCatcher.js +0 -2
- package/tools/installer/node_modules/rxjs/dist/esm/internal/AnyCatcher.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/AsyncSubject.js +0 -34
- package/tools/installer/node_modules/rxjs/dist/esm/internal/AsyncSubject.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/BehaviorSubject.js +0 -27
- package/tools/installer/node_modules/rxjs/dist/esm/internal/BehaviorSubject.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/Notification.js +0 -70
- package/tools/installer/node_modules/rxjs/dist/esm/internal/Notification.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/NotificationFactories.js +0 -15
- package/tools/installer/node_modules/rxjs/dist/esm/internal/NotificationFactories.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/Observable.js +0 -93
- package/tools/installer/node_modules/rxjs/dist/esm/internal/Observable.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/Operator.js +0 -2
- package/tools/installer/node_modules/rxjs/dist/esm/internal/Operator.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/ReplaySubject.js +0 -50
- package/tools/installer/node_modules/rxjs/dist/esm/internal/ReplaySubject.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/Scheduler.js +0 -12
- package/tools/installer/node_modules/rxjs/dist/esm/internal/Scheduler.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/Subject.js +0 -134
- package/tools/installer/node_modules/rxjs/dist/esm/internal/Subject.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/Subscriber.js +0 -174
- package/tools/installer/node_modules/rxjs/dist/esm/internal/Subscriber.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/Subscription.js +0 -119
- package/tools/installer/node_modules/rxjs/dist/esm/internal/Subscription.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/ajax/AjaxResponse.js +0 -26
- package/tools/installer/node_modules/rxjs/dist/esm/internal/ajax/AjaxResponse.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/ajax/ajax.js +0 -236
- package/tools/installer/node_modules/rxjs/dist/esm/internal/ajax/ajax.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/ajax/errors.js +0 -28
- package/tools/installer/node_modules/rxjs/dist/esm/internal/ajax/errors.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/ajax/getXHRResponse.js +0 -26
- package/tools/installer/node_modules/rxjs/dist/esm/internal/ajax/getXHRResponse.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/ajax/types.js +0 -2
- package/tools/installer/node_modules/rxjs/dist/esm/internal/ajax/types.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/config.js +0 -8
- package/tools/installer/node_modules/rxjs/dist/esm/internal/config.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/firstValueFrom.js +0 -24
- package/tools/installer/node_modules/rxjs/dist/esm/internal/firstValueFrom.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/lastValueFrom.js +0 -27
- package/tools/installer/node_modules/rxjs/dist/esm/internal/lastValueFrom.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/ConnectableObservable.js +0 -57
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/ConnectableObservable.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/bindCallback.js +0 -5
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/bindCallback.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/bindCallbackInternals.js +0 -62
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/bindCallbackInternals.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/bindNodeCallback.js +0 -5
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/bindNodeCallback.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/combineLatest.js +0 -62
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/combineLatest.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/concat.js +0 -7
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/concat.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/connectable.js +0 -26
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/connectable.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/defer.js +0 -8
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/defer.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/dom/WebSocketSubject.js +0 -214
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/dom/WebSocketSubject.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/dom/animationFrames.js +0 -34
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/dom/animationFrames.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/dom/fetch.js +0 -53
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/dom/fetch.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/dom/webSocket.js +0 -5
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/dom/webSocket.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/empty.js +0 -9
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/empty.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/forkJoin.js +0 -40
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/forkJoin.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/from.js +0 -6
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/from.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/fromEvent.js +0 -52
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/fromEvent.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/fromEventPattern.js +0 -14
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/fromEventPattern.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/fromSubscribable.js +0 -5
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/fromSubscribable.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/generate.js +0 -38
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/generate.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/iif.js +0 -5
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/iif.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/innerFrom.js +0 -110
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/innerFrom.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/interval.js +0 -9
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/interval.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/merge.js +0 -19
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/merge.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/never.js +0 -7
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/never.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/of.js +0 -7
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/of.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/onErrorResumeNext.js +0 -31
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/onErrorResumeNext.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/pairs.js +0 -5
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/pairs.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/partition.js +0 -7
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/partition.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/race.js +0 -25
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/race.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/range.js +0 -35
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/range.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/throwError.js +0 -8
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/throwError.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/timer.js +0 -34
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/timer.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/using.js +0 -17
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/using.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/zip.js +0 -38
- package/tools/installer/node_modules/rxjs/dist/esm/internal/observable/zip.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/OperatorSubscriber.js +0 -56
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/OperatorSubscriber.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/audit.js +0 -37
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/audit.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/auditTime.js +0 -7
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/auditTime.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/buffer.js +0 -22
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/buffer.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/bufferCount.js +0 -37
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/bufferCount.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/bufferTime.js +0 -61
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/bufferTime.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/bufferToggle.js +0 -33
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/bufferToggle.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/bufferWhen.js +0 -23
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/bufferWhen.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/catchError.js +0 -27
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/catchError.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/combineAll.js +0 -3
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/combineAll.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/combineLatest.js +0 -15
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/combineLatest.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/combineLatestAll.js +0 -6
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/combineLatestAll.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/combineLatestWith.js +0 -5
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/combineLatestWith.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/concat.js +0 -11
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/concat.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/concatAll.js +0 -5
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/concatAll.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/concatMap.js +0 -6
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/concatMap.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/concatMapTo.js +0 -6
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/concatMapTo.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/concatWith.js +0 -5
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/concatWith.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/connect.js +0 -16
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/connect.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/count.js +0 -5
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/count.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/debounce.js +0 -34
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/debounce.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/debounceTime.js +0 -43
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/debounceTime.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/defaultIfEmpty.js +0 -17
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/defaultIfEmpty.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/delay.js +0 -8
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/delay.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/delayWhen.js +0 -13
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/delayWhen.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/dematerialize.js +0 -9
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/dematerialize.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/distinct.js +0 -18
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/distinct.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/distinctUntilChanged.js +0 -22
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/distinctUntilChanged.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/distinctUntilKeyChanged.js +0 -5
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/distinctUntilKeyChanged.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/elementAt.js +0 -13
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/elementAt.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/endWith.js +0 -6
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/endWith.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/every.js +0 -17
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/every.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/exhaust.js +0 -3
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/exhaust.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/exhaustAll.js +0 -6
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/exhaustAll.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/exhaustMap.js +0 -27
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/exhaustMap.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/expand.js +0 -7
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/expand.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/filter.js +0 -9
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/filter.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/finalize.js +0 -12
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/finalize.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/find.js +0 -22
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/find.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/findIndex.js +0 -6
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/findIndex.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/first.js +0 -11
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/first.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/flatMap.js +0 -3
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/flatMap.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/groupBy.js +0 -63
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/groupBy.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/ignoreElements.js +0 -9
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/ignoreElements.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/isEmpty.js +0 -14
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/isEmpty.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/joinAllInternals.js +0 -9
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/joinAllInternals.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/last.js +0 -11
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/last.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/map.js +0 -11
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/map.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/mapTo.js +0 -5
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/mapTo.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/materialize.js +0 -17
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/materialize.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/max.js +0 -6
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/max.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/merge.js +0 -12
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/merge.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/mergeAll.js +0 -6
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/mergeAll.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/mergeInternals.js +0 -58
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/mergeInternals.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/mergeMap.js +0 -15
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/mergeMap.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/mergeMapTo.js +0 -12
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/mergeMapTo.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/mergeScan.js +0 -11
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/mergeScan.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/mergeWith.js +0 -5
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/mergeWith.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/min.js +0 -6
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/min.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/multicast.js +0 -13
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/multicast.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/observeOn.js +0 -9
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/observeOn.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/onErrorResumeNextWith.js +0 -8
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/onErrorResumeNextWith.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/pairwise.js +0 -15
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/pairwise.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/partition.js +0 -6
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/partition.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/pluck.js +0 -21
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/pluck.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/publish.js +0 -7
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/publish.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/publishBehavior.js +0 -9
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/publishBehavior.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/publishLast.js +0 -9
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/publishLast.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/publishReplay.js +0 -11
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/publishReplay.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/race.js +0 -6
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/race.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/raceWith.js +0 -11
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/raceWith.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/reduce.js +0 -6
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/reduce.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/refCount.js +0 -26
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/refCount.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/repeat.js +0 -59
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/repeat.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/repeatWhen.js +0 -46
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/repeatWhen.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/retry.js +0 -68
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/retry.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/retryWhen.js +0 -30
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/retryWhen.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/sample.js +0 -23
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/sample.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/sampleTime.js +0 -7
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/sampleTime.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/scan.js +0 -6
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/scan.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/scanInternals.js +0 -22
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/scanInternals.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/sequenceEqual.js +0 -39
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/sequenceEqual.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/share.js +0 -79
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/share.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/shareReplay.js +0 -19
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/shareReplay.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/single.js +0 -30
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/single.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/skip.js +0 -5
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/skip.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/skipLast.js +0 -28
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/skipLast.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/skipUntil.js +0 -16
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/skipUntil.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/skipWhile.js +0 -10
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/skipWhile.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/startWith.js +0 -10
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/startWith.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/subscribeOn.js +0 -7
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/subscribeOn.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/switchAll.js +0 -6
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/switchAll.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/switchMap.js +0 -24
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/switchMap.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/switchMapTo.js +0 -6
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/switchMapTo.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/switchScan.js +0 -12
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/switchScan.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/take.js +0 -20
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/take.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/takeLast.js +0 -22
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/takeLast.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/takeUntil.js +0 -11
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/takeUntil.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/takeWhile.js +0 -13
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/takeWhile.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/tap.js +0 -40
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/tap.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/throttle.js +0 -43
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/throttle.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/throttleTime.js +0 -8
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/throttleTime.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/throwIfEmpty.js +0 -16
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/throwIfEmpty.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/timeInterval.js +0 -21
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/timeInterval.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/timeout.js +0 -56
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/timeout.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/timeoutWith.js +0 -31
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/timeoutWith.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/timestamp.js +0 -6
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/timestamp.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/toArray.js +0 -9
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/toArray.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/window.js +0 -28
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/window.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/windowCount.js +0 -40
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/windowCount.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/windowTime.js +0 -63
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/windowTime.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/windowToggle.js +0 -54
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/windowToggle.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/windowWhen.js +0 -38
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/windowWhen.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/withLatestFrom.js +0 -31
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/withLatestFrom.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/zip.js +0 -8
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/zip.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/zipAll.js +0 -6
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/zipAll.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/zipWith.js +0 -5
- package/tools/installer/node_modules/rxjs/dist/esm/internal/operators/zipWith.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduled/scheduleArray.js +0 -18
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduled/scheduleArray.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduled/scheduleAsyncIterable.js +0 -23
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduled/scheduleAsyncIterable.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduled/scheduleIterable.js +0 -31
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduled/scheduleIterable.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduled/scheduleObservable.js +0 -7
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduled/scheduleObservable.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduled/schedulePromise.js +0 -7
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduled/schedulePromise.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduled/scheduleReadableStreamLike.js +0 -6
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduled/scheduleReadableStreamLike.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduled/scheduled.js +0 -37
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduled/scheduled.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/Action.js +0 -10
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/Action.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/AnimationFrameAction.js +0 -29
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/AnimationFrameAction.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/AnimationFrameScheduler.js +0 -30
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/AnimationFrameScheduler.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/AsapAction.js +0 -31
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/AsapAction.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/AsapScheduler.js +0 -24
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/AsapScheduler.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/AsyncAction.js +0 -82
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/AsyncAction.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/AsyncScheduler.js +0 -30
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/AsyncScheduler.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/QueueAction.js +0 -28
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/QueueAction.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/QueueScheduler.js +0 -4
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/QueueScheduler.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/VirtualTimeScheduler.js +0 -89
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/VirtualTimeScheduler.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/animationFrame.js +0 -5
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/animationFrame.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/animationFrameProvider.js +0 -27
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/animationFrameProvider.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/asap.js +0 -5
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/asap.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/async.js +0 -5
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/async.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/dateTimestampProvider.js +0 -7
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/dateTimestampProvider.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/immediateProvider.js +0 -14
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/immediateProvider.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/intervalProvider.js +0 -15
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/intervalProvider.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/performanceTimestampProvider.js +0 -7
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/performanceTimestampProvider.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/queue.js +0 -5
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/queue.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/timeoutProvider.js +0 -15
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/timeoutProvider.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/timerHandle.js +0 -2
- package/tools/installer/node_modules/rxjs/dist/esm/internal/scheduler/timerHandle.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/symbol/iterator.js +0 -8
- package/tools/installer/node_modules/rxjs/dist/esm/internal/symbol/iterator.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/symbol/observable.js +0 -2
- package/tools/installer/node_modules/rxjs/dist/esm/internal/symbol/observable.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/testing/ColdObservable.js +0 -34
- package/tools/installer/node_modules/rxjs/dist/esm/internal/testing/ColdObservable.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/testing/HotObservable.js +0 -37
- package/tools/installer/node_modules/rxjs/dist/esm/internal/testing/HotObservable.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/testing/SubscriptionLog.js +0 -7
- package/tools/installer/node_modules/rxjs/dist/esm/internal/testing/SubscriptionLog.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/testing/SubscriptionLoggable.js +0 -16
- package/tools/installer/node_modules/rxjs/dist/esm/internal/testing/SubscriptionLoggable.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/testing/TestMessage.js +0 -2
- package/tools/installer/node_modules/rxjs/dist/esm/internal/testing/TestMessage.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/testing/TestScheduler.js +0 -505
- package/tools/installer/node_modules/rxjs/dist/esm/internal/testing/TestScheduler.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/types.js +0 -2
- package/tools/installer/node_modules/rxjs/dist/esm/internal/types.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/umd.js +0 -12
- package/tools/installer/node_modules/rxjs/dist/esm/internal/umd.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/ArgumentOutOfRangeError.js +0 -7
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/ArgumentOutOfRangeError.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/EmptyError.js +0 -7
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/EmptyError.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/Immediate.js +0 -30
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/Immediate.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/NotFoundError.js +0 -7
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/NotFoundError.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/ObjectUnsubscribedError.js +0 -7
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/ObjectUnsubscribedError.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/SequenceError.js +0 -7
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/SequenceError.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/UnsubscriptionError.js +0 -11
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/UnsubscriptionError.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/applyMixins.js +0 -11
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/applyMixins.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/args.js +0 -15
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/args.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/argsArgArrayOrObject.js +0 -22
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/argsArgArrayOrObject.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/argsOrArgArray.js +0 -5
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/argsOrArgArray.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/arrRemove.js +0 -7
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/arrRemove.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/createErrorClass.js +0 -11
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/createErrorClass.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/createObject.js +0 -4
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/createObject.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/errorContext.js +0 -28
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/errorContext.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/executeSchedule.js +0 -16
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/executeSchedule.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/identity.js +0 -4
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/identity.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/isArrayLike.js +0 -2
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/isArrayLike.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/isAsyncIterable.js +0 -5
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/isAsyncIterable.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/isDate.js +0 -4
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/isDate.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/isFunction.js +0 -4
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/isFunction.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/isInteropObservable.js +0 -6
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/isInteropObservable.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/isIterable.js +0 -6
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/isIterable.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/isObservable.js +0 -6
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/isObservable.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/isPromise.js +0 -5
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/isPromise.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/isReadableStreamLike.js +0 -23
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/isReadableStreamLike.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/isScheduler.js +0 -5
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/isScheduler.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/lift.js +0 -20
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/lift.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/mapOneOrManyArgs.js +0 -9
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/mapOneOrManyArgs.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/noop.js +0 -2
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/noop.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/not.js +0 -4
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/not.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/pipe.js +0 -16
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/pipe.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/reportUnhandledError.js +0 -14
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/reportUnhandledError.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/subscribeToArray.js +0 -7
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/subscribeToArray.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/throwUnobservableError.js +0 -4
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/throwUnobservableError.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/workarounds.js +0 -2
- package/tools/installer/node_modules/rxjs/dist/esm/internal/util/workarounds.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/operators/index.js +0 -114
- package/tools/installer/node_modules/rxjs/dist/esm/operators/index.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/testing/index.js +0 -2
- package/tools/installer/node_modules/rxjs/dist/esm/testing/index.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm/webSocket/index.js +0 -3
- package/tools/installer/node_modules/rxjs/dist/esm/webSocket/index.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/ajax/index.js +0 -4
- package/tools/installer/node_modules/rxjs/dist/esm5/ajax/index.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/fetch/index.js +0 -2
- package/tools/installer/node_modules/rxjs/dist/esm5/fetch/index.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/index.js +0 -169
- package/tools/installer/node_modules/rxjs/dist/esm5/index.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/AnyCatcher.js +0 -2
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/AnyCatcher.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/AsyncSubject.js +0 -39
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/AsyncSubject.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/BehaviorSubject.js +0 -36
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/BehaviorSubject.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/Notification.js +0 -72
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/Notification.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/NotificationFactories.js +0 -15
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/NotificationFactories.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/Observable.js +0 -102
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/Observable.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/Operator.js +0 -2
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/Operator.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/ReplaySubject.js +0 -58
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/ReplaySubject.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/Scheduler.js +0 -16
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/Scheduler.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/Subject.js +0 -162
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/Subject.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/Subscriber.js +0 -184
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/Subscriber.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/Subscription.js +0 -143
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/Subscription.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/ajax/AjaxResponse.js +0 -29
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/ajax/AjaxResponse.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/ajax/ajax.js +0 -239
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/ajax/ajax.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/ajax/errors.js +0 -30
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/ajax/errors.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/ajax/getXHRResponse.js +0 -26
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/ajax/getXHRResponse.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/ajax/types.js +0 -2
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/ajax/types.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/config.js +0 -8
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/config.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/firstValueFrom.js +0 -24
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/firstValueFrom.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/lastValueFrom.js +0 -27
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/lastValueFrom.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/ConnectableObservable.js +0 -63
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/ConnectableObservable.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/bindCallback.js +0 -5
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/bindCallback.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/bindCallbackInternals.js +0 -79
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/bindCallbackInternals.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/bindNodeCallback.js +0 -5
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/bindNodeCallback.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/combineLatest.js +0 -70
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/combineLatest.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/concat.js +0 -11
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/concat.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/connectable.js +0 -27
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/connectable.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/defer.js +0 -8
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/defer.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/dom/WebSocketSubject.js +0 -221
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/dom/WebSocketSubject.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/dom/animationFrames.js +0 -34
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/dom/animationFrames.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/dom/fetch.js +0 -54
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/dom/fetch.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/dom/webSocket.js +0 -5
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/dom/webSocket.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/empty.js +0 -9
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/empty.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/forkJoin.js +0 -47
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/forkJoin.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/from.js +0 -6
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/from.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/fromEvent.js +0 -59
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/fromEvent.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/fromEventPattern.js +0 -20
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/fromEventPattern.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/fromSubscribable.js +0 -5
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/fromSubscribable.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/generate.js +0 -49
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/generate.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/iif.js +0 -5
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/iif.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/innerFrom.js +0 -143
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/innerFrom.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/interval.js +0 -11
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/interval.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/merge.js +0 -23
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/merge.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/never.js +0 -7
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/never.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/of.js +0 -11
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/of.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/onErrorResumeNext.js +0 -35
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/onErrorResumeNext.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/pairs.js +0 -5
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/pairs.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/partition.js +0 -7
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/partition.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/race.js +0 -32
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/race.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/range.js +0 -35
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/range.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/throwError.js +0 -8
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/throwError.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/timer.js +0 -36
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/timer.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/using.js +0 -17
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/using.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/zip.js +0 -46
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/observable/zip.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/OperatorSubscriber.js +0 -61
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/OperatorSubscriber.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/audit.js +0 -37
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/audit.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/auditTime.js +0 -8
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/auditTime.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/buffer.js +0 -22
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/buffer.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/bufferCount.js +0 -71
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/bufferCount.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/bufferTime.js +0 -77
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/bufferTime.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/bufferToggle.js +0 -45
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/bufferToggle.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/bufferWhen.js +0 -23
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/bufferWhen.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/catchError.js +0 -27
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/catchError.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/combineAll.js +0 -3
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/combineAll.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/combineLatest.js +0 -20
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/combineLatest.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/combineLatestAll.js +0 -6
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/combineLatestAll.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/combineLatestWith.js +0 -10
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/combineLatestWith.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/concat.js +0 -16
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/concat.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/concatAll.js +0 -5
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/concatAll.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/concatMap.js +0 -6
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/concatMap.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/concatMapTo.js +0 -6
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/concatMapTo.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/concatWith.js +0 -10
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/concatWith.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/connect.js +0 -17
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/connect.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/count.js +0 -5
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/count.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/debounce.js +0 -34
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/debounce.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/debounceTime.js +0 -44
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/debounceTime.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/defaultIfEmpty.js +0 -17
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/defaultIfEmpty.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/delay.js +0 -9
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/delay.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/delayWhen.js +0 -15
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/delayWhen.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/dematerialize.js +0 -9
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/dematerialize.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/distinct.js +0 -18
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/distinct.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/distinctUntilChanged.js +0 -23
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/distinctUntilChanged.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/distinctUntilKeyChanged.js +0 -5
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/distinctUntilKeyChanged.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/elementAt.js +0 -15
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/elementAt.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/endWith.js +0 -11
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/endWith.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/every.js +0 -17
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/every.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/exhaust.js +0 -3
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/exhaust.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/exhaustAll.js +0 -6
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/exhaustAll.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/exhaustMap.js +0 -29
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/exhaustMap.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/expand.js +0 -10
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/expand.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/filter.js +0 -9
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/filter.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/finalize.js +0 -12
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/finalize.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/find.js +0 -22
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/find.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/findIndex.js +0 -6
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/findIndex.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/first.js +0 -13
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/first.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/flatMap.js +0 -3
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/flatMap.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/groupBy.js +0 -63
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/groupBy.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/ignoreElements.js +0 -9
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/ignoreElements.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/isEmpty.js +0 -14
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/isEmpty.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/joinAllInternals.js +0 -9
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/joinAllInternals.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/last.js +0 -13
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/last.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/map.js +0 -11
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/map.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/mapTo.js +0 -5
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/mapTo.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/materialize.js +0 -17
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/materialize.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/max.js +0 -6
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/max.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/merge.js +0 -17
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/merge.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/mergeAll.js +0 -7
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/mergeAll.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/mergeInternals.js +0 -61
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/mergeInternals.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/mergeMap.js +0 -16
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/mergeMap.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/mergeMapTo.js +0 -13
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/mergeMapTo.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/mergeScan.js +0 -12
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/mergeScan.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/mergeWith.js +0 -10
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/mergeWith.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/min.js +0 -6
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/min.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/multicast.js +0 -13
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/multicast.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/observeOn.js +0 -10
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/observeOn.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/onErrorResumeNextWith.js +0 -13
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/onErrorResumeNextWith.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/pairwise.js +0 -15
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/pairwise.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/partition.js +0 -8
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/partition.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/pluck.js +0 -25
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/pluck.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/publish.js +0 -7
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/publish.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/publishBehavior.js +0 -9
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/publishBehavior.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/publishLast.js +0 -9
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/publishLast.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/publishReplay.js +0 -11
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/publishReplay.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/race.js +0 -11
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/race.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/raceWith.js +0 -16
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/raceWith.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/reduce.js +0 -6
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/reduce.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/refCount.js +0 -26
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/refCount.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/repeat.js +0 -60
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/repeat.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/repeatWhen.js +0 -46
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/repeatWhen.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/retry.js +0 -69
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/retry.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/retryWhen.js +0 -32
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/retryWhen.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/sample.js +0 -23
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/sample.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/sampleTime.js +0 -8
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/sampleTime.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/scan.js +0 -6
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/scan.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/scanInternals.js +0 -22
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/scanInternals.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/sequenceEqual.js +0 -40
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/sequenceEqual.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/share.js +0 -85
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/share.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/shareReplay.js +0 -20
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/shareReplay.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/single.js +0 -30
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/single.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/skip.js +0 -5
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/skip.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/skipLast.js +0 -28
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/skipLast.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/skipUntil.js +0 -16
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/skipUntil.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/skipWhile.js +0 -10
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/skipWhile.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/startWith.js +0 -14
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/startWith.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/subscribeOn.js +0 -8
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/subscribeOn.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/switchAll.js +0 -6
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/switchAll.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/switchMap.js +0 -24
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/switchMap.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/switchMapTo.js +0 -6
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/switchMapTo.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/switchScan.js +0 -12
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/switchScan.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/take.js +0 -20
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/take.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/takeLast.js +0 -34
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/takeLast.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/takeUntil.js +0 -11
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/takeUntil.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/takeWhile.js +0 -14
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/takeWhile.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/tap.js +0 -40
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/tap.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/throttle.js +0 -45
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/throttle.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/throttleTime.js +0 -9
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/throttleTime.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/throwIfEmpty.js +0 -17
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/throwIfEmpty.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/timeInterval.js +0 -24
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/timeInterval.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/timeout.js +0 -59
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/timeout.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/timeoutWith.js +0 -31
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/timeoutWith.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/timestamp.js +0 -7
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/timestamp.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/toArray.js +0 -9
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/toArray.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/window.js +0 -28
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/window.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/windowCount.js +0 -53
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/windowCount.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/windowTime.js +0 -70
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/windowTime.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/windowToggle.js +0 -66
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/windowToggle.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/windowWhen.js +0 -38
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/windowWhen.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/withLatestFrom.js +0 -39
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/withLatestFrom.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/zip.js +0 -13
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/zip.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/zipAll.js +0 -6
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/zipAll.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/zipWith.js +0 -10
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/operators/zipWith.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduled/scheduleArray.js +0 -18
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduled/scheduleArray.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduled/scheduleAsyncIterable.js +0 -23
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduled/scheduleAsyncIterable.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduled/scheduleIterable.js +0 -32
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduled/scheduleIterable.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduled/scheduleObservable.js +0 -7
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduled/scheduleObservable.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduled/schedulePromise.js +0 -7
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduled/schedulePromise.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduled/scheduleReadableStreamLike.js +0 -6
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduled/scheduleReadableStreamLike.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduled/scheduled.js +0 -37
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduled/scheduled.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/Action.js +0 -15
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/Action.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/AnimationFrameAction.js +0 -36
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/AnimationFrameAction.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/AnimationFrameScheduler.js +0 -37
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/AnimationFrameScheduler.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/AsapAction.js +0 -38
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/AsapAction.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/AsapScheduler.js +0 -31
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/AsapScheduler.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/AsyncAction.js +0 -90
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/AsyncAction.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/AsyncScheduler.js +0 -36
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/AsyncScheduler.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/QueueAction.js +0 -35
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/QueueAction.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/QueueScheduler.js +0 -11
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/QueueScheduler.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/VirtualTimeScheduler.js +0 -104
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/VirtualTimeScheduler.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/animationFrame.js +0 -5
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/animationFrame.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/animationFrameProvider.js +0 -36
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/animationFrameProvider.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/asap.js +0 -5
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/asap.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/async.js +0 -5
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/async.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/dateTimestampProvider.js +0 -7
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/dateTimestampProvider.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/immediateProvider.js +0 -19
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/immediateProvider.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/intervalProvider.js +0 -20
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/intervalProvider.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/performanceTimestampProvider.js +0 -7
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/performanceTimestampProvider.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/queue.js +0 -5
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/queue.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/timeoutProvider.js +0 -20
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/timeoutProvider.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/timerHandle.js +0 -2
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/scheduler/timerHandle.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/symbol/iterator.js +0 -8
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/symbol/iterator.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/symbol/observable.js +0 -2
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/symbol/observable.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/testing/ColdObservable.js +0 -39
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/testing/ColdObservable.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/testing/HotObservable.js +0 -45
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/testing/HotObservable.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/testing/SubscriptionLog.js +0 -10
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/testing/SubscriptionLog.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/testing/SubscriptionLoggable.js +0 -18
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/testing/SubscriptionLoggable.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/testing/TestMessage.js +0 -2
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/testing/TestMessage.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/testing/TestScheduler.js +0 -569
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/testing/TestScheduler.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/types.js +0 -2
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/types.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/ArgumentOutOfRangeError.js +0 -9
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/ArgumentOutOfRangeError.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/EmptyError.js +0 -9
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/EmptyError.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/Immediate.js +0 -30
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/Immediate.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/NotFoundError.js +0 -9
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/NotFoundError.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/ObjectUnsubscribedError.js +0 -9
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/ObjectUnsubscribedError.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/SequenceError.js +0 -9
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/SequenceError.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/UnsubscriptionError.js +0 -12
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/UnsubscriptionError.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/applyMixins.js +0 -11
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/applyMixins.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/args.js +0 -15
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/args.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/argsArgArrayOrObject.js +0 -22
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/argsArgArrayOrObject.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/argsOrArgArray.js +0 -5
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/argsOrArgArray.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/arrRemove.js +0 -7
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/arrRemove.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/createErrorClass.js +0 -11
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/createErrorClass.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/createObject.js +0 -4
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/createObject.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/errorContext.js +0 -28
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/errorContext.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/executeSchedule.js +0 -18
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/executeSchedule.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/identity.js +0 -4
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/identity.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/isArrayLike.js +0 -2
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/isArrayLike.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/isAsyncIterable.js +0 -5
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/isAsyncIterable.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/isDate.js +0 -4
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/isDate.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/isFunction.js +0 -4
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/isFunction.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/isInteropObservable.js +0 -6
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/isInteropObservable.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/isIterable.js +0 -6
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/isIterable.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/isObservable.js +0 -6
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/isObservable.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/isPromise.js +0 -5
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/isPromise.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/isReadableStreamLike.js +0 -39
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/isReadableStreamLike.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/isScheduler.js +0 -5
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/isScheduler.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/lift.js +0 -20
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/lift.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/mapOneOrManyArgs.js +0 -10
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/mapOneOrManyArgs.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/noop.js +0 -2
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/noop.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/not.js +0 -4
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/not.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/pipe.js +0 -20
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/pipe.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/reportUnhandledError.js +0 -14
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/reportUnhandledError.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/subscribeToArray.js +0 -7
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/subscribeToArray.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/throwUnobservableError.js +0 -4
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/throwUnobservableError.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/workarounds.js +0 -2
- package/tools/installer/node_modules/rxjs/dist/esm5/internal/util/workarounds.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/operators/index.js +0 -114
- package/tools/installer/node_modules/rxjs/dist/esm5/operators/index.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/testing/index.js +0 -2
- package/tools/installer/node_modules/rxjs/dist/esm5/testing/index.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/esm5/webSocket/index.js +0 -3
- package/tools/installer/node_modules/rxjs/dist/esm5/webSocket/index.js.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/ajax/index.d.ts +0 -5
- package/tools/installer/node_modules/rxjs/dist/types/ajax/index.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/fetch/index.d.ts +0 -2
- package/tools/installer/node_modules/rxjs/dist/types/fetch/index.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/index.d.ts +0 -173
- package/tools/installer/node_modules/rxjs/dist/types/index.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/AnyCatcher.d.ts +0 -10
- package/tools/installer/node_modules/rxjs/dist/types/internal/AnyCatcher.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/AsyncSubject.d.ts +0 -13
- package/tools/installer/node_modules/rxjs/dist/types/internal/AsyncSubject.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/BehaviorSubject.d.ts +0 -13
- package/tools/installer/node_modules/rxjs/dist/types/internal/BehaviorSubject.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/Notification.d.ts +0 -175
- package/tools/installer/node_modules/rxjs/dist/types/internal/Notification.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/NotificationFactories.d.ts +0 -2
- package/tools/installer/node_modules/rxjs/dist/types/internal/NotificationFactories.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/Observable.d.ts +0 -121
- package/tools/installer/node_modules/rxjs/dist/types/internal/Observable.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/Operator.d.ts +0 -9
- package/tools/installer/node_modules/rxjs/dist/types/internal/Operator.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/ReplaySubject.d.ts +0 -49
- package/tools/installer/node_modules/rxjs/dist/types/internal/ReplaySubject.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/Scheduler.d.ts +0 -53
- package/tools/installer/node_modules/rxjs/dist/types/internal/Scheduler.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/Subject.d.ts +0 -54
- package/tools/installer/node_modules/rxjs/dist/types/internal/Subject.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/Subscriber.d.ts +0 -72
- package/tools/installer/node_modules/rxjs/dist/types/internal/Subscriber.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/Subscription.d.ts +0 -92
- package/tools/installer/node_modules/rxjs/dist/types/internal/Subscription.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/ajax/AjaxResponse.d.ts +0 -115
- package/tools/installer/node_modules/rxjs/dist/types/internal/ajax/AjaxResponse.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/ajax/ajax.d.ts +0 -227
- package/tools/installer/node_modules/rxjs/dist/types/internal/ajax/ajax.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/ajax/errors.d.ts +0 -65
- package/tools/installer/node_modules/rxjs/dist/types/internal/ajax/errors.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/ajax/getXHRResponse.d.ts +0 -14
- package/tools/installer/node_modules/rxjs/dist/types/internal/ajax/getXHRResponse.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/ajax/types.d.ts +0 -200
- package/tools/installer/node_modules/rxjs/dist/types/internal/ajax/types.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/config.d.ts +0 -73
- package/tools/installer/node_modules/rxjs/dist/types/internal/config.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/firstValueFrom.d.ts +0 -7
- package/tools/installer/node_modules/rxjs/dist/types/internal/firstValueFrom.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/lastValueFrom.d.ts +0 -7
- package/tools/installer/node_modules/rxjs/dist/types/internal/lastValueFrom.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/ConnectableObservable.d.ts +0 -42
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/ConnectableObservable.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/bindCallback.d.ts +0 -5
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/bindCallback.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/bindCallbackInternals.d.ts +0 -4
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/bindCallbackInternals.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/bindNodeCallback.d.ts +0 -5
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/bindNodeCallback.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/combineLatest.d.ts +0 -33
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/combineLatest.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/concat.d.ts +0 -5
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/concat.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/connectable.d.ts +0 -27
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/connectable.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/defer.d.ts +0 -51
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/defer.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/dom/WebSocketSubject.d.ts +0 -173
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/dom/WebSocketSubject.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/dom/animationFrames.d.ts +0 -76
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/dom/animationFrames.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/dom/fetch.d.ts +0 -7
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/dom/fetch.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/dom/webSocket.d.ts +0 -159
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/dom/webSocket.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/empty.d.ts +0 -72
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/empty.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/forkJoin.d.ts +0 -24
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/forkJoin.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/from.d.ts +0 -6
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/from.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/fromEvent.d.ts +0 -45
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/fromEvent.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/fromEventPattern.d.ts +0 -5
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/fromEventPattern.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/fromSubscribable.d.ts +0 -14
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/fromSubscribable.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/generate.d.ts +0 -314
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/generate.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/iif.d.ts +0 -82
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/iif.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/innerFrom.d.ts +0 -21
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/innerFrom.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/interval.d.ts +0 -48
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/interval.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/merge.d.ts +0 -9
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/merge.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/never.d.ts +0 -40
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/never.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/of.d.ts +0 -14
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/of.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/onErrorResumeNext.d.ts +0 -5
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/onErrorResumeNext.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/pairs.d.ts +0 -19
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/pairs.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/partition.d.ts +0 -9
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/partition.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/race.d.ts +0 -12
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/race.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/range.d.ts +0 -8
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/range.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/throwError.d.ts +0 -115
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/throwError.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/timer.d.ts +0 -126
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/timer.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/using.d.ts +0 -30
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/using.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/zip.d.ts +0 -7
- package/tools/installer/node_modules/rxjs/dist/types/internal/observable/zip.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/OperatorSubscriber.d.ts +0 -41
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/OperatorSubscriber.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/audit.d.ts +0 -48
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/audit.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/auditTime.d.ts +0 -50
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/auditTime.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/buffer.d.ts +0 -41
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/buffer.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/bufferCount.d.ts +0 -54
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/bufferCount.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/bufferTime.d.ts +0 -5
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/bufferTime.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/bufferToggle.d.ts +0 -46
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/bufferToggle.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/bufferWhen.d.ts +0 -41
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/bufferWhen.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/catchError.d.ts +0 -4
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/catchError.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/combineAll.d.ts +0 -6
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/combineAll.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/combineLatest.d.ts +0 -10
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/combineLatest.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/combineLatestAll.d.ts +0 -6
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/combineLatestAll.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/combineLatestWith.d.ts +0 -43
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/combineLatestWith.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/concat.d.ts +0 -6
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/concat.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/concatAll.d.ts +0 -59
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/concatAll.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/concatMap.d.ts +0 -7
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/concatMap.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/concatMapTo.d.ts +0 -8
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/concatMapTo.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/concatWith.d.ts +0 -43
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/concatWith.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/connect.d.ts +0 -87
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/connect.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/count.d.ts +0 -58
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/count.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/debounce.d.ts +0 -61
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/debounce.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/debounceTime.d.ts +0 -59
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/debounceTime.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/defaultIfEmpty.d.ts +0 -38
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/defaultIfEmpty.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/delay.d.ts +0 -59
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/delay.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/delayWhen.d.ts +0 -6
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/delayWhen.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/dematerialize.d.ts +0 -51
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/dematerialize.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/distinct.d.ts +0 -60
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/distinct.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/distinctUntilChanged.d.ts +0 -4
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/distinctUntilChanged.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/distinctUntilKeyChanged.d.ts +0 -4
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/distinctUntilKeyChanged.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/elementAt.d.ts +0 -51
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/elementAt.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/endWith.d.ts +0 -7
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/endWith.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/every.d.ts +0 -9
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/every.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/exhaust.d.ts +0 -6
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/exhaust.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/exhaustAll.d.ts +0 -47
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/exhaustAll.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/exhaustMap.d.ts +0 -7
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/exhaustMap.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/expand.d.ts +0 -9
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/expand.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/filter.d.ts +0 -9
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/filter.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/finalize.d.ts +0 -64
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/finalize.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/find.d.ts +0 -12
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/find.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/findIndex.d.ts +0 -9
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/findIndex.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/first.d.ts +0 -9
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/first.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/flatMap.d.ts +0 -6
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/flatMap.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/groupBy.d.ts +0 -119
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/groupBy.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/ignoreElements.d.ts +0 -38
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/ignoreElements.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/isEmpty.d.ts +0 -64
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/isEmpty.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/joinAllInternals.d.ts +0 -14
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/joinAllInternals.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/last.d.ts +0 -8
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/last.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/map.d.ts +0 -5
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/map.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/mapTo.d.ts +0 -10
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/mapTo.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/materialize.d.ts +0 -52
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/materialize.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/max.d.ts +0 -50
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/max.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/merge.d.ts +0 -10
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/merge.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/mergeAll.d.ts +0 -62
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/mergeAll.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/mergeInternals.d.ts +0 -18
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/mergeInternals.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/mergeMap.d.ts +0 -7
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/mergeMap.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/mergeMapTo.d.ts +0 -9
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/mergeMapTo.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/mergeScan.d.ts +0 -68
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/mergeScan.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/mergeWith.d.ts +0 -44
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/mergeWith.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/min.d.ts +0 -50
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/min.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/multicast.d.ts +0 -63
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/multicast.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/observeOn.d.ts +0 -56
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/observeOn.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/onErrorResumeNextWith.d.ts +0 -8
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/onErrorResumeNextWith.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/pairwise.d.ts +0 -46
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/pairwise.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/partition.d.ts +0 -54
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/partition.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/pluck.d.ts +0 -18
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/pluck.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/publish.d.ts +0 -30
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/publish.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/publishBehavior.d.ts +0 -19
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/publishBehavior.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/publishLast.d.ts +0 -69
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/publishLast.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/publishReplay.d.ts +0 -56
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/publishReplay.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/race.d.ts +0 -6
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/race.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/raceWith.d.ts +0 -29
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/raceWith.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/reduce.d.ts +0 -5
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/reduce.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/refCount.d.ts +0 -61
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/refCount.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/repeat.d.ts +0 -108
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/repeat.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/repeatWhen.d.ts +0 -38
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/repeatWhen.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/retry.d.ts +0 -28
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/retry.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/retryWhen.d.ts +0 -61
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/retryWhen.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/sample.d.ts +0 -43
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/sample.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/sampleTime.d.ts +0 -46
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/sampleTime.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/scan.d.ts +0 -5
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/scan.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/scanInternals.d.ts +0 -12
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/scanInternals.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/sequenceEqual.d.ts +0 -60
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/sequenceEqual.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/share.d.ts +0 -43
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/share.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/shareReplay.d.ts +0 -10
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/shareReplay.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/single.d.ts +0 -5
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/single.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/skip.d.ts +0 -36
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/skip.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/skipLast.d.ts +0 -45
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/skipLast.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/skipUntil.d.ts +0 -48
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/skipUntil.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/skipWhile.d.ts +0 -5
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/skipWhile.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/startWith.d.ts +0 -7
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/startWith.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/subscribeOn.d.ts +0 -62
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/subscribeOn.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/switchAll.d.ts +0 -61
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/switchAll.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/switchMap.d.ts +0 -7
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/switchMap.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/switchMapTo.d.ts +0 -8
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/switchMapTo.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/switchScan.d.ts +0 -20
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/switchScan.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/take.d.ts +0 -45
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/take.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/takeLast.d.ts +0 -42
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/takeLast.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/takeUntil.d.ts +0 -41
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/takeUntil.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/takeWhile.d.ts +0 -8
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/takeWhile.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/tap.d.ts +0 -72
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/tap.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/throttle.d.ts +0 -78
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/throttle.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/throttleTime.d.ts +0 -53
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/throttleTime.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/throwIfEmpty.d.ts +0 -39
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/throwIfEmpty.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/timeInterval.d.ts +0 -50
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/timeInterval.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/timeout.d.ts +0 -255
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/timeout.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/timeoutWith.d.ts +0 -8
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/timeoutWith.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/timestamp.d.ts +0 -35
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/timestamp.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/toArray.d.ts +0 -33
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/toArray.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/window.d.ts +0 -48
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/window.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/windowCount.d.ts +0 -65
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/windowCount.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/windowTime.d.ts +0 -6
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/windowTime.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/windowToggle.d.ts +0 -49
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/windowToggle.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/windowWhen.d.ts +0 -49
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/windowWhen.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/withLatestFrom.d.ts +0 -4
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/withLatestFrom.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/zip.d.ts +0 -10
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/zip.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/zipAll.d.ts +0 -14
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/zipAll.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/zipWith.d.ts +0 -26
- package/tools/installer/node_modules/rxjs/dist/types/internal/operators/zipWith.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduled/scheduleArray.d.ts +0 -4
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduled/scheduleArray.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduled/scheduleAsyncIterable.d.ts +0 -4
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduled/scheduleAsyncIterable.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduled/scheduleIterable.d.ts +0 -9
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduled/scheduleIterable.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduled/scheduleObservable.d.ts +0 -3
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduled/scheduleObservable.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduled/schedulePromise.d.ts +0 -3
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduled/schedulePromise.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduled/scheduleReadableStreamLike.d.ts +0 -4
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduled/scheduleReadableStreamLike.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduled/scheduled.d.ts +0 -15
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduled/scheduled.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/Action.d.ts +0 -30
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/Action.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/AnimationFrameAction.d.ts +0 -12
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/AnimationFrameAction.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/AnimationFrameScheduler.d.ts +0 -6
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/AnimationFrameScheduler.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/AsapAction.d.ts +0 -12
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/AsapAction.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/AsapScheduler.d.ts +0 -6
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/AsapScheduler.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/AsyncAction.d.ts +0 -24
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/AsyncAction.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/AsyncScheduler.d.ts +0 -9
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/AsyncScheduler.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/QueueAction.d.ts +0 -14
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/QueueAction.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/QueueScheduler.d.ts +0 -4
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/QueueScheduler.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/VirtualTimeScheduler.d.ts +0 -48
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/VirtualTimeScheduler.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/animationFrame.d.ts +0 -38
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/animationFrame.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/animationFrameProvider.d.ts +0 -13
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/animationFrameProvider.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/asap.d.ts +0 -41
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/asap.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/async.d.ts +0 -53
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/async.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/dateTimestampProvider.d.ts +0 -7
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/dateTimestampProvider.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/immediateProvider.d.ts +0 -14
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/immediateProvider.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/intervalProvider.d.ts +0 -14
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/intervalProvider.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/performanceTimestampProvider.d.ts +0 -7
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/performanceTimestampProvider.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/queue.d.ts +0 -69
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/queue.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/timeoutProvider.d.ts +0 -14
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/timeoutProvider.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/timerHandle.d.ts +0 -2
- package/tools/installer/node_modules/rxjs/dist/types/internal/scheduler/timerHandle.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/symbol/iterator.d.ts +0 -3
- package/tools/installer/node_modules/rxjs/dist/types/internal/symbol/iterator.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/symbol/observable.d.ts +0 -8
- package/tools/installer/node_modules/rxjs/dist/types/internal/symbol/observable.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/testing/ColdObservable.d.ts +0 -16
- package/tools/installer/node_modules/rxjs/dist/types/internal/testing/ColdObservable.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/testing/HotObservable.d.ts +0 -15
- package/tools/installer/node_modules/rxjs/dist/types/internal/testing/HotObservable.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/testing/SubscriptionLog.d.ts +0 -6
- package/tools/installer/node_modules/rxjs/dist/types/internal/testing/SubscriptionLog.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/testing/SubscriptionLoggable.d.ts +0 -9
- package/tools/installer/node_modules/rxjs/dist/types/internal/testing/SubscriptionLoggable.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/testing/TestMessage.d.ts +0 -7
- package/tools/installer/node_modules/rxjs/dist/types/internal/testing/TestMessage.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/testing/TestScheduler.d.ts +0 -88
- package/tools/installer/node_modules/rxjs/dist/types/internal/testing/TestScheduler.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/types.d.ts +0 -307
- package/tools/installer/node_modules/rxjs/dist/types/internal/types.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/ArgumentOutOfRangeError.d.ts +0 -19
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/ArgumentOutOfRangeError.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/EmptyError.d.ts +0 -21
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/EmptyError.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/Immediate.d.ts +0 -14
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/Immediate.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/NotFoundError.d.ts +0 -17
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/NotFoundError.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/ObjectUnsubscribedError.d.ts +0 -20
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/ObjectUnsubscribedError.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/SequenceError.d.ts +0 -17
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/SequenceError.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/UnsubscriptionError.d.ts +0 -16
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/UnsubscriptionError.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/applyMixins.d.ts +0 -2
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/applyMixins.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/args.d.ts +0 -5
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/args.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/argsArgArrayOrObject.d.ts +0 -11
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/argsArgArrayOrObject.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/argsOrArgArray.d.ts +0 -6
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/argsOrArgArray.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/arrRemove.d.ts +0 -7
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/arrRemove.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/createErrorClass.d.ts +0 -11
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/createErrorClass.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/createObject.d.ts +0 -2
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/createObject.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/errorContext.d.ts +0 -14
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/errorContext.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/executeSchedule.d.ts +0 -5
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/executeSchedule.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/identity.d.ts +0 -44
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/identity.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/isArrayLike.d.ts +0 -2
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/isArrayLike.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/isAsyncIterable.d.ts +0 -2
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/isAsyncIterable.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/isDate.d.ts +0 -9
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/isDate.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/isFunction.d.ts +0 -6
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/isFunction.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/isInteropObservable.d.ts +0 -4
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/isInteropObservable.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/isIterable.d.ts +0 -3
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/isIterable.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/isObservable.d.ts +0 -8
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/isObservable.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/isPromise.d.ts +0 -6
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/isPromise.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/isReadableStreamLike.d.ts +0 -4
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/isReadableStreamLike.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/isScheduler.d.ts +0 -3
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/isScheduler.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/lift.d.ts +0 -15
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/lift.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/mapOneOrManyArgs.d.ts +0 -7
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/mapOneOrManyArgs.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/noop.d.ts +0 -2
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/noop.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/not.d.ts +0 -2
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/not.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/pipe.d.ts +0 -14
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/pipe.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/reportUnhandledError.d.ts +0 -11
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/reportUnhandledError.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/subscribeToArray.d.ts +0 -7
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/subscribeToArray.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/throwUnobservableError.d.ts +0 -6
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/throwUnobservableError.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/workarounds.d.ts +0 -2
- package/tools/installer/node_modules/rxjs/dist/types/internal/util/workarounds.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/operators/index.d.ts +0 -114
- package/tools/installer/node_modules/rxjs/dist/types/operators/index.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/testing/index.d.ts +0 -2
- package/tools/installer/node_modules/rxjs/dist/types/testing/index.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/dist/types/webSocket/index.d.ts +0 -3
- package/tools/installer/node_modules/rxjs/dist/types/webSocket/index.d.ts.map +0 -1
- package/tools/installer/node_modules/rxjs/fetch/package.json +0 -8
- package/tools/installer/node_modules/rxjs/operators/package.json +0 -8
- package/tools/installer/node_modules/rxjs/package.json +0 -245
- package/tools/installer/node_modules/rxjs/src/Rx.global.js +0 -5
- package/tools/installer/node_modules/rxjs/src/ajax/index.ts +0 -4
- package/tools/installer/node_modules/rxjs/src/fetch/index.ts +0 -1
- package/tools/installer/node_modules/rxjs/src/index.ts +0 -209
- package/tools/installer/node_modules/rxjs/src/internal/AnyCatcher.ts +0 -14
- package/tools/installer/node_modules/rxjs/src/internal/AsyncSubject.ts +0 -39
- package/tools/installer/node_modules/rxjs/src/internal/BehaviorSubject.ts +0 -37
- package/tools/installer/node_modules/rxjs/src/internal/Notification.ts +0 -238
- package/tools/installer/node_modules/rxjs/src/internal/NotificationFactories.ts +0 -40
- package/tools/installer/node_modules/rxjs/src/internal/Observable.ts +0 -487
- package/tools/installer/node_modules/rxjs/src/internal/Operator.ts +0 -9
- package/tools/installer/node_modules/rxjs/src/internal/ReplaySubject.ts +0 -110
- package/tools/installer/node_modules/rxjs/src/internal/Scheduler.ts +0 -60
- package/tools/installer/node_modules/rxjs/src/internal/Subject.ts +0 -185
- package/tools/installer/node_modules/rxjs/src/internal/Subscriber.ts +0 -270
- package/tools/installer/node_modules/rxjs/src/internal/Subscription.ts +0 -212
- package/tools/installer/node_modules/rxjs/src/internal/ajax/AjaxResponse.ts +0 -124
- package/tools/installer/node_modules/rxjs/src/internal/ajax/ajax.ts +0 -622
- package/tools/installer/node_modules/rxjs/src/internal/ajax/errors.ts +0 -102
- package/tools/installer/node_modules/rxjs/src/internal/ajax/getXHRResponse.ts +0 -37
- package/tools/installer/node_modules/rxjs/src/internal/ajax/types.ts +0 -235
- package/tools/installer/node_modules/rxjs/src/internal/config.ts +0 -84
- package/tools/installer/node_modules/rxjs/src/internal/firstValueFrom.ts +0 -75
- package/tools/installer/node_modules/rxjs/src/internal/lastValueFrom.ts +0 -76
- package/tools/installer/node_modules/rxjs/src/internal/observable/ConnectableObservable.ts +0 -104
- package/tools/installer/node_modules/rxjs/src/internal/observable/bindCallback.ts +0 -149
- package/tools/installer/node_modules/rxjs/src/internal/observable/bindCallbackInternals.ts +0 -119
- package/tools/installer/node_modules/rxjs/src/internal/observable/bindNodeCallback.ts +0 -131
- package/tools/installer/node_modules/rxjs/src/internal/observable/combineLatest.ts +0 -300
- package/tools/installer/node_modules/rxjs/src/internal/observable/concat.ts +0 -115
- package/tools/installer/node_modules/rxjs/src/internal/observable/connectable.ts +0 -64
- package/tools/installer/node_modules/rxjs/src/internal/observable/defer.ts +0 -56
- package/tools/installer/node_modules/rxjs/src/internal/observable/dom/WebSocketSubject.ts +0 -397
- package/tools/installer/node_modules/rxjs/src/internal/observable/dom/animationFrames.ts +0 -132
- package/tools/installer/node_modules/rxjs/src/internal/observable/dom/fetch.ts +0 -180
- package/tools/installer/node_modules/rxjs/src/internal/observable/dom/webSocket.ts +0 -161
- package/tools/installer/node_modules/rxjs/src/internal/observable/empty.ts +0 -79
- package/tools/installer/node_modules/rxjs/src/internal/observable/forkJoin.ts +0 -184
- package/tools/installer/node_modules/rxjs/src/internal/observable/from.ts +0 -104
- package/tools/installer/node_modules/rxjs/src/internal/observable/fromEvent.ts +0 -339
- package/tools/installer/node_modules/rxjs/src/internal/observable/fromEventPattern.ts +0 -152
- package/tools/installer/node_modules/rxjs/src/internal/observable/fromSubscribable.ts +0 -17
- package/tools/installer/node_modules/rxjs/src/internal/observable/generate.ts +0 -387
- package/tools/installer/node_modules/rxjs/src/internal/observable/iif.ts +0 -85
- package/tools/installer/node_modules/rxjs/src/internal/observable/innerFrom.ts +0 -132
- package/tools/installer/node_modules/rxjs/src/internal/observable/interval.ts +0 -57
- package/tools/installer/node_modules/rxjs/src/internal/observable/merge.ts +0 -100
- package/tools/installer/node_modules/rxjs/src/internal/observable/never.ts +0 -44
- package/tools/installer/node_modules/rxjs/src/internal/observable/of.ts +0 -83
- package/tools/installer/node_modules/rxjs/src/internal/observable/onErrorResumeNext.ts +0 -98
- package/tools/installer/node_modules/rxjs/src/internal/observable/pairs.ts +0 -80
- package/tools/installer/node_modules/rxjs/src/internal/observable/partition.ts +0 -88
- package/tools/installer/node_modules/rxjs/src/internal/observable/race.ts +0 -88
- package/tools/installer/node_modules/rxjs/src/internal/observable/range.ts +0 -93
- package/tools/installer/node_modules/rxjs/src/internal/observable/throwError.ts +0 -125
- package/tools/installer/node_modules/rxjs/src/internal/observable/timer.ts +0 -186
- package/tools/installer/node_modules/rxjs/src/internal/observable/using.ts +0 -49
- package/tools/installer/node_modules/rxjs/src/internal/observable/zip.ts +0 -117
- package/tools/installer/node_modules/rxjs/src/internal/operators/OperatorSubscriber.ts +0 -112
- package/tools/installer/node_modules/rxjs/src/internal/operators/audit.ts +0 -96
- package/tools/installer/node_modules/rxjs/src/internal/operators/auditTime.ts +0 -55
- package/tools/installer/node_modules/rxjs/src/internal/operators/buffer.ts +0 -81
- package/tools/installer/node_modules/rxjs/src/internal/operators/bufferCount.ts +0 -120
- package/tools/installer/node_modules/rxjs/src/internal/operators/bufferTime.ts +0 -165
- package/tools/installer/node_modules/rxjs/src/internal/operators/bufferToggle.ts +0 -102
- package/tools/installer/node_modules/rxjs/src/internal/operators/bufferWhen.ts +0 -94
- package/tools/installer/node_modules/rxjs/src/internal/operators/catchError.ts +0 -139
- package/tools/installer/node_modules/rxjs/src/internal/operators/combineAll.ts +0 -6
- package/tools/installer/node_modules/rxjs/src/internal/operators/combineLatest.ts +0 -34
- package/tools/installer/node_modules/rxjs/src/internal/operators/combineLatestAll.ts +0 -50
- package/tools/installer/node_modules/rxjs/src/internal/operators/combineLatestWith.ts +0 -48
- package/tools/installer/node_modules/rxjs/src/internal/operators/concat.ts +0 -22
- package/tools/installer/node_modules/rxjs/src/internal/operators/concatAll.ts +0 -62
- package/tools/installer/node_modules/rxjs/src/internal/operators/concatMap.ts +0 -83
- package/tools/installer/node_modules/rxjs/src/internal/operators/concatMapTo.ts +0 -79
- package/tools/installer/node_modules/rxjs/src/internal/operators/concatWith.ts +0 -48
- package/tools/installer/node_modules/rxjs/src/internal/operators/connect.ts +0 -109
- package/tools/installer/node_modules/rxjs/src/internal/operators/count.ts +0 -61
- package/tools/installer/node_modules/rxjs/src/internal/operators/debounce.ts +0 -119
- package/tools/installer/node_modules/rxjs/src/internal/operators/debounceTime.ts +0 -123
- package/tools/installer/node_modules/rxjs/src/internal/operators/defaultIfEmpty.ts +0 -59
- package/tools/installer/node_modules/rxjs/src/internal/operators/delay.ts +0 -65
- package/tools/installer/node_modules/rxjs/src/internal/operators/delayWhen.ts +0 -103
- package/tools/installer/node_modules/rxjs/src/internal/operators/dematerialize.ts +0 -58
- package/tools/installer/node_modules/rxjs/src/internal/operators/distinct.ts +0 -79
- package/tools/installer/node_modules/rxjs/src/internal/operators/distinctUntilChanged.ts +0 -182
- package/tools/installer/node_modules/rxjs/src/internal/operators/distinctUntilKeyChanged.ts +0 -75
- package/tools/installer/node_modules/rxjs/src/internal/operators/elementAt.ts +0 -68
- package/tools/installer/node_modules/rxjs/src/internal/operators/endWith.ts +0 -68
- package/tools/installer/node_modules/rxjs/src/internal/operators/every.ts +0 -66
- package/tools/installer/node_modules/rxjs/src/internal/operators/exhaust.ts +0 -6
- package/tools/installer/node_modules/rxjs/src/internal/operators/exhaustAll.ts +0 -51
- package/tools/installer/node_modules/rxjs/src/internal/operators/exhaustMap.ts +0 -100
- package/tools/installer/node_modules/rxjs/src/internal/operators/expand.ts +0 -95
- package/tools/installer/node_modules/rxjs/src/internal/operators/filter.ts +0 -75
- package/tools/installer/node_modules/rxjs/src/internal/operators/finalize.ts +0 -75
- package/tools/installer/node_modules/rxjs/src/internal/operators/find.ts +0 -96
- package/tools/installer/node_modules/rxjs/src/internal/operators/findIndex.ts +0 -63
- package/tools/installer/node_modules/rxjs/src/internal/operators/first.ts +0 -93
- package/tools/installer/node_modules/rxjs/src/internal/operators/flatMap.ts +0 -6
- package/tools/installer/node_modules/rxjs/src/internal/operators/groupBy.ts +0 -288
- package/tools/installer/node_modules/rxjs/src/internal/operators/ignoreElements.ts +0 -45
- package/tools/installer/node_modules/rxjs/src/internal/operators/isEmpty.ts +0 -82
- package/tools/installer/node_modules/rxjs/src/internal/operators/joinAllInternals.ts +0 -29
- package/tools/installer/node_modules/rxjs/src/internal/operators/last.ts +0 -91
- package/tools/installer/node_modules/rxjs/src/internal/operators/map.ts +0 -61
- package/tools/installer/node_modules/rxjs/src/internal/operators/mapTo.ts +0 -48
- package/tools/installer/node_modules/rxjs/src/internal/operators/materialize.ts +0 -73
- package/tools/installer/node_modules/rxjs/src/internal/operators/max.ts +0 -54
- package/tools/installer/node_modules/rxjs/src/internal/operators/merge.ts +0 -29
- package/tools/installer/node_modules/rxjs/src/internal/operators/mergeAll.ts +0 -66
- package/tools/installer/node_modules/rxjs/src/internal/operators/mergeInternals.ts +0 -149
- package/tools/installer/node_modules/rxjs/src/internal/operators/mergeMap.ts +0 -94
- package/tools/installer/node_modules/rxjs/src/internal/operators/mergeMapTo.ts +0 -74
- package/tools/installer/node_modules/rxjs/src/internal/operators/mergeScan.ts +0 -92
- package/tools/installer/node_modules/rxjs/src/internal/operators/mergeWith.ts +0 -49
- package/tools/installer/node_modules/rxjs/src/internal/operators/min.ts +0 -54
- package/tools/installer/node_modules/rxjs/src/internal/operators/multicast.ts +0 -98
- package/tools/installer/node_modules/rxjs/src/internal/operators/observeOn.ts +0 -70
- package/tools/installer/node_modules/rxjs/src/internal/operators/onErrorResumeNextWith.ts +0 -99
- package/tools/installer/node_modules/rxjs/src/internal/operators/pairwise.ts +0 -61
- package/tools/installer/node_modules/rxjs/src/internal/operators/partition.ts +0 -62
- package/tools/installer/node_modules/rxjs/src/internal/operators/pluck.ts +0 -106
- package/tools/installer/node_modules/rxjs/src/internal/operators/publish.ts +0 -93
- package/tools/installer/node_modules/rxjs/src/internal/operators/publishBehavior.ts +0 -26
- package/tools/installer/node_modules/rxjs/src/internal/operators/publishLast.ts +0 -76
- package/tools/installer/node_modules/rxjs/src/internal/operators/publishReplay.ts +0 -96
- package/tools/installer/node_modules/rxjs/src/internal/operators/race.ts +0 -20
- package/tools/installer/node_modules/rxjs/src/internal/operators/raceWith.ts +0 -40
- package/tools/installer/node_modules/rxjs/src/internal/operators/reduce.ts +0 -61
- package/tools/installer/node_modules/rxjs/src/internal/operators/refCount.ts +0 -119
- package/tools/installer/node_modules/rxjs/src/internal/operators/repeat.ts +0 -172
- package/tools/installer/node_modules/rxjs/src/internal/operators/repeatWhen.ts +0 -125
- package/tools/installer/node_modules/rxjs/src/internal/operators/retry.ts +0 -168
- package/tools/installer/node_modules/rxjs/src/internal/operators/retryWhen.ts +0 -113
- package/tools/installer/node_modules/rxjs/src/internal/operators/sample.ts +0 -72
- package/tools/installer/node_modules/rxjs/src/internal/operators/sampleTime.ts +0 -51
- package/tools/installer/node_modules/rxjs/src/internal/operators/scan.ts +0 -95
- package/tools/installer/node_modules/rxjs/src/internal/operators/scanInternals.ts +0 -62
- package/tools/installer/node_modules/rxjs/src/internal/operators/sequenceEqual.ts +0 -146
- package/tools/installer/node_modules/rxjs/src/internal/operators/share.ts +0 -267
- package/tools/installer/node_modules/rxjs/src/internal/operators/shareReplay.ts +0 -173
- package/tools/installer/node_modules/rxjs/src/internal/operators/single.ts +0 -121
- package/tools/installer/node_modules/rxjs/src/internal/operators/skip.ts +0 -39
- package/tools/installer/node_modules/rxjs/src/internal/operators/skipLast.ts +0 -95
- package/tools/installer/node_modules/rxjs/src/internal/operators/skipUntil.ts +0 -69
- package/tools/installer/node_modules/rxjs/src/internal/operators/skipWhile.ts +0 -60
- package/tools/installer/node_modules/rxjs/src/internal/operators/startWith.ts +0 -67
- package/tools/installer/node_modules/rxjs/src/internal/operators/subscribeOn.ts +0 -67
- package/tools/installer/node_modules/rxjs/src/internal/operators/switchAll.ts +0 -65
- package/tools/installer/node_modules/rxjs/src/internal/operators/switchMap.ts +0 -132
- package/tools/installer/node_modules/rxjs/src/internal/operators/switchMapTo.ts +0 -64
- package/tools/installer/node_modules/rxjs/src/internal/operators/switchScan.ts +0 -50
- package/tools/installer/node_modules/rxjs/src/internal/operators/take.ts +0 -71
- package/tools/installer/node_modules/rxjs/src/internal/operators/takeLast.ts +0 -81
- package/tools/installer/node_modules/rxjs/src/internal/operators/takeUntil.ts +0 -50
- package/tools/installer/node_modules/rxjs/src/internal/operators/takeWhile.ts +0 -66
- package/tools/installer/node_modules/rxjs/src/internal/operators/tap.ts +0 -215
- package/tools/installer/node_modules/rxjs/src/internal/operators/throttle.ts +0 -143
- package/tools/installer/node_modules/rxjs/src/internal/operators/throttleTime.ts +0 -62
- package/tools/installer/node_modules/rxjs/src/internal/operators/throwIfEmpty.ts +0 -60
- package/tools/installer/node_modules/rxjs/src/internal/operators/timeInterval.ts +0 -67
- package/tools/installer/node_modules/rxjs/src/internal/operators/timeout.ts +0 -403
- package/tools/installer/node_modules/rxjs/src/internal/operators/timeoutWith.ts +0 -116
- package/tools/installer/node_modules/rxjs/src/internal/operators/timestamp.ts +0 -39
- package/tools/installer/node_modules/rxjs/src/internal/operators/toArray.ts +0 -44
- package/tools/installer/node_modules/rxjs/src/internal/operators/window.ts +0 -98
- package/tools/installer/node_modules/rxjs/src/internal/operators/windowCount.ts +0 -129
- package/tools/installer/node_modules/rxjs/src/internal/operators/windowTime.ts +0 -207
- package/tools/installer/node_modules/rxjs/src/internal/operators/windowToggle.ts +0 -132
- package/tools/installer/node_modules/rxjs/src/internal/operators/windowWhen.ts +0 -125
- package/tools/installer/node_modules/rxjs/src/internal/operators/withLatestFrom.ts +0 -111
- package/tools/installer/node_modules/rxjs/src/internal/operators/zip.ts +0 -26
- package/tools/installer/node_modules/rxjs/src/internal/operators/zipAll.ts +0 -20
- package/tools/installer/node_modules/rxjs/src/internal/operators/zipWith.ts +0 -29
- package/tools/installer/node_modules/rxjs/src/internal/scheduled/scheduleArray.ts +0 -27
- package/tools/installer/node_modules/rxjs/src/internal/scheduled/scheduleAsyncIterable.ts +0 -31
- package/tools/installer/node_modules/rxjs/src/internal/scheduled/scheduleIterable.ts +0 -60
- package/tools/installer/node_modules/rxjs/src/internal/scheduled/scheduleObservable.ts +0 -8
- package/tools/installer/node_modules/rxjs/src/internal/scheduled/schedulePromise.ts +0 -8
- package/tools/installer/node_modules/rxjs/src/internal/scheduled/scheduleReadableStreamLike.ts +0 -8
- package/tools/installer/node_modules/rxjs/src/internal/scheduled/scheduled.ts +0 -50
- package/tools/installer/node_modules/rxjs/src/internal/scheduler/Action.ts +0 -34
- package/tools/installer/node_modules/rxjs/src/internal/scheduler/AnimationFrameAction.ts +0 -43
- package/tools/installer/node_modules/rxjs/src/internal/scheduler/AnimationFrameScheduler.ts +0 -43
- package/tools/installer/node_modules/rxjs/src/internal/scheduler/AsapAction.ts +0 -45
- package/tools/installer/node_modules/rxjs/src/internal/scheduler/AsapScheduler.ts +0 -38
- package/tools/installer/node_modules/rxjs/src/internal/scheduler/AsyncAction.ts +0 -150
- package/tools/installer/node_modules/rxjs/src/internal/scheduler/AsyncScheduler.ts +0 -52
- package/tools/installer/node_modules/rxjs/src/internal/scheduler/QueueAction.ts +0 -44
- package/tools/installer/node_modules/rxjs/src/internal/scheduler/QueueScheduler.ts +0 -4
- package/tools/installer/node_modules/rxjs/src/internal/scheduler/VirtualTimeScheduler.ts +0 -128
- package/tools/installer/node_modules/rxjs/src/internal/scheduler/animationFrame.ts +0 -41
- package/tools/installer/node_modules/rxjs/src/internal/scheduler/animationFrameProvider.ts +0 -44
- package/tools/installer/node_modules/rxjs/src/internal/scheduler/asap.ts +0 -44
- package/tools/installer/node_modules/rxjs/src/internal/scheduler/async.ts +0 -56
- package/tools/installer/node_modules/rxjs/src/internal/scheduler/dateTimestampProvider.ts +0 -14
- package/tools/installer/node_modules/rxjs/src/internal/scheduler/immediateProvider.ts +0 -31
- package/tools/installer/node_modules/rxjs/src/internal/scheduler/intervalProvider.ts +0 -31
- package/tools/installer/node_modules/rxjs/src/internal/scheduler/performanceTimestampProvider.ts +0 -14
- package/tools/installer/node_modules/rxjs/src/internal/scheduler/queue.ts +0 -72
- package/tools/installer/node_modules/rxjs/src/internal/scheduler/timeoutProvider.ts +0 -31
- package/tools/installer/node_modules/rxjs/src/internal/scheduler/timerHandle.ts +0 -1
- package/tools/installer/node_modules/rxjs/src/internal/symbol/iterator.ts +0 -9
- package/tools/installer/node_modules/rxjs/src/internal/symbol/observable.ts +0 -7
- package/tools/installer/node_modules/rxjs/src/internal/testing/ColdObservable.ts +0 -52
- package/tools/installer/node_modules/rxjs/src/internal/testing/HotObservable.ts +0 -53
- package/tools/installer/node_modules/rxjs/src/internal/testing/SubscriptionLog.ts +0 -5
- package/tools/installer/node_modules/rxjs/src/internal/testing/SubscriptionLoggable.ts +0 -22
- package/tools/installer/node_modules/rxjs/src/internal/testing/TestMessage.ts +0 -7
- package/tools/installer/node_modules/rxjs/src/internal/testing/TestScheduler.ts +0 -690
- package/tools/installer/node_modules/rxjs/src/internal/types.ts +0 -371
- package/tools/installer/node_modules/rxjs/src/internal/umd.ts +0 -26
- package/tools/installer/node_modules/rxjs/src/internal/util/ArgumentOutOfRangeError.ts +0 -28
- package/tools/installer/node_modules/rxjs/src/internal/util/EmptyError.ts +0 -30
- package/tools/installer/node_modules/rxjs/src/internal/util/Immediate.ts +0 -45
- package/tools/installer/node_modules/rxjs/src/internal/util/NotFoundError.ts +0 -26
- package/tools/installer/node_modules/rxjs/src/internal/util/ObjectUnsubscribedError.ts +0 -29
- package/tools/installer/node_modules/rxjs/src/internal/util/SequenceError.ts +0 -26
- package/tools/installer/node_modules/rxjs/src/internal/util/UnsubscriptionError.ts +0 -30
- package/tools/installer/node_modules/rxjs/src/internal/util/applyMixins.ts +0 -10
- package/tools/installer/node_modules/rxjs/src/internal/util/args.ts +0 -19
- package/tools/installer/node_modules/rxjs/src/internal/util/argsArgArrayOrObject.ts +0 -30
- package/tools/installer/node_modules/rxjs/src/internal/util/argsOrArgArray.ts +0 -9
- package/tools/installer/node_modules/rxjs/src/internal/util/arrRemove.ts +0 -11
- package/tools/installer/node_modules/rxjs/src/internal/util/createErrorClass.ts +0 -20
- package/tools/installer/node_modules/rxjs/src/internal/util/createObject.ts +0 -3
- package/tools/installer/node_modules/rxjs/src/internal/util/errorContext.ts +0 -42
- package/tools/installer/node_modules/rxjs/src/internal/util/executeSchedule.ts +0 -44
- package/tools/installer/node_modules/rxjs/src/internal/util/identity.ts +0 -45
- package/tools/installer/node_modules/rxjs/src/internal/util/isArrayLike.ts +0 -1
- package/tools/installer/node_modules/rxjs/src/internal/util/isAsyncIterable.ts +0 -5
- package/tools/installer/node_modules/rxjs/src/internal/util/isDate.ts +0 -10
- package/tools/installer/node_modules/rxjs/src/internal/util/isFunction.ts +0 -7
- package/tools/installer/node_modules/rxjs/src/internal/util/isInteropObservable.ts +0 -8
- package/tools/installer/node_modules/rxjs/src/internal/util/isIterable.ts +0 -7
- package/tools/installer/node_modules/rxjs/src/internal/util/isObservable.ts +0 -13
- package/tools/installer/node_modules/rxjs/src/internal/util/isPromise.ts +0 -9
- package/tools/installer/node_modules/rxjs/src/internal/util/isReadableStreamLike.ts +0 -23
- package/tools/installer/node_modules/rxjs/src/internal/util/isScheduler.ts +0 -6
- package/tools/installer/node_modules/rxjs/src/internal/util/lift.ts +0 -32
- package/tools/installer/node_modules/rxjs/src/internal/util/mapOneOrManyArgs.ts +0 -16
- package/tools/installer/node_modules/rxjs/src/internal/util/noop.ts +0 -2
- package/tools/installer/node_modules/rxjs/src/internal/util/not.ts +0 -3
- package/tools/installer/node_modules/rxjs/src/internal/util/pipe.ts +0 -95
- package/tools/installer/node_modules/rxjs/src/internal/util/reportUnhandledError.ts +0 -24
- package/tools/installer/node_modules/rxjs/src/internal/util/subscribeToArray.ts +0 -12
- package/tools/installer/node_modules/rxjs/src/internal/util/throwUnobservableError.ts +0 -12
- package/tools/installer/node_modules/rxjs/src/internal/util/workarounds.ts +0 -7
- package/tools/installer/node_modules/rxjs/src/operators/index.ts +0 -114
- package/tools/installer/node_modules/rxjs/src/testing/index.ts +0 -1
- package/tools/installer/node_modules/rxjs/src/tsconfig.base.json +0 -12
- package/tools/installer/node_modules/rxjs/src/tsconfig.cjs.json +0 -10
- package/tools/installer/node_modules/rxjs/src/tsconfig.cjs.spec.json +0 -10
- package/tools/installer/node_modules/rxjs/src/tsconfig.esm.json +0 -9
- package/tools/installer/node_modules/rxjs/src/tsconfig.esm5.json +0 -11
- package/tools/installer/node_modules/rxjs/src/tsconfig.esm5.rollup.json +0 -8
- package/tools/installer/node_modules/rxjs/src/tsconfig.types.json +0 -14
- package/tools/installer/node_modules/rxjs/src/tsconfig.types.spec.json +0 -7
- package/tools/installer/node_modules/rxjs/src/webSocket/index.ts +0 -2
- package/tools/installer/node_modules/rxjs/testing/package.json +0 -8
- package/tools/installer/node_modules/rxjs/tsconfig.json +0 -28
- package/tools/installer/node_modules/rxjs/webSocket/package.json +0 -8
- package/tools/installer/node_modules/safer-buffer/LICENSE +0 -21
- package/tools/installer/node_modules/safer-buffer/Porting-Buffer.md +0 -268
- package/tools/installer/node_modules/safer-buffer/Readme.md +0 -156
- package/tools/installer/node_modules/safer-buffer/dangerous.js +0 -58
- package/tools/installer/node_modules/safer-buffer/package.json +0 -34
- package/tools/installer/node_modules/safer-buffer/safer.js +0 -77
- package/tools/installer/node_modules/safer-buffer/tests.js +0 -406
- package/tools/installer/node_modules/signal-exit/LICENSE.txt +0 -16
- package/tools/installer/node_modules/signal-exit/README.md +0 -74
- package/tools/installer/node_modules/signal-exit/dist/cjs/browser.d.ts +0 -12
- package/tools/installer/node_modules/signal-exit/dist/cjs/browser.d.ts.map +0 -1
- package/tools/installer/node_modules/signal-exit/dist/cjs/browser.js +0 -10
- package/tools/installer/node_modules/signal-exit/dist/cjs/browser.js.map +0 -1
- package/tools/installer/node_modules/signal-exit/dist/cjs/index.d.ts +0 -48
- package/tools/installer/node_modules/signal-exit/dist/cjs/index.d.ts.map +0 -1
- package/tools/installer/node_modules/signal-exit/dist/cjs/index.js +0 -279
- package/tools/installer/node_modules/signal-exit/dist/cjs/index.js.map +0 -1
- package/tools/installer/node_modules/signal-exit/dist/cjs/package.json +0 -3
- package/tools/installer/node_modules/signal-exit/dist/cjs/signals.d.ts +0 -29
- package/tools/installer/node_modules/signal-exit/dist/cjs/signals.d.ts.map +0 -1
- package/tools/installer/node_modules/signal-exit/dist/cjs/signals.js +0 -42
- package/tools/installer/node_modules/signal-exit/dist/cjs/signals.js.map +0 -1
- package/tools/installer/node_modules/signal-exit/dist/mjs/browser.d.ts +0 -12
- package/tools/installer/node_modules/signal-exit/dist/mjs/browser.d.ts.map +0 -1
- package/tools/installer/node_modules/signal-exit/dist/mjs/browser.js +0 -4
- package/tools/installer/node_modules/signal-exit/dist/mjs/browser.js.map +0 -1
- package/tools/installer/node_modules/signal-exit/dist/mjs/index.d.ts +0 -48
- package/tools/installer/node_modules/signal-exit/dist/mjs/index.d.ts.map +0 -1
- package/tools/installer/node_modules/signal-exit/dist/mjs/index.js +0 -275
- package/tools/installer/node_modules/signal-exit/dist/mjs/index.js.map +0 -1
- package/tools/installer/node_modules/signal-exit/dist/mjs/package.json +0 -3
- package/tools/installer/node_modules/signal-exit/dist/mjs/signals.d.ts +0 -29
- package/tools/installer/node_modules/signal-exit/dist/mjs/signals.d.ts.map +0 -1
- package/tools/installer/node_modules/signal-exit/dist/mjs/signals.js +0 -39
- package/tools/installer/node_modules/signal-exit/dist/mjs/signals.js.map +0 -1
- package/tools/installer/node_modules/signal-exit/package.json +0 -106
- package/tools/installer/node_modules/stdin-discarder/index.d.ts +0 -13
- package/tools/installer/node_modules/stdin-discarder/index.js +0 -59
- package/tools/installer/node_modules/stdin-discarder/license +0 -9
- package/tools/installer/node_modules/stdin-discarder/package.json +0 -42
- package/tools/installer/node_modules/stdin-discarder/readme.md +0 -37
- package/tools/installer/node_modules/string-width/index.d.ts +0 -39
- package/tools/installer/node_modules/string-width/index.js +0 -82
- package/tools/installer/node_modules/string-width/license +0 -9
- package/tools/installer/node_modules/string-width/package.json +0 -64
- package/tools/installer/node_modules/string-width/readme.md +0 -66
- package/tools/installer/node_modules/strip-ansi/index.d.ts +0 -15
- package/tools/installer/node_modules/strip-ansi/index.js +0 -14
- package/tools/installer/node_modules/strip-ansi/license +0 -9
- package/tools/installer/node_modules/strip-ansi/package.json +0 -57
- package/tools/installer/node_modules/strip-ansi/readme.md +0 -41
- package/tools/installer/node_modules/tmp/LICENSE +0 -21
- package/tools/installer/node_modules/tmp/README.md +0 -314
- package/tools/installer/node_modules/tmp/lib/tmp.js +0 -611
- package/tools/installer/node_modules/tmp/package.json +0 -38
- package/tools/installer/node_modules/tslib/CopyrightNotice.txt +0 -15
- package/tools/installer/node_modules/tslib/LICENSE.txt +0 -12
- package/tools/installer/node_modules/tslib/README.md +0 -164
- package/tools/installer/node_modules/tslib/SECURITY.md +0 -41
- package/tools/installer/node_modules/tslib/modules/index.d.ts +0 -38
- package/tools/installer/node_modules/tslib/modules/index.js +0 -70
- package/tools/installer/node_modules/tslib/modules/package.json +0 -3
- package/tools/installer/node_modules/tslib/package.json +0 -47
- package/tools/installer/node_modules/tslib/tslib.d.ts +0 -460
- package/tools/installer/node_modules/tslib/tslib.es6.html +0 -1
- package/tools/installer/node_modules/tslib/tslib.es6.js +0 -402
- package/tools/installer/node_modules/tslib/tslib.es6.mjs +0 -401
- package/tools/installer/node_modules/tslib/tslib.html +0 -1
- package/tools/installer/node_modules/tslib/tslib.js +0 -484
- package/tools/installer/node_modules/type-fest/base.d.ts +0 -39
- package/tools/installer/node_modules/type-fest/index.d.ts +0 -2
- package/tools/installer/node_modules/type-fest/license +0 -9
- package/tools/installer/node_modules/type-fest/package.json +0 -58
- package/tools/installer/node_modules/type-fest/readme.md +0 -760
- package/tools/installer/node_modules/type-fest/source/async-return-type.d.ts +0 -23
- package/tools/installer/node_modules/type-fest/source/asyncify.d.ts +0 -31
- package/tools/installer/node_modules/type-fest/source/basic.d.ts +0 -51
- package/tools/installer/node_modules/type-fest/source/conditional-except.d.ts +0 -43
- package/tools/installer/node_modules/type-fest/source/conditional-keys.d.ts +0 -43
- package/tools/installer/node_modules/type-fest/source/conditional-pick.d.ts +0 -42
- package/tools/installer/node_modules/type-fest/source/entries.d.ts +0 -57
- package/tools/installer/node_modules/type-fest/source/entry.d.ts +0 -60
- package/tools/installer/node_modules/type-fest/source/except.d.ts +0 -22
- package/tools/installer/node_modules/type-fest/source/fixed-length-array.d.ts +0 -38
- package/tools/installer/node_modules/type-fest/source/iterable-element.d.ts +0 -46
- package/tools/installer/node_modules/type-fest/source/literal-union.d.ts +0 -33
- package/tools/installer/node_modules/type-fest/source/merge-exclusive.d.ts +0 -39
- package/tools/installer/node_modules/type-fest/source/merge.d.ts +0 -25
- package/tools/installer/node_modules/type-fest/source/mutable.d.ts +0 -38
- package/tools/installer/node_modules/type-fest/source/opaque.d.ts +0 -65
- package/tools/installer/node_modules/type-fest/source/package-json.d.ts +0 -611
- package/tools/installer/node_modules/type-fest/source/partial-deep.d.ts +0 -72
- package/tools/installer/node_modules/type-fest/source/promisable.d.ts +0 -23
- package/tools/installer/node_modules/type-fest/source/promise-value.d.ts +0 -27
- package/tools/installer/node_modules/type-fest/source/readonly-deep.d.ts +0 -59
- package/tools/installer/node_modules/type-fest/source/require-at-least-one.d.ts +0 -33
- package/tools/installer/node_modules/type-fest/source/require-exactly-one.d.ts +0 -35
- package/tools/installer/node_modules/type-fest/source/set-optional.d.ts +0 -33
- package/tools/installer/node_modules/type-fest/source/set-required.d.ts +0 -33
- package/tools/installer/node_modules/type-fest/source/set-return-type.d.ts +0 -29
- package/tools/installer/node_modules/type-fest/source/simplify.d.ts +0 -4
- package/tools/installer/node_modules/type-fest/source/stringified.d.ts +0 -21
- package/tools/installer/node_modules/type-fest/source/tsconfig-json.d.ts +0 -870
- package/tools/installer/node_modules/type-fest/source/typed-array.d.ts +0 -15
- package/tools/installer/node_modules/type-fest/source/union-to-intersection.d.ts +0 -58
- package/tools/installer/node_modules/type-fest/source/utilities.d.ts +0 -5
- package/tools/installer/node_modules/type-fest/source/value-of.d.ts +0 -40
- package/tools/installer/node_modules/type-fest/ts41/camel-case.d.ts +0 -64
- package/tools/installer/node_modules/type-fest/ts41/delimiter-case.d.ts +0 -85
- package/tools/installer/node_modules/type-fest/ts41/get.d.ts +0 -131
- package/tools/installer/node_modules/type-fest/ts41/index.d.ts +0 -10
- package/tools/installer/node_modules/type-fest/ts41/kebab-case.d.ts +0 -36
- package/tools/installer/node_modules/type-fest/ts41/pascal-case.d.ts +0 -36
- package/tools/installer/node_modules/type-fest/ts41/snake-case.d.ts +0 -35
- package/tools/installer/node_modules/type-fest/ts41/utilities.d.ts +0 -8
- package/tools/installer/node_modules/universalify/LICENSE +0 -20
- package/tools/installer/node_modules/universalify/README.md +0 -76
- package/tools/installer/node_modules/universalify/index.js +0 -24
- package/tools/installer/node_modules/universalify/package.json +0 -34
- package/tools/installer/node_modules/wrap-ansi/index.js +0 -186
- package/tools/installer/node_modules/wrap-ansi/license +0 -9
- package/tools/installer/node_modules/wrap-ansi/node_modules/ansi-regex/index.d.ts +0 -37
- package/tools/installer/node_modules/wrap-ansi/node_modules/ansi-regex/index.js +0 -10
- package/tools/installer/node_modules/wrap-ansi/node_modules/ansi-regex/license +0 -9
- package/tools/installer/node_modules/wrap-ansi/node_modules/ansi-regex/package.json +0 -55
- package/tools/installer/node_modules/wrap-ansi/node_modules/ansi-regex/readme.md +0 -78
- package/tools/installer/node_modules/wrap-ansi/node_modules/emoji-regex/LICENSE-MIT.txt +0 -20
- package/tools/installer/node_modules/wrap-ansi/node_modules/emoji-regex/README.md +0 -73
- package/tools/installer/node_modules/wrap-ansi/node_modules/emoji-regex/es2015/index.js +0 -6
- package/tools/installer/node_modules/wrap-ansi/node_modules/emoji-regex/es2015/text.js +0 -6
- package/tools/installer/node_modules/wrap-ansi/node_modules/emoji-regex/index.d.ts +0 -23
- package/tools/installer/node_modules/wrap-ansi/node_modules/emoji-regex/index.js +0 -6
- package/tools/installer/node_modules/wrap-ansi/node_modules/emoji-regex/package.json +0 -50
- package/tools/installer/node_modules/wrap-ansi/node_modules/emoji-regex/text.js +0 -6
- package/tools/installer/node_modules/wrap-ansi/node_modules/string-width/index.d.ts +0 -29
- package/tools/installer/node_modules/wrap-ansi/node_modules/string-width/index.js +0 -47
- package/tools/installer/node_modules/wrap-ansi/node_modules/string-width/license +0 -9
- package/tools/installer/node_modules/wrap-ansi/node_modules/string-width/package.json +0 -56
- package/tools/installer/node_modules/wrap-ansi/node_modules/string-width/readme.md +0 -50
- package/tools/installer/node_modules/wrap-ansi/node_modules/strip-ansi/index.d.ts +0 -17
- package/tools/installer/node_modules/wrap-ansi/node_modules/strip-ansi/index.js +0 -4
- package/tools/installer/node_modules/wrap-ansi/node_modules/strip-ansi/license +0 -9
- package/tools/installer/node_modules/wrap-ansi/node_modules/strip-ansi/package.json +0 -54
- package/tools/installer/node_modules/wrap-ansi/node_modules/strip-ansi/readme.md +0 -46
- package/tools/installer/node_modules/wrap-ansi/package.json +0 -61
- package/tools/installer/node_modules/wrap-ansi/readme.md +0 -97
- package/tools/installer/node_modules/yoctocolors-cjs/index.d.ts +0 -94
- package/tools/installer/node_modules/yoctocolors-cjs/index.js +0 -93
- package/tools/installer/node_modules/yoctocolors-cjs/license +0 -9
- package/tools/installer/node_modules/yoctocolors-cjs/package.json +0 -67
- package/tools/installer/node_modules/yoctocolors-cjs/readme.md +0 -130
@@ -0,0 +1,1030 @@
|
|
1
|
+
template:
|
2
|
+
id: game-architecture-template-v3
|
3
|
+
name: Game Architecture Document
|
4
|
+
version: 3.0
|
5
|
+
output:
|
6
|
+
format: markdown
|
7
|
+
filename: docs/game-architecture.md
|
8
|
+
title: "{{project_name}} Game Architecture Document"
|
9
|
+
|
10
|
+
workflow:
|
11
|
+
mode: interactive
|
12
|
+
elicitation: advanced-elicitation
|
13
|
+
|
14
|
+
sections:
|
15
|
+
- id: introduction
|
16
|
+
title: Introduction
|
17
|
+
instruction: |
|
18
|
+
If available, review any provided relevant documents to gather all relevant context before beginning. At a minimum you should locate and review: Game Design Document (GDD), Technical Preferences. If these are not available, ask the user what docs will provide the basis for the game architecture.
|
19
|
+
sections:
|
20
|
+
- id: intro-content
|
21
|
+
content: |
|
22
|
+
This document outlines the complete technical architecture for {{project_name}}, a 2D game built with Unity and C#. It serves as the technical foundation for AI-driven game development, ensuring consistency and scalability across all game systems.
|
23
|
+
|
24
|
+
This architecture is designed to support the gameplay mechanics defined in the Game Design Document while maintaining stable performance and cross-platform compatibility.
|
25
|
+
- id: starter-template
|
26
|
+
title: Starter Template or Existing Project
|
27
|
+
instruction: |
|
28
|
+
Before proceeding further with game architecture design, check if the project is based on a Unity template or existing codebase:
|
29
|
+
|
30
|
+
1. Review the GDD and brainstorming brief for any mentions of:
|
31
|
+
- Unity templates (2D Core, 2D Mobile, 2D URP, etc.)
|
32
|
+
- Existing Unity projects being used as a foundation
|
33
|
+
- Asset Store packages or game development frameworks
|
34
|
+
- Previous game projects to be cloned or adapted
|
35
|
+
|
36
|
+
2. If a starter template or existing project is mentioned:
|
37
|
+
- Ask the user to provide access via one of these methods:
|
38
|
+
- Link to the Unity template documentation
|
39
|
+
- Upload/attach the project files (for small projects)
|
40
|
+
- Share a link to the project repository (GitHub, GitLab, etc.)
|
41
|
+
- Analyze the starter/existing project to understand:
|
42
|
+
- Pre-configured Unity version and render pipeline
|
43
|
+
- Project structure and organization patterns
|
44
|
+
- Built-in packages and dependencies
|
45
|
+
- Existing architectural patterns and conventions
|
46
|
+
- Any limitations or constraints imposed by the starter
|
47
|
+
- Use this analysis to inform and align your architecture decisions
|
48
|
+
|
49
|
+
3. If no starter template is mentioned but this is a greenfield project:
|
50
|
+
- Suggest appropriate Unity templates based on the target platform
|
51
|
+
- Explain the benefits (faster setup, best practices, package integration)
|
52
|
+
- Let the user decide whether to use one
|
53
|
+
|
54
|
+
4. If the user confirms no starter template will be used:
|
55
|
+
- Proceed with architecture design from scratch
|
56
|
+
- Note that manual setup will be required for all Unity configuration
|
57
|
+
|
58
|
+
Document the decision here before proceeding with the architecture design. If none, just say N/A
|
59
|
+
elicit: true
|
60
|
+
- id: changelog
|
61
|
+
title: Change Log
|
62
|
+
type: table
|
63
|
+
columns: [Date, Version, Description, Author]
|
64
|
+
instruction: Track document versions and changes
|
65
|
+
|
66
|
+
- id: high-level-architecture
|
67
|
+
title: High Level Architecture
|
68
|
+
instruction: |
|
69
|
+
This section contains multiple subsections that establish the foundation of the game architecture. Present all subsections together at once.
|
70
|
+
elicit: true
|
71
|
+
sections:
|
72
|
+
- id: technical-summary
|
73
|
+
title: Technical Summary
|
74
|
+
instruction: |
|
75
|
+
Provide a brief paragraph (3-5 sentences) overview of:
|
76
|
+
- The game's overall architecture style (component-based Unity architecture)
|
77
|
+
- Key game systems and their relationships
|
78
|
+
- Primary technology choices (Unity, C#, target platforms)
|
79
|
+
- Core architectural patterns being used (MonoBehaviour components, ScriptableObjects, Unity Events)
|
80
|
+
- Reference back to the GDD goals and how this architecture supports them
|
81
|
+
- id: high-level-overview
|
82
|
+
title: High Level Overview
|
83
|
+
instruction: |
|
84
|
+
Based on the GDD's Technical Assumptions section, describe:
|
85
|
+
|
86
|
+
1. The main architectural style (component-based Unity architecture with MonoBehaviours)
|
87
|
+
2. Repository structure decision from GDD (single Unity project vs multiple projects)
|
88
|
+
3. Game system architecture (modular systems, manager singletons, data-driven design)
|
89
|
+
4. Primary player interaction flow and core game loop
|
90
|
+
5. Key architectural decisions and their rationale (render pipeline, input system, physics)
|
91
|
+
- id: project-diagram
|
92
|
+
title: High Level Project Diagram
|
93
|
+
type: mermaid
|
94
|
+
mermaid_type: graph
|
95
|
+
instruction: |
|
96
|
+
Create a Mermaid diagram that visualizes the high-level game architecture. Consider:
|
97
|
+
- Core game systems (Input, Physics, Rendering, Audio, UI)
|
98
|
+
- Game managers and their responsibilities
|
99
|
+
- Data flow between systems
|
100
|
+
- External integrations (platform services, analytics)
|
101
|
+
- Player interaction points
|
102
|
+
|
103
|
+
- id: architectural-patterns
|
104
|
+
title: Architectural and Design Patterns
|
105
|
+
instruction: |
|
106
|
+
List the key high-level patterns that will guide the game architecture. For each pattern:
|
107
|
+
|
108
|
+
1. Present 2-3 viable options if multiple exist
|
109
|
+
2. Provide your recommendation with clear rationale
|
110
|
+
3. Get user confirmation before finalizing
|
111
|
+
4. These patterns should align with the GDD's technical assumptions and project goals
|
112
|
+
|
113
|
+
Common Unity patterns to consider:
|
114
|
+
- Component patterns (MonoBehaviour composition, ScriptableObject data)
|
115
|
+
- Game management patterns (Singleton managers, Event systems, State machines)
|
116
|
+
- Data patterns (ScriptableObject configuration, Save/Load systems)
|
117
|
+
- Unity-specific patterns (Object pooling, Coroutines, Unity Events)
|
118
|
+
template: "- **{{pattern_name}}:** {{pattern_description}} - _Rationale:_ {{rationale}}"
|
119
|
+
examples:
|
120
|
+
- "**Component-Based Architecture:** Using MonoBehaviour components for game logic - _Rationale:_ Aligns with Unity's design philosophy and enables reusable, testable game systems"
|
121
|
+
- "**ScriptableObject Data:** Using ScriptableObjects for game configuration - _Rationale:_ Enables data-driven design and easy balancing without code changes"
|
122
|
+
- "**Event-Driven Communication:** Using Unity Events and C# events for system decoupling - _Rationale:_ Supports modular architecture and easier testing"
|
123
|
+
|
124
|
+
- id: tech-stack
|
125
|
+
title: Tech Stack
|
126
|
+
instruction: |
|
127
|
+
This is the DEFINITIVE technology selection section for the Unity game. Work with the user to make specific choices:
|
128
|
+
|
129
|
+
1. Review GDD technical assumptions and any preferences from {root}/data/technical-preferences.yaml or an attached technical-preferences
|
130
|
+
2. For each category, present 2-3 viable options with pros/cons
|
131
|
+
3. Make a clear recommendation based on project needs
|
132
|
+
4. Get explicit user approval for each selection
|
133
|
+
5. Document exact versions (avoid "latest" - pin specific versions)
|
134
|
+
6. This table is the single source of truth - all other docs must reference these choices
|
135
|
+
|
136
|
+
Key decisions to finalize - before displaying the table, ensure you are aware of or ask the user about:
|
137
|
+
|
138
|
+
- Unity version and render pipeline
|
139
|
+
- Target platforms and their specific requirements
|
140
|
+
- Unity Package Manager packages and versions
|
141
|
+
- Third-party assets or frameworks
|
142
|
+
- Platform SDKs and services
|
143
|
+
- Build and deployment tools
|
144
|
+
|
145
|
+
Upon render of the table, ensure the user is aware of the importance of this sections choices, should also look for gaps or disagreements with anything, ask for any clarifications if something is unclear why its in the list, and also right away elicit feedback.
|
146
|
+
elicit: true
|
147
|
+
sections:
|
148
|
+
- id: platform-infrastructure
|
149
|
+
title: Platform Infrastructure
|
150
|
+
template: |
|
151
|
+
- **Target Platforms:** {{target_platforms}}
|
152
|
+
- **Primary Platform:** {{primary_platform}}
|
153
|
+
- **Platform Services:** {{platform_services_list}}
|
154
|
+
- **Distribution:** {{distribution_channels}}
|
155
|
+
- id: technology-stack-table
|
156
|
+
title: Technology Stack Table
|
157
|
+
type: table
|
158
|
+
columns: [Category, Technology, Version, Purpose, Rationale]
|
159
|
+
instruction: Populate the technology stack table with all relevant Unity technologies
|
160
|
+
examples:
|
161
|
+
- "| **Game Engine** | Unity | 2022.3.21f1 | Core game development platform | Latest LTS version, stable 2D tooling, comprehensive package ecosystem |"
|
162
|
+
- "| **Language** | C# | 10.0 | Primary scripting language | Unity's native language, strong typing, excellent tooling |"
|
163
|
+
- "| **Render Pipeline** | Universal Render Pipeline (URP) | 14.0.10 | 2D/3D rendering | Optimized for mobile, excellent 2D features, future-proof |"
|
164
|
+
- "| **Input System** | Unity Input System | 1.7.0 | Cross-platform input handling | Modern input system, supports multiple devices, rebindable controls |"
|
165
|
+
- "| **Physics** | Unity 2D Physics | Built-in | 2D collision and physics | Integrated Box2D, optimized for 2D games |"
|
166
|
+
- "| **Audio** | Unity Audio | Built-in | Audio playback and mixing | Built-in audio system with mixer support |"
|
167
|
+
- "| **Testing** | Unity Test Framework | 1.1.33 | Unit and integration testing | Built-in testing framework based on NUnit |"
|
168
|
+
|
169
|
+
- id: data-models
|
170
|
+
title: Game Data Models
|
171
|
+
instruction: |
|
172
|
+
Define the core game data models/entities using Unity's ScriptableObject system:
|
173
|
+
|
174
|
+
1. Review GDD requirements and identify key game entities
|
175
|
+
2. For each model, explain its purpose and relationships
|
176
|
+
3. Include key attributes and data types appropriate for Unity/C#
|
177
|
+
4. Show relationships between models using ScriptableObject references
|
178
|
+
5. Discuss design decisions with user
|
179
|
+
|
180
|
+
Create a clear conceptual model before moving to specific implementations.
|
181
|
+
elicit: true
|
182
|
+
repeatable: true
|
183
|
+
sections:
|
184
|
+
- id: model
|
185
|
+
title: "{{model_name}}"
|
186
|
+
template: |
|
187
|
+
**Purpose:** {{model_purpose}}
|
188
|
+
|
189
|
+
**Key Attributes:**
|
190
|
+
- {{attribute_1}}: {{type_1}} - {{description_1}}
|
191
|
+
- {{attribute_2}}: {{type_2}} - {{description_2}}
|
192
|
+
|
193
|
+
**Relationships:**
|
194
|
+
- {{relationship_1}}
|
195
|
+
- {{relationship_2}}
|
196
|
+
|
197
|
+
**ScriptableObject Implementation:**
|
198
|
+
- Create as `[CreateAssetMenu]` ScriptableObject
|
199
|
+
- Store in `Assets/_Project/Data/{{ModelName}}/`
|
200
|
+
|
201
|
+
- id: components
|
202
|
+
title: Game Systems & Components
|
203
|
+
instruction: |
|
204
|
+
Based on the architectural patterns, tech stack, and data models from above:
|
205
|
+
|
206
|
+
1. Identify major game systems and their responsibilities
|
207
|
+
2. Consider Unity's component-based architecture with MonoBehaviours
|
208
|
+
3. Define clear interfaces between systems using Unity Events or C# events
|
209
|
+
4. For each system, specify:
|
210
|
+
- Primary responsibility and core functionality
|
211
|
+
- Key MonoBehaviour components and ScriptableObjects
|
212
|
+
- Dependencies on other systems
|
213
|
+
- Unity-specific implementation details (lifecycle methods, coroutines, etc.)
|
214
|
+
|
215
|
+
5. Create system diagrams where helpful using Unity terminology
|
216
|
+
elicit: true
|
217
|
+
sections:
|
218
|
+
- id: system-list
|
219
|
+
repeatable: true
|
220
|
+
title: "{{system_name}} System"
|
221
|
+
template: |
|
222
|
+
**Responsibility:** {{system_description}}
|
223
|
+
|
224
|
+
**Key Components:**
|
225
|
+
- {{component_1}} (MonoBehaviour)
|
226
|
+
- {{component_2}} (ScriptableObject)
|
227
|
+
- {{component_3}} (Manager/Controller)
|
228
|
+
|
229
|
+
**Unity Implementation Details:**
|
230
|
+
- Lifecycle: {{lifecycle_methods}}
|
231
|
+
- Events: {{unity_events_used}}
|
232
|
+
- Dependencies: {{system_dependencies}}
|
233
|
+
|
234
|
+
**Files to Create:**
|
235
|
+
- `Assets/_Project/Scripts/{{SystemName}}/{{MainScript}}.cs`
|
236
|
+
- `Assets/_Project/Prefabs/{{SystemName}}/{{MainPrefab}}.prefab`
|
237
|
+
- id: component-diagrams
|
238
|
+
title: System Interaction Diagrams
|
239
|
+
type: mermaid
|
240
|
+
instruction: |
|
241
|
+
Create Mermaid diagrams to visualize game system relationships. Options:
|
242
|
+
- System architecture diagram for high-level view
|
243
|
+
- Component interaction diagram for detailed relationships
|
244
|
+
- Sequence diagrams for complex game loops (Update, FixedUpdate flows)
|
245
|
+
Choose the most appropriate for clarity and Unity-specific understanding
|
246
|
+
|
247
|
+
- id: gameplay-systems
|
248
|
+
title: Gameplay Systems Architecture
|
249
|
+
instruction: |
|
250
|
+
Define the core gameplay systems that drive the player experience. Focus on game-specific logic and mechanics.
|
251
|
+
elicit: true
|
252
|
+
sections:
|
253
|
+
- id: gameplay-overview
|
254
|
+
title: Gameplay Systems Overview
|
255
|
+
template: |
|
256
|
+
**Core Game Loop:** {{core_game_loop_description}}
|
257
|
+
|
258
|
+
**Player Actions:** {{primary_player_actions}}
|
259
|
+
|
260
|
+
**Game State Flow:** {{game_state_transitions}}
|
261
|
+
- id: gameplay-components
|
262
|
+
title: Gameplay Component Architecture
|
263
|
+
template: |
|
264
|
+
**Player Controller Components:**
|
265
|
+
- {{player_controller_components}}
|
266
|
+
|
267
|
+
**Game Logic Components:**
|
268
|
+
- {{game_logic_components}}
|
269
|
+
|
270
|
+
**Interaction Systems:**
|
271
|
+
- {{interaction_system_components}}
|
272
|
+
|
273
|
+
- id: component-architecture
|
274
|
+
title: Component Architecture Details
|
275
|
+
instruction: |
|
276
|
+
Define detailed Unity component architecture patterns and conventions for the game.
|
277
|
+
elicit: true
|
278
|
+
sections:
|
279
|
+
- id: monobehaviour-patterns
|
280
|
+
title: MonoBehaviour Patterns
|
281
|
+
template: |
|
282
|
+
**Component Composition:** {{component_composition_approach}}
|
283
|
+
|
284
|
+
**Lifecycle Management:** {{lifecycle_management_patterns}}
|
285
|
+
|
286
|
+
**Component Communication:** {{component_communication_methods}}
|
287
|
+
- id: scriptableobject-usage
|
288
|
+
title: ScriptableObject Architecture
|
289
|
+
template: |
|
290
|
+
**Data Architecture:** {{scriptableobject_data_patterns}}
|
291
|
+
|
292
|
+
**Configuration Management:** {{config_scriptableobject_usage}}
|
293
|
+
|
294
|
+
**Runtime Data:** {{runtime_scriptableobject_patterns}}
|
295
|
+
|
296
|
+
- id: physics-config
|
297
|
+
title: Physics Configuration
|
298
|
+
instruction: |
|
299
|
+
Define Unity 2D physics setup and configuration for the game.
|
300
|
+
elicit: true
|
301
|
+
sections:
|
302
|
+
- id: physics-settings
|
303
|
+
title: Physics Settings
|
304
|
+
template: |
|
305
|
+
**Physics 2D Settings:** {{physics_2d_configuration}}
|
306
|
+
|
307
|
+
**Collision Layers:** {{collision_layer_matrix}}
|
308
|
+
|
309
|
+
**Physics Materials:** {{physics_materials_setup}}
|
310
|
+
- id: rigidbody-patterns
|
311
|
+
title: Rigidbody Patterns
|
312
|
+
template: |
|
313
|
+
**Player Physics:** {{player_rigidbody_setup}}
|
314
|
+
|
315
|
+
**Object Physics:** {{object_physics_patterns}}
|
316
|
+
|
317
|
+
**Performance Optimization:** {{physics_optimization_strategies}}
|
318
|
+
|
319
|
+
- id: input-system
|
320
|
+
title: Input System Architecture
|
321
|
+
instruction: |
|
322
|
+
Define input handling using Unity's Input System package.
|
323
|
+
elicit: true
|
324
|
+
sections:
|
325
|
+
- id: input-actions
|
326
|
+
title: Input Actions Configuration
|
327
|
+
template: |
|
328
|
+
**Input Action Assets:** {{input_action_asset_structure}}
|
329
|
+
|
330
|
+
**Action Maps:** {{input_action_maps}}
|
331
|
+
|
332
|
+
**Control Schemes:** {{control_schemes_definition}}
|
333
|
+
- id: input-handling
|
334
|
+
title: Input Handling Patterns
|
335
|
+
template: |
|
336
|
+
**Player Input:** {{player_input_component_usage}}
|
337
|
+
|
338
|
+
**UI Input:** {{ui_input_handling_patterns}}
|
339
|
+
|
340
|
+
**Input Validation:** {{input_validation_strategies}}
|
341
|
+
|
342
|
+
- id: state-machines
|
343
|
+
title: State Machine Architecture
|
344
|
+
instruction: |
|
345
|
+
Define state machine patterns for game states, player states, and AI behavior.
|
346
|
+
elicit: true
|
347
|
+
sections:
|
348
|
+
- id: game-state-machine
|
349
|
+
title: Game State Machine
|
350
|
+
template: |
|
351
|
+
**Game States:** {{game_state_definitions}}
|
352
|
+
|
353
|
+
**State Transitions:** {{game_state_transition_rules}}
|
354
|
+
|
355
|
+
**State Management:** {{game_state_manager_implementation}}
|
356
|
+
- id: entity-state-machines
|
357
|
+
title: Entity State Machines
|
358
|
+
template: |
|
359
|
+
**Player States:** {{player_state_machine_design}}
|
360
|
+
|
361
|
+
**AI Behavior States:** {{ai_state_machine_patterns}}
|
362
|
+
|
363
|
+
**Object States:** {{object_state_management}}
|
364
|
+
|
365
|
+
- id: ui-architecture
|
366
|
+
title: UI Architecture
|
367
|
+
instruction: |
|
368
|
+
Define Unity UI system architecture using UGUI or UI Toolkit.
|
369
|
+
elicit: true
|
370
|
+
sections:
|
371
|
+
- id: ui-system-choice
|
372
|
+
title: UI System Selection
|
373
|
+
template: |
|
374
|
+
**UI Framework:** {{ui_framework_choice}} (UGUI/UI Toolkit)
|
375
|
+
|
376
|
+
**UI Scaling:** {{ui_scaling_strategy}}
|
377
|
+
|
378
|
+
**Canvas Setup:** {{canvas_configuration}}
|
379
|
+
- id: ui-navigation
|
380
|
+
title: UI Navigation System
|
381
|
+
template: |
|
382
|
+
**Screen Management:** {{screen_management_system}}
|
383
|
+
|
384
|
+
**Navigation Flow:** {{ui_navigation_patterns}}
|
385
|
+
|
386
|
+
**Back Button Handling:** {{back_button_implementation}}
|
387
|
+
|
388
|
+
- id: ui-components
|
389
|
+
title: UI Component System
|
390
|
+
instruction: |
|
391
|
+
Define reusable UI components and their implementation patterns.
|
392
|
+
elicit: true
|
393
|
+
sections:
|
394
|
+
- id: ui-component-library
|
395
|
+
title: UI Component Library
|
396
|
+
template: |
|
397
|
+
**Base Components:** {{base_ui_components}}
|
398
|
+
|
399
|
+
**Custom Components:** {{custom_ui_components}}
|
400
|
+
|
401
|
+
**Component Prefabs:** {{ui_prefab_organization}}
|
402
|
+
- id: ui-data-binding
|
403
|
+
title: UI Data Binding
|
404
|
+
template: |
|
405
|
+
**Data Binding Patterns:** {{ui_data_binding_approach}}
|
406
|
+
|
407
|
+
**UI Events:** {{ui_event_system}}
|
408
|
+
|
409
|
+
**View Model Patterns:** {{ui_viewmodel_implementation}}
|
410
|
+
|
411
|
+
- id: ui-state-management
|
412
|
+
title: UI State Management
|
413
|
+
instruction: |
|
414
|
+
Define how UI state is managed across the game.
|
415
|
+
elicit: true
|
416
|
+
sections:
|
417
|
+
- id: ui-state-patterns
|
418
|
+
title: UI State Patterns
|
419
|
+
template: |
|
420
|
+
**State Persistence:** {{ui_state_persistence}}
|
421
|
+
|
422
|
+
**Screen State:** {{screen_state_management}}
|
423
|
+
|
424
|
+
**UI Configuration:** {{ui_configuration_management}}
|
425
|
+
|
426
|
+
- id: scene-management
|
427
|
+
title: Scene Management Architecture
|
428
|
+
instruction: |
|
429
|
+
Define scene loading, unloading, and transition strategies.
|
430
|
+
elicit: true
|
431
|
+
sections:
|
432
|
+
- id: scene-structure
|
433
|
+
title: Scene Structure
|
434
|
+
template: |
|
435
|
+
**Scene Organization:** {{scene_organization_strategy}}
|
436
|
+
|
437
|
+
**Scene Hierarchy:** {{scene_hierarchy_patterns}}
|
438
|
+
|
439
|
+
**Persistent Scenes:** {{persistent_scene_usage}}
|
440
|
+
- id: scene-loading
|
441
|
+
title: Scene Loading System
|
442
|
+
template: |
|
443
|
+
**Loading Strategies:** {{scene_loading_patterns}}
|
444
|
+
|
445
|
+
**Async Loading:** {{async_scene_loading_implementation}}
|
446
|
+
|
447
|
+
**Loading Screens:** {{loading_screen_management}}
|
448
|
+
|
449
|
+
- id: data-persistence
|
450
|
+
title: Data Persistence Architecture
|
451
|
+
instruction: |
|
452
|
+
Define save system and data persistence strategies.
|
453
|
+
elicit: true
|
454
|
+
sections:
|
455
|
+
- id: save-data-structure
|
456
|
+
title: Save Data Structure
|
457
|
+
template: |
|
458
|
+
**Save Data Models:** {{save_data_model_design}}
|
459
|
+
|
460
|
+
**Serialization Format:** {{serialization_format_choice}}
|
461
|
+
|
462
|
+
**Data Validation:** {{save_data_validation}}
|
463
|
+
- id: persistence-strategy
|
464
|
+
title: Persistence Strategy
|
465
|
+
template: |
|
466
|
+
**Save Triggers:** {{save_trigger_events}}
|
467
|
+
|
468
|
+
**Auto-Save:** {{auto_save_implementation}}
|
469
|
+
|
470
|
+
**Cloud Save:** {{cloud_save_integration}}
|
471
|
+
|
472
|
+
- id: save-system
|
473
|
+
title: Save System Implementation
|
474
|
+
instruction: |
|
475
|
+
Define detailed save system implementation patterns.
|
476
|
+
elicit: true
|
477
|
+
sections:
|
478
|
+
- id: save-load-api
|
479
|
+
title: Save/Load API
|
480
|
+
template: |
|
481
|
+
**Save Interface:** {{save_interface_design}}
|
482
|
+
|
483
|
+
**Load Interface:** {{load_interface_design}}
|
484
|
+
|
485
|
+
**Error Handling:** {{save_load_error_handling}}
|
486
|
+
- id: save-file-management
|
487
|
+
title: Save File Management
|
488
|
+
template: |
|
489
|
+
**File Structure:** {{save_file_structure}}
|
490
|
+
|
491
|
+
**Backup Strategy:** {{save_backup_strategy}}
|
492
|
+
|
493
|
+
**Migration:** {{save_data_migration_strategy}}
|
494
|
+
|
495
|
+
- id: analytics-integration
|
496
|
+
title: Analytics Integration
|
497
|
+
instruction: |
|
498
|
+
Define analytics tracking and integration patterns.
|
499
|
+
condition: Game requires analytics tracking
|
500
|
+
elicit: true
|
501
|
+
sections:
|
502
|
+
- id: analytics-events
|
503
|
+
title: Analytics Event Design
|
504
|
+
template: |
|
505
|
+
**Event Categories:** {{analytics_event_categories}}
|
506
|
+
|
507
|
+
**Custom Events:** {{custom_analytics_events}}
|
508
|
+
|
509
|
+
**Player Progression:** {{progression_analytics}}
|
510
|
+
- id: analytics-implementation
|
511
|
+
title: Analytics Implementation
|
512
|
+
template: |
|
513
|
+
**Analytics SDK:** {{analytics_sdk_choice}}
|
514
|
+
|
515
|
+
**Event Tracking:** {{event_tracking_patterns}}
|
516
|
+
|
517
|
+
**Privacy Compliance:** {{analytics_privacy_considerations}}
|
518
|
+
|
519
|
+
- id: multiplayer-architecture
|
520
|
+
title: Multiplayer Architecture
|
521
|
+
instruction: |
|
522
|
+
Define multiplayer system architecture if applicable.
|
523
|
+
condition: Game includes multiplayer features
|
524
|
+
elicit: true
|
525
|
+
sections:
|
526
|
+
- id: networking-approach
|
527
|
+
title: Networking Approach
|
528
|
+
template: |
|
529
|
+
**Networking Solution:** {{networking_solution_choice}}
|
530
|
+
|
531
|
+
**Architecture Pattern:** {{multiplayer_architecture_pattern}}
|
532
|
+
|
533
|
+
**Synchronization:** {{state_synchronization_strategy}}
|
534
|
+
- id: multiplayer-systems
|
535
|
+
title: Multiplayer System Components
|
536
|
+
template: |
|
537
|
+
**Client Components:** {{multiplayer_client_components}}
|
538
|
+
|
539
|
+
**Server Components:** {{multiplayer_server_components}}
|
540
|
+
|
541
|
+
**Network Messages:** {{network_message_design}}
|
542
|
+
|
543
|
+
- id: rendering-pipeline
|
544
|
+
title: Rendering Pipeline Configuration
|
545
|
+
instruction: |
|
546
|
+
Define Unity rendering pipeline setup and optimization.
|
547
|
+
elicit: true
|
548
|
+
sections:
|
549
|
+
- id: render-pipeline-setup
|
550
|
+
title: Render Pipeline Setup
|
551
|
+
template: |
|
552
|
+
**Pipeline Choice:** {{render_pipeline_choice}} (URP/Built-in)
|
553
|
+
|
554
|
+
**Pipeline Asset:** {{render_pipeline_asset_config}}
|
555
|
+
|
556
|
+
**Quality Settings:** {{quality_settings_configuration}}
|
557
|
+
- id: rendering-optimization
|
558
|
+
title: Rendering Optimization
|
559
|
+
template: |
|
560
|
+
**Batching Strategies:** {{sprite_batching_optimization}}
|
561
|
+
|
562
|
+
**Draw Call Optimization:** {{draw_call_reduction_strategies}}
|
563
|
+
|
564
|
+
**Texture Optimization:** {{texture_optimization_settings}}
|
565
|
+
|
566
|
+
- id: shader-guidelines
|
567
|
+
title: Shader Guidelines
|
568
|
+
instruction: |
|
569
|
+
Define shader usage and custom shader guidelines.
|
570
|
+
elicit: true
|
571
|
+
sections:
|
572
|
+
- id: shader-usage
|
573
|
+
title: Shader Usage Patterns
|
574
|
+
template: |
|
575
|
+
**Built-in Shaders:** {{builtin_shader_usage}}
|
576
|
+
|
577
|
+
**Custom Shaders:** {{custom_shader_requirements}}
|
578
|
+
|
579
|
+
**Shader Variants:** {{shader_variant_management}}
|
580
|
+
- id: shader-performance
|
581
|
+
title: Shader Performance Guidelines
|
582
|
+
template: |
|
583
|
+
**Mobile Optimization:** {{mobile_shader_optimization}}
|
584
|
+
|
585
|
+
**Performance Budgets:** {{shader_performance_budgets}}
|
586
|
+
|
587
|
+
**Profiling Guidelines:** {{shader_profiling_approach}}
|
588
|
+
|
589
|
+
- id: sprite-management
|
590
|
+
title: Sprite Management
|
591
|
+
instruction: |
|
592
|
+
Define sprite asset management and optimization strategies.
|
593
|
+
elicit: true
|
594
|
+
sections:
|
595
|
+
- id: sprite-organization
|
596
|
+
title: Sprite Organization
|
597
|
+
template: |
|
598
|
+
**Atlas Strategy:** {{sprite_atlas_organization}}
|
599
|
+
|
600
|
+
**Sprite Naming:** {{sprite_naming_conventions}}
|
601
|
+
|
602
|
+
**Import Settings:** {{sprite_import_settings}}
|
603
|
+
- id: sprite-optimization
|
604
|
+
title: Sprite Optimization
|
605
|
+
template: |
|
606
|
+
**Compression Settings:** {{sprite_compression_settings}}
|
607
|
+
|
608
|
+
**Resolution Strategy:** {{sprite_resolution_strategy}}
|
609
|
+
|
610
|
+
**Memory Optimization:** {{sprite_memory_optimization}}
|
611
|
+
|
612
|
+
- id: particle-systems
|
613
|
+
title: Particle System Architecture
|
614
|
+
instruction: |
|
615
|
+
Define particle system usage and optimization.
|
616
|
+
elicit: true
|
617
|
+
sections:
|
618
|
+
- id: particle-design
|
619
|
+
title: Particle System Design
|
620
|
+
template: |
|
621
|
+
**Effect Categories:** {{particle_effect_categories}}
|
622
|
+
|
623
|
+
**Prefab Organization:** {{particle_prefab_organization}}
|
624
|
+
|
625
|
+
**Pooling Strategy:** {{particle_pooling_implementation}}
|
626
|
+
- id: particle-performance
|
627
|
+
title: Particle Performance
|
628
|
+
template: |
|
629
|
+
**Performance Budgets:** {{particle_performance_budgets}}
|
630
|
+
|
631
|
+
**Mobile Optimization:** {{particle_mobile_optimization}}
|
632
|
+
|
633
|
+
**LOD Strategy:** {{particle_lod_implementation}}
|
634
|
+
|
635
|
+
- id: audio-architecture
|
636
|
+
title: Audio Architecture
|
637
|
+
instruction: |
|
638
|
+
Define audio system architecture and implementation.
|
639
|
+
elicit: true
|
640
|
+
sections:
|
641
|
+
- id: audio-system-design
|
642
|
+
title: Audio System Design
|
643
|
+
template: |
|
644
|
+
**Audio Manager:** {{audio_manager_implementation}}
|
645
|
+
|
646
|
+
**Audio Sources:** {{audio_source_management}}
|
647
|
+
|
648
|
+
**3D Audio:** {{spatial_audio_implementation}}
|
649
|
+
- id: audio-categories
|
650
|
+
title: Audio Categories
|
651
|
+
template: |
|
652
|
+
**Music System:** {{music_system_architecture}}
|
653
|
+
|
654
|
+
**Sound Effects:** {{sfx_system_design}}
|
655
|
+
|
656
|
+
**Voice/Dialog:** {{dialog_system_implementation}}
|
657
|
+
|
658
|
+
- id: audio-mixing
|
659
|
+
title: Audio Mixing Configuration
|
660
|
+
instruction: |
|
661
|
+
Define Unity Audio Mixer setup and configuration.
|
662
|
+
elicit: true
|
663
|
+
sections:
|
664
|
+
- id: mixer-setup
|
665
|
+
title: Audio Mixer Setup
|
666
|
+
template: |
|
667
|
+
**Mixer Groups:** {{audio_mixer_group_structure}}
|
668
|
+
|
669
|
+
**Effects Chain:** {{audio_effects_configuration}}
|
670
|
+
|
671
|
+
**Snapshot System:** {{audio_snapshot_usage}}
|
672
|
+
- id: dynamic-mixing
|
673
|
+
title: Dynamic Audio Mixing
|
674
|
+
template: |
|
675
|
+
**Volume Control:** {{volume_control_implementation}}
|
676
|
+
|
677
|
+
**Dynamic Range:** {{dynamic_range_management}}
|
678
|
+
|
679
|
+
**Platform Optimization:** {{platform_audio_optimization}}
|
680
|
+
|
681
|
+
- id: sound-banks
|
682
|
+
title: Sound Bank Management
|
683
|
+
instruction: |
|
684
|
+
Define sound asset organization and loading strategies.
|
685
|
+
elicit: true
|
686
|
+
sections:
|
687
|
+
- id: sound-organization
|
688
|
+
title: Sound Asset Organization
|
689
|
+
template: |
|
690
|
+
**Bank Structure:** {{sound_bank_organization}}
|
691
|
+
|
692
|
+
**Loading Strategy:** {{audio_loading_patterns}}
|
693
|
+
|
694
|
+
**Memory Management:** {{audio_memory_management}}
|
695
|
+
- id: sound-streaming
|
696
|
+
title: Audio Streaming
|
697
|
+
template: |
|
698
|
+
**Streaming Strategy:** {{audio_streaming_implementation}}
|
699
|
+
|
700
|
+
**Compression Settings:** {{audio_compression_settings}}
|
701
|
+
|
702
|
+
**Platform Considerations:** {{platform_audio_considerations}}
|
703
|
+
|
704
|
+
- id: unity-conventions
|
705
|
+
title: Unity Development Conventions
|
706
|
+
instruction: |
|
707
|
+
Define Unity-specific development conventions and best practices.
|
708
|
+
elicit: true
|
709
|
+
sections:
|
710
|
+
- id: unity-best-practices
|
711
|
+
title: Unity Best Practices
|
712
|
+
template: |
|
713
|
+
**Component Design:** {{unity_component_best_practices}}
|
714
|
+
|
715
|
+
**Performance Guidelines:** {{unity_performance_guidelines}}
|
716
|
+
|
717
|
+
**Memory Management:** {{unity_memory_best_practices}}
|
718
|
+
- id: unity-workflow
|
719
|
+
title: Unity Workflow Conventions
|
720
|
+
template: |
|
721
|
+
**Scene Workflow:** {{scene_workflow_conventions}}
|
722
|
+
|
723
|
+
**Prefab Workflow:** {{prefab_workflow_conventions}}
|
724
|
+
|
725
|
+
**Asset Workflow:** {{asset_workflow_conventions}}
|
726
|
+
|
727
|
+
- id: external-integrations
|
728
|
+
title: External Integrations
|
729
|
+
condition: Game requires external service integrations
|
730
|
+
instruction: |
|
731
|
+
For each external service integration required by the game:
|
732
|
+
|
733
|
+
1. Identify services needed based on GDD requirements and platform needs
|
734
|
+
2. If documentation URLs are unknown, ask user for specifics
|
735
|
+
3. Document authentication methods and Unity-specific integration approaches
|
736
|
+
4. List specific APIs that will be used
|
737
|
+
5. Note any platform-specific SDKs or Unity packages required
|
738
|
+
|
739
|
+
If no external integrations are needed, state this explicitly and skip to next section.
|
740
|
+
elicit: true
|
741
|
+
repeatable: true
|
742
|
+
sections:
|
743
|
+
- id: integration
|
744
|
+
title: "{{service_name}} Integration"
|
745
|
+
template: |
|
746
|
+
- **Purpose:** {{service_purpose}}
|
747
|
+
- **Documentation:** {{service_docs_url}}
|
748
|
+
- **Unity Package:** {{unity_package_name}} {{version}}
|
749
|
+
- **Platform SDK:** {{platform_sdk_requirements}}
|
750
|
+
- **Authentication:** {{auth_method}}
|
751
|
+
|
752
|
+
**Key Features Used:**
|
753
|
+
- {{feature_1}} - {{feature_purpose}}
|
754
|
+
- {{feature_2}} - {{feature_purpose}}
|
755
|
+
|
756
|
+
**Unity Implementation Notes:** {{unity_integration_details}}
|
757
|
+
|
758
|
+
- id: core-workflows
|
759
|
+
title: Core Game Workflows
|
760
|
+
type: mermaid
|
761
|
+
mermaid_type: sequence
|
762
|
+
instruction: |
|
763
|
+
Illustrate key game workflows using sequence diagrams:
|
764
|
+
|
765
|
+
1. Identify critical player journeys from GDD (game loop, level progression, etc.)
|
766
|
+
2. Show system interactions including Unity lifecycle methods
|
767
|
+
3. Include error handling paths and state transitions
|
768
|
+
4. Document async operations (scene loading, asset loading)
|
769
|
+
5. Create both high-level game flow and detailed system interaction diagrams
|
770
|
+
|
771
|
+
Focus on workflows that clarify Unity-specific architecture decisions or complex system interactions.
|
772
|
+
elicit: true
|
773
|
+
|
774
|
+
- id: unity-project-structure
|
775
|
+
title: Unity Project Structure
|
776
|
+
type: code
|
777
|
+
language: plaintext
|
778
|
+
instruction: |
|
779
|
+
Create a Unity project folder structure that reflects:
|
780
|
+
|
781
|
+
1. Unity best practices for 2D game organization
|
782
|
+
2. The selected render pipeline and packages
|
783
|
+
3. Component organization from above systems
|
784
|
+
4. Clear separation of concerns for game assets
|
785
|
+
5. Testing structure for Unity Test Framework
|
786
|
+
6. Platform-specific asset organization
|
787
|
+
|
788
|
+
Follow Unity naming conventions and folder organization standards.
|
789
|
+
elicit: true
|
790
|
+
examples:
|
791
|
+
- |
|
792
|
+
ProjectName/
|
793
|
+
├── Assets/
|
794
|
+
│ └── _Project/ # Main project folder
|
795
|
+
│ ├── Scenes/ # Game scenes
|
796
|
+
│ │ ├── Gameplay/ # Level scenes
|
797
|
+
│ │ ├── UI/ # UI-only scenes
|
798
|
+
│ │ └── Loading/ # Loading scenes
|
799
|
+
│ ├── Scripts/ # C# scripts
|
800
|
+
│ │ ├── Core/ # Core systems
|
801
|
+
│ │ ├── Gameplay/ # Gameplay mechanics
|
802
|
+
│ │ ├── UI/ # UI controllers
|
803
|
+
│ │ └── Data/ # ScriptableObjects
|
804
|
+
│ ├── Prefabs/ # Reusable game objects
|
805
|
+
│ │ ├── Characters/ # Player, enemies
|
806
|
+
│ │ ├── Environment/ # Level elements
|
807
|
+
│ │ └── UI/ # UI prefabs
|
808
|
+
│ ├── Art/ # Visual assets
|
809
|
+
│ │ ├── Sprites/ # 2D sprites
|
810
|
+
│ │ ├── Materials/ # Unity materials
|
811
|
+
│ │ └── Shaders/ # Custom shaders
|
812
|
+
│ ├── Audio/ # Audio assets
|
813
|
+
│ │ ├── Music/ # Background music
|
814
|
+
│ │ ├── SFX/ # Sound effects
|
815
|
+
│ │ └── Mixers/ # Audio mixers
|
816
|
+
│ ├── Data/ # Game data
|
817
|
+
│ │ ├── Settings/ # Game settings
|
818
|
+
│ │ └── Balance/ # Balance data
|
819
|
+
│ └── Tests/ # Unity tests
|
820
|
+
│ ├── EditMode/ # Edit mode tests
|
821
|
+
│ └── PlayMode/ # Play mode tests
|
822
|
+
├── Packages/ # Package Manager
|
823
|
+
│ └── manifest.json # Package dependencies
|
824
|
+
└── ProjectSettings/ # Unity project settings
|
825
|
+
|
826
|
+
- id: infrastructure-deployment
|
827
|
+
title: Infrastructure and Deployment
|
828
|
+
instruction: |
|
829
|
+
Define the Unity build and deployment architecture:
|
830
|
+
|
831
|
+
1. Use Unity's build system and any additional tools
|
832
|
+
2. Choose deployment strategy appropriate for target platforms
|
833
|
+
3. Define environments (development, staging, production builds)
|
834
|
+
4. Establish version control and build pipeline practices
|
835
|
+
5. Consider platform-specific requirements and store submissions
|
836
|
+
|
837
|
+
Get user input on build preferences and CI/CD tool choices for Unity projects.
|
838
|
+
elicit: true
|
839
|
+
sections:
|
840
|
+
- id: unity-build-configuration
|
841
|
+
title: Unity Build Configuration
|
842
|
+
template: |
|
843
|
+
- **Unity Version:** {{unity_version}} LTS
|
844
|
+
- **Build Pipeline:** {{build_pipeline_type}}
|
845
|
+
- **Addressables:** {{addressables_usage}}
|
846
|
+
- **Asset Bundles:** {{asset_bundle_strategy}}
|
847
|
+
- id: deployment-strategy
|
848
|
+
title: Deployment Strategy
|
849
|
+
template: |
|
850
|
+
- **Build Automation:** {{build_automation_tool}}
|
851
|
+
- **Version Control:** {{version_control_integration}}
|
852
|
+
- **Distribution:** {{distribution_platforms}}
|
853
|
+
- id: environments
|
854
|
+
title: Build Environments
|
855
|
+
repeatable: true
|
856
|
+
template: "- **{{env_name}}:** {{env_purpose}} - {{platform_settings}}"
|
857
|
+
- id: platform-specific-builds
|
858
|
+
title: Platform-Specific Build Settings
|
859
|
+
type: code
|
860
|
+
language: text
|
861
|
+
template: "{{platform_build_configurations}}"
|
862
|
+
|
863
|
+
- id: coding-standards
|
864
|
+
title: Coding Standards
|
865
|
+
instruction: |
|
866
|
+
These standards are MANDATORY for AI agents working on Unity game development. Work with user to define ONLY the critical rules needed to prevent bad Unity code. Explain that:
|
867
|
+
|
868
|
+
1. This section directly controls AI developer behavior
|
869
|
+
2. Keep it minimal - assume AI knows general C# and Unity best practices
|
870
|
+
3. Focus on project-specific Unity conventions and gotchas
|
871
|
+
4. Overly detailed standards bloat context and slow development
|
872
|
+
5. Standards will be extracted to separate file for dev agent use
|
873
|
+
|
874
|
+
For each standard, get explicit user confirmation it's necessary.
|
875
|
+
elicit: true
|
876
|
+
sections:
|
877
|
+
- id: core-standards
|
878
|
+
title: Core Standards
|
879
|
+
template: |
|
880
|
+
- **Unity Version:** {{unity_version}} LTS
|
881
|
+
- **C# Language Version:** {{csharp_version}}
|
882
|
+
- **Code Style:** Microsoft C# conventions + Unity naming
|
883
|
+
- **Testing Framework:** Unity Test Framework (NUnit-based)
|
884
|
+
- id: unity-naming-conventions
|
885
|
+
title: Unity Naming Conventions
|
886
|
+
type: table
|
887
|
+
columns: [Element, Convention, Example]
|
888
|
+
instruction: Only include if deviating from Unity defaults
|
889
|
+
examples:
|
890
|
+
- "| MonoBehaviour | PascalCase + Component suffix | PlayerController, HealthSystem |"
|
891
|
+
- "| ScriptableObject | PascalCase + Data/Config suffix | PlayerData, GameConfig |"
|
892
|
+
- "| Prefab | PascalCase descriptive | PlayerCharacter, EnvironmentTile |"
|
893
|
+
- id: critical-rules
|
894
|
+
title: Critical Unity Rules
|
895
|
+
instruction: |
|
896
|
+
List ONLY rules that AI might violate or Unity-specific requirements. Examples:
|
897
|
+
- "Always cache GetComponent calls in Awake() or Start()"
|
898
|
+
- "Use [SerializeField] for private fields that need Inspector access"
|
899
|
+
- "Prefer UnityEvents over C# events for Inspector-assignable callbacks"
|
900
|
+
- "Never call GameObject.Find() in Update, FixedUpdate, or LateUpdate"
|
901
|
+
|
902
|
+
Avoid obvious rules like "follow SOLID principles" or "optimize performance"
|
903
|
+
repeatable: true
|
904
|
+
template: "- **{{rule_name}}:** {{rule_description}}"
|
905
|
+
- id: unity-specifics
|
906
|
+
title: Unity-Specific Guidelines
|
907
|
+
condition: Critical Unity-specific rules needed
|
908
|
+
instruction: Add ONLY if critical for preventing AI mistakes with Unity APIs
|
909
|
+
sections:
|
910
|
+
- id: unity-lifecycle
|
911
|
+
title: Unity Lifecycle Rules
|
912
|
+
repeatable: true
|
913
|
+
template: "- **{{lifecycle_method}}:** {{usage_rule}}"
|
914
|
+
|
915
|
+
- id: test-strategy
|
916
|
+
title: Test Strategy and Standards
|
917
|
+
instruction: |
|
918
|
+
Work with user to define comprehensive Unity test strategy:
|
919
|
+
|
920
|
+
1. Use Unity Test Framework for both Edit Mode and Play Mode tests
|
921
|
+
2. Decide on test-driven development vs test-after approach
|
922
|
+
3. Define test organization and naming for Unity projects
|
923
|
+
4. Establish coverage goals for game logic
|
924
|
+
5. Determine integration test infrastructure (scene-based testing)
|
925
|
+
6. Plan for test data and mock external dependencies
|
926
|
+
|
927
|
+
Note: Basic info goes in Coding Standards for dev agent. This detailed section is for comprehensive testing strategy.
|
928
|
+
elicit: true
|
929
|
+
sections:
|
930
|
+
- id: testing-philosophy
|
931
|
+
title: Testing Philosophy
|
932
|
+
template: |
|
933
|
+
- **Approach:** {{test_approach}}
|
934
|
+
- **Coverage Goals:** {{coverage_targets}}
|
935
|
+
- **Test Distribution:** {{edit_mode_vs_play_mode_split}}
|
936
|
+
- id: unity-test-types
|
937
|
+
title: Unity Test Types and Organization
|
938
|
+
sections:
|
939
|
+
- id: edit-mode-tests
|
940
|
+
title: Edit Mode Tests
|
941
|
+
template: |
|
942
|
+
- **Framework:** Unity Test Framework (Edit Mode)
|
943
|
+
- **File Convention:** {{edit_mode_test_naming}}
|
944
|
+
- **Location:** `Assets/_Project/Tests/EditMode/`
|
945
|
+
- **Purpose:** C# logic testing without Unity runtime
|
946
|
+
- **Coverage Requirement:** {{edit_mode_coverage}}
|
947
|
+
|
948
|
+
**AI Agent Requirements:**
|
949
|
+
- Test ScriptableObject data validation
|
950
|
+
- Test utility classes and static methods
|
951
|
+
- Test serialization/deserialization logic
|
952
|
+
- Mock Unity APIs where necessary
|
953
|
+
- id: play-mode-tests
|
954
|
+
title: Play Mode Tests
|
955
|
+
template: |
|
956
|
+
- **Framework:** Unity Test Framework (Play Mode)
|
957
|
+
- **Location:** `Assets/_Project/Tests/PlayMode/`
|
958
|
+
- **Purpose:** Integration testing with Unity runtime
|
959
|
+
- **Test Scenes:** {{test_scene_requirements}}
|
960
|
+
- **Coverage Requirement:** {{play_mode_coverage}}
|
961
|
+
|
962
|
+
**AI Agent Requirements:**
|
963
|
+
- Test MonoBehaviour component interactions
|
964
|
+
- Test scene loading and GameObject lifecycle
|
965
|
+
- Test physics interactions and collision systems
|
966
|
+
- Test UI interactions and event systems
|
967
|
+
- id: test-data-management
|
968
|
+
title: Test Data Management
|
969
|
+
template: |
|
970
|
+
- **Strategy:** {{test_data_approach}}
|
971
|
+
- **ScriptableObject Fixtures:** {{test_scriptableobject_location}}
|
972
|
+
- **Test Scene Templates:** {{test_scene_templates}}
|
973
|
+
- **Cleanup Strategy:** {{cleanup_approach}}
|
974
|
+
|
975
|
+
- id: security
|
976
|
+
title: Security Considerations
|
977
|
+
instruction: |
|
978
|
+
Define security requirements specific to Unity game development:
|
979
|
+
|
980
|
+
1. Focus on Unity-specific security concerns
|
981
|
+
2. Consider platform store requirements
|
982
|
+
3. Address save data protection and anti-cheat measures
|
983
|
+
4. Define secure communication patterns for multiplayer
|
984
|
+
5. These rules directly impact Unity code generation
|
985
|
+
elicit: true
|
986
|
+
sections:
|
987
|
+
- id: save-data-security
|
988
|
+
title: Save Data Security
|
989
|
+
template: |
|
990
|
+
- **Encryption:** {{save_data_encryption_method}}
|
991
|
+
- **Validation:** {{save_data_validation_approach}}
|
992
|
+
- **Anti-Tampering:** {{anti_tampering_measures}}
|
993
|
+
- id: platform-security
|
994
|
+
title: Platform Security Requirements
|
995
|
+
template: |
|
996
|
+
- **Mobile Permissions:** {{mobile_permission_requirements}}
|
997
|
+
- **Store Compliance:** {{platform_store_requirements}}
|
998
|
+
- **Privacy Policy:** {{privacy_policy_requirements}}
|
999
|
+
- id: multiplayer-security
|
1000
|
+
title: Multiplayer Security (if applicable)
|
1001
|
+
condition: Game includes multiplayer features
|
1002
|
+
template: |
|
1003
|
+
- **Client Validation:** {{client_validation_rules}}
|
1004
|
+
- **Server Authority:** {{server_authority_approach}}
|
1005
|
+
- **Anti-Cheat:** {{anti_cheat_measures}}
|
1006
|
+
|
1007
|
+
- id: checklist-results
|
1008
|
+
title: Checklist Results Report
|
1009
|
+
instruction: Before running the checklist, offer to output the full game architecture document. Once user confirms, execute the architect-checklist and populate results here.
|
1010
|
+
|
1011
|
+
- id: next-steps
|
1012
|
+
title: Next Steps
|
1013
|
+
instruction: |
|
1014
|
+
After completing the game architecture:
|
1015
|
+
|
1016
|
+
1. Review with Game Designer and technical stakeholders
|
1017
|
+
2. Begin story implementation with Game Developer agent
|
1018
|
+
3. Set up Unity project structure and initial configuration
|
1019
|
+
4. Configure version control and build pipeline
|
1020
|
+
|
1021
|
+
Include specific prompts for next agents if needed.
|
1022
|
+
sections:
|
1023
|
+
- id: developer-prompt
|
1024
|
+
title: Game Developer Prompt
|
1025
|
+
instruction: |
|
1026
|
+
Create a brief prompt to hand off to Game Developer for story implementation. Include:
|
1027
|
+
- Reference to this game architecture document
|
1028
|
+
- Key Unity-specific requirements from this architecture
|
1029
|
+
- Any Unity package or configuration decisions made here
|
1030
|
+
- Request for adherence to established coding standards and patterns
|