@js4cytoscape/ndex-client 0.6.0-alpha.1 โ†’ 0.6.0-alpha.2

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/README.md CHANGED
@@ -1,15 +1,13 @@
1
1
  # NDEx JavaScript Client
2
2
 
3
- A modern TypeScript/JavaScript client library for the NDEx (Network Data Exchange) API.
3
+ A TypeScript/JavaScript client library for the NDEx (Network Data Exchange) API.
4
4
 
5
5
  ## Features
6
6
 
7
- - ๐ŸŽฏ **Modern TypeScript** - Full type safety and IntelliSense support
8
7
  - ๐Ÿš€ **Multiple Formats** - ESM, CJS, and UMD builds
9
8
  - ๐Ÿ”’ **Authentication** - Basic auth and OAuth support
10
9
  - ๐ŸŒ **Version Support** - Compatible with NDEx API v2 and v3
11
10
  - ๐Ÿ“ฆ **Lightweight** - Optimized bundle sizes
12
- - ๐Ÿงช **Well Tested** - Comprehensive unit and integration tests
13
11
 
14
12
  ## Installation
15
13
 
@@ -48,35 +46,117 @@ console.log('User:', user.data);
48
46
 
49
47
  ## Documentation
50
48
 
51
- ### Client Documentation
49
+ ### Documentation Architecture
52
50
 
53
- This project uses a hybrid documentation approach combining:
54
- - **Narrative Documentation** - Guides, tutorials, and examples built with [Docusaurus](https://docusaurus.io/)
55
- - **API Reference** - Auto-generated from TypeScript source code using [TypeDoc](https://typedoc.org/)
51
+ This project uses a **hybrid documentation architecture** that separates concerns for optimal user experience:
52
+
53
+ ```
54
+ docs-root/
55
+ โ”œโ”€โ”€ index.html # Main landing page with navigation
56
+ โ”œโ”€โ”€ api/ # TypeDoc HTML output (standalone)
57
+ โ”‚ โ”œโ”€โ”€ index.html # API reference home
58
+ โ”‚ โ”œโ”€โ”€ classes/ # Class documentation
59
+ โ”‚ โ”œโ”€โ”€ interfaces/ # Interface documentation
60
+ โ”‚ โ””โ”€โ”€ enums/ # Enum documentation
61
+ โ”œโ”€โ”€ guide/ # Docusaurus site (user guides)
62
+ โ”‚ โ”œโ”€โ”€ docs/ # Narrative documentation source
63
+ โ”‚ โ”œโ”€โ”€ build/ # Built Docusaurus site
64
+ โ”‚ โ””โ”€โ”€ docusaurus.config.js # Docusaurus configuration
65
+ โ””โ”€โ”€ assets/ # Shared resources
66
+ ```
67
+
68
+ **Key Benefits:**
69
+ - ๐ŸŽฏ **No MDX Escaping Issues** - TypeDoc generates clean HTML directly
70
+ - ๐Ÿ”ง **Independent Tools** - Each tool works in its optimal format
71
+ - ๐Ÿš€ **Better Performance** - Static HTML for API docs, optimized React for guides
72
+ - ๐Ÿ› ๏ธ **Easier Maintenance** - Tool updates don't break each other
73
+
74
+ ### Local Development
56
75
 
57
76
  #### Building Documentation
58
77
 
59
78
  ```bash
60
- # Build complete documentation site (API + narrative)
79
+ # Build complete documentation (API + user guides)
61
80
  npm run docs:build
62
81
 
63
- # Build only API reference (TypeDoc)
82
+ # Build only API reference (clean TypeDoc HTML)
64
83
  npm run docs:api
65
84
 
66
- # Serve documentation locally for development
85
+ # Build only user guides (Docusaurus)
86
+ npm run docs:site
87
+
88
+ # Clean all documentation build artifacts
89
+ npm run docs:clean
90
+ ```
91
+
92
+ #### Serving Locally
93
+
94
+ ```bash
95
+ # Option 1: Serve complete documentation site (recommended for testing)
96
+ cd docs-root && python3 -m http.server 8000
97
+ # Visit: http://localhost:8000/
98
+
99
+ # Option 2: Serve only Docusaurus in development mode
67
100
  npm run docs:serve
101
+ # Visit: http://localhost:3000/ (Docusaurus dev server)
102
+ ```
103
+
104
+ **Local Documentation URLs:**
105
+ - **Main Landing Page**: `http://localhost:8000/`
106
+ - **User Guides**: `http://localhost:8000/guide/build/`
107
+ - **API Reference**: `http://localhost:8000/api/`
108
+
109
+ #### Development Workflow
68
110
 
69
- # Clean documentation files
111
+ ```bash
112
+ # 1. Clean previous builds
70
113
  npm run docs:clean
114
+
115
+ # 2. Generate API documentation
116
+ npm run docs:api
117
+
118
+ # 3. Build user guides with local API links
119
+ cd docs-root/guide && npm run build:local
120
+
121
+ # 4. Serve complete site for testing
122
+ cd .. && python3 -m http.server 8000
123
+ ```
124
+
125
+ ### GitHub Pages Deployment
126
+
127
+ Documentation is automatically deployed via GitHub Actions on pushes to `main` or `ndex3-major-refactor` branches.
128
+
129
+ **Live Documentation**: [https://cytoscape.org/js4cytoscape/ndex-client/](https://cytoscape.org/js4cytoscape/ndex-client/)
130
+
131
+ #### Deployment Workflow
132
+
133
+ 1. **Package Detection** - Auto-detects packages with `docs-root/` directories
134
+ 2. **API Documentation** - Generates clean TypeDoc HTML (no MDX processing needed)
135
+ 3. **User Guides** - Builds Docusaurus with production API links
136
+ 4. **Site Assembly** - Combines both into unified documentation site
137
+ 5. **GitHub Pages** - Deploys to `gh-pages` branch
138
+
139
+ #### Environment-Aware Configuration
140
+
141
+ The system automatically uses the correct API reference URLs:
142
+ - **Local**: `http://localhost:8000/api/`
143
+ - **Production**: `https://cytoscape.org/js4cytoscape/ndex-client/api/`
144
+
145
+ ```javascript
146
+ // docs-root/guide/docusaurus.config.js
147
+ const isLocal = process.env.DOCUSAURUS_LOCAL === 'true';
148
+ const siteUrl = isLocal ? 'http://localhost:8000' : 'https://cytoscape.org';
149
+ const basePath = isLocal ? '' : '/js4cytoscape/ndex-client';
150
+ const apiUrl = `${siteUrl}${basePath}/api/`;
71
151
  ```
72
152
 
73
- The documentation site will be available at `http://localhost:3000` when served locally.
153
+ ### Documentation Content Structure
74
154
 
75
- **Documentation Structure:**
76
- - **Getting Started** - Installation, authentication, first network
77
- - **User Guides** - Working with networks, user management, file operations
78
- - **Examples** - Code examples and integration patterns
79
- - **API Reference** - Complete TypeScript API documentation
155
+ - **Landing Page** (`docs-root/index.html`) - Professional overview with navigation
156
+ - **Getting Started** - Installation, authentication, first network (serves as Docusaurus home)
157
+ - **User Guides** - Working with networks, user management
158
+ - **Examples** - Code examples and integration patterns
159
+ - **API Reference** - Complete TypeScript API documentation (TypeDoc HTML)
80
160
 
81
161
  #### Online Documentation
82
162
 
@@ -231,14 +311,25 @@ src/
231
311
  โ”œโ”€โ”€ types/ # TypeScript definitions
232
312
  โ””โ”€โ”€ models/ # Data models
233
313
 
234
- docs-site/ # Documentation site (Docusaurus)
235
- โ”œโ”€โ”€ docs/ # Narrative documentation
236
- โ”‚ โ”œโ”€โ”€ getting-started/ # Installation, auth, first network
237
- โ”‚ โ”œโ”€โ”€ guides/ # User guides and workflows
238
- โ”‚ โ”œโ”€โ”€ examples/ # Code examples
239
- โ”‚ โ””โ”€โ”€ api/ # API reference (generated)
240
- โ”œโ”€โ”€ docusaurus.config.js # Docusaurus configuration
241
- โ””โ”€โ”€ package.json # Documentation dependencies
314
+ docs-root/ # New hybrid documentation architecture
315
+ โ”œโ”€โ”€ index.html # Main landing page with navigation
316
+ โ”œโ”€โ”€ api/ # TypeDoc HTML output (generated)
317
+ โ”‚ โ”œโ”€โ”€ index.html # API reference home
318
+ โ”‚ โ”œโ”€โ”€ classes/ # Class documentation
319
+ โ”‚ โ”œโ”€โ”€ interfaces/ # Interface documentation
320
+ โ”‚ โ””โ”€โ”€ enums/ # Enum documentation
321
+ โ”œโ”€โ”€ guide/ # Docusaurus site for user guides
322
+ โ”‚ โ”œโ”€โ”€ docs/ # Narrative documentation source
323
+ โ”‚ โ”‚ โ”œโ”€โ”€ getting-started.md # Installation, auth (serves as home)
324
+ โ”‚ โ”‚ โ”œโ”€โ”€ getting-started/ # Authentication, first network
325
+ โ”‚ โ”‚ โ”œโ”€โ”€ guides/ # User guides and workflows
326
+ โ”‚ โ”‚ โ””โ”€โ”€ examples/ # Code examples
327
+ โ”‚ โ”œโ”€โ”€ build/ # Built Docusaurus site (generated)
328
+ โ”‚ โ”œโ”€โ”€ docusaurus.config.js # Docusaurus configuration
329
+ โ”‚ โ””โ”€โ”€ package.json # Documentation dependencies
330
+ โ””โ”€โ”€ assets/ # Shared documentation resources
331
+
332
+ docs-site/ # Legacy documentation (to be removed)
242
333
 
243
334
  __tests__/
244
335
  โ”œโ”€โ”€ unit/ # Fast unit tests
package/dist/.tsbuildinfo CHANGED
@@ -1 +1 @@
1
- {"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/axios/index.d.ts","../src/cyndex.js","../src/ndex.js","../src/types/cytoscape.ts","../src/types/index.ts","../src/models/cx2network.ts","../package.json","../src/services/httpservice.ts","../src/services/networkservicev2.ts","../src/services/networkservicev3.ts","../src/services/unifiednetworkservice.ts","../src/services/filesservice.ts","../src/services/workspaceservice.ts","../src/services/userservice.ts","../src/services/adminservice.ts","../src/services/cyndexservice.ts","../src/index.ts","../../../node_modules/nock/types/index.d.ts","../test/nockutil.js","../test/cyndex.spec.js","../test/testconfig.js","../test/ndex.spec.js","../node_modules/@jest/expect-utils/build/index.d.ts","../node_modules/chalk/index.d.ts","../node_modules/@sinclair/typebox/typebox.d.ts","../node_modules/@jest/schemas/build/index.d.ts","../node_modules/pretty-format/build/index.d.ts","../node_modules/jest-diff/build/index.d.ts","../node_modules/jest-matcher-utils/build/index.d.ts","../node_modules/expect/build/index.d.ts","../node_modules/@types/jest/index.d.ts","../node_modules/@types/node/compatibility/disposable.d.ts","../node_modules/@types/node/compatibility/indexable.d.ts","../node_modules/@types/node/compatibility/iterators.d.ts","../node_modules/@types/node/compatibility/index.d.ts","../node_modules/@types/node/ts5.6/globals.typedarray.d.ts","../node_modules/@types/node/ts5.6/buffer.buffer.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/file.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/undici-types/retry-handler.d.ts","../../../node_modules/undici-types/retry-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/util.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/eventsource.d.ts","../../../node_modules/undici-types/filereader.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/index.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/dom-events.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/sea.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/ts5.6/index.d.ts","../../../node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@types/babel__generator/index.d.ts","../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/@types/babel__template/index.d.ts","../../../node_modules/@types/babel__traverse/index.d.ts","../../../node_modules/@types/babel__core/index.d.ts","../../../node_modules/@types/eslint/helpers.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/eslint/index.d.ts","../../../node_modules/@types/eslint-scope/index.d.ts","../../../node_modules/@types/graceful-fs/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/istanbul-lib-report/index.d.ts","../../../node_modules/@types/istanbul-reports/index.d.ts","../../../node_modules/parse5/dist/common/html.d.ts","../../../node_modules/parse5/dist/common/token.d.ts","../../../node_modules/parse5/dist/common/error-codes.d.ts","../../../node_modules/parse5/dist/tokenizer/preprocessor.d.ts","../../../node_modules/entities/dist/commonjs/generated/decode-data-html.d.ts","../../../node_modules/entities/dist/commonjs/generated/decode-data-xml.d.ts","../../../node_modules/entities/dist/commonjs/decode-codepoint.d.ts","../../../node_modules/entities/dist/commonjs/decode.d.ts","../../../node_modules/entities/decode.d.ts","../../../node_modules/parse5/dist/tokenizer/index.d.ts","../../../node_modules/parse5/dist/tree-adapters/interface.d.ts","../../../node_modules/parse5/dist/parser/open-element-stack.d.ts","../../../node_modules/parse5/dist/parser/formatting-element-list.d.ts","../../../node_modules/parse5/dist/parser/index.d.ts","../../../node_modules/parse5/dist/tree-adapters/default.d.ts","../../../node_modules/parse5/dist/serializer/index.d.ts","../../../node_modules/parse5/dist/common/foreign-content.d.ts","../../../node_modules/parse5/dist/index.d.ts","../../../node_modules/@types/tough-cookie/index.d.ts","../../../node_modules/@types/jsdom/base.d.ts","../../../node_modules/@types/jsdom/index.d.ts","../../../node_modules/@types/prettier/index.d.ts","../../../node_modules/@types/stack-utils/index.d.ts","../../../node_modules/@types/yargs-parser/index.d.ts","../../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"824cb491a40f7e8fdeb56f1df5edf91b23f3e3ee6b4cde84d4a99be32338faee","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"87d693a4920d794a73384b3c779cadcb8548ac6945aa7a925832fe2418c9527a","affectsGlobalScope":true},{"version":"76f838d5d49b65de83bc345c04aa54c62a3cfdb72a477dc0c0fce89a30596c30","affectsGlobalScope":true},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"b20fe0eca9a4e405f1a5ae24a2b3290b37cf7f21eba6cbe4fc3fab979237d4f3","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"8073890e29d2f46fdbc19b8d6d2eb9ea58db9a2052f8640af20baff9afbc8640","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"1d7ee0c4eb734d59b6d962bc9151f6330895067cd3058ce6a3cd95347ef5c6e8","1286f21fa6494d94f6ef7ba1117f8523c469cd351d191201b3bc499ee869c31f",{"version":"c9c77e21d8a6c6251fc17f20d25647c98df3ee5bd618947ee357a18177285bed","signature":"0ed3d1a749806bb7724d1f021bf7d3a569ccb1109f03c472b2bfe75221d74821"},{"version":"1a58e6e05ec3870915e505b609e7e0f3dd53795ece310ce8ff7915587e88535d","signature":"123f66a3838c31921d8c496018eb35310b3fded4707f3c1f9b0aba798ad53f6a"},{"version":"12faf772f53c42ecc8419b12aa7e35ecfebc6b6b89d366640d72a45b3361a14b","signature":"959e0cfb0f106591ea3f48a68067a4956979d8975e0f27aeb50278bd14b76296"},"730a00648e778fb1adcc89c7929e911950261d6cdee628636728287179ec57ba",{"version":"182657b9580f9da775bc94a984d0d319a708333734175f335c35ff0b1af15fa9","signature":"28c20b92dab87f25426436b7e744b89c7eab6e872c6fd2914adae80f7cf70a4d"},{"version":"6b70a6ccf88e9b6d7971741441fbf5b769f3daf0adc0ce87125551152b53fc37","signature":"73890dc1febfbb0831007700df154986af988970d7ab1c6bc725d636c9120add"},"8fe565224ab0d58d9196904ae978c739fa46ade83c192be8efc6b1f2e0a50d8b",{"version":"ba4d526beae86718c2e545bc68fef4ceb98266737b3b46e81ff266faecc68e90","signature":"fbdbf3a00ba2b6ef2c13ccf80a22348c7aa777c8737e46350b1bd88759456757"},"e2fa60b898947c820c36ca627bf13e9c643c74ef5ef05c0c4e1a54a86973ba40",{"version":"e6f88ef149d3c12d8cf637bd6b95314f9cb8587f0c4333e3fd8e46425e0a6383","signature":"616159d47b3c18c099c9abaef81f880ea0f9e99e0b6dad1f50e219ff69631d7c"},"6da3f05bd33a0abf6fc4f7d734164d6d7c0ac49e88e10b37cfb401eb1603a6f9","e688ac716c696c629c13ce1c1a7f810288083e300fb0d6c4969e58a3b80d9f63","6f4a64cf7efd3b6d28b9b668eed707d6538cbd9d52113ae6893730eaf105b366",{"version":"82e24945837ee94b279f15b75d6fb03102a3043552314fe4eaf6c83e87216949","signature":"4830881dd9bcc45c3c25a6e50087f950503d435303fdf56b7be42a061776fa9c"},{"version":"d76295a8a7f23db9ceffd507e927fc9b2217ee6ce496221ed7bfe2a1767e7371","signature":"f37daedc60ec3423064a116930a271b21506b355f7d9d089e2405bb6cb307c47"},"c1f83e344cdcb114420295d422e39b36d2cda7583da37e0f0f196ccbdfd20185","012437c5e9b4f32bbcc91208879ed3e0a5501371c90e40d63fd5615a44986a3d","63fc9677c69fd633dabf799eabc87a35a0f0e3f95ee7b9ccc00054c1a3836e82","a05425662505e9929c8c2271f4d064a5e7c82fb5b1129b15c557e412a975fd5e","60fd19c4870876630b96b0bf1bd722a23d9ab37e9425c8b90c6e76a971308fa5","cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec",{"version":"f8db4fea512ab759b2223b90ecbbe7dae919c02f8ce95ec03f7fb1cf757cfbeb","affectsGlobalScope":true},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true},"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a",{"version":"613b21ccdf3be6329d56e6caa13b258c842edf8377be7bc9f014ed14cdcfc308","affectsGlobalScope":true},{"version":"109b9c280e8848c08bf4a78fff1fed0750a6ca1735671b5cf08b71bae5448c03","affectsGlobalScope":true},"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107",{"version":"1ca84b44ad1d8e4576f24904d8b95dd23b94ea67e1575f89614ac90062fc67f4","affectsGlobalScope":true},"6d586db0a09a9495ebb5dece28f54df9684bfbd6e1f568426ca153126dac4a40","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","8c0bcd6c6b67b4b503c11e91a1fb91522ed585900eab2ab1f61bba7d7caa9d6f",{"version":"567b7f607f400873151d7bc63a049514b53c3c00f5f56e9e95695d93b66a138e","affectsGlobalScope":true},"823f9c08700a30e2920a063891df4e357c64333fdba6889522acc5b7ae13fc08","84c1930e33d1bb12ad01bcbe11d656f9646bd21b2fb2afd96e8e10615a021aef",{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true},"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a",{"version":"4b87f767c7bc841511113c876a6b8bf1fd0cb0b718c888ad84478b372ec486b1","affectsGlobalScope":true},"8d04e3640dd9eb67f7f1e5bd3d0bf96c784666f7aefc8ac1537af6f2d38d4c29","9d19808c8c291a9010a6c788e8532a2da70f811adb431c97520803e0ec649991","2bf469abae4cc9c0f340d4e05d9d26e37f936f9c8ca8f007a6534f109dcc77e4","4aacb0dd020eeaef65426153686cc639a78ec2885dc72ad220be1d25f1a439df","f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45",{"version":"71450bbc2d82821d24ca05699a533e72758964e9852062c53b30f31c36978ab8","affectsGlobalScope":true},{"version":"0ada07543808f3b967624645a8e1ccd446f8b01ade47842acf1328aec899fed0","affectsGlobalScope":true},"4c21aaa8257d7950a5b75a251d9075b6a371208fc948c9c8402f6690ef3b5b55","b5895e6353a5d708f55d8685c38a235c3a6d8138e374dee8ceb8ffde5aa8002a","54c4f21f578864961efc94e8f42bc893a53509e886370ec7dd602e0151b9266c","de735eca2c51dd8b860254e9fdb6d9ec19fe402dfe597c23090841ce3937cfc5","4ff41188773cbf465807dd2f7059c7494cbee5115608efc297383832a1150c43","5650cf3dace09e7c25d384e3e6b818b938f68f4e8de96f52d9c5a1b3db068e86",{"version":"1354ca5c38bd3fd3836a68e0f7c9f91f172582ba30ab15bb8c075891b91502b7","affectsGlobalScope":true},"5155da3047ef977944d791a2188ff6e6c225f6975cc1910ab7bb6838ab84cede","93f437e1398a4f06a984f441f7fa7a9f0535c04399619b5c22e0b87bdee182cb","afbe24ab0d74694372baa632ecb28bb375be53f3be53f9b07ecd7fc994907de5",{"version":"e16d218a30f6a6810b57f7e968124eaa08c7bb366133ea34bbf01e7cd6b8c0ad","affectsGlobalScope":true},{"version":"eb8692dea24c27821f77e397272d9ed2eda0b95e4a75beb0fdda31081d15a8ae","affectsGlobalScope":true},"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","b4f70ec656a11d570e1a9edce07d118cd58d9760239e2ece99306ee9dfe61d02","3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","5b6844ad931dcc1d3aca53268f4bd671428421464b1286746027aede398094f2","37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093",{"version":"0225ecb9ed86bdb7a2c7fd01f1556906902929377b44483dc4b83e03b3ef227d","affectsGlobalScope":true},"1851a3b4db78664f83901bb9cac9e45e03a37bb5933cc5bf37e10bb7e91ab4eb","461e54289e6287e8494a0178ba18182acce51a02bca8dea219149bf2cf96f105",{"version":"12ed4559eba17cd977aa0db658d25c4047067444b51acfdcbf38470630642b23","affectsGlobalScope":true},"f3ffabc95802521e1e4bcba4c88d8615176dc6e09111d920c7a213bdda6e1d65","e31e51c55800014d926e3f74208af49cb7352803619855c89296074d1ecbb524","ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9",{"version":"dfb96ba5177b68003deec9e773c47257da5c4c8a74053d8956389d832df72002","affectsGlobalScope":true},{"version":"92d3070580cf72b4bb80959b7f16ede9a3f39e6f4ef2ac87cfa4561844fdc69f","affectsGlobalScope":true},"d3dffd70e6375b872f0b4e152de4ae682d762c61a24881ecc5eb9f04c5caf76f","613deebaec53731ff6b74fe1a89f094b708033db6396b601df3e6d5ab0ec0a47","d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c",{"version":"e56eb632f0281c9f8210eb8c86cc4839a427a4ffffcfd2a5e40b956050b3e042","affectsGlobalScope":true},"e8a979b8af001c9fc2e774e7809d233c8ca955a28756f52ee5dee88ccb0611d2","9091e564b81e7b4c382a33c62de704a699e10508190547d4f7c1c3e039d2db2b","a28ac3e717907284b3910b8e9b3f9844a4e0b0a861bea7b923e5adf90f620330","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","82e5a50e17833a10eb091923b7e429dc846d42f1c6161eb6beeb964288d98a15","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","fc72135da24040641388fb5f2c2a7a99aa5b962c0fa125bd96fabeec63dd2e63","5426e62886b7be7806312d31a00e8f7dccd6fe63ba9bbefe99ee2eab29cc48a3",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449","8566fa84085caa46340393b1704ecd368491918fb45bd688d6e89736aec73a2f","dc33ce27fbeaf0ea3da556c80a6cc8af9d13eb443088c8f25cdc39fca8e756f6","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","19990350fca066265b2c190c9b6cde1229f35002ea2d4df8c9e397e9942f6c89","8fb8fdda477cd7382477ffda92c2bb7d9f7ef583b1aa531eb6b2dc2f0a206c10","66995b0c991b5c5d42eff1d950733f85482c7419f7296ab8952e03718169e379","9863f888da357e35e013ca3465b794a490a198226bd8232c2f81fb44e16ff323","84bc2d80326a83ee4a6e7cba2fd480b86502660770c0e24da96535af597c9f1e","ea27768379b866ee3f5da2419650acdb01125479f7af73580a4bceb25b79e372","598931eeb4362542cae5845f95c5f0e45ac668925a40ce201e244d7fe808e965","da9ef88cde9f715756da642ad80c4cd87a987f465d325462d6bc2a0b11d202c8","9462ab013df86c16a2a69ca0a3b6f31d4fd86dd29a947e14b590eb20806f220b","b4c6184d78303b0816e779a48bef779b15aea4a66028eb819aac0abee8407dea","db085d2171d48938a99e851dafe0e486dce9859e5dfa73c21de5ed3d4d6fb0c5","62a3ad1ddd1f5974b3bf105680b3e09420f2230711d6520a521fab2be1a32838","a77be6fc44c876bc10c897107f84eaba10790913ebdcad40fcda7e47469b2160","06cf55b6da5cef54eaaf51cdc3d4e5ebf16adfdd9ebd20cec7fe719be9ced017","91f5dbcdb25d145a56cffe957ec665256827892d779ef108eb2f3864faff523b","052ba354bab8fb943e0bc05a0769f7b81d7c3b3c6cd0f5cfa53c7b2da2a525c5","927955a3de5857e0a1c575ced5a4245e74e6821d720ed213141347dd1870197f","fec804d54cd97dd77e956232fc37dc13f53e160d4bbeeb5489e86eeaa91f7ebd","03c258e060b7da220973f84b89615e4e9850e9b5d30b3a8e4840b3e3268ae8eb","fd0589ca571ad090b531d8c095e26caa53d4825c64d3ff2b2b1ab95d72294175",{"version":"669843ecafb89ae1e944df06360e8966219e4c1c34c0d28aa2503272cdd444a7","affectsGlobalScope":true},"1583b9baa41a4db2f2bd4fedfafbe791a986fd785749d5cae2ff5171344e9b4c","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","105b9a2234dcb06ae922f2cd8297201136d416503ff7d16c72bfc8791e9895c1"],"root":[[48,52],[54,63],[65,68]],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"allowUnreachableCode":false,"allowUnusedLabels":false,"checkJs":false,"declaration":true,"declarationMap":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"exactOptionalPropertyTypes":false,"experimentalDecorators":true,"module":99,"noImplicitAny":false,"noImplicitOverride":false,"noImplicitReturns":true,"noImplicitThis":false,"noPropertyAccessFromIndexSignature":false,"noUncheckedIndexedAccess":false,"noUnusedLocals":false,"noUnusedParameters":false,"outDir":"./","removeComments":false,"skipDefaultLibCheck":false,"skipLibCheck":true,"sourceMap":true,"strict":false,"strictBindCallApply":false,"strictFunctionTypes":false,"strictNullChecks":false,"strictPropertyInitialization":false,"target":7,"tsBuildInfoFile":"./.tsbuildinfo"},"fileIdsList":[[83,125,175],[83,125],[83,125,175,176,177,178,179],[83,125,175,177],[83,125,183,184],[83,125,181,182,183],[83,125,138,174],[83,125,187],[83,125,188],[83,125,137,170,174,207,208,210],[83,125,209],[83,125,213],[83,125,197],[83,125,194,195,196],[83,125,138,140,151,167],[83,125,191],[83,125,190,191],[83,125,190],[83,125,190,191,192,199,200,203,204,205,206],[83,125,191,200],[83,125,190,191,192,199,200,201,202],[83,125,190,200],[83,125,200,204],[83,125,191,192,193,198],[83,125,192],[83,125,190,191,200],[83,92,96,125,167],[83,92,125,156,167],[83,87,125],[83,89,92,125,164,167],[83,125,145,164],[83,125,174],[83,87,125,174],[83,89,92,125,145,167],[83,84,85,88,91,125,137,156,167],[83,92,99,125],[83,84,90,125],[83,92,113,114,125],[83,88,92,125,159,167,174],[83,113,125,174],[83,86,87,125,174],[83,92,125],[83,86,87,88,89,90,91,92,93,94,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,114,115,116,117,118,119,125],[83,92,107,125],[83,92,99,100,125],[83,90,92,100,101,125],[83,91,125],[83,84,87,92,125],[83,92,96,100,101,125],[83,96,125],[83,90,92,95,125,167],[83,84,89,92,99,125],[83,125,156],[83,87,92,113,125,172,174],[71,83,125],[73,76,83,125],[83,122,125],[83,124,125],[83,125,130,159],[83,125,126,131,137,145,156,167],[83,125,126,127,137,145],[78,79,80,83,125],[83,125,128,168],[83,125,129,130,138,146],[83,125,130,156,164],[83,125,131,133,137,145],[83,124,125,132],[83,125,133,134],[83,125,135,137],[83,124,125,137],[83,125,137,138,139,156,167],[83,125,137,138,139,152,156,159],[83,120,125],[83,125,133,137,140,145,156,167],[83,125,137,138,140,141,145,156,164,167],[83,125,140,142,156,164,167],[83,125,137,143],[83,125,144,167,172],[83,125,133,137,145,156],[83,125,146],[83,125,147],[83,124,125,148],[83,122,123,124,125,126,127,128,129,130,131,132,133,134,135,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[83,125,150],[83,125,151],[83,125,137,152,153],[83,125,152,154,168,170],[83,125,137,156,157,159],[83,125,158,159],[83,125,156,157],[83,125,159],[83,125,160],[83,122,125,156,161],[83,125,137,162,163],[83,125,162,163],[83,125,130,145,156,164],[83,125,165],[125],[81,82,83,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[83,125,145,166],[83,125,140,151,167],[83,125,130,168],[83,125,156,169],[83,125,144,170],[83,125,171],[83,125,137,139,148,156,159,167,170,172],[83,125,156,173],[69,75,83,125],[73,83,125],[70,74,83,125],[72,83,125],[47,83,125],[51,52,53,54,55,56,57,58,59,60,61,62,83,125],[51,83,125],[54,83,125],[47,50,83,125],[47,51,53,83,125],[51,54,83,125],[51,52,54,83,125],[51,52,54,55,56,83,125],[50,83,125],[63,64,65,83,125],[63,67,83,125],[51,52,54,55,56,57,58,59,60,61,62],[50],[54],[47,51],[51,52,54]],"referencedMap":[[177,1],[175,2],[180,3],[176,1],[178,4],[179,1],[185,5],[181,2],[184,6],[183,2],[186,7],[187,2],[188,8],[189,9],[209,10],[210,11],[182,2],[211,2],[212,2],[208,2],[213,2],[214,12],[198,13],[196,2],[197,14],[194,2],[195,2],[64,15],[192,16],[206,17],[190,2],[191,18],[207,19],[202,20],[203,21],[201,22],[205,23],[199,24],[193,25],[204,26],[200,17],[99,27],[109,28],[98,27],[119,29],[90,30],[89,31],[118,32],[112,33],[117,34],[92,35],[106,36],[91,37],[115,38],[87,39],[86,32],[116,40],[88,41],[93,42],[94,2],[97,42],[84,2],[120,43],[110,44],[101,45],[102,46],[104,47],[100,48],[103,49],[113,32],[95,50],[96,51],[105,52],[85,53],[108,44],[107,42],[111,2],[114,54],[69,2],[72,55],[71,2],[77,56],[122,57],[123,57],[124,58],[125,59],[126,60],[127,61],[78,2],[81,62],[79,2],[80,2],[128,63],[129,64],[130,65],[131,66],[132,67],[133,68],[134,68],[136,2],[135,69],[137,70],[138,71],[139,72],[121,73],[140,74],[141,75],[142,76],[143,77],[144,78],[145,79],[146,80],[147,81],[148,82],[149,83],[150,84],[151,85],[152,86],[153,86],[154,87],[155,2],[156,88],[158,89],[157,90],[159,91],[160,92],[161,93],[162,94],[163,95],[164,96],[165,97],[83,98],[82,2],[174,99],[166,100],[167,101],[168,102],[169,103],[170,104],[171,105],[172,106],[173,107],[47,2],[70,2],[76,108],[74,109],[75,110],[73,111],[45,2],[46,2],[8,2],[9,2],[11,2],[10,2],[2,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[3,2],[20,2],[4,2],[21,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[36,2],[33,2],[34,2],[35,2],[37,2],[7,2],[38,2],[43,2],[44,2],[39,2],[40,2],[41,2],[42,2],[1,2],[53,2],[48,112],[63,113],[52,114],[49,112],[61,115],[62,116],[58,115],[54,117],[55,118],[56,119],[57,120],[60,118],[59,118],[50,2],[51,121],[66,122],[68,123],[65,2],[67,2]],"exportedModulesMap":[[177,1],[175,2],[180,3],[176,1],[178,4],[179,1],[185,5],[181,2],[184,6],[183,2],[186,7],[187,2],[188,8],[189,9],[209,10],[210,11],[182,2],[211,2],[212,2],[208,2],[213,2],[214,12],[198,13],[196,2],[197,14],[194,2],[195,2],[64,15],[192,16],[206,17],[190,2],[191,18],[207,19],[202,20],[203,21],[201,22],[205,23],[199,24],[193,25],[204,26],[200,17],[99,27],[109,28],[98,27],[119,29],[90,30],[89,31],[118,32],[112,33],[117,34],[92,35],[106,36],[91,37],[115,38],[87,39],[86,32],[116,40],[88,41],[93,42],[94,2],[97,42],[84,2],[120,43],[110,44],[101,45],[102,46],[104,47],[100,48],[103,49],[113,32],[95,50],[96,51],[105,52],[85,53],[108,44],[107,42],[111,2],[114,54],[69,2],[72,55],[71,2],[77,56],[122,57],[123,57],[124,58],[125,59],[126,60],[127,61],[78,2],[81,62],[79,2],[80,2],[128,63],[129,64],[130,65],[131,66],[132,67],[133,68],[134,68],[136,2],[135,69],[137,70],[138,71],[139,72],[121,73],[140,74],[141,75],[142,76],[143,77],[144,78],[145,79],[146,80],[147,81],[148,82],[149,83],[150,84],[151,85],[152,86],[153,86],[154,87],[155,2],[156,88],[158,89],[157,90],[159,91],[160,92],[161,93],[162,94],[163,95],[164,96],[165,97],[83,98],[82,2],[174,99],[166,100],[167,101],[168,102],[169,103],[170,104],[171,105],[172,106],[173,107],[47,2],[70,2],[76,108],[74,109],[75,110],[73,111],[45,2],[46,2],[8,2],[9,2],[11,2],[10,2],[2,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[3,2],[20,2],[4,2],[21,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[36,2],[33,2],[34,2],[35,2],[37,2],[7,2],[38,2],[43,2],[44,2],[39,2],[40,2],[41,2],[42,2],[1,2],[48,112],[63,124],[52,114],[61,115],[62,125],[58,126],[54,127],[55,118],[56,128],[57,120],[60,118],[59,118],[51,125],[66,122],[68,123],[65,2],[67,2]],"semanticDiagnosticsPerFile":[177,175,180,176,178,179,185,181,184,183,186,187,188,189,209,210,182,211,212,208,213,214,198,196,197,194,195,64,192,206,190,191,207,202,203,201,205,199,193,204,200,99,109,98,119,90,89,118,112,117,92,106,91,115,87,86,116,88,93,94,97,84,120,110,101,102,104,100,103,113,95,96,105,85,108,107,111,114,69,72,71,77,122,123,124,125,126,127,78,81,79,80,128,129,130,131,132,133,134,136,135,137,138,139,121,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,158,157,159,160,161,162,163,164,165,83,82,174,166,167,168,169,170,171,172,173,47,70,76,74,75,73,45,46,8,9,11,10,2,12,13,14,15,16,17,18,19,3,20,4,21,25,22,23,24,26,27,28,5,29,30,31,32,6,36,33,34,35,37,7,38,43,44,39,40,41,42,1,53,48,63,52,49,61,62,58,54,55,56,57,60,59,50,51,66,68,65,67],"affectedFilesPendingEmit":[53,48,63,52,49,61,62,58,54,55,56,57,60,59,50,51,66,68,65,67]},"version":"5.4.5"}
1
+ {"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/axios/index.d.ts","../src/cyndex.js","../src/ndex.js","../src/types/cytoscape.ts","../src/types/index.ts","../src/models/cx2network.ts","../package.json","../src/services/httpservice.ts","../src/services/networkservicev2.ts","../src/services/networkservicev3.ts","../src/services/unifiednetworkservice.ts","../src/services/filesservice.ts","../src/services/workspaceservice.ts","../src/services/userservice.ts","../src/services/adminservice.ts","../src/services/cyndexservice.ts","../src/index.ts","../../../node_modules/nock/types/index.d.ts","../test/nockutil.js","../test/cyndex.spec.js","../test/testconfig.js","../test/ndex.spec.js","../node_modules/@jest/expect-utils/build/index.d.ts","../node_modules/chalk/index.d.ts","../node_modules/@sinclair/typebox/typebox.d.ts","../node_modules/@jest/schemas/build/index.d.ts","../node_modules/pretty-format/build/index.d.ts","../node_modules/jest-diff/build/index.d.ts","../node_modules/jest-matcher-utils/build/index.d.ts","../node_modules/expect/build/index.d.ts","../node_modules/@types/jest/index.d.ts","../node_modules/@types/node/compatibility/disposable.d.ts","../node_modules/@types/node/compatibility/indexable.d.ts","../node_modules/@types/node/compatibility/iterators.d.ts","../node_modules/@types/node/compatibility/index.d.ts","../node_modules/@types/node/ts5.6/globals.typedarray.d.ts","../node_modules/@types/node/ts5.6/buffer.buffer.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/file.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/undici-types/retry-handler.d.ts","../../../node_modules/undici-types/retry-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/util.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/eventsource.d.ts","../../../node_modules/undici-types/filereader.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/index.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/dom-events.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/sea.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/ts5.6/index.d.ts","../../../node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@types/babel__generator/index.d.ts","../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/@types/babel__template/index.d.ts","../../../node_modules/@types/babel__traverse/index.d.ts","../../../node_modules/@types/babel__core/index.d.ts","../../../node_modules/@types/eslint/helpers.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/eslint/index.d.ts","../../../node_modules/@types/eslint-scope/index.d.ts","../../../node_modules/@types/graceful-fs/index.d.ts","../../../node_modules/@types/unist/index.d.ts","../../../node_modules/@types/hast/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/istanbul-lib-report/index.d.ts","../../../node_modules/@types/istanbul-reports/index.d.ts","../../../node_modules/parse5/dist/common/html.d.ts","../../../node_modules/parse5/dist/common/token.d.ts","../../../node_modules/parse5/dist/common/error-codes.d.ts","../../../node_modules/parse5/dist/tokenizer/preprocessor.d.ts","../../../node_modules/entities/dist/commonjs/generated/decode-data-html.d.ts","../../../node_modules/entities/dist/commonjs/generated/decode-data-xml.d.ts","../../../node_modules/entities/dist/commonjs/decode-codepoint.d.ts","../../../node_modules/entities/dist/commonjs/decode.d.ts","../../../node_modules/entities/decode.d.ts","../../../node_modules/parse5/dist/tokenizer/index.d.ts","../../../node_modules/parse5/dist/tree-adapters/interface.d.ts","../../../node_modules/parse5/dist/parser/open-element-stack.d.ts","../../../node_modules/parse5/dist/parser/formatting-element-list.d.ts","../../../node_modules/parse5/dist/parser/index.d.ts","../../../node_modules/parse5/dist/tree-adapters/default.d.ts","../../../node_modules/parse5/dist/serializer/index.d.ts","../../../node_modules/parse5/dist/common/foreign-content.d.ts","../../../node_modules/parse5/dist/index.d.ts","../../../node_modules/@types/tough-cookie/index.d.ts","../../../node_modules/@types/jsdom/base.d.ts","../../../node_modules/@types/jsdom/index.d.ts","../../../node_modules/@types/prettier/index.d.ts","../../../node_modules/@types/stack-utils/index.d.ts","../../../node_modules/@types/yargs-parser/index.d.ts","../../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"824cb491a40f7e8fdeb56f1df5edf91b23f3e3ee6b4cde84d4a99be32338faee","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"87d693a4920d794a73384b3c779cadcb8548ac6945aa7a925832fe2418c9527a","affectsGlobalScope":true},{"version":"76f838d5d49b65de83bc345c04aa54c62a3cfdb72a477dc0c0fce89a30596c30","affectsGlobalScope":true},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"b20fe0eca9a4e405f1a5ae24a2b3290b37cf7f21eba6cbe4fc3fab979237d4f3","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"8073890e29d2f46fdbc19b8d6d2eb9ea58db9a2052f8640af20baff9afbc8640","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"1d7ee0c4eb734d59b6d962bc9151f6330895067cd3058ce6a3cd95347ef5c6e8","1286f21fa6494d94f6ef7ba1117f8523c469cd351d191201b3bc499ee869c31f","c9c77e21d8a6c6251fc17f20d25647c98df3ee5bd618947ee357a18177285bed","1a58e6e05ec3870915e505b609e7e0f3dd53795ece310ce8ff7915587e88535d","5a8e7af4fb82f16476cd85d7100c0ed3569c8d5d4cafd1cd914ec774c9e75360","730a00648e778fb1adcc89c7929e911950261d6cdee628636728287179ec57ba","58bb7396988bc6dd7828979575cfe37485ad9cd7e028aaf85a30c4dc8575a0ac","411d1ff0e511e725f30a53e1e1ab37ab6499fb1842a31f364b750f6bf9a6f29d","8fe565224ab0d58d9196904ae978c739fa46ade83c192be8efc6b1f2e0a50d8b","58314175faf6a6c9c4735ac5d4e3a74048a13dafbbda28c9629be53bbea4743c","2d956a78d86692ef6dacd3cf316151b1e961c6e9ce2af98b0116079b68f6cc15","e6f88ef149d3c12d8cf637bd6b95314f9cb8587f0c4333e3fd8e46425e0a6383","6da3f05bd33a0abf6fc4f7d734164d6d7c0ac49e88e10b37cfb401eb1603a6f9","e688ac716c696c629c13ce1c1a7f810288083e300fb0d6c4969e58a3b80d9f63","6f4a64cf7efd3b6d28b9b668eed707d6538cbd9d52113ae6893730eaf105b366","b4fbead3a89d9a4bc56bfd35f1f50475ad58342c887524c70b9bd25dc5c1d77c","a6201e0e950c57decb7a44e8753af6038e1b8e29f013ff37af433274ad145112","c1f83e344cdcb114420295d422e39b36d2cda7583da37e0f0f196ccbdfd20185","012437c5e9b4f32bbcc91208879ed3e0a5501371c90e40d63fd5615a44986a3d","63fc9677c69fd633dabf799eabc87a35a0f0e3f95ee7b9ccc00054c1a3836e82","a05425662505e9929c8c2271f4d064a5e7c82fb5b1129b15c557e412a975fd5e","60fd19c4870876630b96b0bf1bd722a23d9ab37e9425c8b90c6e76a971308fa5","cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec",{"version":"f8db4fea512ab759b2223b90ecbbe7dae919c02f8ce95ec03f7fb1cf757cfbeb","affectsGlobalScope":true},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true},"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a",{"version":"613b21ccdf3be6329d56e6caa13b258c842edf8377be7bc9f014ed14cdcfc308","affectsGlobalScope":true},{"version":"109b9c280e8848c08bf4a78fff1fed0750a6ca1735671b5cf08b71bae5448c03","affectsGlobalScope":true},"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107",{"version":"1ca84b44ad1d8e4576f24904d8b95dd23b94ea67e1575f89614ac90062fc67f4","affectsGlobalScope":true},"6d586db0a09a9495ebb5dece28f54df9684bfbd6e1f568426ca153126dac4a40","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","8c0bcd6c6b67b4b503c11e91a1fb91522ed585900eab2ab1f61bba7d7caa9d6f",{"version":"567b7f607f400873151d7bc63a049514b53c3c00f5f56e9e95695d93b66a138e","affectsGlobalScope":true},"823f9c08700a30e2920a063891df4e357c64333fdba6889522acc5b7ae13fc08","84c1930e33d1bb12ad01bcbe11d656f9646bd21b2fb2afd96e8e10615a021aef",{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true},"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a",{"version":"4b87f767c7bc841511113c876a6b8bf1fd0cb0b718c888ad84478b372ec486b1","affectsGlobalScope":true},"8d04e3640dd9eb67f7f1e5bd3d0bf96c784666f7aefc8ac1537af6f2d38d4c29","9d19808c8c291a9010a6c788e8532a2da70f811adb431c97520803e0ec649991","2bf469abae4cc9c0f340d4e05d9d26e37f936f9c8ca8f007a6534f109dcc77e4","4aacb0dd020eeaef65426153686cc639a78ec2885dc72ad220be1d25f1a439df","f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45",{"version":"71450bbc2d82821d24ca05699a533e72758964e9852062c53b30f31c36978ab8","affectsGlobalScope":true},{"version":"0ada07543808f3b967624645a8e1ccd446f8b01ade47842acf1328aec899fed0","affectsGlobalScope":true},"4c21aaa8257d7950a5b75a251d9075b6a371208fc948c9c8402f6690ef3b5b55","b5895e6353a5d708f55d8685c38a235c3a6d8138e374dee8ceb8ffde5aa8002a","54c4f21f578864961efc94e8f42bc893a53509e886370ec7dd602e0151b9266c","de735eca2c51dd8b860254e9fdb6d9ec19fe402dfe597c23090841ce3937cfc5","4ff41188773cbf465807dd2f7059c7494cbee5115608efc297383832a1150c43","5650cf3dace09e7c25d384e3e6b818b938f68f4e8de96f52d9c5a1b3db068e86",{"version":"1354ca5c38bd3fd3836a68e0f7c9f91f172582ba30ab15bb8c075891b91502b7","affectsGlobalScope":true},"5155da3047ef977944d791a2188ff6e6c225f6975cc1910ab7bb6838ab84cede","93f437e1398a4f06a984f441f7fa7a9f0535c04399619b5c22e0b87bdee182cb","afbe24ab0d74694372baa632ecb28bb375be53f3be53f9b07ecd7fc994907de5",{"version":"e16d218a30f6a6810b57f7e968124eaa08c7bb366133ea34bbf01e7cd6b8c0ad","affectsGlobalScope":true},{"version":"eb8692dea24c27821f77e397272d9ed2eda0b95e4a75beb0fdda31081d15a8ae","affectsGlobalScope":true},"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","b4f70ec656a11d570e1a9edce07d118cd58d9760239e2ece99306ee9dfe61d02","3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","5b6844ad931dcc1d3aca53268f4bd671428421464b1286746027aede398094f2","37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093",{"version":"0225ecb9ed86bdb7a2c7fd01f1556906902929377b44483dc4b83e03b3ef227d","affectsGlobalScope":true},"1851a3b4db78664f83901bb9cac9e45e03a37bb5933cc5bf37e10bb7e91ab4eb","461e54289e6287e8494a0178ba18182acce51a02bca8dea219149bf2cf96f105",{"version":"12ed4559eba17cd977aa0db658d25c4047067444b51acfdcbf38470630642b23","affectsGlobalScope":true},"f3ffabc95802521e1e4bcba4c88d8615176dc6e09111d920c7a213bdda6e1d65","e31e51c55800014d926e3f74208af49cb7352803619855c89296074d1ecbb524","ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9",{"version":"dfb96ba5177b68003deec9e773c47257da5c4c8a74053d8956389d832df72002","affectsGlobalScope":true},{"version":"92d3070580cf72b4bb80959b7f16ede9a3f39e6f4ef2ac87cfa4561844fdc69f","affectsGlobalScope":true},"d3dffd70e6375b872f0b4e152de4ae682d762c61a24881ecc5eb9f04c5caf76f","613deebaec53731ff6b74fe1a89f094b708033db6396b601df3e6d5ab0ec0a47","d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c",{"version":"e56eb632f0281c9f8210eb8c86cc4839a427a4ffffcfd2a5e40b956050b3e042","affectsGlobalScope":true},"e8a979b8af001c9fc2e774e7809d233c8ca955a28756f52ee5dee88ccb0611d2","9091e564b81e7b4c382a33c62de704a699e10508190547d4f7c1c3e039d2db2b","a28ac3e717907284b3910b8e9b3f9844a4e0b0a861bea7b923e5adf90f620330","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","82e5a50e17833a10eb091923b7e429dc846d42f1c6161eb6beeb964288d98a15","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","fc72135da24040641388fb5f2c2a7a99aa5b962c0fa125bd96fabeec63dd2e63","5426e62886b7be7806312d31a00e8f7dccd6fe63ba9bbefe99ee2eab29cc48a3",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449","8566fa84085caa46340393b1704ecd368491918fb45bd688d6e89736aec73a2f","dc33ce27fbeaf0ea3da556c80a6cc8af9d13eb443088c8f25cdc39fca8e756f6","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","89121c1bf2990f5219bfd802a3e7fc557de447c62058d6af68d6b6348d64499a","79b4369233a12c6fa4a07301ecb7085802c98f3a77cf9ab97eee27e1656f82e6","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","19990350fca066265b2c190c9b6cde1229f35002ea2d4df8c9e397e9942f6c89","8fb8fdda477cd7382477ffda92c2bb7d9f7ef583b1aa531eb6b2dc2f0a206c10","66995b0c991b5c5d42eff1d950733f85482c7419f7296ab8952e03718169e379","9863f888da357e35e013ca3465b794a490a198226bd8232c2f81fb44e16ff323","84bc2d80326a83ee4a6e7cba2fd480b86502660770c0e24da96535af597c9f1e","ea27768379b866ee3f5da2419650acdb01125479f7af73580a4bceb25b79e372","598931eeb4362542cae5845f95c5f0e45ac668925a40ce201e244d7fe808e965","da9ef88cde9f715756da642ad80c4cd87a987f465d325462d6bc2a0b11d202c8","9462ab013df86c16a2a69ca0a3b6f31d4fd86dd29a947e14b590eb20806f220b","b4c6184d78303b0816e779a48bef779b15aea4a66028eb819aac0abee8407dea","db085d2171d48938a99e851dafe0e486dce9859e5dfa73c21de5ed3d4d6fb0c5","62a3ad1ddd1f5974b3bf105680b3e09420f2230711d6520a521fab2be1a32838","a77be6fc44c876bc10c897107f84eaba10790913ebdcad40fcda7e47469b2160","06cf55b6da5cef54eaaf51cdc3d4e5ebf16adfdd9ebd20cec7fe719be9ced017","91f5dbcdb25d145a56cffe957ec665256827892d779ef108eb2f3864faff523b","052ba354bab8fb943e0bc05a0769f7b81d7c3b3c6cd0f5cfa53c7b2da2a525c5","927955a3de5857e0a1c575ced5a4245e74e6821d720ed213141347dd1870197f","fec804d54cd97dd77e956232fc37dc13f53e160d4bbeeb5489e86eeaa91f7ebd","03c258e060b7da220973f84b89615e4e9850e9b5d30b3a8e4840b3e3268ae8eb","fd0589ca571ad090b531d8c095e26caa53d4825c64d3ff2b2b1ab95d72294175",{"version":"669843ecafb89ae1e944df06360e8966219e4c1c34c0d28aa2503272cdd444a7","affectsGlobalScope":true},"1583b9baa41a4db2f2bd4fedfafbe791a986fd785749d5cae2ff5171344e9b4c","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","105b9a2234dcb06ae922f2cd8297201136d416503ff7d16c72bfc8791e9895c1"],"root":[[48,52],[54,63],[65,68]],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"allowUnreachableCode":false,"allowUnusedLabels":false,"checkJs":false,"declaration":true,"declarationMap":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"exactOptionalPropertyTypes":false,"experimentalDecorators":true,"module":99,"noImplicitAny":false,"noImplicitOverride":false,"noImplicitReturns":true,"noImplicitThis":false,"noPropertyAccessFromIndexSignature":false,"noUncheckedIndexedAccess":false,"noUnusedLocals":false,"noUnusedParameters":false,"outDir":"./","removeComments":false,"skipDefaultLibCheck":false,"skipLibCheck":true,"sourceMap":true,"strict":false,"strictBindCallApply":false,"strictFunctionTypes":false,"strictNullChecks":false,"strictPropertyInitialization":false,"target":7,"tsBuildInfoFile":"./.tsbuildinfo"},"fileIdsList":[[83,125,175],[83,125],[83,125,175,176,177,178,179],[83,125,175,177],[83,125,183,184],[83,125,181,182,183],[83,125,138,174],[83,125,187],[83,125,189],[83,125,190],[83,125,137,170,174,209,210,212],[83,125,211],[83,125,215],[83,125,199],[83,125,196,197,198],[83,125,138,140,151,167],[83,125,193],[83,125,192,193],[83,125,192],[83,125,192,193,194,201,202,205,206,207,208],[83,125,193,202],[83,125,192,193,194,201,202,203,204],[83,125,192,202],[83,125,202,206],[83,125,193,194,195,200],[83,125,194],[83,125,192,193,202],[83,92,96,125,167],[83,92,125,156,167],[83,87,125],[83,89,92,125,164,167],[83,125,145,164],[83,125,174],[83,87,125,174],[83,89,92,125,145,167],[83,84,85,88,91,125,137,156,167],[83,92,99,125],[83,84,90,125],[83,92,113,114,125],[83,88,92,125,159,167,174],[83,113,125,174],[83,86,87,125,174],[83,92,125],[83,86,87,88,89,90,91,92,93,94,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,114,115,116,117,118,119,125],[83,92,107,125],[83,92,99,100,125],[83,90,92,100,101,125],[83,91,125],[83,84,87,92,125],[83,92,96,100,101,125],[83,96,125],[83,90,92,95,125,167],[83,84,89,92,99,125],[83,125,156],[83,87,92,113,125,172,174],[71,83,125],[73,76,83,125],[83,122,125],[83,124,125],[83,125,130,159],[83,125,126,131,137,145,156,167],[83,125,126,127,137,145],[78,79,80,83,125],[83,125,128,168],[83,125,129,130,138,146],[83,125,130,156,164],[83,125,131,133,137,145],[83,124,125,132],[83,125,133,134],[83,125,135,137],[83,124,125,137],[83,125,137,138,139,156,167],[83,125,137,138,139,152,156,159],[83,120,125],[83,125,133,137,140,145,156,167],[83,125,137,138,140,141,145,156,164,167],[83,125,140,142,156,164,167],[83,125,137,143],[83,125,144,167,172],[83,125,133,137,145,156],[83,125,146],[83,125,147],[83,124,125,148],[83,122,123,124,125,126,127,128,129,130,131,132,133,134,135,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[83,125,150],[83,125,151],[83,125,137,152,153],[83,125,152,154,168,170],[83,125,137,156,157,159],[83,125,158,159],[83,125,156,157],[83,125,159],[83,125,160],[83,122,125,156,161],[83,125,137,162,163],[83,125,162,163],[83,125,130,145,156,164],[83,125,165],[125],[81,82,83,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[83,125,145,166],[83,125,140,151,167],[83,125,130,168],[83,125,156,169],[83,125,144,170],[83,125,171],[83,125,137,139,148,156,159,167,170,172],[83,125,156,173],[69,75,83,125],[73,83,125],[70,74,83,125],[72,83,125],[47,83,125],[51,52,53,54,55,56,57,58,59,60,61,62,83,125],[51,83,125],[54,83,125],[47,50,83,125],[47,51,53,83,125],[51,54,83,125],[51,52,54,83,125],[51,52,54,55,56,83,125],[50,83,125],[63,64,65,83,125],[63,67,83,125]],"referencedMap":[[177,1],[175,2],[180,3],[176,1],[178,4],[179,1],[185,5],[181,2],[184,6],[183,2],[186,7],[188,8],[189,2],[190,9],[191,10],[211,11],[212,12],[182,2],[213,2],[214,2],[210,2],[187,2],[215,2],[216,13],[200,14],[198,2],[199,15],[196,2],[197,2],[64,16],[194,17],[208,18],[192,2],[193,19],[209,20],[204,21],[205,22],[203,23],[207,24],[201,25],[195,26],[206,27],[202,18],[99,28],[109,29],[98,28],[119,30],[90,31],[89,32],[118,33],[112,34],[117,35],[92,36],[106,37],[91,38],[115,39],[87,40],[86,33],[116,41],[88,42],[93,43],[94,2],[97,43],[84,2],[120,44],[110,45],[101,46],[102,47],[104,48],[100,49],[103,50],[113,33],[95,51],[96,52],[105,53],[85,54],[108,45],[107,43],[111,2],[114,55],[69,2],[72,56],[71,2],[77,57],[122,58],[123,58],[124,59],[125,60],[126,61],[127,62],[78,2],[81,63],[79,2],[80,2],[128,64],[129,65],[130,66],[131,67],[132,68],[133,69],[134,69],[136,2],[135,70],[137,71],[138,72],[139,73],[121,74],[140,75],[141,76],[142,77],[143,78],[144,79],[145,80],[146,81],[147,82],[148,83],[149,84],[150,85],[151,86],[152,87],[153,87],[154,88],[155,2],[156,89],[158,90],[157,91],[159,92],[160,93],[161,94],[162,95],[163,96],[164,97],[165,98],[83,99],[82,2],[174,100],[166,101],[167,102],[168,103],[169,104],[170,105],[171,106],[172,107],[173,108],[47,2],[70,2],[76,109],[74,110],[75,111],[73,112],[45,2],[46,2],[8,2],[9,2],[11,2],[10,2],[2,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[3,2],[20,2],[4,2],[21,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[36,2],[33,2],[34,2],[35,2],[37,2],[7,2],[38,2],[43,2],[44,2],[39,2],[40,2],[41,2],[42,2],[1,2],[53,2],[48,113],[63,114],[52,115],[49,113],[61,116],[62,117],[58,116],[54,118],[55,119],[56,120],[57,121],[60,119],[59,119],[50,2],[51,122],[66,123],[68,124],[65,2],[67,2]],"exportedModulesMap":[[177,1],[175,2],[180,3],[176,1],[178,4],[179,1],[185,5],[181,2],[184,6],[183,2],[186,7],[188,8],[189,2],[190,9],[191,10],[211,11],[212,12],[182,2],[213,2],[214,2],[210,2],[187,2],[215,2],[216,13],[200,14],[198,2],[199,15],[196,2],[197,2],[64,16],[194,17],[208,18],[192,2],[193,19],[209,20],[204,21],[205,22],[203,23],[207,24],[201,25],[195,26],[206,27],[202,18],[99,28],[109,29],[98,28],[119,30],[90,31],[89,32],[118,33],[112,34],[117,35],[92,36],[106,37],[91,38],[115,39],[87,40],[86,33],[116,41],[88,42],[93,43],[94,2],[97,43],[84,2],[120,44],[110,45],[101,46],[102,47],[104,48],[100,49],[103,50],[113,33],[95,51],[96,52],[105,53],[85,54],[108,45],[107,43],[111,2],[114,55],[69,2],[72,56],[71,2],[77,57],[122,58],[123,58],[124,59],[125,60],[126,61],[127,62],[78,2],[81,63],[79,2],[80,2],[128,64],[129,65],[130,66],[131,67],[132,68],[133,69],[134,69],[136,2],[135,70],[137,71],[138,72],[139,73],[121,74],[140,75],[141,76],[142,77],[143,78],[144,79],[145,80],[146,81],[147,82],[148,83],[149,84],[150,85],[151,86],[152,87],[153,87],[154,88],[155,2],[156,89],[158,90],[157,91],[159,92],[160,93],[161,94],[162,95],[163,96],[164,97],[165,98],[83,99],[82,2],[174,100],[166,101],[167,102],[168,103],[169,104],[170,105],[171,106],[172,107],[173,108],[47,2],[70,2],[76,109],[74,110],[75,111],[73,112],[45,2],[46,2],[8,2],[9,2],[11,2],[10,2],[2,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[3,2],[20,2],[4,2],[21,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[36,2],[33,2],[34,2],[35,2],[37,2],[7,2],[38,2],[43,2],[44,2],[39,2],[40,2],[41,2],[42,2],[1,2],[53,2],[48,113],[63,114],[52,115],[49,113],[61,116],[62,117],[58,116],[54,118],[55,119],[56,120],[57,121],[60,119],[59,119],[50,2],[51,122],[66,123],[68,124],[65,2],[67,2]],"semanticDiagnosticsPerFile":[177,175,180,176,178,179,185,181,184,183,186,188,189,190,191,211,212,182,213,214,210,187,215,216,200,198,199,196,197,64,194,208,192,193,209,204,205,203,207,201,195,206,202,99,109,98,119,90,89,118,112,117,92,106,91,115,87,86,116,88,93,94,97,84,120,110,101,102,104,100,103,113,95,96,105,85,108,107,111,114,69,72,71,77,122,123,124,125,126,127,78,81,79,80,128,129,130,131,132,133,134,136,135,137,138,139,121,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,158,157,159,160,161,162,163,164,165,83,82,174,166,167,168,169,170,171,172,173,47,70,76,74,75,73,45,46,8,9,11,10,2,12,13,14,15,16,17,18,19,3,20,4,21,25,22,23,24,26,27,28,5,29,30,31,32,6,36,33,34,35,37,7,38,43,44,39,40,41,42,1,53,48,63,52,49,61,62,58,54,55,56,57,60,59,50,51,66,68,65,67],"affectedFilesPendingEmit":[53,48,63,52,49,61,62,58,54,55,56,57,60,59,50,51,66,68,65,67]},"version":"5.4.5"}
package/dist/index.d.mts CHANGED
@@ -463,6 +463,14 @@ interface AccessKeyResponse {
463
463
  * Valid actions for updating access keys
464
464
  */
465
465
  declare type AccessKeyAction = 'enable' | 'disable';
466
+ /**
467
+ * NDEx object update status - returned from network creation and update operations
468
+ * Corresponds to server-side NdexObjectUpdateStatus class
469
+ */
470
+ interface NDExObjectUpdateStatus {
471
+ uuid: string;
472
+ modificationTime: number;
473
+ }
466
474
 
467
475
  /**
468
476
  * HTTPService - Core HTTP client for NDEx API communication
@@ -470,6 +478,7 @@ declare type AccessKeyAction = 'enable' | 'disable';
470
478
  *
471
479
  * @note User-Agent header is set to 'NDEx-JS-Client/${version}' but only works in Node.js.
472
480
  * Browsers will ignore custom User-Agent headers for security reasons.
481
+ * @internal
473
482
  */
474
483
  declare class HTTPService {
475
484
  private axiosInstance;
@@ -507,67 +516,7 @@ declare class HTTPService {
507
516
  delete<T = any>(endpoint: string, config?: AxiosRequestConfig & {
508
517
  version?: 'v2' | 'v3';
509
518
  }): Promise<T>;
510
- /**
511
- * Upload a file to the NDEx API with progress tracking support
512
- *
513
- * This method handles file uploads using multipart/form-data encoding and supports
514
- * various input types for maximum flexibility across different environments.
515
- *
516
- * @template T - The expected response type from the API
517
- * @param endpoint - API endpoint path (e.g., 'networks' for network upload)
518
- * @param file - File data to upload. Supports multiple input types:
519
- * - `File` (browser): HTML5 File object from file input or drag-and-drop
520
- * - `Blob` (browser): Binary data as Blob object
521
- * - `Buffer` (Node.js): Binary data as Buffer for server-side uploads
522
- * - `string`: Text content that will be converted to Blob (useful for CX/CX2 JSON)
523
- * @param options - Upload configuration options
524
- * @param options.filename - Custom filename for the upload. Defaults:
525
- * - File objects: uses `file.name`
526
- * - Other types: 'file.cx2'
527
- * @param options.contentType - MIME type for string content (default: 'application/json')
528
- * @param options.onProgress - Progress callback that receives percentage (0-100)
529
- * Called periodically during upload with current progress
530
- * @param options.version - API version to use ('v2' or 'v3', defaults to 'v2')
531
- * @param options.config - Additional Axios configuration options
532
- *
533
- * @returns Promise resolving to upload result
534
- *
535
- * @example
536
- * ```typescript
537
- * // Upload a File object from file input (browser)
538
- * const fileInput = document.getElementById('file') as HTMLInputElement;
539
- * const file = fileInput.files[0];
540
- * const result = await httpService.uploadFile('networks', file, {
541
- * filename: 'my-network.cx2',
542
- * onProgress: (progress) => console.log(`Upload: ${progress}%`),
543
- * version: 'v3'
544
- * });
545
- *
546
- * // Upload CX2 network data as string
547
- * const cx2Data = JSON.stringify({ CXVersion: '2.0', networks: [...] });
548
- * const result = await httpService.uploadFile('networks', cx2Data, {
549
- * filename: 'network.cx2',
550
- * contentType: 'application/json',
551
- * version: 'v3'
552
- * });
553
- *
554
- * // Upload with progress tracking
555
- * const result = await httpService.uploadFile('networks', file, {
556
- * onProgress: (progress) => {
557
- * progressBar.style.width = `${progress}%`;
558
- * console.log(`Uploading: ${progress}%`);
559
- * }
560
- * });
561
- * ```
562
- *
563
- * @throws Will throw NDExError on network errors,
564
- * server errors, or invalid file data
565
- *
566
- * @note The Content-Type header is automatically set to 'multipart/form-data'
567
- * and Axios will handle the boundary parameter automatically
568
- */
569
519
  uploadFile<T = any>(endpoint: string, file: File | Blob | Buffer | string, options?: {
570
- filename?: string;
571
520
  contentType?: string;
572
521
  onProgress?: (progress: number) => void;
573
522
  version?: 'v2' | 'v3';
@@ -818,14 +767,12 @@ declare class NetworkServiceV3 {
818
767
  */
819
768
  createNetworkFromCX2(cx2Data: CX2Network$1 | CX2Network, options?: {
820
769
  visibility?: 'PUBLIC' | 'PRIVATE';
821
- name?: string;
822
- }): Promise<{
823
- uuid: string;
824
- }>;
770
+ folderId?: string;
771
+ }): Promise<NDExObjectUpdateStatus>;
825
772
  /**
826
773
  * Update network with CX2 data
827
774
  */
828
- updateNetworkCX2(networkUUID: string, cx2Data: CX2Network$1 | CX2Network): Promise<void>;
775
+ updateNetworkCX2(networkUUID: string, cx2Data: CX2Network$1 | CX2Network): Promise<NDExObjectUpdateStatus>;
829
776
  /**
830
777
  * Upload network file (CX2, CX, or other formats)
831
778
  */
@@ -1303,28 +1250,33 @@ declare class UnifiedNetworkService {
1303
1250
  /**
1304
1251
  * Create network from raw CX2 data (migrated from original NDEx.js)
1305
1252
  *
1306
- * Creates a new network in NDEx from raw CX2 network data. This is an unstable function
1307
- * for uploading CX2 format networks directly to NDEx using the V3 API. The function
1308
- * extracts the network UUID from the response location header.
1253
+ * Creates a new network on NDEx from raw CX2 data using the V3 API.
1254
+ * This function delegates to the NetworkServiceV3 implementation.
1309
1255
  *
1310
- * @param rawCX2 - Raw CX2 network data as an object or CX2Network instance
1311
- * @param makePublic - Whether to make the network public (default: false = private)
1312
- * @returns Promise resolving to an object containing the UUID of the created network
1256
+ * @param cx2Data - Raw CX2 network data as an object or CX2Network instance
1257
+ * @param options - Creation options including visibility and folderId
1258
+ * @param options.visibility - Network visibility: 'PUBLIC' or 'PRIVATE' (default: 'PRIVATE')
1259
+ * @param options.folderId - UUID of the folder to create the network in. If omitted, network is created in user's home directory
1260
+ * @returns Promise resolving to NDExObjectUpdateStatus with uuid and modificationTime
1313
1261
  *
1314
1262
  * @example
1315
1263
  * ```typescript
1316
- * // Create private network from raw CX2 data
1264
+ * // Create private network from raw CX2 data in user's home directory
1317
1265
  * const result = await client.networks.createNetworkFromRawCX2(cx2Data);
1318
1266
  * console.log(result.uuid); // "12345678-1234-1234-1234-123456789abc"
1319
1267
  *
1320
- * // Create public network from raw CX2 data
1321
- * const publicResult = await client.networks.createNetworkFromRawCX2(cx2Data, true);
1268
+ * // Create public network from raw CX2 data in a specific folder
1269
+ * const publicResult = await client.networks.createNetworkFromRawCX2(cx2Data, {
1270
+ * visibility: 'PUBLIC',
1271
+ * folderId: '87654321-4321-4321-4321-876543210fed'
1272
+ * });
1322
1273
  * console.log(publicResult.uuid);
1323
1274
  * ```
1324
1275
  */
1325
- createNetworkFromRawCX2(rawCX2: CX2Network$1 | any, makePublic?: boolean): Promise<{
1326
- uuid: string;
1327
- }>;
1276
+ createNetworkFromRawCX2(cx2Data: CX2Network$1 | CX2Network, options?: {
1277
+ visibility?: 'PUBLIC' | 'PRIVATE';
1278
+ folderId?: string;
1279
+ }): Promise<NDExObjectUpdateStatus>;
1328
1280
  /**
1329
1281
  * Update network from raw CX2 data (migrated from original NDEx.js)
1330
1282
  *
@@ -1926,6 +1878,29 @@ declare class NDExClient {
1926
1878
  networks: NetworkServiceV3;
1927
1879
  };
1928
1880
  }
1881
+ /**
1882
+ * Library version string imported from package.json
1883
+ *
1884
+ * Provides programmatic access to the current library version for:
1885
+ * - Runtime version checking and validation
1886
+ * - Debugging and error reporting
1887
+ * - Logging and telemetry
1888
+ * - Version-dependent feature detection
1889
+ *
1890
+ * @example
1891
+ * ```typescript
1892
+ * import { NDExClient, version } from '@js4cytoscape/ndex-client';
1893
+ *
1894
+ * console.log(`Using NDEx Client v${version}`);
1895
+ *
1896
+ * // In error reports
1897
+ * const errorReport = {
1898
+ * error: err.message,
1899
+ * libraryVersion: version,
1900
+ * timestamp: new Date().toISOString()
1901
+ * };
1902
+ * ```
1903
+ */
1929
1904
  declare const version: string;
1930
1905
 
1931
- export { type APIError, type APIResponse, type AccessKeyAction, type AccessKeyResponse, type AccessParams, AdminService, type BasicAuth, type CX1Edge, type CX1MetaDataItem, type CX1MetaDataResponse, type CX1NetworkProperty, type CX2AttributeDeclarations, type CX2AttributeSpec, type CX2Edge, type CX2EdgeBypass, type CX2ImportParams, type CX2MetaData, CX2Network, type CX2NetworkAttribute, type CX2NetworkProperties, type CX2Node, type CX2NodeBypass, type CX2Status, type CX2VisualProperty, CyNDExService as CyNDEx, type CyNDExAuthConfig, type CyNDExConfig, CyNDExService, type CyNDExStatusResponse, type CyWebWorkspace, type CytoscapeNetworkSummary, type DefaultVisualProperties, type ExportFormat, type ExportRequest, FilesService, HTTPService, type MappingDefinition, type NDExAny, NDExAuthError, type NDExAuthResponse, NDExClient, type NDExClientConfig, NDExError, type NDExExportParams, type NDExImportParams, NDExNetworkError, NDExNotFoundError, NDExServerError, type NDExUser, NDExValidationError, NetworkIndexLevel, type NetworkPermission, NetworkServiceV2, NetworkServiceV3, type NetworkSummaryV2, type NetworkSummaryV3, type OAuthAuth, type PaginationParams, type SearchParameters, type SearchResult, type TableColumnVisualStyle, type Task, type Timestamp, type UUID, UnifiedNetworkService, UserService, type VPMappingType, type VisualPropertyMapping, type VisualPropertyTable, WorkspaceService, version };
1906
+ export { type APIError, type APIResponse, type AccessKeyAction, type AccessKeyResponse, type AccessParams, AdminService, type BasicAuth, type CX1Edge, type CX1MetaDataItem, type CX1MetaDataResponse, type CX1NetworkProperty, type CX2AttributeDeclarations, type CX2AttributeSpec, type CX2Edge, type CX2EdgeBypass, type CX2ImportParams, type CX2MetaData, CX2Network, type CX2NetworkAttribute, type CX2NetworkProperties, type CX2Node, type CX2NodeBypass, type CX2Status, type CX2VisualProperty, CyNDExService as CyNDEx, type CyNDExAuthConfig, type CyNDExConfig, CyNDExService, type CyNDExStatusResponse, type CyWebWorkspace, type CytoscapeNetworkSummary, type DefaultVisualProperties, type ExportFormat, type ExportRequest, FilesService, type MappingDefinition, type NDExAny, NDExAuthError, type NDExAuthResponse, NDExClient, type NDExClientConfig, NDExError, type NDExExportParams, type NDExImportParams, NDExNetworkError, NDExNotFoundError, type NDExObjectUpdateStatus, NDExServerError, type NDExUser, NDExValidationError, NetworkIndexLevel, type NetworkPermission, NetworkServiceV2, NetworkServiceV3, type NetworkSummaryV2, type NetworkSummaryV3, type OAuthAuth, type PaginationParams, type SearchParameters, type SearchResult, type TableColumnVisualStyle, type Task, type Timestamp, type UUID, UnifiedNetworkService, UserService, type VPMappingType, type VisualPropertyMapping, type VisualPropertyTable, WorkspaceService, version };